@charset "UTF-8";

/* ======================================
  Color Variables
====================================== */

:root {
  --orange: #f6b077;
  --deep-orange: #dc8c36;
  --yellow: #f7d978;
  --green: #dfe9bd;
  --olive: #8fa43c;
  --beige: #f6e7cf;
  --peach: #ffd8c6;
  --text: #4f463d;
  --sub: #897b6e;
  --line: #eee4d8;
  --shadow: 0 14px 36px rgba(175, 130, 80, 0.15);
}

/* ======================================
  Reset
====================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ======================================
  Header
====================================== */

.header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 42px 8% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Logo ---------- */

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-mark {
  font-size: 48px;
  line-height: 1;
  color: #e89a22;
  flex-shrink: 0;
}

.logo-text {
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-text strong {
  display: block;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-text small {
  display: block;
  /* margin-top: -5px; */
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #333;
  white-space: nowrap;
}

/* ---------- Navigation ---------- */

.nav {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 14px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav > a:not(.nav-member-btn) {
  transition: opacity 0.3s ease;
}

.nav > a:not(.nav-member-btn):hover {
  opacity: 0.6;
}

.nav span {
  color: #d8cbbb;
}

/* ---------- Member Button ---------- */

.nav-member-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: linear-gradient(135deg, #f5a34a, #f3c25b);
  color: #fff;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(224, 143, 42, 0.26);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.nav-member-btn:hover {
  opacity: 0.94;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(224, 143, 42, 0.34);
}

/* ======================================
  Hamburger
====================================== */

.hamburger {
  display: none;

  position: relative;

  z-index: 200;

  width: 32px;
  height: 28px;

  border: none;
  background: transparent;

  cursor: pointer;

  padding: 0;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger span {
  position: absolute;

  left: 0;

  width: 100%;
  height: 2px;

  border-radius: 999px;

  background: #6f6254;

  transition:
    transform 0.35s ease,
    opacity 0.3s ease,
    top 0.35s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

/* ---------- Active ---------- */

.hamburger.is-active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* ======================================
  Hero
====================================== */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  min-height: 760px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 9.5%;
  z-index: 1;
  max-width: 780px;
}

.hero h1 {
  margin-bottom: 34px;
  font-size: clamp(42px, 3.4vw, 58px);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.hero p {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 2.2;
  letter-spacing: 0.08em;
}

/* ======================================
  Common Section
====================================== */

.section-pad {
  padding: 80px 9%;
}

.en-title {
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #e6a045;
  padding-top: 50px;
}

.center-title {
  text-align: center;
}

.jp-title {
  margin-top: 12px;
  font-size: 19px;
  letter-spacing: 0.08em;
}

.information .jp-title,
.schedule .jp-title {
  text-align: center;
}

.short-line {
  display: block;
  width: 34px;
  height: 1px;
  margin: 24px 0 40px;
  background: #dc9a43;
}

.short-line.center {
  margin-left: auto;
  margin-right: auto;
}

.body-text {
  margin-bottom: 42px;
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.05em;
}

.round-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  min-width: 220px;
  height: 62px;
  border: 1px solid #85796e;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

a.round-btn span {
  color : #85796e;
}

.round-btn:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #c98228;
  transform: translateX(4px);
}

/* ======================================
  About
====================================== */

.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.about-copy {
  max-width: 450px;
}

.about-image {
  overflow: hidden;
  border-radius: 38px;
  filter: drop-shadow(0 20px 35px rgba(175, 130, 80, 0.12));
}

/* ======================================
  Information
====================================== */

.information {
  position: relative;
  width: 100%;
  aspect-ratio: 1550 / 900;
  min-height: 760px;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.info-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.info-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.info-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 80%;
  transform:
    translate(-50%, -50%)
    scale(0.85);
}

.info-content .en-title {
  font-size: clamp(36px, 3.2vw, 52px);
}

.info-content .jp-title {
  text-align: center;
}

.info-content .news-list {
  margin-bottom: 36px;
}

.news-list {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto 36px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(200, 145, 80, 0.12);
}

.news-list a {
  display: grid;
  grid-template-columns: 140px 110px 1fr 40px;
  align-items: center;
  min-height: 66px;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

.news-list a:last-child {
  border-bottom: 0;
}

.news-list em {
  justify-self: start;
  padding: 3px 14px;
  border-radius: 999px;
  background: rgba(255, 216, 198, 0.78);
  color: #dc7c59;
  font-style: normal;
  font-size: 12px;
}

.news-list em.green {
  background: rgba(223, 233, 189, 0.78);
  color: #7f9630;
}

.news-list p {
  letter-spacing: 0.04em;
}

/* ======================================
  News Slider Adjust
====================================== */

.news-slider {
  position: relative;
  width: 100%;
  overflow: visible;
  margin: 0 auto 36px;
}

.news-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 22px;
}

.news-card {
  flex: 0 0 calc((100% - 32px) / 2.4);
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 30px rgba(200,145,80,0.12);
}

.news-card-image {
  aspect-ratio: 16 / 9;
  background: #fffdf8;
  display: grid;
  place-items: center;
  color: #e6a045;
  font-size: 16px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-image span {
  font-size: 32px;
  letter-spacing: 0.08em;
  color: #e6a045;
}

.news-card-text {
  padding: 20px;
  text-align: left;
}

.news-card-text time {
  display: block;
  font-size: 12px;
  color: var(--sub);
  margin-bottom: 8px;
}

.news-card-text p {
  font-size: 14px;
  line-height: 1.9;
}

/* スライダー表示用 */
.news-readmore {
  margin-top: 20px;
  font-size: 13px;
  color: #dc8c36 !important;
  letter-spacing: 0.05em;
}

/* ---------- Arrow ---------- */

.news-arrow {
  position: absolute;
  top: 42%;
  z-index: 3;

  width: 36px;
  height: 56px;

  border: none;
  border-radius: 0;
  background: transparent;

  color: transparent;
  font-size: 0;

  cursor: pointer;
}

.news-arrow::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 20px;
  height: 20px;

  border-top: 1.5px solid #c58d43;
  border-left: 1.5px solid #c58d43;
}

.news-prev {
  left: -48px;
}

.news-next {
  right: -48px;
}

.news-prev::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.news-next::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.news-title {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.news-excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 1.9;
  color: #666;
}

/* ======================================
  Schedule / Grid Calendar API
====================================== */
/* 
.calendar-box {
  width: 100%;
  max-width: 1400px;
  margin: 50px auto 0;
  padding: 42px 46px;
  border-radius: 34px;
  box-shadow: 0 14px 36px rgba(175,130,80,0.12);
  background: #fff;
} */

.calendar-box {
  width: 100%;
  max-width: 1200px;

  margin: 50px auto 0;

  padding: 42px 46px;

  box-sizing: border-box;

  border-radius: 34px;
  box-shadow: 0 14px 36px rgba(175,130,80,0.12);
  background: #fff;
}

.schedule.section-pad {
  padding-left: 5%;
  padding-right: 5%;
  background: #fffef9;
}

.event-list {
  width: 100%;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.calendar-title {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #dc8c36;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  padding: 0;

  border: 1px solid #eee4d8;
  border-radius: 50%;

  background: #fff;

  color: #dc8c36;

  font-size: 28px;
  line-height: 46px;

  text-align: center;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.calendar-nav:hover {
  background: rgba(246,231,207,0.7);
  transform: translateY(-2px);
}

.calendar-table {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #eee4d8;
  border-radius: 22px;
  overflow: hidden;;
  background: #fff;
}

.calendar-week {
  padding: 12px 6px;
  border-right: 1px solid #eee4d8;
  border-bottom: 1px solid #eee4d8;
  background: rgba(246,231,207,0.45);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--sub);
}

.calendar-cell {
  position: relative;
  min-height: 120px;
  padding: 10px;
  border-right: 1px solid #eee4d8;
  border-bottom: 1px solid #eee4d8;
  background: #fff;
  text-align: left;
}

.calendar-sun {
  color: #dc7c59;
}

.calendar-sat {
  color: #7f9630;
}

.calendar-cell.is-empty {
  background: rgba(246,231,207,0.22);
}

.calendar-cell.has-event {
  background: rgba(255,248,240,0.95);
}

.calendar-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  border-radius: 50%;
  font-size: 14px;
  color: var(--text);
}

.calendar-date.is-today {
  background: #dc8c36;
  color: #fff;
}

.calendar-events {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calendar-event {
  padding: 6px 7px;
  border-radius: 10px;
  background: rgba(246,176,119,0.22);
  font-size: 12px;
  line-height: 1.45;
}

.calendar-event-time {
  display: block;
  color: #dc8c36;
  font-size: 11px;
}

.calendar-event-title {
  display: block;
  color: var(--text);
}

.event-message {
  text-align: center;
  color: var(--sub);
  font-size: 15px;
}

/* 詳細表示 */
.calendar-event {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: left;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
}

.schedule-modal.is-open {
  display: block;
}

.schedule-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(79,70,61,0.35);
}

.schedule-modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90%, 520px);
  padding: 42px 36px;
  border-radius: 32px;
  background: #fffdf8;
  box-shadow: 0 20px 50px rgba(80,60,40,0.2);
  transform: translate(-50%, -50%);
  text-align: left;
}

.schedule-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: none;
  background: transparent;
  color: #dc8c36;
  font-size: 28px;
  cursor: pointer;
}

.schedule-modal-label {
  margin-bottom: 10px;
  color: #dc8c36;
  font-size: 13px;
  letter-spacing: 0.12em;
}

#schedule-modal-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
}

