@charset "UTF-8";

/* ===================================================================
  Color Tokens
=================================================================== */
body {
  background-color: #fff;
}

button {
  color: #333333;
}

/* ===================================================================
  Wrapper
=================================================================== */
#wrapper_bg,
#wrapper {
  overflow-x: visible;
}

#wrapper {
  width: auto;
}

.no-wrap {
  white-space: nowrap;
}

/* ===================================================================
  共通：セクション管理（余白・中身幅を一括管理）
=================================================================== */
.section {
  padding: 40px 3%;
  /* SP */
}

/* アクセントカラー */
.c_accent {
  color: var(--c-accent);
}

/* 共通　黒タイトル */
.ttl_black {
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: .02em;
  font-size: var(--fz-spttl);
}

@media (min-width: 769px) {
  .section {
    padding: 60px 0 60px;
    /* PC */
  }

  .section__inner {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .ttl_black {
    font-size: var(--fz-pcttl);
  }
}

a.area_link__more:visited {
  color: #333333;
}

/* =========================
  共通：ttl_circle（丸が重なるタイトル）
========================= */
.ttl_circle {
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 1.2;
  padding-left: 20px;
  font-weight: 400;
  margin-bottom: 32px;
  margin-top: 12px;
}

/* 丸（重なり装飾） */
.ttl_circle__deco {
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--c-top-bg-dark);
  z-index: 0;
}

/* 文字を前面に */
.ttl_circle__text {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: var(--fz-spttl);
}

/* PCで少し大きく（任意） */
@media (min-width: 769px) {
  .ttl_circle {
    padding-left: 30px;
  }

  .ttl_circle__deco {
    width: 60px;
    height: 60px;
  }

  .ttl_circle__text {
    font-size: var(--fz-pcttl);
  }
}

/* =========================
  共通：薄い英字（ghost）付き見出し
========================= */
.ttl_ghost {
  position: relative;
  display: inline-block;
  margin: 0;
  font-weight: 400;
}

.ttl_ghost__main {
  position: relative;
  z-index: 2;
}

.ttl_ghost__bg {
  position: absolute;
  left: -41px;
  top: -2px;
  transform: translateY(-55%);
  z-index: 0;
  font-size: 54px;
  letter-spacing: 0.05rem;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

@media (min-width: 769px) {
  .ttl_ghost__bg {
    font-size: 67px;
  }
}

/* =========================
  共通：線＋矢印のボタン
========================= */
.btn_circleline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 180px;
  padding: 5px 9px 5px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .20);
}

.btn_circleline__label {
  letter-spacing: .02em;
}

/* 丸矢印（右端） */
.btn_circleline__icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--c-top-bg-dark);
  position: relative;
  flex: 0 0 auto;
}

/* 矢印 */
.btn_circleline__icon::before {
  content: "→";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  line-height: 1;
}

/* hover（PCだけ軽く） */
@media (hover:hover) {
  .btn_circleline:hover {
    border-color: rgba(0, 0, 0, .35);
  }
}

/* ===================================================================
  area_mv（メインビジュアル：Splide）
=================================================================== */
a.area_mv__card {
  text-decoration: none;
}

.area_mv {
  max-width: 940px;
  margin: 0px auto;
  overflow: hidden;
}

.area_mv__inner {
  max-width: 940px;
  padding: 0 12px;
  margin: 0 auto;
  overflow: visible;
}

/* 次スライドが見える（見切れ表示） */
.area_mv__splide .splide__track {
  overflow: visible;
}

/* スライド幅（SP基準：autoWidth運用の場合の保険） */
.area_mv__splide .splide__slide {
  width: 88%;
}

/* カード（リンク全体） */
.area_mv__card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  border: 1px solid rgba(0, 0, 0, .08);
  color: inherit;
}

/* 画像・本文（共通） */
.area_mv__media {
  position: relative;
}

.area_mv__img {
  display: block;
  width: 100%;
  height: auto;
}

/* SPは画像にテキストを重ねる（PCで上書き） */
.area_mv__body {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
}

.ttl_mv {
  margin: 0 0 6px;
  font-weight: 700;
}

.area_mv__text {
  margin: 0;
  line-height: 1.6;
}

