@charset "UTF-8";

/*
Readme:
・セクション単位でメディアクエリーを記述。
・単位指定は複数形式使用。
　1. Clamp関数でWindowサイズに応じた指定
　2. コンテナクエリーによるコンテンツ幅ベースの単位指定（主にカードレイアウト）
　3. --std という独自変数による指定
　4. px指定
を使い分けている。


*/
.page-ws {
  --border-radius-1: 39% 61% 42% 58%/45% 48% 52% 55%;
  --border-radius-2: 50% 50% 48% 52%/52% 53% 47% 48%;
  --border-radius-3: 60% 40% 58% 42%/38% 57% 43% 62%;
  --border-radius-4: 50% 50% 46% 54%/51% 38% 62% 49%;
  line-height: 1.7;
  font-family: var(--fontFamily-base);
  font-size: 16px;
  --fontFigtree: "Figtree", sans-serif;
  --blue: #00aeeb;
  --light-blue: #e6f2f9;
  --yellow-gray: #f9f8f4;
  --orange: #eb737d;
  /* デフォルトフォント読み込み */
}

.figtree {
  font-family: var(--fontFigtree);
}

.d-ib {
  display: inline-block;
}

.bold {
  font-weight: bold;
}

.blue {
  color: var(--blue);
}

.marker {
  background: linear-gradient(transparent 60%, var(--line-color) 60%);
}

.indent {
  --indent: 1em;
  text-indent: calc(var(--indent) * -1);
  padding-left: calc(var(--indent) * 1);
}

.sup,
.sub {
  font-size: clamp(8px, 3.887px + 0.563vw, 12px);
}

.section__link a.-blue {
  font-weight: normal;
  font-size: 14px;
  width: fit-content;
  height: auto;
  max-width: 400px;
  padding: 1em 1em;
}

.section__link a.-arrow {
  position: relative;
  padding-inline: 3em;
}

.section__link a.-arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: calc(var(--std) * 2);
  width: calc(var(--std) * 0.9);
  height: calc(var(--std) * 0.9);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: top center;
  transition: border-color 0.5s 0s;
}

.section__link a.-arrow:hover::after {
  border-color: var(--blue);
}

.section__link a.-multiple {
  --std: 10px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
}

.section__link a.-multiple .sub-text {
  font-size: calc(var(--std) * 1.6);
}

.section__link a.-multiple .main-text {
  font-size: calc(var(--std) * 2);
  font-weight: bold;
  margin-top: 10px;
}



@media screen and (max-width: 380px) {
  /* sp only */
  .section__link a.-multiple {
    padding-inline: 1em;
    width: 100%;
  }
} /* sp only */


/* ★ ==================
* ページ内複数使用コンポーネント（接頭辞 c_ を付けてこちらに保管）
* ================== */
.c_gray-bg {
  background-color: var(--yellow-gray);
  position: relative;
  margin-block: 0;
  padding-block: 0 100px;
}

.c_gray-bg.-before {
  padding-block-start: 11vw;
}

.c_gray-bg.-before::before {
  content: "";
  display: block;
  background: url("/images/choosetips/sec_accent_01.gif") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
  width: 100%;
  aspect-ratio: 1920/151;
  position: absolute;
  top: 0;
  transform: translate(0px, -1%);
}

.c_gray-bg_inner {
  position: relative;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .c_gray-bg {
    padding-block: 0 70px;
    margin-block: 30px 0;
  }
}

/* sp only */
.c_icon-title {
  text-align: center;
  position: relative;
  font-size: 26px;
  font-weight: bold;
}

.c_icon-title::before {
  content: "";
  display: block;
  margin-inline: auto;
  width: 34px;
  aspect-ratio: 68/138;
  background: url("/images/choosetips/icon_light.png") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
  margin-bottom: 5px;
}

/* チェックアイコンテキスト */
.c_check-paragraph {
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: clamp(20px, 17.887px + 0.563vw, 26px);
  color: var(--blue);
  text-indent: -1.75em;
  padding-left: 1.75em;
}

.c_check-paragraph::before {
  content: "";
  background: url("/images/choosetips/icon_check.png") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
  display: inline-block;
  aspect-ratio: 1;
  width: 1.2em;
  position: relative;
  top: 0.25em;
  margin-inline: 0 0.5em;
}

.c_check-paragraph .sup {
  top: -1.1em;
}

/* クリクラなら！　の一連をHeaderとしてコンポーネント化*/
.c_crecla_header .lead-text {
  margin-block: 1em 0;
}