.schedule-modal-time,
.schedule-modal-location {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.8;
}

.schedule-modal-location::before {
  content: "場所：";
}

.schedule-modal-description {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #eee4d8;
  font-size: 14px;
  line-height: 2;
  color: var(--text);
}

/* Tablet */


/* SP */


/* ======================================
  Recruit Section Background
====================================== */

.recruit-section {
  position: relative;
  width: 100%;
  aspect-ratio: 1550 / 700;
  min-height: 760px;
  overflow: hidden;
  padding: 0;
}

.recruit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.recruit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.recruit-page.section-pad {
  padding-bottom: 40px;
}

.recruit-contact.section-pad {
  padding-top: 150px;
}


.recruit-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;

  width: 84%;

  transform: translate(-50%, -50%);

  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ======================================
   Thanks Page
====================================== */

.thanks-page {
  padding-top: 20px;
  padding: 20px 7% 100px;
}

.thanks-page .contact-box {
  text-align: center;
}

.thanks-page .round-btn {
  margin-top: 40px;
}

/* ======================================
  Footer
====================================== */

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 8% 42px;
  background: #fffef8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.footer p {
  grid-column: 1 / 3;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--sub);
}
/* ======================================
  Page Top Button
====================================== */

.page-top span {
  position: absolute;

  top: 35px;
  left: 50%;

  display: block;

  width: 18px;
  height: 18px;

  border-top: 1.5px solid #4f463d;
  border-left: 1.5px solid #4f463d;

  transform: translateX(-50%) rotate(45deg);
} */

