/* ==================================================
   RESET
================================================== */

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
small,
dl,
dt,
dd,
ol,
ul,
li,
article,
aside,
footer,
header,
main,
nav,
section,
figure,
figcaption,
form,
label,
button,
input,
textarea,
select {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* ==================================================
   BASE
================================================== */

html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

body {
  width: 100%;
  overflow-x: hidden;
  color: #111;
  font-family: inherit;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
  touch-action: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

section[id] {
  scroll-margin-top: 150px;
}

@media (max-width: 768px) {
  section[id] {
    scroll-margin-top: 92px;
  }
}

/* ==================================================
   FV COMMON
================================================== */

.fv {
  position: relative;
}

.fv__main {
  height: 860px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: 0 auto;
}

.fv__main_inner {
  position: absolute;
  bottom: 80px;
  left: 50px;
}

.fv__main_logo {
  max-width: 500px;
  margin-bottom: 20px;
}

.fv__main_logo img {
  width: 100%;
}

.fv:before,
.fv:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 5;
  display: block;
  border-top: 120px solid var(--fv-color);
  border-bottom: 120px solid transparent;
}

.fv:before {
  left: 0;
  border-right: 120px solid transparent;
  border-left: 120px solid var(--fv-color);
}

.fv:after {
  right: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid var(--fv-color);
}

.fv__header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 10000;
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fv__header.is-hidden {
  transform: translateY(-120%);
}

.fv__nav {
  width: 85%;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
}

.fv__logo img {
  height: 91px;
}

.fv__menu ul {
  display: flex;
  gap: 45px;
  list-style: none;
}

.fv__menu li {
  text-align: center;
}

.fv__menu a {
  color: #000;
  font-size: 12px;
  text-decoration: none;
}

.fv__menu img {
  display: block;
  height: 43px;
  margin: 0 auto 14px;
}

.fv__menu a:hover img {
  transform: translate3d(0, -3px, 0);
  transition: transform 0.2s ease;
}

.fv__menu a:hover small {
  color: #ff6600;
}

.fv__menu span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
}

.fv__menu small {
  position: relative;
  color: #777;
  font-size: 8px;
  letter-spacing: 0.4px;
}

@media (max-width: 1024px) {
  .fv__nav { width: calc(100% - 40px); padding: 16px 24px; }
  .fv__logo img { height: 68px; }
  .fv__menu ul { gap: 24px; }
  .fv__menu span { font-size: 13px; letter-spacing: 1.5px; }
  .fv__main { height: min(78vw, 720px); min-height: 560px; }
  .fv__main_inner { left: 32px; bottom: 48px; }
  .fv__main_logo { width: min(52vw, 500px); max-width: none; }
}

@media (max-width: 768px) {
  .fv__header { top: 0; }

  .fv__nav {
    width: 100%;
    min-height: 70px;
    padding: 10px 14px;
    border-radius: 0;
    flex-direction: row;
    gap: 12px;
  }

  .fv__logo { flex: 0 0 auto; }
  .fv__logo img { display: block; height: 46px; }
  .fv__menu { min-width: 0; flex: 1; overflow: hidden; }

  .fv__menu ul {
    width: 93%;
    gap: 1px;
    justify-content: flex-end;
    overflow: visible;
    padding: 0;
    margin: 0 0 0 auto;
  }

  .fv__menu li { flex: 1 1 0; min-width: 0; }
  .fv__menu a { display: block; }
  .fv__menu img { height: 24px; margin: 0 auto 4px; }
  .fv__menu span { font-size: 9px; letter-spacing: 0; white-space: nowrap; }
  .fv__menu small { display: none; }

  .fv { padding-top: 70px; }

  .fv__main {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    background-position: center;
  }

  .fv__main_inner {
    position: absolute;
    inset: auto 16px 20px;
  }

  .fv__main_logo {
    width: min(76vw, 360px);
    margin: 0;
  }

  .fv::before,
  .fv::after {
    border-top-width: 42px;
    border-right-width: 42px;
    border-bottom-width: 42px;
    border-left-width: 42px;
  }
}

