@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&family=Courgette&family=Noto+Sans+JP:wght@800;900&family=Roboto:wght@900&display=swap");

:root {
  /* font */
  --font-family: "Noto Sans JP", sans-serif;
  --font-family-en: "eb-garamond", sans-serif;
  --font-family-copy: "ヒラギノ角ゴ ProN W3", Hiragino Sans,
    "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo,
    sans-serif;
  --font-family-heading: "ヒラギノ角ゴ ProN W3", Hiragino Sans,
    "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo,
    sans-serif;
  --font-family-num: "Roboto", sans-serif;

  /* font-size */
  --font-xxx-large: 2rem;
  --font-xx-large: 1.6rem;
  --font-x-large: 1.4rem;
  --font-large: 1.2rem;
  --font-medium: 1rem;
  --font-small: 0.8rem;
  --font-x-small: 0.6rem;
  --font-xx-small: 0.5rem;

  /* color */
  --color-blk: #333; /* 黒 rgb(0, 0, 0) */
  --color-wht: #fff; /* 白 rgb(255, 255, 255) */
  --color-gry: #b0b0b0; /*グレー */
  --color-gry-pale1: rgba(247, 246, 242, 1); /*グレー薄1 #F7F6F2 */
  --color-gry-pale2: rgba(239, 237, 225, 1); /*グレー薄2 #EFEDE1 */
  --color-main: rgba(247, 148, 29, 1); /*オレンジ #F7941D */
  --color-main-pale: #fff3e2;
  --color-accent: rgba(252, 78, 18, 1); /*赤 #FC4E12 */
  --color-wht2: rgb(255, 254, 228, 1); /*白2 #FFFEE4 */
}
.opacity-50 {
  opacity: 0.5;
}
.font-color-main {
  color: var(--color-main);
}

/* font */
.font-700 {
  font-weight: 700;
}
.font-s {
  font-size: 0.8rem;
}
.num {
  font-family: var(--font-family-num);
}
.flex-container {
  display: flex;
}
html {
  font-size: 1.25vmax;
}
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.7;
  background-color: #fcfcfc;
  color: #000;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
p {
  font-size: 1.1rem;
  font-weight: 300;
}
img {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
li {
  margin: 0;
  padding: 0;
  border: 0;
  list-style-type: none;
  list-style: none;
}
a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: #1b1b1b;
}
.contents {
  width: 100%;
}