/* もっと見る */
.btn_mvMore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.btn_mvMore__icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--c-top-bg-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
}

.btn_mvMore__icon::before {
  content: "→";
  font-size: var(--fz-spttl);
  font-weight: 700;
}

.btn_mvMore__icon::after {
  content: none;
}

/* 下部コントロール（← ドット 停止 →） */
.area_mv__ctrl {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
}

.btn_mvArrow {
  width: 44px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--c-accent);
  line-height: 1;
  font-size: 30px;
}

.area_mv__center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* =========================================================
  ★重要：MV pagination固定（Splide生成 .splide__pagination にも当てる）
========================================================= */
.area_mv .splide__pagination,
.area_mv__pagination {
  position: static !important;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  transform: none !important;
  list-style: none;
}

.area_mv .splide__pagination__page,
.area_mv__pagination .splide__pagination__page {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid #bdbdbd;
  background: transparent;
  opacity: 1;
  padding: 0;
}

.area_mv .splide__pagination__page.is-active,
.area_mv__pagination .splide__pagination__page.is-active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  transform: none;
}

/* 停止ボタン（見た目は既存寄せ：グレー類は維持） */
.btn_mvToggle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #bdbdbd;
  background: #efefef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn_mvToggle__icon {
  position: relative;
  width: 12px;
  height: 12px;
}

.btn_mvToggle__icon::before,
.btn_mvToggle__icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 12px;
  background: #777;
  border-radius: 2px;
}

.btn_mvToggle__icon::before {
  left: 2px;
}

.btn_mvToggle__icon::after {
  right: 2px;
}

/* 再生時（▶） */
.btn_mvToggle.is-play .btn_mvToggle__icon::before {
  left: 3px;
  width: 0;
  height: 0;
  border-left: 10px solid #777;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  background: transparent;
  border-radius: 0;
}

.btn_mvToggle.is-play .btn_mvToggle__icon::after {
  display: none;
}

/* SP：画像下部に白グラデ / もっと見る非表示 */
@media (max-width: 768px) {
  .area_mv__media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to top,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.55) 35%,
        rgba(255, 255, 255, 0.00) 100%);
  }

  .splide__slide .btn_mvMore {
    display: none !important;
  }
}

/* PC（>=769px） */
@media (min-width: 769px) {
  .area_mv {
    padding: 24px 0 14px;
  }

  .area_mv__inner {
    padding: 0 20px;
  }

  .area_mv__splide .splide__slide {
    width: min(100%, 860px);
  }

  .area_mv__card {
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: 190px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
  }

  .area_mv__media {
    padding: 18px;
    background: #fff;
    height: auto;
    overflow: hidden;
  }

  .area_mv__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }

  .area_mv__body {
    position: static;
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: auto;
  }

  .ttl_mv {
    margin: 0 0 10px;
    font-size: var(--fz-spttl);
  }

  .btn_mvMore {
    margin-top: 14px;
    justify-content: flex-start;
  }

  .area_mv__media::after {
    content: none;
  }
}

@media (min-width: 769px) and (max-width: 820px) {
  .area_mv__splide .splide__slide {
    width: 100%;
  }
}

/* paginationの余計な余白をゼロにして位置ズレ予防 */
.area_mv .splide__pagination,
.area_recommend .splide__pagination {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* 中央の高さを固定して、画面幅でガタつかないようにする */
.area_mv__center,
.area_recommend__center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 28px;
}

/* pagination置き場は常に同じ場所・同じ高さを確保 */
[data-splide-pagination]:empty {
  display: none;
}

[data-splide-pagination] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12px;
  /* ドット分の高さ */
}

/* Splideが付ける余計なmargin等を殺す */
[data-splide-pagination] .splide__pagination {
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}


/* ===================================================================
  area_top
=================================================================== */
.area_top {
  background: var(--c-top-bg);
}

.area_top__sheet {
  border-radius: 18px;
}

.ttl_top {
  margin: 0 0 16px;
  text-align: center;
  font-size: var(--fz-spttl);
  font-weight: 400;
  color: var(--c-accent);
}

@media (min-width: 769px) {
  .ttl_top {
    font-size: var(--fz-pcttl);
  }
}

