@charset "UTF-8";

body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 1.7;
  background-color: #fcfcfc;
  color: #000;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
p {
  font-size: 1.8rem;
  font-weight: 300;
}
img {
  width: 100%;
  height: auto;
  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%;
}
.clear::after {
  content: "";
  clear: both;
  display: block;
}
:root {
  /* 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 */

  /* font-size */
  --font-xxx-large: calc(2em * 2);
  --font-xx-large: calc(1.6em * 2);
  --font-x-large: calc(1.4em * 2);
  --font-large: calc(1.2em * 2);
  --font-medium: calc(1em * 2);
  --font-small: calc(0.8em * 2);
  --font-x-small: calc(0.6em * 2);
  --font-xx-small: calc(0.5em * 2);
}
.title {
  width: 100%;
  text-align: center;
  margin: 0 0 8% 0;
}

/* responsive control */
.pc {
  display: block;
}
.tab-portrait {
  display: none;
}
.tab-landscape {
  display: none;
}
.sp-portrait {
  display: none;
}
.sp-landscape {
  display: none;
}
.common {
  display: block;
}

@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);
  }
}

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

    SECTION 1 | TOP

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

/*  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;
}
/* ***************************************** */

.top {
  position: relative;
  width: 100%;
  background: linear-gradient(120deg, #fff3e2 0%, #ffc567 70%, #f7941d 100%);
}
.top .sub-copy {
  position: absolute;
  top: 19%;
  left: 21%;
}
.top .sub-copy h2 {
  position: relative;
  font-size: 2vmax;
  font-weight: 700;
  letter-spacing: 0.8rem;
  line-height: 100%;
  text-align: center;
  padding: 0 auto;
}
.top .sub-copy span {
  font-family: "hiragino", sans-serif;
}
.top .copy {
  position: absolute;
  top: 27%;
  left: 8%;
}
.top .copy h1 {
  font-size: 5.8vmax;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 0.9vmax;
}
.top .copy .orange {
  font-size: 5.8vmax;
  color: #fc4e12;
}
.top .copy h1 span {
  font-size: 4.5vmax;
}
.top picture {
  width: 35%;
  float: right;
  margin: 3% 0 0;
  padding: 0;
  z-index: -20;
}
.top .est {
  position: absolute;
  top: 72%;
  left: 8%;
  text-align: center;
  cursor: pointer;
  transition: 1s;
}
.top .est p {
  position: relative;
  display: inline-block;
  padding: 2.4vmax 9vmax;
  font-size: 1.7vmax;
  font-weight: 500;
  letter-spacing: 0.2vmax;
  color: #fff;
  background-color: #fc4e12;
  border-radius: 2vmax;
  z-index: 10;
  box-shadow: 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 30%);
  transition: 0.5s;
}
.top .est p::after {
  position: absolute;
  top: 3.4vmax;
  right: 7vmax;
  content: "";
  width: 1vmax;
  height: 1vmax;
  border-right: solid 1.5px #fff;
  border-bottom: solid 1.5px #fff;
  transform: rotate(-45deg);
}
.top .est p:hover {
  background-color: #fff;
  color: #f7941d;
  transition: 1s;
}
.top .est p:hover::after {
  border-right: solid 1.5px #f7941d;
  border-bottom: solid 1.5px #f7941d;
}
.top .est p:active {
  box-shadow: inset 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 0.3);
}
.top .bg {
  width: 25%;
  float: left;
  margin: 3% 0 0 0;
}
/* ***************************************** */

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

    SECTION | COUPON

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

