@charset "UTF-8";

/*@media screen and (max-width: 834px) {

  body {
    overscroll-behavior: none;
  }
}*/

:root {
  --infobar-h_sp: 48px;
  --infobar-h_pc: 64px;
  --infobar-h-cur: var(--infobar-h_sp);
  --header-h_sp: 56px;
  --header-h_pc: 76px;
  --header-h-cur: var(--header-h_sp);
  --site-header-h_sp: calc(var(--infobar-h_sp) + var(--header-h_sp));
  --site-header-h_pc: calc(var(--infobar-h_pc) + var(--header-h_pc));
  --site-header-h-cur: var(--site-header-h_sp);

  --safe-area-top-raw: env(safe-area-inset-top, 0px);
  --safe-area-top-static: var(--safe-area-top-raw);
  --safe-area-top: clamp(0px,
      var(--safe-area-top-static, var(--safe-area-top-raw)),
      var(--infobar-h-cur));
  --site-header-offset-cur: calc(var(--site-header-h-cur) + var(--safe-area-top));
  --site-header-offset-main: calc(var(--header-h-cur) + var(--infobar-h-cur) + var(--safe-area-top));

  --site-footer-h_sp: 5vh;
  --site-footer-h_pc: 5vh;
  --site-footer-h-cur: var(--site-footer-h_sp);
  --base-c: rgba(13, 13, 13, 1);
  /*--brand-c: rgba(224, 67, 79, 1);*/
  --brand-c: rgba(229, 0, 18, 1);
  --text01-c: rgba(242, 242, 242, 1);
  --text02-c: rgba(32, 32, 32, 1);
  --text03-c: rgba(48, 48, 48, 1);
  --link-c: rgba(30, 90, 180, 1);
  --nolink-c: rgba(102, 102, 102, 1);
}

@media screen and (min-width: 835px) {
  :root {
    --infobar-h-cur: var(--infobar-h_pc);
    --header-h-cur: var(--header-h_pc);
    --site-header-h-cur: var(--site-header-h_pc);
    --site-footer-h-cur: var(--site-footer-h_pc);
  }
}

body {
  --scroll-lock-compensation: 0px;
  background: var(--base-c);
  color: var(--text01-c);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.max-area {
  width: 100%;
  min-height: 100vh;
  /* svh非対応ブラウザ向けフォールバック */
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

@supports (min-height: 100lvh) {
  @media screen and (max-width: 834px) {
    .max-area {
      min-height: 100lvh;
    }
  }
}

@supports (min-height: 100dvh) {
  @media screen and (min-width: 835px) {
    .max-area {
      min-height: 100dvh;
    }
  }
}

/* =========================================================
 * ヘッダー
 * ========================================================= */
.site-header-area {
  width: 100%;
  min-height: var(--site-header-offset-cur);
  margin: 0 auto;
  padding: var(--safe-area-top) 0 0;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  --header-offset-y: 0px;
  z-index: 1200;
}

.site-header-area.is-infobar-hidden {
  --header-offset-y: calc(-1 * var(--infobar-h-cur));
}

@media screen and (min-width: 835px) {
  .site-header-area.is-infobar-hidden {
    min-height: var(--header-h-cur);
    height: var(--header-h-cur);
    overflow: visible;
  }
}

html.nav-open .site-header {
  transition: none;
}

.site-header {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: transparent;
  transform: translate3d(0, clamp(calc(-1 * var(--infobar-h-cur)), var(--header-offset-y), 0px), 0);
  transition: transform 0.3s linear;
  will-change: transform;
}

@media screen and (min-width: 835px) {
  .site-header {
    transition: transform 0.3s ease;
    background-color: var(--base-c);
  }
}

@media screen and (max-width: 834px) {
  .site-header-area {
    --header-offset-y: 0px;
  }

  .site-header-area.is-infobar-hidden {
    --header-offset-y: 0px;
  }

  .site-header {
    transform: translate3d(0, 0, 0);
    transition: none;
  }
}

.infobar-area {
  width: 100%;
  height: var(--infobar-h-cur);
  margin: 0;
  padding: 6px 2vw 0;
  background-color: var(--base-c);
  display: flex;
  justify-content: center;
}

.infobar-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  container-type: inline-size;
}

.infobar-title-con {
  width: calc(100% * 4/8);
  max-width: 240px;
  /*padding-right: 5vw;*/
  display: flex;
  flex-direction: column;
}

.infobar-title-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

html:lang(zh-cmn-Hans) .infobar-title-con {
  width: calc(100% * 4/8 * 222/240);
  max-width: 222px;
}

html:lang(en) .infobar-title-con {
  width: calc(100% * 4/8 * 222/240);
  max-width: 222px;
}

.infobar-title-img01 {
  width: 100%;
  /*height: auto;*/
  margin-bottom: 4px;
}

.infobar-title-img02 {
  width: 100%;
  /*height: auto;*/
}

html:lang(en) .infobar-title-img02 {
  display: none;
}

.infobar-date-con {
  width: calc(100% * 3/8);
  max-width: 180px;
  /*padding-left: 5vw;*/
}

.infobar-date-img {
  width: 100%;
  height: auto;
}

.infobar-title-img01 img,
.infobar-title-img02 img,
.infobar-date-img img {
  width: 100%;
}

@media screen and (min-width: 835px) {
  .infobar-area {
    padding: 8px 2vw 0;
  }

  .infobar-title-con {
    width: 280px;
    max-width: 280px;
    padding: 0;
  }

  html:lang(zh-cmn-Hans) .infobar-title-con {
    width: 259px;
    max-width: 259px;
  }

  html:lang(en) .infobar-title-con {
    width: 259px;
    max-width: 259px;
  }

  .infobar-date-con {
    width: 210px;
    max-width: 210px;
    padding: 0;
  }
}

.header-area {
  width: 100%;
  height: var(--header-h-cur);
  margin: 0 auto;
  padding: 0 6vw 0 2vw;
  background-color: rgba(13, 13, 13, 0.75);
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 835px) {
  .header-area {
    padding: 0 2vw;
    background-color: rgba(13, 13, 13, 1);
  }
}

.header01-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  container-type: inline-size;
}

