@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  line-height: 1.4;
  position: relative;
  z-index: 0;
  color: #333333;
  scroll-behavior: smooth;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body div#all {
  min-width: auto;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #333333;
}
a:hover {
  text-decoration: none;
  color: #333333;
}

ul {
  list-style: none;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: auto;
}
@media screen and (max-width: 899px) {
  .header {
    background: rgb(255, 255, 255);
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 96%;
  max-width: 1180px;
  padding: 24px 0;
  margin: 0 auto;
}
.header__logo {
  display: block;
  flex-shrink: 0;
  width: 30%;
  max-width: 320px;
}
@media screen and (max-width: 899px) {
  .header__logo {
    width: 50%;
  }
}
.header__logo h1 {
  line-height: 0;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__menu--nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 899px) {
  .header__menu--nav {
    display: none;
  }
}
.header__menu--nav li a {
  display: block;
  transition: 0.3s ease-in-out;
}
.header__menu--nav li a:hover {
  text-decoration: none;
  color: #609a72;
}
.header__menu-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.header__menu-icon {
  width: 32px;
  height: 32px;
}
.header__menu-icon svg {
  width: 100%;
  height: 100%;
}
.header__menu-text {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.menu--btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  transition: 0.3s ease-in-out;
}
.menu--btn:hover {
  opacity: 0.6;
}
.menu--btn__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu--btn__icon--close {
  display: none;
}
.menu--btn.is-open .menu--btn__icon--open {
  display: none;
}
.menu--btn.is-open .menu--btn__icon--close {
  display: flex;
}

.overlay-nav {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  background: #e7ede9;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  z-index: 999;
}
.overlay-nav.is-open {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}
.overlay-nav .wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 64px 0;
}
@media screen and (max-width: 899px) {
  .overlay-nav {
    position: fixed;
    top: 85px;
    height: calc(100vh - 85px);
    max-height: 0;
    opacity: 0;
    overflow-y: auto;
  }
  .overlay-nav .wrap {
    padding: 40px;
  }
  .overlay-nav .wrap .inner__list {
    flex-direction: column;
    gap: 16px;
  }
  .overlay-nav.is-open {
    max-height: calc(100vh - 56px);
    opacity: 1;
    pointer-events: auto;
  }
}

