@charset "utf-8";

/*================================================
  thoughts
================================================*/

/*------------------------------------------------
concept
------------------------------------------------*/
.concept {
  position: relative;
  margin: 80px 0;
}

.concept::before {
  content: "";
  display: block;
  position: absolute;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  background-image: url(../../image/thoughts/concept_main_pic.jpg);
  background-size: cover;
  background-position: bottom right;
  height: 100%;
  width: 100%;
  max-width: 1740px;
  z-index: -1;
  top: 0;
  left: 0;
}

.concept-container {
  text-align: center;
}

.concept p.notes {
  color: var(--color-dark-gray);
  font-size: 0.75em;
}
.concept p.emphasis {
  font-weight: 900;
  margin: 2em 0;
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
}

.concept-text {
  /* font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem); */
  font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.8rem);
  font-weight: 700;
  line-height: 3;
}

.concept-end-text {
  font-weight: 700;
  /* font-size: clamp(2rem, 1.92rem + 0.4vw, 2.4rem); */
  font-size: clamp(1.7rem, 1.56rem + 0.7vw, 2.4rem);
  margin:2em auto 4em;
  text-align: center;
}

.concept-title-img {
  text-align: center;
  margin-bottom: 1em;
  max-width: 886px;
  margin: 0 auto var(--layout-gap);
}
.concept-box {
  margin:  var(--layout-gap) auto;
  display: grid;
  gap: var(--layout-gap);
  max-width: 1040px;
}

.concept-item {
  background-color: var(--color-white);
  border-radius: 60px;
  padding: var(--layout-gap);
  box-shadow: 0 0 20px rgba(var( --color-blue-rgb),0.3);
  max-width: 480px;
  margin: auto;
}

.concept-item > p {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
}

.concept-item-title {
  text-align: center;
  margin-bottom: 1em;
}

.concept-item-title > span:nth-of-type(1) {
  display: block;
  font-size: clamp(2.8rem, 2.24rem + 2.8vw, 5.6rem);
  font-weight: 900;
  line-height: 1;
}

.concept-item-title > span.font-roboto {
  color: rgba(var(--color-blue-rgb),0.3);
  display: block;
  font-weight: 900;
  font-size: clamp(2rem, 1.44rem + 2.8vw, 4.8rem);
  line-height: 1;
}

@media print, screen and (min-width: 590px) {
  .concept-box {
    grid-template-columns: 1fr 1fr;
  }
  .concept-item {
    height: 100%;
    width: 100%;
    text-align: center;
  }
}

@media print, screen and (min-width: 960px) {
  .concept-text {
    line-height: 4;
    letter-spacing: 0.1em;
  }
}

@media print, screen and (min-width: 1600px) {
  .concept {
    margin: 150px 0;
  }
  .concept::before {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    width: calc(50% + 740px);
    max-width: 100%;
    /* height: calc(100% + 60px);
    top: -60px; */
  }
  .concept-item {
    padding: 5em 2em 3em;
  }
}



/*------------------------------------------------
vows
------------------------------------------------*/
.vows {
  position: relative;
  margin-top: 60px;
}

.vows::before {
  content: "";
  border-top-left-radius: 60px;
  display: block;
  position: absolute;
  height: calc(100% + 60px);
  width: 100%;
  background-color: var(--color-gray);
  background-image: url(../../image/common/common_logo_mark_white.svg);
  background-size: 50%;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: -1;
  top: 0;
  right: 0;
}

.vows-container {
  padding-bottom: var(--layout-gap);
}

.vows .section-title {
  text-align: center;
}

.vows-item {
  margin: var(--layout-gap) auto 0;
}

.vows-item-img {
  border-radius: 30px;
  overflow: hidden;
}

.vows-item-detail > p {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  line-height: 2.25;
}


@media print, screen and (min-width: 769px) {
  .vows::before {
    border-top-left-radius: 80px;
  }
  .vows-item {
    display: flex;
    justify-content: space-between;
    margin: calc(var(--layout-gap)*2) auto 0;
  }
  .vows-item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .vows-item-img {
    width: calc(50% - var(--layout-gap));
  }
  .vows-item-detail {
    width: 50%;
  }
}
@media print, screen and (min-width: 1200px) {
  .vows-item {
    margin: calc(var(--layout-gap)*3) auto 0;
  }
  .vows-item-img {
    width: calc(50% - calc(var(--layout-gap)*1.5));
  }
}
@media print, screen and (min-width: 1600px) {
  .vows::before {
    border-top-left-radius: 100px;
    width: calc(50% + 740px);
    max-width: 100%;
  }
  .vows-item-img {
    width: 500px;
  }
  .vows-item-detail {
    width: 560px;
  }
}
