@charset "UTF-8";
/* ==============================
  base
============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  color: #231815;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  background: #fff;
}

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

.lp-wrapper {
  overflow: hidden;
}

.section-inner {
  width: 345px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}

.menu-button {
  position: fixed;
  top: 13px;
  right: 15px;
  z-index: 1000;
  display: grid;
  justify-items: center;
  gap: 4px;
  width: 34px;
  padding: 0;
  color: #231815;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-button__line {
  display: block;
  width: 24px;
  height: 3px;
  background: currentColor;
}
.menu-button__text {
  display: block;
  margin-top: 0;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (min-width: 900px) {
  .section-inner {
    width: 910px;
    max-width: calc(100% - 80px);
  }

  .menu-button {
    display: none;
  }
}
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  background: rgba(80, 188, 190, 0.96);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.sp-menu__inner {
  width: 100%;
  max-width: 360px;
  margin: 100px auto 0;
  padding: 0 24px;
}
.sp-menu__list {
  width: 100%;
  max-width: 320px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sp-menu__list li + li {
  margin-top: 16px;
}
.sp-menu__list a {
  display: block;
  padding: 14px 18px;
  color: #231815;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border-radius: 999px;
}

@media screen and (min-width: 900px) {
  .sp-menu {
    display: none;
  }
}
/* ==============================
  main visual
============================== */
.mv {
  position: relative;
  height: 530px;
  margin-bottom: 100px;
  background-image: url("../img/mv_bg_sp.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.mv__inner {
  position: relative;
  height: 100%;
  padding: 18px 0 0;
}
.mv__logo {
  display: none;
}
.mv__logo img {
  display: block;
  width: 100%;
}
.mv__main {
  display: block;
  width: 365px;
  max-width: calc(100vw - 20px);
  margin: 75px auto 0;
}
.mv__main img {
  display: block;
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==============================
  PC
============================== */
@media screen and (min-width: 900px) {
  .mv {
    height: 665px;
    min-height: auto;
    background-image: url("../img/mv_bg_pc.jpg");
    background-position: center center;
    background-size: cover;
  }
  .mv__inner {
    width: min(100% - 80px, 1280px);
    height: 665px;
    min-height: auto;
    margin: 0 auto;
    padding: 24px 0 80px;
  }
  .mv__logo {
    display: block;
    width: 221px;
    margin: 0;
  }
  .mv__main {
    width: 630px;
    max-width: 100%;
    margin: -8px auto 0;
  }
}
/* ==============================
  intro & worry
============================== */
.u-sp {
  display: inline;
}

.intro {
  padding: 72px 0 50px;
}
.intro__inner {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.intro__title {
  order: 1;
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.intro__image {
  order: 2;
  position: relative;
  z-index: 1;
  width: 270px;
  margin: -15px auto -15px;
}
.intro__image img {
  display: block;
  width: 100%;
}
.intro__catch {
  order: 3;
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
}
.intro__catch span {
  display: inline;
  padding: 0;
  background: #fff100;
  line-height: 2.2;
  font-feature-settings: "halt";
}
.intro__lead {
  order: 4;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.worry {
  padding: 50px 0 50px;
  background: #fff;
}
.worry__title {
  margin: 0 0 48px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.worry__title span {
  display: block;
  margin-bottom: 8px;
  font-size: 40px;
  line-height: 1;
}
.worry__body {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.worry__subtitle {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
  order: 1;
}
.worry__catch {
  margin: 0 0 24px;
  color: #43a3a7;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  order: 2;
  font-feature-settings: "halt" span;
  font-feature-settings-padding: 0;
  font-feature-settings-background: #fff100;
  font-feature-settings-line-height: 1.8;
}
.worry__catch__text {
  display: contents;
}
.worry__image {
  width: 285px;
  margin: 0 auto 26px;
  order: 3;
}
.worry__image img {
  display: block;
  width: 100%;
}
.worry__lead {
  width: 300px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
  text-align: justify;
  order: 4;
}
.worry__lead strong {
  color: #e94820;
  font-weight: 900;
}
.worry__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.worry__note {
  margin: 12px 0 0;
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

.worry-card img {
  display: block;
  width: 100%;
  border-radius: 4px;
}

.worry-card {
  padding: 25px 18px;
  text-align: center;
  background: #f8d96c;
  border-radius: 5px;
}
.worry-card__num {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.worry-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}
.worry-card__title span {
  padding: 0;
  background: #fff100;
  line-height: 1.8;
}
.worry-card__image {
  width: 274px;
  margin: 22px auto 18px;
}
.worry-card__image img {
  display: block;
  width: 100%;
}
.worry-card__text {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
  text-align: justify;
}

.worry__q {
  font-family: "Arial Rounded MT Bold", "Arial", "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.worry-card__title sup {
  position: relative;
  top: -1.65em;
  margin-left: -10px;
  font-size: 0.5em;
  line-height: 1;
}

.worry__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 50px;
}

.worry-card-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.worry__note--sp {
  display: block;
  width: 300px;
  margin: 0 0 0 auto;
  font-size: 9px;
  line-height: 1.4;
  text-align: right;
}

.worry__note--pc {
  display: none;
}

/* ==============================
  PC
============================== */
@media screen and (min-width: 900px) {
  .u-sp {
    display: none;
  }

  .intro {
    padding: 30px 0 50px;
  }
  .intro__inner {
    display: grid;
    grid-template-columns: 520px 390px;
    grid-template-areas: "title image" "catch image" "lead image";
    justify-content: center;
    align-items: center;
    column-gap: 0;
    width: 910px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    text-align: left;
    row-gap: 0;
    align-content: center;
  }
  .intro__title {
    grid-area: title;
    margin: 0;
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .intro__catch {
    grid-area: catch;
    margin: 0;
    font-size: 25px;
    line-height: 1.5;
  }
  .intro__catch span {
    display: inline;
    padding: 1px 4px;
    background: #fff200;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .intro__lead {
    grid-area: lead;
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
  }
  .intro__image {
    grid-area: image;
    width: 390px;
    margin: 0;
  }
  .intro__image img {
    display: block;
    width: 100%;
  }

  .worry {
    padding: 100px 0 100px;
  }
  .worry__title {
    margin-bottom: 58px;
    font-size: 36px;
    line-height: 1.4;
    text-align: left;
  }
  .worry__title span {
    display: inline;
    margin-right: 8px;
    font-size: 36px;
  }
  .worry__body {
    display: grid;
    grid-template-columns: 526px 384px;
    grid-template-areas: "subtitle image" "catch image" "lead image";
    align-items: start;
    column-gap: 0;
    text-align: left;
  }
  .worry__subtitle {
    margin: 0 0 16px;
    font-size: 25px;
    line-height: 1.35;
    grid-area: subtitle;
  }
  .worry__catch {
    margin: 0 0 16px;
    font-size: 25px;
    line-height: 1.35;
    grid-area: catch;
  }
  .worry__catch span {
    display: inline;
    padding: 0;
    background: #fff100;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .worry__lead {
    width: 405px;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    grid-area: lead;
  }
  .worry__image {
    width: 384px;
    margin: -16px 0 0;
    grid-area: image;
  }
  .worry__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 46px;
  }
  .worry__note {
    font-size: 10px;
  }
  .worry__text {
    display: contents;
    padding-top: 6px;
  }

  .worry-card {
    min-height: 230px;
    padding: 15px 7px;
  }
  .worry-card__num {
    margin-bottom: 4px;
    font-size: 20px;
  }
  .worry-card__title {
    font-size: 20px;
    line-height: 1.35;
    font-feature-settings: "halt";
  }
  .worry-card__image {
    max-width: 234px;
    margin: 16px auto 14px;
  }
  .worry-card__text {
    font-size: 13px;
    line-height: 1.65;
    width: 234px;
    margin-inline: auto;
    text-align: justify;
  }

  .worry-card__title sup {
    position: relative;
    top: -1.65em;
    left: 20px;
    font-size: 0.5em;
    line-height: 1;
  }

  .worry-card-group {
    display: contents;
  }

  .worry__note--sp {
    display: none;
  }

  .worry__note--pc {
    display: block;
    grid-column: 1 / -1;
    margin: 0;
    font-size: 10px;
    line-height: 1.5;
    text-align: right;
  }
}
.u-pc {
  display: none;
}

/* ==============================
  service
============================== */
.service {
  padding: 50px 0 0;
  background: #fff;
}
.service__title {
  margin: 0 0 42px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}
.service__title span {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}
.service__steps {
  display: grid;
  gap: 42px;
}
.service__message {
  position: relative;
  margin: 54px 0 0;
  padding: 24px 2px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background: #4099a7;
  border-radius: 10px;
  font-feature-settings: "halt";
}
.service__message::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  border-right: 14px solid transparent;
  border-bottom: 18px solid #4099a7;
  border-left: 14px solid transparent;
  transform: translateX(-50%);
}

.service-step {
  text-align: center;
}
.service-step__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}
.service-step__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 70px;
  height: 70px;
  margin: 0;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 0.9;
  background: #46a7b0;
  border-radius: 50%;
}
.service-step__num span {
  display: block;
  margin-bottom: -2px;
  font-size: 14px;
  line-height: 1;
}
.service-step__title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
}
.service-step__text {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.service-step__image {
  width: 275px;
  margin: 0 auto;
}
.service-step__image img {
  display: block;
  width: 100%;
}

.service-step--03 .service-step__head {
  transform: translateX(-20px);
}

/* ==============================
  cta
============================== */
.cta {
  padding: 50px 0 0;
  background: #fff;
}

.cta-box {
  position: relative;
  overflow: visible;
  width: 315px;
  height: 204px;
  margin: 0 auto;
  padding: 34px 22px 0;
  background: #f0f0f0;
  border-radius: 5px;
  color: #231815;
}
.cta-box__text {
  position: relative;
  z-index: 2;
}
.cta-box__lead {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}
.cta-box__catch {
  width: 165px;
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}
.cta-box__button {
  position: absolute;
  left: 50%;
  bottom: -58px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 48px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: #ea5614;
  border-radius: 7px;
}
.cta-box__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.cta-box__image {
  position: absolute;
  right: 16px;
  bottom: 40px;
  width: 130px;
  z-index: 1;
}
.cta-box__image img {
  display: block;
  width: 100%;
}

/* ==============================
  reason
============================== */
.reason {
  padding: 100px 0 90px;
  background: #fff;
}
.reason__title {
  margin: 0 0 24px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}
.reason__title span {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}
.reason__lead {
  width: 345px;
  max-width: 100%;
  margin: 0 auto 42px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
}
.reason__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 14px;
}

.reason-item {
  text-align: center;
}
.reason-item__num {
  position: relative;
  z-index: 2;
  margin: 0 0 -10px;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.reason-item__image {
  position: relative;
  z-index: 1;
  width: 148px;
  margin: 0 auto -20px;
}
.reason-item__image img {
  display: block;
  width: 100%;
}
.reason-item__title {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}
.reason-item__text {
  min-height: 46px;
  margin: 0;
  padding: 6px 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  border: 1px solid #999;
}

@media screen and (min-width: 900px) {
  .u-pc {
    display: inline;
  }

  .service {
    padding: 50px 0;
  }
  .service__title {
    margin-bottom: 42px;
    font-size: 36px;
  }
  .service__title span {
    font-size: 25px;
  }
  .service__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
  }
  .service__message {
    width: 558px;
    margin: 64px auto 0;
    padding: 18px 24px;
    font-size: 22px;
    line-height: 1.6;
  }

  .service-step__head {
    justify-content: flex-start;
    gap: 12px;
    min-height: 68px;
    margin-bottom: 10px;
  }
  .service-step__num {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }
  .service-step__num span {
    font-size: 10px;
  }
  .service-step__title {
    font-size: 23px;
  }
  .service-step__text {
    min-height: 38px;
    margin-bottom: 18px;
    font-size: 15px;
    text-align: center;
  }

  .service-step--03 .service-step__head {
    transform: translateX(35px);
  }

  .cta {
    padding: 30px 0;
  }
  .cta .section-inner {
    width: 763px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
  }

  .cta-box {
    width: 763px;
    padding: 45px 30px;
  }
  .cta-box__lead {
    font-size: 15px;
  }
  .cta-box__catch {
    width: 483px;
    margin-bottom: 16px;
    font-size: 23px;
  }
  .cta-box__button {
    width: 465px;
    height: 44px;
    font-size: 20px;
    left: 33%;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.12s ease;
  }
  .cta-box__button:hover {
    opacity: 0.85;
    transform: translateX(-50%) translateY(-2px);
  }
  .cta-box__image {
    right: 38px;
    width: 183px;
    bottom: 0;
  }

  .reason {
    padding: 100px 0;
  }
  .reason__title {
    margin-bottom: 22px;
    font-size: 36px;
  }
  .reason__title span {
    font-size: 25px;
  }
  .reason__lead {
    width: 760px;
    margin-bottom: 50px;
    font-size: 15px;
    line-height: 1.3;
    text-align: left;
  }
  .reason__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .reason-item__num {
    font-size: 28px;
  }
  .reason-item__image {
    width: 190px;
    margin: -15px auto -20px;
  }
  .reason-item__title {
    font-size: 28px;
  }
  .reason-item__text {
    min-height: 40px;
    font-size: 16px;
  }
}
/* ==============================
  guarantee
============================== */
.guarantee {
  padding: 0 15px;
  color: #fff;
  background: #fff;
}
.guarantee .section-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 60px 15px 20px;
  background: #55bfc0;
}
.guarantee__head {
  text-align: center;
}
.guarantee__sub {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.guarantee__title {
  margin: 0 0 28px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  font-feature-settings: "halt";
}
.guarantee__logo-box {
  width: 228px;
  margin: 0 auto 28px;
  padding: 22px;
  color: #fff;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.guarantee__logo-box p {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.18em;
}
.guarantee__logo-box p:last-child {
  letter-spacing: 0;
}
.guarantee__lead {
  margin: 0 auto 38px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
}

@media screen and (min-width: 900px) {
  .guarantee {
    padding: 86px 0 100px;
    background: #55bfc0;
  }
  .guarantee .section-inner {
    width: 910px;
    max-width: calc(100% - 80px);
    padding: 0;
    background: transparent;
  }
  .guarantee__sub {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .guarantee__title {
    margin-bottom: 34px;
    font-size: 27px;
  }
  .guarantee__logo-box {
    width: 220px;
    margin-bottom: 38px;
    padding: 18px 26px 20px;
  }
  .guarantee__logo-box p {
    font-size: 24px;
    line-height: 1.55;
  }
  .guarantee__lead {
    width: 430px;
    margin-bottom: 58px;
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
  }
}
.guarantee-panel {
  padding: 42px 18px 20px;
  color: #231815;
  background: #fff;
}
.guarantee-panel__title {
  position: relative;
  margin: 0 0 40px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.guarantee-panel__title::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 8px auto 0;
  background: #3fa1a3;
}
.guarantee-panel__title--target {
  margin-top: 42px;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1;
  background: #55bfc0;
  border-radius: 999px;
  padding: 10px 16px;
}
.guarantee-panel__title--target::after {
  display: none;
}
.guarantee-panel__points {
  display: grid;
  gap: 30px;
}
.guarantee-panel__point img, .guarantee-panel__target img {
  display: block;
  width: 100%;
}
.guarantee-panel__target {
  margin-top: 18px;
}
.guarantee-panel__target-text {
  margin: 24px 0 30px;
  padding: 16px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  border: 1px solid #999;
}
.guarantee-panel__terms-image {
  margin-top: 34px;
}
.guarantee-panel__terms-image img {
  display: block;
  width: 100%;
}
.guarantee-panel__point-note {
  margin: 14px 0 0;
  color: #e94820;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.4;
  text-align: right;
}

@media screen and (min-width: 900px) {
  .guarantee-panel {
    width: 910px;
    margin: 0 auto;
    padding: 67px 74px 67px;
  }
  .guarantee-panel__points {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: start;
  }
  .guarantee-panel__title {
    margin-bottom: 48px;
    font-size: 25px;
  }
  .guarantee-panel__title--target {
    margin-top: 48px;
    margin-bottom: 48px;
    color: #231815;
    background: transparent;
    padding: 0;
  }
  .guarantee-panel__title--target::after {
    display: block;
  }
  .guarantee-panel__target {
    width: 633px;
    margin: 0 auto;
    transform: translateX(65px);
  }
  .guarantee-panel__target-text {
    margin: 32px auto 34px;
    padding: 18px 25px;
    font-size: 19px;
    text-align: justify;
    width: 526px;
    font-feature-settings: "halt";
  }
  .guarantee-panel__terms-image {
    margin-top: 34px;
  }
  .guarantee-panel__point-note {
    margin-top: 12px;
    font-size: 10px;
    white-space: nowrap;
  }
}
.guarantee__cta {
  display: none;
}

@media screen and (min-width: 900px) {
  .guarantee__cta {
    display: block;
    margin: 100px auto 0;
  }
}
/* ==============================
  faq
============================== */
.faq {
  padding: 100px 0 130px;
  background: #fff;
}
.faq__head {
  margin-bottom: 15px;
  text-align: center;
}
.faq__sub {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #231815;
}
.faq__title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  color: #231815;
}
.faq__list {
  display: grid;
  gap: 15px;
}
.faq__cta {
  margin-top: 50px;
}

.faq-item {
  overflow: hidden;
  border-radius: 7px;
}
.faq-item__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  min-height: 56px;
  padding: 15px 9px;
  color: #231815;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  background: #87cdd2;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}
.faq-item.is-open .faq-item__question {
  border-radius: 7px 7px 0 0;
}
.faq-item__question::after {
  display: none;
}
.faq-item__q {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-family: "Century Gothic", "Montserrat", Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
.faq-item__text {
  display: block;
  padding-right: 4px;
}
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0;
  color: #231815;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  background: #fff;
  border: 0;
  border-radius: 0 0 7px 7px;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
}
.faq-item__answer-inner {
  min-height: 0;
  padding: 0 18px;
}
.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
  border: 1px solid #87cdd2;
  border-top: 0;
  opacity: 1;
}
.faq-item.is-open .faq-item__answer-inner {
  padding: 16px 18px 18px;
}

@media screen and (min-width: 900px) {
  .faq {
    padding: 110px 0 100px;
  }
  .faq__head {
    margin-bottom: 50px;
  }
  .faq__sub {
    font-size: 25px;
  }
  .faq__title {
    font-size: 36px;
  }
  .faq__list {
    width: 910px;
    margin: 0 auto;
    gap: 18px;
  }
  .faq__cta {
    margin: 100px auto 0;
  }

  .faq-item {
    border-radius: 0;
  }
  .faq-item__question {
    min-height: 42px;
    padding: 15px 40px;
    font-size: 22px;
    border-radius: 0;
  }
  .faq-item.is-open .faq-item__question {
    border-radius: 0;
  }
  .faq-item__question::after {
    content: "";
    display: block;
    position: absolute;
    right: 18px;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 7px 0;
    border-color: #231815 transparent transparent;
    transform: translateY(-50%);
  }
  .faq-item.is-open .faq-item__question::after {
    border-width: 0 7px 10px;
    border-color: transparent transparent #231815;
  }
  .faq-item__q {
    width: 46px;
    height: 46px;
    font-size: 46px;
  }
  .faq-item__answer {
    font-size: 20px;
    border-radius: 0;
  }
  .faq-item__answer-inner {
    padding: 0 32px;
  }
  .faq-item.is-open .faq-item__answer-inner {
    padding: 26px 32px;
  }
}
.guarantee-panel__terms {
  display: none;
  box-sizing: border-box;
  color: #231815;
  text-align: left;
  font-weight: 700;
}

.guarantee-panel__terms-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.guarantee-panel__terms-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guarantee-panel__terms-list li {
  position: relative;
  line-height: 1.45;
}

/* SP */
.guarantee-panel__terms--sp {
  display: block;
  margin: 0 auto;
  background: #fff;
  font-size: 10px;
}

.guarantee-panel__terms--sp .guarantee-panel__terms-title {
  font-size: 12px;
  padding-bottom: 10px;
}

.guarantee-panel__terms--sp .guarantee-panel__terms-list li {
  margin-bottom: 4px;
  padding-left: 1.15em;
  font-feature-settings: "halt";
}

.guarantee-panel__terms-list--condition li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.guarantee-panel__terms-list--condition li.is-note::before,
.guarantee-panel__terms-list--note li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.guarantee-panel__terms-title--note {
  margin-top: 16px;
  padding: 20px 12px 0;
  background: #d9d9d9;
}

.guarantee-panel__terms-list--note {
  padding: 20px 10px 18px;
  background: #d9d9d9;
}

/* PC */
@media screen and (min-width: 900px) {
  .guarantee-panel__terms--sp {
    display: none;
  }

  .guarantee-panel__terms--pc {
    display: block;
    width: 705px;
    margin: 44px auto 0;
    background: #fff;
    font-size: 12px;
    line-height: 1.45;
  }

  .guarantee-panel__terms--pc .guarantee-panel__terms-title {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .guarantee-panel__terms--pc .guarantee-panel__terms-list li {
    padding-left: 1em;
    font-feature-settings: "halt";
  }

  .guarantee-panel__terms--pc .guarantee-panel__terms-list li::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
  }
}
body footer {
  background: #0081EF;
}

body footer > .inner {
  padding: 80px 0;
}

body footer > .inner * {
  color: #fff;
}

body footer > .inner .flex {
  display: flex;
  justify-content: center;
}

body footer > .inner .flex .flex-item {
  position: relative;
  padding-top: 10.5px;
  padding-left: 34px;
}

body footer > .inner .flex .flex-item .site_ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4583333333;
  margin-bottom: 15px;
  display: block;
}

body footer > .inner .flex .flex-item .site_ttl + p {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
}

body footer > .inner .flex .flex-item p {
  letter-spacing: 0.1em;
}

body footer > .inner .flex .flex-item .ttl {
  font-weight: bold;
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 8.8px;
}

body footer > .inner .flex .flex-item .ttl span {
  font-weight: bold;
  font-size: 13px;
}

body footer > .inner .flex .flex-item a {
  letter-spacing: 0.1em;
  position: relative;
  text-decoration: none;
}

body footer > .inner .flex .flex-item a.telephone {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0;
  padding-left: 21px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

body footer > .inner .flex .flex-item a.telephone:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(https://www.sayama-f.co.jp/file/special/selling/img/icon__phone-footer.svg) no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
  left: 0;
  top: unset;
  transform: unset;
  bottom: 7.2px;
}

body footer > .inner .flex .flex-item address {
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.3125;
  margin-bottom: 3.5px;
}

body footer > .inner .flex .flex-item:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: #FFFF8B;
  width: 1px;
  height: 130px;
  right: 0;
}

body footer > .inner .flex .flex-item:not(:first-child) {
  width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body footer > .inner .flex .flex-item:first-child {
  width: 290px;
  padding: 0;
}

body footer .footer-bottom {
  background: #fff;
  height: 80px;
}

body footer .footer-bottom > .flex {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

body footer .footer-bottom > .flex .footer___sns-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

body footer .footer-bottom > .flex .copy {
  text-align: right;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #101010;
}
body footer .footer-bottom > .flex .copy a {
  text-decoration: none;
  color: #101010;
}

@media screen and (max-width: 950px) {
  body footer > .inner {
    padding: 60px 27.5px;
  }

  body footer > .inner .flex {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  body footer > .inner .flex .flex-item {
    padding-top: 0;
    padding-bottom: 26.3px;
    padding-left: 0;
  }

  body footer > .inner .flex .flex-item .site_ttl {
    font-size: 21.5px;
    line-height: 1.4418604651;
  }

  body footer > .inner .flex .flex-item .site_ttl + p {
    font-size: 12px;
    line-height: 1.5208333333;
  }

  body footer > .inner .flex .flex-item .ttl {
    font-size: 13px;
    line-height: 1.4230769231;
    margin-bottom: 5px;
  }

  body footer > .inner .flex .flex-item .ttl span {
    font-size: 11px;
  }

  body footer > .inner .flex .flex-item a {
    letter-spacing: 0.1em;
  }

  body footer > .inner .flex .flex-item a.telephone {
    font-size: 21.5px;
    padding-left: 21px;
  }

  body footer > .inner .flex .flex-item a.telephone:before {
    bottom: 4px;
  }

  body footer > .inner .flex .flex-item address {
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1.3125;
    margin-bottom: 3.5px;
  }

  body footer > .inner .flex .flex-item:before {
    width: 100%;
    height: 1px;
    top: unset;
    bottom: 0;
    transform: unset;
  }

  body footer > .inner .flex .flex-item:not(:first-child) {
    width: 100%;
    padding-top: 25px;
  }

  body footer > .inner .flex .flex-item:first-child {
    width: 100%;
    padding: 0 0 30px;
  }

  body footer > .inner .flex .flex-item:last-child {
    padding-bottom: 0;
  }

  body footer > .inner .flex .flex-item:last-child:before {
    display: none;
  }

  body footer .footer-bottom {
    height: auto;
    padding: 45px 0 10px;
  }

  body footer .footer-bottom > .flex {
    height: 100%;
    align-items: center;
    gap: 55px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  body footer .footer-bottom > .flex .footer___sns-box {
    gap: 30px;
  }

  body footer .footer-bottom > .flex .copy {
    text-align: center;
    font-size: 10px;
    line-height: 2;
  }
}
/* ==============================
  SEO / Accessibility
============================== */
.visually-hidden {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 1px !important;
  max-height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==============================
  Breadcrumb
============================== */
.breadcrumb-wrap {
  position: relative;
  z-index: 2;
  color: #666;
  background: transparent;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  list-style: none;
  font-size: 12px;
  line-height: 1.6;
  box-sizing: border-box;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
  color: #999;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ==============================
  After guarantee breadcrumb overlay
============================== */
body.page-after-guarantee .lp-main {
  position: relative;
}

body.page-after-guarantee .breadcrumb-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: auto;
  overflow: visible;
  background: transparent;
  pointer-events: auto;
}

body.page-after-guarantee .breadcrumb {
  position: relative;
  z-index: 51;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  transform: none;
  background: transparent;
  pointer-events: auto;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
}

body.page-after-guarantee .breadcrumb a {
  position: relative;
  z-index: 52;
  pointer-events: auto;
}

body.page-after-guarantee .mv {
  margin-top: 0;
}

/* ==============================
  After guarantee breadcrumb position PC
============================== */
@media screen and (min-width: 900px) {
  body.page-after-guarantee .breadcrumb {
    width: calc(100% - 80px);
    max-width: 1280px;
    justify-content: flex-end;
    padding: 24px 0 0 260px;
    margin: 0 auto;
  }
}

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