.c_crecla_header .note-paragraph {
  font-size: clamp(14px, 12.592px + 0.376vw, 18px);
  font-weight: bold;
  text-align: center;
  margin-block: 2em 0;
  line-height: 3;
}

.c_crecla_header .note-paragraph .accent {
  font-size: clamp(12px, 9.887px + 0.563vw, 18px);
  background-color: #FFF;
  border: 1px solid #000;
  padding: 0.84em 1.9em;
  margin-inline: 1em;
  border-radius: 9999px;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .c_crecla_header .note-paragraph {
    font-size: clamp(0px, 3.5vw, 20px);
  }

  .c_crecla_header .note-paragraph .accent {
    font-size: clamp(0px, 3.3vw, 18px);
    margin-inline: 0.5em;
    padding: 0.5em 1.2em;
  }
}

/* sp only */


/* ==================
* morphing_background
* ================== */
.morphing_background {
  animation-name: morphing2;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: 100%;
  height: 100%;
  background-color: #e6f2f9;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.morphing_wrap {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
}

.morphing_contents {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.morphing_contents img {
  margin-inline: auto;
}

.morphing_contents .text {
  margin-block: 2rem 0;
}

.morphing_contents .text .num {
  font-size: 6.5rem;
  font-weight: bold;
}

.morphing_contents .text .unit {
  font-size: 3.9rem;
  font-weight: 400;
  margin-left: 0.2em;
}

@keyframes morphing2 {
  0% {
    border-radius: 50% 50% 48% 52%/52% 53% 47% 48%;
    border-radius: var(--border-radius-2);
  }

  25% {
    border-radius: 60% 40% 58% 42%/38% 57% 43% 62%;
    border-radius: var(--border-radius-3);
  }

  50% {
    border-radius: 50% 50% 46% 54%/51% 38% 62% 49%;
    border-radius: var(--border-radius-2);
  }

  75% {
    border-radius: 39% 61% 42% 58%/45% 48% 52% 55%;
    border-radius: var(--border-radius-1);
  }

  to {
    border-radius: 50% 50% 48% 52%/52% 53% 47% 48%;
    border-radius: var(--border-radius-2);
  }
}

/* end morphing_background */
.c_information {
  margin-block: 80px 0;
}

.c_crecla_header+.c_information {
  margin-block: 40px 0;
}

.c_white-box {
  background-color: #FFF;
  border-radius: 26px;
  line-height: 1.9444444444;
  margin-block: 10px 0;
  font-size: clamp(15px, 13.915px + 0.319vw, 18px);
}

.c_white-box .sentence {
  font-size: clamp(14px, 12.553px + 0.426vw, 18px);
}

.c_white-box .marker {
  --line-color: #f7ec6d;
}

.c_white-box .blue-big {
  color: var(--blue);
  font-size: 1.2em;
  font-weight: bold;
  margin-block: 1em 0;
}

.c_white-box .annotation {
  font-size: clamp(10px, 9.429px + 0.179vw, 12px);
  margin-block: 0.8em 0;
}

.c_light-yellow-box {
  background-color: #FFFDF5;
  border-radius: 26px;
  padding-block: 70px 65px;
  padding-inline: 30px;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .c_light-yellow-box {
    padding-block: 30px 20px;
    padding-inline: 15px;
  }
}

/* sp only */
/* ★ end ページ内複数使用コンポーネント（接頭辞 c_ を付けてこちらに保管） */


/* ==================
* ページ内commoncss
* ================== */
.one-line {
  display: block;
}

.container {
  --middle-w: calc(100% - 30px);
  --min-w: 0px;
  --max-w: 1200px;
  width: clamp(var(--min-w), var(--middle-w), var(--max-w));
  margin-inline: auto;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .container {
    --middle-w: calc(100% - 20px);
  }
}

/* sp only */
/* end ページ内commoncss */


/* ==================
* MV
* ================== */
.mvLower__copy--left {
  justify-content: left !important;
  margin-inline: 100px 0 !important;
}

.mvLower__copy .text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-block: -50px 0;
  font-size: clamp(14px, 8.366px + 1.502vw, 30px);
}

.mvLower__copy .one-line {
  background-color: #FFF;
  color: var(--blue);
  padding: 0.05em 0.2em;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .mvLower__copy--left {
    margin-inline: 0 0 !important;
  }

  .mvLower__copy .text {
    gap: 10px;
    margin-block: 0px;
    letter-spacing: 0;
    font-size: clamp(10px, -0.667px + 3.333vw, 16px);
  }

  .mvLower__copy .text .one-line {
    padding: 0.1em 0.4em;
  }
}

