@charset "UTF-8";
:root {
  --clr-white:      #FFFFFF;
  --clr-bg:         #FAFAF8;
  --clr-black:      #141414;
  --clr-ink:        #1E1E1E;
  --clr-gray-1:     #E8E8E4;
  --clr-gray-2:     #CDCDC8;
  --clr-gray-3:     #888884;
  --clr-gray-4:     #444440;
  --clr-today:      #F7F4EF;
  --slide-1-from:   #0D1A2B;
  --slide-1-to:     #1A3050;
  --slide-2-from:   #1A0D2B;
  --slide-2-to:     #2E1A47;
  --slide-3-from:   #0D1F14;
  --slide-3-to:     #183520;
  --ff-serif:    'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --ff-sans:     'DM Sans', 'Noto Sans JP', system-ui, sans-serif;
  --ff-ja-serif: 'Noto Serif JP', 'Cormorant Garamond', serif;
  --ff-ja-sans:  'Noto Sans JP', 'DM Sans', sans-serif;
  --line:        1px solid var(--clr-gray-1);
  --line-dark:   1px solid var(--clr-gray-2);
  --header-h:    60px;
  --max-w:       1440px;
  --gutter:      clamp(1.25rem, 4vw, 3.5rem);
  --section-py:  clamp(4rem, 8vw, 7rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  background: var(--clr-bg);
  color: var(--clr-ink);
  line-height: 1.65;
  font-family: var(--ff-sans);
}

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

ul,
ol {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.a-logo-wordmark {
  color: var(--clr-black);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1;
  font-family: var(--ff-serif);
  letter-spacing: 0.02em;
}

.a-logo-sub {
  color: var(--clr-gray-3);
  font-weight: 400;
  font-size: 0.55rem;
  line-height: 1;
  font-family: var(--ff-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.a-nav-link {
  display: flex;
  position: relative;
  align-items: center;
  height: var(--header-h);
  padding: 0 1.1rem;
  color: var(--clr-gray-4);
  font-weight: 400;
  font-size: 0.78rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.a-nav-link::after {
  position: absolute;
  right: 1.1rem;
  bottom: 0;
  left: 1.1rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--clr-black);
  content: '';
  transition: transform 0.25s ease;
}

.a-nav-link:hover {
  color: var(--clr-black);
}

.a-nav-link:hover::after {
  transform: scaleX(1);
}

.a-nav-link--cta {
  height: auto;
  margin-left: 0.5rem;
  padding: 0.4rem 1.1rem;
  border: var(--line-dark);
  color: var(--clr-black);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s;
}

.a-nav-link--cta::after {
  display: none;
}

.a-nav-link--cta:hover {
  border-color: var(--clr-black);
  background: var(--clr-black);
  color: var(--clr-white);
}

.a-slide-tag {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--clr-gray-3);
  font-weight: 500;
  font-size: 0.65rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.a-slide-title {
  margin-bottom: 2rem;
  color: var(--clr-black);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 0.92;
  font-family: var(--ff-serif);
  letter-spacing: -0.01em;
}

.a-slide-index {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  font-size: 0.75rem;
  font-family: var(--ff-serif);
  letter-spacing: 0.1em;
}

.a-meta-term {
  flex-shrink: 0;
  width: 2.5rem;
  color: var(--clr-gray-3);
  font-weight: 500;
  font-size: 0.65rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.a-meta-def {
  color: var(--clr-ink);
  font-weight: 400;
  font-size: 0.9rem;
  font-family: var(--ff-ja-serif);
}

.a-counter-current {
  color: var(--clr-gray-3);
  font-weight: 300;
  font-size: 1.1rem;
  font-family: var(--ff-serif);
  letter-spacing: 0.05em;
}

.a-counter-sep {
  padding: 0 0.15rem;
  color: var(--clr-gray-1);
  font-size: 0.7rem;
}

.a-counter-total {
  color: var(--clr-gray-2);
  font-weight: 400;
  font-size: 0.7rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.05em;
}

.a-strip-cat {
  color: var(--clr-gray-3);
  font-weight: 500;
  font-size: 0.58rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.a-strip-title {
  overflow: hidden;
  color: var(--clr-black);
  font-weight: 400;
  font-size: 0.88rem;
  font-family: var(--ff-serif);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.a-strip-date {
  color: var(--clr-gray-3);
  font-weight: 400;
  font-size: 0.65rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.06em;
}

.a-section-title {
  color: var(--clr-black);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-family: var(--ff-serif);
  letter-spacing: -0.01em;
}

.a-section-label {
  color: var(--clr-gray-1);
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
  font-family: var(--ff-serif);
  letter-spacing: -0.02em;
  user-select: none;
}

.a-section-subtitle {
  margin-top: 0.5rem;
  color: var(--clr-gray-3);
  font-weight: 400;
  font-size: 0.78rem;
  font-family: var(--ff-ja-sans);
  letter-spacing: 0.12em;
}

.a-footer-wordmark {
  color: var(--clr-black);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.2;
  font-family: var(--ff-serif);
  letter-spacing: 0.02em;
}

.a-footer-tagline {
  margin-top: 3px;
  color: var(--clr-gray-3);
  font-weight: 400;
  font-size: 0.62rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.15em;
}

.a-copyright small {
  display: block;
  color: var(--clr-gray-2);
  font-weight: 400;
  font-size: 0.65rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.1em;
  text-align: center;
}

.a-slide-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.2rem;
  gap: 0.75rem;
  border-bottom: 1px solid var(--clr-black);
  color: var(--clr-black);
  font-weight: 400;
  font-size: 0.78rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.1em;
  transition: gap 0.2s, opacity 0.2s;
}

.a-slide-link svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.a-slide-link:hover {
  gap: 1.25rem;
  opacity: 0.6;
}

.a-slide-link:hover svg {
  transform: translateX(3px);
}

.a-view-btn {
  padding: 0.45rem 1.1rem;
  border-right: var(--line);
  color: var(--clr-gray-3);
  font-weight: 400;
  font-size: 0.72rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.a-view-btn:last-child {
  border-right: none;
}

.a-view-btn.is-active, .a-view-btn:hover {
  background: var(--clr-black);
  color: var(--clr-white);
}

.a-footer-link {
  padding: 0.4rem 1.1rem;
  border-right: var(--line);
  color: var(--clr-gray-3);
  font-weight: 400;
  font-size: 0.75rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.a-footer-link:first-child {
  padding-left: 0;
}

.a-footer-link:last-child {
  padding-right: 0;
  border-right: none;
}

.a-footer-link:hover {
  color: var(--clr-black);
}

.a-slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.a-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide:not(.swiper-slide-active) .a-slide-bg {
  transform: scale(1.03);
}

.a-slide-bg--1 {
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 18px), linear-gradient(160deg, var(--slide-1-from) 0%, var(--slide-1-to) 100%);
}

.a-slide-bg--2 {
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 18px), linear-gradient(160deg, var(--slide-2-from) 0%, var(--slide-2-to) 100%);
}

.a-slide-bg--3 {
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 18px), linear-gradient(160deg, var(--slide-3-from) 0%, var(--slide-3-to) 100%);
}

.a-slide-caption {
  z-index: 5;
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
}

.a-strip-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  overflow: hidden;
}

.a-strip-thumb--1 {
  background: linear-gradient(135deg, var(--slide-1-from), var(--slide-1-to));
}

.a-strip-thumb--2 {
  background: linear-gradient(135deg, var(--slide-2-from), var(--slide-2-to));
}

.a-strip-thumb--3 {
  background: linear-gradient(135deg, var(--slide-3-from), var(--slide-3-to));
}

.a-strip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-slide-rule {
  margin-bottom: 1.5rem;
  border: none;
  border-top: var(--line-dark);
}

.a-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--clr-black);
  transition: none;
}

.m-logo {
  display: flex;
  flex-direction: column;
  width: 190px;
  height: auto;
  gap: 1px;
  transition: opacity 0.2s;
}

.m-logo:hover {
  opacity: 0.6;
}

.m-header-nav__list {
  display: flex;
  height: var(--header-h);
}

.m-header-nav__list li {
  display: flex;
}

.m-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 28px;
  height: 28px;
  gap: 6px;
}

.m-hamburger__line {
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: center;
  background: var(--clr-black);
  transition: transform 0.3s, opacity 0.3s;
}

.m-hamburger.is-open .m-hamburger__line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.m-hamburger.is-open .m-hamburger__line:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.m-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: 0;
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--clr-white);
  transition: max-height 0.35s ease;
}