.fadeUp {
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fadeDown {
  animation-name: fadeDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fadeBlur {
  animation-name: fadeBlur;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.zoomIn {
  animation-name: zoomIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.shiny-btn::before {
  /* アニメーション */
  animation-name: shiny;
  animation-delay: 0;
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.fv .copy-area .copy-sub.fadeUp {
  animation-delay: 0.3s;
}
.fv .copy-area .copy-main-1.fadeUp {
  animation-delay: 1s;
}
.fv .copy-area .copy-main-2.fadeUp {
  animation-delay: 1.8s;
}
.fv .btn.fadeDown {
  animation-delay: 2.5s;
}
.fv .btn-inner.shiny-btn {
  animation-delay: 0;
}
.fv .flex-container.fadeDown {
  animation-delay: 2.2s;
}
.fv .key-obj.fadeBlur {
  animation-delay: 1.8s;
}
.fv .fixed-actions.fadeBlur {
  animation-delay: 3s;
}
.fv .award-item-1.zoomIn {
  animation-delay: 2.2s;
}
.fv .award-item-2.zoomIn {
  animation-delay: 2.3s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeBlur {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shiny {
  0% {
    left: -10%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@keyframes moving-up {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(5%);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes rolling-up {
  0% {
    transform: scale(0) rotate(180deg);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  70% {
    transform: scale(1.2) rotate(360deg);
    opacity: 0.5;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}
@keyframes moving-up-2 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  70% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes animate-h2 {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}
@keyframes animate-mask {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  49% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
}

/* *****************************************

    COMMON

***************************************** */
.title {
  width: 100%;
  text-align: center;
  margin: 0 0 8% 0;
}
.title h3 {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.5vmax;
}
.title h3::after {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 4rem;
  height: 2px;
  background-color: #000;
}
.worry .contents,
.pickup .contents,
.flow .contents,
.price .contents,
.qa .contents {
  width: 85%;
  margin: 0 auto;
  padding: 7% 0;
}

/* *****************************************

    SECTION 1 | FV

***************************************** */

/*  HEADER */
header {
  position: fixed;
  width: 100%;
  margin: 0;
  padding: 2% 5%;
  z-index: 99;
  transition: 1s;
}
header .contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .logo {
  display: fixed;
  width: 12%;
  margin: 0;
  cursor: pointer;
}
/* ***************************************** */

.fv {
  position: relative;
  width: 100%;
  background: linear-gradient(110deg, #fff3e2 0%, #ffc675 70%, #f7941d 100%);
  height: calc(100vw * 3 / 4);
  min-height: 28rem;
  max-height: 36rem;
  overflow: hidden;
  aspect-ratio: 1.6/1;
}
.fv::after {
  content: "";
  position: absolute;
  left: -12%;
  top: -10%;
  width: 42rem;
  height: 42rem;
  display: block;
  background-image: url("../images/fv_key_logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  opacity: 0.7;
}
.fv .inner {
  width: 80%;
  height: 100%;
  margin: auto;
  position: relative;
}
.fv .main-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 2rem 0;
  padding: 0;
  width: 100%;
  z-index: 4;
}
.fv .copy-area .copy-main {
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  font-size: 2.8rem;
  line-height: 1.6;
}
.fv .copy-area .copy-main .font-strong {
  color: var(--color-accent);
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(transparent 5%, var(--color-wht2) 0%);
  padding: 0 0.3rem 0 0.6rem;
  letter-spacing: 0.6rem;
}
.fv .copy-area .copy-main .font-strong:nth-of-type(1) {
  margin-right: 0.6rem;
}
.fv .copy-area .copy-main .font-strong:nth-of-type(2) {
  margin-left: 0.6rem;
}

/* .fv .copy-area .copy-sub{
    letter-spacing: 1rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-wht);
    display: inline-block;
    padding: 0 1rem;
    text-shadow:
           .2rem .2rem 0px var(--color-main), -.2rem -.2rem 0px var(--color-main),
          -.2rem .2rem 0px var(--color-main),  .2rem -.2rem 0px var(--color-main),
          .2rem 0px 0px var(--color-main), -.2rem  0px 0px var(--color-main),
           0px .2rem 0px var(--color-main),  0px -.2rem 0px var(--color-main);
    line-height: 3rem;
    background: linear-gradient( transparent 60%, #FCC412 0% );
} */
.fv .copy-area .copy-sub {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.4rem;
  width: fit-content;
}
.fv .copy-area .copy-sub::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 2rem;
  background: url(../images/dec_before.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 1rem;
}
.fv .copy-area .copy-sub::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 2rem;
  background: url(../images/dec_after.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 1rem;
}
.fv .copy-area .copy-sub .num {
  color: var(--color-accent);
}
/* .fv .copy-area .copy-sub .num{
    font-size: 4rem;
    margin-right: 1rem;
    background-image: radial-gradient(circle at center, var(--color-main) 25%, transparent 25%);
    background-position: top right; 
    background-repeat: repeat-x; 
    background-size: .5em .3em; 
    padding-top: .2em; 
    letter-spacing: -.1rem;
} */
.fv .flex-container .list-item {
  font-size: 1rem;
  font-weight: 900;
  padding: 0.2rem 1.4rem;
  color: var(--color-accent);
  margin-right: 0.4rem;
  background: var(--color-wht);
  border: solid 0.16rem var(--color-accent);
  border-radius: 100rem;
  z-index: 5;
}
.fv .btn {
  position: relative;
  background: linear-gradient(120deg, #ff1484 0%, #ff8237 100%);
  z-index: 4;
  color: var(--color-wht);
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0 1rem 0.2rem rgba(0, 0, 0, 0.6);
  font-size: 1.6rem;
  font-family: var(--font-family);
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin: 2.8rem 0 2rem;
  transition: 0.8s;
  width: 32rem;
}
.fv .main-contents .btn::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  background-image: url("../images/icon_btn.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.fv .btn .btn-inner {
  padding: 1.4rem 1rem;
  position: relative;
  overflow: hidden;
}
.fv .btn .btn-inner.shiny-btn::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 3rem;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.5) 100%,
    rgba(255, 255, 255, 0) 0%
  );
}

.fv .btn:hover,
.coupon .btn:hover {
  box-shadow: none;
}
.fv .btn a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  left: 0;
  top: 0;
  transform: translate(0, 0);
}
.fv .btn-wrap .btn .copy-sub {
  background: var(--color-wht);
  color: var(--color-accent);
  display: inline-block;
  padding: 0 1.6rem;
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 1rem;
  font-family: var(--font-family);
  font-weight: 700;
  border: 0.2rem solid #ff1484;
  border-image: linear-gradient(to right, #ff1484 0%, #ff8237 100%);
  border-image-slice: 1;
}
.fv .fv-key-obj {
  position: absolute;
  width: 28rem;
  right: 4rem;
  bottom: 0;
  z-index: 2;
}
.fv .fv-key-obj .award-area {
  z-index: 4;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  top: -0.6rem;
  right: 4.4rem;
}
.fv .key-obj {
  width: 100%;
  max-width: calc(1920px * 0.4);
  max-height: 55rem;
  margin: auto;
}
.fv .fv-key-obj img {
  width: 100%;
  height: auto;
}
.fv .fv-key-obj .award-item {
  margin-right: -4rem;
}
.fv .fv-key-obj .award-item img {
  width: 10rem;
  height: auto;
}
.fv .fixed-actions {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.fv .fixed-actions .btn,
.coupon .btn {
  writing-mode: vertical-rl;
  line-height: 1.4;
  width: auto;
  letter-spacing: 0.8vmin;
  font-weight: 700;
  font-size: 1.8vmin;
  white-space: nowrap;
  border-radius: unset;
  padding: 1.8vmin 2vmin;
  margin: 0 0 2vmin;
}
.fv .fixed-actions .btn-line,
.coupon .btn-line {
  background: #00b900;
}
.fv .fixed-actions .btn-line::before,
.coupon .btn-line::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-image: url("../images/icon_line.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.fv .fixed-actions .btn-form::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-image: url("../images/icon_form.png");
  background-repeat: no-repeat;
  background-size: contain;
}

/* *****************************************

    SECTION | COUPON

***************************************** */

.coupon {
  position: relative;
  width: 100%;
  background-image: repeating-conic-gradient(
    #ffe07e 0 22.5deg,
    #ffeeb3 22.5deg 45deg
  );
}
.coupon img {
  height: auto;
  margin-bottom: 2rem;
}
.couopn .animation-scale img {
  opacity: 0;
}
.couopn .animation-scale img.active {
  animation: moving-up-2 1.5s ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0;
}
.coupon .contents {
  width: 50%;
  margin: 0 auto;
  padding: 5% 0;
  text-align: center;
}
.coupon .title {
  width: 100%;
  border: solid 2px #fc4e12;
  margin-bottom: 2rem;
  letter-spacing: 0.2rem;
}
.coupon .title h2 {
  margin: 1.5% auto;
  font-size: 2rem;
  font-weight: 500;
  color: #fc4e12;
}
.coupon .copy {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  text-align: left;
  color: #fc4e12;
}
.coupon h1:nth-of-type(1) {
  font-family: "Roboto", sans-serif;
  font-size: 21vmax;
  line-height: 100%;
  letter-spacing: -2vmax;
  margin: 0 0 0 -3%;
  padding: 0;
}
.coupon h1:nth-of-type(2) {
  font-size: 6vmax;
  font-weight: 700;
  line-height: 135%;
  margin: 0 0 3vmax 0;
}
.coupon .term {
  width: fit-content;
  background-color: var(--color-wht);
  margin: 0 auto 2rem;
}
.coupon .term .period {
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  border: solid 1px var(--color-main);
}
.coupon .term .period .key {
  background: var(--color-main);
  padding: 0.4rem 0.8rem;
  margin-right: 0.4rem;
  color: #fff;
}
.coupon .term .period .value {
  letter-spacing: 0.05rem;
  padding: 0.4rem 0.8rem;
  margin-right: 0.4rem;
  color: var(--color-main);
  font-weight: 700;
}
.coupon .text {
  width: 98%;
  margin: 0 auto;
}
.coupon .btn-wrap {
  position: relative;
}
.coupon .btn-wrap::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  right: 4rem;
  bottom: -3rem;
  background-image: url("../images/btn_item.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.coupon .btn {
  writing-mode: unset;
  vertical-align: middle;
  width: 15em;
  font-size: var(--font-xx-large);
  color: var(--color-wht);
  margin: 2rem auto;
  box-shadow: 0 0 1rem 0.2rem rgba(0, 0, 0, 0.6);
  transition: 1s;
  cursor: pointer;
  padding: 1.4rem 2rem;
  border-radius: 0.6rem;
  position: relative;
}
.coupon .btn-line::before {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: -1.2rem;
  margin-right: 0.4rem;
}
.coupon .btn::after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  background-image: url("../images/icon_btn.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.coupon .btn-line a {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
  z-index: 9;
}
/* ***************************************** */

/* *****************************************

    SECTION 2 | WORRY

***************************************** */
.worry .ex-container {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  column-gap: 0;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}
.worry .item {
  text-align: center;
  font-size: 1vmax;
  font-weight: 300;
}
.worry .item .image img {
  margin: 0;
  opacity: 0;
}

.worry .item .image img.active {
  animation: moving-up 0.5s ease-in-out;
  animation-fill-mode: both;
}
.worry .item .moving-2 img.active {
  animation-delay: 0.3s;
}
.worry .item .moving-3 img.active {
  animation-delay: 0.6s;
}
.worry .item .moving-4 img.active {
  animation-delay: 0.9s;
}
/* ***************************************** */

/* *****************************************

    SECTION 3 | PICK UP

***************************************** */

.pickup .copy {
  width: 80%;
  margin: 0 auto 15%;
}
.pickup .container {
  width: 100%;
}
.pickup .item {
  display: flex;
  margin: 0 0 10% 0;
}
.pickup .item:nth-of-type(2) {
  display: flex;
  flex-direction: row-reverse;
}
.pickup .item:last-child {
  margin: 0;
}
.pickup .image {
  width: 50%;
}
.pickup .text {
  width: 50%;
  margin: 5% 0 0;
  z-index: 10;
}
.pickup .text h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 3% 0;
}
.pickup .text h2 {
  margin: 2rem 0 0 1rem;
  position: relative;
  font-size: 2rem;
  line-height: 100%;
  text-align: left;
  color: #fff;
  display: table;
}
.pickup .text h2::after {
  position: absolute;
  top: -40%;
  left: -1rem;
  width: 108%;
  height: 180%;
  content: "";
  background-color: #f7941d;
  z-index: -10;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease 0s;
  visibility: visible;
}
.pickup .item:nth-of-type(2) h2:nth-of-type(2)::after {
  width: 115%;
}
.pickup .text h2.start::after {
  animation-name: animate-mask;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pickup .text:nth-of-type(2) h2:nth-of-type(2).start::after {
  animation-delay: 0.8s;
}
.pickup .text p {
  margin: 5% 0 0;
}
.pickup .item .image img {
  transform: scale(0) rotate(180deg);
  opacity: 0;
}
.pickup .item .image img.active {
  animation: rolling-up 1.5s ease-in-out;
  animation-fill-mode: both;
}
/* ***************************************** */

/* *****************************************

    SECTION 4 | PRIC LISTS

***************************************** */
.price .flex-container {
  display: flex;
  justify-content: space-between;
}
.price .price-wrap .flex-item {
  width: 24%;
  box-shadow: 0.05rem 0.05rem 0.3rem #666;
  border: solid 1px var(--color-gry);
}
.price .price-item {
  margin-bottom: 1rem;
}
.price .price-item .name {
  color: var(--color-main);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--color-wht);
  border-radius: 100rem;
}
.price .price-amount,
.price .price-amount .num {
  color: var(--color-wht);
  font-weight: 700;
  line-height: 1.4;
}
.price .price-amount .num {
  font-size: 2rem;
  margin-right: 0.4rem;
}
.price .price-amount .taxin,
.price .price-amount .taxin .num {
  font-size: 0.8rem;
  margin-left: 0.4rem;
}
.price .price-item .price-item-terms .num {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
.price .price-item-head {
  background: var(--color-main);
  padding: 1.2rem 1.6rem 1.8rem;
  text-align: center;
}
.price .price-item-body .price-item-terms {
  display: flex;
  justify-content: space-between;
  align-items: top;
  padding: 0 0.2rem;
  background: var(--color-main-pale);
}
.price .price-item-body .price-item-terms .content {
  text-align: center;
  line-height: 1;
  width: 33.3%;
}
.price .price-item-body .price-item-terms .content-head {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  padding: 0.4rem 0 0;
  white-space: nowrap;
  letter-spacing: 0.05rem;
}
.price .price-item-body .price-item-terms .content-body {
  font-size: 0.6rem;
  background: var(--color-wht);
  line-height: 1.4;
  margin: 0 0.16rem 0.4rem;
  height: 1.6rem;
  vertical-align: middle;
  white-space: nowrap;
}
.price .price-item-body .price-item-terms .font-700 {
  font-size: 1rem;
  letter-spacing: -0.02rem;
  white-space: nowrap;
}
.price .price-item-body .price-item-contents {
  padding: 0.6rem 1rem;
}
.price .caution {
  margin-bottom: 3rem;
}
.price .caution p {
  text-align: right;
  line-height: 1.4;
}

/* ****** ESTIMATION ****** */
.price .est-wrapper {
  margin: 0 auto;
  padding: 1% 0;
  width: 100%;
  background-color: #f7941d;
}
.price .est-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 85%;
}
.price .est-container .illust {
  width: 30%;
  margin: 0 12rem 0 8rem;
}
.price .est-container .illust img {
  opacity: 0;
}
.price .est-container .illust img.active {
  animation: moving-up-2 1.5s ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0;
}
.price .est {
  text-align: center;
  cursor: pointer;
  position: relative;
}
.price .est a {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: translate(0, 0);
}
.price .est .copy-sub {
  font-size: var(--font-small);
  font-weight: bold;
  display: block;
  line-height: 1;
}
.price .est p {
  position: relative;
  display: inline-block;
  padding: 2vmax 8vmax;
  font-size: 1.7vmax;
  font-weight: 500;
  letter-spacing: 0.2vmax;
  color: var(--color-accent);
  background-color: #fff;
  border-radius: 2vmax;
  z-index: 10;
  box-shadow: 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 30%);
}
.price .est p::after {
  position: absolute;
  top: 46%;
  right: 3rem;
  transform: translateY(-46%);
  content: "";
  width: 1vmax;
  height: 1vmax;
  border-right: solid 0.2rem var(--color-accent);
  border-bottom: solid 0.2rem var(--color-accent);
  transform: rotate(-45deg);
}
.price .est p:hover {
  background-color: #fc4e12;
  color: #fff;
  transition: 1s;
}
.price .est p:hover::after {
  border-right: solid 0.2rem #fff;
  border-bottom: solid 0.2rem #fff;
}
.price .est p:active {
  box-shadow: inset 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 0.3);
}
.o_title {
  text-align: center;
  font-size: var(--font-large);
  font-weight: 700;
  background: var(--color-main);
  color: var(--color-wht);
  border-radius: 2rem;
  width: fit-content;
  margin: auto;
  padding: 0.2rem 2rem;
}

/* modal */
.modal-action {
  text-align: center;
  margin: 3rem auto;
}
.modal-action .modal-btn {
  margin: 3% auto 0;
  padding: 1rem 2rem;
  background-color: var(--color-blk);
  border: solid 0.1rem var(--color-blk);
  border-radius: 100rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-align: center;
  line-height: 1.2;
  color: var(--color-wht);
  cursor: pointer;
  transition: 1s;
  -webkit-tap-highlight-color: transparent;
  transition: 0.2s ease-out;
}
.modal-action .modal-btn:hover {
  opacity: 0.6;
}

.modaal-content-container .title {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 2rem;
}
.support-list {
  width: 90%;
  margin: 0 auto 2rem;
}
.support-list th {
  background-color: var(--color-gry-pale2);
  padding: 0.4rem 1rem;
}
.support-list td {
  padding: 0.4rem 1rem;
}
.support-list tr:nth-of-type(even) {
  background-color: var(--color-gry-pale1);
}
.support-list tbody tr:hover {
  opacity: 0.4;
}
/* ***************************************** */

/* *****************************************

    SECTION　｜　SUPPORT

***************************************** */
.support {
  width: 80%;
  margin: 0 auto 6rem;
  overflow: hidden;
}
.support .title {
  margin-bottom: 3rem;
}
.support .list {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.support .flex-item {
  width: 19%;
  margin-right: 1%;
  margin-bottom: 0.5rem;
}
.support .flex-item img {
  font-size: 0;
  width: 100%;
  height: auto;
}
.support .tab-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  margin: 0 auto 2rem;
  background: var(--color-main-pale);
  border-radius: 100rem;
  padding: 0.6rem 1.8rem;
}
.support .tab-head .label {
  padding: 0.4rem 2rem;
  cursor: pointer;
  transition: 0.6s;
  letter-spacing: 0.1rem;
  font-weight: 700;
}
.support .tab-head .label.active {
  background: var(--color-main);
  color: var(--color-wht);
  border-radius: 100rem;
}
.support .tab-body {
  margin: auto;
}
.support .tab-body .tab-contents {
  display: none;
  transition: 0.6s;
}
.support .tab-body .tab-contents.active {
  display: block;
}

/* *****************************************

    SECTION 5 | FLOW

***************************************** */

/* FLOW FIGS */
.flow-container {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.flow-container li {
  border-top-right-radius: 2vmax;
  border: solid 0.3px #c1c1c1;
  background-color: #fff;
}
.flow-container .num {
  padding: 0rem 0;
  width: 7rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 7rem;
  line-height: 100%;
  border-right: solid 0.3px #c1c1c1;
  border-bottom: solid 0.3px #c1c1c1;
  z-index: 10;
}
.flow-container .num p {
  font-size: 5rem;
  font-weight: 100;
}
.flow-container li .illust {
  width: 80%;
  margin: -8% auto 25%;
}
.flow-container li .illust img {
  opacity: 0;
}
.flow-container li .illust img.active {
  animation: moving-up 0.5s ease-in-out;
  animation-fill-mode: both;
}
.flow-container li .moving-2 img.active {
  animation-delay: 0.5s;
}
.flow-container li .moving-3 img.active {
  animation-delay: 1s;
}
.flow-container li .moving-4 img.active {
  animation-delay: 1.5s;
}
.flow-container li .moving-5 img.active {
  animation-delay: 2s;
}
.flow-container li .moving-6 img.active {
  animation-delay: 2.5s;
}
.flow-container h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}
.flow-container .des p {
  margin: 1rem 2rem 3rem;
  text-align: left;
  line-height: 200%;
}
.flow .caption {
  font-size: 1rem;
  font-weight: 300;
  line-height: 200%;
  color: #7b7b7b;
  text-align: right;
  margin: 1% 0 0;
}
/* ***************************************** */

/* *****************************************

    SECTION 6 | Q & A

***************************************** */

/* Q & A */
.qa {
  background: var(--color-gry-pale2);
}
.faq-item {
  background: var(--color-wht);
  margin-bottom: 1.2rem;
  padding: 1.4rem 2rem;
  border-radius: 0.6rem;
  cursor: pointer;
  border: solid 1px var(--color-gry-pale1);
}
.faq-item .question p,
.faq-item .answer p {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  padding-left: 2.4rem;
  position: relative;
  line-height: 1.4;
}
.faq-item .question p {
  font-weight: bold;
}
.faq-item .question p::before {
  content: "Q";
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-right: 1rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
}
.faq-item .question p::after {
  border-right: solid 2px var(--color-blk);
  border-top: solid 2px var(--color-blk);
  content: "";
  display: block;
  height: 0.8rem;
  width: 0.8rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}
.faq-item .question.open p::after {
  transform: rotate(-45deg);
}
.faq-item .answer {
  display: none;
  padding: 1rem 1.4rem;
  background: var(--color-gry-pale1);
  margin-top: 1rem;
}
.faq-item .answer p::before {
  content: "A";
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-main);
  margin-right: 1rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
}

/* ***************************************** */

/* *****************************************

    SECTION 7 | CONTACT

***************************************** */

.contact {
  width: 100%;
  background: var(--color-main-pale);
}
.contact .title {
  width: 100%;
  text-align: center;
  padding: 5% 0;
  background: var(--color-main);
  margin-bottom: 0;
}
.contact .contents {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0 10%;
}
.contact .title h3 {
  color: #fff;
}
.contact .title h3::after {
  background-color: #fff;
}
.contact label {
  cursor: pointer;
}
.contact .copy {
  width: 100%;
  margin: 0 auto 5rem;
}
.contact .form-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}
.contact .form-container {
  width: 100%;
  margin: 0;
  padding: 0;
}
.contact #confirm {
  font-size: 2rem;
  justify-items: center;
}
.contact .form-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.contact .form-item.textarea {
  align-items: unset;
}
.contact .label-area {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  width: 40%;
  margin-right: 2rem;
}
.contact .label-area .required,
.contact .label-area .free {
  color: var(--color-wht);
  font-weight: 700;
  padding: 0.2rem 1rem;
  background: var(--color-gry);
  margin-right: 0.4rem;
  border-radius: 2rem;
}
.contact .label-area .required {
  color: var(--color-wht);
  background: var(--color-accent);
}
.contact .label-area .label {
  font-weight: 700;
}
.contact .input-area .input-text,
.contact .input-area .input-textarea {
  font-size: 1.2rem;
  line-height: 1.8;
  background: var(--color-wht);
  padding: 0.4rem 1rem;
  cursor: pointer;
  width: 100%;
  border: solid 1px var(--color-gry-pale2);
  letter-spacing: 0.01rem;
}
.contact .input-area .error {
  color: red;
  font-weight: 800;
}
.contact .input-area .input-textarea {
  min-height: 16rem;
}
.contact .input-area {
  width: 100%;
}
.contact .input-area .placeholder {
  color: var(--color-gry);
  font-weight: 400;
}
.contact .form-item.checkbox {
  margin: 3rem auto;
  width: fit-content;
}
.contact .form-item .label-wrap {
  border: solid 0.1rem var(--color-blk);
  background: var(--color-wht);
  padding: 0.4rem 2rem 0.4rem 3.6rem;
  position: relative;
  cursor: pointer;
  border-radius: 10rem;
  position: relative;
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}
.contact .form-item .label-wrap:hover {
  background: var(--color-gry-pale1);
}
.contact input[type="checkbox"]:checked + .label-wrap {
  background: var(--color-blk);
  border: solid 1px var(--color-blk);
  color: var(--color-wht);
}
.contact [type="checkbox"]:not(:checked) + .label-wrap label:before,
.contact [type="checkbox"]:checked + .label-wrap label:before {
  content: "";
  position: absolute;
  left: 1.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2em;
  height: 1.2em;
  border: 0.1rem solid var(--color-blk);
  background: #fff;
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}
.contact [type="checkbox"]:checked + .label-wrap label:after {
  content: "";
  position: absolute;
  left: 2rem;
  top: 40%;
  width: 1rem;
  height: 0.6rem;
  border-left: 0.2rem solid var(--color-blk);
  border-bottom: 0.2rem solid var(--color-blk);
  transform: rotate(-45deg) translateY(-40%);
}
.contact .app-btn {
  display: block;
  margin: 3% auto 0;
  border: 0;
  padding: 2rem 10rem;
  background-color: var(--color-accent);
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  box-shadow: 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: 1s;
  -webkit-tap-highlight-color: transparent;
  transition: 0.2s ease-out;
}
.contact .app-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0.5rem 0.5rem 0.2rem rgba(0, 0, 0, 0.3);
}
.contact .app-btn:active {
  box-shadow: inset 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 0.3);
}
.contact .app-btn:disabled {
  color: #fff;
  background: #ccc;
}
/* ***************************************** */

/* *****************************************

    cta

***************************************** */
.cta-container {
  margin: auto;
  width: 80%;
  justify-content: space-between;
}
.cta-item {
  margin: 2rem auto;
  text-align: center;
  width: 48%;
  background: var(--color-wht);
  border-radius: 1rem;
  color: var(--color-accent);
  font-weight: 600;
  padding: 0.6rem 2rem;
  font-size: x-large;
  box-shadow: 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 30%);
  position: relative;
  transition: all 0.5s;
}
.cta-item::after {
  position: absolute;
  top: 46%;
  right: 2rem;
  transform: translateY(-46%);
  content: "";
  width: 1vmax;
  height: 1vmax;
  border-right: solid 0.2rem var(--color-accent);
  border-bottom: solid 0.2rem var(--color-accent);
  transform: rotate(-45deg);
}
.cta-item:hover {
  opacity: 0.6;
  box-shadow: unset;
}
.cta-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 99;
  left: 0;
  top: 0;
}
.cta-item .copy-sub {
  display: block;
  font-weight: 500;
  font-size: medium;
}

/* *****************************************

    FOOTER

***************************************** */

#cta,
footer {
  width: 100%;
  background-color: #f7941d;
}
footer .contents {
  width: 85%;
  margin: 0 auto;
  padding: 1vmax 18vmax 2vmax;
}
footer ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
footer a {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  line-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
footer .logo {
  width: 7%;
  margin: 5vmax auto 0;
}
/* ***************************************** */

.contact input.error,
.contact textarea.error {
  border: solid 1px red;
}
.contact .form-input-area label.error,
.contact .form-input-space label.error {
  color: red;
  font-size: 1rem;
}

@media (min-width: 481px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 480px) {
  .sp_none {
    display: none;
  }
  .fv {
    height: 80vh;
    max-height: unset;
    min-height: unset;
  }
  .fv .inner {
    width: 93%;
  }
  .fv .main-contents {
    margin-bottom: 0;
  }
  .fv .copy-area {
    margin-bottom: 10rem;
  }
  .fv .copy-area .copy-sub {
    font-size: 2rem;
    margin: 2rem auto 3rem;
  }
  .fv .copy-area .copy-main {
    font-size: 4.6rem;
    line-height: 1.4;
  }
  .fv .copy-area .copy-main .font-strong {
    font-size: 5.4rem;
    background: linear-gradient(transparent 40%, var(--color-wht2) 0%);
  }
  .fv .copy-area .copy-main .copy-main-1 {
    margin-bottom: 1rem;
  }
  .fv .copy-area .copy-main .font-strong:nth-of-type(2) {
    margin-left: 0;
  }
  .fv .btn {
    width: auto;
  }
  .fv .btn .btn-inner {
    padding: 2rem 1rem;
  }
  .fv .btn-wrap .btn .copy-sub {
    font-size: 1.2rem;
  }
  .fv .btn .copy-sub .num {
    letter-spacing: -0.01rem;
  }
  .fv .fv-key-obj .award-area {
    justify-content: center;
    top: unset;
    bottom: 30%;
    right: 1rem;
    /* -webkit-transform: translate(-6%,-22%);
        -ms-transform: translate(-6%,-22%);
        transform: translate(-6%,-22%); */
  }
  .fv .fv-key-obj .award-item {
    margin-right: -1.4rem;
  }
  .fv .fv-key-obj {
    width: 95%;
    right: -20%;
    bottom: -3%;
    transform: translate(20%, 3%);
  }
  .fv .support-service {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
  }
  .fv .flex-container .list-item {
    width: 30%;
    text-align: center;
    margin-bottom: 0.4rem;
    padding: 0.6rem;
    font-size: 1.2rem;
    white-space: nowrap;
  }
  .fv .fixed-actions {
    position: fixed;
    right: unset;
    left: 0;
    top: unset;
    bottom: -4.2rem;
    transform: translateY(-50%);
    z-index: 99;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2% 0.6rem;
    background: var(--color-blk);
  }
  .fv .fixed-actions .btn {
    writing-mode: unset;
    line-height: 1.4;
    width: auto;
    letter-spacing: 0.8vmin;
    font-weight: 700;
    font-size: 4vmin;
    white-space: nowrap;
    width: 49%;
    border-radius: unset;
    padding: 2.4vmin 2vmin 2vmin 9vmin;
    margin: 0 0 2vmin;
    vertical-align: middle;
    box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.4);
  }
  .fv .fixed-actions .btn-line::before {
    width: 2.4rem;
    height: 2.4rem;
  }
  .fv .fixed-actions .btn-form::before {
    width: 2.4rem;
    height: 2.4rem;
  }
  .fv .fixed-actions .copy-sub {
    font-size: 1rem;
    display: block;
    line-height: 1;
  }
  .fv .fixed-actions .copy-sub .num {
    letter-spacing: -0.01rem;
  }
  .fv .fixed-actions .btn::before {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .coupon .contents {
    width: 85%;
  }

  section.price {
    overflow: hidden;
  }
  .price .flex-container {
    margin: auto -12.5%;
  }
  .price .price-item {
    margin: 1rem 0.6rem;
  }
  .price .price-item .name {
    font-size: 2rem;
    margin-top: 0.8rem;
    margin-bottom: 2rem;
  }
  .price .price-item-body,
  .price .price-item-body .price-item-terms .content-head {
    font-size: 1.2rem;
  }

  .price .price-amount {
    margin-bottom: 1.4rem;
  }
  .price .price-item-body .price-item-terms .content-head {
    padding-top: 0.6rem;
  }
  .price .price-item-body .price-item-terms .content-body,
  .price .price-item-body .price-item-terms .font-700 {
    font-size: 1.1rem;
    height: auto;
    margin-bottom: 0.8rem;
  }
  .price .price-item-body .price-item-terms .font-700 {
    font-size: 1.6rem;
  }
  .price .price-amount .num {
    font-size: 3rem;
    margin-right: 0.2rem;
    letter-spacing: 0.1rem;
  }
  .price .price-amount .taxin {
    font-size: 1.1rem;
  }
  .price .price-amount,
  .price .price-amount .taxin .num {
    font-size: 1.4rem;
  }
  .price .price-item .price-item-terms .num {
    font-size: 1.8rem;
  }
  .price .price-item .price-item-contents {
    padding: 1rem 1.4rem;
  }
  .price .price-item .price-item-contents .content {
    font-size: 1.4rem;
  }
  .price .caution p {
    font-size: 1rem;
    margin-top: 4rem;
  }
  .slick-track {
    display: flex !important;
  }
  .slick-slide {
    height: auto !important;
  }

  .o_title {
    font-size: var(--font-x-large);
  }
  .option dt,
  .option dd {
    padding: 1.4rem 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
  }
  .option dt span,
  .option dd span {
    display: block;
  }
  .option dt {
    border-left: 0;
    font-size: 3vmin;
    font-weight: 300;
    line-height: 1.45;
  }
  .option dt span {
    font-size: 2vmin;
  }
  .option dd {
    font-size: 4vmin;
    font-weight: 700;
  }
  .option dd span {
    font-size: 2vmin;
    margin-left: 0.2rem;
  }
  .support {
    width: 95%;
    margin-bottom: 10rem;
  }
  .price .support .flex-container {
    margin: 0 auto;
  }
  .support-list {
    width: 100%;
  }
  .support .tab-head {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .support .tab-head .label {
    font-size: 1.2rem;
  }
  .modaal-noscroll .modaal-wrapper .modaal-close {
    background: var(--color-gry);
    top: unset;
    right: unset;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 9999;
  }
  .support .flex-container::after {
    content: "";
    width: 33%;
    display: block;
  }
  .support .tab-body .flex-item {
    width: 33%;
    margin-right: 0;
  }
  .faq-item {
    padding-right: 3.6rem;
  }
  .faq-item .question p,
  .faq-item .answer p {
    font-size: 1.6rem;
  }
  .faq-item .question p::before {
    left: -0.4rem;
  }
  .faq-item .question p::after {
    right: -1.6rem;
  }
  .faq-item .answer {
    display: none;
    padding: 1rem 1.4rem;
    background: var(--color-gry-pale1);
    margin-top: 1rem;
    margin-right: -2rem;
    margin-left: -1rem;
  }

  .cta-container {
    flex-direction: column;
    padding-top: 2rem;
  }
  .cta-item {
    width: 100%;
    margin: 1rem auto;
  }

  .contact .contents {
    width: 85%;
  }
  .contact .form-text {
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding: 1.4rem 1rem;
  }
  .contact .form-item {
    flex-direction: column;
  }
  .contact .label-area {
    margin: 0 0 0.6rem;
    width: 100%;
  }
  .contact label {
    font-size: 1.4rem;
  }
  .contact .form-item .label-wrap {
    padding-left: 4.3rem;
  }
  .contact [type="checkbox"]:checked + .label-wrap label:after {
    left: 2.2rem;
  }
  .contact .input-area .input-text,
  .contact .input-area .input-textarea {
    font-size: 1.8rem;
  }
}

@media (max-width: 376px) {
  .fv .fv-key-obj .award-area {
    justify-content: center;
    top: -14%;
    transform: translateY(-14%);
  }
  .fv .fixed-actions {
    bottom: -5rem;
  }
}

/* ===========================================
   オプション料金セクション
=========================================== */

/* ベースセクション */
.option-section {
  background: var(--color-wht);
  padding: 1rem 3rem;
  margin: 1rem 10% 0;
  box-shadow: 1px 1px 1px #ddd;
  border: solid 1px #efefef;
}

/* ヘッダー（クリック可能エリア） */
.option-header {
  position: relative;
  cursor: pointer;
}

.option-header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: url("../images/arrow-icon.svg") no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  background-size: contain;
  transition: transform 0.3s ease;
}

.option-header.open::after {
  transform: translateY(-50%) rotate(0deg);
}

/* タイトルグループ */
.option-title-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 6rem;
}

.option-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-large);
  font-weight: 700;
  color: var(--color-blk);
  margin: 0;
  line-height: 1.25;
}