/* ======================================
  Sub Pages
====================================== */

.sub-header {
  position: relative;
  background: linear-gradient(180deg, rgba(255,253,248,0.96), rgba(255,248,240,0.92));
  padding-top: 28px;
  padding-bottom: 28px;
  box-shadow: 0 2px 18px rgba(180,140,90,0.08);
}

.sub-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  padding: 80px 8% 0;
  text-align: center;
  background: #fffdf8;
}

.sub-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.2;
  color: #e3a14a;
}

.sub-hero p {
  margin-top: 18px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--sub);
}

.about-page,
.recruit-page {
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: auto;
  background-color: #fffdf8;
  text-align: center;
}

.about-page-copy,
.recruit-page-copy {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 100px;
}

.about-page .jp-title,
.about-page .body-text,
.recruit-page .jp-title,
.recruit-page .body-text {
  text-align: center;
}

/* ======================================
  Recruit Note Text
====================================== */

.recruit-contact .body-text{
  margin-bottom:40px;
  width: 75%;
}

.recruit-note-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.recruit-note-text,
.recruit-note-text * {
  text-align: left;
}

.recruit-note-text p {
  margin-bottom: 1.4em;
}

.recruit-note-text h2,
.recruit-note-text h3 {
  margin: 2em 0 1em;
  color: #4f463d;
  font-weight: 600;
  line-height: 1.6;
}

.recruit-note-text ul,
.recruit-note-text ol {
  margin: 0 0 1.4em 1.5em;
}

.recruit-note-text li {
  margin-bottom: 0.5em;
}

/* ======================================
  Teacher
====================================== */

.teacher-area {
  background-color: #fffdf8;
}

.teacher-heading {
  text-align: center;
  margin-bottom: 20px;
}