/* sp only */
/* end MV */


/* ==================
* sec01
* ================== */
.sec01 {
  text-align: center;
  margin-block: clamp(30px, 24.286px + 1.786vw, 50px) 0;
}

.sec01>.head-title {
  font-size: clamp(24px, 20.383px + 1.064vw, 34px);
  color: var(--blue);
  font-weight: bold;
  line-height: 1.4;
}

.sec01>.head-title .sub {
  font-size: 0.8em;
}

.sec01>.head-title .num {
  font-size: 1.5em;
  font-weight: bold;
  margin-inline: 0.1em 0;
}

.sec01 .sentence {
  white-space: nowrap;
  font-size: clamp(14px, 11.83px + 0.638vw, 20px);
  line-height: 1.9444444444;
  margin-block: clamp(10px, 2.857px + 2.232vw, 35px) 0;
}

.sec01 .sentence *+p {
  margin-block: 2.6em 0;
}

.sec01 .sentence .illust {
  display: block;
  margin-inline: auto;
  margin-block: 1em 0;
  width: 38.65%;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .sec01 .sentence {
    white-space: normal;
  }

  .sec01 .sentence .illust {
    width: 80%;
    margin-block: 30px 0;
  }
}

/* sp only */
/* end sec01 */


/* ==================
* index-link
* ================== */
.index-link {
  margin-block: clamp(30px, 22.727px + 2.273vw, 50px) 0;
}

.index-link>.head-title {
  font-weight: bold;
  font-size: clamp(20px, 18.592px + 0.376vw, 24px);
  line-height: 1.4;
}

.index-link>.head-title .accent {
  font-size: 1.5em;
  color: var(--blue);
}

.index-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 27px;
  margin-block: clamp(12px, 9.091px + 0.909vw, 20px) 0;
}

.index-nav li {
  display: flex;
}

.index-nav li a {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--blue);
  text-decoration: none;
  border: 2px solid var(--blue);
  border-radius: clamp(4px, 2.857px + 0.357vw, 8px);
  position: relative;
  padding-block: 0.9em;
  transition: opacity 0.3s 0s;
}

.index-nav li a::before {
  content: "";
  background: var(--url) rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
  aspect-ratio: 1;
  width: 45px;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translate(0px, -50%);
}

.index-nav li a::after {
  content: "";
  background: url("/images/choosetips/icon_nav_arrow.png") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
  aspect-ratio: 2/1;
  width: 14px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0px, -50%);
  transition: transform 0.3s 0s;
}

.index-nav li a:hover {
  opacity: 0.7;
}

.index-nav li a:hover::after {
  transform: translate(0px, 0%);
  opacity: 0.7;
}

.index-nav li.cost {
  --url: url("/images/choosetips/icon_nav_01.png");
}

.index-nav li.clean {
  --url: url("/images/choosetips/icon_nav_02.png");
}

.index-nav li.support {
  --url: url("/images/choosetips/icon_nav_03.png");
}

@media screen and (max-width: 767px) {

  /* sp only */
  .index-nav {
    grid-template-columns: repeat(auto-fit, 100%);
    gap: 15px;
    width: 80%;
    margin-inline: auto;
    max-width: 230px;
  }
}

/* sp only */
/* end index-link */


/* ==================
* movie
* ================== */
.movie {
  margin-block: clamp(30px, 22.727px + 2.273vw, 50px) 0;
}

.movie .title {
  font-weight: bold;
  font-size: clamp(20px, 12.727px + 1.939vw, 36px);
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.movie .title::before,
.movie .title::after {
  content: "";
  display: block;
  width: 1.5px;
  height: 0.8em;
  border-radius: 1em;
  background-color: #0e0e0e;
  position: absolute;
  bottom: 0.8em;
}

.movie .title::before {
  left: -0.75em;
  transform: rotate(-15deg);
}

.movie .title::after {
  right: -0.5em;
  transform: rotate(15deg);
}

.movie .title .small {
  font-size: 0.8em;
}

.movie .title .num {
  font-size: 1.5em;
  font-weight: bold;
}

.movie-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  margin-block: clamp(15px, 9.545px + 1.705vw, 30px) 0;
}

.movie-wrap iframe {
  width: 100%;
  height: 100%;
}

/* end movie */


/* ==================
* c_sec_header
* ================== */
.c_sec_header .c_point_head-title {
  text-align: center;
}