/* 価格表示（ヘッダー内） */
.option-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.option-price .price-total {
  white-space: nowrap;
}

.option-price .price-number {
  font-family: "Roboto", sans-serif;
  font-size: var(--font-x-large);
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.2;
  white-space: nowrap;
}

.option-price .price-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-medium);
  font-weight: 700;
  color: var(--color-main);
}

.option-price .price-tax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-medium);
  font-weight: 700;
  color: var(--color-main);
  display: block;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}

/* 説明文 */
.option-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-blk);
  line-height: 1.5;
}

/* 詳細エリア（開閉対象） */
.option-details {
  display: none;
}

/* 詳細アイテム */
.detail-item {
  background: var(--color-main-pale);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
}
.detail-item:nth-of-type(1) {
  margin-top: 1rem;
}

.detail-item:not(:last-child) {
  border-bottom: 0.3px solid #c1c1c1;
}

.detail-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-blk);
}

/* 価格表示（詳細内） */
.detail-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-price .price-number {
  font-family: "Roboto", sans-serif;
  font-size: var(--font-large);
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.2;
}

.detail-price .price-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-medium);
  font-weight: 700;
  color: var(--color-main);
}

.detail-price .price-tax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-x-small);
  font-weight: 700;
  color: var(--color-main);
  display: block;
  text-align: center;
  width: 100%;
}

@media (max-width: 480px) {
  /* オプション料金セクション - モバイル */
  .option-section {
    padding: 1rem;
    margin: 1rem 0 0;
  }
  .option-title-group {
    margin-right: 3rem;
  }
  .option-title {
    width: 73%;
    font-size: var(--font-xx-large);
  }
  .option-price .price-number,
  .detail-price .price-number {
    font-size: var(--font-xx-large);
  }
  .detail-item {
    padding: 1rem;
  }
  .option-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .option-description {
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: var(--font-large);
  }
  .detail-price .price-tax {
    font-size: var(--font-small);
  }
}
