@charset "utf-8";

.animate {
  position: relative;
  opacity: 0;
  top: 200rem !important;
  transition: all 0.5s ease-out;
}

.kozuka {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.mochiy {
  font-family: "mochiy-pop-p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bold {
  font-weight: 700 !important;
}

* {
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  text-align: center;
}

body {
  margin: 0;
  white-space: nowrap;
  overflow-x: hidden;
}

html {
  font-size: 0.5859375px;
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible !important;
}

img {
  width: 100% ;
  vertical-align: middle ;
  user-select: none ;
  -moz-user-select: none ;
  -webkit-user-select: none ;
  -ms-user-select: none ;
	-webkit-user-drag: none ;
	-moz-user-drag: none ;
  -ms-user-drag: none ;
  -webkit-touch-callout: none ;
  -moz-touch-callout: none ;
}

main {
  position: relative ;
  width: 750px ;
  margin: 0 auto ;
}

main > section,
main > div {
  position: relative ;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 300px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* ビューポートの高さに合わせる */
  overflow: hidden;
}

.hero video {
  width: 100vw; /* ビューポートの幅に合わせる */
  height: 100vh; /* ビューポートの高さに合わせる */
  object-fit: cover; /* アスペクト比を保ったままコンテナにフィットさせる */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央に配置 */
} 

.about01 {
  padding-top: 8.5%;
}

.about01 h1 {
  font-size: 128.51rem;
  color: #3a3a3a;
}

.about01 h1 .small {
  font-size: 89.66rem;
}

.about01 h1 .mochiy {
  font-size: 158.29rem;
  color: #ff9638;
  display: inline-block;
  transform: rotate(11.49deg);
}

.about01 .text1 {
  font-size: 63rem;
  color: #ff9638;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 1.4em 0;
}

.about01 .text1::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -25%;
  left: -1%;
  width: 98%;
  height: 75%;
  background-color: #fffd46;
  z-index: -1;
}

.about01 .text2 {
  font-size: 130rem;
  color: #ff9638;
  text-align: center;
  line-height: 1.2;
}

.about01 .flex-container {
  display: flex;
  justify-content: center;
  margin: 6% 0 8%;
}

.about01 .flex-container .circle {
  width: 514rem;
  height: 514rem;
  background-color: #ff9638;
  border-radius: 200vh;
  font-size: 67rem;
  letter-spacing: -0.05em;
  line-height: 1.3;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 1.7%;
}

.about02 {
  color: white;
}

.about02 .gray-container {
  position: relative;
  padding-top: 15%;
  padding-bottom: 10%;
}

.about02 .gray-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  display: block;
  width: 200vw;
  height: 100%;
  background-color: #7d7d7d;
  z-index: -1;
}

.about02  .box {
  position: relative;
  width: 90%;
  display: block;
  margin: 0 auto;
  border: 10rem solid white;
  border-radius: 30rem;
}

.about02 h1 {
  font-size: 72.82rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -60%);
  background-color: #7d7d7d;
  padding: 2%;
}

.about02 h1 .small {
  font-size: 93.73rem;
}

.about02 .list {
  display: flex;
  flex-direction: column;
  padding: 7% 0;
  z-index: 2;
}

.about02 .list span {
  position: relative;
  font-size: 67rem;
  margin: 0.5em 2.4em;
  line-height: 1.6;
  z-index: 1;
}

.about02 .list span::before {
  content: "";
  display: block;
  position: absolute;
  transform: translate(-140%, 30%);
  width: 1em;
  height: 1em;
  background-color: white;
  border-radius: 200vh;
}

.about02 .list span::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 0.5em;
  height: 0.2em;
  border-left: 0.125em solid #7d7d7d;
  border-bottom: 0.125em solid #7d7d7d;
  transform: translate(-200%, 200%) rotate(-45deg);
  z-index: 99;
}

.about02 .gray-container .box img {
  position: absolute;
  width: 404rem;
  height: auto;
  bottom: 0;
  right: 0;
  margin: 4% 5%;
}

.about02 .orange-container {
  position: relative;
  padding-top: 20%;
  padding-bottom: 22%;
}

.about02 .orange-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  display: block;
  width: 200vw;
  height: 100%;
  background-color: #ff9638;
  z-index: -1;
}

.about02 .triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100rem;
  background-color: #7d7d7d;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}

.about02 h2 {
  font-size: 90rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -60%);
  background-color: #ff9638;
  padding: 2%;
}

.about02 h2 .dot {
  position: relative;
}

.about02 h2 .dot::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 0.16em;
  height: 0.16em;
  background-color: #fffd46;
  border-radius: 200vh;
}