@media (max-width: 480px) {
  .fv__nav { min-height: 62px; padding: 12px 9px; }
  .fv__logo img { height: 43px; }
  .fv__menu img { height: 24px; }
  .fv__menu span { font-size: 10px; margin-top: 7px; }
  .fv { padding-top: 0; }
  .fv__main { aspect-ratio: 4 / 6; }
  .fv__main_inner { inset: auto 12px 15px; }
  .fv__main_logo { width: 70vw; margin-bottom: 30px; }
}


/* ==================================================
   SIDE NAV
================================================== */

.side-nav {
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.side-nav {
  position: fixed;
  inset: 0;
  z-index: 10001;
  pointer-events: none;
}

.side-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s;
}

.side-nav__panel {
  position: absolute;
  right: -420px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  background: #f5e05a;
  border-radius: 20px;
  border: solid 2px black;
  transition: 0.4s cubic-bezier(.77, 0, .18, 1);
}

.side-nav.active {
  pointer-events: auto;
}

.side-nav.active .side-nav__overlay {
  opacity: 1;
}

.side-nav.active .side-nav__panel {
  right: 0;
}

.side-nav__header {
  background: #f4dd47;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid #000;
  border-radius: 20px 20px 0 0;
}

.side-nav__logo {
  width: 250px;
}

.side-nav__body {
  flex: 1;
  background: #fefefe;
  padding: 45px 20px;
}

.side-nav__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 0;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.side-nav__item a {
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.3s;
}

.side-nav__item img {
  width: 100px;
  margin-bottom: 14px;
}

.side-nav__item .en {
  font-size: 8px;
  margin-bottom: 7px;
  color: #444;
}

.side-nav__item .jp {
  font-size: 16px;
  font-weight: bold;
}

.side-nav__item:nth-child(1) .en::before {
  color: #1aa34a;
}

.side-nav__item:nth-child(2) .en::before {
  color: #1e88e5;
}

.side-nav__item:nth-child(3) .en::before {
  color: #000;
}

.side-nav__item:nth-child(4) .en::before {
  color: #e53935;
}

.side-nav__item:nth-child(5) .en::before {
  color: #6aa84f;
}

.side-nav__item:hover img {
  transition: transform 0.2s ease;
  transform: translate3d(0, -3px, 0);
}

.side-nav__item:hover .en {
  color: #ff6600;
}

.side-nav__item.active {
  transform: scale(1.05);
}

.side-nav__footer {
  padding: 16px;
  background: #f4dd47;
  border-top: 1px solid #000;
  border-radius: 0 0 20px 20px;
}

.side-nav__contact {
  width: 90%;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111;
  background: #fff;
  border: 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .side-nav__panel {
    top: 0;
    right: -100%;
    width: min(83%, 380px);
    border-radius: 18px 0 0 18px;
    overflow-y: auto;
    transform: none;
    border-right: none;
    border: 1px solid #111;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,.16);
  }

  .side-nav.active .side-nav__panel {
    right: 0;
    top: 10px;
  }

  .side-nav__header {
    padding: 16px 18px;
    border-radius: 16px 0 0;
  }

  .side-nav__logo {
    width: min(70%, 220px);
  }

    .side-nav__body {
    max-height: calc(100dvh - 210px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 33px 16px;
  }

  .side-nav__footer .icon {
    font-size:11px;
  }

  .side-nav__footer .arrow {
    font-size:11px;
  }

  .side-nav__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 0px;
  }

  .side-nav__item img {
    width: 75px;
  }

  .side-nav__footer {
    border-radius: 0;
  }
}

@media (max-width: 767px) {

  .side-nav__item img {
    width: 80px;
    margin-bottom: 11px;
  }

  .side-nav__item .en {
    font-size: 7px;
    margin-bottom: 5px;
    color: #444444;
  }

  .side-nav__item .jp {
    font-size: 14px;
    font-weight: bold;
  }
}

/* ==================================================
   SIDE MENU
================================================== */