.area_top__body {
  position: relative;
  line-height: 1.9;
  overflow: visible;
  padding-bottom: 70px;
}

.area_top__hr {
  height: 1px;
  background: rgba(0, 0, 0, .12);
  margin: 18px auto;
  max-width: 460px;
}

.area_top__note {
  margin-top: 14px;
  font-size: 12px;
  opacity: .85;
}

.area_top__abbr {
  text-align: center;
  letter-spacing: .18em;
  font-size: 12px;
  margin: 0;
}

.area_top__abbrMark {
  letter-spacing: .35em;
  font-weight: 700;
}

/* ctrl（sticky） */
.area_top__ctrl {
  position: sticky;
  bottom: 0;
  margin-top: -54px;
  padding: 18px 0 8px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  background: linear-gradient(to top,
      rgba(var(--c-top-bg-rgb), 1) 62%,
      rgba(var(--c-top-bg-rgb), 0) 100%);
}

/* ドット（左右） */
.area_top__dots {
  width: 34px;
  height: 10px;
  position: relative;
  opacity: .55;
}

.area_top__dots::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  background:
    radial-gradient(circle, var(--c-ui) 2px, transparent 3px) 0 50%/12px 10px repeat-x;
}

/* ボタン */
.btn_topToggle {
  appearance: none;
  border: 0;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--c-ui);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

/* もっと見る：開閉設定（SPで使用） */
.area_top__more {
  position: relative;
  overflow: hidden;
  max-height: none;
  transition: max-height 360ms ease;
}

/* 閉じた時のフェード（moreの下端のみ） */
.area_top__sheet.is-collapsed .area_top__more::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(var(--c-top-bg-rgb), 0) 0%,
      rgba(var(--c-top-bg-rgb), 1) 85%);
}

/* PC装飾（png） */
.area_top__deco {
  display: none;
}