.about02 .orange-container .list span::before {
  background-color: #fffd46;
}

.about02 .orange-container .list span::after {
  border-left: 0.125em solid #ff9638;
  border-bottom: 0.125em solid #ff9638;
}

.about02 .img02 img {
  position: absolute;
  width: 367rem;
  bottom: 0;
  right: 0;
  margin-right: 3%;
}

.about03 h1 {
  font-size: 120rem;
  color: #ff9638;
  padding: 0.9em 0 0.5em;
}

.about03 .plan {
  position: relative;
  width: 86%;
  margin: 5% auto;
  border: 10rem solid #7d7d7d;
  border-top: 197rem solid #7d7d7d;
  border-radius: 30rem;
}

.about03 .plan.top {
  color: #7d7d7d;
}

.about03 .plan .title {
  font-size: 100rem;
  color: white;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -145%);
}

.about03 .plan span.big {
  font-size: 110.48rem;
}

.about03 .plan span.small {
  font-size: 61.39rem;
}

.about03 .plan .price {
  font-size: 82.59rem;
  text-align: center;
  margin-top: 0.7em;
}

.about03 .plan .initial-cost {
  font-size: 82.59rem;
  text-align: center;
  margin: 0.45em 0;
}

.about03 .plan .desc {
  font-size: 46rem;
  color: #2e2e2e;
  margin-left: 1.7em;
  margin-bottom: 1em;
}

.about03 .plan.middle {
  color: #ff9638;
  border: 10rem solid #ff9638;
  border-top: 197rem solid #ff9638;
  margin-top: 11%;
}

.about03 .plan.middle .price,
.about03 .plan.bottom .price {
  margin: 0;
}

.about03 .plan.middle .initial-cost,
.about03 .plan.bottom .initial-cost {
  font-size: 81.95rem;
}

.about03 .plan.middle .initial-cost .small,
.about03 .plan.bottom .initial-cost .small {
  font-size: 54.63rem;
}

.about03 .plan.middle .initial-cost .big,
.about03 .plan.bottom .initial-cost .big {
  position: relative;
  font-size: 110.79rem;
  line-height: 1.6;
}

.about03 .plan.middle .initial-cost .big::before,
.about03 .plan.bottom .initial-cost .big::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -15%;
  left: -3%;
  width: 102%;
  height: 50%;
  background-color: #fffd46;
  z-index: -1;
}

.about03 .plan .off1 img {
  position: absolute;
  width: 270rem;
  top: 0;
  right: 0;
  transform: translate(20%, -115%);
}

.about03 .plan .off2 img {
  width: 829rem;
  display: block;
  margin: 3% auto 1.5%;
}

.about03 .plan.bottom {
  color: #ff6c00;
  border: 10rem solid #ff6c00;
  border-top: 197rem solid #ff6c00;
  margin: 3% auto 6%;
}

.about03 .plan-text {
  font-size: 90rem;
  color:#ff6c00;
  text-align: center;
}

.about03 .text-box {
  font-size: 52rem;
  line-height: 1.9;
  margin: 0.5em 2em;
}

.about03 .text-box span {
  background-color: #fffd46;
  margin-left: -0.3em;
  padding: 0.3em;
  padding-right: 0;
}

.about03 .img05 img {
  margin-top: -40%;
  margin-left: 68%;
  width: 350rem;
  z-index: 1;
}

.about03 .phone-list {
  display: flex;
  justify-content: center;
  margin: 9% 0 7%;
}

.about03 .phone-list img {
  width: 361rem;
  margin: 0 1.1%;
}

.about04 {
  position: relative;
}

.about04::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  display: block;
  width: 200vw;
  height: 100%;
  background-color: #ff9638;
  z-index: -1;
}

.about04 h1 {
  font-size: 130rem;
  color:  white;
  padding: 0.75em 0;
}

.about04 .box {
  width: 87%;
  margin: 0 auto;
  background-color: white;
  border-radius: 30rem;
}

.about04 .box .title {
  font-size: 100rem;
  color: #ff9638;
  text-align: center;
  padding: 0.4em 0;
}

.about04 .box .desc {
  font-size: 48rem;
  line-height: 1.5;
  text-align: center;
  padding: 0.5em 0 0.7em;
}

.about04 .box img {
  width: 625rem;
  display: block;
  margin: 0 auto;
}

.about04 .triangle {
  width: 325rem;
  height: 133rem;
  background-color: white;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
  margin: 5.5% auto 4.7%;
}

.about04 .half-ellipse {
  width: 512rem;
  height: 280rem;
  background-color: #ffe6cf;
  clip-path: ellipse(50% 50% at 50% 50%);
  transform: translateY(63%);
  margin: 0 auto;
}

