/* =========================
   Variables
========================= */
:root {
  --font-family-jp:
    "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "Meiryo", sans-serif;
  --font-family-en: "Poppins", arial, sans-serif;
  --font-family-latin: "Poppins", arial, sans-serif;
  --color-main: #009140;
  --color-white: #fff;
  --text-brand: #009140;
  --text-secondary: #495057;
  --text-primary: #212529;
}

#breadcrumb {
  display: none;
}

/* =========================
   共通コンポーネント
========================= */

.section__inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 16px;

  @media (768px <= width) {
    width: 100%;
    max-width: min(calc(1080px + 40px * 2), 100%);
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.section-header {
  text-align: center;
}

.section-header__title {
  font-family: var(--font-family-jp);
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
  color: var(--text-primary);

  @media (768px <= width) {
    font-size: 28px;
  }
}

.btn {
  display: grid;
  position: relative;
  width: 100%;
  max-width: 250px;
  margin-inline: auto;
  padding-block: 10px;
  padding-inline: 37px;
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  color: var(--text-brand);
  background-color: var(--color-white);
  border: 2px solid currentcolor;
  border-radius: 100px;
  box-shadow: 0 6px 0 0 #004a28;
  place-items: center;

  /* transition: background-color 0.2s ease-in-out; */
  span {
    font-weight: 700;
  }
}

.btn:hover {
  color: var(--text-brand);
  background-color: #e6f4ed;
}
/* =========================
   faq
========================= */
/* #Contents { */
  h2 {
    border: none;
    margin: 0;
  }
/* } */

/* #Contents { */
.section-header__subtitle {
  margin-bottom: 12px !important;
  font-family: var(--font-family-latin) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  line-height: 1.4 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  color: var(--text-brand) !important;

  @media (768px <= width) {
    font-size: 14px !important;
  }
}

.section-header__title {
  font-family: var(--font-family-jp) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  line-height: 1.4 !important;
  text-align: center !important;
  color: var(--text-primary) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;

  @media (768px <= width) {
    font-size: 28px !important;
  }
}
/* } */

.faq {
  position: relative;
  margin-block-start: 64px;
  padding-block: 0px 64px;
  background: #fff;

  @media (768px <= width) {
    margin-block-start: 128px;
    padding-block: 40px 80px;
  }
}

.faq__header {
  margin-bottom: 40px;
}

/* #Contents { */
.faq__title {
  display: block !important;
  font-family: var(--font-family-jp) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  line-height: 1.6 !important;
  color: var(--text-primary) !important;
  background-color: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* } */

.faq__list {
  margin-bottom: 39px !important;
}

.faq__item {
  width: 100%;
  height: auto;
  border-top: 1px solid #adb5bd;
}

.faq__item:last-of-type {
  border-bottom: 1px solid #adb5bd;
}

.faq__item a:hover {
  background-color: #f1f3f5;
}

.faq__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 12px 10.4px;
  padding-inline: 12px;

  @media (768px <= width) {
    padding-block: 16px 14.4px;
  }
}

.faq__arrow-wrap {
  width: 20px;
  height: 20px;
}

.faq__arrow-wrap img {
  vertical-align: text-top;
}

.faq__btn-wrap {
  text-align: center;
}

.faq__btn-arrow-wrap {
  position: absolute;
  top: calc(50% + 0px);
  left: 14px;
  translate: 0 -50%;
}

.faq__btn-arrow {
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