.c_sec_header .c_point_head-title .balloon {
  display: block;
  margin-inline: auto;
  padding-block: 0.12em 0.28em;
  letter-spacing: 0.1em;
  font-weight: bold;
  background-color: var(--light-blue);
  width: clamp(165px, 158.31px + 1.784vw, 184px);
  border-radius: 9999px;
  position: relative;
  text-align: center;
  color: var(--blue);
  font-size: clamp(16px, 15.296px + 0.188vw, 18px);
}

.c_sec_header .c_point_head-title .balloon:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5em 0.5em 0 0.5em;
  border-color: var(--light-blue) transparent transparent transparent;
  transform: translate(0px, 100%);
  position: absolute;
  inset: 0;
  top: auto;
  margin-inline: auto;
}

.c_sec_header .c_point_head-title .balloon .num {
  font-size: 1.25em;
}

.c_sec_header .c_point_head-title .text {
  display: block;
  font-size: clamp(20px, 13.662px + 1.69vw, 38px);
  color: var(--blue);
  font-weight: bold;
  margin-block: 18px 0;
}

.c_sec_header .c_point_head-title .text::before {
  content: "";
  display: block;
  aspect-ratio: 150/135;
  background: var(--url) no-repeat top 50% left 50%/contain;
  width: clamp(60px, 54.718px + 1.408vw, 75px);
  margin-inline: auto;
}

.c_sec_header .lead-text {
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  font-size: clamp(20px, 19.296px + 0.188vw, 22px);
  margin-block: 0.5em 0;
}

/* end c_sec_header */


/* ==================
* c_note-block
* ================== */
.c_note-block {
  font-size: clamp(16px, 15.296px + 0.188vw, 18px);
  line-height: 1.9;
  background-color: var(--light-blue);
  border-radius: 26px;
  padding: 2.4em 4em;
  margin-block: 2em 0;
}

.c_note-block .marker {
  --line-color: #e5e5e5;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .c_note-block {
    padding: 1em;
  }
}

/* sp only */
/* end c_note-block */


/* ==================
* 料金カードレイアウト
* ================== */
.price-card_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  margin-block: 50px 0;
}

.price-card_layout::before {
  content: "";
  background: url("/images/choosetips/icon_plus.png") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
  width: 33px;
  position: absolute;
  inset: 0;
  margin: auto;
}

.price-card {
  --std: 10px;
  background-color: #FFF;
  border-radius: 26px;
}

.price-card>.inner {
  padding-inline: calc(var(--std) * 2.8);
  padding-block: calc(var(--std) * 2.5);
}

.price-card .price-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  border-bottom: #cdcac4 1px solid;
  padding-bottom: 20px;
  width: 80%;
  margin-inline: auto;
}

.price-card .price-header .price-point {
  aspect-ratio: 1;
  border-radius: 9999px;
  background-color: var(--orange);
  color: #FFF;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(var(--std) * 10.6);
  font-size: calc(var(--std) * 1.8);
  text-align: center;
  line-height: 1.4;
}

.price-card .price-header .price-point>.inner {
  position: relative;
}

.price-card .price-header .price-point .sub {
  position: absolute;
  top: calc(var(--std) * 1.8);
  right: calc(var(--std) * -1);
  margin: 0;
}

.price-card .price-header .price-title {
  font-size: calc(var(--std) * 2.2);
  font-weight: bold;
  line-height: 1.6;
  color: var(--blue);
  text-align: center;
}

.price-card .price_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: calc(var(--std) * 3) 0;
}

.price-card .price_main .bottle-image {
  width: 40%;
}

.price-card .price_main .delivery-image {
  width: 75%;
}

.price-card .price_main .left-box {
  width: 45%;
}

.price-card .price_main .right-box {
  width: 55%;
}

.price-card .capacity {
  color: #5A513C;
  font-weight: bold;
  font-size: calc(var(--std) * 1.8);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0.3em;
}

.price-card .capacity .num {
  font-weight: bold;
  font-size: 1.55em;
  margin-inline: 0.05em;
}

.price-card .value {
  color: var(--orange);
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  line-height: 1.2;
}

.price-card .value .main {
  font-weight: bold;
  font-size: calc(var(--std) * 6);
  line-height: 1;
}

.price-card .value .unit {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  bottom: 0.1em;
  line-height: 1;
}

.price-card .value .unit .tax {
  font-size: calc(var(--std) * 1.2);
}

.price-card .value .unit .yen {
  font-size: calc(var(--std) * 2.8);
  margin-block: 0.2em 0;
}