.qa {
  position: relative;
  padding-bottom: 0.1%;
}

.qa::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  display: block;
  width: 200vw;
  height: 100%;
  background-color: #ffe6cf;
  z-index: -1;
}

.qa h1 {
  font-size: 124.61rem;
  color: #ff9638;
  letter-spacing: 0.1em;
  padding: 0.08em 0;
}

.qa h1 .small {
  font-size: 96.92rem;
}

.qa h2 {
  font-size: 49.84rem;
  margin: 0.5em;
}

.qa .list {
  z-index: 999;
}

.qa .item {
  white-space: nowrap;
  padding: 0 6.5%;
  margin: 5% 0;
  overflow: hidden;
}

.qa .item .q {
  background-color: #ff9638;
  color: white;
  padding: 3.4% 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.qa .item .q:hover {
  opacity: .9;
}

.qa .item .q .title {
  position: relative;
  font-size: 51.37rem;
  line-height: 1.3;
  margin-left: 2.2em;
}

.qa .item .q .title::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-20%);
  margin-left: -2.2em;
  background-color: white;
  color: #ff9638;
  width: 90rem;
  height: 90rem;
  border-radius: 200vh;
}

.qa .item .q .title::after {
  content: "Q";
  font-size: 65.37rem;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(100%, -17.5%);
  margin-left: -2.15em;
  color: #ff9638;
}

.qa .item .q .button {
  position: relative;
  width: 40rem;
  height: 40rem;
}

.qa .item .q .button::before,
.qa .item .q .button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
}

.qa .item .q .button::before {
  width: 15%;
  height: 100%;
}

.qa .item .q .button::after {
  width: 100%;
  height: 15%;
}

.qa .item .q .button.clicked::before {
  width: 0;
  height: 0;
}

.qa .item .a {
  position: relative;
  background-color: white;
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease;
}

.qa .item .a .text {
  position: relative;
  font-size: 37.38rem;
  color: #444444;
  line-height: 1.9;
  padding: 3.5% 12.5%;
}

.qa .item .a .text::before {
  content: "A";
  font-size: 70.28rem;
  color: #ff9638;
  position: absolute;
  top: 0;
  transform: translateY(7.5%);
  margin-left: -1.3em;
}

.contact {
  padding: 80px 24px;
}
.contact h2 {
  font-size: 124.61rem;
  margin-bottom: 54px;
  color: #ff6c00;
  letter-spacing: 0.1em;
}
.wpcf7 {
  font-size: 16px;
  font-weight: bold;
  max-width: 600px;
  margin: 0 auto;
}
.wpcf7-form p {
  margin-bottom: 16px;
  color: #444444;
}
.wpcf7 label {
  line-height: 2;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  background-color: #f0f0f0;
  border: none;
}
.wpcf7-spinner,
.screen-reader-response {
  display: none;
}
.wpcf7-not-valid-tip {
  display: block;
  color: #dd0000;
  font-size: 14px;
  margin-top: 10px;
}
.wpcf7-response-output {
  text-align: center;
  color: #dd0000;
}
.btn-wrap {
  text-align: center;
  margin-top: 24px;
}
.custom-submit {
  background-color: #ff6c00;
  padding: 16px 48px;
  border-radius: 40px;
  font-weight: bold;
  color: #fff!important;
  border: none;
  width: 280px;
  font-size: 18px;
}
.custom-submit:hover {
  opacity: .9;
}

footer {
  position: relative;
}
footer .img01 img {
  width: 400rem;
  display: block;
  margin: 0 auto;
}
footer small {
  text-align: center;
  font-size: 14px;
  display: block;
  margin: 30rem;
  letter-spacing: 5px;
}

.pc {
  display: none;
}
.sp {
  display: block;
}