.teacher-heading .jp-title {
  text-align: center;
}

.teacher-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  max-width: 1200px;
  margin: 0 auto;
}

.teacher-card {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 36px rgba(175,130,80,0.12);
}

.teacher-card img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center 20%;
}

.teacher-text {
  padding: 36px;
}

.teacher-text h3 {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #dc8c36;
  line-height: 1.4;
}

.teacher-text h3 span {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #dc8c36;
}

.teacher-text p {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.teacher-links {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.teacher-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(246,231,207,0.5);
  color: #dc8c36;
  font-size: 18px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.teacher-links a:hover {
  transform: translateY(-2px);
  background: #dc8c36;
  color: #fff;
}

/* ======================================
  Support Teacher
====================================== */

.support-teacher-area .teacher-section {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
}

.support-teacher-area .teacher-card img {
  aspect-ratio: 4 / 4.4;
}

.support-teacher-area .teacher-text {
  padding: 30px;
}

.support-teacher-area .teacher-text h3 {
  font-size: 21px;
}

.support-teacher-area .teacher-text h3 span {
  font-size: 14px;
}

.support-teacher-area .teacher-text p {
  font-size: 14px;
  line-height: 2.1;
}


/* Tablet / SP */


/* ======================================
  Recruit Page
====================================== */

.recruit-contact {
  background: #fffdf8;
  text-align: center;
}

.recruit-contact-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: 34px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 36px rgba(175,130,80,0.12);
}

.recruit-contact .jp-title,
.recruit-contact .body-text {
  text-align: center;
}

.recruit-contact .body-text {
  margin-bottom: 36px;
}

/* ======================================
  Member Page
====================================== */

.member-login {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffdf8;
  padding: 30px 7% 100px;
}

.sub-hero .jp-title {
  text-align: center;
}

.sub-hero .short-line {
  margin-bottom: 0;
}

.login-box {
  width: 100%;
  max-width: 460px;
  padding: 54px 42px;
  border-radius: 32px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 36px rgba(175,130,80,0.12);
  text-align: center;
}

.login-box h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #dc8c36;
}

.login-box input {
  width: 100%;
  height: 56px;
  margin-bottom: 22px;
  padding: 0 18px;
  border: 1px solid #e5d7c8;
  border-radius: 999px;
  background: #fff;
  font-size: 16px;
  outline: none;
}

.login-box button {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5a34a, #f3c25b);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.login-box button:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.login-box #error {
  margin-top: 18px;
  color: #d26d52;
  font-size: 14px;
}

/* ======================================
  Member Link Page
====================================== */

.member-link-page {
  background: #fffdf8;
  padding: 80px 7% 180px;
}

.member-link-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.member-link-box a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
  padding: 22px 72px 22px 34px;
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 30px rgba(180,140,90,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-link-box a::after {
  content: "→";
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  color: #dc8c36;
  font-size: 22px;
}

.member-link-box a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(180,140,90,0.14);
}

.member-link-box span {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.member-link-box em {
  margin-top: 4px;
  color: var(--sub);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.06em;
}

/* ======================================
  Contact Page
====================================== */

.contact-page {
  background: #fffdf8;
  padding: 150px 7% 180px;
}

.contact-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: 34px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 36px rgba(175,130,80,0.12);
  text-align: center;
}