.area_top__decoImg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* PC（>=769px）：常に開いた状態 */
@media (min-width: 769px) {
  .section.area_top {
    position: relative;
    background: #fff;
  }

  .area_top__sheet {
    position: relative;
    padding: 20px 30px;
  }

  .area_top__more {
    max-height: none;
    overflow: visible;
  }

  .area_top__sheet.is-collapsed .area_top__more::after {
    content: none;
  }

  .area_top__ctrl {
    display: none;
  }

  .area_top__body {
    padding-bottom: 0;
  }

  .area_top__deco {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .ttl_top,
  .area_top__body {
    position: relative;
    z-index: 1;
  }

  .area_top__decoImg--01 {
    position: absolute;
    left: 20px;
    bottom: 50px;
    transform: translateY(-50%);
    width: 190px;
  }

  .area_top__decoImg--02 {
    position: absolute;
    right: 16px;
    top: 25px;
    width: 200px;
    opacity: 0.7;
  }

  .area_top__decoImg--03 {
    position: absolute;
    left: 70px;
    bottom: 20px;
    width: 210px;
    opacity: 0.7;
  }

  .area_top__body {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 980px) {

  .area_top__decoImg--01,
  .area_top__decoImg--02,
  .area_top__decoImg--03 {
    display: none;
  }
}

/* =========================
  area_switch（切替ボタン）
========================= */
.section.area_switch {
  padding: 40px 0;
}

.area_switch__wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.btn_switch {
  --switch-pad-top: 58px;
  position: relative;
  z-index: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  padding-top: var(--switch-pad-top);
}

.btn_switch__bar {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 14px 1fr 14px;
  height: 52px;
  border: 1px solid rgba(0, 0, 0, .35);
  background: #fff;
}

.btn_switch.is-current .btn_switch__bar {
  grid-template-columns: 14px 1fr 0px;
}

.btn_switch--public .btn_switch__bar {
  border-right: none;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}

.btn_switch--pro .btn_switch__bar {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

.btn_switch--pro .btn_switch__bar {
  border-left: 1px solid rgba(0, 0, 0, .35);
}

.btn_switch.is-current .btn_switch__bar {
  background: var(--c-top-bg-dark);
}

.btn_switch__label {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.btn_switch__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.btn_switch__icon img {
  display: block;
  width: 84px;
  height: auto;
}

.btn_switch.is-current::before {
  content: "";
  position: absolute;
  left: 18px;
  top: calc(var(--switch-pad-top) + 26px);
  transform: translateY(-50%);
  z-index: 3;
  width: 20px;
  height: 20px;
  background: url("/common/img/icon_check.png") no-repeat center / contain;
}

.btn_switch:not(.is-current)::before {
  content: none;
}

@media (min-width: 769px) {
  .btn_switch {
    --switch-pad-top: 61px;
  }

  .btn_switch__label {
    font-size: 15px;
  }

  .btn_switch.is-current::before {
    left: 26px;
  }

  .btn_switch__bar {
    grid-template-columns: 44px 1fr 44px;
  }
}

/* =========================
  area_recommend
========================= */
.area_recommend {
  background: var(--c-top-bg);
  overflow: hidden;
}

.area_recommend .section__inner {
  width: 100%;
  max-width: 100%;
}

.area_recommend__head {
  text-align: center;
  margin-bottom: 14px;
  padding-top: 8px;
}

/* スライダー領域 */
.area_recommend__stage {
  --recommend-gutter: clamp(12px, 6vw, 56px);
  position: relative;
  padding: 0 0 0 var(--recommend-gutter);
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.area_recommend__splide .splide__track {
  overflow: hidden;
}

/* カード */
a.area_recommend__card {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.area_recommend__card img {
  display: block;
  width: 100%;
  height: auto;
}

/* スクロール誘導（scroll →） */
.area_recommend__scrollHint {
  position: static;
  right: auto;
  bottom: auto;
  transform: none;
  display: block;
  width: 97%;
  margin: 8px 0 0;
  padding-right: 14px;
  text-align: right;
  pointer-events: none;
  z-index: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #777;
  line-height: 1;
  opacity: .9;
  font-size: 16px;
}

.area_recommend__scrollHint::before {
  content: "scroll →";
}

/* 下部コントロール（ドット＋停止） */
.area_recommend__ctrl {
  margin-top: 14px;
  padding-bottom: 6px;
  display: flex;
  justify-content: center;
}

.area_recommend__center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* =========================================================
  ★重要：Recommend pagination固定（Splide生成 .splide__pagination にも当てる）
========================================================= */
.area_recommend .splide__pagination,
.area_recommend__pagination {
  position: static !important;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  transform: none !important;
  list-style: none;
}

.area_recommend .splide__pagination__page,
.area_recommend__pagination .splide__pagination__page {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .25);
  background: transparent;
  opacity: 1;
  padding: 0;
}

.area_recommend .splide__pagination__page.is-active,
.area_recommend__pagination .splide__pagination__page.is-active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  transform: none;
}

/* 停止ボタン */
.btn_recommendToggle {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .25);
  background: #efefef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn_recommendToggle__icon {
  position: relative;
  width: 12px;
  height: 12px;
}

.btn_recommendToggle__icon::before,
.btn_recommendToggle__icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 12px;
  background: #777;
  border-radius: 2px;
}

.btn_recommendToggle__icon::before {
  left: 2px;
}

.btn_recommendToggle__icon::after {
  right: 2px;
}

.btn_recommendToggle.is-play .btn_recommendToggle__icon::before {
  left: 3px;
  width: 0;
  height: 0;
  border-left: 10px solid #777;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  background: transparent;
  border-radius: 0;
}

.btn_recommendToggle.is-play .btn_recommendToggle__icon::after {
  display: none;
}

/* PC */
@media (min-width: 769px) {
  .area_recommend__stage {
    --recommend-gutter: 120px;
    padding-bottom: 30px;
  }

  .area_recommend__head {
    text-align: left;
    padding-left: 120px;
  }
}

/* =========================
  area_overseas
========================= */
.area_overseas {
  background: #FFF;
}

/* head */
.area_overseas__head {
  margin-bottom: 16px;
}

.ttl_overseas {
  position: relative;
  margin: 0 0 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ttl_overseas__badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--c-top-bg-dark);
  flex: 0 0 auto;
}

.area_overseas__lead {
  margin: 0;
  line-height: 1.8;
}

/* tabs */
.area_overseas__tablist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  background: #fff;
}

.area_overseas__tablist button {
  font-size: 16px;
  color: #333333;
}