.coupon {
  position: relative;
  width: 100%;
  background-image: repeating-conic-gradient(
    #ffe07e 0 22.5deg,
    #ffeeb3 22.5deg 45deg
  );
}
.coupon .contents {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0;
  text-align: center;
}
.coupon .title {
  width: 100%;
  border: solid 2px #fc4e12;
}
.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: 100%;
  background-color: #fcc412;
  border: solid 1px #fcc412;
  margin-bottom: 2%;
}
.coupon .term h2 {
  margin: 1.5% auto;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.coupon .text {
  width: 98%;
  margin: 0 auto;
}
/* ***************************************** */

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

    SECTIO 2 | WORRY

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

.worry .contents {
  width: 85%;
  margin: 0 auto;
  padding: 7% 0;
}
.worry .title {
  width: 100%;
  text-align: center;
  margin: 0 0 10% 0;
}
.worry .title h3 {
  position: relative;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.5vmax;
}
.worry .title h3::after {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 4rem;
  height: 2px;
  background-color: #000;
}
.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 .contents {
  width: 85%;
  margin: 0 auto;
  padding: 7% 0;
}
.pickup .title {
  width: 100%;
  text-align: center;
  margin: 0 0 10% 0;
}
.pickup .title h3 {
  position: relative;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.5vmax;
}
.pickup .title h3::after {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 4rem;
  height: 2px;
  background-color: #000;
}
.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: 2.5rem;
  font-weight: 700;
  margin: 0 0 3% 0;
}
.pickup .text h2 {
  margin: 2rem 0 0 1rem;
  position: relative;
  font-size: 3rem;
  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 .contents {
  width: 85%;
  margin: 0 auto;
  padding: 7% 0;
}
.price .title {
  width: 100%;
  text-align: center;
  margin: 0 0 10% 0;
}
.price .title h3 {
  position: relative;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.5vmax;
}
.price .title h3::after {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 4rem;
  height: 2px;
  background-color: #000;
}

/* PRICE LISTS */
.price .icon {
  position: absolute;
  top: -5vmax;
  left: 0.5%;
  width: 7%;
}
.list-container {
  position: relative;
  width: 100%;
  margin: 0 0 2vmax;
  padding: 0;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  border: solid 0.3px #c1c1c1;
  text-align: center;
}
/* FONT SETTING */
.list-container .type {
  font-size: 1.8rem;
  font-weight: 700;
}
.list-container .item {
  font-size: 1.5rem;
  font-weight: 300;
}
.list-container .price-num {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f7941d;
}
.list-container .price-num span {
  font-size: 1rem;
}
.list-container .box-15 span {
  color: #fc4e12;
  line-height: 0%;
}
.list-container .box-15 span:nth-of-type(1) {
  font-size: 0.8rem;
  vertical-align: -1rem;
}
.list-container .box-15 span:nth-of-type(2),
.list-container .box-15 span:nth-of-type(4) {
  font-family: "hiragino", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  vertical-align: -0.1rem;
}
.list-container .box-15 span:nth-of-type(3) {
  font-size: 1.5rem;
}
.list-container .box-14 span {
  color: #7b7b7b;
}
/* BACKGOUNRD COLOUR */
.list-container .box-1,
.list-container .box-2,
.list-container .box-3,
.list-container .box-4,
.list-container .box-5,
.list-container .box-6,
.list-container .box-7,
.list-container .box-8,
.list-container .box-15 {
  background-color: #fff3e2;
}
/* LINES */
.list-container .bottom-right {
  border-bottom: solid 0.3px #c1c1c1;
  border-right: solid 0.3px #c1c1c1;
}
.list-container .right {
  border-right: solid 0.3px #c1c1c1;
}
.list-container .bottom {
  border-bottom: solid 0.3px #c1c1c1;
}
/* GRID SETTING */
.list-container .line-1st,
.list-container .line-2nd {
  padding: 3rem 0;
}
.list-container .line-3rd,
.list-container .line-common {
  padding: 2rem 0;
}
.list-container .line-4th {
  padding: 5rem 0 2rem;
}
.list-container .box-15 {
  padding: 12rem 0 0;
}
/* NORMAL */
/* 1st LINE */
.list-container .box-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.list-container .box-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.list-container .box-3 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.list-container .box-4 {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}
/* 2nd LINE */
.list-container .box-5 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.list-container .box-6 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.list-container .box-7 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
.list-container .box-8 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}
/* 3rd LINE */
.list-container .box-9 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}
.list-container .box-10 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}
.list-container .box-11 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}
.list-container .box-12 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}
/* 4th LINE */
.list-container .box-13 {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}
.list-container .box-14 {
  grid-column: 2 / 5;
  grid-row: 4 / 5;
}
/* OPTION LIST */
.list-container .box-15 {
  grid-column: 1 / 2;
  grid-row: 1 / 6;
}
.list-container .box-16 {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  padding-left: 3rem;
  text-align: left;
}
.list-container .box-17 {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}
.list-container .box-18 {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  padding-left: 3rem;
  text-align: left;
}
.list-container .box-19 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}
.list-container .box-20 {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
  padding-left: 3rem;
  text-align: left;
}
.list-container .box-21 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}
.list-container .box-22 {
  grid-column: 2 / 4;
  grid-row: 4 / 5;
  padding-left: 3rem;
  text-align: left;
}
.list-container .box-23 {
  grid-column: 4 / 5;
  grid-row: 4 / 5;
}
.list-container .box-24 {
  grid-column: 2 / 4;
  grid-row: 5 / 6;
  padding-left: 3rem;
  text-align: left;
}
.list-container .box-25 {
  grid-column: 4 / 5;
  grid-row: 5 / 6;
}