.contact-box .body-text {
  text-align: center;
  margin-bottom: 42px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: left;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.contact-form label span {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e5d7c8;
  border-radius: 18px;
  background: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 56px;
  padding: 0 18px;
}

.contact-form textarea {
  resize: vertical;
  padding: 18px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #dc8c36;
  box-shadow: 0 0 0 3px rgba(220,140,54,0.12);
}

.contact-submit {
  width: 220px;
  height: 62px;
  margin: 20px auto 0;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5a34a, #f3c25b);
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

/* ======================================
  Tablet
====================================== */


/* ======================================
  SP
====================================== */


/* ======================================
  Minimum Mobile Width Support
====================================== */

html,
body {
  min-width: 320px;
}


/* ======================================
  Small Tablet
====================================== */


/* ======================================
  Fade Animation
====================================== */

.js-hero-fade {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeIn 1.4s ease forwards;
  animation-delay: 0.4s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.js-scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   Mobile SNS
========================== */

.nav-sns {
  display: none !important;
}


/* ==========================
   Schedule Modal
========================== */

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.schedule-modal.is-open {
  display: block;
}

.schedule-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(79,70,61,0.45);
  backdrop-filter: blur(4px);
}

.schedule-modal-box {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(92%, 600px);

  padding: 42px;

  border-radius: 28px;

  background: #fffdf8;

  box-shadow:
    0 24px 60px rgba(0,0,0,0.15);

  transform: translate(-50%, -50%);
}

.schedule-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;

  border: none;
  background: transparent;

  color: #dc8c36;

  font-size: 32px;
  cursor: pointer;
}

.schedule-modal-label {
  margin-bottom: 8px;

  color: #dc8c36;

  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#schedule-modal-title {
  margin-bottom: 18px;

  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
}

.schedule-modal-time,
.schedule-modal-location {
  margin-bottom: 8px;

  font-size: 15px;
  color: var(--sub);
  line-height: 1.8;
}

.schedule-modal-description {
  margin-top: 22px;
  padding-top: 22px;

  border-top: 1px solid #eee4d8;

  line-height: 2;
  white-space: pre-wrap;
}

/* ======================================
  Responsive
====================================== */

/* ---------- max-width: 1200px ---------- */

@media (max-width: 1200px) {
  
    .en-title {
      font-weight: 500;
    }

  .news-slider {
      overflow: hidden;
    }

    .news-card {
      flex-basis: 72%;
    }

    .news-arrow {
      display: none;
    }

  .schedule.section-pad {
    padding: 75px 5%;
  }

  .support-teacher-area .teacher-section {
      grid-template-columns: 1fr;
    }

  .header {
      padding: 32px 6% 0;
    }

    .hamburger {
      display: block;
    }

    .nav {
      position: fixed;

      top: 0;
      right: -100%;

      z-index: 150;

      display: flex;

      width: 30%;
      min-width: 320px;
      height: 100vh;

      padding: 140px 48px;

      flex-direction: column;
      align-items: flex-start;
      gap: 28px;

      background: rgba(255,255,255,0.98);

      box-shadow:
        -10px 0 40px rgba(0,0,0,0.08);

      transition: right 0.45s ease;
    }

    .nav.is-open {
      right: 0;
    }

    .nav span {
      display: none;
    }

    .nav a {
      font-size: 18px;
      letter-spacing: 0.08em;
    }

    .nav-member-btn {
      margin-top: 12px;
    }

    /* タイトル・ロゴ */
    .logo-text strong{
      font-weight: 500;
    }

    .hero {
      aspect-ratio: 834 / 680;

      min-height: auto;

      padding: 0;
    }

    .hero-text {
      position: absolute;

      top: 38%;
      left: 9.5%;

      max-width: 620px;
    }

    .hero h1 {
      font-size: 38px;
      line-height: 1.7;
      /* font-weight: 500; */
      white-space: nowrap;
    }

    .hero p {
      font-size: 15px;
    }

    .about {
      grid-template-columns: 1fr 1.15fr;
      gap: 42px;
    }

    .about-copy {
      max-width:  750px;
    }

      .information {
      aspect-ratio: auto;
      min-height: 880px;
      padding: 0;
    }

    .info-content {
      top: 50%;
      width: 90%;
      transform:
        translate(-50%, -50%)
        scale(0.80);
    }

    .recruit-section {
      aspect-ratio: 834 / 620;

      min-height: auto;

      padding: 0;
    }

    .recruit-content {
      position: absolute;

      top: 50%;
      left: 50%;

      width: 88%;

      transform: translate(-50%, -50%);

      grid-template-columns: 1.15fr 1fr;
      gap: 42px;
    }

    .teacher-section {
      grid-template-columns: 1fr;
    }

  .hamburger {
      position: fixed;
      top: 35px;
      right: 24px;
      z-index: 300;
    }

    .hamburger::after {
      content: "MENU";
      position: absolute;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 0.12em;
      color: #4f463d;
    }

    .footer {
      display: flex;

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

      text-align: center;

      padding:
        50px 7%
        50px;
    }

    .footer-nav {
      display: none;
    }

    .footer .logo {
      justify-content: center;
    }

    .footer p {
      margin-top: -10px;
    }

    .page-top {
      right: 18px;
      bottom: 18px;
    }

  .nav-sns {
      display: flex !important;
      width: 100%;
      margin-top: 16px;
      padding-top: 24px;
      border-top: 1px solid #eee4d8;
    }

    .nav-sns a {
      display: flex;
      align-items: center;
      justify-content: center;

      width: 42px;
      height: 42px;

      border-radius: 50%;

      background: rgba(246,231,207,0.5);

      color: #dc8c36;

      font-size: 18px;

      transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
    }

    .nav-sns a:hover {
      transform: translateY(-2px);
      background: #dc8c36;
      color: #fff;
    }
}

/* ---------- max-width: 768px ---------- */

@media (max-width: 768px) {
  .calendar-box {
      max-width: 100%;
      margin-top: 36px;
      padding: 28px 12px;
      border-radius: 28px;
    }

    .schedule.section-pad {
    padding-left: 5%;
    padding-right: 5%;
  }

    .calendar-title {
      font-size: 20px;
    }

    .calendar-nav {
      width: 40px;
      height: 40px;
      font-size: 26px;
    }

    .calendar-week {
      padding: 9px 2px;
      font-size: 11px;
    }

    .calendar-cell {
      min-height: 84px;
      padding: 5px;
    }

    .calendar-date {
      width: 23px;
      height: 23px;
      margin-bottom: 4px;
      font-size: 12px;
    }

    .calendar-event {
      padding: 4px 5px;
      border-radius: 8px;
      font-size: 10px;
    }

    .calendar-event-time {
      font-size: 9px;
    }

    .calendar-event-title {
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      line-clamp: 2;
      -webkit-line-clamp: 2;
    }
}

/* ---------- max-width: 760px ---------- */

@media (max-width: 760px) {
  .news-card {
      flex-basis: 84%;
    }

  .header {
      padding: 24px 4% 0;
    }

    .logo-mark {
      font-size: 38px;
    }

    .logo-text strong {
      font-size: 18px;
    }

    .logo-text small {
      font-size: 10px;
      letter-spacing: 0.14em;
    }

    .hamburger {
      position: fixed;
      top: 35px;
      right: 24px;
      z-index: 300;
    }

    .hero {
      aspect-ratio: 366 / 588;
      min-height: auto;
      padding: 0;
    }

    .hero-text {
      position: absolute;
      top: 38%;
      left: 7%;
      max-width: 86%;
    }

    .hero h1 {
      font-size: 36px;
      font-weight: 500;
      white-space: normal;
      line-height: 1.8;
    }

    .hero p {
      font-size: 14px;
      line-height: 2.1;
    }

    /* タイトル・ロゴ */
    .logo-text strong{
      font-weight: 500;
      font-size: 18px;
    }

    .logo-text small{
      display: block;
      margin-top: 2px;
      font-size: 11px;
      letter-spacing: 0.18em
    }

    .logo-mark img {
      width: 55px;
      height: auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .section-pad {
      padding: 100px 7% 50px;
    }

    
   #about.section-pad {
    padding: 50px 7% 80px;
   }

    #recruit .en-title {
      padding-top: 0;
    }

    .about {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }

    /* 画像非表示 */
    .about-image {
    display: none;
    }

    .about-image img {
      width: 100%;
      height: 100%;

      object-fit: cover;
      object-position: center;
    }

    .about-copy {
      max-width: 520px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .about-copy .body-text {
      text-align: left;
      margin-bottom: 42px;
    }

    .about-page {
      padding: 100px 7% 0;
    }

  .about-page .about-copy {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 7% 0px;
  }

  .teacher-heading .en-title {
    padding: 0;
  }

    /* info追加 */
    .information {
      aspect-ratio: auto;
      min-height: 900px;
      padding: 0;
    }

    .info-content {
      top: 50%;
      width: 90%;
      transform: translate(-50%, -50%);
    }

    .news-slider {
      margin-bottom: 42px;
    }

    .news-track {
      gap: 22px;
      padding: 8px 4px 28px;
    }

    .news-card {
      flex-basis: 88%;
      border-radius: 30px;
    }

    .news-card-text {
      padding: 26px 22px 28px;
    }

    .news-card-text time {
      font-size: 13px;
      margin-bottom: 12px;
    }

    .news-title {
      font-size: 17px;
      line-height: 1.9;
      margin-bottom: 14px;
    }

    .news-excerpt {
      font-size: 14px;
      line-height: 2.1;
      -webkit-line-clamp: 3;
      line-clamp: 3;
    }

    .news-readmore {
      margin-top: 22px;
      font-size: 14px;
    }


    .recruit-section {
      aspect-ratio: 390 / 500;
      min-height: auto;
      padding: 0;
    }

    .recruit-content {
      position: absolute;
      top: 50%;
      left: 50%;

      width: 88%;

      transform: translate(-50%, -50%);

      grid-template-columns: 1fr;
      justify-items: center;
      gap: 0;
    }

    /* 画像表示 */
    /* .recruit-content .about-image {
      display: block;
      order: -1;

      width: 300px;
      height: 300px;

      margin: 0 auto 36px;

      border-radius: 50%;
      overflow: hidden;
    } */

    .recruit-content .about-image {
    display: none;
  }

    .recruit-content .about-image img {
      width: 100%;
      height: 100%;

      object-fit: cover;
      object-position: center;
    }

    .recruit-content .about-copy {
      max-width: 520px;

      display: flex;
      flex-direction: column;
      align-items: center;

      text-align: center;
    }

    .recruit-content .body-text {
      text-align: left;
    }

    .footer {
      display: flex;

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

      text-align: center;

      padding: 50px 7% 50px;
    }

    .footer-nav {
      display: none;
    }

    .footer .logo {
      justify-content: center;
    }

    .footer p {
      margin-top: -10px;
    }

    .page-top {
      right: 18px;
      bottom: 18px;
    }

    .sub-hero {
      min-height: 280px;
      padding-top: 100px;
    }

    .sub-hero h1 {
      font-size: 42px;
    }

    .teacher-text {
      padding: 28px;
    }

    .login-box {
      padding: 42px 28px;
    }

    .contact-page {
      padding: 120px 7% 100px;
    }

  /* Contactページだけ */
  .contact-page .en-title {
    padding-top: 0;
  }

  /* Recruitページだけ */
  .recruit-contact .en-title {
    padding-top: 0;
  }

  /* TOP scheduletページだけ */
    .schedule .en-title {
      padding-top: 0;
    }

      .member-link-page {
      padding: 30px 7% 100px;
    }

    .member-link-box a {
      min-height: 84px;
      padding: 20px 56px 20px 24px;
    }

    .member-link-box a::after {
      right: 24px;
    }

    .member-link-box span {
      font-size: 16px;
    }

    .recruit-contact.section-pad{
      padding: 120px 7% 100px;
    }

    .contact-box {
      padding: 42px 28px;
      border-radius: 28px;
    }

    .contact-submit {
      width: 100%;
    }

    .recruit-contact-box {
    padding: 56px 20px 48px;
  }

   .recruit-contact .body-text {
   width: 90%;
   }

  .schedule-modal-box {
      width: calc(100% - 32px);
      padding: 30px 24px;
    }

    #schedule-modal-title {
      font-size: 22px;
    }
}

