@charset "UTF-8";

.temple * {
  box-sizing: border-box;
}

/* common */
/* font */
:root {
  --font-default: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
}

/* color */
:root {
  --black: #333;
  --white: #fff;
  --red: #a31c1c;
  --brown: #f8f4eb;
  --cream: #fcfaf5;
  --gray: #f5f5f5;
  --pink: #b76363;
  --green: #97b763;
  --green-2: rgb(243, 248, 235, 0.5);
  --yellow: #b79a63;
  --yellow-2: #f6f4e9;
  --bg-gray: rgb(245, 245, 245, 0.5);
  --bg-purple: #fbf9fc;
  --bg-green: rgb(247, 250, 243, 0.5);
  --bg-yellow: #faf9f3;
  --txt-purple: #ab8dce;
  --txt-gray: rgb(0, 0, 0, 0.2);
  --color-purple: #ab8dce;
  --purple: #f7f1fa;
  --border-gray: #767676;
  --border-purple: #707070;
  --border-yellow: #cec28d;
  --btn-gray: rgb(0, 0, 0, 0.04);
  --link-gray: #f4f4f4;
  --btn-yellow: #cec28d;
}

img {
  max-width: 100%;
}

a {
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

.temple {
  font-family: var(--font-default);
  font-weight: 500;
  color: var(--black);
}
.container {
  max-width: 11.5rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 0.1rem;
  position: relative;
}

.dokyo .container {
  padding: 0.55rem 0.6rem;
  background: url(../img/bg-dokyo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.kaimei .container {
  padding: 1.87rem 0.6rem 1.12rem;
  background: url(../img/bg-kaimei.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.document .container {
  padding: 0.55rem 0.6rem;
  background: url(../img/bg.svg);
  background-color: var(--purple);
  background-repeat: no-repeat;
  background-position: center;
}

.question .container {
  padding: 0.55rem 0.6rem;
  background: url(../img/bg-question.svg);
  background-color: var(--green-2);
  background-repeat: no-repeat;
}

.question .container:before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../img/icon-question.svg);
  width: 2.06rem;
  background-size: contain;
  aspect-ratio: 205/108;
  right: 1.25rem;
  top: -0.33rem;
}

.document .container:before {
  position: absolute;
  content: "";
  background-image: url(../img/icon-document-1.png);
  width: 1.7rem;
  aspect-ratio: 15/13;
  right: 1.7rem;
  top: -1rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.sogi .container {
  padding: 0.55rem 0.6rem;
  background: url(../img/bg-sogi.svg);
  background-color: var(--yellow-2);
}

@media (max-width: 640px) {
  .container {
    max-width: initial;
    width: initial;
    background: initial;
  }
  .dokyo .container {
    margin: 0 0.2rem;
    padding: 0 0;
    background: initial;
  }

  .kaimei .container {
    background: initial;
    padding: 0.85rem 0.2rem 0.2rem;
  }

  .question .container:before {
    background: url(../img/icon-question-2.svg);
    width: 0.49rem;
    aspect-ratio: 49/69;
    background-size: contain;
    right: 0;
    left: 0.7rem;
    top: -0.2rem;
  }

  .document .container:before {
    width: 0.79rem;
    background-size: contain;
    right: 0.6rem;
    top: -0.3rem;
  }
}

.section_heading {
  max-width: 4.2rem;
  width: 100%;
  position: relative;
}

.dokyo .section_heading:before {
  position: absolute;
  content: "";
  background: url(../img/icon-dokyo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.36rem;
  aspect-ratio: 17 / 9;
  top: 0.6rem;
  right: -1.9rem;
}
@media (max-width: 640px) {
  .dokyo .section_heading:before {
    width: 0.9rem;
    top: 1.4rem;
    right: 0px;
    left: -0.1rem;
  }
}

.wrap__heading {
  display: flex;
  justify-content: center;
}

.price {
  font-family: var(--font-serif);
  color: var(--red);
  font-weight: 600;
  font-weight: bold;
}

.price--type2 {
  color: var(--black);
}
/* mv */
.mv {
  margin-bottom: 2rem;
}

.mv__circle > h1 {
  margin-top: -0.14rem;
  position: relative;
}

.mv__circle > h1:before {
  position: absolute;
  content: "";
  width: 4.18rem;
  height: 0.02rem;
  background: #fff;
  left: -4.45rem;
  bottom: 0.9rem;
}

.mv__circle > h1:after {
  position: absolute;
  content: "";
  width: 4.18rem;
  height: 0.02rem;
  background: #fff;
  right: -4.45rem;
  bottom: 0.9rem;
}

.mv__circleLarge > p {
  font-size: 0.16rem;
  line-height: 2;
  text-align: center;
  padding-top: 0.3rem;
  position: relative;
}

.mv__circleLarge > p::before {
  position: absolute;
  content: "";
  width: 0.08rem;
  height: 0.08rem;
  background: var(--black);
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border-radius: 50%;
}

.mv__circle {
  width: 4.56rem;
  height: 2.28rem;
  background: #fff;
  border-radius: 50% / 100% 100% 0 0;
  margin: 0 auto;
  margin-top: -2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.mv__circle > div {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
}

.mv__img {
  position: relative;
  z-index: -1;
}

.mv .mv__wrap:nth-child(2) {
  padding-bottom: 0.55rem;
}

.mv .mv__wrap:nth-child(2) {
  position: relative;
  z-index: 3;
  background-image: url(../img/bg-mv.svg);
  background-color: var(--bg-gray);
}

.mv__circleLarge {
  background: #fff;
  width: 7.64rem;
  height: 3.82rem;
  margin: 0 auto;
  border-radius: 0 0 50% 50% /0 0 100% 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.mv__circleLarge::before {
  position: absolute;
  content: "";
  background: url(../img/icon-mv-2.svg);
  background-size: contain;
  width: 0.84rem;
  aspect-ratio: 42/31;
  right: -0.2rem;
  top: 1rem;
}
.mv__circleLarge:after {
  position: absolute;
  content: "";
  background: url(../img/icon-mv-1.svg);
  background-size: contain;
  width: 1.02rem;
  aspect-ratio: 102 / 65;
  left: -0.6rem;
  top: 2.8rem;
}
.mv .mv__wrap:nth-child(1) {
  position: relative;
}

.mv__fee {
  position: absolute;
  width: 4.46rem;
  height: 1.56rem;
  right: 0;
  background: rgb(0, 0, 0, 0.6);
  bottom: 90px;
  padding: 0.2rem 0.4rem;
}

.mv__fee > p {
  color: var(--white);
  font-family: var(--font-serif);
}

.mv__fee > p:nth-child(1) {
  font-size: 0.26rem;
  font-weight: bold;
}

.mv__fee > p:nth-child(2) {
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1;
  padding-left: 0.4rem;
  position: relative;
}

.mv__fee > p:nth-child(2) span {
  font-size: 0.5rem;
  position: relative;
}

.mv__fee > p:nth-child(2):before {
  position: absolute;
  content: "総 額";
  font-family: var(--font-default);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 0.16rem;
  white-space: nowrap;
  font-weight: 300;
  left: 0;
  top: 57%;
  transform: translateY(-50%);
  border: 1px solid var(--white);
  padding: 0.05rem;
  border-radius: 0.06rem;
}

.mv__fee > p:nth-child(2) span:before {
  position: absolute;
  content: "(税抜)";
  font-size: 0.13rem;
  left: 0.07rem;
  top: 0;
  font-family: normal;
}

@media (max-width: 640px) {
  .mv {
    margin-bottom: 1.3rem;
  }
  .mv__circleLarge {
    width: initial;
    height: initial;
    background: none;
    border-radius: initial;
  }

  .mv__fee > p:nth-child(2):before {
    top: 50%;
  }

  .mv .mv__wrap:nth-child(2) {
    background-image: initial;
    background-color: initial;
    margin-top: 1.09rem;
  }

  .mv__circleLarge > p br {
    display: none;
  }

  .mv__circleLarge > p {
    padding: 0 0.2rem;
    font-size: 0.15rem;
    text-align: left;
  }

  .mv__circle > h1 {
    width: 2.44rem;
  }

  .mv__circle {
    width: 2.76rem;
    height: 1.36rem;
    margin-top: -0.4rem;
  }

  .mv__circle > h1:before,
  .mv__circle > h1:after {
    content: none;
  }

  .mv__fee {
    width: 100%;
    height: 1.3rem;
    padding: 0.2rem 0.3rem;
    top: 0.3rem;
    bottom: 0;
  }

  .mv__fee > p:nth-child(1) {
    font-size: 0.18rem;
  }

  .mv__fee > p:nth-child(2) {
    font-size: 0.56rem;
  }

  .mv__fee > p:nth-child(2) span {
    font-size: 0.36rem;
  }

  .mv__fee > p:nth-child(2) span:before {
    left: 0.01rem;
    top: -0.1rem;
    font-size: 0.12rem;
  }

  .mv__circleLarge:after {
    content: none;
  }

  .mv__circleLarge::before {
    width: 0.54rem;
    right: 0.25rem;
    top: -0.5rem;
  }

  .mv__circleLarge > p::before {
    width: 0.06rem;
    height: 0.06rem;
    top: -0.3rem;
  }
}

/* dokyo */
.dokyo {
  position: relative;
  background-color: var(--cream);
  padding-bottom: 0.53rem;
  z-index: 2;
  margin-bottom: 1.7rem;
}

.dokyo__attentionSp {
  display: none;
}

.dokyo .wrap__heading .section_heading {
  margin-top: -1.7rem;
}

.dokyo__wrap {
  background: var(--white);
  border-radius: 0.1rem;
  padding: 0.23rem 0.24rem;
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -0.4rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) h3 {
  font-size: 0.24rem;
  font-family: var(--font-serif);
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(2) {
  display: flex;
  align-items: flex-end;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
  > div:nth-child(2)
  > p:nth-child(1) {
  font-size: 0.56rem;
  padding-left: 0.2rem;
  line-height: 1.3;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(2) p {
  position: relative;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
  > div:nth-child(2)
  > p:nth-child(1)
  span {
  font-size: 0.36rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
  > div:nth-child(2)
  > p:nth-child(1):before {
  position: absolute;
  content: "総 額";
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 0.16rem;
  font-family: var(--font-default);
  font-weight: 500;
  color: var(--black);
  left: -0.06rem;
  top: 54%;
  transform: translateY(-50%);
  white-space: nowrap;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
  > div:nth-child(2)
  > p:nth-child(2) {
  font-size: 0.24rem;
  position: relative;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
  > div:nth-child(2)
  > p:nth-child(2):before {
  position: absolute;
  content: "※2回目以降";
  font-size: 0.15rem;
  font-weight: 400;
  font-family: var(--font-default);
  left: -0.9rem;
  bottom: 0.04rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
  > div:nth-child(2)
  > p:nth-child(2)
  span {
  font-size: 0.2rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(3) {
  display: flex;
  background: var(--brown);
  padding: 0.03rem 0.15rem;
  border-radius: 0.06rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(3) p {
  font-size: 0.18rem;
  font-weight: bold;
}
:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
  > div:nth-child(3)
  > p:nth-child(1) {
  padding-right: 0.1rem;
  margin-right: 0.1rem;
  position: relative;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(3) .price {
  font-size: 0.26rem;
  display: inline-block;
  padding-left: 0.05rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
  > div:nth-child(3)
  > p:nth-child(1):before {
  position: absolute;
  content: "";
  background: var(--black);
  width: 0.01rem;
  height: 0.23rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(2) {
  display: flex;
  justify-content: space-between;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
  > div:nth-child(2)
  > p:nth-child(2) {
  position: relative;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul {
  line-height: 1.4;
  margin-bottom: 0.2rem;
  width: 4.79rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul li > p:nth-child(1) {
  font-size: 0.15rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul li .price {
  font-size: 0.27rem;
  position: relative;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul li .price:before {
  position: absolute;
  content: "";
  background: url(../img/btn-dokyo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.2rem;
  aspect-ratio: 1 / 1;
  left: -0.3rem;
  top: 50%;
  transform: translateY(-50%);
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul li .price span {
  font-size: 0.2rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > div {
  line-height: 1.7;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > div p {
  font-size: 0.15rem;
}

:where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > div p:nth-child(2) {
  padding-left: 1em;
}

.dokyo__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.18rem;
}

.dokyo__items li {
  width: 49%;
  background: var(--white);
  border-radius: 0.1rem;
  padding: 0.06rem 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

:where(.dokyo__items li) > p:nth-child(1) {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 0.24rem;
  padding: 0 0.1rem;
  text-align: center;
  width: 1.77rem;
  border-left: 1px solid var(--black);
  border-right: 1px solid var(--black);
}

:where(.dokyo__items li) > p:nth-child(2) {
  font-size: 0.5rem;
}

:where(.dokyo__items li) > p:nth-child(2) > span {
  font-size: 0.36rem;
}

.dokyo__txt_pc p {
  font-size: 0.13rem;
  font-weight: 400;
}

.dokyo__txt_sp {
  display: none;
}

@media (max-width: 640px) {
  .dokyo {
    background: url(../img/bg-dokyo-sp.svg);
    margin-bottom: 1.6rem;
    padding-bottom: 0.2rem;
  }

  .dokyo__attentionPc {
    display: none;
  }

  .dokyo__attentionSp {
    display: block;
    padding-top: 0.15rem;
    font-size: 0.14rem;
  }

  .dokyo .wrap__heading .section_heading {
    margin-bottom: 0.3rem;
  }
  .dokyo__wrap {
    display: flex;
    flex-direction: column;
    padding: 0.2rem 0.15rem;
    align-items: flex-start;
  }

  .dokyo__wrap .dokyo__wrapSub {
    width: 100%;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) h3 span {
    font-size: 0.22rem;
    position: relative;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) h3 span:before {
    position: absolute;
    content: "総 額";
    font-size: 0.14rem;
    font-family: var(--font-default);
    font-weight: 400;
    padding: 0 0.02rem;
    border-radius: 0.04rem;
    border: 1px solid var(--black);
    top: 54%;
    right: -0.43rem;
    transform: translateY(-50%);
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
    > div:nth-child(2)
    > p:nth-child(1):before {
    content: none;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
    > div:nth-child(2)
    > p:nth-child(1) {
    font-size: 0.4rem;
    padding-left: 0;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
    > div:nth-child(2)
    > p:nth-child(1)
    span {
    font-size: 0.33rem;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(2) {
    margin-bottom: 0.13rem;
    white-space: nowrap;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
    > div:nth-child(2)
    > p:nth-child(2) {
    font-size: 0.22rem;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
    > div:nth-child(2)
    > p:nth-child(2)
    span {
    font-size: 0.18rem;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
    > div:nth-child(2)
    > p:nth-child(2):before {
    font-size: 0.14rem;
    left: 0;
    bottom: 0;
    top: -0.17rem;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(3) {
    padding: 0.06rem 0.1rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.16rem;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
    > div:nth-child(3)
    > p:nth-child(1) {
    padding-right: 0;
    margin-right: 0;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
    > div:nth-child(3)
    > p:nth-child(1):before {
    content: none;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(3) p {
    font-size: 0.16rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1)) > div:nth-child(3) .price {
    font-size: 0.23rem;
    padding-left: 0;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(1))
    > div:nth-child(3)
    p:not(:last-child) {
    padding-bottom: 0.05rem;
    margin-bottom: 0.05rem;
    border-bottom: 1px dotted;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul {
    width: initial;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul li:not(:last-child) {
    padding-bottom: 0.13rem;
    margin-bottom: 0.13rem;
    gap: 0.03rem;
    border-bottom: 1px dotted;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul li .price {
    font-size: 0.25rem;
    margin-left: auto;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(2)) > ul li .price span {
    font-size: 0.19rem;
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(2))
    > ul
    li:nth-child(2)
    .price:after {
    position: absolute;
    content: "(一人あたり)";
    font-size: 0.14rem;
    white-space: nowrap;
    left: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  :where(.dokyo__wrap .dokyo__wrapSub:nth-child(2))
    > ul
    li
    > p:nth-child(1)
    span {
    display: none;
  }

  .dokyo__items li {
    width: 100%;
    padding: 0.1rem;
  }

  :where(.dokyo__items li) > p:nth-child(1) {
    font-size: 0.2rem;
    width: initial;
    border-left: initial;
    border-right: initial;
    padding: 0;
  }

  :where(.dokyo__items li) > p:nth-child(2) {
    font-size: 0.32rem;
  }

  :where(.dokyo__items li) > p:nth-child(2) > span {
    font-size: 0.28rem;
  }

  .dokyo__txt_pc {
    display: none;
  }

  .dokyo__txt_sp {
    display: block;
  }
  .dokyo__txt_sp p {
    font-size: 0.14rem;
  }
}
/* kaimei */
.kaimei {
  background: var(--gray);
  margin-bottom: 1.2rem;
}

.kaimei .container:before {
  content: "";
  position: absolute;
  background: url(../img/icon-kaimei-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.9rem;
  aspect-ratio: 5/4;
  top: -1.3rem;
  left: 2.1rem;
}

.kaimei .container:after {
  content: "";
  position: absolute;
  background: url(../img/icon-kaimei-2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.05rem;
  aspect-ratio: 105/97;
  top: 0.4rem;
  right: 1.3rem;
}

.kaimei__attention--sp {
  display: none;
}

.kaimei__wrapSub-sp {
  display: none;
}

.kaimei .wrap__heading .section_heading {
  margin-top: -3.09rem;
}
.kaimei__items {
  display: flex;
  justify-content: space-between;
}

.kaimei__item {
  width: 3.3rem;
  padding: 0.16rem;
  border-radius: 0.1rem;
  background: var(--white);
  position: relative;
}

.kaimei__itemsSub {
  min-height: 0.9rem;
  padding-bottom: 0.2rem;
}

.kaimei__itemsSub li p {
  font-size: 0.16rem;
  font-weight: 500;
  text-align: center;
}

.kaimei__itemsSub li {
  background: var(--gray);
}

.kaimei__item > div:not(:last-of-type) {
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  border-bottom: 1px dotted var(--border-gray);
}

:where(.kaimei__items .kaimei__item:nth-child(3)) .kaimei__itemsSub li {
  padding: 0.33rem 0;
}

:where(.kaimei__items .kaimei__item:nth-child(1)) .kaimei__itemsSub li {
  display: flex;
  width: 50%;
  border-radius: 0.05rem;
  justify-content: center;
  align-items: center;
  padding: 0.33rem 0;
}

.kaimei__items .kaimei__item:nth-child(1) .kaimei__itemsSub {
  display: flex;
  gap: 0.1rem;
}

:where(.kaimei__items .kaimei__item:nth-child(2)) .kaimei__itemsSub {
  display: flex;
  gap: 0.1rem;
  flex-direction: column;
}

:where(.kaimei__items .kaimei__item:nth-child(2)) .kaimei__itemsSub > ul {
  display: flex;
  gap: 0.1rem;
  justify-content: space-between;
}

:where(.kaimei__items .kaimei__item:nth-child(2))
  .kaimei__itemsSub
  > ul:nth-child(1)
  > li {
  width: 33%;
}

:where(.kaimei__items .kaimei__item:nth-child(2))
  .kaimei__itemsSub
  > ul:nth-child(2)
  > li {
  width: 50%;
}

:where(.kaimei__items .kaimei__item:nth-child(2)) .kaimei__itemsSub > ul > li {
  padding: 0.08rem;
}

.kaimei__wrapSub-pc > div {
  display: flex;
  align-items: center;
  gap: 0.03rem;
}

.kaimei__wrapSub-pc > div:nth-child(1) {
  gap: 0.12rem;
}

.kaimei__title > p:nth-child(1) {
  font-size: 0.22rem;
  font-family: var(--font-serif);
  font-weight: bold;
}

.kaimei__title > p:nth-child(2) {
  font-size: 0.14rem;
  white-space: nowrap;
}

.kaimei__price p:nth-child(1) {
  font-size: 0.16rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-top: 0.06rem;
}

.kaimei__price p:nth-child(2) {
  font-size: 0.48rem;
}

.kaimei__price p:nth-child(2) span {
  font-size: 0.36rem;
}

.kaimei__attention {
  position: absolute;
  bottom: 0.16rem;
  font-size: 0.14rem;
}

.kaimei__icon {
  text-align: center;
  padding: 0.1rem;
  font-size: 0.14rem;
  font-weight: bold;
  border-radius: 0.06rem;
  white-space: nowrap;
}

.kaimei__icon--koui {
  border: 2px solid var(--pink);
  color: var(--pink);
}

.kaimei__icon--middle {
  border: 2px solid var(--yellow);
  color: var(--yellow);
}

.kaimei__icon--common {
  border: 2px solid var(--green);
  color: var(--green);
}

@media (max-width: 640px) {
  .kaimei {
    background: url(../img/bg-kaimei.svg);
    margin-bottom: 1.6rem;
  }

  .kaimei .container:after {
    content: none;
  }

  .kaimei .container:before {
    width: 0.73rem;
    top: 0.4rem;
    right: 0.5rem;
    left: initial;
    z-index: 1;
  }

  .kaimei__wrapSub-pc {
    display: none;
  }

  .kaimei__wrapSub-sp {
    display: flex;
    gap: 0.12rem;
  }

  .kaimei__attention--pc {
    display: none;
  }

  .kaimei__attention--sp {
    display: block;
    position: initial;
    font-size: 0.14rem;
    margin-top: 0.15rem;
  }

  .kaimei .wrap__heading {
    margin-bottom: 0;
  }

  .kaimei__items {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
  }

  .kaimei__item {
    width: initial;
  }

  .kaimei .wrap__heading .section_heading {
    margin-top: -2.3rem;
  }

  .kaimei__itemsSub {
    min-height: initial;
  }

  :where(.kaimei__items .kaimei__item:nth-child(1)) .kaimei__itemsSub li {
    padding: 0.06rem 0;
  }

  :where(.kaimei__items .kaimei__item:nth-child(2))
    .kaimei__itemsSub
    > ul
    > li {
    padding: 0.06rem;
  }

  :where(.kaimei__items .kaimei__item:nth-child(3)) .kaimei__itemsSub li {
    padding: 0.06rem 0;
  }

  .kaimei__icon {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .kaimei__price {
    display: flex;
    white-space: nowrap;
    align-items: center;
    gap: 0.03rem;
  }

  .kaimei__price p:nth-child(1) {
    font-size: 0.14rem;
    margin-top: 0;
  }

  .kaimei__title > p:nth-child(1) {
    font-size: 0.2rem;
  }

  .kaimei__price p:nth-child(2) {
    font-size: 0.4rem;
  }

  .kaimei__price p:nth-child(2) span {
    font-size: 0.3rem;
  }
}
/* question */
.question {
  background: var(--bg-green);
  margin-bottom: 1.2rem;
  padding: 0.5rem 0;
}

.question .section_heading {
  margin-top: -2.32rem;
}

.question .wrap__heading {
  margin-bottom: 0.4rem;
}

.question__items .question__item:not(:last-of-type) {
  padding-bottom: 0.14rem;
}

.question__items li > .question__answer {
  display: flex;
  gap: 0.13rem;
  padding: 0.24rem 0.28rem 0.24rem 0.16rem;
  border-radius: 0.06rem;
  border: 2px solid var(--white);
  align-items: flex-start;
}

.question__items li > .question__answer--type2 {
  display: flex;
  align-items: center;
}

.question__btn {
  display: flex;
  gap: 0.13rem;
  background: var(--white);
  padding: 0.12rem 0.16rem;
  border-radius: 0.06rem;
  align-items: center;
}

.question__btn > p {
  font-size: 0.22rem;
  font-family: var(--font-serif);
  font-weight: bold;
}

.question__answer p {
  font-size: 0.16rem;
  line-height: 1.7;
}

.question__btn {
  position: relative;
  cursor: pointer;
}

.toggle .question__btn:hover {
  opacity: 0.8;
}

.toggle .question__btn:before {
  content: url(../img/arrow-question-1.svg);
}

.question__btn:before {
  position: absolute;
  content: url(../img/arrow-question-2.svg);
  width: 0.13rem;
  aspect-ratio: 13/2;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
}

.toggle .question__btn {
  border-radius: 0.06rem 0.06rem 0 0;
}

@media (max-width: 640px) {
  .question {
    background: none;
    padding: 0;
    margin-bottom: 0.5rem;
  }

  .question .wrap__heading {
    margin-bottom: 0.2rem;
  }

  .question .container {
    padding: 0 0.2rem;
    padding-bottom: 0.2rem;
  }

  .question__btn > p {
    font-size: 0.14rem;
    width: 1.9rem;
    line-height: 1.7;
  }

  .question__answer p {
    font-size: 0.14rem;
  }

  .question__items li > .question__answer {
    display: flex;
    align-items: flex-start;
  }

  .question .section_heading {
    margin-top: -150px;
  }
}
/* document */
.document {
  background: var(--bg-purple);
  margin-bottom: 1.2rem;
  padding: 0.5rem 0;
}

.document__items {
  display: flex;
  gap: 0.14rem;
}

.document__items > li {
  background: var(--white);
  width: 50%;
  border-radius: 0.16rem;
  padding: 0.17rem 0 0.22rem;
}

.document__items > li h2 {
  display: flex;
  justify-content: center;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid var(--border-purple);
}

:where(.document__items li:nth-child(1)) > div {
  padding-top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

:where(.document__items li:nth-child(1)) > div > p {
  font-size: 0.2rem;
}

.document__phone > div {
  display: flex;
  align-items: center;
  gap: 0.06rem;
}

.document__phone > div p {
  font-size: 0.54rem;
  font-family: var(--font-serif);
  color: var(--txt-purple);
  font-weight: bold;
  line-height: 0;
  margin-top: 0.04rem;
}

.document__phone > div img {
  max-width: 0.5rem;
  width: 100%;
  margin-top: 0.12rem;
}

:where(.document__items li:nth-child(2)) > ul {
  padding: 0.2rem 0.3rem 0.17rem 0.3rem;
}

:where(.document__items li:nth-child(2)) > ul li {
  line-height: 1.7;
  font-size: 0.12rem;
}

.document__contact > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
}

.document__contact > div p {
  font-size: 0.24rem;
  color: var(--txt-purple);
}

.document__contact > div img {
  width: 1rem;
}

@media (max-width: 640px) {
  .document {
    background: initial;
    padding: 0;
  }

  .document .container {
    padding: 0.2rem;
  }

  .document__items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .document__items > li {
    width: 100%;
  }

  :where(.document__items li:nth-child(1)) > h2 img {
    width: 3rem;
  }

  :where(.document__items li:nth-child(1)) > div {
    padding-top: 0.1rem;
  }

  :where(.document__items li:nth-child(1)) > div > p {
    font-size: 0.16rem;
  }

  .document__phone > div img {
    max-width: 0.4rem;
  }

  .document__phone > div p {
    font-size: 0.38rem;
  }

  .document__phone {
    margin-top: -0.1rem;
  }

  :where(.document__items li:nth-child(2)) > ul {
    padding: 0.2rem 0.3rem 0.16rem 0.3rem;
  }

  .document__contact > div p {
    font-size: 0.22rem;
  }

  .document__contact > div img {
    width: 0.94rem;
  }
}
/* sogi */
.sogi {
  background: var(--bg-yellow);
  margin-bottom: 1.2rem;
  padding: 0.5rem 0;
}
.sogi .container:before {
  content: "";
  position: absolute;
  background-image: url(../img/icon-sogi.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.06rem;
  aspect-ratio: 103/137;
  top: -0.8rem;
  left: 1.7rem;
}

.sogi .wrap__heading .section_heading {
  margin-top: -2.3rem;
  margin-bottom: 0.4rem;
}

.sogi__itemsSub {
  display: flex;
  gap: 0.16rem;
}

.sogi__itemsSub > li {
  background: var(--white);
  border-radius: 0.16rem;
  padding: 0.08rem;
}

:where(.sogi__items .sogi__item:nth-child(1) .sogi__itemsSub) > li {
  width: 50%;
}

.sogi__wrap {
  border: 1px solid var(--border-yellow);
  border-radius: 0.16rem;
}

.sogi__wrap {
  padding: 0.2rem 0 0.16rem;
}

.sogi__wrap h3 {
  font-family: var(--font-serif);
  font-size: 0.28rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 0.2rem;
}

.sogi__num {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  right: 0.3rem;
  top: -0.4rem;
}

.sogi__num p {
  font-size: 0.16rem;
}

.sogi__img {
  position: relative;
  margin-bottom: 0.4rem;
}

.sogi__txt {
  width: 2.56rem;
  padding: 0.18rem;
  height: 0.4rem;
  position: absolute;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.1rem 0.1rem 0 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.12rem;
}

.sogi__txt p {
  font-size: 0.2rem;
}

.sogi__icons {
  display: flex;
  justify-content: center;
  gap: 0.28rem;
  margin-bottom: 0.16rem;
}

.sogi__icons--type2 > li:not(:last-child) {
  position: relative;
}

.sogi__icons--type2 > li:not(:last-child):before {
  position: absolute;
  content: "";
  background-image: url(../img/arrow-sogi-2.svg);
  width: 0.2rem;
  background-size: contain;
  aspect-ratio: 4/3;
  right: -0.24rem;
}

.sogi__icons--type3 > li:nth-child(1) {
  position: relative;
}

.sogi__icons--type3 > li:nth-child(1):before {
  content: "";
  background: url(../img/arrow-sogi-3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 1.01rem;
  aspect-ratio: 101/15;
  left: 0px;
}

.sogi__icons li {
  width: 0.84rem;
  height: 0.35rem;
  background: var(--btn-yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
}
.sogi__icons .sogi__icon_gray {
  background: var(--btn-gray);
}

.sogi__icons li p {
  font-size: 0.16rem;
  color: var(--white);
}

.sogi__icons .sogi__icon_gray > p {
  color: var(--txt-gray);
}

.sogi__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.22rem;
}

.sogi__price p {
  font-size: 0.16rem;
}

.sogi__price .price {
  font-size: 0.52rem;
}

.sogi__price .price span {
  font-size: 0.4rem;
}

.sogi__link {
  margin: 0 0.18rem;
  background: var(--link-gray);
  display: flex;
  border-radius: 0.05rem;
  justify-content: center;
  align-items: center;
  gap: 0.06rem;
  padding: 0.1rem 0;
}

.sogi__icons--type1 > li:nth-child(1) {
  position: relative;
  z-index: 1;
}

.sogi__icons--type1 > li:nth-child(1):before {
  position: absolute;
  content: "";
  background: url(../img/arrow-sogi-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.2rem;
  aspect-ratio: 202/19;
  left: 0;
}

.sogi__link p {
  font-size: 0.16rem;
}

.sogi__items {
  margin-bottom: 0.14rem;
}

.sogi__items .sogi__item:not(:last-of-type) {
  margin-bottom: 0.16rem;
}

:where(.sogi__items .sogi__item:nth-child(2)) .sogi__num {
  right: 0.18rem;
  width: 0.85rem;
  height: 0.85rem;
  top: -0.26rem;
}

.sogi__price--type2 {
  display: flex;
  flex-direction: column;
  min-height: 1.32rem;
  justify-content: flex-start;
}

.sogi__price--type2 > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sogi__price--type2 > div .price {
  line-height: 1.2;
}

.sogi__price--type2 > ul {
  display: flex;
  gap: 0.02rem;
}

.sogi__price--type2 > ul li {
  display: flex;
  gap: 0.02rem;
}

.sogi__price--type2 > ul li p {
  font-size: 0.14rem;
}

.sogi__items .sogi__item:nth-child(2) .sogi__icons li {
  width: 0.78rem;
}

.sogi__items .sogi__item:nth-child(2) .sogi__icons {
  gap: 0.28rem;
}

.sogi__attention {
  font-size: 0.14rem;
}
@media (max-width: 1440px) {
  .sogi__icons--type1 > li:nth-child(1):before {
    width: 2.28rem;
  }
}

@media (max-width: 640px) {
  .sogi .container {
    padding: 0 0.2rem 0.2rem 0.2rem;
  }

  .sogi .wrap__heading .section_heading {
    margin-top: -1.5rem;
    margin-bottom: 0.3rem;
  }

  .sogi .container:before {
    right: 0;
    left: 30px;
    top: -50px;
    width: 0.72rem;
    z-index: 2;
  }

  .sogi .wrap__heading {
    margin-bottom: 0;
  }
  .sogi {
    background: none;
  }
  .sogi__itemsSub {
    display: flex;
    flex-direction: column;
  }

  :where(.sogi__items .sogi__item:nth-child(1) .sogi__itemsSub) > li {
    width: 100%;
  }

  .sogi__wrap h3 {
    padding-bottom: 0.13rem;
  }

  .sogi__num {
    width: 0.75rem;
    height: 0.75rem;
    top: -20px;
    right: 10px;
  }

  .sogi__num p {
    font-size: 0.14rem;
  }

  .sogi__price--type2 > ul {
    margin-top: 0.06rem;
  }

  .sogi__price {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: initial;
  }

  .sogi__price .price {
    line-height: 1.2;
    font-size: 0.48rem;
  }

  .wrap__heading {
    margin-bottom: 0.3rem;
  }
}
