@charset "UTF-8";
/* マップ型変数breakpointsを定義 */
/* ====================================================
// common - 共通
==================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.8rem;
  line-height: 1.7;
  color: #333;
  letter-spacing: 0.04em;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4.25vw;
    background: none;
  }
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.wrapper {
  width: 72rem;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
}

.shadow {
  box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.1254901961);
}

.container {
  width: 72rem;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
}

.inner {
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 3vw;
  }
}

.yellow {
  color: #f4d50d;
}

.pink {
  color: #ff9600;
}

.green {
  color: #5cbf00;
}

.red {
  color: #c1272d;
}

.bold {
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 70%, #f4d50d 0%);
  display: inline;
  padding: 0;
}

.marker-bk {
  background: linear-gradient(transparent 90%, #333 0%);
  display: inline;
  padding: 0.6rem 0.4rem;
}

.section {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 12vw 0;
  }
}

.section__title {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 8rem;
  color: #4d4d4d;
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 8vw;
    margin-bottom: 8vw;
  }
}

.center {
  text-align: center;
}

/* ====================================================
// cta
==================================================== */
.cta_box {
  position: relative;
}

.cta__btn {
  display: block;
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7rem;
  filter: drop-shadow(1rem 1rem 1rem rgba(3, 40, 14, 0.2392156863));
}
@media screen and (max-width: 767px) {
  .cta__btn {
    bottom: 9vw;
  }
}

.cta_box3 .cta__btn {
  bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .cta_box3 .cta__btn {
    bottom: 21vw;
  }
}

/* ====================================================
// qa - よくある質問
==================================================== */
.qa {
  background-color: #ffeef4;
}

.qa__title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .qa__title {
    margin-bottom: 6vw;
  }
}

.qa__item:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .qa__item:not(:last-child) {
    margin-bottom: 4vw;
  }
}

.qa__question {
  cursor: pointer;
  padding: 3rem 5rem 2.8rem 8rem;
  position: relative;
  font-weight: bold;
  background-color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .qa__question {
    padding: 6vw 10vw 5.7vw 14vw;
    font-size: 4.25vw;
  }
}

.qa__question::before {
  content: "";
  display: inline-block;
  background-image: url(../img/question.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 3.6rem;
  left: 3rem;
}
@media screen and (max-width: 767px) {
  .qa__question::before {
    width: 5vw;
    height: 5vw;
    left: 7vw;
    top: 7vw;
  }
}

.qa__question::after {
  content: "";
  display: inline-block;
  background-image: url(../img/plus.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .qa__question::after {
    width: 4vw;
    height: 4vw;
    right: 3vw;
  }
}

.qa__question.is-active::after {
  background-image: url(../img/minus.svg);
}

.qa__question,
.qa__wrap {
  display: flex;
  gap: 2%;
}

.qa__question .text,
.qa__answer .text {
  flex: 1 0 0;
}

.qa__answer {
  padding: 2rem;
  display: none;
  font-size: 2.4rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}
@media screen and (max-width: 767px) {
  .qa__answer {
    padding: 4vw;
    font-size: 4vw;
  }
}

/* ====================================================
// float - フロートボタン
==================================================== */
.float {
  z-index: 99;
  display: none;
}

.float__btn {
  width: 100%; /* 必要に応じて max-width も設定するとより安全 */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .float__btn {
    filter: drop-shadow(0 0 1vw rgba(0, 0, 0, 0.1882352941));
  }
}

.float__btn a {
  display: block;
  width: 100%;
}

/* ====================================================
// footer - フッター
==================================================== */
.footer {
  background-color: #c85b6b;
  padding: 4rem 0;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.1rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 3.5vw;
    padding: 6vw 0;
  }
}

.footer__link {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__link {
    margin-bottom: 2vw;
  }
}/*# sourceMappingURL=style.css.map */