/* ---------- min-width: 501px and max-width: 760px ---------- */

@media (min-width: 501px) and (max-width: 760px) {
  .information {
      aspect-ratio: auto;
      min-height:1000px;
      padding: 0;
      overflow: hidden;
    }

    .info-content {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 90%;

      transform:
        translate(-50%, -50%)
        scale(0.85);
    }
}

/* ---------- max-width: 520px ---------- */

@media (max-width: 520px) {
  .hero h1 {
      font-size: 27px;
      margin-bottom: 20px;
    }

    .round-btn {
      min-width: 190px;
      height: 56px;
      gap: 34px;
    }

    .news-list time {
      font-size: 13px;
    }
}

/* ---------- max-width: 500px ---------- */

@media (max-width: 500px) {
  body {
      font-size: 14px;
    }

    .hero h1 {
      font-size: 22px;
    }

    .hero p {
      font-size: 13px;
    }

    .en-title {
      font-size: 28px;
      font-weight: 500;
    }

    .information .en-title {
      font-size: 22px;
      letter-spacing: 0.08em;
    }

    .jp-title {
      font-size: 15px;
    }

    .body-text {
      font-size: 14px;
      line-height: 2.1;
    }

    .round-btn {
      font-size: 12px;
    }

    .news-list a {
      font-size: 12px;
    }

    .news-list time,
    .news-list em,
    .news-list p {
      font-size: 12px;
    }

    .news-card-image span {
      font-size: 26px;
    }

    .nav a {
      font-size: 15px;
    }

    .login-box h2,
    .contact-box h2 {
      font-size: 24px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      font-size: 14px;
    }

    .information .en-title {
    font-size: 28px;
    letter-spacing: 0.08em;
  }
}