.side-menu {
  position: fixed;
  right: 0;
  top: 220px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.side-menu__item {
  width: 70px;
  height: 80px;
  border-radius: 10px 0 0 10px;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.side-menu__item--menu img {
  width: 30px;
}

.side-menu__text {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin: 11px 0 0 0;
}

.side-menu__item--reserve {
  height: 225px;
}

.side-menu-img {
  width: 49px;
}

.side-menu__text_red {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 20px;
  letter-spacing: 4px;
  margin-top: 15px;
}

.side-menu__item--menu {
  background: white;
  color: black;
  border: 2px solid black;
  box-sizing: border-box;
  border-right: none;
}

.side-menu__item--menu svg path {
  fill: #6b4726;
}

.side-menu__item--menu:hover {
  color: black;
}

.side-menu__item--menu:hover svg path {
  fill: #fff;
}

.side-menu__item--reserve {
  background: #f6d847;
  color: black;
  box-sizing: border-box;
  border-right: none;
}

.side-menu__item--reserve svg path {
  fill: #6b4726;
}

.side-menu__item--reserve:hover {
  transition: transform 0.2s ease;
  transform: translate3d(0, -3px, 0);
}

.side-menu__item--reserve:hover svg path {
  fill: #fff;
}

@media (max-width: 768px) {
  .side-menu {
    position: fixed;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 10000;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0;
    padding: 5px;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid #111;
    border-radius: 50px;
    box-shadow: 0 7px 4px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    top: unset;
  }

  .side-menu__item {
    width: 100%;
    height: 60px;
    min-width: 0;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
  }

  .side-menu__item--menu {
    flex-direction: column;
    gap: 2px;
    color: #111;
    background: transparent;
    border-radius: 15px;
  }

  .side-menu__item--menu img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-bottom: 3px;
  }

  .side-menu__item--menu:active {
    background: #f2f2f2;
  }

  .side-menu__item--reserve {
    position: relative;
    flex-direction: row;
    gap: 10px;
    padding: 0 54px 0 10px;
    color: #111;
    background: #ffe13b;
    border: 2px solid #111;
    border-radius: 999px;
  }

  .side-menu__item--reserve::after {
    content: "▶︎";
    position: absolute;
    top: 50%;
    right: 10px;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    color: #fff;
    background: #111;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
  }

  .side-menu__item--reserve:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #111;
  }

  .side-menu-img {
    display: block;
    width: 42px;
    object-fit: contain;
  }

  .side-menu__text,
  .side-menu__text_red {
    margin: 0;
    color: inherit;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.03em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: nowrap;
  }

  .side-menu__text_red {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
}

/* ==================================================
   FOOTER
================================================== */

.school-footer {
  --footer-bg: #1d1d1d;
  --footer-text: #fff;
  --footer-accent: #f6d847;
  --footer-line: rgba(255, 255, 255, 0.65);
  padding: 78px 30px 36px;
  color: var(--footer-text);
  background: var(--footer-bg);
}

.school-footer__inner {
  width: min(100%, 1640px);
  margin: 0 auto;
}

.school-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
  padding: 0 10px 35px;
}

