@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Untitled";
  src: url("../fonts/Untitled.woff2") format("woff2"), url("../fonts/Untitled.ttf") format("truetype"), url("../fonts/Untitled.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
.icon {
  font-family: "Untitled" !important;
  font-style: normal;
  font-weight: 500;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #24292f;
  overflow-x: hidden;
}

* {
  margin: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-weight: 600;
}

#root, #__next {
  isolation: isolate;
}

.bg-white {
  background: #fff;
}

.bg-gray {
  background: #F2F2F2;
}

.bg-orange {
  background: #ff6900;
}

.bg-green {
  background: #009b82;
}

.bg-red {
  background: #ee2237;
}

.bg-purple {
  background: #705cdb;
}

.bg-blue {
  background: #0082e0;
}

.bg-sky {
  background: #0092e0;
}

.bg-yellow {
  background: #f6a900;
}

.bg-radius {
  border-radius: 200px;
}
@media (max-width: 992px) {
  .bg-radius {
    border-radius: 50px;
  }
}

.color-white {
  color: #fff;
}

.font-13 {
  font-size: 1.3rem;
}

.font-18 {
  font-size: clamp(1.6rem, 1.2rem + 0.83vw, 1.8rem);
}

.font-21 {
  font-size: clamp(1.8rem, 1.5rem + 0.94vw, 2.1rem);
}

.font-24 {
  font-size: clamp(1.8rem, 1.8rem + 0.73vw, 2.4rem);
}

.font-28 {
  font-size: clamp(2.1rem, 1.6rem + 1.08vw, 2.8rem);
}

.font-32 {
  font-size: clamp(2.4rem, 1.8rem + 1.31vw, 3.2rem);
}

.lh-15 {
  line-height: 1.5;
}