/* ---------- max-width: 430px ---------- */

@media (max-width: 430px) {
  .calendar-box {
      padding: 24px 8px;
    }

    .calendar-cell {
      min-height: 76px;
    }
}

/* ---------- max-width: 375px ---------- */

@media (max-width: 375px) {
  .hero {
      aspect-ratio: 375 / 750;
    }

    .information {
      aspect-ratio: 375 / 750;
    }

    .recruit-section {
      aspect-ratio: 375 /650;
    }

    .hero-text,
    .info-content,
    .recruit-content {
      width: 90%;
    }

    .hero h1 {
      font-size: 24px;
      line-height: 1.7;
    }

    .hero p {
      font-size: 13px;
      line-height: 2;
    }

    .en-title {
      font-size: 32px;
    }

    .jp-title {
      font-size: 16px;
    }

    .body-text {
      font-size: 14px;
      line-height: 2.2;
    }

    .round-btn {
      min-width: 170px;
      height: 52px;

      gap: 24px;

      font-size: 13px;
    }

    .news-list a {
      padding: 16px;
    }

    .news-list time,
    .news-list p {
      font-size: 13px;
    }

    .logo-text strong {
      font-size: 16px;
    }

    .logo-text small {
      font-size: 9px;
      letter-spacing: 0.08em;
    }

    .nav {
      width: 86%;
      min-width: auto;

      padding: 120px 32px;
    }

    .nav a {
      font-size: 16px;
    }
}