@media (min-width: 1280px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }

  main {
    width: 100%;
  }

  .hero {
    position: relative;
    width: 100%;
    height: 100vh; /* ビューポートの高さに合わせる */
    overflow: hidden;
  }
  
  .hero video {
    width: 100vw;
    height: 100vh;
    object-fit: contain; /* アスペクト比を保ちながら全体を表示 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  

  .about01 {
    padding-top: 5%;
  }
  .about01 h1 {
    font-size: 100rem;
  }
  .about01 h1 .small {
    font-size: 70rem;
  }
  .about01 .text1 {
    font-size: 54rem;
    margin: 1em 0;
  }
  .about01 .text2 {
    font-size: 110rem;
  }
  .about01 .flex-container {
    margin: 5% 0;
  }
  .about01 .flex-container .circle {
    width: 440rem;
    height: 440rem;
    font-size: 50rem;
    line-height: 1.5;
    letter-spacing: 2rem;
  }

  .about02 {
    width: 750px;
    margin: 0 auto;
  }
  .about02 h1 {
    font-size: 50rem;
  }
  .about02 h1 .small {
    font-size: 70rem;
  }
  .about02 .list {
    padding: 0;
    margin: 80rem 0 60rem;
  }
  .about02 .list span {
    font-size: 50rem;
  }
  .about02 .gray-container {
    padding-top: 12%;
  }
  .about02 .gray-container .box img {
    width: 360rem;
    margin: 0;
    left: -250px
  }
  .about02 h2 {
    font-size: 50rem;
  }
  .about02 h2 .dot {
    font-size: 70rem;
  }
  .about02 .orange-container {
    padding-bottom: 10%;
  }
  .about02 .img02 img {
    margin-right: -8%;
  }

  .about03 h1 {
    font-size: 100rem;
    padding: 1.4em 0;
  }
  .plan-flex {
    display: flex;
    justify-content: center;
  }
  .about03 .plan {
    width: 380px;
    margin: 0 20px;
    border-top: 150rem solid #7d7d7d;
  }
  .about03 .plan .title {
    font-size: 70rem;
  }
  .about03 .plan.middle {
    margin-top: 0;
    border-top: 150rem solid #ff9638;
  }
  .about03 .plan.bottom {
    margin: 0 20px;
    border-top: 150rem solid #ff6c00;
  }
  .about03 .plan .price {
    font-size: 60rem;
  }
  .about03 .plan span.big {
    font-size: 80rem;
  }
  .about03 .plan .off2 img {
    width: 90%;
    margin: 5% auto 1.5%;
  }
  .about03 .plan .desc {
    font-size: 28rem;
    text-align: center;
    margin-left: 0;
    line-height: 1.2;
  }
  .about03 .plan .initial-cost {
    font-size: 60rem;
    line-height: 1.3;
  }
  .about03 .plan span.small {
    font-size: 30rem;
  }
  .about03 .plan.middle .initial-cost .small,
  .about03 .plan.bottom .initial-cost .small {
    font-size: 30rem;
  }
  .about03 .plan.middle .initial-cost .big,
  .about03 .plan.bottom .initial-cost .big {
    font-size: 90rem;
  }
  .about03 .plan.middle .initial-cost,
  .about03 .plan.bottom .initial-cost {
    font-size: 70rem;
  }
  .about03 .plan .off1 img {
    width: 180rem;
    top: -20px;
    right: -20px;
  }
  .about03 .plan-bottom {
    width: 700px;
    margin: 80px auto;
    position: relative;
  }
  .about03 .text-box {
    margin: 1em 0;
  }
  .about03 .img05 img {
    position: absolute;
    margin-top: 0;
    margin-left: 0;
    bottom: 0;
    right: 0;
  }
  .about03 .phone-list {
    margin: 2% 0 7%;
  }

  .about04 h1 {
    font-size: 100rem;
    padding: 1em 0;
  }
  .about04 .box {
    width: 350px;
  }
  .about04 .box .title {
    font-size: 50rem;
    padding: 1em 0;
  }
  .about04 .box img {
    width: 320rem;
  }
  .about04 .box .desc {
    font-size: 16px;
  }
  .box__flex {
    display: flex;
    justify-content: center;
    width: 1200px;
    margin: 0 auto;
  }
  .about04 .triangle {
    width: 120rem;
    height: 60rem;
    margin: 13% auto 0;
    transform: rotate(-90deg);
  }
  .about04 .half-ellipse {
    height: 512rem;
    transform: translateY(70%);
    margin: -240rem auto 0;
  }


  .qa h1 {
    font-size: 100rem;
    padding: 0 0 10rem;
  }
  .qa h2 {
    font-size: 36rem;
    margin: 1em;
  }
  .list {
    width: 750px;
    margin: 110rem auto;
  }
  .qa .item {
    padding: 0;
  }
  .qa .item .q .title::before {
    width: 80rem;
    height: 80rem;
    left: -10px;
  }
  .qa .item .q .title::after {
    font-size: 50rem;
    left: -7px;
  }
  .qa .item .a .text {
    font-size: 30rem;
    padding: 3.5% 14%;
  }
  .qa .item .a .text::before {
    font-size: 50rem;
    top: 10px;
    left: 46px;
    margin-left: 0;
  }
  .qa .item .q .title {
    font-size: 40rem;
    margin-left: 3em;
  }

  .contact h2 {
    font-size: 100rem;
  }

}


@media (max-width: 750px) {
  html {
    font-size: calc(100vw / 1280) !important;
  }

  main {
    width: 100% !important;
  }
  
}