.lh-20 {
  line-height: 2;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-20 {
  margin-top: 20px;
}

@media (max-width: 992px) {
  .mt-md-40 {
    margin-top: 40px !important;
  }
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .mb-30 {
    margin-bottom: 20px;
  }
}

.mb-40 {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .mb-40 {
    margin-bottom: 30px;
  }
}

.mb-50 {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .mb-50 {
    margin-bottom: 40px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .mb-60 {
    margin-bottom: 50px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .mb-80 {
    margin-bottom: 60px;
  }
}

.has-padding {
  padding-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 992px) {
  .has-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 992px) {
  .d-md-none {
    display: none;
  }
}

.d-sm-block {
  display: none;
}
@media (max-width: 640px) {
  .d-sm-block {
    display: block;
  }
}

.bg-gray_text {
  display: inline-block;
  background: #F2F2F2;
  padding: 3px 10px 5px;
  margin-bottom: 10px;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.grid-3rows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1280px;
}
@media (max-width: 992px) {
  .grid-3rows {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.grid-2rows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1280px;
}
@media (max-width: 992px) {
  .grid-2rows {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .grid-3rows_option {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .grid-rows_balloon {
    gap: 80px;
  }
}

.card-item {
  text-align: center;
  border-radius: 50px 50px 0 0;
  padding: 50px 20px 30px;
  position: relative;
}
@media (max-width: 992px) {
  .card-item {
    border-radius: 30px 30px 0 0;
    padding: 40px 10px 25px;
  }
}
.card-item img {
  display: inline-block;
}
.card-item .balloon {
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.balloon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  max-width: 240px;
  border-radius: 50px 50px 50px 0;
  padding: 10px 20px 12px;
}

.balloon-md {
  max-width: 320px;
}

.balloon-lg {
  max-width: 340px;
}

.section-title {
  font-size: clamp(3rem, 1.1rem + 3.3vw, 5.8rem);
  text-align: center;
}

.bg-gray_title {
  background: #F2F2F2;
  border-radius: 5px;
  padding: 10px 20px;
}

.list-arrow {
  display: inline-block;
  list-style: none;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
}
.list-arrow li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  font-weight: 600;
}
.list-arrow li:not(:last-child) {
  margin-bottom: 10px;
}
.list-arrow li::before {
  display: block;
  width: 18px;
  height: 18px;
  content: "\f000";
  font-family: "Untitled";
  font-size: 1.8rem;
  color: #a7b3bf;
  margin-top: 3px;
  margin-right: 10px;
}

.btn {
  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;
  text-decoration: none;
  width: 280px;
  height: 60px;
  border-radius: 50px;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-left: 25px;
  padding-right: 15px;
}
.btn .icon {
  font-size: 3.2rem;
}

.btn-primary {
  color: #fff;
  background: #24292f;
}
.btn-primary:hover {
  background: #0082e0;
}

.btn-secondary {
  color: #24292f;
  background: #fff;
  border: solid 1px #24292f;
}
.btn-secondary:hover {
  color: #fff;
  background: #24292f;
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media (max-width: 640px) {
  .btn-group {
    display: -ms-grid;
    display: grid;
    gap: 20px;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
header .header-btn_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 15px;
  padding: 20px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
header .header-btn_group .btn {
  display: -ms-grid !important;
  display: grid !important;
  place-items: center;
  place-content: center;
  width: 215px;
  height: 45px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 992px) {
  header .header-btn_group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    padding: 15px;
    top: auto;
    bottom: 0;
  }
  header .header-btn_group .btn {
    width: 100%;
  }
}
@media (max-width: 640px) {
  header .header-btn_group .btn {
    font-size: 1.3rem;
  }
}

.header-logo_block {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}

.header-h1 {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 35px;
  font-size: 1.2rem;
  color: #24292f;
  background: #fff;
  border-radius: 5px;
  padding: 0 10px 2px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .header-h1 {
    width: 100%;
    font-size: 1.2rem;
  }
}

.section-hero {
  height: 750px;
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
  position: relative;
}
.section-hero .hero-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.section-hero .hero-wrap .hero-inner {
  text-align: center;
  padding-top: 150px;
  position: inherit;
  z-index: 2;
}
.section-hero .hero-wrap .hero-inner .balloon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 400px;
}
.section-hero .hero-wrap .hero-inner .hero-title {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(3rem, 1.1rem + 3.3vw, 5.8rem);
  line-height: 1.3;
}
.section-hero .hero-wrap .hero-inner .hero-title span {
  display: block;
  font-size: clamp(2.1rem, 1.8rem + 1.31vw, 3.4rem);
  margin-bottom: 15px;
}
.section-hero .hero-wrap .hero-img {
  height: auto;
  position: absolute;
  z-index: 1;
}
.section-hero .hero-wrap .hero-img01 {
  width: 215px;
  left: 0;
  top: 30%;
}
.section-hero .hero-wrap .hero-img02 {
  width: 480px;
  left: 30px;
  bottom: -10px;
}
.section-hero .hero-wrap .hero-img03 {
  width: 65px;
  right: 10px;
  top: 45%;
}
.section-hero .hero-wrap .hero-img04 {
  width: 300px;
  right: 30px;
  bottom: -70px;
}
@media (max-width: 768px) {
  .section-hero {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .section-hero .hero-wrap .hero-inner {
    height: 100%;
  }
  .section-hero .hero-wrap .font-18 {
    text-align: left;
  }
  .section-hero .hero-wrap .hero-img01 {
    display: none;
  }
  .section-hero .hero-wrap .hero-img02 {
    width: 45%;
    left: 0;
    bottom: 0;
  }
  .section-hero .hero-wrap .hero-img03 {
    display: none;
  }
  .section-hero .hero-wrap .hero-img04 {
    width: 30%;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 640px) {
  .section-hero {
    height: auto;
  }
  .section-hero .hero-wrap .hero-inner {
    padding-bottom: 110px;
  }
  .section-hero .hero-wrap .hero-inner .hero-title {
    font-size: 3.8rem;
  }
  .section-hero .hero-wrap .hero-img04 {
    bottom: -30px;
  }
}

.plus-merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.plus-merit img {
  width: 25%;
}

hr {
  margin-top: 25px;
  margin-bottom: 25px;
}

.guarantee .balloon {
  width: 100%;
}
.guarantee img {
  width: 85%;
}
@media (max-width: 640px) {
  .guarantee img {
    width: 70%;
  }
}

.price {
  font-size: 4.2rem;
}
.price span {
  font-size: 2.4rem;
}

.recommend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ee2237;
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.recommend::before, .recommend::after {
  content: "";
  display: block;
  width: 1.5px;
  height: 25px;
  background: #ee2237;
}
.recommend::before {
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.recommend::after {
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.marker {
  background: rgba(246, 169, 0, 0.3);
}

.recommend-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.recommend-note span {
  display: block;
  height: 100%;
  color: #fff;
  background: #009b82;
  padding: 5px 15px 8px;
}
@media (max-width: 992px) {
  .recommend-note {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.price-option {
  width: 100%;
  height: auto;
  text-align: center;
  color: #fff;
  background: #24292f;
  border-radius: 5px;
  padding: 5px 15px 8px;
}

.faq-item {
  max-width: 992px;
  border-radius: 10px;
  cursor: pointer;
}
.faq-item:not(:last-child) {
  margin-bottom: 10px;
}
.faq-item summary {
  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;
  gap: 15px;
  font-weight: 600;
  padding: 20px;
}
.faq-item summary .summary-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (min-width: 641px) {
  .faq-item summary .summary-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.faq-item summary .question {
  font-size: 2.8rem;
  color: #705cdb;
}
.faq-item summary::-webkit-details-marker, .faq-item summary::marker {
  display: none;
}
.faq-item summary::after {
  content: "\f002";
  font-family: "Untitled";
  font-size: 3.2rem;
  font-weight: 500;
}
.faq-item[open] summary::after {
  content: "\f003";
}
.faq-item .faq-answer {
  padding: 0 20px 20px;
}

footer {
  color: #fff;
  background: #3f3f3f;
  border-radius: 200px 200px 200px 0;
  padding: 50px 100px;
}
footer address {
  font-style: normal !important;
}
footer * {
  font-weight: 500 !important;
}
@media (max-width: 992px) {
  footer {
    border-radius: 50px 50px 0 0;
    padding: 30px 15px 100px;
  }
}

.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 50px;
}
@media (min-width: 991px) {
  .footer-block {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 992px) {
  .footer-block {
    display: -ms-grid;
    display: grid;
    gap: 30px;
  }
}

.address-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
}

.footer-nav {
  list-style: none;
  padding-left: 0;
}
@media (min-width: 991px) {
  .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-nav li::before {
    content: "|";
  }
  .footer-nav li:last-child::after {
    content: "|";
  }
  .footer-nav li a {
    text-decoration: none;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer-nav li:first-child {
  margin-bottom: 15px;
}
.footer-nav li a {
  color: #fff;
}
.footer-nav li a:hover {
  color: #0082e0;
}

.copyright {
  font-size: 1.3rem;
  text-align: right;
}