@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
  color: #000;
  background-color: #fed302;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  body {
    margin-bottom: 0;
  }
}

/* 横揺れ防止：全体的なオーバーフロー防止 */
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
  }
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}
.hidden-tb {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-tb {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .hidden-tb {
    display: none;
  }
}
.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.header {
  padding: 15px 20px;
  background: white;
  height: 70px;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 15px 60px;
    height: 75px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
.header__logo {
  z-index: 100;
}
.header__logo img {
  width: 120px;
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
.header__nav-btn {
  border: 2px solid #000;
  border-radius: 50px;
  padding: 5px 20px;
}
.header__nav-btn--drawer {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 10px 20px 12px 20px;
  text-align: center;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav li {
  margin-left: 46px;
  position: relative;
}
.header__nav li:not(:first-child)::before {
  content: "／";
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__nav li a {
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__nav li a:hover {
  color: #fed302;
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
}
@media (min-width: 1024px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}
.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background-color: #000;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.3s;
  transition: transform 0.3s, top 0.3s, -webkit-transform 0.3s;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}
.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer-menu.is-checked {
  right: 0;
}
.drawer-menu .drawer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.drawer-menu a {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1500;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.fadein.fadein-left {
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}
.fadein.fadein-right {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
.fadein.fadein-up {
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.bg-wh {
  background-color: #fff;
}
.bg-gr {
  background-color: #F5F5F5;
  text-align: center;
}

.cta {
  text-align: center;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  max-width: 420px;
}
.cta__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.cta__text p {
  font-weight: 600;
}
.cta__button img {
  margin-top: 7px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fv {
  z-index: -100;
}
.fv__image img {
  margin-top: -50px;
}
@media screen and (min-width: 768px) {
  .fv__image img {
    margin-top: -55px;
  }
}
.fv .cta {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .fv .cta {
    padding: 40px 0;
  }
}

.problem__head {
  text-align: center;
}
.problem__head img {
  padding-top: 20px;
  width: 350px;
}
@media screen and (min-width: 768px) {
  .problem__head img {
    width: 400px;
    padding-top: 40px;
  }
}
.problem__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 450px;
}
@media screen and (min-width: 768px) {
  .problem__boxes {
    gap: 20px;
    margin-top: 65px;
    margin-bottom: 65px;
    max-width: 960px;
  }
}
.problem__box {
  width: 100%;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .problem__box {
    width: calc(50% - 20px);
  }
}

.point {
  padding: 40px 0;
}
.point__title img {
  width: 400px;
}
@media screen and (min-width: 768px) {
  .point__title img {
    width: 450px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .point__title img {
    width: 550px;
  }
}
.point__cards {
  margin: 0 auto;
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  max-width: 450px;
}
@media screen and (min-width: 768px) {
  .point__cards {
    margin-top: 75px;
    margin-bottom: 60px;
    max-width: 960pc;
  }
}
.point__card {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .point__card {
    width: calc(33.3333333333% - 14px);
  }
}
.point .cta {
  margin-top: 40px;
  margin-bottom: 40px;
}

.feature {
  padding: 40px 0;
  text-align: center;
}
.feature__boxes {
  max-width: 450px;
  margin: 0 auto;
  padding-left: 35px;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media screen and (min-width: 1024px) {
  .feature__boxes {
    max-width: 1100px;
    padding-top: 70px;
  }
}
.feature__box {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .feature__box {
    width: calc(33.3333333333% - 40px);
  }
}
.feature__text {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .feature__text {
    max-width: 700px;
  }
}

.price__inner {
  text-align: center;
}
.price__num {
  padding-top: 60px;
}
.price__text {
  font-size: 15px;
  text-align: left;
  background-color: #FFFBE8;
  padding: 25px;
}
@media screen and (min-width: 768px) {
  .price__text {
    font-size: 20px;
    line-height: 170%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.price__text2 {
  font-size: 15px;
  text-align: left;
  border: 1px solid #D9D9D9;
  margin-top: 45px;
  padding: 25px;
}
@media screen and (min-width: 768px) {
  .price__text2 {
    font-size: 20px;
    line-height: 170%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 45px;
    margin-bottom: 45px;
  }
}
.price .cta {
  padding: 60px 0;
}

.faq {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 100px 0;
  }
}
.faq h2 {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .faq h2 {
    font-size: 28px;
  }
}
.faq__boxes {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .faq__boxes {
    margin-top: 100px;
  }
}
.faq__boxes img:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .faq__boxes img:not(:first-child) {
    margin-top: 40px;
  }
}
.faq .cta {
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer {
  background: #000;
  padding: 5px 0;
  text-align: center;
  color: #fff;
  font-size: 10px;
}

.triangle {
  margin: 0 auto;
  margin-top: 35px;
  width: 35px;
}
@media screen and (min-width: 1024px) {
  .triangle {
    display: block;
    margin-top: 65px;
    width: 45px;
  }
}