/* ****** 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;
}
.price .est p {
  position: relative;
  display: inline-block;
  padding: 2.4vmax 9vmax;
  font-size: 1.7vmax;
  font-weight: 500;
  letter-spacing: 0.2vmax;
  color: #f7941d;
  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: 3.4vmax;
  right: 7vmax;
  content: "";
  width: 1vmax;
  height: 1vmax;
  border-right: solid 1.5px #f7941d;
  border-bottom: solid 1.5px #f7941d;
  transform: rotate(-45deg);
}
.price .est p:hover {
  background-color: #fc4e12;
  color: #fff;
  transition: 1s;
}
.price .est p:hover::after {
  border-right: solid 1.5px #fff;
  border-bottom: solid 1.5px #fff;
}
.price .est p:active {
  box-shadow: inset 0.3rem 0.3rem 0.8rem rgba(0, 0, 0, 0.3);
}
/* ***************************************** */

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

    SECTION 5 | FLOW

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

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

/* FLOW FIGS */
.flow-container {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6rem;
  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: 2rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}
.flow-container .des p {
  margin: 10% 8% 14%;
  text-align: left;
  line-height: 200%;
}
.flow .caption {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 200%;
  color: #7b7b7b;
  text-align: right;
  margin: 1% 0 0;
}
/* ***************************************** */

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

    SECTION 6 | Q & A

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

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

/* Q & A */
.qa-container {
  width: 100%;
  margin: 0 0 3%;
}
.question-area {
  width: 100%;
  padding: 2% 5%;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  cursor: pointer;
  transition: 0.5s;
}
.question-area:hover {
  background-color: #f5f5f5;
}
.question-text {
  width: 100%;
}
.question-area .arrow-box {
  margin: 0.5% 0 0 0;
  position: relative;
  width: 2rem;
  height: 2rem;
  transform: rotate(45deg);
  transition: 1s;
}
.question-area .arrow-box span {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 1s;
}
.question-area .arrow-box span:nth-of-type(1) {
  transform-origin: center right;
  border-right: solid 0.5px #707070;
}
.question-area .arrow-box span:nth-of-type(2) {
  transform-origin: bottom center;
  border-bottom: solid 0.5px #707070;
}
.question-area .arrow-box span:nth-of-type(1).open {
  transition: 1s;
  transform: rotate(270deg) translate(-25%, -25%);
}
.question-area .arrow-box span:nth-of-type(2).open {
  transition: 1s;
  transform: rotate(270deg) translate(25%, 25%);
}
.qa-container .question-text p {
  font-size: 2rem;
  font-weight: 700;
}
.qa-container .question-text span {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  color: #fc4e12;
}
.qa-container .answer-area {
  width: 100%;
  padding: 2% 5%;
  border-radius: 1rem;
  background-color: #ebebeb;
  display: none;
}
.qa-container .answer-text span {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f7941d;
}
.qa-container .answer-text p {
  vertical-align: 10rem;
}
/* ***************************************** */

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

    SECTION 7 | CONTACT

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