.btn_tab {
  appearance: none;
  border: 0;
  padding: 10px 12px;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(0, 0, 0, .20);
  cursor: pointer;
}

.btn_tab.is-active {
  background: var(--c-top-bg-dark);
}

/* panel */
.area_overseas__panel {
  border: solid 1px rgba(0, 0, 0, .20);
  border-top: none;
  padding: 10px;
}

/* grid cards */
.area_overseas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn_overseasCard {
  display: grid;
  place-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  min-height: 52px;
  padding: 5px 5px;
  border-radius: 3px;
  background: var(--c-top-bg-dark);
  letter-spacing: 0px;
}

.btn_tab.is-active.pro,
#overseasPanelPro .btn_overseasCard {
  background: #CEE4F0;
}

/* PC */
@media (min-width: 769px) {
  .area_overseas__head {
    margin-bottom: 18px;
  }

  .area_overseas__grid {
    gap: 14px;
  }

  .btn_overseasCard {
    min-height: 39px;
    padding: 8px 0px;
  }

  .area_overseas__panel {
    padding: 20px;
  }

  .area_overseas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area_overseas__panel.is-4 .area_overseas__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .area_overseas__panel.is-6 .area_overseas__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
  area_hint
========================= */
.area_hint {
  background: var(--c-top-bg);
}

.area_hint__item {
  max-width: 410px;
}

.area_hint__head {
  margin-bottom: 18px;
}

.area_hint__lead {
  margin: 10px 0 0;
  line-height: 1.8;
}

/* list */
.area_hint__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: start;
}

.area_hint__item:nth-child(2),
.area_hint__item:nth-child(4) {
  margin-left: auto;
}

.area_hint__step {
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: .02em;
  font-size: 18px;
  line-height: 10px;
}

/* card */
.area_hint__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 12px 12px 10px;
}

.area_hint__desc {
  margin: 0 0 15px;
  line-height: 1.8;
}

/* 右寄せのリンク */
.area_hint__link {
  display: flex;
  justify-content: flex-end;
  text-decoration: none;
  color: inherit;
}

.area_hint__link .btn_mvMore {
  margin-top: 0;
}

@media (min-width: 769px) {
  .area_hint__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 18px;
    align-items: start;
  }

  .area_hint__item:nth-child(2),
  .area_hint__item:nth-child(4) {
    justify-self: start;
  }
}

/* =========================
  area_doc
========================= */
.area_doc {
  --doc-green: #01743B;
  --doc-soft: #E6F5EC;
}

.area_doc__head {
  margin-bottom: 18px;
}

.area_doc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.area_doc__item {
  margin-bottom: 15px;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.btn_doc .btn_circleline__icon {
  background: var(--doc-soft);
}

.btn_doc .btn_circleline__icon::before {
  color: var(--doc-green);
}

.area_doc__item>.btn_doc {
  align-self: flex-end;
  width: auto;
  max-width: 100%;
}

.area_doc .ttl_circle {
  margin-bottom: 15px;
  color: var(--doc-green);
}

.area_doc .ttl_circle__deco {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--doc-soft);
  flex: 0 0 auto;
}

.area_doc .ttl_circle__text {
  display: inline-block;
  font-size: 20px;
}

.area_doc__text {
  margin: 0 0 10px;
  line-height: 1.8;
}

.area_doc__item .btn_doc {
  margin-left: auto;
}

@media (min-width: 769px) {
  .area_doc_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .area_doc__item .btn_doc {
    margin-left: 20px;
  }

  .area_doc__text {
    margin: 0;
  }
}

/* ======================================================================
  area_about（半円SVG + コンテンツ）
====================================================================== */
.section.area_about_arc {
  background: #fff;
  padding: 0;
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}

.area_about__arc {
  height: 80px;
  overflow: visible;
  line-height: 0;
}

.area_about__arc svg {
  display: block;
  width: 100%;
  height: calc(100% + 1px);
}

.area_about__arc path {
  fill: var(--c-top-bg);
}

.section.area_about_contents {
  background: var(--c-top-bg);
  position: relative;
  z-index: 0;
  margin-top: 0;
  padding-top: 1px;
}