.inner__list {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.inner__list--unit {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 899px) {
  .inner__list--unit {
    gap: 16px;
  }
}
.inner__list--unit a {
  position: relative;
  display: block;
  font-size: 1.25rem;
  padding: 10px 0;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 899px) {
  .inner__list--unit a {
    font-size: 1rem;
    padding: 0;
  }
}
.inner__list--unit a::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 1px;
  background-color: #333333;
  bottom: 4px;
  left: 0;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 899px) {
  .inner__list--unit a::before {
    content: none;
  }
}
.inner__list--unit a:hover {
  color: #333333;
  text-decoration: none;
  opacity: 1;
}
.inner__list--unit a:hover::before {
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  margin-top: 120px;
}
@media screen and (max-width: 899px) {
  .hero {
    margin-top: 85px;
  }
}
.hero__image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: calc(100vh - 120px);
  height: calc(100dvh - 120px);
  min-height: 480px;
  max-height: none;
}
@media screen and (max-width: 899px) {
  .hero__image-wrap {
    height: calc(100vh - 85px);
    height: calc(100dvh - 85px);
    height: calc(100svh - 85px);
    min-height: 360px;
  }
}
.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__image--placeholder {
  background-color: #b7a28e;
  width: 100%;
  height: 100%;
}
.hero__image--placeholder img {
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__catchcopy {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #faf8f6;
  padding: 40px 80px;
  border-radius: 0 30px 0 0;
}
@media screen and (max-width: 899px) {
  .hero__catchcopy {
    padding: 16px 24px;
  }
}
.hero__catchcopy-sub {
  display: flex;
  justify-content: start;
  gap: 4px;
}
@media screen and (max-width: 899px) {
  .hero__catchcopy-sub .hero__catchcopy-img {
    width: 50%;
  }
}
.hero__catchcopy-sub p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 899px) {
  .hero__catchcopy-sub p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 899px) {
  .hero__catchcopy-sub {
    font-size: 0.875rem;
  }
}
.hero__catchcopy-main {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
@media screen and (max-width: 899px) {
  .hero__catchcopy-main {
    font-size: 1.5rem;
  }
}
.hero__catchcopy-accent {
  color: #609a72;
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 899px) {
  .hero__catchcopy-accent {
    font-size: 2rem;
  }
}
.hero__catchcopy-accent-i {
  display: inline-block;
  font-style: italic;
  color: #b7a28e;
}

.section__container {
  width: 100%;
  padding: 120px 0;
}
.section__container.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
@media screen and (max-width: 899px) {
  .section__container.grid {
    gap: 40px;
  }
}
@media screen and (max-width: 899px) {
  .section__container {
    padding: 64px 0;
  }
}
.section__container.sand {
  background-color: #faf8f6;
}
.section__container.green {
  background-color: #e7ede9;
}
.section__container.column {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #609a72;
  margin-bottom: 64px;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 899px) {
  .section__title {
    font-size: 1.5rem;
    margin-bottom: 40px;
    padding: 0 16px;
  }
}

.about {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.about__content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
@media screen and (max-width: 899px) {
  .about__content {
    flex-direction: column;
    gap: 40px;
  }
}
.about__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__heading {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
}
.about__body {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}
.about__divider {
  border: none;
  border-top: 1px dashed #c8c8c8;
  margin: 8px 0;
}
.about__chart {
  width: 42%;
  flex-shrink: 0;
}
@media screen and (max-width: 899px) {
  .about__chart {
    width: 100%;
  }
}
.about__chart-inner {
  border: 1px dashed #c8c8c8;
  padding: 24px;
  background: #ffffff;
}
.about__chart-labels {
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: #333333;
}
.about__chart-bars {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  height: 200px;
}
.about__bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.about__bar-badge {
  position: absolute;
  top: 0;
  right: -8px;
  background: #faf8f6;
  border: 1px dashed #b7a28e;
  padding: 4px 8px;
  font-size: 0.75rem;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
  line-height: 1.4;
}
@media screen and (max-width: 899px) {
  .about__bar-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.about__bar-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 700;
}
.about__bar-segment--cost {
  background: #e6cbb0;
  color: #333333;
  flex: 0 0 45%;
  padding: 8px;
  font-size: 0.7rem;
}
.about__bar-segment--base {
  background: #9fd6a9;
  flex: 1;
}
.about__bar-segment--only {
  margin-top: 45%;
  flex: 1;
}

.service {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .service {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 899px) {
  .service--left {
    flex-direction: column-reverse;
  }
}
.service__image {
  flex: 0 0 45%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 899px) {
  .service__image {
    flex: none;
    width: 100%;
  }
}
.service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__image--placeholder {
  background-color: #b7a28e;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
}
.service__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.service__icon-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.service__icon {
  font-size: 1.5rem;
  background: #e7ede9;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.service__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.02em;
  padding-left: 56px;
}
.service__title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 48px;
  height: 48px;
  background-size: 48px;
  background-color: #609a72;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.service__title.estimates::before {
  -webkit-mask-image: url(/common/img/icon--estimates.svg);
  mask-image: url(/common/img/icon--estimates.svg);
}
.service__title.diagnosis::before {
  -webkit-mask-image: url(/common/img/icon--diagnosis.svg);
  mask-image: url(/common/img/icon--diagnosis.svg);
}
.service__title.catalog::before {
  -webkit-mask-image: url(/common/img/icon--catalog.svg);
  mask-image: url(/common/img/icon--catalog.svg);
}
@media screen and (max-width: 899px) {
  .service__title {
    font-size: 1.25rem;
  }
}
.service__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
}

.service-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.slide-track {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-pc {
  display: none;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .slider-pc {
    display: block;
  }
}
.slider-pc .slide-track {
  aspect-ratio: 2/1;
}

.slide-item--pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.slide-item--pc.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-item--pc .slide-bg {
  width: 100%;
  height: 100%;
  background-color: #e7ede9;
}
.slide-item--pc .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  background: rgba(231, 237, 233, 0.85);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.slider-sp {
  display: none;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 899px) {
  .slider-sp {
    display: block;
    margin: 0 auto 24px;
  }
}
.slider-sp .slide-track {
  aspect-ratio: 310/250;
}

.slide-item--sp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  overflow: hidden;
}
.slide-item--sp.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-item--sp .slide-bg {
  width: 100%;
  height: 100%;
  background-color: #e7ede9;
}
.slide-item--sp .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 14px;
  font-size: 14px;
  color: #333;
  background: rgba(231, 237, 233, 0.85);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  letter-spacing: 0.04em;
}
.btn::before {
  position: absolute;
  content: "";
  background-color: #333333;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 4px;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--arrow.svg);
  mask-image: url(/common/img/icon--arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.btn--outline {
  background-color: #e7ede9;
}
.btn--outline:hover {
  background: #9fd6a9;
}
.btn--green {
  font-size: 1.25rem;
  background: #9fd6a9;
}
.btn--green:hover {
  background: #609a72;
  color: #ffffff;
}
.btn--green:hover::before {
  background-color: #ffffff;
}
@media screen and (max-width: 899px) {
  .btn--green {
    font-size: 0.875rem;
  }
}
.btn--white {
  font-size: 1.25rem;
  background: #ffffff;
  border: #609a72 solid 2px;
}
.btn--white:hover {
  background: #609a72;
  color: #ffffff;
}
.btn--white:hover::before {
  background-color: #ffffff;
}
@media screen and (max-width: 899px) {
  .btn--white {
    font-size: 0.875rem;
  }
}
.btn.catalog {
  padding: 16px 48px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .btn.catalog {
    padding: 16px 40px;
  }
}
.btn.catalog::after {
  position: absolute;
  content: "";
  background-color: #333333;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 16px;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--catalog.svg);
  mask-image: url(/common/img/icon--catalog.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.btn.catalog:hover::after {
  background-color: #ffffff;
}
.btn.service {
  padding: 16px 48px;
  margin: 0 auto;
  width: auto;
}
@media screen and (max-width: 899px) {
  .btn.service {
    padding: 16px 40px;
  }
}
.btn.service::after {
  position: absolute;
  content: "";
  background-color: #333333;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 8px;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--service.svg);
  mask-image: url(/common/img/icon--service.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.btn.service:hover::after {
  background-color: #ffffff;
}

.contact {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.contact__title {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 40px;
}
.contact__title span {
  position: relative;
}
.contact__title span::before {
  position: absolute;
  content: "";
  background-color: #609a72;
  width: 48px;
  height: 48px;
  top: 50%;
  left: -64px;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--help.svg);
  mask-image: url(/common/img/icon--help.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 899px) {
  .contact__title span::before {
    width: 32px;
    height: 32px;
    left: -34px;
  }
}
@media screen and (max-width: 899px) {
  .contact__title {
    font-size: 1.125rem;
    margin-bottom: 24px;
  }
}
.contact__lead {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 899px) {
  .contact__lead {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}
.contact__faq {
  text-align: center;
  margin-bottom: 56px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media screen and (max-width: 899px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.contact__card {
  background: #ffffff;
  padding: 32px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .contact__card {
    padding: 24px;
  }
}
.contact__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #9fd6a9;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.contact__card-sub {
  font-size: 1.125rem;
  color: #333333;
  font-weight: 700;
}
.contact__tel {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.contact__tel a {
  position: relative;
}
.contact__tel a::before {
  position: absolute;
  content: "";
  background-color: #609a72;
  width: 48px;
  height: 48px;
  top: 50%;
  left: -64px;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--cal.svg);
  mask-image: url(/common/img/icon--call.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 899px) {
  .contact__tel a::before {
    left: -50px;
  }
}
.contact__tel :hover {
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 899px) {
  .contact__tel {
    font-size: 1.5rem;
  }
}
.contact__hours {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.125rem;
  text-align: left;
  line-height: 1.6;
}
.contact__hours-badge {
  background: #9fd6a9;
  font-size: 1rem;
  padding: 8px;
  flex-shrink: 0;
}
.contact__card-url {
  font-size: 1.5rem;
  font-weight: 700;
}
.contact__card-url a {
  color: #609a72;
  text-decoration: underline;
}
.contact__card-note {
  font-size: 1rem;
  text-align: left;
}

.faq-ticker {
  width: 1180px;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto 32px;
}
@media (max-width: 768px) {
  .faq-ticker {
    width: 100%;
  }
}

.faq-ticker__track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: -moz-max-content;
  width: max-content;
  animation: faqTickerSlide 100s linear infinite;
}

@keyframes faqTickerSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.faq-ticker__item {
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.6;
  color: #333333;
  width: 240px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

footer {
  width: 100%;
  min-width: 0;
  background-color: #e6cbb0;
  padding: 100px 0 64px;
}
@media screen and (max-width: 899px) {
  footer {
    padding: 40px 0;
  }
}
footer .footer__wrap {
  width: 62%;
  max-width: 940px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 899px) {
  footer .footer__wrap {
    width: 80%;
    margin: 0 auto 24px;
  }
}
footer .footer__wrap .footer__logo {
  width: 64%;
  max-width: 600px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 899px) {
  footer .footer__wrap .footer__logo {
    margin: 0 auto 32px;
  }
}
footer .footer__wrap .footer__logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 899px) {
  footer .footer__wrap .footer__logo-text {
    font-size: 1.5rem;
  }
}
footer .footer__wrap ul.footer__menu {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 899px) {
  footer .footer__wrap ul.footer__menu {
    flex-direction: column;
    gap: 24px;
  }
}
footer .footer__wrap ul.footer__menu li.footer__menu-list {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media screen and (max-width: 899px) {
  footer .footer__wrap ul.footer__menu li.footer__menu-list {
    gap: 16px;
  }
}
footer .footer__wrap ul.footer__menu li.footer__menu-list a {
  position: relative;
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  transition: 0.3s ease;
}
@media screen and (max-width: 899px) {
  footer .footer__wrap ul.footer__menu li.footer__menu-list a {
    padding: 0;
  }
}
footer .footer__wrap ul.footer__menu li.footer__menu-list a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: #333333;
  bottom: 4px;
  left: 0;
  transition: 0.3s ease;
}
@media screen and (max-width: 899px) {
  footer .footer__wrap ul.footer__menu li.footer__menu-list a::before {
    content: none;
  }
}
footer .footer__wrap ul.footer__menu li.footer__menu-list a:hover {
  opacity: 1;
}
footer .footer__wrap ul.footer__menu li.footer__menu-list a:hover::before {
  width: 100%;
}
footer .footer__copy {
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 899px) {
  footer .footer__copy {
    width: 80%;
    margin: 0 auto;
  }
}

.container {
  position: relative;
  margin-top: 120px;
  padding-top: 120px;
  max-width: 1180px;
  min-width: 0;
}
@media screen and (max-width: 899px) {
  .container {
    margin: 85px auto 0;
    padding: 40px 0 0;
    width: 100%;
  }
}
.container__head {
  padding: 120px 0 0;
  margin: 120px auto 0;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .container__head {
    margin: 0 auto;
  }
}
.container__head__title {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 64px;
  margin-bottom: 16px;
}
@media screen and (max-width: 899px) {
  .container__head__title {
    font-size: 1.5rem;
    padding-top: 48px;
  }
}
.container__head__title::before {
  position: absolute;
  content: "";
  width: 56px;
  height: 56px;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #609a72;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 899px) {
  .container__head__title::before {
    width: 48px;
    height: 48px;
  }
}
.container__head__title.estimates::before {
  -webkit-mask-image: url(/common/img/icon--estimates.svg);
  mask-image: url(/common/img/icon--estimates.svg);
}
.container__head__title.diagnosis::before {
  -webkit-mask-image: url(/common/img/icon--diagnosis.svg);
  mask-image: url(/common/img/icon--diagnosis.svg);
}
.container__head__title.catalog::before {
  -webkit-mask-image: url(/common/img/icon--catalog.svg);
  mask-image: url(/common/img/icon--catalog.svg);
}
.container__head__title.consultation::before {
  -webkit-mask-image: url(/common/img/icon--service.svg);
  mask-image: url(/common/img/icon--service.svg);
}
.container__head__title.help::before {
  -webkit-mask-image: url(/common/img/icon--help.svg);
  mask-image: url(/common/img/icon--help.svg);
}
.container__head__title.faq::before {
  -webkit-mask-image: url(/common/img/icon--faq.svg);
  mask-image: url(/common/img/icon--faq.svg);
}
.container__head__title.others::before {
  -webkit-mask-image: url(/common/img/icon--help.svg);
  mask-image: url(/common/img/icon--help.svg);
}
.container__head__title--cap {
  font-size: 1rem;
}
.container__main__top {
  width: 640px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 899px) {
  .container__main__top {
    width: 80%;
    margin: 0 auto 64px;
  }
}
.container__main__title {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  text-align: center;
  padding-bottom: 8px;
  margin-bottom: 32px;
}
@media screen and (max-width: 899px) {
  .container__main__title {
    font-size: 1.25rem;
  }
}
.container__main__title::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 3px;
  background-color: #609a72;
  border-radius: 10px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.container__main__title--cap {
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .container__main__title--cap {
    font-feature-settings: "palt";
  }
}
.container__main__text {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 899px) {
  .container__main__text {
    font-size: 1rem;
  }
}
.container__main__bottom {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: #faf8f6;
}
@media screen and (max-width: 899px) {
  .container__main__bottom {
    padding: 40px 24px;
  }
}
.container__main__bottom .lead {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 899px) {
  .container__main__bottom .lead {
    font-size: 1rem;
    margin-bottom: 16px;
    text-align: left;
    font-feature-settings: "palt";
  }
}
.container__main__bottom .estimate-form {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
.container__main__bottom .estimate-form__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 899px) {
  .container__main__bottom .estimate-form__group {
    gap: 8px;
  }
}
.container__main__bottom .estimate-form__title {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .container__main__bottom .estimate-form__title {
    font-size: 0.875rem;
  }
}
.container__main__bottom .estimate-form__birthday {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 899px) {
  .container__main__bottom .estimate-form__birthday {
    flex-direction: column;
  }
}
.container__main__bottom .estimate-form__select {
  display: flex;
  align-items: center;
  gap: 8px;
}
.container__main__bottom .estimate-form__select span {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .container__main__bottom .estimate-form__select span {
    font-size: 0.875rem;
  }
}
.container__main__bottom .estimate-form__radio-group {
  display: flex;
  gap: 40px;
}
.container__main__bottom .estimate-form__radio {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 32px;
}
.container__main__bottom .estimate-form__radio .form-check-input {
  width: 24px;
  height: 24px;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  translate: 0 -50%;
  margin: 0;
}
.container__main__bottom .estimate-form__radio span {
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .container__main__bottom .estimate-form__radio span {
    font-size: 0.875rem;
    font-feature-settings: "palt";
  }
}
.container__main__bottom .estimate-form__radio--block {
  display: flex;
  align-items: flex-start;
}
.container__main__bottom .estimate-form__member {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.container__main__bottom .estimate-form .btn.btn--green {
  margin: 0 auto;
}
.container__main__bottom .estimate-form .btn.btn--green a:hover {
  color: #ffffff;
  text-decoration: none;
}
.container__main__bottom table {
  width: 100%;
  font-size: 1.125rem;
}
.container__main__bottom table tbody {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 899px) {
  .container__main__bottom table tbody {
    flex-direction: column;
    gap: 16px;
  }
}
.container__main__bottom table tbody tr {
  display: flex;
  gap: 16px;
}
.container__main__bottom table tbody tr th {
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .container__main__bottom table tbody tr th {
    min-width: 8em;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 899px) {
  .container__main__bottom table tbody tr td {
    font-size: 0.875rem;
  }
}
.container__main__bottom.parent-form {
  background-color: #ffffff;
  padding: 0;
}
.container__main__bottom.parent-form table {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .container__main__bottom.parent-form table {
    width: 94%;
    margin: 0 auto;
  }
}
.container__main__bottom.parent-form table tbody {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 899px) {
  .container__main__bottom.parent-form table tbody {
    gap: 24px;
  }
}
.container__main__bottom.parent-form table tbody tr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 40px;
  border-radius: 16px;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .container__main__bottom.parent-form table tbody tr {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .container__main__bottom.parent-form table tbody tr th:nth-child(1) {
    order: 1;
  }
  .container__main__bottom.parent-form table tbody tr td:nth-child(3) {
    order: 2;
  }
  .container__main__bottom.parent-form table tbody tr th:nth-child(2) {
    order: 3;
  }
  .container__main__bottom.parent-form table tbody tr td:nth-child(4) {
    order: 4;
  }
}
.container__main__bottom.parent-form table tbody tr th {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 899px) {
  .container__main__bottom.parent-form table tbody tr th {
    font-size: 1.125rem;
  }
}
.container__main__bottom.parent-form table tbody tr th span.icon {
  width: 24px;
  height: 24px;
}
.container__main__bottom.parent-form table tbody tr td {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .container__main__bottom.parent-form table tbody tr td {
    font-size: 1.125rem;
  }
}
.container__main__bottom.parent-form table tbody tr td .dropdown {
  width: 80%;
  max-width: 300px;
  margin: 8px 0;
}
.container__main__bottom.parent-form .next {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .container__main__bottom.parent-form .next {
    margin-top: 40px;
  }
}
.container__guide__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #609a72;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 899px) {
  .container__guide__text {
    width: 80%;
    margin: 40px auto 0;
    font-size: 1.125rem;
    text-align: left;
  }
}
.container__box {
  width: 900px;
  margin: 0 auto;
  padding: 32px 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (max-width: 899px) {
  .container__box {
    width: 94%;
    margin: 0 auto;
    padding: 32px 16px;
  }
}
.container__box.sand {
  background-color: #faf8f6;
}
.container__box.green {
  background-color: #e7ede9;
}
.container__box__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .container__box__title {
    font-size: 1rem;
  }
}
.container__box__lead {
  font-size: 1.25rem;
}
@media screen and (max-width: 899px) {
  .container__box__lead {
    font-size: 0.875rem;
  }
}
.container__box__inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 899px) {
  .container__box__inner {
    padding: 16px 8px;
  }
}
.container__box__inner.white {
  background-color: #ffffff;
  align-items: center;
}
.container__box__cap {
  font-size: 1rem;
}
.container__box__link {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  color: #609a72;
  transition: 0.3s ease-in-out;
}
.container__box__link:hover {
  opacity: 0.6;
  color: #609a72;
}
.container__box__bnr {
  width: 96%;
  max-width: 600px;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
}
.container__box__bnr a {
  transition: 0.3s ease-in-out;
}
.container__box__bnr a :hover {
  transition: 0.3s ease-in-out;
  opacity: 0.6;
}

.inner__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 899px) {
  .inner__top {
    flex-direction: column;
  }
}
.inner__top__title {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .inner__top__title {
    font-size: 1rem;
    font-feature-settings: "palt";
  }
}
.inner__top__call {
  display: block;
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  padding-left: 64px;
}
@media screen and (max-width: 899px) {
  .inner__top__call {
    font-size: 1.5rem;
    padding-left: 32px;
  }
}
.inner__top__call::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  background-color: #609a72;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--call.svg);
  mask-image: url(/common/img/icon--call.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 899px) {
  .inner__top__call::before {
    width: 24px;
    height: 24px;
  }
}
.inner__top__call:hover {
  color: #333333;
}

.inner__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.inner__bottom__icon {
  background-color: #9fd6a9;
  font-size: 1rem;
  padding: 8px;
}
@media screen and (max-width: 899px) {
  .inner__bottom__icon {
    font-size: 0.875rem;
  }
}
.inner__bottom__time {
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .inner__bottom__time {
    font-size: 0.875rem;
  }
}

.content__box {
  width: 94%;
  max-width: 1180px;
  margin: 0 auto;
}
.content__box__text {
  font-size: 1rem;
  text-align: left;
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .content__box__text {
    width: 84%;
  }
}
.content__box__flex {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 64px;
}
@media screen and (max-width: 899px) {
  .content__box__flex {
    flex-direction: column;
    gap: 24px;
  }
}

.box__wrap {
  padding: 24px 32px;
  border-radius: 10px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .box__wrap {
    padding: 24px 16px;
  }
}
.box__wrap.green {
  background-color: #e7ede9;
}
.box__wrap.sand {
  background-color: #faf8f6;
}
.box__wrap__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 899px) {
  .box__wrap__title {
    font-size: 1rem;
  }
}
.box__wrap__text {
  font-size: 1rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 899px) {
  .box__wrap__text {
    margin-bottom: 24px;
  }
}
.box__wrap .wrap__title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 899px) {
  .box__wrap .wrap__title {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}
.box__wrap .box__inner {
  background-color: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 899px) {
  .box__wrap .box__inner {
    font-size: 1rem;
  }
}
.box__wrap .box__inner__title {
  font-size: 1.25rem;
  font-weight: 700;
}

ul.line__box {
  display: grid;
  grid-auto-columns: 1fr;
  gap: 32px;
}
ul.line__box li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 899px) {
  ul.line__box li {
    gap: 24px;
  }
}
ul.line__box li .text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
ul.line__box li .text .index__btn {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  padding: 16px;
  background-color: #609a72;
}
@media screen and (max-width: 899px) {
  ul.line__box li .text .index__btn {
    padding: 8px;
    font-size: 0.875rem;
  }
}
ul.line__box li .text .index__text {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  ul.line__box li .text .index__text {
    font-size: 0.875rem;
  }
}
ul.line__box li .content {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00b900;
}

.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.insurance__list {
  width: 96%;
  max-width: 900px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
@media screen and (max-width: 899px) {
  .insurance__list {
    margin: 64px auto;
    gap: 40px;
  }
}
.insurance__list__item {
  padding: 24px;
  border: solid 1px #9fd6a9;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.insurance__list__item.is-off {
  background-color: #e7ede9;
}
@media screen and (max-width: 899px) {
  .insurance__list__item {
    padding: 16px 8px;
    gap: 16px;
  }
}

.item__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 16px;
}
@media screen and (max-width: 899px) {
  .item__head {
    padding: 8px;
  }
}
.item__head__wrap {
  display: flex;
  justify-content: space-between;
}
.item__head__left {
  display: flex;
  justify-content: flex-start;
}
.item__head__left .checkbox {
  display: inline;
}
.item__head__left .checkbox__input {
  width: 32px;
  height: 32px;
  accent-color: #9fd6a9;
  margin-top: 8px;
}
.item__head__left .checkbox__input:not(:checked) {
  width: 32px;
  height: 32px;
  accent-color: #9fd6a9;
}
.item__head__left .checkbox__label {
  text-indent: -9999px;
}
.item__head__left .checkbox__label:not(:checked) {
  text-indent: -9999px;
}
.item__head__left .item__label {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (max-width: 899px) {
  .item__head__left .item__label {
    padding-left: 40px;
  }
}
.item__head__left .item__label__name {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .item__head__left .item__label__name {
    font-size: 1.5rem;
  }
}
.item__head__left .item__label__caption {
  font-size: 1.125rem;
}
@media screen and (max-width: 899px) {
  .item__head__left .item__label__caption {
    font-size: 0.875rem;
  }
}
.item__head__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
@media screen and (max-width: 899px) {
  .item__head__right {
    gap: 4px;
  }
}
.item__head__right .item__membership {
  display: flex;
  gap: 4px;
}
.item__head__right .item__membership__category {
  padding: 8px 16px 4px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 899px) {
  .item__head__right .item__membership__category {
    font-size: 0.875rem;
    padding: 4px 12px;
  }
}
.item__head__right .item__membership__category.cate_A {
  background-color: #ea9a93;
}
.item__head__right .item__membership__category.cate_B {
  background-color: #8badd7;
}
.item__head__right .item__membership__category.cate_C {
  background-color: #edc28d;
}
.item__head__right p {
  font-size: 1.25rem;
  font-weight: 700;
}
.item__head__lead {
  padding: 16px 24px;
  background-color: #e7ede9;
  display: flex;
  justify-content: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 899px) {
  .item__head__lead {
    font-size: 0.875rem;
  }
}
.item__premiums {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: baseline;
}
.item__premiums span {
  font-size: 1.125rem;
}
@media screen and (max-width: 899px) {
  .item__premiums span {
    font-size: 0.875rem;
  }
}
.item__premiums span.premiums {
  font-size: 56px;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .item__premiums span.premiums {
    font-size: 2.5rem;
  }
}
.item__bottom .toggle-bar,
.item__bottom .close-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0 24px;
  background: #9fd6a9;
  border: none;
  border-top: none;
  border-radius: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  color: #333333;
}
@media screen and (max-width: 899px) {
  .item__bottom .toggle-bar,
  .item__bottom .close-bar {
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 10px;
  }
}
.item__bottom .toggle-bar:hover,
.item__bottom .close-bar:hover {
  background: #609a72;
  color: #ffffff;
}
.item__bottom .toggle-bar.is-hidden,
.item__bottom .close-bar.is-hidden {
  display: none;
}
.item__bottom .toggle-bar__label,
.item__bottom .close-bar__label {
  position: relative;
  width: 100%;
  padding: 16px 48px;
}
.item__bottom .toggle-bar__label::before,
.item__bottom .close-bar__label::before {
  position: absolute;
  content: "";
  -webkit-mask-image: url(/common/img/icon--circle-arrow.svg);
  mask-image: url(/common/img/icon--circle-arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 32px;
  height: 32px;
  background-color: #333333;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 899px) {
  .item__bottom .toggle-bar__label::before,
  .item__bottom .close-bar__label::before {
    width: 24px;
    height: 24px;
  }
}
.item__bottom .toggle-bar__label:hover::before,
.item__bottom .close-bar__label:hover::before {
  background-color: #ffffff;
}
.item__bottom .close-bar__label::before {
  transform: translate(0, -50%) rotate(180deg);
}
.item__detail {
  display: none;
  border-top: 8px solid #9fd6a9;
  border-radius: 8px 8px 0 0;
  padding: 40px 24px;
}
@media screen and (max-width: 899px) {
  .item__detail {
    padding: 24px 16px;
  }
}
.item__detail.is-open {
  display: block;
}
.item__detail__lead {
  font-size: 2rem;
  font-weight: 700;
  color: #609a72;
  margin-bottom: 8px;
}
@media screen and (max-width: 899px) {
  .item__detail__lead {
    font-size: 1rem;
  }
}
.item__detail__lead.caption {
  font-size: 1.125rem;
  font-weight: 400;
  color: #333333;
  margin-bottom: 32px;
}
@media screen and (max-width: 899px) {
  .item__detail__lead.caption {
    font-size: 0.875rem;
  }
}
.item__detail__premiums {
  padding: 32px;
  border: solid 1px #c8c8c8;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .item__detail__premiums {
    padding: 16px 8px;
  }
}
.item__detail__premiums .premiums__label {
  font-size: 1.25rem;
}
@media screen and (max-width: 899px) {
  .item__detail__premiums .premiums__label {
    font-size: 0.875rem;
  }
}
.item__detail__premiums .premiums__stepper {
  display: flex;
  gap: 32px;
  align-items: center;
}
.item__detail__premiums .premiums__stepper .premiums__value {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .item__detail__premiums .premiums__stepper .premiums__value {
    font-size: 1.125rem;
  }
}
.item__detail__premiums .premiums__btn {
  width: 32px;
  height: 32px;
}
.item__detail .premiums__caption {
  font-size: 1rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 899px) {
  .item__detail .premiums__caption {
    font-size: 12px;
  }
}
.item__detail__caption {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 899px) {
  .item__detail__caption {
    font-size: 1rem;
    margin-bottom: 24px;
    font-feature-settings: "palt";
  }
}

.form__container {
  width: 94%;
  max-width: 900px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  gap: 40px;
}
@media screen and (max-width: 899px) {
  .form__container {
    flex-direction: column;
    padding: 0;
    margin: 0 auto 64px;
  }
}
.form__container .form__list {
  background-color: #faf8f6;
  border: solid 1px #b7a28e;
  padding: 24px;
  width: 50%;
}
@media screen and (max-width: 899px) {
  .form__container .form__list {
    width: 100%;
  }
}
.form__container .form__list table {
  width: 100%;
  margin-bottom: 40px;
}
.form__container .form__list table tbody {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__container .form__list table tbody tr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
}
.form__container .form__list table tbody tr th {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .form__container .form__list table tbody tr th {
    font-size: 1rem;
  }
}
.form__container .form__list table tbody tr td {
  font-size: 2rem;
}
@media screen and (max-width: 899px) {
  .form__container .form__list table tbody tr td {
    font-size: 1.25rem;
  }
}
.form__container .form__list table tbody tr td span {
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .form__container .form__list table tbody tr td span {
    font-size: 0.875rem;
  }
}
.form__container .form__list__total p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: right;
}
@media screen and (max-width: 899px) {
  .form__container .form__list__total p {
    font-size: 1.25rem;
  }
}
.form__container .form__list__total p.price .total,
.form__container .form__list__total p.price .shuffleNum {
  font-size: 2.5rem;
  text-align: right;
}
@media screen and (max-width: 899px) {
  .form__container .form__list__total p.price .total,
  .form__container .form__list__total p.price .shuffleNum {
    font-size: 2rem;
  }
}
.form__container .form__list__total p.price span.unit {
  font-size: 1.5rem;
}
@media screen and (max-width: 899px) {
  .form__container .form__list__total p.price span.unit {
    font-size: 1rem;
  }
}
.form__container .form__input {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 899px) {
  .form__container .form__input {
    gap: 16px;
  }
}
.form__container .form__input .mail {
  padding: 16px 48px;
}
.form__container .form__input .mail::after {
  position: absolute;
  content: "";
  background-color: #333333;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 16px;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--mail.svg);
  mask-image: url(/common/img/icon--mail.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.form__container .form__input .mail:hover::after {
  background-color: #ffffff;
}
.form__container .form__input .help {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 40px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 899px) {
  .form__container .form__input .help {
    padding-left: 32px;
  }
}
.form__container .form__input .help::before {
  position: absolute;
  content: "";
  -webkit-mask-image: url(/common/img/icon--help.svg);
  mask-image: url(/common/img/icon--help.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-color: #609a72;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.form__container .form__input .help:hover {
  color: #609a72;
}

.parent__form {
  width: 94%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .parent__form {
    padding: 0;
  }
}
.parent__form__lead {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 899px) {
  .parent__form__lead {
    font-size: 1rem;
  }
}
.parent__form__btn {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #609a72;
  text-align: center;
  padding-block: 24px;
  padding-inline: 24px 64px;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}
@media screen and (max-width: 899px) {
  .parent__form__btn {
    padding-block: 16px;
    padding-inline: 8px 32px;
    font-size: 0.875rem;
    font-feature-settings: "palt";
  }
}
.parent__form__btn::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--arrow.svg);
  mask-image: url(/common/img/icon--arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #ffffff;
}
@media screen and (max-width: 899px) {
  .parent__form__btn::before {
    right: 0;
  }
}
.parent__form__btn:hover {
  color: #ffffff;
  opacity: 0.8;
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #e7ede9;
}
.sticky-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 899px) {
  .sticky-bar__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 8px;
    gap: 8px;
  }
}
.sticky-bar__total {
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 899px) {
  .sticky-bar__total {
    order: -1;
  }
}
.sticky-bar__total-label {
  font-size: 0.875rem;
  color: #333333;
  margin-bottom: 4px;
}
.sticky-bar__total-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.sticky-bar__total-num {
  font-size: 2rem;
  font-weight: 700;
}
.sticky-bar__total-unit {
  font-size: 1rem;
  font-weight: 700;
}
.sticky-bar__btn-row {
  display: contents;
}
@media screen and (max-width: 899px) {
  .sticky-bar__btn-row {
    display: flex;
    gap: 8px;
    width: 100%;
  }
}
.sticky-bar__btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-align: left;
  min-width: 200px;
}
@media screen and (max-width: 899px) {
  .sticky-bar__btn {
    flex: 1;
    min-width: 0;
    padding: 16px 8px;
    gap: 4px;
    justify-content: center;
  }
}
.sticky-bar__btn:hover {
  background: #9fd6a9;
}
.sticky-bar__btn-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 899px) {
  .sticky-bar__btn-icon {
    width: 24px;
    height: 24px;
  }
}
.sticky-bar__btn-text {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .sticky-bar__btn-text {
    font-size: 0.875rem;
    font-feature-settings: "palt";
  }
}

.check__list {
  width: 94%;
  max-width: 900px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.check__list__item {
  border: solid 1px #9fd6a9;
  border-radius: 16px;
}
.check__list__item .check__point {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background-color: #9fd6a9;
  border-radius: 14px 14px 0 0;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .check__list__item .check__point {
    display: block;
    padding: 16px;
    font-size: 0.875rem;
  }
}
.check__list__item .check__point .check__step__num {
  font-size: 2.25rem;
  margin-right: 16px;
}
@media screen and (max-width: 899px) {
  .check__list__item .check__point .check__step__num {
    display: block;
    text-align: center;
    font-size: 1.25rem;
    margin: 0 0 16px 0;
  }
}
.check__list__item .check__point .check__step__num span {
  font-size: 1.25rem;
}
@media screen and (max-width: 899px) {
  .check__list__item .check__point .check__step__num span {
    font-size: 0.875rem;
  }
}
.check__list__item .point {
  width: 92%;
  max-width: 640px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 899px) {
  .check__list__item .point {
    margin: 16px auto 16px;
  }
}
.check__list__item .point__list {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 899px) {
  .check__list__item .point__list {
    gap: 16px;
  }
}
.check__list__item .point__list__num {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  background-color: #e7ede9;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .check__list__item .point__list__num {
    padding: 8px;
    font-size: 0.875rem;
  }
}
.check__list__item .point__list__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.check__list__item .point__list__text .text {
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .check__list__item .point__list__text .text {
    font-size: 0.875rem;
  }
}
.check__list__item .point__list__text .answer {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
}
.check__list__item .point__list__text .answer__check input[type=radio] {
  display: none;
}
.check__list__item .point__list__text .answer__check__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1rem;
}
.check__list__item .point__list__text .answer__check__radio::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/common/img/icon--radio_off.svg") center/contain no-repeat;
  flex-shrink: 0;
}
.check__list__item .point__list__text .answer__check input[type=radio]:checked + .answer__check__radio::before {
  background-image: url("/common/img/icon--radio_on.svg");
}
.check__list__item .point__list__text .popup-btn {
  padding: 16px;
  width: 100%;
  border-radius: 8px;
  background-color: #faf8f6;
  position: relative;
  font-size: 0.875rem;
  text-align: left;
}
@media screen and (max-width: 899px) {
  .check__list__item .point__list__text .popup-btn {
    padding-block: 16px;
    padding-inline: 16px 56px;
  }
}
.check__list__item .point__list__text .popup-btn::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  background-image: url("/common/img/icon--popup.svg");
}