.sh-logo-area {
  width: 50%;
  padding-right: 4vw;
  display: flex;
  align-items: center;
}

.sh-logo-con {
  width: calc(48px * 4/3);
  height: 48px;
  /*ロゴ比率100×75px*/
  /*background-color: #fff;*/
}

@media screen and (min-width: 835px) {
  .sh-logo-con {
    width: calc(60px * 4/3);
    height: 60px;
  }
}

.sh-navi-area {
  width: 50%;
  margin: 0;
}

.nav01 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

/* =========================================================
 * 言語切り替えトグル
 * ========================================================= */
.lang-switch {
  position: relative;
  z-index: 2002;
}

/* 現在の言語ディレクトリ以外はJSで非表示 */
.lang-switch[hidden] {
  display: none !important;
}

.lang-toggle {
  width: 45px;
  height: 30px;
  appearance: none;
  background: transparent;
  color: var(--text01-c);
  border: 1px solid var(--text01-c);
  border-radius: 6px;
  font-size: 18px;
  font-family: "Lato", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background .32s ease-out, border-radius .32s ease-out;
}

/* デフォ非表示。JSで現在の言語ディレクトリだけ表示 */
.lang-toggle .lang-current {
  display: none;
}

.lang-toggle .lang-current:not([hidden]) {
  display: inline-block;
}

/* 開いている間は下辺をフラット&下枠透明（ポップオーバーと連結） */
.lang-switch[data-open="true"] .lang-toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

/* ポップオーバー */
.lang-popover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  /* トグルと同幅 */
  margin-top: -1px;
  /* 継ぎ目目立たせない */
  background: var(--text01-c);
  color: var(--base-c);
  border: 1px solid var(--text01-c);
  border-top: none;
  /* 上辺はトグルと一体化 */
  border-radius: 6px;
  /* 閉時アニメ初期値 */
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform-origin: top center;
  transform: scaleY(.12);
  max-height: 0;
  transition:
    transform 520ms cubic-bezier(.39, .575, .565, 1),
    opacity 420ms cubic-bezier(.39, .575, .565, 1),
    max-height 520ms cubic-bezier(.39, .575, .565, 1);
  will-change: transform, opacity, max-height;
  z-index: 2001;
}

/* 開いた時 */
.lang-switch[data-open="true"] .lang-popover {
  pointer-events: auto;
  opacity: 1;
  transform: scaleY(1);
  max-height: 420px;
  margin-top: -1px;
  border-width: 0 1px 1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-clip: padding-box;
}

.lang-popover.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: scaleY(1);
  max-height: 420px;
  margin-top: -1px;
  border-width: 0 1px 1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-clip: padding-box;
}

/* メニュー項目（現在言語はJSで非表示） */
.lang-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--base-c);
  font-size: 18px;
  font-family: "Lato", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1;
  height: 29px;
  /* トグルの高さと比較して調整 */
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transition: background .2s ease, opacity 380ms cubic-bezier(.39, .575, .565, 1) 80ms;
  border-top: 1px solid var(--base-c);
}

.lang-item[hidden] {
  display: none !important;
}

.lang-switch[data-open="true"] .lang-item {
  opacity: 1;
}

.lang-popover.is-open .lang-item {
  opacity: 1;
}

/* =========================================================
 * ハンバーガーメニュー
 * ========================================================= */
@media screen and (min-width: 835px) {

  body {
    overflow-y: scroll;
  }
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 1;
  /* 非表示 */
  /*display: none;*/
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text01-c);
  transition: transform .5s ease, opacity .2s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] {
  position: relative;
}

.hamburger[aria-expanded="true"] span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}



/* ドロワー */
.nav-drawer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  background: var(--base-c);
  color: var(--text01-c);
  /* 画面外から開始 */
  transform: translate3d(100%, 0, 0);
  /* ← 開く/閉じる両方向に同じカーブと時間を適用 */
  transition: transform 1.25s cubic-bezier(.16, 1, .3, 1);
  z-index: 1150;
  pointer-events: none;
  /* 閉じている間は操作不可 */
  backface-visibility: hidden;
  will-change: transform;
  contain: paint;
}

/* 開く */
.nav-drawer.nav-active {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  /* 開いている間だけ操作可 */
}

/* ドロワー内コンテンツ */
.drawer-inner {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;

  height: 100%;
  display: grid;
  align-content: start;
  /* アコーディオンで縦長になってもここがスクロール */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS滑らか */
  overscroll-behavior: contain;
  /* 背景へのスクロール連鎖を防止 */
  touch-action: pan-y;
  /* タッチ操作を縦スクロールに限定 */
  scrollbar-gutter: stable;
  padding-top: calc(var(--header-h, 0px) + 2em);
  padding-right: 0;
  padding-bottom: calc(2em + env(safe-area-inset-bottom));
  padding-left: 0;
  gap: 14px;
  background: var(--base-c);

  background-image: url("/assets/common/img/logo-G.webp");
  background-blend-mode: overlay;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: bottom 20vh center;
}

.drawer-left {
  width: 100%;
  /*background: var(--base-c);*/
  background: transparent;
  container-type: inline-size;
}

/* ティザー時用 */
.drawer-menu-teaser {
  display: grid;
  gap: 20px;

  /*非表示*/
  display: none;
}

.drawer-menu-teaser li {
  text-align: left;
  padding: 0;
  /* 360–834px：400px≈18px、834px≈28px */
  font-size: clamp(1.067rem, calc(0.549rem + 2.304vw), 1.750rem);
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  border-bottom: 2px solid var(--text01-c);
  color: inherit;
  background: transparent;
}

.drawer-menu-teaser li>a {
  display: block;
  padding: 12px 6px;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.drawer-menu-teaser li.nolink {
  color: var(--nolink-c);
  border-bottom: 2px solid var(--nolink-c);
}

/* 通常時用 */
.drawer-menu {
  display: grid;
  gap: 10px;
  padding-bottom: 10vh;

  /*非表示*/
  /*display: none;*/
}

/*@media screen and (min-width: 835px) {
  .drawer-menu {
    width: 60%;
  }
}*/

@media screen and (min-width: 835px) {

  #siteDrawer .drawer-menu a:hover,
  #siteDrawer .drawer-menu a:focus-visible,
  #siteDrawer .drawer-menu-teaser a:hover,
  #siteDrawer .drawer-menu-teaser a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}

/* 見出しボタン */
#siteDrawer .dm-acc {
  width: 100%;
  text-align: left;
  padding: 12px 6px;
  /*line-height: 1.4;*/
  /* 360-834px（400pxで18px、834pxで20px） */
  font-size: clamp(1.125rem, calc(1.00979rem + 0.46083vw), 1.25rem);
  letter-spacing: .02em;
  position: relative;
  /*border-bottom: 1px solid rgba(255, 255, 255, .15);*/
  border-bottom: 1px solid var(--text01-c);
  color: inherit;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

#siteDrawer .dm-acc:focus,
#siteDrawer .dm-acc:active {
  outline: none;
  box-shadow: none;
  border-bottom-color: var(--text01-c);
}

#siteDrawer .dm-acc:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .45);
  outline-offset: 2px;
}

#siteDrawer .dm-acc.nolink {
  color: var(--nolink-c);
  border-bottom: 1px solid var(--nolink-c);
}

.drawer-menu .dm-item {
  /* 360-834px（400pxで18px、834pxで20px） */
  font-size: clamp(1.125rem, calc(1.00979rem + 0.46083vw), 1.25rem);
  letter-spacing: .02em;
  color: var(--text01-c);
  text-decoration: none;
  border-bottom: 1px solid var(--text01-c);
}

.drawer-menu .dm-item.nolink {
  color: var(--nolink-c);
  border-bottom: 1px solid var(--nolink-c);
}

.drawer-menu .dm-item a {
  display: block;
  padding: 12px 6px;
  -webkit-tap-highlight-color: transparent;
}

.drawer-menu .dm-item a:focus,
.drawer-menu .dm-item a:active {
  outline: none;
  background: transparent;
}

.drawer-menu .dm-item a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .45);
  outline-offset: 2px;
}

/* ラベル（見出しテキスト） */
#siteDrawer .dm-label {
  pointer-events: none;
}

#siteDrawer .dm-label.nolink {
  color: var(--nolink-c);
}

#siteDrawer .dm-sub {
  margin-top: 20px;
  display: grid;
}

@media screen and (min-width: 835px) {
  .drawer-inner {
    background-size: 50%;
    background-position: bottom 20px center;
  }

  #siteDrawer .dm-sub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }
}

#siteDrawer .dm-sub a {
  display: block;
  padding: 10px 6px;
  /*font-size: 16px;*/
  /* 360-834px（400pxで16px、834pxで18px） */
  font-size: clamp(0.988479rem, calc(0.884793rem + 0.460829vw), 1.125rem);
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* ▼ アコーディオン内（dm-sub）の下罫線を消す */
#siteDrawer .drawer-menu .dm-sub>li,
#siteDrawer .drawer-menu .dm-sub>li>a {
  border-bottom: 0;
  border: 0;
  /* li側に境界線がある実装にも対応 */
  box-shadow: none;
  /* 線を影で表現している場合にも対応 */
  background-image: none;
  /* グラデで線風の演出がある場合にも対応 */
}

/* CTA（任意で調整） */
#siteDrawer .dm-cta>a {
  display: block;
  margin-top: 24px;
  padding: 12px 16px;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 24px;
}

/* nolink（クリック無効・減色） */
#siteDrawer li.nolink {
  color: var(--nolink-c);
}

/* ＋／－アイコン（疑似要素2本線で描画） */
#siteDrawer .dm-acc .dm-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  color: currentColor;
}

/* 横棒（常時） */
#siteDrawer .dm-acc .dm-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  transition: opacity 240ms ease;
}

/* 縦棒：閉=表示 / 開=縮小（－化） */
#siteDrawer .dm-acc .dm-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 100%;
  background: currentColor;
  transform: translate(-50%, -50%) scaleY(1);
  transform-origin: 50% 50%;
  transition: transform 720ms cubic-bezier(.22, 1, .36, 1), opacity 260ms ease;
}

#siteDrawer .dm-acc[aria-expanded="true"] .dm-icon::before {
  transform: translate(-50%, -50%) scaleY(0.0001);
  opacity: .9;
}


.drawer-scroll-controls {
  display: none;
}

.drawer-scroll-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--text01-c);
  background: transparent;
  color: var(--text01-c);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.drawer-scroll-btn:hover,
.drawer-scroll-btn:focus-visible {
  background-color: rgba(242, 242, 242, 0.12);
  border-color: rgba(242, 242, 242, 0.9);
  outline: none;
}

.drawer-scroll-btn:active {
  background-color: rgba(242, 242, 242, 0.2);
}

.drawer-scroll-btn:disabled {
  opacity: 1;
  color: var(--nolink-c);
  border-color: var(--nolink-c);
  cursor: default;
  background-color: transparent;
}

.drawer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /*background: var(--base-c);*/
  background: transparent;
  container-type: inline-size;
}

.drawer-info01 {
  display: none;
}

.drawer-info02 {
  display: none;
}

@media screen and (min-width: 1024px) {
  .drawer-inner {
    grid-template-columns: minmax(480px, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "left right"
      "controls right";
    align-items: stretch;
    overflow-y: hidden;
    column-gap: 1.5rem;
  }

  .drawer-left {
    grid-area: left;
    width: 100%;
    align-self: stretch;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .drawer-left::-webkit-scrollbar {
    display: none;
  }

  .drawer-menu {
    padding-bottom: 0;
  }

  #siteDrawer .drawer-menu {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 1.5rem;
  }

  #siteDrawer .drawer-menu>li {
    grid-column: 1 / -1;
  }

  #siteDrawer #dm-11-01,
  #siteDrawer #dm-12-01 {
    grid-column: auto;
    margin-top: 20px;
  }

  .drawer-scroll-controls {
    grid-area: controls;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0 0;
    padding: 0.5rem 0;
    align-self: start;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .drawer-scroll-controls.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .drawer-right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /*min-width: 480px;*/
  }

  .drawer-info01 {
    width: 90%;
    margin: 0 auto 0;
    display: block;
  }

  .drawer-title-img01 {
    width: 100%;
    margin: 0 auto 0;
  }

  .drawer-title-img02 {
    width: 100%;
    margin: min(1.5cqw, 18px) auto 0;
  }

  html:lang(en) .drawer-title-img02 {
    display: none;
  }

  .drawer-date-img {
    width: 100%;
    margin: min(3cqw, 36px) auto 0;
  }

  .drawer-title-img01 img,
  .drawer-title-img02 img,
  .drawer-date-img img {
    width: 100%;
  }

  .drawer-info02 {
    width: 90%;
    margin: 3em auto 0;
    display: block;
  }

  .drawer-place-con01 {
    width: 100%;
    margin: 0 auto 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .drawer-place-text01 {
    margin: 0;
    padding: 0.25em 1.25em 0.25em;
    /*1024–1600px：1024px=14px、1600px=16px*/
    font-size: clamp(0.875rem, calc(0.653rem + 0.347vw), 1.000rem);
    font-weight: 600;
    color: var(--text01-c);
    border: 2px solid var(--text01-c);
    border-radius: 999px;
  }

  .drawer-place-text02 {
    margin: 0;
    padding: 0.5em 0 0;
    /*1024–1600px：1024px=20px、1600px=24px*/
    font-size: clamp(1.250rem, calc(0.806rem + 0.694vw), 1.500rem);
    font-weight: 600;
    color: var(--text01-c);
  }

  .drawer-place-con02 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .border-round {
    --dot: 5px;
    /* ドット直径（＝線の太さ） */
    --gap: 10px;
    /* ドット間のピッチ */
    --color: var(--text01-c);
    /* 色 */
    /* 端欠け防止：左右に半径ぶんインセット */
    padding-inline: calc(var(--dot) / 2);
  }

  .border-round_svg {
    display: block;
    inline-size: 100%;
    /* 幅いっぱい。成り行きにしたいなら fit-content に */
    block-size: var(--dot);
    /* 高さ＝ドット径 */
    overflow: visible;
    /* 念のため、はみ出し許可 */
  }

  .border-round_svg line {
    stroke: var(--color);
    stroke-width: var(--dot);
    stroke-linecap: round;
    stroke-dasharray: 0 var(--gap);
    /* 丸ドットの並び */
    stroke-dashoffset: 0;
    /* ずらしたい時は var(--dot)/2 など */
    vector-effect: non-scaling-stroke;
  }

  .drawer-place-text03 {
    display: inline-block;
    margin: 0;
    padding: 1em 0 0;
    /*1024–1600px：1024px=18px、1600px=22px*/
    font-size: clamp(1.125rem, calc(0.681rem + 0.694vw), 1.375rem);
    font-weight: 600;
    color: var(--text01-c);
    text-align: left;
  }

  .drawer-place-text03 span {
    /*padding-left: 0.5em;*/
    /*1024–1600px：1024px=14px、1600px=16px*/
    font-size: clamp(0.875rem, calc(0.653rem + 0.347vw), 1.000rem);
  }
}