.area_about__inner {
  position: relative;
  padding-top: 50px;
}

.area_about__head {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

/* 日本語タイトル */
.ttl_ghost__main {
  position: relative;
  font-size: var(--fz-spttl);
}

/* 薄い英字（下に潜らせる） */
.ttl_ghost__bg {
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translate(-50%, -60%);
  z-index: 1;
  font-size: 64px;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, .75);
  pointer-events: none;
}

/* YouTube */
.area_youtube {
  margin: 0 0 60px 0;
}

.area_youtube iframe {
  border-radius: 15px;
  border: solid 1px #bdbdbd;
}

@media (min-width: 769px) {
  .ttl_ghost__main {
    font-size: var(--fz-pcttl);
  }

  .area_about__arc {
    height: 120px;
  }

  .area_about__inner {
    padding-top: 50px;
  }
}

/* =========================
  area_caution
========================= */
.area_caution {
  text-align: center;
}

.area_caution__ttl {
  margin: 0 0 23px;
  font-weight: 700;
}

.area_caution__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 40px;
}

.area_caution__item {
  position: relative;
}

.area_caution__lead {
  font-size: 16px;
  margin: 0 0 32px;
  color: var(--c-accent);
  font-weight: 700;
}

/* 画像カード */
.area_caution__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.area_caution__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* オーバーレイ（初期は隠す） */
.area_caution__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  text-align: left;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.area_caution__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.area_caution__overlayInner {
  position: relative;
  z-index: 1;
  color: #fff;
  line-height: 1.8;
  font-size: 15px;
}

.area_caution__overlayText {
  margin: 0;
}

/* open 状態 */
.area_caution__item.is-open .area_caution__overlay {
  opacity: 1;
  visibility: visible;
}

.area_caution__toggle.btn_mvMore {
  margin: 10px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.area_caution__toggle .btn_mvMore__icon {
  background: var(--c-top-bg-dark);
}

.area_caution__toggle .btn_mvMore__icon::before {
  content: "＋";
  font-weight: 400;
}

.area_caution [data-reveal].is-open .area_caution__toggle .btn_mvMore__icon::before {
  content: "−";
}

.btn_mvMore__text {
  display: inline;
}

.area_caution_btn {
  margin: 40px 0 0 0;
  text-align: center;
}

@media (min-width: 769px) {
  .area_caution {
    background-color: #FFF;
    box-shadow: 0 7px 5px rgba(0, 0, 0, .06);
    margin: 0 auto;
    padding: 60px 0;
    border-radius: 25px;
  }

  .area_caution__ttl {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 30px 0;
  }

  /* .area_caution__item .area_lead_img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
  } */

  .area_caution__item {
    margin-bottom: 20px;
  }

  /* ① 左寄せ */
  .area_caution__item.item_01,
  .area_caution__item.item_03 {
    justify-self: start;
  }

  /* ② 中央 */
  .area_caution__item.item_02 {
    justify-self: end;
  }

  .area_caution__lead {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .area_caution__list {
    gap: 20px 40px;
    padding: 0 90px;
  }

}

/* =========================
   area_link
========================= */
.area_link {
  position: relative;
  background: var(--c-top-bg);
  overflow-x: clip;
  overflow-y: visible;

  --circle-sp: 400px;
  --circle-pc: 380px;
  --content-pad-sp: 30px;
  --content-pad-pc: 40px;
}

@supports not (overflow: clip) {
  .area_link {
    overflow-x: hidden;
  }
}

.area_link__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.area_link__content {
  max-width: 940px;
  margin-inline: auto;
  min-height: var(--circle-sp);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: var(--content-pad-sp) 18px;

  position: relative;
  z-index: 1;
}

.area_link__ttl {
  font-size: var(--fz-spttl);
  font-weight: 400;
  margin: 0 0 18px 0;
}

@media (min-width: 769px) {
  .area_link__ttl {
    font-size: var(--fz-pcttl);
  }
}

.area_link__ttl,
.area_link__lead,
.area_link__more {
  position: relative;
  z-index: 2;
  color: #333333;
}

.area_link__deco {
  display: none;
}

.area_link__circle {
  position: absolute;
  left: -18%;
  top: 50%;
  transform: translateY(-50%);
  width: var(--circle-sp);
  height: var(--circle-sp);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  z-index: 0;
}

@media (min-width: 769px) {
  .area_link__content {
    min-height: calc(var(--circle-pc) + 120px);
    padding: var(--content-pad-pc) 20px;
  }

  .area_link__circle {
    width: var(--circle-pc);
    height: var(--circle-pc);
    border-radius: 50%;
    left: clamp(-140px, calc(50vw - 470px - 160px), 24px);
  }

  .area_link__deco {
    display: block;
    position: absolute;
    right: clamp(-120px, calc(50vw - 470px - 80px), 24px);
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 260px;
    pointer-events: none;
    z-index: 0;
  }

  .area_link__decoCircle {
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .70);
  }

  .area_link__decoImg {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
  }

  .area_link__decoImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* area_news */
.section.area_news {
  background: var(--c-top-bg);
}

.area_news_btn {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.dllist_news dt {
  color: #555;
  font-size: 95%;
  font-weight: bold;
}

.dllist_news dd {
  font-size: 95%;
  margin: 0px 0px 8px 0px;
  padding: 0px 0px 8px 0px;
  border-bottom: dashed 1px #CCC;
}

.dllist_news dd a {
  color: #333333;
  text-decoration: underline;
}

.dllist_news dd a:visited {
  color: #333333;
}

.dllist_news dd:last-child {
  margin: 0px;
  padding: 0px;
  border-bottom: none;
}



/* =========================
   Footer
========================= */
#footer {
  margin-bottom: 70px;
}

/* footer__bottom */
#footer .footer__bottom {
  background: #f5f5f5;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap-reverse;
  padding: 20px 0px 0px 0px;
  max-width: 940px;
  margin: 0px auto;
  color: #666666;
  text-align: left;
  padding: 20px;
  justify-content: center;
}

#footer .footerR {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.mhlw_img {
  width: 42px;
}