.diagnosis__send {
  margin: 80px auto 0;
  text-align: center;
}
.diagnosis__send .btn.btn--green {
  width: 80%;
  max-width: 640px;
}

#pc-table {
  display: block;
}

#sp-table {
  display: none;
}

@media screen and (max-width: 899px) {
  #pc-table {
    display: none;
  }
  #sp-table {
    display: block;
  }
  .modal-table-sp__block {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
  }
  .modal-table-sp__heading {
    padding: 10px 12px;
    font-weight: bold;
    font-size: 15px;
  }
  .modal-table-sp__heading.sand {
    background-color: #faf8f6;
  }
  .modal-table-sp__heading.green {
    background-color: #e7ede9;
  }
  .modal-table-sp__item {
    border-top: 1px solid #ccc;
  }
  .modal-table-sp__label {
    padding: 8px 12px;
    font-weight: bold;
    font-size: 13px;
    background-color: #f5f5f5;
  }
  .modal-table-sp__value {
    padding: 8px 12px;
    font-size: 13px;
  }
  .modal-table-sp__value.sand {
    background-color: #faf8f6;
  }
  .modal-table-sp__value.green {
    background-color: #e7ede9;
  }
  .modal-table-sp__value ul {
    margin: 0;
    padding-left: 16px;
    list-style: disc;
  }
  .modal-table-sp__value ul li {
    margin-bottom: 4px;
  }
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.is-open {
  display: flex;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: #ffffff;
  border-radius: 10px;
  max-width: 1180px;
  width: 90%;
  max-height: 80vh;
  height: auto;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 1;
  animation: modalIn 0.4s ease-in-out;
}
@keyframes modalIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal__inner {
  position: relative;
  padding: 72px;
}
@media screen and (max-width: 899px) {
  .modal__inner {
    padding: 80px 16px 16px;
  }
}
.modal__header {
  padding-bottom: 8px;
  margin-bottom: 40px;
}
@media screen and (max-width: 899px) {
  .modal__header {
    margin-bottom: 24px;
  }
}
.modal__header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  flex: 1;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 899px) {
  .modal__header h3 {
    font-size: 1.125rem;
  }
}
.modal__header h3::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 3px;
  background-color: #609a72;
  border-radius: 10px;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
}
.modal__close {
  position: absolute;
  cursor: pointer;
  top: 16px;
  right: 16px;
  width: 56px;
}
.modal__body__title {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .modal__body__title {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }
}
.modal__body__caption {
  font-size: 0.875rem;
}
@media screen and (max-width: 899px) {
  .modal__body__caption {
    margin-bottom: 24px;
  }
}
.modal__body__caption + .modal__body__title {
  margin-top: 32px;
}
.modal__body .table_flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 899px) {
  .modal__body .table_flex {
    grid-template-columns: 1fr;
  }
}
.modal__body .modal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
@media screen and (max-width: 899px) {
  .modal__body .modal-table {
    margin: 0 0 16px;
  }
}
.modal__body .modal-table th,
.modal__body .modal-table td {
  padding: 16px;
  text-align: left;
}
.modal__body .modal-table th {
  font-size: 16px;
  background: #9fd6a9;
  font-weight: 700;
  width: 20.4081632653%;
  text-align: center;
  vertical-align: middle;
  border-bottom: solid 1px #fff;
}
.modal__body .modal-table th.sand {
  background-color: #faf8f6;
  border-bottom: solid 1px #c8c8c8;
}
.modal__body .modal-table th.sand + th.sand {
  border-left: solid 1px #c8c8c8;
}
.modal__body .modal-table th.sand + td.sand {
  border-left: solid 1px #c8c8c8;
}
.modal__body .modal-table th.green {
  background-color: #e7ede9;
  border-bottom: solid 1px #c8c8c8;
}
.modal__body .modal-table th.green + th.green {
  border-left: solid 1px #c8c8c8;
}
.modal__body .modal-table th.green + td.green {
  border-left: solid 1px #c8c8c8;
}
.modal__body .modal-table th:nth-last-child {
  border-bottom: none;
}
.modal__body .modal-table th + th {
  border-left: solid 1px #fff;
}
.modal__body .modal-table td {
  font-size: 14px;
  vertical-align: top;
  width: 26.5306122449%;
}
.modal__body .modal-table td.sand {
  background-color: #faf8f6;
  border-bottom: solid 1px #c8c8c8;
}
.modal__body .modal-table td.sand.last {
  border-bottom: none;
}
.modal__body .modal-table td.sand + td.sand {
  border-left: 1px solid #ccc; /* お好みの色・太さに */
}
.modal__body .modal-table td.green {
  background-color: #e7ede9;
  border-bottom: solid 1px #c8c8c8;
}
.modal__body .modal-table td.green.last {
  border-bottom: none;
}
.modal__body .modal-table td.green + td.green {
  border-left: solid 1px #c8c8c8;
}
.modal__body .modal-table td ul {
  list-style: disc;
  padding-left: 8px;
}
.modal__body .modal-table.sand th {
  background-color: #e6cbb0;
}
.modal__body .modal-table.sand td.sand {
  background-color: #faf8f6;
  border-bottom: none;
}
.modal__body .modal-table.sand td.sand + td.sand {
  border-left: solid 1px #c8c8c8;
}
.modal__body .modal-table.sand td + td {
  border-left: solid 1px #c8c8c8;
}
.modal__box {
  width: 100%;
  padding: 24px;
  border: solid 2px #609a72;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.modal__box span {
  margin-right: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .modal__img {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal__img img {
    min-width: 800px;
  }
}

.faq__category__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .faq__category__list {
    grid-template-columns: 1fr;
    width: 96%;
    gap: 8px;
  }
}
.faq__category__list li {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  border: #609a72 solid 2px;
  border-radius: 10px;
}
@media screen and (max-width: 899px) {
  .faq__category__list li {
    font-size: 0.875rem;
  }
}
.faq__category__list li:hover {
  background-color: #609a72;
}
.faq__category__list li a {
  position: relative;
  display: flex;
  padding: 32px 16px;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 899px) {
  .faq__category__list li a {
    justify-content: flex-start;
    padding: 16px;
  }
}
.faq__category__list li a:hover {
  color: #ffffff;
}
.faq__category__list li a:hover::before {
  background-color: #ffffff;
}
.faq__category__list li a::before {
  position: absolute;
  content: "";
  background-color: #333333;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 4px;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--arrow.svg);
  mask-image: url(/common/img/icon--arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}

.faq-item {
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  border-bottom: 2px solid #609a72;
}
.faq-item:first-child {
  border-top: 2px solid #609a72;
}
.faq-item .faq-q {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 899px) {
  .faq-item .faq-q {
    gap: 8px;
    padding-block: 16px;
    padding-inline: 8px 48px;
  }
}
.faq-item .faq-q::before {
  position: absolute;
  content: "";
  background-color: #609a72;
  width: 32px;
  height: 32px;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  -webkit-mask-image: url(/common/img/icon--circle-arrow.svg);
  mask-image: url(/common/img/icon--circle-arrow.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 899px) {
  .faq-item .faq-q::before {
    width: 24px;
    height: 24px;
    right: 16px;
  }
}
.faq-item .faq-q-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #609a72;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .faq-item .faq-q-badge {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
.faq-item .faq-q-text {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: #609a72;
}
@media screen and (max-width: 899px) {
  .faq-item .faq-q-text {
    font-size: 1rem;
  }
}
.faq-item.open .faq-q::before {
  transform: translate(0, -50%) rotate(180deg);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item .faq-answer-inner {
  overflow: hidden;
}
.faq-item .faq-answer .faq-a {
  display: flex;
  gap: 8px;
  padding: 16px;
}
@media screen and (max-width: 899px) {
  .faq-item .faq-answer .faq-a {
    padding: 16px 8px;
  }
}
.faq-item .faq-answer .faq-a-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #9fd6a9;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .faq-item .faq-answer .faq-a-badge {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
.faq-item .faq-answer .faq-a .faq-a-body {
  font-size: 1.25rem;
}
@media screen and (max-width: 899px) {
  .faq-item .faq-answer .faq-a .faq-a-body {
    font-size: 1rem;
  }
}
.faq-item .faq-answer .faq-a .faq-a-body strong {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}
.faq-item .faq-answer .faq-a .faq-a-body p {
  margin: 0;
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .faq-item .faq-answer .faq-a .faq-a-body p {
    font-size: 0.875rem;
  }
}

.container__forms {
  width: 94%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding: 24px;
  background-color: #faf8f6;
}
@media screen and (max-width: 899px) {
  .container__forms {
    flex-direction: column;
    gap: 24px;
  }
}
.container__forms__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
}
@media screen and (max-width: 899px) {
  .container__forms__left {
    gap: 16px;
    width: 100%;
  }
}
.container__forms__left .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container__forms__left .item__name {
  font-size: 1.25rem;
}
@media screen and (max-width: 899px) {
  .container__forms__left .item__name {
    font-size: 1rem;
  }
}
.container__forms__left .item__premium {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .container__forms__left .item__premium {
    font-size: 1.25rem;
  }
}
.container__forms__left .item__premium span {
  font-size: 0.875rem;
}
.container__forms__right {
  padding: 16px;
  border: solid 3px #609a72;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
@media screen and (max-width: 899px) {
  .container__forms__right {
    width: 100%;
  }
}
.container__forms__right .index {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.container__forms__right .price {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 899px) {
  .container__forms__right .price {
    font-size: 1.5rem;
  }
}
.container__forms__right .price span {
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .container__forms__right .price span {
    font-size: 0.875rem;
  }
}

.forms__lead {
  font-size: 2.25rem;
  font-weight: 700;
  color: #609a72;
  text-align: center;
  margin-block: 40px;
}
@media screen and (max-width: 899px) {
  .forms__lead {
    margin-top: 32px;
    font-size: 1.25rem;
  }
}
.forms__content {
  width: 94%;
  max-width: 900px;
  margin: 0 auto 64px;
}
@media screen and (max-width: 899px) {
  .forms__content {
    margin: 32px auto;
  }
}
.forms__content tbody {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 899px) {
  .forms__content tbody {
    gap: 32px;
  }
}
.forms__content tbody tr {
  display: flex;
  align-items: stretch;
  gap: 32px;
}
@media screen and (max-width: 899px) {
  .forms__content tbody tr {
    flex-direction: column;
    gap: 8px;
  }
}
.forms__content tbody tr th {
  min-width: 360px;
  background-color: #e7ede9;
  padding: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 899px) {
  .forms__content tbody tr th {
    padding: 16px 8px;
  }
}
.forms__content tbody tr th .required__tag {
  width: 20%;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 8px 10px;
  background-color: #e15151;
  border-radius: 8px;
}
.forms__content tbody tr th .forms__content__text {
  width: 80%;
  font-size: 1.25rem;
  font-weight: 700;
}
.forms__content tbody tr th .forms__content__cap {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
}
.forms__content tbody tr td {
  width: 100%;
  padding: 16px 0;
  font-size: 1.25rem;
}
@media screen and (max-width: 899px) {
  .forms__content tbody tr td {
    padding: 0;
    font-size: 1rem;
  }
}
.forms__content tbody tr td .form-control {
  font-size: 1rem;
  padding: 16px;
  height: auto;
  margin: 0 0 8px 0;
}
@media screen and (max-width: 899px) {
  .forms__content tbody tr td .form-control {
    width: 100%;
  }
}
.forms__content tbody tr td .text-danger {
  font-size: 0.875rem;
  font-weight: 700;
  color: #e15151;
}
.forms__content tbody tr td .text-caption {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .forms__content tbody tr td .text-caption {
    margin-bottom: 16px;
  }
}
.forms__content tbody tr td.label__flex {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 899px) {
  .forms__content tbody tr td.label__flex {
    flex-direction: column;
    gap: 8px;
  }
}
.forms__content tbody tr td.label__flex label {
  width: 100%;
}
.forms__content tbody tr td .search-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #e15151;
}
.forms__content tbody tr td .search-link:hover {
  text-decoration: underline;
}
.forms__content tbody tr td .index {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-block: 16px;
}
@media screen and (max-width: 899px) {
  .forms__content tbody tr td .index {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.forms__content tbody tr td .index_call {
  padding: 16px;
  border-radius: 8px;
  background-color: #c8c8c8;
  font-size: 1rem;
  font-weight: 700;
}
.forms__input {
  width: 94%;
  max-width: 900px;
  margin: 0 auto 120px;
  text-align: center;
}
.forms__input .btn.btn--green {
  width: 100%;
}

.btn__flex {
  display: flex;
  width: 94%;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 899px) {
  .btn__flex {
    flex-direction: column;
  }
}
.btn__flex .btn {
  width: 100%;
  font-size: 1.125rem;
}
@media screen and (max-width: 899px) {
  .btn__flex .btn {
    font-size: 1rem;
  }
}

.container__forms__cap {
  text-align: center;
  margin: 16px 0;
  font-size: 1.125rem;
}
@media screen and (max-width: 899px) {
  .container__forms__cap {
    font-size: 0.875rem;
    text-align: left;
  }
}

.forms__back {
  margin: 64px auto 0;
  text-align: center;
}

.container__confirm {
  width: 94%;
  max-width: 900px;
  margin: 120px auto;
}
.container__confirm__text {
  margin: 64px 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.container__confirm__flex {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.privacy__box {
  width: 94%;
  max-width: 1180px;
  margin: 0 auto 64px;
}
@media screen and (max-width: 899px) {
  .privacy__box {
    margin: 0 auto 40px;
  }
}
.privacy__box__lead {
  font-size: 1.25rem;
  font-weight: 700;
  width: 94%;
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .privacy__box__lead {
    font-size: 1rem;
  }
}
.privacy__box__index {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #609a72;
}
@media screen and (max-width: 899px) {
  .privacy__box__index {
    font-size: 1.125rem;
  }
}
.privacy__box p {
  font-size: 1rem;
}
@media screen and (max-width: 899px) {
  .privacy__box p {
    font-size: 0.875rem;
  }
}
.privacy__box .privacy__list {
  margin-top: 24px;
}
.privacy__box .privacy__list li {
  margin-bottom: 32px;
}
@media screen and (max-width: 899px) {
  .privacy__box .privacy__list li {
    margin-bottom: 16px;
  }
}
.privacy__box .privacy__list__title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  text-indent: -3em;
  padding-left: 3em;
}
@media screen and (max-width: 899px) {
  .privacy__box .privacy__list__title {
    font-size: 1.125rem;
  }
}
.privacy__box .privacy__list__text {
  font-size: 1rem;
  padding: 0 60px;
}
@media screen and (max-width: 899px) {
  .privacy__box .privacy__list__text {
    font-size: 0.875rem;
    padding: 0 16px;
  }
}

.privacy__sign {
  width: 94%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: right;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .privacy__sign {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */