/* ============================================
   CSS変数
============================================ */
:root {
  --transition: all 0.3s ease;
  --floating-height: 13rem;
  --font-size-default: 14px;
  --font-size-headline: 18px;
  --color-white: #fff;
  --color-black: #000;
  --color-pink: #E82391;
  --color-orange: #F9AA00;
  --color-yellow: #FFE940;
  --color-green: #7DBB28;
  --color-blue: #009BE2;
  --color-purple: #633F90;
  --color-gray: #EAEAEA;
  --color-lightgray: #F5F5F5;
  --color-darkgray: #9D9D9D;
  --color-line: #676767;
  --color-sat: #EA6433;
  --color-sun: #1175D5;
  --color-danger: #C9010B;
  --color-bg-program: #1F56C2;
  --color-bg-course: #00AA1F;
  --color-bg-areamap: #F93624;
  --color-light-pink: #FFE4F3;
  --color-light-orange: #FFEDC7;
  --color-light-blue: #DDF4FF;
  --color-light-green: #EAF8D6;
  --font-bold-eng: "Montserrat", sans-serif;
  --gradient01: linear-gradient(45deg, #EF077B, #FFE232, #019700, #1DA2E9);
  --gradient02: linear-gradient(45deg, #EF077B, #FFE232);
  --gradient03: linear-gradient(45deg, #E45B2A, #F2BC0A);
  --gradient04: linear-gradient(45deg, #7DBB28, #578F0A);
  --gradient-header-tab: linear-gradient(93.5deg, #F82098 5.54%, #045087 64.77%);
  --bg-floating-entry: var(--color-yellow);
  --bg-btn-entry-blue: linear-gradient(165deg, #0163cb 47.01%, #005bbb 47.01%);
  --bg-btn-entry-orange: linear-gradient(165deg, #e24f01 47.01%, #d64a00 47.01%);
  --bg-btn-entry-pink: linear-gradient(165deg, #da355e 47.01%, #ca1d48 47.01%);
  --design-width: 1440;
}

/* ============================================
   リセット・基本設定
============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}
html, body {
  font-family: 'Noto Sans JP', sans-serif;
  overscroll-behavior: none;
}
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, figcaption,
blockquote, pre,
dl, dt, dd {
  margin: 0;
  padding: 0;
}

/* ============================================
   フォント
============================================ */
.bold-eng {
  font-family: var(--font-bold-eng);
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.bold-eng.bolder {
  font-weight: 800;
}

/* ============================================
   テキストカラー
============================================ */
.text-pink {
  color: var(--color-pink);
}
.text-orange {
  color: var(--color-orange);
}
.text-blue {
  color: var(--color-blue);
}
.text-green {
  color: var(--color-green);
}
.text-white {
  color: var(--color-white);
}
.text-dark {
  color: var(--color-black);
}
.text-gradient {
  background: var(--gradient01);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   背景カラー
============================================ */
.bg-sand {
  position: relative;
}
.bg-sand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../img/2026/bg-sand.webp');
  background-repeat: repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.bg-insta {
  background-image: url('../img/2026/bg-sns.webp');
  background-position: center 40%;
  background-repeat: no-repeat;
  background-size: 110%;
}
.bg-pink { background-color: var(--color-pink); }
.bg-orange { background-color: var(--color-orange); }
.bg-blue { background-color: var(--color-blue); }
.bg-green { background-color: var(--color-green); }
.bg-entry-blue { background: var(--bg-btn-entry-blue); }
.bg-entry-orange { background: var(--bg-btn-entry-orange); }
.bg-entry-pink { background: var(--bg-btn-entry-pink); }
.bg-gradient-2 { background: var(--gradient02); }

/* ============================================
   画像
============================================ */
img {
  max-width: 100%;
}

/* ============================================
   リンク・ホバー
============================================ */
a {
  text-decoration: none;
  color: black;
  transition: all .3s ease-out;
}
a.text-link {
  text-decoration: underline;
}
a:not(.text-link),
.link-hover {
  transition: all .3s ease-out;
  cursor: pointer;
}
a:not(.text-link):hover,
.link-hover:hover {
  opacity: 0.6;
}

/* ============================================
   ヘッダー
============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: .5rem;
}
.header-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 12.4rem;
  height: 7rem;
  padding: 0 1rem;
  background-color: var(--color-white);
  border-bottom-right-radius: 1rem;
}
.header-logo {
  width: 100%;
  height: auto;
  margin-right: .2rem;
}
.header-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  background: var(--gradient-header-tab);
  text-decoration: none;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.header-tab__text {
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}
.header-nav-btn {
  position: fixed;
  top: 2rem;
  right: 1rem;
  z-index: 1001;
  background-color: var(--color-danger);
  border: 3px solid var(--color-white);
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 2.4rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.header-nav-btn__balloon {
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  background: var(--color-yellow);
  border-radius: 2rem;
  padding: 0.4rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 900;
  white-space: nowrap;
  line-height: 1;
  color: var(--color-black);
}
.header-nav-btn__balloon::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  border: 1.3rem solid transparent;
  border-right-color: var(--color-yellow);
  border-bottom-width: 1rem;
  border-top-width: 0;
}
.header-nav-btn__bars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-shrink: 0;
}
.header-nav-btn__bar {
  display: block;
  width: 2rem;
  height: .2rem;
  background-color: var(--color-white);
}
.header-nav-btn__label {
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .header-nav-btn {
    top: clamp(2rem, calc(30 / 1440 * 100vw), 3rem);
    right: clamp(0.6rem, calc(10 / 1440 * 100vw), 1rem);
    border-width: clamp(2px, calc(3 / 1440 * 100vw), 3px);
    gap: clamp(0.6rem, calc(10 / 1440 * 100vw), 1rem);
    padding: clamp(0.8rem, calc(12 / 1440 * 100vw), 1.2rem) clamp(1.6rem, calc(24 / 1440 * 100vw), 2.4rem);
  }
  .header-nav-btn__balloon {
    top: clamp(-2rem, calc(-20 / 1440 * 100vw), -1rem);
    left: clamp(-1rem, calc(-10 / 1440 * 100vw), -0.5rem);
    padding: clamp(0.25rem, calc(4 / 1440 * 100vw), 0.4rem) clamp(0.8rem, calc(12 / 1440 * 100vw), 1.2rem);
    font-size: clamp(0.9rem, calc(13 / 1440 * 100vw), 1.3rem);
  }
  .header-nav-btn__balloon::after {
    bottom: clamp(-1rem, calc(-10 / 1440 * 100vw), -0.6rem);
    left: clamp(0.3rem, calc(5 / 1440 * 100vw), 0.5rem);
    border-width: clamp(0.9rem, calc(14 / 1440 * 100vw), 1.4rem);
    border-bottom-width: clamp(0.6rem, calc(10 / 1440 * 100vw), 1rem);
  }
  .header-nav-btn__bars {
    gap: clamp(0.5rem, calc(8 / 1440 * 100vw), 0.8rem);
  }
  .header-nav-btn__bar {
    width: clamp(1.4rem, calc(20 / 1440 * 100vw), 2rem);
    height: clamp(0.15rem, calc(2 / 1440 * 100vw), 0.2rem);
  }
  .header-nav-btn__label {
    font-size: clamp(1.2rem, calc(18 / 1440 * 100vw), 1.8rem);
  }
}
@media (min-width: 801px) {
  .header-logo-link,
  .header-tab {
    display: none;
  }
}

/* ============================================
   HEADER MODAL
============================================ */
.header-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100dvh;
  z-index: 1001;
  background: #111;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow-y: auto;
}
.header-modal.is-open {
  transform: translateY(0);
  pointer-events: auto;
}
.header-modal__tab-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}
.header-modal__close {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0;
  line-height: 1;
}
/* ×アイコン（spanバー構成） */
.close-icon {
  position: relative;
  display: inline-flex;
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
}
.close-icon__bar {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform-origin: center;
}
.close-icon__bar:nth-child(1) { transform: translateY(-50%) rotate(45deg); }
.close-icon__bar:nth-child(2) { transform: translateY(-50%) rotate(-45deg); }
.header-modal__body {
  padding: 0 2rem;
}
.header-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.header-modal__item {
  text-align: center;
}
.header-modal__item a {
  display: block;
  max-width: 29rem;
  margin: 0 auto;
}
body.no-scroll {
  overflow: hidden;
}
@media (min-width: 801px) {
  .header-modal {
    display: none;
  }
}

/* ============================================
   NAV MODAL
============================================ */
.nav-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1002;
  background: #121212;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-modal.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.nav-modal__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
}
.nav-modal__home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 5rem;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.nav-modal__home-btn:hover {
  opacity: 0.8;
  color: var(--color-black);
}
.nav-modal__home-btn img.icon-home {
  width: 1.8rem;
  height: auto;
  margin: .4rem .2rem;
  margin-right: auto;
}
.nav-modal__close {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0;
  line-height: 1;
}
.nav-modal__body {
  flex: 1;
  padding: 0 2rem;
}
.nav-modal__program {
  background: var(--color-black);
  border-radius: 1.2rem;
  padding: 1rem;
  margin-bottom: 2rem;
}
.nav-modal__program-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}
.nav-modal__program-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.nav-modal__program-btn {
  display: block;
  width: 100%;
  padding: 1.5rem 0;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.nav-modal__program-btn:hover {
  opacity: 0.85;
  color: var(--color-white);
}
.nav-modal__nav-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 4rem;
  width: calc(100% - 4rem);
  display: grid;
  gap: 1.6rem;
}
.nav-modal__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.4rem;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 500;
}
.nav-modal__nav-link::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid var(--color-white);
  border-top: 2px solid var(--color-white);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.nav-modal__nav-link:hover {
  opacity: 0.7;
  color: var(--color-white);
}
.nav-modal__insta .bi {
  font-size: 2.2rem;
  margin-right: 1rem;
}
.nav-modal__partners {
  margin-top: 2.4rem;
}
.nav-modal__partners-title {
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding: 0.8rem 1.6rem;
  margin: 0;
}
.nav-modal__partners-body {
  border: 1px solid #ddd;
  background-color: var(--color-white);
  padding: 1.6rem;
}
.nav-modal__partners-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.6rem 2.4rem;
}
.nav-modal__partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-modal__partners-item img {
  max-height: 5rem;
  width: auto;
  object-fit: contain;
}
.nav-modal__foot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
@media (max-width: 800px) {
  .nav-modal__partners {
    display: none;
  }
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 801px) {
  .nav-modal {
    max-width: 66rem;
  }
  .nav-modal__home-btn,
  .nav-modal__close-label,
  .nav-modal__insta,
  .nav-modal__foot {
    display: none !important;
  }
  .nav-modal__head {
    justify-content: end;
  }
  .sp-only {
    display: none !important;
  }
  .nav-modal__program-list {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1rem;
  }
  .nav-modal__program-list li {
    width: calc((100% - 1rem)/2);
  }
  .nav-modal__nav-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   NAV MODAL BNRS
============================================ */
.nav-modal__bnrs {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  justify-content: center;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 0.8rem;
}
.nav-modal__bnrs li {
  width: calc((100% - 1.6rem) / 3);
}
.nav-modal__bnrs li a {
  display: block;
}
.nav-modal__bnrs li img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
}

/* ============================================
   main（中央配置・通常スクロール）
============================================ */
main {
  width: 100%;
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 801px) {
  :root {
    --floating-height: calc(clamp(7.6rem, calc(85 / var(--design-width) * 100vw), 8.5rem));
  }
  main {
    max-width: 40rem;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  main {
    margin-right: auto;
  }
}

/* ============================================
   サイドバー共通
============================================ */
.sidebar-left,
.sidebar-right {
  display: none;
  position: fixed;
  top: 0;
  height: calc(100dvh - var(--floating-height));
}
.sidebar-left::before, 
.sidebar-right::before {
  content:'';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
  mix-blend-mode: darken;
}
.sidebar-left__content, 
.sidebar-right__content {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 800px) {
  .sidebar-right {
    display: none;
  }
}
@media (min-width: 801px) {
  .sidebar-left {
    display: block;
    left: 0;
    width: calc(100% - 40rem);
  }
  .sidebar-right {
    display: none;
  }
}
@media (min-width: 1200px) {
  .sidebar-left,
  .sidebar-right {
    display: block;
    width: calc((100% - 40rem) / 2);
  }
  .sidebar-right {
    right: 0;
  }
  .sidebar-left {
    left: 0;
  }
}
@media (min-width: 1441px) {
  main,
  .sidebar-left,
  .sidebar-right {
    width: calc(100% / 3);
    max-width: none;
  }
}

/* ============================================
   SIDEBAR LEFT
============================================ */
.sidebar-left {
  background-image: url("../img/2026/bg-left.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.sidebar-left::before {
  right: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.6) 100%);
}
.sidebar-left__content section {
  width: 100%;
}
.sidebar-left__content .mv-slide__inner {
  height: 100%;
}
.sidebar-left__top {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.sidebar-left__logo-link {
  display: block;
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 1.8rem;
  width: min(80%, 30rem);
}
.sidebar-left__logo {
  width: 100%;
  height: auto;
  display: block;
}
.sidebar-left__date {
  font-weight: 600;
  color: var(--color-white);
  font-size: 3.4rem;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
.sidebar-left__date-sm {
  font-size: clamp(1.8rem, calc(20 / var(--design-width) * 100vw), 2.5rem);
  font-weight: 400;
  vertical-align: middle;
  margin-left: .25rem;
}
.sidebar-left__studium {
  width: min(80%, 30rem);
  background-color: var(--color-white);
  color: #10419F;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
  padding: .5rem;
}
.sidebar-left__btns {
  min-width: clamp(200px, calc(260 / 1440 * 100vw), 260px);
  margin: min(4vh, 4rem) auto 0;
  display: grid;
  gap: min(1.6vh, 1.6rem);
}
.sidebar-left__btns .btn {
  padding: .5rem 1.5rem;
}
.sidebar-left__btns i {
  font-size: 2.2rem;
}
.sidebar-left__btns img.icon-home {
  width: 1.8rem;
  height: auto;
  margin: .4rem .2rem;
  margin-right: auto;
}
.sidebar-left__btns span {
  margin-right: auto;
}
.sidebar-left__bottom {
  margin-top: min(4vh, 4rem);
}
@media (min-width:920px) and (max-width:1200px) {
  .sidebar-left__btns {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================
   SIDEBAR RIGHT
============================================ */
.sidebar-right {
  background-image: url("../img/2026/bg-right.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 200px;
  margin: 0 auto;
}
.sidebar-right::before {
  left: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 74.16%, rgba(0, 0, 0, 0.6) 100%);
}
.sidebar-right section {
  max-width: 35rem;
}
.sidebar-right .section-head {
  display: flex;
  flex-direction: column-reverse;
  text-align: left;
  padding-bottom: clamp(.5rem, calc(10 / 1440 * 100vh), 3rem);
}
.sidebar-right .section-head__jp {
  font-size: 1.4rem;
}
.sidebar-right .section-head__en {
  font-size: 3rem;
  margin-bottom: 0;
}
.sidebar-right .program-card__body {
  min-height: 6.5rem;
}
.sidebar-right .program-card__title {
  margin-top: 1rem;
  font-size: clamp(1.6rem, calc(18 / 1440 * 100vh), 1.8rem);
}
.sidebar-right .program-list {
  row-gap: clamp(.5rem, calc(14 / 1440 * 100vh), 1.4rem);
}
.sidebar-right .program-card__label {
  font-size: clamp(1.2rem, calc(14 / 1440 * 100vh), 1.4rem);
  padding: clamp(.3rem, calc(6 / 1440 * 100vh), 0.6rem) 2rem;
}
.sidebar-right__btns {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
.sidebar-right__btns .btn.bg-gradient-2 {
  font-size: 1.6rem;
}
.sidebar-right__btns .btn.black {
  padding: .5rem 1rem;
  width: min(100%, 20rem);
  justify-self: center;
}
.scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  position: absolute;
  left: 2rem;
  bottom: 4rem;
}
.scroll__text {
  font-family: var(--font-bold-eng);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(360deg);
  margin-bottom: 12px;
}
.scroll__line {
  display: block;
  width: 1px;
  height: 20vh;
  background-color: #fff;
  position: relative;
}
.scroll__line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}
@media (max-height:768px) {
  .sidebar-left__btns, 
  .sidebar-right__btns {
    display: none;
  }
}

/* ============================================
   MV SLIDER
============================================ */
.mv-slider {
  position: relative;
}
.mv-slider .slick-slide {
  padding: 0 1rem;
}
.mv-slide__inner {
  display: block;
  overflow: hidden;
}
.mv-slide__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mv-slider .slick-prev,
.mv-slider .slick-next {
  position: absolute;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  background: var(--color-black);
  border-radius: 50%;
  z-index: 10;
  top: auto;
  bottom: 1rem;
  transform: none;
  color: var(--color-white);
  font-size: 2rem;
}
.mv-slider .slick-prev {
  transform: translateX(-50%);
  left: 20%;
}
.mv-slider .slick-next {
  transform: translateX(50%);
  right: 20%;
}
.mv-slider .slick-prev::before,
.mv-slider .slick-next::before {
  content: none;
}
@media (max-width: 480px) {
  .mv-slider .slick-prev {
    left: 8%;
  }
  .mv-slider .slick-next {
    right: 8%;
  }
}
@media (min-width: 481px) and (max-width: 1200px) {
  .mv-slider .slick-prev {
    left: 12%;
  }
  .mv-slider .slick-next {
    right: 12%;
  }
}
@media (min-width: 1201px) and (max-width: 1440px) {
  .mv-slider .slick-prev {
    left: 16%;
  }
  .mv-slider .slick-next {
    right: 16%;
  }
}

/* ============================================
   BREADCRUMBS
============================================ */
.breadcrumbs {
  padding: 1.6rem 0;
  font-size: 1.3rem;
  color: var(--color-darkgray);
  border-top: 1px solid var(--color-gray);
}
.breadcrumbs a {
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================
   SECTION INNER
============================================ */
.section-inner {
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) {
  .section-inner {
    padding: 0 clamp(1rem, 2.5vw, 2rem);
  }
}
@media (min-width: 1441px) {
  .section-inner {
    padding: 0 clamp(1rem, 0.833vw, 2rem);
  }
}

/* ============================================
   SECTION HEAD
============================================ */
.section-head {
  text-align: center;
  padding: 0 1rem 3rem;
}
.section-head__en {
  font-family: var(--font-bold-eng);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 1rem;
  word-break: break-all;
}
.section-head__jp {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 900;
}
@media (max-width: 800px) {
  .section-head {
    padding: 0 clamp(1rem, 2.5vw, 2rem) clamp(3rem, 7.5vw, 6rem);
  }
}

/* ============================================
   PAGE HEADER（下層ページ共通タイトル）
============================================ */
.page-title {
  background-image: url("../img/2026/page-title.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.page-title__en {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-bold-eng);
  letter-spacing: 5%;
}
.page-title__jp {
  font-size: 3rem;
  font-weight: 900;
}
@media screen and (max-width: 800px) {
  .page-title {
    height: 30rem;
    padding-top: 8rem;
  }
}
@media screen and (min-width: 801px) {
  .page-title {
    height: 22rem;
  }
}

/* ============================================
   ANCHOR TABS（ページ内アンカーナビ）
============================================ */
.anchor {
  padding: 3rem 1rem;
  background-color: var(--color-lightgray);
  margin-bottom: 4rem;
}
.anchor-tabs {
  display: grid;
  gap: 1rem;
}
.anchor-tabs.half {
  grid-template-columns: repeat(2, 1fr);
}

/* ============================================
   CATEGORY TITLE（リスト系ページの見出し区切り）
============================================ */
.category-title {
  width: calc(100% - 2rem);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 0 0 1.5rem;
  margin: 3rem auto 2rem;
  border-bottom: 3px solid var(--color-black);
}
@media (max-width: 800px) {
  .category-title {
    margin-top: clamp(2.4rem, 6vw, 4rem);
  }
}

/* ============================================
   GALLERY & CONTENTS SLIDER COMMON
============================================ */
.gallery-slider .slick-dots, 
.content-slider .slick-dots  {
  position: absolute;
  bottom: -4rem;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.gallery-slider .slick-dots li, 
.content-slider .slick-dots li {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 0.4rem;
  padding: 0;
}
.gallery-slider .slick-dots li button, 
.content-slider .slick-dots li button {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.gallery-slider .slick-dots li button::before, 
.content-slider .slick-dots li button::before {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--color-darkgray);
  border-radius: 50%;
}
.gallery-slider .slick-dots li.slick-active button::before, 
.content-slider .slick-dots li.slick-active button::before {
  background: var(--color-black);
}
.gallery-slider .slick-slide a, 
.content-slider .slick-slide a {
  display: block;
  padding: 0 0.8rem;
  transition: var(--transition);
}
.gallery-slider .slick-slide a:hover, 
.content-slider .slick-slide a:hover {
  opacity: 0.7;
}
.gallery-slider .slick-slide img, 
.content-slider .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   PROGRAM
============================================ */
.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.4rem;
}
.program-card {
  position: relative;
  padding-top: 1rem;
}
.program-card__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.6rem 2rem;
  border-radius: 5rem;
  white-space: nowrap;
  line-height: 1.5;
  margin: 0;
  z-index: 1;
  width: 28rem;
  text-align: center;
}
.program-card__label .label-highlight {
  color: var(--color-orange);
}
.program-card__body {
  border-radius: 1rem;
  border: .2rem solid var(--color-black);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 min(1vh, 1rem);
  row-gap: 0;
  justify-content: center;
  height: min(8vh, 8rem);
  min-height: 8rem;
}
.program-card__title {
  font-size: 1.8rem;
  color: var(--color-white);
  line-height: 1.3;
  margin: 2rem 0 0;
  text-align: center;
}
.program-card__desc {
  display: block;
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.25;
  padding: .25rem .5rem;
  background-color: rgba(0,0,0,0.3);
}
.program-btns {
  margin-top: 3.2rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   BUTTON（汎用ボタン）
============================================ */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.btn:hover {
  opacity: 0.7;
}
/* 塗りつぶしボタン */
.btn-solid.black {
  background: var(--color-black);
  color: var(--color-white);
}
.btn-solid.white {
  background: var(--color-white);
  color: var(--color-black);
}
.btn-solid.instagram {
  background: var(--color-insta);
}
/* アイコンつきボタン */
.btn.mini {
  gap: .5rem;
  font-size: 1.2rem;
}
.btn:has(.bi).right > * {
  margin-left: auto;
}
.btn:has(.bi).left > * {
  margin-right: auto;
}
.btn .bi {
  -webkit-text-stroke: .08rem;
}
/* 囲みアイコンつきボタン */
.btn.circle .bi {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.circle.black .bi {
  color: var(--color-black);
  background-color: var(--color-white);
}
.btn.circle.white .bi {
  color: var(--color-white);
  background-color: var(--color-black);
}
.btn.circle.bg-gradient-2 .bi {
  color: var(--color-black);
  background-color: var(--color-white);
}
/* アウトラインボタン */
.btn-outline {
  border: 0.2rem solid transparent;
}
.btn-outline.black {
  border-color: var(--color-black);
}
.btn-outline.black > * {
  color: var(--color-black);
}
.btn-outline span {
  font-family: var(--font-bold-eng);
  line-height: 1.2;
  letter-spacing: 0.1rem;
}
/* 影付きボタン */
.btn.shadow {
  box-shadow: 0 10px 20px -10px #00000033;
}

/* ============================================
   PROFILE MODAL
============================================ */
.p-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}
.p-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.p-modal__wrap {
  position: relative;
  width: 100%;
  z-index: 1;
}
.p-modal__card {
  background: var(--color-white);
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(2rem, calc(3.75vw + 0.5rem), 5rem);
  border-radius: 2rem;
  border: .5rem solid var(--color-black);
}
.p-modal__close-x {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  width: 3.6rem;
  height: 3.6rem;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-modal__close-x:hover {
  opacity: 0.7;
}
.p-modal__head {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.p-modal__img-wrap.sp {
  flex-shrink: 0;
  width: 13rem;
}
.p-modal__img-wrap.pc img {
  width: 100%;
}
.p-modal__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}
.p-modal__info {
  flex: 1;
  min-width: 0;
}
.p-modal__label {
  display: block;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-bold-eng);
  font-size: clamp(1.2rem, calc(20 / var(--design-width) * 100vw), 2rem);
  line-height: 1.4;
  font-weight: 700;
  padding: 0.5rem 1rem;
  margin: 0 0 1rem;
}
.p-modal__name-ja {
  font-size: clamp(1.8rem, calc(24 / var(--design-width) * 100vw), 2.4rem);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 0.4rem;
}
.p-modal__name-en {
  font-family: var(--font-bold-eng);
  font-size: clamp(1rem, calc(16 / var(--design-width) * 100vw), 1.6rem);
  font-weight: 700;
}
.p-modal__title-box {
  border: 1px solid var(--color-black);
  padding: 0.8rem 1rem;
  margin: 1rem 0 0;
}
.p-modal__title-text {
  font-size: clamp(1.2rem, calc(14 / var(--design-width) * 100vw), 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  white-space: pre-line;
}
.p-modal__bio {
  font-size: 1.5rem;
  line-height: 1.9;
  margin: 0;
}
.p-modal__close-btn {
  display: none;
}
@media (max-width: 800px) {
  .p-modal__close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    height: 5.2rem;
    background: var(--color-white);
    color: var(--color-black);
    border: 0;
    border-top: 1px solid var(--color-gray);
    cursor: pointer;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 700;
    position: absolute;
    bottom: .5rem;
    left: .5rem;
    width: calc(100% - 1rem);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
  .p-modal__close-btn .close-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
  .p-modal__close-btn:hover {
    opacity: 0.6;
  }
  .p-modal__wrap {
    width: 50rem;
  }
  .p-modal__img-wrap.pc {
    display: none;
  }
  .p-modal__body {
    margin-bottom: 5.2rem;
  }
}
@media (min-width: 801px) {
  .p-modal__close-x {
    width: 8rem;
    height: 8rem;
  }
  .p-modal__wrap {
    width: 80%;
    max-width: 120rem;
  }
  .p-modal__card {
    border-width: 1rem;
    display: grid;
    gap: 3rem;
    grid-template-columns: clamp(30rem, calc(380 / var(--design-width) * 100vw), 38rem) auto;
  }
  .p-modal__img-wrap.sp {
    display: none;
  }
}

/* p-modal プロフィール詳細（sec4 中島ひとみ） */
.p-modal__profile-catch {
  display: block;
  border: 1px solid var(--color-black);
  padding: 0.6rem 0.8rem;
  margin: 0 0 1.2rem;
  font-size: clamp(1.2rem, calc(14 / var(--design-width) * 100vw), 1.4rem);
  line-height: 1.6;
}
.p-modal__stats {
  display: flex;
  flex-wrap: wrap;
}
.p-modal__stats-label {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--color-lightgray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.p-modal__stats-content {
  width: 100%;
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.9;
}
.p-modal__stats-grid {
  display: flex;
  flex-wrap: wrap;
}
.p-modal__stats-key {
  width: 7rem;
  font-weight: 700;
  padding: 0.15rem 0;
}
.p-modal__stats-val {
  width: calc(100% - 7rem);
  padding: 0.15rem 0;
}
@media (min-width: 801px) {
  .p-modal__stats-label {
    width: 12rem;
    flex-shrink: 0;
    margin-bottom: 0.8rem;
  }
  .p-modal__stats-content {
    width: calc(100% - 12rem);
    margin-bottom: 0.8rem;
  }
}

/* ============================================
   FOOTER CONTACT
============================================ */
.footer_contact {
  padding: 2rem 0;
  background-color: var(--color-lightgray);
}
.footer_contact__box {
  width: calc(100% - 4rem);
  border: 3px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 3rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer_contact__label {
  text-align: center;
  margin-bottom: 1.5rem;
}
.footer_contact__en {
  font-family: var(--font-bold-eng);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.footer_contact__ja {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
.footer_contact__info {
  width: 100%;
  background: var(--color-black);
  border-radius: 3rem;
  padding: 1rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}
.footer_contact__icon-circle {
  border: 2px solid var(--color-white);
  border-radius: 50%;
  width: 3.7rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.footer_contact__text {
  color: var(--color-white);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer_contact__office {
  font-size: 1.2rem;
  line-height: 1;
  margin: 0;
}
.footer_contact__email {
  font-family: var(--font-bold-eng);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  word-break: break-all;
}
.footer_contact__time {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  border-top: 1px solid var(--color-lightgray);
  padding-top: 1rem;
}
.footer_contact__centor {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray);
  width: 100%;
}
@media (max-width: 800px) {
  .footer_contact {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}
@media (min-width: 1441px) {
  .footer_contact {
    padding: clamp(4rem, 3.333vw, 8rem) 0;
  }
}

/* ============================================
   FOOTER PARTNERS
============================================ */
.footer_partners {
  padding: 3rem 2rem 2rem;
}
.footer_partners__head {
  background: var(--color-black);
  padding: 1rem 0;
  text-align: center;
  border-radius: .5rem;
  margin-bottom: 1rem;
}
.footer_partners__title {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
.footer_partners .section-inner {
  padding: 3.2rem 1rem;
}
.partners-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer_partners .partners-item span,
.nav-modal__partners .partners-item span {
  display: none;
}
.footer_partners .partners-item img {
  max-height: 6rem;
}
.nav-modal__partners-body .partners-item img {
  max-height: 3.5rem;
}
.partners-item img {
  max-height: 5rem;
  width: auto;
  display: block;
}
@media (max-width: 800px) {
  .footer_partners .section-inner {
    padding: clamp(3.2rem, 8vw, 6.4rem) clamp(1rem, 2.5vw, 2rem);
  }
}
@media (min-width: 1441px) {
  .footer_partners .section-inner {
    padding: clamp(3.2rem, 2.667vw, 6.4rem) clamp(1rem, 0.833vw, 2rem);
  }
}

/* ============================================
   FOOTER LINKS
============================================ */
.footer_links {
  padding: 3rem 1rem;
  border-top: 1px solid var(--color-gray);
}
.footer_links__logo {
  text-align: center;
  margin-bottom: 2rem;
}
.footer-logo {
  display: block;
  width: 100%;
  max-width: 21.2rem;
  margin: 0 auto;
}
.footer_links__list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, min(33%, 10rem));
  gap: 1rem;
  padding: 0 1rem;
  margin-bottom: 4rem;
}
.footer_links__list .btn {
  display: block;
  text-align: center;
  padding: .5rem 1rem;
}
.footer_links__nav {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.footer_links__nav-list {
  list-style: none;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
}
.footer-nav-link {
  font-family: var(--font-bold-eng);
  display: block;
  padding: 0.8rem 0;
  font-size: 1.4rem;
  font-weight: 600;
}
.footer_sponsors__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3.1rem;
  list-style: none;
}
.footer_sponsors__list:not(:last-of-type) {
  margin-bottom: 2.2rem;
}
.footer_sponsors__list a {
  display: block;
}
.footer_sponsors__list a img {
  height: 2.8rem;
}
.footer-copyright {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: 1.6rem;
  padding-bottom: calc(2.6rem + var(--floating-height));
  font-size: 1.4rem;
}
@media (min-width: 1200px) {
  .footer_links__nav {
    display: none;
  }
}

/* ============================================
   FLOATING GROUP
============================================ */
.floating-entry_v2 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-floating-entry);
  z-index: 998;
  display: flex;
  box-shadow: 0 0 10px #00000066;
}
.floating-entry_v2__title {
  display: block;
  font-weight: 900;
  text-align: center;
}
.floating-entry_v2__btns, .entry-btns {
  display: flex;
  justify-content: center;
}
.floating-entry_v2__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  font-family: var(--font-bold-eng);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1;
  border: 3px solid var(--color-black);
  box-shadow: 0 4px 0 0 var(--color-black);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.floating-entry_v2__btn:hover {
  opacity: 1;
  transform: translateY(3px);
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}
.floating-entry_v2__btn:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
}
.floating-entry_v2__faq {
  display: flex;
  align-items: center;
  color: var(--color-black);
  font-size: 1.2rem;
  text-decoration: underline;
}
.floating-entry_v2__faq:hover {
  opacity: 0.7;
  color: var(--color-black);
}
.floating-entry_v2__addMember {
  background-color: var(--color-green);
  color: var(--color-white);
  padding: .6rem;
}
.floating-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.floating-pagetop {
  position: fixed;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 999;
  text-align: center;
  line-height: 1.2;
}
.floating-pagetop:hover {
  opacity: 0.7;
  color: var(--color-white);
}
.floating-pagetop .bi-chevron-up {
  display: block;
  font-size: 1.8rem;
  position: relative;
  height: 0;
}
.floating-pagetop .bi-chevron-up::before {
  position: absolute;
  top: -.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.floating-pagetop span {
  margin-top: 1.2rem;
  position: relative;
}
@media (max-width: 420px) {
  .floating-pagetop {
    bottom: 5.5rem;
  }
}
@media (min-width: 421px) {
  .floating-pagetop {
    bottom: 2rem;
  }
}
@media (max-width: 800px) {
  .floating-entry_v2 {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: 1.2rem 1.2rem 0 0;
    background: none;
    box-shadow: none;
  }
  .floating-entry_v2::before {
    content: '';
    max-width: 28rem;
    width: 80%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    box-shadow: 0 4px 10px #00000066;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  .floating-entry_v2__title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.6rem .5rem;
    max-width: 28rem;
    width: 80%;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background-color: var(--bg-floating-entry);
    z-index: 1;
  }
  .floating-entry_v2__icon {
    position: relative;
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
  }
  .floating-entry_v2__icon span {
    display: block;
    position: absolute;
    width: 65%;
    height: 0;
    border-top: 3px solid currentColor;
    top: 50%;
    left: 0;
    transition: transform 0.25s, width 0.25s;
  }
  .floating-entry_v2__icon span:first-child {
    transform: rotate(45deg);
  }
  .floating-entry_v2__icon span:last-child {
    right: 0;
    left: auto;
    transform: rotate(-45deg);
  }
  .floating-entry_v2__body {
    overflow: hidden;
    height: 1.2rem;
    padding: 1.2rem 1.6rem 0;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    background-color: var(--bg-floating-entry);
    position: relative;
    z-index: 0;
    box-shadow: 0 4px 10px #00000066;
  }
  .floating-entry_v2.is-open .floating-entry_v2__body {
    padding-top: 2rem;
    padding-bottom: 1.2rem;
  }
  .floating-entry_v2.is-open .floating-entry_v2__icon span {
    width: 100%;
  }
  .floating-entry_v2.is-open .floating-entry_v2__icon span:last-child {
    left: 0;
    right: auto;
  }
  .floating-links,
  .floating-entry_v2__btns:not(.entry-btns) {
    display: none;
  }
  .floating-entry_v2.is-open .floating-links, 
  .floating-entry_v2.is-open .floating-entry_v2__btns {
    display: inline-flex;
  }
  .floating-entry_v2__btns, .entry-btns {
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  .floating-entry_v2__btn {
    flex: 1;
    padding: min(2vw, 20px) min(3vw, 32px);
    font-size: 1.3rem;
  }
  .floating-entry_v2__faq {
    gap: 0.4rem;
    justify-content: center;
  }
  .floating-entry_v2__faq br {
    display: none;
  }
  .floating-pagetop {
    right: 1.6rem;
    width: 5.2rem;
    height: 5.2rem;
    font-size: 0.9rem;
  }
  .floating-pagetop span {
    font-size: 0.9rem;
  }
}
@media (min-width: 801px) {
  .floating-entry_v2 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    padding: clamp(1.2rem, calc(16 / var(--design-width) * 100vw), 1.6rem) 2rem;
  }
  .floating-entry_v2__body {
    display: contents; /* SP用wrapperをPC flex レイアウトに透過させる */
  }
  .floating-entry_v2__icon {
    display: none;
  }
  .floating-entry_v2__title {
    font-size: clamp(1.2rem, calc(20 / 1440 * 100vw), 2rem);
    white-space: nowrap;
    cursor: default;
  }
  .floating-entry_v2__btns {
    gap: clamp(1.2rem, calc(16 / 1440 * 100vw), 1.6rem);
  }
  .floating-entry_v2__btn {
    padding: 2.4rem clamp(2rem, calc(32 / var(--design-width) * 100vw), 3.2rem);
    font-size: clamp(1.2rem, calc(16 / 1440 * 100vw), 1.6rem);
    line-height: 0;
    white-space: nowrap;
    min-width: calc((100% / 3) - 1rem);
  }
  .floating-entry_v2__faq {
    gap: 0.4rem;
    white-space: nowrap;
  }
  .floating-pagetop {
    right: clamp(1.2rem, calc(16 / var(--design-width) * 100vw), 1.6rem);
    bottom: clamp(1.2rem, calc(16 / var(--design-width) * 100vw), 1.6rem);
    width: 6rem;
    height: 6rem;
    font-size: 1rem;
    transform: translateY(6%);
  }
  .floating-pagetop span {
    font-size: 1rem;
  }
}
@media (min-width: 801px) and (max-width: 1000px) {
  .floating-entry_v2__faq br {
    display: block;
  }
  .floating-pagetop {
    bottom: 9rem;
  }
}
@media (min-width: 1001px) {
  .floating-entry_v2__faq br {
    display: none;
  }
  .floating-pagetop {
    bottom: clamp(1.2rem, calc(16 / var(--design-width) * 100vw), 1.6rem);
    transform: translateY(6%);
  }
}