.mhlw_text {
  font-size: 77%;
  line-height: 150%;
  margin-left: 20px;
}

#footer .fn {
  font-size: 85%;
  margin: 0px 0px 10px 0px;
}

/* 横長矢印アイコン リスト
----------------------------- */
.list_arrow_inline {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  flex-wrap: wrap;
}

.list_arrow li {
  padding: 0px 0px 0px 20px;
  background: url(/coomon/img/icon_arrow.gif) 0px 6px no-repeat;
  word-break: break-all;
  white-space: nowrap;
}

.list_arrow_inline li {
  margin: 0px 15px 0px 0px;
  padding: 0px 0px 0px 20px;
  background: url(/common/img/icon_arrow.gif) 0px 8px no-repeat;
  float: left;
}

.list_arrow_inlineR li {
  margin: 0px 0px 0px 15px;
  padding: 0px 0px 0px 20px;
  background: url(/common/img/icon_arrow.gif) 0px 6px no-repeat;
  float: right;
  text-align: right;
}

#footer .copyright {
  font-size: 77%;
  text-align: center;
}

#footer {
  padding: 0px;
}

footer {
  margin-bottom: 0px;
}

@media (min-width: 769px) {
  #footer {
    padding: 0px;
    margin-bottom: 0;
  }


  .mhlw_text {
    width: 100%;
  }
}

/* PCでは非表示 */
#pagetop_sp {
  display: none;
}

/* SPのみ表示 */
@media screen and (max-width: 767px) {

  #footer {
    position: relative;
  }

  #pagetop_sp {
    display: block;
    position: absolute;
    right: 4px;
    bottom: 200px;
    z-index: 10;
  }

  #pagetop_sp a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 12px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: 0.2s ease;
  }

  #pagetop_sp a::after {
    content: "▲";
    font-size: 9px;
    line-height: 1;
  }

  #pagetop_sp a:active {
    transform: translateY(1px);
  }
}









/* =========================
   Footer
========================= */
.siteFooter {
  background: #fff;
  border-top: #f5f5f5 dotted 2px;
}

.siteFooter__inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 56px 24px 48px;
}

/* ロゴ */
.siteFooter__brand {
  margin-bottom: 28px;
}

.siteFooter__logoLink {
  display: inline-block;
}