/* オーバーレイ */
.nav-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
  z-index: 1000;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity .5s ease;
}

/* 透明だけどクリックを拾うオーバーレイ（= 画面は明るいまま） */
.nav-overlay.active-bright {
  opacity: 0;
  /* 透明 */
  pointer-events: auto;
  /* 背景クリックをブロックして、タップで閉じられる */
  transition: opacity 0s linear;
}


/* 背景固定（開いている間だけ） */
body.nav-fixed {
  position: fixed;
  width: 100%;
  /* top は JS で動的に設定（スクロール位置維持） */
}

/* 初回チラつき対策：JSが .js-ready を付けるまで遷移を無効化 */
/*html:not(.js-ready) .nav-drawer,
html:not(.js-ready) .nav-overlay {
  transition: none !important;
}*/

/* 初回チラつき対策：JSが .js-ready を付けるまでドロワーだけ遷移オフにする（オーバーレイは許可） */
html:not(.js-ready) .nav-drawer {
  transition: none !important;
}

/* オーバーレイのフェードは常に有効にする（初回でも） */
html:not(.js-ready) .nav-overlay {
  transition: opacity .25s ease !important;
  /* 好みで時間変更OK */
}

/* 念のため：初回は必ずオフスクリーンから開始させる（既定もそうだが保険） */
html:not(.js-ready) #nav {
  transform: translate3d(100%, 0, 0) !important;
}



/* =========================================================
 * フッター
 * ========================================================= */
.site-footer-area {
  width: 100%;
  min-height: var(--site-footer-h-cur);
  padding-bottom: env(safe-area-inset-bottom);
  /* iOS下部安全域 */
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.site-footer-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(13, 13, 13, 0.75);
  z-index: 0;
}

.footer05-area {
  width: 100%;
  margin: 0 auto;
  /*background: #0D0D0D;*/
  /*color: #F2F2F2;*/
  padding: 20px;
  position: relative;
  z-index: 1;
}

.footer05-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer05-menu {
  /*360–834px：400px≈12px、834px≈14px*/
  font-size: clamp(0.750rem, calc(0.635rem + 0.461vw), 0.875rem);
  text-align: center;
  color: var(--text01-c);
}

.sf-copyright {
  width: 100%;
  padding: 1em 0;
  /*360–834px：400px≈10px、834px≈12px*/
  font-size: clamp(0.614rem, calc(0.510rem + 0.461vw), 0.750rem);
  font-family: "Lato", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  text-align: center;
  color: var(--text01-c);
  position: relative;
  z-index: 1;
}

/* =========================================================
 * 固定背景
 * ========================================================= */
.bg-fixed-area {
  width: 100%;
  min-height: 0;
  position: relative;
}