.price-card .value .has_slash {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.price-card .value .has_slash .month {
  font-size: 0.9em;
  margin-left: -0.2em;
  letter-spacing: 0.2em;
  position: relative;
  bottom: 0.2em;
}

.price-card .value-note {
  color: var(--orange);
  font-size: calc(var(--std) * 1.4);
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.price-card .value-note .accent {
  font-weight: bold;
}

.price-card .value-note .accent.-big {
  font-size: 1.95em;
}

.price-card .value-note .small {
  font-size: 0.8em;
}

.price-card .value-note_normal {
  font-size: calc(var(--std) * 1.4);
  padding: 1em 1.5em;
}

.price-card .price-point-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  margin-inline: auto;
  margin-block: 1em 0;
}

.price-card .price-point-list .item {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc(33.33% - 5px);
  background-color: var(--yellow-gray);
  border-radius: 9999px;
  aspect-ratio: 1;
  line-height: 1.4;
}

.price-card .price-point-list .item .top-text {
  position: relative;
  font-size: calc(var(--std) * 1.4);
  line-height: 1.2;
}

.price-card .price-point-list .item .top-text.-rental {
  margin-block: -0.7em -0.5em;
}

.price-card .price-point-list .item .top-text .sub {
  position: absolute;
  top: 1.5em;
  right: -1.7em;
}

.price-card .price-point-list .item .bottom-text {
  font-size: calc(var(--std) * 2);
  color: var(--orange);
  margin-block: 0.2em 0;
}

.price-card .modal-button {
  background: url("/images/choosetips/icon_orange-plus.png") #fdf1f2 no-repeat top 50% right 20px/37px auto;
  color: var(--orange);
  border-radius: 26px;
  width: 100%;
  font-size: calc(var(--std) * 2);
  font-weight: bold;
  padding: 0.95em 2.25em;
  line-height: 1.4;
  letter-spacing: 0.06em;
  cursor: pointer;
  margin-block: calc(var(--std) * 3) 0;
}

.price-card .modal-button:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) and (max-width: 1005px) {
  /* PC small window */
  .price-card {
    --std: 0.95vw;
  }
}

/* PC small window */
@media screen and (max-width: 767px) {
  /* sp only */
  .price-card_layout {
    display: block;
    margin-block: 30px;
  }

  .price-card_layout::before {
    content: none;
  }

  .price-card {
    --std: 1.95vw;
  }

  .price-card:nth-of-type(2) {
    margin-block: calc(var(--std) * 7.7) 0;
    position: relative;
  }

  .price-card:nth-of-type(2)::before {
    content: "";
    display: block;
    background: url("/images/choosetips/icon_plus.png") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
    width: 26px;
    aspect-ratio: 1;
    inset: 0;
    bottom: auto;
    top: -10%;
    margin: auto;
    position: absolute;
  }

  .price-card .price-header {
    width: 100%;
    padding-bottom: 15px;
  }

  .price-card .price-header .price-point {
    width: calc(var(--std) * 16);
    font-size: calc(var(--std) * 2.4);
  }

  .price-card .price-header .price-point .sub {
    font-size: calc(var(--std) * 1.15);
    top: calc(var(--std) * 2.5);
  }

  .price-card .price-header .price-title {
    font-size: calc(var(--std) * 3);
  }

  .price-card .modal-button {
    font-size: calc(var(--std) * 2.5);
    padding-inline: 1em 2.25em;
  }
}

/* sp only */
/* end 料金カードレイアウト */


/* ==================
* 料金コンポーネント
* ================== */
.price_annotation {
  font-size: 12px;
  margin-block: 25px 0;
}

.price_annotation *+p {
  margin-block: 0.2em 0;
}

.price_annotation .indent {
  --indent: 1.7em;
}

/* end 料金コンポーネント */


/* ==================
* sec_point01
* ================== */
.sec_point01 {
  margin-block: 100px 0;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .sec_point01 {
    margin-top: 55px;
  }
}

/* sp only */
/* end sec_point01 */


/* ==================
* info_01
* ================== */
.info_01 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 72.3%;
  margin-inline: auto;
  padding-block: 60px 30px;
  gap: 30px;
}

.info_01 .image-box {
  width: 50.87%;
  position: relative;
}

.info_01 .image-box .image {
  width: 100%;
  border-radius: 26px;
}

.info_01 .image-box .circle {
  position: absolute;
  aspect-ratio: 1;
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  width: 84px;
  top: -40px;
  right: -40px;
  color: #FFF;
  border-radius: 9999px;
}