.m-mobile-nav.is-open {
  max-height: 280px;
}

.m-mobile-nav a {
  display: block;
  padding: 0.9rem var(--gutter);
  border-top: var(--line);
  color: var(--clr-gray-4);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.m-mobile-nav a:hover {
  color: var(--clr-black);
}

.m-slide-content {
  width: 100%;
  max-width: 420px;
}

.m-slide-meta {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
  gap: 0.6rem;
}

.m-slide-meta__row {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.m-slide-counter {
  display: flex;
  z-index: 20;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  align-items: baseline;
}

.m-strip-item {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  padding: 1.1rem 1.5rem;
  gap: 1rem;
  border-right: var(--line);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.m-strip-item:last-child {
  border-right: none;
}

.m-strip-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--clr-black);
  content: '';
  transition: transform 0.3s ease;
}

.m-strip-item.is-active::before, .m-strip-item:hover::before {
  transform: scaleX(1);
}

.m-strip-item:hover {
  background: var(--clr-bg);
}

.m-strip-item__info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 2px;
}

.m-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  gap: 2rem;
  border-bottom: var(--line-dark);
}

.m-section-heading {
  display: flex;
  flex: 1;
  align-items: flex-end;
  gap: 1.25rem;
}

.m-view-toggle {
  display: flex;
  flex-shrink: 0;
  border: var(--line-dark);
}