.contact {
  width: 100%;
}
.contact .title {
  width: 100%;
  text-align: center;
  padding: 5% 0;
  color: #fff;
  background-color: #f7941d;
}
.contact .contents {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0 10%;
}
.contact .title h3 {
  position: relative;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.5vmax;
}
.contact .title h3::after {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 4rem;
  height: 2px;
  background-color: #fff;
}
.contact label {
  cursor: pointer;
}
.contact .copy {
  width: 100%;
  margin: 0 auto 15%;
}
.contact .form-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}
.contact .form-container {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  column-gap: 5%;
  row-gap: 2vmax;
  grid-template-columns: 1.32fr 3fr;
}
.contact .form-title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0 0 0 26%;
  letter-spacing: 0.1rem;
  line-height: 240%;
}
.contact .form-required::before {
  position: absolute;
  top: 1.2rem;
  left: 0;
  content: "必須";
  padding: 0.3rem 0.8rem;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 100%;
  text-align: center;
  color: #fff;
  background-color: #ff0000;
}
.contact .form-required:nth-of-type(5)::before {
  content: "任意";
  background-color: #adadad;
}
.contact .form-text {
  padding: 1%;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  line-height: 150%;
  background-color: #f4f4f4;
  border-radius: 0.3rem;
  border: none;
}
.contact .form-text::-webkit-input-placeholder {
  padding: 1% 0 0 2%;
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-weight: 100;
  letter-spacing: 0.1rem;
  color: #b9b9b9;
}
.contact .message {
  height: 30rem;
}
.contact .form-container textarea {
  resize: none;
}
.contact .form-box-7 {
  grid-column: 2 / 3;
  font-size: 1.5rem;
  font-weight: 300;
}
.contact .app-btn {
  display: block;
  margin: 3% auto 0;
  border: 0;
  padding: 2rem 12rem;
  background-color: #fc4e12;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
  line-height: 1.8;
  color: #fff;
  box-shadow: 0.3rem 0.3rem 0.5rem rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: 1s;
}
.contact .app-btn:hover {
  background-color: #fff;
  color: #f7941d;
  transition: 1s;
}
.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;
}
/* ***************************************** */

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

    FOOTER

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

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: 1.8rem;
  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: 1.2rem;
}

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

@media (max-width: 480px) {
  .sp_none {
    display: none;
  }
}

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

.o_title {
  text-align: center;
  font-size: var(--font-large);
  font-weight: 700;
  margin: 4rem auto 2rem;
  background: var(--color-main);
  color: var(--color-wht);
  border-radius: 100rem;
  width: fit-content;
  padding: 0.2rem 4rem;
}

/* ベースセクション */
.option-section {
  background: var(--color-wht);
  padding: 1rem 3rem;
  margin: 2rem 10%;
}

/* ヘッダー（クリック可能エリア） */
.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: 4rem;
  height: 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-medium);
  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-small);
  font-weight: 700;
  color: var(--color-main);
  margin-left: 0.5rem;
}

.option-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%;
  white-space: nowrap;
}

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

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

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

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

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

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

.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-small);
  font-weight: 700;
  color: var(--color-main);
  margin-left: 0.5rem;
}

.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: right;
  width: 100%;
}

/* 非推奨（アイコン要素） */
.arrow-icon {
  width: 4rem;
  height: 4rem;
}

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

  .arrow-icon {
    width: 30px;
    height: 30px;
  }
  .option-description {
    font-size: var(--font-small);
    line-height: 1.5;
  }

  .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;
  }
  .option-header::after {
    width: 3rem;
    height: 3rem;
  }
}