.info_01 .text-box {
  width: 40%;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .info_01 {
    display: block;
    width: calc(100% - 30px);
    padding-block: 15px;
  }

  .info_01 .image-box {
    width: 100%;
  }

  .info_01 .image-box .image {
    border-radius: 23px;
  }

  .info_01 .image-box .circle {
    top: 7px;
    right: 7px;
    width: 20vw;
    font-size: 4.4vw;
  }

  .info_01 .text-box {
    width: 100%;
    margin-block: 20px 0;
    font-size: 15px;
  }
}

/* sp only */
/* end info_01 */


/* ==================
* sec_point02
* ================== */
.sec_point02 {
  margin-block: 60px 0;
}

/* end sec_point02 */


/* ==================
* info_02
* ================== */
.info_02 {
  width: 89.61%;
  margin-inline: auto;
  padding-block: 34px;
}

.info_02 .images {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.info_02 .images .image {
  border-radius: 26px;
  width: 57%;
  margin-block: 20px 0;
}

.info_02 .images .circle {
  width: 35%;
}

.annotation-info_02 {
  margin-block: 20px 0;
  font-size: 12px;
}

.annotation-info_02 .indent {
  --indent: 1.9em;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .info_02 {
    padding-block: 20px 15px;
    width: calc(100% - 30px);
  }

  .info_02 .images {
    position: relative;
    display: block;
  }

  .info_02 .images .image {
    width: 100%;
  }

  .info_02 .images .circle {
    width: 40%;
    position: absolute;
    left: 3%;
    bottom: 3%;
    background-color: #FFF;
    border-radius: 9999px;
    overflow: hidden;
  }
}

/* sp only */
/* end info_02 */


/* ==================
* info_03
* ================== */
.info_03 {
  width: 89.61%;
  margin-inline: auto;
  padding-block: 34px;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .info_03 {
    padding-block: 15px 10px;
  }
}

/* sp only */
/* end info_03 */


/* ==================
* faq
* ================== */
.faq {
  margin-block: 100px 0;
}

.info_faq {
  width: 75.9%;
  margin-inline: auto;
  padding-block: 30px 50px;
}

.info_faq .faq-title {
  text-align: center;
  color: var(--blue);
  font-size: 30px;
  font-weight: bold;
}

.info_faq .dl .dt {
  text-align: center;
  font-size: clamp(18px, 16.553px + 0.426vw, 22px);
  border-bottom: #CDCAC4 1px solid;
  padding-bottom: 15px;
  font-weight: bold;
}

.info_faq .dl .dd {
  margin-block: 25px 0;
  font-size: clamp(16px, 15.296px + 0.188vw, 18px);
}

.info_faq .dl .dd .contents {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
}

.info_faq .dl .dd .contents .text {
  flex: 1;
}

.info_faq .dl .dd .contents .text .big {
  font-size: 1.22em; 
}

.info_faq .dl .dd .contents .text .big .sup {
  font-weight: normal;
  top: -1em;
}

.info_faq .dl .dd .contents.-float {
  display: block;
}

.info_faq .dl .dd .contents.-float .faq-image {
  float: right;
  width: 45%;
}

.info_faq .dl .dd .contents.-float::after {
  content: "";
  clear: both;
}

.info_faq .dl .dd .section__link {
  margin-block: 25px 0;
}

.info_faq .dl .dd .faq-image {
  width: 210px;
}

.info_faq .dl .dd .small {
  font-size: 0.7em;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .faq {
    margin-block: 60px 0;
  }

  .info_faq {
    width: calc(100% - 30px);
    padding-block: 10px 30px;
  }

  .info_faq .dl .dd .section__link a {
    --std: clamp(0px, 2vw, 10px);
    max-width: 418px;
    width: 100%;
  }

}

/* sp only */
/* end faq */


/* ==================
* sec_point03
* ================== */
.sec_point03 {
  margin-block: 100px 0;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .sec_point03 {
    margin-block: 60px 0;
  }
}

/* sp only */
/* end sec_point03 */


/* ==================
* info_04
* ================== */
.info_04 {
  width: 90%;
  margin-inline: auto;
  padding-block: 30px;
}

.info_04 .flex-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-block: clamp(22px, 8.62px + 3.568vw, 60px) 0;
}

.info_04 .flex-box .image-box {
  width: 50%;
}

.info_04 .flex-box .image-box .image {
  width: 100%;
  border-radius: 26px;
}

.info_04 .flex-box .text-box {
  width: 45%;
}

.info_04 .flex-box .text-box .balloon {
  background-color: #fce000;
  border-radius: 9999px;
  padding: 0.9em 2em;
  position: relative;
  text-align: center;
  font-size: clamp(18px, 17.296px + 0.188vw, 20px);
  line-height: 1.4;
  width: fit-content;
  margin-inline: auto;
}