.school-footer__heading {
  margin: 0 0 23px;
  color: var(--footer-accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.school-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.school-footer__nav-list a {
  position: relative;
  display: inline-block;
  color: var(--footer-text);
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.25s ease,
    transform 0.25s ease;
}

.school-footer__nav-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  background: var(--footer-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.school-footer__support {
  min-width: 390px;
}

.school-footer__support-title {
  margin: 0 0 13px;
  color: var(--footer-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.school-footer__support-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.school-footer__support-list li {
  display: flex;
  align-items: center;
}

.school-footer__support-list a {
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: opacity 0.25s ease,
    transform 0.25s ease;
}

.school-footer__support-list img {
  display: block;
  width: auto;
  max-width: 125px;
  height: 50px;
  object-fit: contain;
}

.school-footer__support-list li:nth-child(1) img {
  max-width: 110px;
}

.school-footer__support-list li:nth-child(2) img {
  max-width: 97px;
}

.school-footer__support-list li:nth-child(3) img {
  max-width: 107px;
}

.school-footer__support-list li:nth-child(4) img {
  max-width: 110px;
}

.school-footer__bottom {
  padding: 32px 10px 0;
  border-top: 0.5px solid var(--footer-line);
}

.school-footer__copyright {
  margin: 0;
  color: var(--footer-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

@media (hover: hover) {
  .school-footer__nav-list a:hover {
    color: var(--footer-accent);
    transform: translateY(-2px);
  }

  .school-footer__nav-list a:hover::after {
    transform: scaleX(1);
  }

  .school-footer__support-list a:hover {
    opacity: 0.72;
    transform: translateY(-3px);
  }
}

@media (max-width: 1100px) {
  .school-footer {
    padding: 70px 24px 34px;
  }

  .school-footer__top {
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
  }

  .school-footer__nav-list {
    gap: 18px 42px;
  }

  .school-footer__support {
    min-width: 0;
  }

  .school-footer__support-list {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .school-footer {
    padding: 58px 20px 30px;
  }

  .school-footer__top {
    display: block;
    padding: 0 0 32px;
  }

  .school-footer__heading {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .school-footer__nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 20px;
  }

  .school-footer__nav-list a {
    font-size: 14px;
    line-height: 1.5;
  }

  .school-footer__support {
    margin-top: 48px;
  }

  .school-footer__support-title {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .school-footer__support-list {
    display: flex;
    gap: 18px;
  }

  .school-footer__support-list a {
    justify-content: start;
  }

  .school-footer__support-list img,
  .school-footer__support-list li:nth-child(n) img {
    width: 100%;
    height: 30px;
    object-position: left center;
  }

    .school-footer__support-list img,
  .school-footer__support-list li:nth-child(2) img {
    width: 83%;
    height: 30px;
    object-position: left center;
  }

  .school-footer__bottom {
    padding: 24px 0 0;
    border-top-color: rgba(255, 255, 255, 0.4);
  }

  .school-footer__copyright {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
}



/* ==================================================
   CONTACT
================================================== */

.contact {
  position: relative;
  padding: 100px 20px 100px;
  background: #f6d847;
  overflow: hidden;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-image: radial-gradient(#ffe84b 3px, transparent 3px);
  background-size: 16px 16px;
  opacity: 0.65;
  pointer-events: none;
}

.contact::before {
  top: 40px;
  left: -45px;
}

.contact::after {
  right: -45px;
  bottom: 50px;
}

.contact__inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact__card {
  padding: 35px 60px 60px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.contact__actions {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.contact__item {
  width: 100%;
  min-height: 122px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  color: #111;
  text-decoration: none;
  background: #fff;
  border: 2px solid #f5d92f;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.contact__item--tel:hover {
  border-color: #ffd900;
}

.contact__item--mail {
  grid-column: 1 / -1;
  border-color: #0878c9;
}

.contact__item--mail:hover {
  background: #f4faff;
}

.contact__item-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: #ffd900;
}

.contact__item-icon svg {
  width: 30px;
  height: 30px;
  fill: #111;
}

.contact__item--mail .contact__item-icon {
  background: #0878c9;
}

.contact__item--mail .contact__item-icon svg {
  fill: #fff;
}

.contact__item-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact__item-label {
  margin-bottom: 5px;
  color: #555;
  font-size: 12px;
  font-weight: 700;
}

.contact__item-main {
  color: #111;
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.35;
  font-weight: 600;
}

.contact__item-sub {
  margin-top: 5px;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

.contact__arrow {
  color: #111;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.contact__item:hover .contact__arrow {
  transform: translateX(4px);
}

.contact-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 20px 0 30px;
}

.contact-message__text {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}

.contact-message__line {
  display: block;
  width: 2px;
  height: 22px;
  background: #111;
  flex-shrink: 0;
}

.contact-message__line:first-child {
  transform: rotate(-18deg);
}

.contact-message__line:last-child {
  transform: rotate(18deg);
}

.contact-school-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.contact-school-line__border {
  flex: 1;
  max-width: 300px;
  border-top: 1px dashed rgba(17, 17, 17, 0.55);
}

.contact-school-line__text {
  margin: 0;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.contact__card .location__header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

@media screen and (max-width: 1024px) {
  .contact__card {
    padding-right: 45px;
    padding-left: 45px;
  }
}

@media (max-width: 800px) {
  .contact {
    padding: 85px 20px 100px;
  }

  .contact__card {
    padding: 55px 35px 45px;
  }

  .contact__actions {
    grid-template-columns: 1fr;
  }

  .contact__item--mail {
    grid-column: auto;
  }
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 72px 14px 78px;
  }

  .contact__inner {
    width: 100%;
  }

  .contact__card {
    padding: 42px 16px 22px;
    border-radius: 16px;
  }

  .contact__actions {
    display: block;
  }

  .contact__item,
  .contact__item--mail {
    grid-column: auto;
    min-height: 0;
    grid-template-columns: 45px minmax(0, 1fr) 18px;
    gap: 10px;
    padding: 14px 12px;
    margin-bottom: 15px;
  }

  .contact__item-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
  }

  .contact__item-icon svg {
    width: 23px;
    height: 23px;
  }

  .contact__item-label {
    font-size: 10px;
  }

  .contact__item-main {
    font-size: 15px;
  }

  .contact__item-sub {
    font-size: 9px;
    line-height: 1.45;
  }

  .contact__arrow {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .contact-message {
    gap: 10px;
  }

  .contact-message__text {
    font-size: 13px;
    white-space: normal;
  }

  .contact-message__line {
    height: 16px;
  }

  .contact-school-line {
    gap: 9px;
    margin-top: 30px;
  }

  .contact-school-line__border {
    max-width: 85px;
  }

  .contact-school-line__text {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 560px) {
  .contact {
    padding: 75px 15px 85px;
  }

  .contact::before,
  .contact::after {
    width: 110px;
    height: 110px;
    background-size: 13px 13px;
  }

  .contact__card {
    padding: 48px 18px 24px;
    border-radius: 18px;
  }

  .contact__actions {
    gap: 14px;
  }

  .contact__item {
    min-height: auto;
    padding: 17px 15px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
    border-radius: 14px;
  }

  .contact__item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .contact__item-icon svg {
    width: 25px;
    height: 25px;
  }

  .contact__item-label {
    font-size: 11px;
  }

  .contact__item-main {
    font-size: 17px;
  }

  .contact__item-sub {
    font-size: 10px;
  }

  .contact__arrow {
    font-size: 29px;
  }
}

@media screen and (max-width: 480px) {
  .contact__item-main {
    font-size: 16px;
  }

  .contact__item-sub {
    display: none;
  }
}

@media screen and (max-width: 385px) {
  .contact__item-main {
    font-size: 14px;
  }

}

/* ==================================================
   LOCATION
================================================== */

.venue-section {
  --venue-yellow: #ffe52e;
  --venue-black: #111;
  --venue-border: #d8d8d8;
  position: relative;
  padding: 100px 20px 110px;
  overflow: hidden;
  background: #fff;
  background-image: url(kisarazu_place_10.webp);
  background-size: cover;
}

.venue-section__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.venue-slider {
  position: relative;
}

.venue-slider__viewport {
  width: 100%;
  padding: 8px 4px 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.venue-slider__viewport::-webkit-scrollbar {
  display: none;
}

.venue-slider__viewport.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.venue-slider__track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.venue-card {
  --venue-color: #078bd0;
  flex: 0 0 calc((1100px - 44px) / 3);
  width: calc((1100px - 44px) / 3);
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--venue-border);
  border-radius: 19px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  transform: translateZ(0);
}

.venue-card--shibuya {
  --venue-color: #078bd0;
}

.venue-card--chiba {
  --venue-color: #1b1b1b;
}

.venue-card--kisarazu {
  --venue-color: #f0444c;
}

.venue-card--visiting {
  --venue-color: #5a9e41;
}

.venue-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.venue-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4 / 1;
  overflow: hidden;
  background: #eee;
}

.venue-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.venue-card__prefecture {
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 82px;
  padding: 9px 7px;
  color: var(--venue-black);
  background: #f6d847;
  border-top: 0;
  border-radius: 0 0 11px 11px;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 600;
  1:
  AUTO 100PX;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.venue-card__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 91px;
  padding: 23px 18px 23px 16px;
  box-sizing: border-box;
}

.venue-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.venue-card__logo {
  display: grid;
  place-items: center;
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  color: #fff;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.08em;
}

.venue-card__text {
  min-width: 0;
}

.venue-card__en {
  margin: 0px 0 2px;
  color: #444;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.venue-card__name {
  margin: 0;
  color: var(--venue-black);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.venue-card__arrow {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--venue-black);
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  transition: color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.venue-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #111;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.17);
  font-size: 35px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.25s ease,
    visibility 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.venue-slider__arrow span {
  position: relative;
  top: -2px;
}

.venue-slider__arrow--prev {
  left: -25px;
}

.venue-slider__arrow--next {
  right: -25px;
}

.venue-slider__arrow:hover {
  background: var(--venue-yellow);
  transform: translateY(-50%) scale(1.07);
}

.venue-slider__arrow:disabled {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.venue-slider__pagination {
  width: 150px;
  height: 4px;
  margin: 5px auto 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}

.venue-slider__pagination-bar {
  display: block;
  width: 30%;
  height: 100%;
  background: #111;
  border-radius: inherit;
  transform: translateX(0);
  will-change: width, transform;
}

.booking-flow__title-line {
  display: block;
  width: 50px;
  height: 4px;
  margin: 15px auto 0;
  background: #ffe84b;
}


@media (hover: hover) {
  .venue-card {
    transition: transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .venue-card:hover .venue-card__visual img {
    transform: scale(1.035);
  }

  .venue-card:hover .venue-card__arrow {
    background: var(--venue-yellow);
    border-color: var(--venue-yellow);
    transform: translateX(3px);
  }
}

@media (max-width: 1160px) {
  .venue-slider__viewport {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 50px;
    padding-left: 50px;
    box-sizing: border-box;
  }

  .venue-card {
    flex-basis: calc((100vw - 124px) / 3);
    width: calc((100vw - 124px) / 3);
    min-width: 295px;
  }

  .venue-slider__arrow--prev {
    left: 2px;
  }

  .venue-slider__arrow--next {
    right: 2px;
  }
}

@media (max-width: 767px) {

    .booking-flow__title-line {
    width: 38px;
    height: 3px;
    margin-top: 11px;
  }
  
  .venue-section {
    padding: 72px 0 82px;
    overflow: hidden;
  }

  .venue-section__inner {
    width: 100%;
  }

  .venue-slider {
    position: relative;
    width: 100%;
    padding: 0 15px;
  }

  .venue-slider__viewport {
    width: 100%;
    margin: 0;
    overflow-x: auto;
    overflow-y: visible;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .venue-slider__viewport::-webkit-scrollbar {
    display: none;
  }

  .venue-slider__track {
    display: flex;
    gap: 20px;
    width: max-content;
  }

  .venue-card {
    flex: 0 0 min(78vw, 330px);
    width: min(78vw, 330px);
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 7px 18px rgba(17, 17, 17, 0.09);
    scroll-snap-align: start;
  }

  .venue-card__link {
    display: block;
    min-height: 0;
  }

  .venue-card__visual {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.68 / 1;
  }

  .venue-card__visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .venue-card__prefecture {
    top: 0;
    right: 12px;
    min-width: 34px;
    min-height: 72px;
    padding: 8px 6px;
    border-width: 2px;
    border-top: 0;
    border-radius: 0 0 9px 9px;
    font-size: 12px;
  }

  .venue-card__body {
    min-height: 82px;
    padding: 15px 14px;
  }

  .venue-card__brand {
    gap: 10px;
  }

  .venue-card__logo {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .venue-card__logo img,
  .venue-sml {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .venue-card__en {
    margin-bottom: 2px;
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .venue-card__name {
    font-size: 17px;
    line-height: 1.4;
  }

  .venue-card__arrow {
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    font-size: 14px;
  }

  .venue-slider__arrow {
    display: none;
  }

  .venue-slider__pagination {
    display: block;
    width: 110px;
    height: 3px;
    margin: 4px auto 0;
  }
}