/************************
* price
************************/
.price .list-container {
  display: block;
}
.price-table {
  display: block;
  width: 100%;
}
.price-table-head,
.price-table-body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: solid 0.3px #c1c1c1;
}
.head-item,
.body-item {
  box-sizing: border-box;
  border-right: solid 0.3px #c1c1c1;
  line-height: 1.6;
  padding: 2rem 0.5rem;
}
.head-item:nth-last-of-type(1) {
  border-right: none;
}
.body-item .font-s {
  margin-left: 0.3rem;
}
.body-item.body-head,
.body-item.terms {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.body-item.price-val {
  line-height: 1;
}

/* column */
.col-1 {
  width: 100%;
}
.col-2 {
  width: 50%;
}
.col-3 {
  width: 33.3%;
}
.col-4 {
  width: 25%;
}
.col-5 {
  width: 20%;
}
.col-flex-1 {
  flex: 1;
}

/* border */
.border-t {
  border-top: solid 0.3px #c1c1c1;
}
.border-r {
  border-right: solid 0.3px #c1c1c1;
}
.border-b {
  border-bottom: solid 0.3px #c1c1c1;
}
.border-l {
  border-left: solid 0.3px #c1c1c1;
}

/* color */
.opacity-10 {
  opacity: 0.1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}
.opacity-90 {
  opacity: 0.9;
}
.font-color-main {
  color: var(--color-main);
}
.bg-main-pale {
  background-color: var(--color-main-pale);
}

/* font */
.font-100 {
  font-weight: 100;
}
.font-200 {
  font-weight: 200;
}
.font-300 {
  font-weight: 300;
}
.font-400 {
  font-weight: 400;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}
.font-700 {
  font-weight: 700;
}
.font-800 {
  font-weight: 800;
}
.font-900 {
  font-weight: 800;
}
.font-xl {
  font-size: 1.8rem;
}
.font-l {
  font-size: 1.2rem;
}
.font-s {
  font-size: 0.8rem;
}
.font-xs {
  font-size: 0.6rem;
}

.price .flex-container {
  display: flex;
  justify-content: space-between;
}

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

    SECTION　｜　SUPPORT

***************************************** */
.support {
  width: 80%;
  margin: 0 auto 6%;
  overflow: hidden;
}
.support .title {
  margin-bottom: 5%;
}
.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: 4% auto;
  background: var(--color-main-pale);
  border-radius: 100rem;
  padding: 0.6rem 1.8rem;
  font-size: large;
}
.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;
}

/* modal */
.modal-action {
  text-align: center;
  margin: 6% auto;
}
.modal-action .modal-btn {
  margin: 3% auto 0;
  padding: 2rem 4rem;
  background: #333;
  border: solid 0.2rem #333;
  border-radius: 100rem;
  font-size: var(--font-small);
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  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;
  font-size: var(--font-medium);
}
.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;
}

@media (max-width: 480px) {
  .price-table {
    width: 160%;
  }
  .price-table .head-item.table-fixed,
  .price-table .body-item.table-fixed {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 99;
    background: #fff;
    width: 19%;
  }
  .price-table .head-item,
  .price-table .body-item {
    width: 20%;
  }
  .price-table .head-item.table-fixed,
  .price-table .terms.table-fixed {
    background: var(--color-main-pale);
  }
  .side-scroll-table {
    overflow-x: scroll;
  }
  .body-head {
    font-size: var(--font-l);
  }

  .support {
    width: 95%;
    margin-bottom: 30%;
    padding-bottom: 5%;
  }
  .support-list {
    width: 100%;
    font-size: var(--font-x-small);
  }
  .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: #b0b0b0;
    top: unset;
    right: unset;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 9999;
  }

  .modal-action {
    margin: 12% auto;
  }
}