.info_04 .flex-box .text-box .balloon:after {
  --arrow-size: clamp(8px, 7.296px + 0.188vw, 10px);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  inset: 0;
  top: auto;
  margin: auto;
  transform: translate(0px, 100%);
  border-width: var(--arrow-size) var(--arrow-size) 0 var(--arrow-size);
  border-color: #fce000 transparent transparent transparent;
}

.info_04 .flex-box .text-box .service-list {
  font-size: clamp(18px, 17.296px + 0.188vw, 20px);
  width: fit-content;
  margin-inline: auto;
  margin-block: 36px 0;
}

.info_04 .flex-box .text-box .service-list li {
  line-height: 1.6666666667;
  text-indent: -1.45em;
  padding-left: 1.45em;
}

.info_04 .flex-box .text-box .service-list li::before {
  content: "";
  display: inline-block;
  width: 21px;
  aspect-ratio: 1;
  background-color: #fce000;
  border-radius: 9999px;
  margin-right: 0.35em;
}

.info_04 .flex-box .text-box .service-list li:not(:nth-of-type(1)) {
  margin-block: 10px 0;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .info_04 {
    padding-block: 14px 20px;
    width: calc(100% - 30px);
  }

  .info_04 .flex-box {
    display: block;
    width: 100%;
  }

  .info_04 .flex-box .image-box {
    width: 100%;
  }

  .info_04 .flex-box .text-box {
    width: 100%;
    margin-block: 20px 0;
  }

  .info_04 .flex-box .text-box .balloon {
    width: 100%;
    padding-inline: 1em;
  }

  .info_04 .flex-box .text-box .service-list {
    margin-block: 25px 0;
  }
}

/* sp only */
/* end info_04 */


/* ==================
* info_05
* ================== */
.info_05 {
  width: calc(100% - 100px);
  margin-inline: auto;
  padding-block: 30px;
}

.info_05 .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_05 .flex-box .image-box {
  width: 55.27%;
}

.info_05 .flex-box .image-box .image {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.info_05 .flex-box .text-box {
  width: 44.72%;
  font-size: clamp(16px, 15.296px + 0.188vw, 18px);
  padding-inline: 8% 8%;
}

.info_05 .flex-box .text-box .annotation {
  margin-block: 1.2em 0;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .info_05 {
    width: calc(100% - 30px);
    padding-block: 15px;
  }

  .info_05 .flex-box {
    display: block;
  }

  .info_05 .flex-box .image-box {
    width: 100%;
  }

  .info_05 .flex-box .text-box {
    width: 100%;
    padding-inline: 0;
    margin-block: 18px 0;
  }
}

/* sp only */
/* end info_05 */


/* ==================
* bridge
* ================== */
.bridge {
  margin-block: clamp(60px, 52.254px + 2.066vw, 82px) 0;
}

.bridge::before {
  content: "";
  background: url("/images/choosetips/accent_under-arrow_01.png") rgba(255, 255, 255, 0) no-repeat top 50% left 50%/contain;
  display: block;
  aspect-ratio: 348/65;
  width: clamp(320px, 310.141px + 2.629vw, 348px);
  max-width: calc(100% - 80px);
  margin-inline: auto;
}

.bridge .sentence {
  text-align: center;
  font-size: clamp(14px, 12.764px + 0.364vw, 18px);
  line-height: 1.9444444444;
  margin-block: 1.5em 0;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .bridge {
    margin-block: 30px 0;
  }
}

/* sp only */
/* end bridge */


/* ==================
* three-standard
* ================== */
.three-standard {
  margin-block: 60px 0;
}

.three-standard .head-title {
  text-align: center;
  font-weight: bold;
  font-size: clamp(22px, 21.382px + 0.182vw, 24px);
  line-height: 1.4;
}

.three-standard .standard-list {
  width: fit-content;
  margin-inline: auto;
  margin-block: clamp(40px, 35.364px + 1.364vw, 55px) 0;
}

.three-standard .standard-block:not(:nth-of-type(1)) {
  margin-block: 60px 0;
}

.three-standard .standard-block .block-title {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 0.2em;
  position: relative;
}

.three-standard .standard-block .block-title::after {
  content: "";
  display: block;
  position: absolute;
  inset : 0;
  top: auto;
  margin-inline: auto;
  width: 70px;
  height: 1px;
  border-bottom: 1px solid var(--blue); /* bgColorではブラウザ幅によって2pxに見える場合があるため、borderで対応 */


}

.three-standard .standard-block .sentence {
  margin-block: 1em 0;
}

.three-standard .standard-block .sentence *+* {
  margin-block: 0.75em 0;
}

.three-standard .standard-block .sentence .c_check-paragraph {
  font-size: clamp(14px, 11.527px + 0.727vw, 22px);
}

.three-standard .annotation {
  font-size: clamp(10px, 9.277px + 0.213vw, 12px);
  margin-block: 2em 0;
}

.three-standard .annotation .indent {
  --indent: 1.3em;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .three-standard {
    margin-block: 35px 0;
  }

  .three-standard .standard-block:not(:nth-of-type(1)) {
    margin-block: 40px 0;
  }

  .three-standard .standard-block .sentence .c_check-paragraph {
    font-size: clamp(14px, 2.364px + 3.636vw, 16px);
  }
}

/* sp only */
/* end three-standard */


/* ==================
* banner-area
* ================== */
.banner-area {
  margin-block: 60px 0;
}

.banner-area .banner {
  display: block;
  width: 606px;
  max-width: calc(100% - 30px);
  margin-inline: auto;
}

.banner-area .banner .image {
  display: block;
  width: 100%;
}

.banner-area .banner:hover {
  opacity: 0.7;
}

/* end banner-area */


/* ==================
* sec_reccomend
* ================== */
.sec_reccomend {
  margin-block: 100px 130px;
}

.sec_reccomend .head-title {
  font-weight: bold;
  font-size: clamp(26px, 21.66px + 1.277vw, 38px);
  text-align: center;
  color: var(--blue);
}

@media screen and (max-width: 767px) {

  /* sp only */
  .sec_reccomend {
    margin-block-end: 70px;
  }
}

/* sp only */
/* end sec_reccomend */


/* ==================
* product-card
* ================== */
.product-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(30px, 22.766px + 2.128vw, 50px);
  margin-inline: auto;
  margin-block: 30px 0;
}