.siteFooter__logo {
  width: 140px;
  height: auto;
  display: block;
}

/* ナビ（基本：2カラム） */
.siteFooter__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.siteFooter__col {
  min-width: 0;
}

.siteFooter__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.siteFooter__headIcon {
  width: 34px;
  height: 34px;
  display: block;
}

.siteFooter__headText {
  font-weight: 700;
  font-size: 14px;
}

/* 上段リンク */
.siteFooter__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}

.siteFooter__list a {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* 区切り線 */
.siteFooter__line {
  border: 0;
  border-top: 1px solid #e6e6e6;
  margin: 32px 0;
}

/* 下段リンク（デフォルトは縦並び） */
.siteFooter__bottomList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  text-align: left;
}

.siteFooter__bottomList a {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* SNS（既存 .menu_sns をフッター内だけ調整） */
.siteFooter__sns {
  margin-top: 28px;
}

/* 共通CSSが justify-content:center; margin-top:28px; を持つので
   フッター内では安全に上書きして見た目を固定 */
.siteFooter__sns .menu_sns {
  justify-content: center;
  margin-top: 0;
}

/* =========================
   PC（ロゴ + 2カラムナビ）
   - SNSは最下段・中央へ移動（横幅問題を回避）
   - 下段リンクは段組で2カラム化し、右カラムのズレを抑制
========================= */
@media (min-width: 768px) {

  .siteFooter__inner {
    padding: 56px 24px 48px;
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: 60px;
    align-items: start;
  }

  /* 上段 */
  .siteFooter__brand {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .siteFooter__nav {
    grid-column: 2;
    grid-row: 1;
  }

  /* 区切り線 */
  .siteFooter__line {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 36px 0;
  }

  /* 下段リンク（開始位置は「一般の方」と揃えたまま） */
  .siteFooter__bottom {
    grid-column: 2 / -1;
    grid-row: 3;
  }

  /* ▼ PCのみ：段組（columns）で2カラム（右カラムのズレを抑制） */
  .siteFooter__bottomList {
    display: block;
    /* gridをやめる */
    column-count: 2;
    column-gap: 56px;
  }

  .siteFooter__bottomList li {
    break-inside: avoid;
    margin: 0 0 12px;
  }

  .siteFooter__bottomList li:last-child {
    margin-bottom: 0;
  }

  /* SNS：最下段・中央 */
  .siteFooter__sns {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 32px;
    justify-self: center;
    align-self: end;
    text-align: center;
  }

  .siteFooter__sns .menu_sns {
    justify-content: center;
    /* 中央 */
    gap: 18px;
  }
}

/* =========================
   SP（デザイン反映）
   - ロゴ中央
   - メニューは2カラム
   - テキストリンクは左揃え
   - SNSは最下段中央
========================= */
@media (max-width: 767px) {

  .siteFooter__inner {
    padding: 40px 16px 40px;
  }

  /* ロゴのみ中央 */
  .siteFooter__brand {
    text-align: center;
    margin-bottom: 22px;
  }

  .siteFooter__logo {
    margin: 0 auto;
  }

  /* SPでも2カラム維持 */
  .siteFooter__nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* 見出しも左揃え */
  .siteFooter__head {
    justify-content: flex-start;
  }

  .siteFooter__line {
    margin: 22px 0;
  }

  .siteFooter__bottomList {
    gap: 14px;
  }

  /* SNSは最下段中央 */
  .siteFooter__sns {
    margin-top: 26px;
    text-align: center;
  }

  .siteFooter__sns .menu_sns {
    justify-content: center;
    gap: 18px;
  }
}

#news .box_index_news {
  height: 800px;
}


.area_shareArea_index{
background: var(--c-top-bg);
padding-bottom: 40px;
}

.shareArea {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 20px;
  background: #FFF;
  width: fit-content;
  margin: 0px auto;
  border-radius: 999px;
  border: solid 1px #666;
}

.shareArea__label {
  margin: 0;
  color: #333333;
  letter-spacing: .02em;
}

.shareArea__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.shareArea__list li {
  width: 35px;
  height: 35px;
}

.shareArea__btn {
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.shareArea__btn img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.shareArea__btn:hover {
  transform: translateY(-1px);
}