.m-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.m-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

/* ============================================================
   Cookie Notice Banner — Editorial Design
   ============================================================ */
.cookie-notice {
  z-index: 9999;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  transform: translateY(0);
  border-top: 1px solid var(--clr-border, #ddd);
  background: var(--clr-white, #fff);
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.04);
  color: var(--clr-black, #111);
  transition: transform 0.3s ease;
}

.cookie-notice.is-hidden {
  transform: translateY(100%);
}

.cookie-notice__container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0.875rem;
}

.cookie-notice__content {
  flex: 1;
}

.cookie-notice__text {
  margin: 0;
  color: var(--clr-text-light, #666);
  font-size: 0.8125rem;
  line-height: 1.65;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

.cookie-notice__link {
  color: var(--clr-black, #111);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.cookie-notice__link:hover {
  opacity: 0.7;
}

.cookie-notice__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.625rem;
}

.cookie-notice__btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--clr-black, #111);
  background: var(--clr-black, #111);
  color: var(--clr-white, #fff);
  font-weight: 500;
  font-size: 0.8125rem;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-notice__btn:hover {
  border-color: var(--clr-text-light, #666);
  background: var(--clr-text-light, #666);
}

.cookie-notice__btn:focus {
  outline: 1px solid var(--clr-black, #111);
  outline-offset: 2px;
}

.cookie-notice__btn--close {
  border-color: var(--clr-border-light, #ddd);
  background: transparent;
  color: var(--clr-text-light, #666);
}

.cookie-notice__btn--close:hover {
  border-color: var(--clr-black, #111);
  background: var(--clr-bg-light, #f5f5f5);
  color: var(--clr-black, #111);
}

.o-header {
  z-index: 900;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  border-bottom: var(--line);
  background: var(--clr-white);
  transition: border-color 0.3s;
}

.o-header.is-scrolled {
  border-bottom-color: var(--clr-gray-2);
}

.o-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.o-hero {
  margin-top: var(--header-h);
  border-bottom: var(--line);
  background: var(--clr-white);
}

.o-hero .main-swiper {
  position: relative;
  overflow: hidden;
}

.o-hero .swiper-button-prev,
.o-hero .swiper-button-next {
  display: flex;
  z-index: 20;
  top: 50%;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: var(--line-dark);
  background: var(--clr-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  color: var(--clr-black);
  transition: background 0.2s, border-color 0.2s;
}

.o-hero .swiper-button-prev::after,
.o-hero .swiper-button-next::after {
  display: none;
}

.o-hero .swiper-button-prev:hover,
.o-hero .swiper-button-next:hover {
  border-color: var(--clr-black);
  background: var(--clr-black);
  color: var(--clr-white);
}

.o-hero .swiper-button-prev {
  left: 1.5rem;
}

.o-hero .swiper-button-next {
  right: 1.5rem;
}

.o-hero__progress {
  height: 1px;
  background: var(--clr-gray-1);
}

.o-hero__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--line);
  background: var(--clr-white);
}

.o-schedule {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.o-footer {
  border-top: var(--line-dark);
  background: var(--clr-white);
}

.o-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.o-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
  gap: 2rem;
  border-bottom: var(--line);
}

.o-footer__bottom {
  padding: 1.25rem 0;
}

.l-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.l-slide-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: clamp(440px, 62vw, 680px);
}

.l-slide-split__img {
  position: relative;
  overflow: hidden;
}

.l-slide-split__txt {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 5vw, 4rem);
  border-left: var(--line);
  background: var(--clr-white);
}

.swiper-slide {
  height: auto;
}

.p-company {
  min-height: 100vh;
  padding: var(--header-h, 80px) 0 0;
}

.p-company__hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: calc(100vh - var(--header-h, 80px));
  gap: 0;
}

.p-company__image {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-light, #f8f8f8);
}

.p-company__image::after {
  display: inline-block;
  position: absolute;
  right: 40px;
  bottom: 40px;
  content: '(c) Sotaro Goto';
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}

.p-company__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-company__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
}

.p-company__title-area {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--clr-border, #ddd);
}

.p-company__title {
  margin: 0 0 0.5rem;
  color: var(--clr-black, #111);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2;
  font-family: var(--ff-serif, "Cormorant Garamond", serif);
}

.p-company__title-sub {
  margin: 0;
  color: var(--clr-text-light, #666);
  font-weight: 300;
  font-size: 0.9375rem;
  font-family: var(--ff-ja, "Noto Serif JP", serif);
  letter-spacing: 0.1em;
}

.p-company__tabs {
  display: flex;
  margin-bottom: 2.5rem;
  gap: 0;
  border-bottom: 1px solid var(--clr-border, #ddd);
}

.p-company__tab {
  position: relative;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--clr-text-light, #666);
  font-weight: 400;
  font-size: 0.875rem;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.p-company__tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--clr-black, #111);
  content: '';
  transition: transform 0.2s ease;
}

.p-company__tab:hover {
  color: var(--clr-black, #111);
}

.p-company__tab:focus {
  outline-offset: -2px;
}

.p-company__tab.is-active {
  color: var(--clr-black, #111);
  font-weight: 500;
}

.p-company__tab.is-active::after {
  transform: scaleX(1);
}

.p-company__panel {
  display: none;
}

.p-company__panel.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.p-company__table {
  margin: 0;
  padding: 0;
}

.p-company__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 1.25rem 0;
  gap: 2rem;
  border-bottom: 1px solid var(--clr-border-light, #eee);
}

.p-company__row:first-child {
  border-top: 1px solid var(--clr-border-light, #eee);
}

.p-company__table dt {
  margin: 0;
  color: var(--clr-text-light, #666);
  font-weight: 500;
  font-size: 0.875rem;
  font-family: var(--ff-body, "DM Sans", sans-serif);
  letter-spacing: 0.02em;
}

.p-company__table dd {
  margin: 0;
  color: var(--clr-black, #111);
  font-size: 0.9375rem;
  line-height: 1.7;
  font-family: var(--ff-body, "DM Sans", sans-serif);
}

.p-company__table dd a {
  border-bottom: 1px solid transparent;
  color: var(--clr-black, #111);
  text-decoration: none;
  transition: border-color 0.2s;
}

.p-company__table dd a:hover {
  border-bottom-color: var(--clr-black, #111);
}

.o-schedule .fc {
  color: var(--clr-ink);
  font-size: 0.8125rem;
  font-family: var(--ff-sans);
}

.o-schedule .fc-toolbar {
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  gap: 0.75rem;
}

.o-schedule .fc-toolbar-title {
  color: var(--clr-black);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-family: var(--ff-serif);
  letter-spacing: 0.02em;
}

.o-schedule .fc-button,
.o-schedule .fc-button-primary {
  padding: 0.35rem 0.75rem;
  border: var(--line-dark);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--clr-black);
  font-size: 0.75rem;
  font-family: var(--ff-sans);
  letter-spacing: 0.06em;
  transition: background 0.15s, color 0.15s;
}

.o-schedule .fc-button:hover, .o-schedule .fc-button:focus,
.o-schedule .fc-button-primary:hover,
.o-schedule .fc-button-primary:focus {
  border-color: var(--clr-black);
  background: var(--clr-black);
  box-shadow: none;
  color: var(--clr-white);
}

.o-schedule .fc-button:not(:disabled):active, .o-schedule .fc-button:not(:disabled).fc-button-active,
.o-schedule .fc-button-primary:not(:disabled):active,
.o-schedule .fc-button-primary:not(:disabled).fc-button-active {
  border-color: var(--clr-black);
  background: var(--clr-black);
  box-shadow: none;
  color: var(--clr-white);
}

.o-schedule .fc-button:disabled,
.o-schedule .fc-button-primary:disabled {
  opacity: 0.35;
}

.o-schedule .fc-button-group {
  gap: 1px;
}

.o-schedule .fc-button-group .fc-button {
  border-radius: 0;
}

.o-schedule .fc-scrollgrid {
  border-color: var(--clr-gray-1);
}

.o-schedule .fc-scrollgrid-sync-table {
  border-color: var(--clr-gray-1);
}

.o-schedule .fc th,
.o-schedule .fc td {
  border-color: var(--clr-gray-1);
}

.o-schedule .fc-col-header-cell {
  padding: 0.5rem 0;
  background: var(--clr-white);
  color: var(--clr-gray-3);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.o-schedule .fc-daygrid-day {
  min-height: 80px;
  background: var(--clr-white);
  transition: background 0.1s;
}

.o-schedule .fc-daygrid-day:hover {
  background: var(--clr-bg);
}

.o-schedule .fc-daygrid-day-number {
  padding: 0.4rem 0.5rem;
  color: var(--clr-gray-3);
  font-size: 0.75rem;
  text-decoration: none;
}

.o-schedule .fc-daygrid-day-number:hover {
  color: var(--clr-black);
}

.o-schedule .fc-day-today {
  background: var(--clr-today) !important;
}

.o-schedule .fc-day-today .fc-daygrid-day-number {
  color: var(--clr-black);
  font-weight: 600;
}

.o-schedule .fc-event {
  padding: 0.1rem 0.4rem;
  border: none;
  border-radius: 0;
  font-size: 0.7rem;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity 0.15s;
}

.o-schedule .fc-event:hover {
  opacity: 0.75;
}

.o-schedule .fc-event-title {
  font-weight: 500;
}

.o-schedule .fc-daygrid-more-link {
  color: var(--clr-gray-3);
  font-size: 0.68rem;
  text-decoration: underline;
}

.o-schedule .fc-daygrid-more-link:hover {
  color: var(--clr-black);
}

.o-schedule .fc-list {
  border-color: var(--clr-gray-1);
}

.o-schedule .fc-list-day-cushion {
  padding: 0.5rem var(--gutter);
  background: var(--clr-bg);
  font-size: 0.85rem;
  font-family: var(--ff-serif);
  letter-spacing: 0.04em;
}

.o-schedule .fc-list-event:hover td {
  background: var(--clr-bg);
}

.o-schedule .fc-list-event-title a {
  color: var(--clr-ink);
  text-decoration: none;
}

.o-schedule .fc-list-event-title a:hover {
  text-decoration: underline;
}

.o-schedule .fc-popover {
  border: var(--line-dark);
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.o-schedule .fc-popover-header {
  padding: 0.5rem 0.75rem;
  background: var(--clr-bg);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

@keyframes fadeSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.swiper-slide-active .m-slide-content {
  animation: fadeSlideUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.swiper-slide-active .a-slide-index {
  animation: fadeIn 0.5s ease both 0.2s;
}

.m-strip-item {
  animation: fadeSlideUp 0.5s ease both;
}

.m-strip-item:nth-child(1) {
  animation-delay: 0.08s;
}

.m-strip-item:nth-child(2) {
  animation-delay: 0.16s;
}

.m-strip-item:nth-child(3) {
  animation-delay: 0.24s;
}

@media (min-width: 768px) {
  .cookie-notice {
    padding: 1.25rem 2rem;
  }
  .cookie-notice__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .cookie-notice__text {
    font-size: 0.875rem;
  }
}

@media (max-width: 1024px) {
  .p-company__hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .p-company__image {
    min-height: 400px;
  }
  .p-company__content {
    padding: 3rem 2rem;
  }
  .p-company__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .p-company__image {
    min-height: 300px;
  }
  .p-company__content {
    padding: 2rem 1.5rem;
  }
  .p-company__title-area {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
  .p-company__title {
    font-size: 2rem;
  }
  .p-company__title-sub {
    font-size: 0.875rem;
  }
  .p-company__tabs {
    margin-bottom: 2rem;
  }
  .p-company__tab {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
  .p-company__row {
    grid-template-columns: 1fr;
    padding: 1rem 0;
    gap: 0.5rem;
  }
  .p-company__table dt {
    font-size: 0.8125rem;
  }
  .p-company__table dd {
    font-size: 0.875rem;
  }
}

@media (max-width: 767px) {
  .m-header-nav {
    display: none;
  }
  .m-hamburger {
    display: flex;
  }
  .l-slide-split {
    grid-template-rows: 48vw auto;
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .l-slide-split__txt {
    padding: 1.75rem 1.25rem;
    border-top: var(--line);
    border-left: none;
  }
  .a-slide-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .o-hero__strip {
    grid-template-columns: 1fr;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .o-hero__strip .m-strip-item {
    min-width: 80vw;
    scroll-snap-align: start;
  }
  .m-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .o-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .m-hamburger {
    display: none;
  }
  .m-header-nav {
    display: flex;
  }
  .l-slide-split {
    grid-template-columns: 50% 50%;
  }
  .a-strip-title {
    font-size: 0.75rem;
  }
  .m-section-head {
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}

@media (min-width: 1024px) {
  .m-hamburger {
    display: none;
  }
  .m-header-nav {
    display: flex;
  }
  .m-mobile-nav {
    display: none !important;
  }
}