/* スマホメニュー内の団員専用ボタンを固定 */
@media (max-width: 1200px) {

  .nav .nav-member-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 160px;
    height: auto;
    min-height: 54px;

    padding: 0 28px;

    border-radius: 999px;

    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.08em;
    white-space: nowrap;

    box-sizing: border-box;
  }

}

@media (max-width: 500px) {

  .nav .nav-member-btn {
    min-width: 140px;
    min-height: 48px;
    padding: 0 22px;
    font-size: 16px;
    line-height: 1;
  }

}

/* ======================================
  Hero Floating Notes
====================================== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  z-index: 0;
}

.floating-notes {
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;
  overflow: hidden;
}

.floating-notes span {
  position: absolute;
  bottom: -90px;

  color: rgba(255, 255, 255, 0.9);

  line-height: 1;

  animation-name: heroNoteFloat;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* PC：大きめ・ランダム風 */

.floating-notes span:nth-child(1) {
  left: 10%;
  font-size: 54px;
  animation-duration: 15s;
  animation-delay: 0s;
}

.floating-notes span:nth-child(2) {
  left: 28%;
  font-size: 38px;
  animation-duration: 19s;
  animation-delay: 4s;
}

.floating-notes span:nth-child(3) {
  left: 48%;
  font-size: 68px;
  animation-duration: 17s;
  animation-delay: 1.5s;
}

.floating-notes span:nth-child(4) {
  left: 70%;
  font-size: 44px;
  animation-duration: 21s;
  animation-delay: 6s;
}

.floating-notes span:nth-child(5) {
  left: 88%;
  font-size: 60px;
  animation-duration: 16s;
  animation-delay: 2.5s;
}

.hero-text {
  z-index: 2;
}

@keyframes heroNoteFloat {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }

  12% {
    opacity: 0.65;
  }

  50% {
    transform: translateY(-48vh) translateX(24px) rotate(8deg);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-110vh) translateX(-18px) rotate(-8deg);
    opacity: 0;
  }
}

/* SP：今の大きさに戻す */

@media (max-width: 760px) {

  .floating-notes span {
    color: rgba(255, 255, 255, 0.9);
  }

  .floating-notes span:nth-child(1) {
    left: 10%;
    font-size: 30px;
  }

  .floating-notes span:nth-child(2) {
    left: 28%;
    font-size: 24px;
  }

  .floating-notes span:nth-child(3) {
    left: 48%;
    font-size: 34px;
  }

  .floating-notes span:nth-child(4) {
    left: 70%;
    font-size: 26px;
  }

  .floating-notes span:nth-child(5) {
    left: 88%;
    font-size: 32px;
  }

}