/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* ===============================
   ルート設定
================================= */
:root {
  /* デフォルト（モバイルビュー）ではベースのfont-sizeは12px相当、見出しのfont-sizeは16px相当に */
  --font-size-default: 14px;
  --font-size-headline: 18px;
  --color-pink: #E82391;
  --color-orange: #F9AA00;
  --color-yellow: #FFE940;
  --color-blue: #009BE2;
  --color-blue2: #0042C1;
  --color-green: #7DBB28;
  --color-purple: #633F90;
  --color-gray: #EAEAEA;
  --color-darkgray: #E3E3E3;
  --color-sat: #EA6433;
  --color-sun: #1175D5;
  --font-bold-eng: "Montserrat", serif;
}

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

/* ===============================
   テキストカラー
================================= */
.color-pink {
  color: var(--color-pink);
}
.color-orange {
  color: var(--color-orange);
}
.color-blue {
  color: var(--color-blue);
}
.color-green {
  color: var(--color-green);
}
.color-purple {
  color: var(--color-purple);
}
.text-gradient {
  background: linear-gradient(45deg, #EF077B, #FFE232, #019700, #1DA2E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-pinkorange {
  background: linear-gradient(45deg, #EF077B, #FFE232);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-orange {
  background: linear-gradient(45deg, #E45B2A, #F2BC0A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   背景カラー
================================= */
.bg-pink {
  background-color: var(--color-pink);
}
.bg-light-pink {
  background-color: #FFE4F3;
}
.bg-orange {
  background-color: var(--color-orange);
}
.bg-yellow {
  background-color: var(--color-yellow);
}
.bg-light-orange {
  background-color: #FFEDC7;
}
.bg-blue {
  background-color: var(--color-blue);
}
.bg-light-blue {
  background-color: #DDF4FF;
}
.bg-green {
  background-color: var(--color-green);
}
.bg-light-green {
  background-color: #EAF8D6;
}
.bg-purple {
  background-color: var(--color-purple);
}
.bg-gray {
  background-color: var(--color-gray);
}
.bg-darkgray {
  background-color: var(--color-darkgray);
}
.bg-sat {
  background-color: var(--color-sat);
}
.bg-sun {
  background-color: var(--color-sun);
}
.bg-rokutai-gradient {
  background: linear-gradient(45deg, #EF077B, #FFE232, #019700, #1DA2E9);
}
.bg-rokutai-gradient-90 {
  background: linear-gradient(90deg, #EF077B, #FFE232, #019700, #1DA2E9);
}
.bg-rokutai-gradient-pink {
  background: linear-gradient(45deg, #E82391, #F9AA00);
}
.bg-rokutai-gradient-green {
  background: linear-gradient(45deg, #7DBB28, #578F0A);
}
.bg-rokutai-gradient-orange {
  background: linear-gradient(45deg, #E45B2A 33.17%, #F2BC0A 58.14%);
}
.bg-sand {
  position: relative;
}
.bg-sand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('/img/2025/bg-sand.webp');
  background-repeat: repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.bg-image {
  padding-bottom: 15vw;
  background-image: url('/img/2025/bg-image.webp');
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.bg-light-note-text {
  background-color: #EAEAEA;
  padding: 15px 20px;
  font-size: 16px;
}

/* ===============================
   線カラー
================================= */
.border-pink {
  border-color: var(--color-pink) !important;
}
.border-orange {
  border-color: var(--color-orange) !important;
}
.border-blue {
  border-color: var(--color-blue) !important;
}
.border-green {
  border-color: var(--color-green) !important;
}

/* ===============================
   ベース
================================= */
body {
  font-size: var(--font-size-default);
}
.container-lg {
  position: relative;
}
.z-index-1 {
  z-index: 0;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.z-index-4 {
  z-index: 4;
}
.z-index-5 {
  z-index: 5;
}

/* ===============================
   画像
================================= */
img {
  max-width: 100%;
}
.obj-cover {
  object-fit: cover;
}

/* ===============================
   リンク・ホバー
================================= */
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;
}
.hover-translate {
  display: inline-block;
}
.hover-translate:hover {
  opacity: 1;
  transform: translate(2px, 2px);
}

/* ===============================
   ボタン
================================= */
.button {
  position: relative;
  z-index: 0;
  display: flex;
  text-decoration: none;
  justify-content: center;
}
.button span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: black;
  color: white;
  border-radius: 4rem;
  position: relative;
  z-index: 2;
  font-weight: bold;
  line-height: 1;
  padding: 1rem 0;
}
.button::before {
  content: '';
  position: absolute;
  top: .3rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: lightgray;
  border-radius: 4rem;
  z-index: 1;
  transition: all .3s ease-out;
}
.button:hover {
  transform: translateY(.3rem);
}
.button:hover::before {
  top: 0;
}

.cnt-title {
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.cnt-title.translate {
  position: absolute;
  left: 50%;
  top: -1.2rem;
  transform: translateX(-50%);
  width: 100%;
}
.cnt-title span {
  font-weight: 800;
  font-family: var(--font-bold-eng);
  font-size: 3rem;
}
.cnt-title.sp-small span {
  font-size: 2rem;
}
.cnt-title small {
  display: block;
  font-size: 1.25rem;
}

.masked {
  mask-image: url(/img/2025/comming-soon.svg);
  mask-size: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
  height: 7rem;
  margin: 2rem auto;
}
.masked.white {
  background-color: white;
}
.masked.gray {
  background-color: lightgray;
}



.supporter-fukidashi::before {
  content: '';
  position: absolute;
  display: block;
  width: 1rem;
  height: 1rem;
  border-bottom: 1rem solid black;
  border-left: 1rem solid transparent;
}

.footer-links a {
  font-size: min(5vw, 18px);
}

/* ===============================
   ヘッダー
================================= */
header {
  z-index: 99;
}

.nav-window {
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease-out;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}
.nav-window:not(.active) {
  opacity: 0;
  right: -100vw;
}
.nav-window.active {
  opacity: 1;
  right: 0;
}

.fixed-element {
  touch-action: none;
  overflow: hidden;
  overscroll-behavior: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
}
nav a {
  color: white;
  display: flex;
  padding: 2.5vh;
  border-bottom: 1px solid dimgray;
  margin: 0 1rem;
  font-size: 1.2rem;
  position: relative;
}
nav a i {
  margin-left: auto;
}

.index-main {
  background-image: url(/img/2026/kv_pc-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.index-main .entry-btns {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(45deg, #E82391, #F9AA00);
}
.index-main--scroll {
  display: none;
}

.lottery {
  position: relative;
  margin: 0 auto;
  margin-top: max(-4vw, -4rem);
}

.about {
  background-size: cover;
  background-position: center bottom;
  background-image: url('/img/2025/about-bg_sp.webp');
}

.message {
  border-radius: min(1rem, 40px);
}
.message .inner {
  max-width: 430px;
}
.message .inner iframe,
.message-inner iframe {
  aspect-ratio: 9/16;
}
.message-swiper {
  max-width: 800px;
  padding: 0 1.5rem;
}
.message-swiper .swiper-slide {
  max-width: 430px;
  aspect-ratio: 9 / 16;
}
.message-inner--box {
  width: 100%;
  max-width: 430px;
  max-height: 100%;
  aspect-ratio: 9 / 16;
}
.message-swiper iframe,
.message-inner iframe {
  aspect-ratio: 9 / 16;
}

.program-menu {
  display: flex;
  flex-wrap: wrap;
  color: white;
  align-items: center;
  font-weight: bold;
  padding: 3rem 2rem 2.5rem 2rem;
}
.program-menu::after {
  content: '';
  position: absolute;
  z-index: 2;
}
.program-menu h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}
.program-menu small {
  font-size: 0.875rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3rem;
  padding: .25rem .5rem;
  line-height: 1.2;
  display: block;
}
.program-menu span {
  background-color: black;
  padding: .25rem 1rem;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-size: 0.8rem;
}
.program-menu span text {
  color: #F9AA00;
}
.program-menu span text b {
  font-size: 140%;
  line-height: 1;
  font-weight: 800;
}
.program-switch, .course-switch {
  width: 40%;
  border-top: 1px solid white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 0 auto;
  margin-top: 1.5rem;
  padding-top: .5rem;
}
.program-menu:not(.active) .program-switch::before {
  content: 'OPEN';
}
.program-switch::before, .program-switch::after {
  position: relative;
  font-family: var(--font-bold-eng);
  font-weight: 700;
  font-size: 0.875rem;
}
.active .program-switch::after {
  content: 'CLOSE';
}
.program-switch i {
  -webkit-text-stroke: 1px;
  margin: 0 .5rem;
  font-size: 1rem;
  transition: all .3s ease-out;
}
.active .program-switch i {
  transform: rotate(180deg);
}
.program-window.active {
  position: relative;
  opacity: 1;
  z-index: 1;
  display: block;
}

.day-wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.day-inner {
  position: absolute;
  top: 0;
  right: 0;
  padding: .5rem;
}
.day-inner img {
  width: 5rem;
}

.program-feature {
  padding-left: 0;
  list-style: none;
  font-weight: bold;
  margin-bottom: 2rem;
}
.program-feature li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid transparent;
}
.program-feature li span {
  font-family: var(--font-bold-eng);
  font-weight: 700;
  font-size: 1.8rem;
  display: inline-block;
  width: 10%;
  margin-right: 1rem;
}
.program-feature li b {
  width: calc(90% - 1rem);
  line-height: 1.2;
}
.program-feature.pink li {
  border-color: var(--color-pink);
}
.program-feature.pink li span {
  color: var(--color-pink);
}
.program-feature.orange li {
  border-color: var(--color-orange);
}
.program-feature.orange li span {
  color: var(--color-orange);
}
.program-feature.blue li {
  border-color: var(--color-blue);
}
.program-feature.blue li span {
  color: var(--color-blue);
}
.program-feature.green li {
  border-color: var(--color-green);
}
.program-feature.green li span {
  color: var(--color-green);
}

.program-table {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.program-table dt, .program-table dd {
  padding: .5rem;
  margin-bottom: .5rem;
  font-weight: bold;
}
.program-table dt {
  background-color: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28%;
}
.program-table dd {
  width: 70%;
  padding-left: 1rem;
}

.btn-add-member {
  position: relative;
  width: 90%;
  max-width: 430px;
  margin: 0 auto;
}
.btn-add-member::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #EFEFEF;
  border-radius: 4rem;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.btn-add-member .btn {
  display: block;
  padding: 1.5rem 2.5rem;
  border-radius: 5rem;
}
.btn-add-member span {
  font-size: .8rem;
}
.btn-add-member i {
  color: white;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  -webkit-text-stroke: 2px;
}

.contents {
  background-image: url('/img/2025/contents-bg.webp');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
  margin-top: 3rem;
}
.contents-inner b {
  position: relative;
  margin-left: 1.1vw;
  padding: .25rem .5rem;
  background-color: black;
  color: white;
  display: inline-block;
  transform: translateY(-1rem);
  z-index: 2;
}
.contents-inner b::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 100%;
  background-image: url('/img/2025/contents-span-after.svg');
  background-size: auto 100%;
  background-position: top left;
  background-repeat: no-repeat;
  display: block;
}

.h2-title {
  position: relative;
}
.h2-title img {
  max-height: 7rem;
  position: relative;
  z-index: 1;
}
.h2-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 40%;
  border-bottom: 1px solid black;
}

.amb-inner {
  max-width: 570px;
  margin: 0 1rem;
  border: 5px solid black;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}
.amb-inner.bg-sand::before {
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}
.renew0404.amb-inner {
  max-width: 620px;
}
.amb-inner h4 {
  transform: translateY(-1rem);
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
.amb-inner h4 b {
  font-size: min(5vw, 1.8rem);
  margin-right: .5rem;
  display: inline-block;
  vertical-align: sub;
  line-height: 1;
}
.amb-inner h4 small {
  font-size: min(3vw, 1rem);
}
.amb-inner .inner-text {
  position: relative;
  z-index: 3;
  margin-left: 30%;
  margin-right: 1rem;
  text-align: left;
}
.renew0404.amb-inner .inner-text {
  margin-left: 40%;
}
.amb-inner .inner-text p {
  font-size: 14px;
}
.amb-btn {
  display: block;
  margin: 0 -5px -5px 0;
  font-size: 14px;
  z-index: 3;
}
.amb-img {
  position: absolute;
  bottom: -5px;
  left: -20%;
  width: auto;
  height: 110%;
  max-width: 280px;
  z-index: 0;
}
.renew0404 .amb-img {
  bottom: 0;
  left: 0;
  max-width: 310px;
  object-fit: cover;
}

.dir-inner {
  max-width: 350px;
  margin: 0 1rem;
  padding: 40px 30px 0 30px;
}
.dir-inner h4>* {
  display: block;
  text-align: left;
}
.dir-inner h4 b {
  font-size: 24px;
}
.dir-inner h4 small {
  font-size: 16px;
}
.dir-inner h4 span {
  font-size: 12px;
}
.dir-img {
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.guest-day {
  max-width: 44%;
}
.guest-inner {
  width: 80%;
  padding-left: 2rem;
  position: relative;
  z-index: 4;
  margin-bottom: 3rem;
}
.guest-inner p {
  font-size: 15px;
}
.guest-name {
  font-size: 3rem;
  position: absolute;
  bottom: -.5rem;
  z-index: 4;
  line-height: 1;
  margin-bottom: 0;
}
.guest-left-name {
  right: 0;
}
.guest-right-name {
  left: 0;
}
.guest-img-left,
.guest-img-arimori {
  right: 2rem;
  width: 42%;
  max-height: 100%;
  object-fit: contain;
  object-position: right;
}
.guest-img-right,
.guest-img-mtakashi,
.guest-img-tanaka {
  right: -2rem;
  width: 54%;
  max-height: 100%;
  object-fit: contain;
}
.guest-img-tosa {
  right: 1.5rem;
  width: 50%;
  max-height: 100%;
  object-fit: contain;
}
.guest-bg {
  z-index: 0;
  height: 80%;
}
.guest-bg img.left {
  object-position: right;
  border-top-right-radius: 3rem;
}
.guest-bg img.right {
  object-position: left;
  border-top-left-radius: 3rem;
}

.triangle {
  position: relative;
}
.triangle:not(.upper)::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%);
  width: 30px;
  border-top: 15px solid black;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
.triangle.upper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate(-50%);
  width: 30px;
  border-bottom: 15px solid black;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.guest0418 .guest-inner {
  width: calc(100% - 1.5rem);
  position: absolute;
  bottom: 1rem;
  margin-bottom: 0;
}
.guest0418 .guest-inner p {
  font-weight: bold;
}
.guest0418 .guest-inner .day span {
  font-size: 160%;
}
.guest0418 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.guest0418 .swiper-pagination-bullet-active {
  background-color: black;
}
.guest0418 .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.guest0418 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}
.guest0706 .swiper-wrapper {
  margin: 60px auto;
}
.guest0706 .guest-inner {
  width: 100%;
  position: absolute;
  bottom: 0 !important;
  right: 0 !important;
  margin-bottom: 0;
}
.guest0706 .swiper,
.guest0706 .swiper-wrapper,
.guest0706 .swiper-slide {
  overflow-y: visible !important;
}
.guest0706 .swiper-slide {
  position: relative;
  transition: transform .4s;
}
.guest0706 .swiper-slide:not(.swiper-slide-active) {
  transform: scale(.8) translateY(25%);
}
.guest0706 .swiper-slide:not(.swiper-slide-active).swiper-slide-prev {
  transform: scale(.8) translateY(25%) translateX(-10%);
}
.guest0706 .swiper-slide:not(.swiper-slide-active).swiper-slide-next {
  transform: scale(.8) translateY(25%) translateX(10%);
}
.guest0706 .swiper-slide-active {
  transform: scale(1.2);
}
.guest0706 .swiper-slide:not(.swiper-slide-active) .guest-btn {
  display: none;
}
.guest0706 .swiper-slide.swiper-slide-active .guest-btn {
  display: inline-block;
}
.guest0706 .guest-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.guest0706 span.swiper-pagination-bullet {
  background-color: white;
  opacity: 1;
}
.guest0706 span.swiper-pagination-bullet-active {
  background-color: black;
}
.guest-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.guest-switch .switch {
  background-color: #ddd;
  width: calc(50% - .5rem);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  text-align: center;
  padding: 1rem .5rem;
  position: relative;
  transition: all .3s ease-out;
}
.guest-switch .switch.active {
  background-color: #1B1B1B;
}
.guest-switch .day-icon {
  width: 25%;
  max-width: 6rem;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: -1.5rem;
  left: .8rem;
  z-index: 2;
}
.guest-switch h3 {
  font-size: min(3vw, 2rem);
  margin-bottom: 0;
  font-family: var(--font-bold-eng);
  font-weight: 700;
  letter-spacing: .1vw;
}
.guest-switch h3 span {
  font-size: min(4vw, 2.5rem);
}
.guest-switch h3 small {
  font-size: min(3vw, 1rem);
}
.guest-switch .switch.active>* {
  color: white;
}
#guest .window, #dj .window {
  transition: all .3s ease-out;
}
#guest .window:not(.active),
#dj .window:not(.active) {
  display: none;
}

#dj .window, #dj .guest-switch {
  max-width: 900px;
  margin: 0 auto;
}
.dj-items {
  gap: min(3vw, 40px);
}
.dj-item {
  position: relative;
  flex: calc((100% - 80px) / 3);
}

.mc-wrapper {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.mc-inner {
  position: relative;
  font-weight: bold;
}
.mc-inner.bg-sand::before {
  border-bottom-left-radius: 28px;
  border-top-right-radius: 28px;
}
.mc-text>* {
  font-weight: bold;
}

.time-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.tab-switch {
  width: calc(50% - .5rem);
  border: 5px solid var(--color-orange);
  border-bottom: 0;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  text-align: center;
  padding: 1rem .5rem;
  position: relative;
}
.tab-switch .day-icon {
  width: 25%;
  max-width: 6rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: -1.5rem;
  left: .8rem;
  z-index: 2;
}
.tab-switch h3 {
  margin-bottom: 0;
  font-family: var(--font-bold-eng);
  font-weight: 700;
  letter-spacing: .1vw;
}
.tab-switch h3 small {
  margin-left: .25rem;
}
.tab-switch.active {
  background-color: var(--color-orange);
  color: white;
}

.time-window {
  width: 100%;
  border: .8rem solid var(--color-orange);
  padding: 1.5rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow-x: scroll;
  background-color: white;
  opacity: 0;
}
.time-window.active {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.time-window .timetable {
  width: 100%;
  min-width: 880px;
}

.scrollbar {
  width: 100%;
  height: 10px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.scrollbar .inner {
  width: 500px;
  height: 1px;
}
.scrollbox {
  width: 100%;
  margin-top: 5px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.scrollbox .inner {
  margin-bottom: 5px;
}
.scrollbox .txt {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
/* スクロールバーのスタイル */
.scrollbar::-webkit-scrollbar,
.scrollbox::-webkit-scrollbar {
  height: 10px;
}
.scrollbar::-webkit-scrollbar-track,
.scrollbox::-webkit-scrollbar-track {
  border-radius: 5px;
}
.scrollbar::-webkit-scrollbar-thumb,
.scrollbox::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #e7e7e7;
}

.time-window .timeline .time {
  width: 6.5%;
}
.time-window .timeline .time b {
  display: block;
  transform: translateY(-50%);
  text-align: center;
}
.time-window .timeline .prg {
  width: 56%;
  position: relative;
}
.time-window .timeline .cnt {
  width: 37.5%;
  position: relative;
}
.time-window .timeline .bg-gray {
  background-color: #F0F0F0;
}
.time-window .timetable-tab {
  position: absolute;
  top: 3px;
  left: 5px;
  width: calc(100% - 10px);
  z-index: 3;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  color: white;
  gap: 10px;
  font-weight: 700;
}
.time-window .prg .timetable-tab {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.time-window .cnt .timetable-tab {
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
.time-window .timetable-tab.half {
  width: calc(50% - 7.5px) !important;
}
.time-window .timetable-tab.half.right {
  right: 5px;
  left: auto;
}
.time-window .timetable-tab b {
  font-family: var(--font-bold-eng);
  text-align: center;
  font-weight: 700;
}
.time-window .timetable-tab b.startend {
  color: black;
  background-color: white;
  left: 4px;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 12px;
}
.time-window .prg .timetable-tab b.startend {
  position: absolute;
  top: 4px;
}
.time-window .cnt .timetable-tab b.startend {
  position: relative;
}
.time-window .timetable-tab.x2 {
  height: 160%;
  font-size: min(3.5vw, 18px);
}
.time-window .timetable-tab.x3 {
  height: 240%;
}
.time-window .timetable-tab.x7 {
  height: 700%;
}
.time-window .timetable-tab.x8 {
  height: 800%;
}
.time-window .timetable-tab.x9 {
  height: 910%;
}
.time-window .timetable-tab.x11 {
  height: 1100%;
}
.time-window .timetable-tab.x15 {
  height: 1560%;
}
.time-window .timetable-tab.x17 {
  height: 1510%;
}
.time-window .timetable-tab.x26 {
  height: 2440%;
}
.time-window .timetable-tab.x38 {
  height: 3680%;
}

.course-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: bold;
  background-color: white;
  position: absolute;
  top: 0;
}
.course-menu::before,
.course-menu::after {
  content: '';
  position: absolute;
}
.course-menu.line-double::before {
  background-color: var(--color-pink);
}
.course-menu.line-double::after {
  background-color: var(--color-orange);
}
.course-menu.line-blue::before {
  background-color: var(--color-blue);
}
.course-menu.line-green::before {
  background-color: var(--color-green);
}
.course-window {
  position: absolute;
  opacity: 0;
}
.course-window.active {
  position: relative;
  opacity: 1;
}

.news-list li {
  padding: .5rem;
  display: flex;
}
.news-list li:not(:last-of-type) {
  border-bottom: 1px solid whitesmoke;
}
.news-list li b {
  display: inline-block;
  width: 10rem;
}
.news-list li p:not(.active) {
  opacity: 0;
  height: 0;
}
.news-list li p.active {
  height: auto;
}
.news-list li p a {
  vertical-align: baseline;
}
.news-title {
  position: relative;
}
.news-title::after {
  position: absolute;
  content: '\F64D';
  font-family: bootstrap-icons;
  top: 0;
  right: -3rem;
  opacity: 0.6;
}
.news-title.active::after {
  content: '\F63B';
}

.green-mileage section {
  border-top: min(4vw, 20px) solid #C3D425;
  border-right: min(4vw, 20px) solid #EEE800;
  border-bottom: min(4vw, 20px) solid #6B8C39;
  border-left: min(4vw, 20px) solid #D4E8C8;
  position: relative;
  max-width: 1000px;
}
.green-mileage h2 {
  font-size: min(9vw, 2.4rem);
}
.green-mileage .text-green {
  color: #006F46;
}
.green-mileage .bg-green {
  background-color: #006F46;
}
.green-mileage .corner {
  display: block;
  position: absolute;
}
.green-mileage .corner-lt {
  top: max(-4vw, -20px);
  left: max(-4vw, -20px);
  width: min(4vw, 20px);
  height: min(4vw, 20px);
  background-color: #A2C11D;
}
.green-mileage .corner-rt {
  top: max(-4vw, -20px);
  right: max(-4vw, -20px);
  width: min(4vw, 20px);
  height: min(4vw, 20px);
  background-color: #C7CD00;
}
.green-mileage .corner-lb {
  bottom: max(-4vw, -20px);
  left: max(-4vw, -20px);
  width: min(4vw, 20px);
  height: min(4vw, 20px);
  background-color: #597F2D;
}
.green-mileage .corner-rb {
  bottom: max(-4vw, -20px);
  right: max(-4vw, -20px);
  width: min(4vw, 20px);
  height: min(4vw, 20px);
  background-color: #889C00;
}

.kyosan {
  justify-content: center;
  align-items: center;
}

.floating {
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: end;
}
.floating .entry-btns {
  max-width: 860px;
}

.pagetop {
  transition: all .3s ease-out;
}
.pagetop:hover {
  transform: translateY(.5rem);
}

.floating-right {
  position: fixed;
  z-index: 90;
  transition: .3s all ease-out;
}
.floating-right i {
  -webkit-text-stroke: 1.2px;
}

.sns {
  background-image: url(/img/2025/sns_bg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sns::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95vw;
  max-width: 880px;
  height: 95vw;
  max-height: 880px;
  background-color: white;
  border-radius: 880px;
}
.sns .sns_img {
  position: relative;
}
.sns .sns_img::after {
  content: '';
  position: absolute;
  top: -2.5em;
  right: -3rem;
  width: 5rem;
  height: 5rem;
  background-image: url(/img/2025/sns_img.webp);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.sns img.icon {
  margin: 0 auto;
  max-width: 150px;
  transform: translateX(2.4rem);
}

.floating-news_v2 .close-btn {
  font-size: 25px;
  color: white;
  background: black;
  border-radius: 10rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -15px;
  top: -15px;
}
.floating-news_v2 .new_icon {
  width: 2.5rem;
  height: auto;
  position: absolute;
  left: -1.5rem;
  top: 0;
}
.floating-news_v2 h4 {
  position: absolute;
  top: -1.5rem;
  left: 30px;
  font-size: 1rem;
  font-weight: bold;
  background: white;
  padding: 3px 5px 5px 5px;
  border: 2px solid black;
  border-bottom: 4px solid black;
  line-height: 1;
}
.floating-news_v2 h4 b:not(.text-gradient) {
  font-size: 1.2rem;
}
.floating-news_v2 h4 b.text-gradient {
  font-size: 1.6rem;
}
.floating-news_v2 a img {
  max-width: 400px;
}

.floating-entry_v2 {
  z-index: 999;
}
.floating-entry_v2 .title {
  font-size: clamp(16px, 1.39vw, 20px);
}

.floating-pagetop {
  position: fixed;
  background: black;
  font-size: 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding-bottom: 5px;
  z-index: 90;
  border: 3px solid #222;
}
.floating-group {
  opacity: 0;
  z-index: -1;
  transition: 0.2s;
}

.profile-wrapper, .message-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 997;
}
.profile-modal, .message-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 996;
}
.profile-modal .bi-x-lg {
  color: white;
  position: absolute;
  top: calc(10vh - 30px);
  right: calc((10% - 60px) / 2);
  font-size: 30px;
  line-height: 1;
  padding: 15px;
  background: black;
  border-radius: 30px;
  z-index: 999;
}
.profile-inner {
  position: absolute;
  top: 10vh;
  left: 5vw;
  width: 90vw;
  height: 80vh;
  overflow-y: scroll;
  z-index: 998;
  background-color: white;
}
.profile-inner .content-title {
  width: calc(100% - 2rem);
  position: relative;
}
.profile-inner .content-title::after {
  content: '';
  position: absolute;
  top: 0;
  right: -2rem;
  width: 2rem;
  height: 101%;
  background-image: url(/img/2025/contents-span-after.svg);
  background-size: auto 100%;
  background-position: top left;
  background-repeat: no-repeat;
  display: block;
}
.profile-inner:not(.active),
.message-inner:not(.active) {
  display: none;
}
.profile-inner--box {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  max-width: 1366px;
  margin: 0 auto;
}
.message-modal .bi-x-lg {
  color: white;
  position: absolute;
  top: calc(5vh - 30px);
  right: calc((10% - 60px) / 2);
  font-size: 30px;
  line-height: 1;
  padding: 15px;
  background: black;
  border-radius: 30px;
  z-index: 999;
}
.message-inner {
  position: absolute;
  top: 5vh;
  left: 5vw;
  width: 90vw;
  height: 90vh;
  overflow-y: scroll;
  z-index: 998;
  background-color: white;
  display: flex;
  align-items: center;
}
.message-inner--box {
  margin: 0 auto;
}



.sec19 .z-index-0 {
  z-index: 0;
}
.sec19 .z-index-1 {
  z-index: 1;
}
.sec19 .icon {
  width: 80px;
  right: -70px;
  z-index: 0;
}
.sec19 .bg-beige {
  background: #F0ECE4;
}
.sec19 .comment {
  top: -1.5rem;
  left: 1rem;
  font-size: min(4.5vw, 1.2rem)z;
}
.sec19 .comment::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10px;
  border-top: 10px solid black;
  border-left: 12px solid transparent;
}
.sec19 .bg-cream {
  background: #FFF8E0;
}
.sec19 .bg-blue {
  background: #009BE2;
}
.sec19 .arrow::after {
  content: '';
  position: absolute;
}
.sec19 .teacher {
  right: -3%;
  width: 100%;
  max-width: 220px;
}


/* ADDED 250930 */
.main-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 82%;
  padding: 0 15px;
  width: 100%;
  max-width: 90%;
}
.main-info .fs-3 {
  display: block;
  background-color: yellow;
  color: black;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
.main-info .d-grid {
  gap: 1rem;
}
.main-info a {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  border-radius: 15px;
  text-align: center;
  color: white;
  font-size: 23px;
  border: 3px solid black;
  border-bottom-width: 5px;
  transition: all .3s ease;
}
.main-info a {
  font-size: min(5vw, 23px);
  border-radius: min(3vw, 15px);
}
.main-info a:hover {
  border-bottom-width: 3px;
  transform: translateY(2px);
  opacity: 1;
  height: calc(100% + 2px);
}
.main-info .d-grid a span, .main-info .d-grid a i {
  margin-left: auto;
}
.main-info .d-grid a span {
  margin-right: -2rem;
  font-weight: bold;
}
.main-info .d-grid a i.bi-chevron-right {
  -webkit-text-stroke: 1px;
  padding-right: 1rem;
}




@media screen and (max-width:430px) {
  .guest0706 .guest-btn {
    font-size: clamp(0.625rem, 0.261rem + 1.82vw, 0.75rem);
  }
}

@media screen and (max-width:576px) {
  .button span {
    padding: .5rem;
  }
  .index-main .entry-btns .button span {
    padding: .8rem .2rem;
  }
}

@media screen and (max-width:768px) {
  .nav-window {
    align-items: start;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .index-main {
    background-image: url(/img/2025/kv_sp_v3.webp);
  }
  .index-main .entry-btns {
    left: 1rem;
    width: calc(100% - 2rem);
    transform: translateX(0%);
  }
  .bg-light-note-text {
    font-size: 12px;
  }
  .about .text-inner {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .program-menu {
    position: relative;
    margin-top: 1rem;
    justify-content: center;
    padding: 3rem 1rem 1rem 1rem;
    display: block;
    text-align: center;
  }
  .program-menu span {
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    text-align: center;
  }
  .program-menu h3 {
    width: 100%;
    text-align: center;
  }
  .program-menu h1 {
    font-size: 1.5rem;
  }
  .program-menu.active::after {
    width: 16%;
    height: 3rem;
    border-left: 4rem solid transparent;
    border-right: 4rem solid transparent;
    bottom: -3rem;
    right: 50%;
    transform: translateX(50%);
  }
  .program-menu.active.bg-pink::after {
    border-top: 1.5rem solid var(--color-pink);
  }
  .program-menu.active.bg-orange::after {
    border-top: 1.5rem solid var(--color-orange);
  }
  .program-menu.active.bg-blue::after {
    border-top: 1.5rem solid var(--color-blue);
  }
  .program-menu.active.bg-green::after {
    border-top: 1.5rem solid var(--color-green);
  }
  .program-window:not(.active) {
    display: none;
  }
  .program-window h5 {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .program-window .bg-rokutai-gradient h4 {
    font-size: 1.;
  }
  .program-feature li {
    font-size: calc(1.25rem - 0.2vw);
  }
  .btn-add-member .btn {
    border-radius: var(--bs-btn-border-radius);
    padding: 1rem 2.5rem 1rem 1rem;
  }
  .btn-add-member::before {
    border-radius: 0.375rem;
  }
  .amb-inner h4 {
    transform: none;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  .guest-bg {
    height: 100%;
  }
  .guest0418 .guest-inner {
    display: none;
  }
  .dj-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .dj-slick .slick-slide {
    margin-right: 20px;
  }
  .dj-slick .slick-slide:last-child {
    margin-right: 0;
  }
  .dj-slick .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 24px 0 0 0;
    list-style: none;
  }
  .dj-slick .slick-dots li {
    margin: 0;
    padding: 0;
  }
  .dj-slick .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D3D3D3;
    border: none;
    outline: none;
    font-size: 0;
    transition: all 0.2s;
    cursor: pointer;
    display: block;
  }
  .dj-slick .slick-dots li.slick-active button {
    background: #000000;
  }
  .mc-wrapper {
    gap: 10px;
  }
  .mc-inner {
    border: 3px solid black;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  .mc-text {
    background-color: white;
    margin-top: 28vmin;
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 28px;
  }
  .mc-img {
    width: 100%;
    object-fit: contain;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
  }
  .pink .mc-img {
    top: -10%;
    max-height: 75%;
  }
  .blue2 .mc-img {
    top: -15%;
    max-height: 100%;
  }
  .pink .mc-text .bold-eng {
    color: var(--color-pink);
  }
  .blue2 .mc-text .bold-eng {
    color: var(--color-blue2);
  }
  .entry-btns b {
    font-size: 1.25rem;
    margin-bottom: .5rem;
  }
  .course-menu {
    width: calc((100% / 3) - (4px / 3));
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 65px;
    padding: 0 .5rem;
    text-align: center;
    justify-content: center;
  }
  .course-menu h4 {
    font-size: 1rem;
    margin-top: 5px;
  }
  .course-menu.active {
    height: 67px;
    position: relative;
    top: 0;
    padding-bottom: 2px;
  }
  .course-menu:nth-of-type(3) {
    left: calc((100% / 3) + 1.5px);
  }
  .course-menu:nth-of-type(5) {
    left: calc((100% / 3) * 2 + 3px);
  }
  .course-menu::before,
  .course-menu::after {
    top: 0;
    height: 5px;
  }
  .course-menu.line-double::before,
  .course-menu.line-double::after {
    width: calc(50% - 1rem);
  }
  .course-menu.line-double::before,
  .course-menu.line-blue::before,
  .course-menu.line-green::before {
    left: 1rem;
  }
  .course-menu.line-blue::before,
  .course-menu.line-green::before {
    width: calc(100% - 2rem);
  }
  .course-menu.line-double::after {
    right: 1rem;
  }
  .course-window {
    width: 100%;
    top: 67px;
  }
  .course-window.active {
    top: 0;
  }
  .news-list li {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 3rem);
  }
  .news-list li b {
    width: 100%;
  }
  .tab-switch .day-icon {
    top: -2rem;
  }
  .tab-switch h3 {
    font-size: 1.2rem;
  }
  .tab-switch h3 span {
    font-size: 1.5rem;
  }
  .time-window .timeline .time b {
    font-size: 1.3vmax;
  }
  .contact .email {
    font-size: 1rem;
  }
  .contact .time {
    font-size: 0.8rem;
  }
  .kyosan {
    gap: 1rem;
  }
  .kyosan .big {
    width: calc(50% - .5rem);
  }
  .kyosan .small {
    width: 30%;
  }
  /* footer .copyright { min-height: 12rem; } */
  .floating {
    width: 100%;
  }
  .pagetop {
    position: absolute;
    right: .5rem;
    bottom: 4rem;
    margin: .5rem;
    z-index: 2;
    width: 5rem;
    height: 5rem;
  }
  .sns .sns_img::after {
    top: -1.5rem;
  }
  .floating-right {
    left: 0;
    width: 100%;
    /* bottom: 0; */
    bottom: 70px;
    background: transparent !important;
  }
  .floating-right.active {
    z-index: 91;
    bottom: 150px;
  }
  .floating-news:not(.active) .bg-white,
  .floating-entry:not(.active) .bg-white {
    opacity: 0;
  }
  .floating-right .sp-tab {
    text-align: center;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    width: calc(100% / 3 - 4px);
    line-height: 1.2;
    position: absolute !important;
    top: 0;
    transform: translateY(-100%);
  }
  .floating-right i {
    display: none;
  }
  .floating-right .bg-white {
    border: 10px solid transparent;
    height: 80px;
    transition: .1s all ease-out;
  }
  .floating-entry .sp-tab {
    background: linear-gradient(90deg, #EF077B 0%, #FFE232 103%);
  }
  .floating-entry .bg-white {
    border-image-source: linear-gradient(90deg, #EF077B, #FFE232, #019700, #1DA2E9);
    border-image-slice: 1;
  }
  .floating-entry_v2 {
    height: 150px;
  }
  .floating-news_v2 .sp-tab {
    background-color: var(--color-blue);
    /* margin-left: calc(100% / 3 + 2px); */
    margin-left: 10px;
  }
  .floating-news_v2 .bg-white {
    border-color: var(--color-blue);
  }
  .floating-sns {
    right: 0;
    bottom: 80px;
  }
  .floating-sns .bg-white {
    margin-bottom: 80px;
    margin-right: 0;
    margin-left: calc(100% / 3 * 2 + 4px);
    height: auto;
    border: none;
  }
  .floating-news_v2 .new_icon {
    top: -1.5rem;
    left: -.5em;
  }
  .floating-pagetop {
    width: 5rem;
    height: 4rem;
    right: 0;
    bottom: 150px;
    border-top-left-radius: 8rem;
    border-bottom-left-radius: 8rem;
    border-right: none;
  }
  .youtube {
    aspect-ratio: 16 / 9;
  }
  .profile-modal .bi-x-lg, .message-modal .bi-x-lg {
    right: calc((10% - 30px) / 2);
  }
  .profile-inner .image {
    aspect-ratio: 1/1;
    object-position: top;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  .sec19 .teacher {
    position: relative;
    bottom: -1rem;
  }
  .sec19 .arrow {
    margin-bottom: 10px;
  }
  .sec19 .arrow::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid black;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
  }
  .sec19 a {
    word-break: break-all;
    text-decoration: underline;
  }
  .supporter-fukidashi::before {
    top: -1rem;
    left: 1rem;
  }
}

@media screen and (min-width:769px) {
  :root {
    /* タブレットビューではベースのfont-sizeは14px相当、見出しのfont-sizeは20px相当に */
    --font-size-default: 14px;
    --font-size-headline: 20px;
  }
  nav a {
    padding: 3.5vh;
  }
  .cnt-title.translate {
    top: 0.65rem;
  }
  .cnt-title span {
    font-size: 4rem;
  }
  .about {
    background-image: url('/img/2025/about-bg_pc.webp');
  }
  .about .container {
    position: relative;
    z-index: 2;
  }
  .about .container img, .about .container .text-inner {
    position: relative;
    z-index: 1;
  }
  .about .container::before, .about .container::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    z-index: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
  }
  .about .container::before {
    left: -16vw;
    background-image: url('/img/2025/about-left_pc.webp');
    width: 50%;
  }
  .about .container::after {
    right: -13vw;
    background-image: url('/img/2025/about-right_pc.webp');
    width: 33%;
  }
  .program-menu {
    width: calc(35% - 0.8rem);
    position: absolute;
    left: 0;
    padding: 3rem 2rem 3.5rem 2rem;
  }
  .program-menu.active::after {
    width: 2rem;
    height: 100%;
    border-top: 3.5rem solid transparent;
    border-bottom: 3.5rem solid transparent;
    top: 0;
    right: calc(-2rem - 2px);
  }
  .program-menu.active.bg-pink::after {
    border-left: 1rem solid var(--color-pink);
  }
  .program-menu.active.bg-orange::after {
    border-left: 1rem solid var(--color-orange);
  }
  .program-menu.active.bg-blue::after {
    border-left: 1rem solid var(--color-blue);
  }
  .program-menu.active.bg-green::after {
    border-left: 1rem solid var(--color-green);
  }
  .program-menu h3 {
    position: absolute;
    top: 3rem;
    left: 1.5rem;
    line-height: 1;
  }
  .program-menu small {
    position: absolute;
    left: 1.5rem;
    bottom: .875rem;
    font-size: 0.96vw;
  }
  .program-menu h3.translate {
    transform: translateY(-50%);
  }
  .program-menu.active {
    width: 35%;
  }
  .program-menu:first-of-type() {
    top: 0;
  }
  .program-menu:nth-of-type(3) {
    top: 7.75rem;
  }
  .program-menu:nth-of-type(5) {
    top: calc(7.75rem * 2);
  }
  .program-menu:nth-of-type(7) {
    top: calc(7.75rem * 3);
  }
  .program-menu:nth-of-type(9) {
    top: calc(7.75rem * 4);
  }
  .program-menu:nth-of-type(11) {
    top: calc(7.75rem * 5);
  }
  .program-switch {
    display: none !important;
  }
  .program-window {
    width: 65%;
    opacity: 0;
    transition: all .3s ease-out;
    position: absolute;
    top: 0;
    left: 35%;
    right: 0;
    z-index: 0;
    min-height: calc(7.75rem * 6 - 1vw);
  }
  .sec19 .teacher {
    bottom: 0;
    position: absolute;
  }
  .sec19 .arrow::after {
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-left: 10px solid black;
    border-bottom: 5px solid transparent;
  }
  .amb-inner {
    width: calc(50% - 2rem);
  }
  .guest-swiper .swiper-wrapper:not(.enable) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .guest-swiper .swiper-wrapper .swiper-slide {
    width: calc((100% - 2rem) / 2);
    line-height: 0;
  }
  .guest0418:not(.enable) .swiper-pagination {
    display: none;
  }
  .guest-swiper .swiper-wrapper:not(.enable) {
    justify-content: center !important;
  }
  .guest-swiper .swiper-wrapper .swiper-slide {
    width: calc((100% - 4rem) / 3);
    line-height: 0;
  }
  .guest0706 .bg-rokutai-gradient-pink {
    background: white !important;
    max-width: 1140px;
    margin: 0 auto;
  }
  .guest0706 .swiper-slide:not(.swiper-slide-active) {
    transform: none !important;
  }
  .mc-wrapper {
    gap: 20px;
  }
  .mc-inner {
    border: 5px solid black;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .mc-text {
    padding-left: 10% !important;
  }
  .mc-text>* {
    color: white;
  }
  .mc-img {
    max-height: 130%;
  }
  .course-menu {
    padding: 2rem 3rem;
    height: 140px;
    left: 0;
    width: 30%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .course-menu.active {
    width: calc(30% + 10px);
  }
  .course-menu:nth-of-type(3) {
    top: 150px;
  }
  .course-menu:nth-of-type(5) {
    top: 300px;
  }
  .course-window {
    transition: all .3s ease-out;
    width: 70%;
    left: calc(30% + 10px);
    top: 0;
    right: 0;
  }
  .course-menu::before,
  .course-menu::after {
    left: 0;
    width: 5px;
  }
  .course-menu.line-double::before,
  .course-menu.line-double::after {
    height: calc(50% - 1rem);
  }
  .course-menu.line-double::before,
  .course-menu.line-blue::before,
  .course-menu.line-green::before {
    top: 1rem;
  }
  .course-menu.line-blue::before,
  .course-menu.line-green::before {
    height: calc(100% - 2rem);
  }
  .course-menu.line-double::after {
    bottom: 1rem;
  }
  .news-list li {
    padding: 1.5rem 2rem;
  }
  .news-list li div.d-inline-block {
    width: calc(100% - 12rem);
  }
  .tab-switch h3 span {
    font-size: 2.5rem;
  }
  .tab-switch h3 small {
    font-size: 1rem;
  }
  .time-window {
    border: 1rem solid var(--color-orange);
    padding: 1.5rem 2rem;
  }
  .kyosan {
    gap: 2rem;
  }
  .kyosan .big {
    width: calc(50% - 1rem);
    max-width: 400px;
  }
  .kyosan .big img {
    max-width: 400px;
  }
  .kyosan .small img {
    max-width: 180px;
  }
  .rounded-lg-pill {
    border-radius: var(--bs-border-radius-pill) !important;
  }
  .rounded-lg-0 {
    border-radius: 0 !important;
  }
  footer .copyright {
    min-height: 10rem;
  }
  .floating .entry-btns {
    width: calc(100% - 2rem - 100px);
  }
  .pagetop {
    width: 100px;
    height: 100px;
    margin: 1rem;
  }
  .nav-sns img.icon {
    max-width: calc(50% - 7vh);
  }
  .floating-right {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
  .floating-right .bg-white {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
  .floating-right .title {
    writing-mode: tb;
  }
  .floating-right:not(.active) {
    transform: translateX(calc(100% - 80px));
  }
  .floating-entry {
    bottom: 9rem;
    right: 0;
    left: auto;
    width: auto;
    max-width: 500px;
  }
  .floating-news_v2 {
    right: 0;
    bottom: 26rem;
  }
  .floating-news_v2 .text-wrap {
    background-color: #FFFFDF;
    padding: 1rem 1.5rem;
  }
  .floating-pagetop {
    width: 6rem;
    height: 6rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 8rem;
  }
  .supporter-fukidashi {
    border-bottom-left-radius: 0 !important;
  }
  .supporter-fukidashi::before {
    bottom: 0;
    left: -1rem;
  }
}

@media screen and (min-width:769px) and (max-width: 991px) {
  .index-main .entry-btns {
    top: 85%;
  }
}

@media screen and (max-width:991px) {
  .guest-inner p {
    font-size: 12px;
  }
  .guest-name {
    font-size: 30px;
  }
  .guest-img-left {
    right: 0;
    width: 58%;
  }
  .guest-img-right {
    right: -14%;
    width: 70%;
  }
}

@media screen and (min-width:992px) {
  .day-wrap {
    position: absolute;
    top: 0;
    right: 0;
  }
  .day-inner {
    padding: 2rem;
  }
  .position-lg-sticky {
    position: sticky;
  }
  .index-main .entry-btns {
    top: 82%;
    width: 100%;
    max-width: 840px;
    background: linear-gradient(45deg, #EF077B, #FFE232, #019700, #1DA2E9);
  }
  .index-main--scroll {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0 1rem 4rem .5rem;
    display: inline-block;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    border-left: 2px solid black;
  }
  .index-main--scroll::before {
    content: '';
    position: absolute;
    left: -0.5px;
    bottom: 0;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: black;
    border-radius: 8px;
    animation: circlemove 3s ease-in-out infinite,
      cirlemovehide 3s ease-out infinite;
  }
  .index-main--scroll::after {
    content: '';
    position: absolute;
    left: -0.7rem;
    bottom: 0.2rem;
    width: 20px;
    height: 20px;
    border-right: 1.6px solid black;
    transform: rotate(45deg);
  }

  @keyframes circlemove {
    0% {
      bottom: 120px;
    }

    100% {
      bottom: 0px;
    }
  }
  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    80% {
      opacity: 0.9;
    }

    100% {
      opacity: 0;
    }
  }
}

@media screen and (min-width:1200px) {
  :root {
    /* デスクトップビューではベースのfont-sizeは16px相当、見出しのfont-sizeは24px相当に */
    --font-size-default: 16px;
    --font-size-headline: 24px;
  }
  .rounded-xl-pill {
    border-radius: var(--bs-border-radius-pill) !important;
  }
  .rounded-xl-0 {
    border-radius: 0 !important;
  }
}

@media screen and (min-width:1400px) {
  .program-menu h3 {
    font-size: 1.25rem;
  }
  .program-menu small {
    font-size: 0.8rem;
  }
  .program-window {
    min-height: calc(7.62rem * 6);
  }
}

@media screen and (min-width: 1920px) {
  :root {
    /* デスクトップビューではベースのfont-sizeは16px相当、見出しのfont-sizeは24px相当に */
    --font-size-default: 20px;
    --font-size-headline: 36px;
  }
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
  }
  #program .container-xxl {
    max-width: 1440px;
  }
  .index-main .entry-btns {
    max-width: 1180px;
  }
}



@media screen and (min-width:768px) {
  .main-info {
    top: 72%;
  }
  .main-info .d-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* FOR 2026 */
.main-photo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 82%;
  padding: 0 15px;
  width: 100%;
}
.main-photo .fs-3 {
  display: block;
  background-color: yellow;
  color: black !important;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  padding: 15px 0;
  border-radius: 15px;
  text-align: center;
  color: white;
  font-size: 23px;
  border: 3px solid black;
  border-bottom-width: 5px;
  transition: all .3s ease;
}
.main-photo .fs-3:hover {
  border-bottom-width: 3px;
  transform: translateY(2px);
  opacity: 1;
  height: calc(100% + 2px);
}
.main-photo .d-grid .fs-3 span, .main-photo .d-grid .fs-3 i {
  margin-left: auto;
}
.main-photo .d-grid .fs-3 span {
  margin-right: -2rem;
  font-weight: bold;
}

@media screen and (min-width:768px) {
  .main-photo {
    top: 72%;
  }
  .participant-survey-link {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}

@media screen and (max-width:767px) {
  .main-photo {
    padding-bottom: 7.5rem;
  }
  .participant-survey-link {
    padding-bottom: 20px;
    margin-top: 20px;
  }
}




.run-image {
  width: 95%;
  max-width: 1200px;
  height: auto;

  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width:767px) {
  .run-image {

    margin-top: 40px;
  }
}

/* エントリーボタン集 */

/* ===============================
   run-entry layout
================================= */
.run-entry {
  text-align: center;
  margin-top: -30px;
}
.run-entry__inner {
  background: #000;
  padding: 5px;
  border-radius: 10px;
}
.run-entry__inner {
  background: #000;
  padding: 5px;
  border-radius: 10px;
}
.run-entry__lead {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  margin-bottom: 0;
  padding-bottom: 5px;
  white-space: nowrap;
}
.run-entry__buttons {
  border-radius: 5px;
  padding: 10px 5px 13px 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  background: #fff;

}

/* ===============================
   c-button（共通ベース + 押せる演出）
================================= */
.c-button {
  line-height: 1;
  width: clamp(115px, 16.67vw, 240px);
  min-width: calc((100% / 3) - 1rem);
  /* height: 40px; */
  display: grid;
  place-content: center;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: min(2vw, 20px) min(3vw, 32px);
  border: 3px solid black;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 1);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.c-button__label {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* ===============================
   押し込みアニメーション
================================= */
.c-button:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}
.c-button:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
}

/* ===============================
   カラーバリエーション
================================= */
.c-button--orange {
  background: linear-gradient(165deg, #e24f01 47.01%, #d64a00 47.01%);
}
.c-button--blue {
  background: linear-gradient(165deg, #0163cb 47.01%, #005bbb 47.01%);
}
.c-button--pink {
  background: linear-gradient(165deg, #da355e 47.01%, #ca1d48 47.01%);
}


@media screen and (min-width: 769px) {
  .run-entry {
    margin-top: 0;
    margin-top: -8%;
  }
  .run-entry__inner {
    max-width: 834px;
    margin-inline: auto;
    display: flex;
  }
  .run-entry__buttons {
    width: 100%;
    padding: 10px 20px 13px 20px;
    gap: 10px;
    max-width: 600px;
    margin-left: auto;
  }
  .run-entry__lead {
    color: #FFF;
    font-size: 18px;
    padding-bottom: 0;
    align-self: center;
    margin-left: 25px;
  }

  .c-button {
    /* height: 46px; */
  }
  .c-button__label {
    font-size: 16px;
  }
}