.bg-fixed-area::before {
  content: "";
  display: block;
  position: fixed;
  /*top: var(--site-header-offset-cur); */
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  /* lvh非対応ブラウザ向けフォールバック */
  height: 100vh;
  background-color: var(--base-c);
  background-image: url("/assets/common/img/bg-img01.webp");
  /*background-blend-mode: overlay;*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

/*@media print,
screen and (min-width: 835px) {
  .bg-fixed-area::before {
    background-image: url("/assets/common/img/bg-img01.webp");
    background-size: cover;
    background-position: bottom center;
  }
}*/

@supports (height: 100lvh) {
  .bg-fixed-area::before {
    height: 100lvh;
  }
}

/* =========================================================
 * main
 * ========================================================= */
.site-main {
  width: 100%;
  min-height: calc(100vh - var(--site-header-offset-main) - var(--site-footer-h-cur));
  /* svh非対応ブラウザ向けフォールバック */
  min-height: calc(100svh - var(--site-header-offset-main) - var(--site-footer-h-cur));
  margin: var(--site-header-offset-main) auto 0;
  display: grid;
  align-items: center;
}

@media screen and (min-width: 835px) {
  .site-header-area.is-infobar-hidden~.site-main {
    --site-header-offset-main: calc(var(--header-h-cur) + var(--safe-area-top));
  }
}

@supports (min-height: 100lvh) {
  @media screen and (max-width: 834px) {
    .site-main {
      min-height: calc(100lvh - var(--site-header-offset-main) - var(--site-footer-h-cur));
    }
  }
}

@supports (min-height: 100dvh) {
  @media screen and (min-width: 835px) {
    .site-main {
      min-height: calc(100dvh - var(--site-header-offset-main) - var(--site-footer-h-cur));
    }
  }
}


/* =========================================================
 * section
 * ========================================================= */
.title {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: var(--base-c);

  /*非表示*/
  /*display: none;*/
}

.page-title {
  width: min(96%, 1440px);
  margin: 0 auto;
  padding: 0.5em 0 0;
  /*360–834px：400px≈22px、834px≈36px*/
  font-size: clamp(1.294rem, calc(0.569rem + 3.226vw), 2.250rem);
  color: var(--text01-c);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  text-align: center;
  line-height: 1.25;
  font-weight: 600;
}

.page-title::before,
.page-title::after {
  content: "";
  flex: 1 1 0;
  height: 2px;
  background-color: currentColor;
}

.hero {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0;
  align-self: center;
}

.hero-wide {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0;
  align-self: center;
}

.hero-full {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  align-self: center;
}

.content {
  /*width: min(92%, 1200px);*/
  width: min(95%, 1200px);
  margin: 0 auto;
  padding: 0;
  align-self: center;
}

.content-wide {
  /*width: min(92%, 1440px);*/
  width: min(95%, 1440px);
  margin: 0 auto;
  padding: 0;
  align-self: center;
}

.content-full {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  align-self: center;
}

.content-con {
  width: 100%;
  margin: 0 auto;
  height: auto;
  container-type: inline-size;
}

.content-bg-con {
  width: 100%;
  margin: 0 auto;
  height: auto;
  padding: 6vw 5vw 9vw;
  border-radius: 16px;
  position: relative;
  background-color: transparent;
  container-type: inline-size;
}

.content-bg-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.content-bg-inner-wide {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-bg-inner-full {
  width: 100%;
  margin: 0 auto;
}

.content-bg-con::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
}

.content-bg-con>* {
  position: relative;
  z-index: 1;
}

.content-title {
  /*display: inline-block;*/
  margin: 0 0 0.75em;
  /*360–834px：400px≈24px、834px≈40px*/
  font-size: clamp(1.5rem, calc(0.5rem + 4vw), 2.5rem);
  font-weight: 700;
  color: var(--text03-c);
  text-align: center;
}

.block-title {
  display: flex;
  align-items: flex-start;
  margin: 2em 0 0.75em;
  padding-bottom: 0.375em;
  /*360–834px：400px≈20px、834px≈28px*/
  font-size: clamp(1.204rem, calc(0.789rem + 1.843vw), 1.750rem);
  font-weight: 600;
  color: var(--text03-c);
  border-bottom: 2px solid var(--text03-c);
}

.block-title::before {
  content: "";
  width: 10px;
  height: 1.25em;
  margin-right: 0.5em;
  margin-top: 0.25em;
  background-color: currentColor;
  flex: 0 0 auto;
}

.part-title {
  margin: 0 0 0.5em;
  padding-bottom: 0.375em;
  /*360–834px：400px≈18px、834px≈20px*/
  font-size: clamp(1.113rem, calc(1.010rem + 0.461vw), 1.250rem);
  font-weight: 600;
  color: var(--text03-c);
  border-bottom: 1px solid var(--text03-c);
}

@media print,
screen and (min-width: 835px) {

  .page-title::before,
  .page-title::after {
    height: 2px;
  }

  .content-bg-con {
    padding: clamp(24px, 4cqw, 48px) clamp(32px, 5cqw, 64px) clamp(32px, 6cqw, 64px);
  }
}



/* =========================================================
 * ボタン01
 * ========================================================= */
.btn01-con {
  width: 100%;
  margin: 0 auto 0;
  text-align: center;
}

.announce-link {
  --announce-arrow-gap: clamp(20px, calc(12px + 1vw), 32px);
  --announce-arrow-size: 28px;
  min-width: clamp(240px, 75vw, 360px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: fit-content;
  margin-inline: auto;
  padding: 0.5em 1em 0.625em;
  /*360–834px：400px≈20px、834px≈36px*/
  font-size: clamp(1.158rem, calc(0.328rem + 3.687vw), 2.25rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text01-c);
  text-align: center;
  text-decoration: none;
  border-top: 3px solid var(--text01-c);
  border-bottom: 3px solid var(--text01-c);
}

.announce-link::before {
  content: "";
  width: var(--announce-arrow-size);
  height: var(--announce-arrow-size);
  flex: 0 0 var(--announce-arrow-size);
  margin-right: var(--announce-arrow-gap);
  visibility: hidden;
}

.announce-link__label {
  display: inline-block;
}

.announce-link__arrow {
  width: var(--announce-arrow-size);
  height: auto;
  display: block;
  flex: 0 0 var(--announce-arrow-size);
  margin-left: var(--announce-arrow-gap);
}

.announce-link:focus-visible {
  outline: 2px solid var(--brand-c);
  outline-offset: 4px;
}

@media screen and (min-width: 835px) {
  .announce-link {
    --announce-arrow-size: 36px;
    min-width: clamp(240px, 50vw, 480px);
    border-top: 4px solid var(--text01-c);
    border-bottom: 4px solid var(--text01-c);
  }

  .announce-link__arrow {
    width: var(--announce-arrow-size);
  }

  .announce-link:hover .announce-link__arrow {
    animation: announce-link-arrow-hover 0.5s ease-in-out;
  }
}

/* =========================================================
 * ボタン02
 * ========================================================= */
.btn02-con {
  width: 100%;
  margin: 0 auto 0;
  text-align: center;
}

.btn-apply {
  --btn-apply-face-color: #E0434F;
  /* 前面 */
  --btn-apply-rail-color: #F7B6C3;
  /* 背面 */
  --btn-apply-width: clamp(240px, 80cqw, 360px);
  --btn-apply-height: 64px;
  /* 高さ */
  --btn-apply-padding-x: 24px;
  /* 左右パディング */
  --btn-apply-gap: 24px;
  /* テキストと矢印の間隔 */
  --btn-apply-offset-x: 10px;
  /* 背面の水平ズレ */
  --btn-apply-offset-y: 10px;
  /* 背面の垂直ズレ */
  --btn-apply-arrow-width: 28px;
  /* 矢印の見た目幅 */
  width: var(--btn-apply-width);
  position: relative;
  display: inline-block;
  /* コンテンツ幅にフィット */
  line-height: 1;
  text-decoration: none;
  color: var(--text01-c);
}

/* 背面（薄ピンク） */
.btn-apply__rail {
  position: absolute;
  inset: 0;
  /* 前面と同形状にフィット */
  background: var(--btn-apply-rail-color);
  transform: translate(var(--btn-apply-offset-x), var(--btn-apply-offset-y));
  /* 右＋下にずらす */
  z-index: 0;
  border-radius: 0;
  /* 角丸なし */
  pointer-events: none;
}

/* 前面（濃ピンク） */
.btn-apply__face {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--btn-apply-height);
  padding: 0 var(--btn-apply-padding-x);
  gap: var(--btn-apply-gap);
  background: var(--btn-apply-face-color);
  border-radius: 0;
  /* 角丸なし */
}

.btn-apply__label {
  /*360–834px：400px≈16px、834px≈20px*/
  /*font-size: clamp(0.977rem, calc(0.770rem + 0.922vw), 1.250rem);*/
  /*360–834px：400px≈18px、834px≈20px*/
  font-size: clamp(1.125rem, calc(1rem + 0.5vw), 1.25rem);
  font-weight: 600;
  color: var(--text01-c);
  white-space: nowrap;
}

.btn-apply__arrow {
  width: var(--btn-apply-arrow-width);
  height: auto;
  display: block;
  flex: 0 0 var(--btn-apply-arrow-width);
}

@keyframes announce-link-arrow-hover {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes btn-apply-arrow-hover {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

@media screen and (min-width: 835px) {
  .btn-apply:hover .btn-apply__arrow {
    animation: btn-apply-arrow-hover 0.5s ease-in-out;
  }
}

/* =========================================================
 * ボタン03
 * ========================================================= */
.btn03-con {
  width: 100%;
  margin: 0 auto 0;
  text-align: center;
}

.announce-btn {
  --announce-arrow-gap: clamp(20px, calc(12px + 1vw), 32px);
  --announce-arrow-size: 28px;
  min-width: clamp(240px, 75vw, 360px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: fit-content;
  margin-inline: auto;
  padding: 0.5em 1em 0.625em;
  /*360–834px：400px≈20px、834px≈36px*/
  /*font-size: clamp(1.158rem, calc(0.328rem + 3.687vw), 2.25rem);*/
  /* 360–1264px：400px≈19px、1264px≈32px */
  font-size: clamp(1.150rem, calc(0.811rem + 1.505vw), 2rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text01-c);
  text-align: center;
  text-decoration: none;
  border: 3px solid var(--text01-c);
  border-radius: 9999px;
}

.announce-btn::before {
  content: "";
  width: var(--announce-arrow-size);
  height: var(--announce-arrow-size);
  flex: 0 0 var(--announce-arrow-size);
  margin-right: var(--announce-arrow-gap);
  visibility: hidden;
}

.announce-btn__label {
  display: inline-block;
}

.announce-btn__arrow {
  width: var(--announce-arrow-size);
  height: auto;
  display: block;
  flex: 0 0 var(--announce-arrow-size);
  margin-left: var(--announce-arrow-gap);
}

.announce-btn:focus-visible {
  outline: 2px solid var(--brand-c);
  outline-offset: 4px;
}

@media screen and (min-width: 835px) {
  .announce-btn {
    --announce-arrow-size: 36px;
    min-width: clamp(240px, 50vw, 480px);
    border-width: 4px;
  }

  .announce-btn__arrow {
    width: var(--announce-arrow-size);
  }

  .announce-btn:hover .announce-btn__arrow {
    animation: announce-link-arrow-hover 0.5s ease-in-out;
  }
}

/* =========================================================
 * モーダル（共通）
 * ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  background: var(--base-c);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.modal[hidden] {
  display: none;
}

.modal-dialog {
  width: min(1080px, 100%);
  background: var(--base-c);
  /*border-radius: 16px;*/
  padding: 0 0 16px;
  position: relative;
  /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);*/
}

@media screen and (max-width: 640px) {
  .modal {
    padding: 0;
  }

  .modal-dialog {
    width: min(640px, 100vw);
  }

  .modal-close {
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.modal iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  /*border-radius: 16px 16px 0 0;*/
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  color: var(--text01-c);
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
}

.modal-title {
  /* 360-834px（400pxで16px、834pxで18px） */
  font-size: clamp(0.988479rem, calc(0.884793rem + 0.460829vw), 1.125rem);
  font-weight: 600;
  color: var(--text01-c);
  margin: 16px 24px 0;
  line-height: 1.6;
}

/* =========================================================
 * Cookie同意（cookie-consent.js）
 * ========================================================= */
#cc-min[hidden] {
  display: none !important;
}

.ccm-wrap {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 12px;
  z-index: 10000;
  background: transparent;
}

.ccm-bar {
  /*width: min(1200px, 100%);*/
  width: 100%;
  color: #fff;
  background: rgba(36, 36, 36, 0.92);
  -webkit-backdrop-filter: saturate(120%) blur(4px);
  backdrop-filter: saturate(120%) blur(4px);
  border-radius: 12px;
  padding: 16px 20px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.ccm-text {
  margin: 0;
  font-size: clamp(0.813rem, 0.718rem + 0.42vw, 0.938rem);
  display: inline-block;
  text-align: left;
}

.ccm-actions {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}

.ccm-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  text-align: center;
}

.ccm-accept {
  appearance: none;
  cursor: pointer;
  border: 0;
  border-radius: 9999px;
  padding: 10px 16px;
  font-weight: 600;
  color: #0d0d0d;
  background: #ffffff;
  line-height: 1;
  transition:
    transform 0.06s ease,
    box-shadow 0.2s ease,
    background-color 0.5s ease,
    color 0.5s ease;
  width: 80%;
  min-width: 200px;
  max-width: 300px;
  margin: 5px auto;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

@media (min-width: 835px) {
  .ccm-accept:hover {
    background-color: #d44269;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  }
}

.ccm-accept:active {
  transform: translateY(0);
  box-shadow: none;
}

/* =========================================================
 * ユーティリティ
 * ========================================================= */
@media screen and (max-width: 399px) {
  .sp-ss_none {
    display: none;
  }
}

@media screen and (min-width: 400px) and (max-width: 639px) {
  .sp-s_none {
    display: none;
  }
}

@media screen and (min-width: 640px) and (max-width: 834px) {
  .sp-m_none {
    display: none;
  }
}

@media screen and (max-width: 834px) {
  .sp_none {
    display: none;
  }
}

@media print,
screen and (min-width: 835px) {
  .pc_none {
    display: none;
  }
}

.text-jp {
  font-family: "Noto Sans JP", "Noto Sans", "Noto Sans SC",
    system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.text01-cn {
  font-family: "Noto Sans SC", "Noto Sans", "Noto Sans JP",
    system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.text-en {
  font-family: "Noto Sans", "Noto Sans JP", "Noto Sans SC",
    system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.dummy {
  height: 0;
}

.nolink {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.text-em {
  padding: 0 0.25em;
  font-size: 1.125em;
  font-weight: 600;
}

.text-bold {
  font-weight: 600;
}

.text-red {
  color: rgba(224, 67, 79, 1);
}

.text-right {
  text-align: right;
}

.mt1L {
  margin-top: 1em;
}

.mt2L {
  margin-top: 2em;
}

.mb1L {
  margin-bottom: 1em;
}

.mb2L {
  margin-bottom: 2em;
}