/* setting */
:root {
  --green: #99c73a;
  --orange: #ff6f00;
  --black: #000;
}

/* base */
* {
  box-sizing: border-box;
  position: relative;
  font-feature-settings: "palt";
}

html {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05px;
  color: #000;
  background: #99c73a;
}

figure {
  margin: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.pc-only,
.sp-only {
  display: none;
}

@media (min-width: 769px) {
  .pc-only {
    display: inherit;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: inherit;
  }
}
body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
  line-height: 1.6;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
}

.inner {
  width: min(100%, 580px);
  margin: 0 auto;
}

@media (max-width: 580px) {
  .inner {
    padding: 0 10px;
  }
}
.header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  padding: 10px 0;
}
.header .inner {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .header .inner {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
}
.header-logo {
  max-width: 40%;
}
@media (max-width: 768px) {
  .header-logo {
    margin: 0 auto;
  }
}
.header-guide {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .header-guide {
    justify-content: center;
  }
}
.header-guide__image {
  max-width: 70px;
}
.header-guide__tel {
  margin-bottom: 10px;
}
.header-guide__text {
  font-size: 17px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .header-guide__text {
    font-size: 13px;
  }
}

.main {
  padding: 30px 10px;
}

.head {
  margin-bottom: 20px;
  text-align: center;
}
.head .inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
@media (max-width: 600px) {
  .head .inner {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.head-top {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}
@media (max-width: 767px) {
  .head-top {
    grid-template-columns: 1fr;
  }
}
.head-text {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .head-icon {
    max-width: 100px;
    margin: 0 auto;
  }
}
.head-image {
  max-width: 130px;
}
@media (max-width: 520px) {
  .head-image {
    margin: 0 auto;
  }
}

.step {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .step {
    flex-direction: column;
  }
}
.step-lead {
  text-align: center;
  font-weight: 700;
}
@media (max-width: 768px) {
  .step-lead br {
    display: none;
  }
}
.step-list {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.step-list::before {
  content: "";
  width: 100%;
  max-width: 260px;
  height: 3px;
  background: #3d2810;
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .step-list::before {
    width: 70vw;
  }
}
.step-list__item {
  width: 40px;
  height: 40px;
  background: #eaed6e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  z-index: 5;
}
.step-list__item.is-current {
  background: #ffc82e;
}

.box {
  margin-bottom: 50px;
  display: none;
}
.box.is-current {
  display: block;
}
.box-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 300px;
  margin: 0 auto 30px;
  gap: 15px;
}
.box-group {
  margin-bottom: 30px;
}
.box-check {
  appearance: none;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  background: revert;
  border: revert;
  width: revert;
  height: revert;
  display: none;
}
.box-check:checked + .box-btn {
  background: #f4f4d7;
}
.box-btn {
  border-radius: 10px;
  background: #fff;
  border: 2px solid #3d2810;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  aspect-ratio: 1/1;
  height: 100%;
}
.box-btn__icon {
  width: 100%;
  max-width: 120px;
  padding: 10px;
}
.box-btn__icon img {
  margin-bottom: 5px;
}
.box-btn__caption {
  font-size: 15px;
  line-height: 1.4;
}
.box-btn__caption--min {
  font-size: 12px;
  display: block;
}
.box-input {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.box-input__text {
  border: 3px solid #3d2810;
  border-radius: 10px;
  background: #c6efab;
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  margin: 0 auto;
}
.box-input__text2 {
  border: 3px solid #3d2810;
  border-radius: 10px;
  background: #c6efab;
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  margin: 0 auto;
}
.box-note {
  padding: 20px 0 0;
}
.box-set__01 .box-btn__icon img {
  max-width: 90px;
}
.box-set__02 .box-btn__icon img {
  max-width: 80px;
}
.box-set__03 .box-btn__icon img {
  max-width: 100px;
  margin-top: 20px;
}
.box-set__04 .box-btn__icon img {
  max-width: 90px;
}
.box-set__05 .box-btn__icon img {
  max-width: 70px;
}
.box-set__06 .box-btn__icon img {
  max-width: 70px;
}
.box-set__07 .box-btn__icon img {
  max-width: 70px;
}
.box-set__08 .box-btn__icon img {
  max-width: 70px;
}
.box-set__09 .box-btn__icon img {
  max-width: 70px;
}
.box-set__10 .box-btn__icon img {
  max-width: 70px;
}
.box-set__11 .box-btn__icon img {
  max-width: 70px;
}
.box-set__12 .box-btn__icon img {
  max-width: 70px;
}
.box-set__13 .box-btn__icon img {
  max-width: 70px;
}
.box-set__14 .box-btn__icon img {
  max-width: 70px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.box-set__15 .box-btn__icon img {
  max-width: 70px;
}
.box-set__16 .box-btn__icon img {
  max-width: 70px;
}
.box-error {
  color: #bc2626;
  font-weight: 700;
  margin: 5px 0;
  text-align: center;
  display: none;
}
.box-error.is-active {
  display: block;
}
.box-title {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}
.box-title__note {
  text-align: center;
  padding-top: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .box-title__note a {
    text-decoration: underline;
    color : #1F3E7B;
  }
}
.box-title__label {
  display: block;
  text-align: center;
  font-size: 18px;
}
.box-title__text {
  font-size: clamp(22px, 5vw, 32px);
}
.box-nav {
  margin-bottom: 20px;
  max-width: 190px;
  margin: 0 auto 20px;
}
.box-nav.is-disable {
  opacity: 0.3;
  pointer-events: none;
}
.box-nav2 {
  margin-bottom: 20px;
  max-width: 190px;
  margin: 0 auto 20px;
}
.box-nav2.is-disable {
  opacity: 0.3;
  pointer-events: none;
}
.box-nav__check {
  padding-top: 20px;
}
.box-nav__submit {
  position: relative;
}
.box-nav__submit::before {
  content: "";
  width: 17px;
  height: 17px;
  background: transparent url("../img/icon_arrow.svg") no-repeat center center;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  z-index: 5;
}
.box-nav__btn {
  background: #3d2810;
  border: none;
  font-size: 18px;
  text-align: center;
  display: block;
  color: #fff;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: 0.3s all;
}
.box-nav__btn:hover {
  opacity: 0.8;
}
.box-nav__btn--next::before {
  content: "";
  width: 17px;
  height: 17px;
  background: transparent url("../img/icon_arrow.svg") no-repeat center center;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  z-index: 5;
}
.box-nav__btn--prev {
  background: #98ba83;
}
.box-nav__btn--prev::before {
  content: "";
  width: 17px;
  height: 17px;
  background: transparent url("../img/icon_arrow.svg") no-repeat center center;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  left: 15px;
  z-index: 5;
}

.bottom {
  margin-bottom: 30px;
}
.bottom-lead {
  text-align: center;
  font-size: clamp(18px, 4vw, 32px);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
}
.bottom-image {
  max-width: 520px;
  margin: 0 auto 30px;
}
.bottom-text {
  text-align: center;
  font-size: clamp(26px, 5vw, 32px);
  font-weight: 700;
  color: #3d2810;
  line-height: 1.4;
}

.footer {
  padding: 20px 0;
}
.footer-copy {
  font-size: 12px;
  text-align: center;
}

.thanks {
  padding: 20px 0;
}
.thanks-image {
  width: 130px;
  margin: 0 auto 20px;
}
.thanks-lead {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.thanks-text {
  margin-bottom: 10px;
}
.thanks-tel {
  text-align: center;
  margin-bottom: 20px;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 700;
}
.thanks-btn a {
  display: block;
  width: 100%;
  max-width: 300px;
  text-align: center;
  color: #fff;
  padding: 10px;
  margin: 0 auto;
  background: #5A1212;
  margin-top: 50px;
}



/*# sourceMappingURL=layout.css.map */