/* =========================
   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__subtitle {
  margin-bottom: 11px;
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-brand);

  @media (768px <= width) {
    font-size: 14px;
  }
}

.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;
}

/* =========================
   Guide-list Section
========================= */
#Contents h2 {
  border: none;
  margin: 0;
}

#Contents {
  .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;
    }
  }
}

.guide-list {
  position: relative;
  margin-block-start: 64px;
  padding-block: 0px 64px;
  background: #fff;

  @media (768px <= width) {
    margin-block-start: 128px;
    padding-block: 40px 80px;
  }
}

/* header */
.guide-list__header {
  margin-bottom: 41px;
}

/* list wrapper */
.guide-list__list {
  margin-bottom: 40px!important;
}

/* list item */
.guide-list__item {
  width: 100%;
  height: auto;
  border-top: 1px solid #adb5bd;
}

.guide-list__item:last-of-type {
  border-bottom: 1px solid #adb5bd;
}

/* link */
.guide-list__link {
  display: block;
  position: relative;
  padding-block: 12px 10.4px;
  padding-inline: 12px 36px;

  @media (768px <= width) {
    padding-block: 15px 15.3px;
  }
}

.guide-list__link:hover {
  background-color: #f1f3f5;
}

/* title */
#Contents {
  .guide-list__title {
    display: block;
    font-family: var(--font-family-jp);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: inherit;
    padding: 0;
    margin: 0;
  }
}

.guide-list__list-arrow-wrap {
  position: absolute;
  top: calc(50% + 0px);
  right: 12px;
  translate: 0 -50%;
}

.guide-list__list-arrow {
  width: 20px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* button */
.guide-list__btn-wrap {
  text-align: center;
}

.guide-list__btn-arrow-wrap {
  position: absolute;
  top: calc(50% + 0px);
  left: 14px;
  translate: 0 -50%;
}

.guide-list__btn-arrow {
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