.product-card {
  container: product-card/inline-size;
  /* ※container-query使用 */
  border-radius: 26px;
  box-shadow: 0px 0px 6px rgba(52, 137, 178, 0.1);
  background: #FFF;
  overflow: hidden;
}

.product-card .inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding-block: 13cqw 10cqw;
}

.product-card .name {
  text-align: center;
  font-size: 6.5cqw;
  height: 100cqw;
  font-weight: bold;
  color: var(--blue);
  line-height: 1.3;
  height: 18cqw;
  position: relative;
}

.product-card .name.-putio {
  /*font-weight: normal;*/
  letter-spacing: 0.15em;
}

.product-card .image {
  display: block;
  width: 50cqw;
  margin-inline: auto;
  margin-block: -2cqw 0;
}

.product-card .style,
.product-card .point {
  position: absolute;
}

.product-card .style {
  top: 0;
  right: 0;
  width: 28.5cqw;
}

.product-card .point {
  left: 6cqw;
  width: 18cqw;
  top: 55cqw;
}

.product-card .link {
  margin-block: 10cqw 0;
}

.product-card .link a {
  padding-inline: 8cqw 5cqw;
  font-size: 4cqw;
  font-weight: bold;
}

.product-card .link a svg {
  width: 6cqw;
  fill: #fff;
  transition: fill 0.5s 0s;
  margin-left: 1em;
}

.product-card .link a:hover svg {
  fill: var(--blue);
}

@media screen and (max-width: 650px) {

  /* sp only */
  .product-card-list {
    max-width: 400px;
    padding-inline: 10px;
    margin-block: 20px 0;
  }
}

/* sp only */
/* end product-card */


/* ==================
* モーダル
* ================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .modal {
    padding: 20px;
  }
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1016px;
  max-height: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  animation-name: modalopen;
  animation-duration: 1s;
  display: flex;
  justify-content: center;
}

.modal-body {
  margin: 0 auto;
  padding: 40px;
  overflow-y: auto;
  max-height: 100%;
  background-color: #fff;
  border-radius: 20px;
}

.modal-body img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .modal-body {
    padding: 10px 10px 30px;
  }
}

.modal-body-btn {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .modal-body-btn a {
    font-size: 16px;
  }
}

.modal-close {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  line-height: 1;
  position: absolute;
  top: -22px;
  right: -22px;
  background-color: #989898;
  color: #fff;
  border-radius: 99px;
  width: 44px;
  height: 44px;
  text-align: center;
  cursor: pointer;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .modal-close {
    font-size: 24px;
    width: 32px;
    height: 32px;
    top: -12px;
    right: -12px;
  }
}

@keyframes modalopen {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* end モーダル */