@charset "UTF-8";

/* =========================================================
   Andante Renewal Top Page
   ========================================================= */

:root {
    --ak-white: #ffffff;
    --ak-ivory: #f8f4ed;
    --ak-cream: #f1eadf;
    --ak-charcoal: #252733;
    --ak-navy: #263149;
    --ak-blue: #60748f;
    --ak-blue-light: #dfe8ef;
    --ak-gold: #b99a5f;
    --ak-gold-dark: #9d7d42;
    --ak-gray: #777982;
    --ak-border: #e6ded2;
    --ak-shadow: 0 24px 60px rgba(38, 49, 73, 0.14);
    --ak-radius-large: 34px;
    --ak-radius-medium: 22px;
    --ak-radius-small: 12px;
    --ak-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
    --ak-sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* =========================================================
   Base
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body.ak-renewal {
    margin: 0;
    color: var(--ak-charcoal);
    background: var(--ak-white);
    font-family: var(--ak-sans);
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: 0.04em;
    -webkit-text-size-adjust: 100%;
}

body.ak-renewal * {
    box-sizing: border-box;
}

body.ak-renewal a {
    color: inherit;
}

.ak-site {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(185, 154, 95, 0.08), transparent 34%),
        radial-gradient(circle at 92% 20%, rgba(96, 116, 143, 0.12), transparent 30%),
        var(--ak-white);
}

.ak-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.ak-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    transform: translateY(-160%);
    padding: 8px 14px;
    color: var(--ak-white);
    background: var(--ak-navy);
    text-decoration: none;
    border-radius: 999px;
}

.ak-skip-link:focus {
    transform: translateY(0);
}

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

.ak-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(230, 222, 210, 0.8);
}

body.admin-bar .ak-header {
    top: 32px;
}

.ak-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.ak-brand {
    flex: 0 0 auto;
}

.ak-brand__text,
.ak-footer__brand a {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: var(--ak-charcoal);
    text-decoration: none;
}

.ak-brand__main,
.ak-footer__brand-main {
    font-family: var(--ak-serif);
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.ak-brand__sub,
.ak-footer__brand-sub {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.18em;
}

.ak-brand__logo img,
.ak-brand__logo .custom-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 56px;
}

.ak-menu-check {
    display: none;
}

.ak-menu-button {
    display: none;
}

.ak-nav {
    flex: 1 1 auto;
}

.ak-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ak-nav__list .sub-menu {
    display: none;
}

.ak-nav__list > li {
    margin: 0;
    padding: 0;
}

.ak-nav__list > li > a {
    position: relative;
    display: block;
    padding: 12px 15px;
    color: var(--ak-charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.ak-nav__list > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 5px;
    height: 1px;
    background: var(--ak-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.ak-nav__list > li > a:hover,
.ak-nav__list > li.current-menu-item > a,
.ak-nav__list > li > a[aria-current="page"] {
    color: var(--ak-gold-dark);
}

.ak-nav__list > li > a:hover::after,
.ak-nav__list > li.current-menu-item > a::after,
.ak-nav__list > li > a[aria-current="page"]::after {
    transform: scaleX(1);
}

/* =========================================================
   Buttons
   ========================================================= */

.ak-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.ak-button::after {
    content: "→";
    font-size: 13px;
    transition: transform 0.2s ease;
}

.ak-button:hover {
    transform: translateY(-2px);
}

.ak-button:hover::after {
    transform: translateX(3px);
}

.ak-button--dark {
    color: var(--ak-white);
    background: var(--ak-navy);
    box-shadow: 0 16px 36px rgba(38, 49, 73, 0.22);
}

.ak-button--dark:hover {
    background: var(--ak-charcoal);
}

.ak-button--light {
    color: var(--ak-navy);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(38, 49, 73, 0.16);
}

.ak-button--gold {
    color: var(--ak-white);
    background: var(--ak-gold);
    box-shadow: 0 16px 34px rgba(185, 154, 95, 0.26);
}

.ak-button--gold:hover {
    background: var(--ak-gold-dark);
}

.ak-button--outline {
    color: var(--ak-navy);
    background: transparent;
    border-color: var(--ak-gold);
}

.ak-button--outline:hover {
    color: var(--ak-white);
    background: var(--ak-gold);
}

.ak-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ak-navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.ak-text-link::after {
    content: "→";
    color: var(--ak-gold);
    transition: transform 0.2s ease;
}

.ak-text-link:hover::after {
    transform: translateX(4px);
}

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

.ak-main {
    display: block;
}

.ak-hero {
    position: relative;
    padding: 62px 0 86px;
    background:
        linear-gradient(115deg, rgba(248, 244, 237, 0.96) 0%, rgba(255, 255, 255, 0.86) 58%, rgba(223, 232, 239, 0.65) 100%);
}

.ak-hero::before {
    content: "";
    position: absolute;
    left: -100px;
    top: 90px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(185, 154, 95, 0.12);
    filter: blur(8px);
}

.ak-hero::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -160px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(96, 116, 143, 0.14);
    filter: blur(10px);
}

.ak-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: 48px;
}

.ak-eyebrow,
.ak-section__label {
    margin: 0 0 14px;
    color: var(--ak-gold-dark);
    font-family: var(--ak-serif);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ak-hero__title {
    margin: 0;
    color: var(--ak-navy);
    font-family: var(--ak-serif);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.ak-hero__lead {
    max-width: 560px;
    margin: 24px 0 0;
    color: #4d5160;
    font-size: 16px;
    line-height: 2.05;
}

.ak-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ak-hero__visual {
    position: relative;
    min-height: 520px;
    border-radius: var(--ak-radius-large);
    overflow: hidden;
    box-shadow: var(--ak-shadow);
    clip-path: polygon(8% 0, 100% 0, 93% 88%, 15% 100%, 0 22%);
    isolation: isolate;
}

.ak-hero__visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.52);
    clip-path: polygon(8% 0, 100% 0, 93% 88%, 15% 100%, 0 22%);
    pointer-events: none;
}

.ak-hero__visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0 auto;
    width: 66%;
    height: 42%;
    z-index: 3;
    background: linear-gradient(135deg, transparent 0%, rgba(185, 154, 95, 0.86) 100%);
    clip-path: polygon(24% 100%, 100% 35%, 100% 100%);
    opacity: 0.82;
    pointer-events: none;
}

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

.ak-hero-slider {
    position: relative;
}

.ak-hero-slider__track {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ak-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background-image: var(--ak-slide-image);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition:
        opacity 1.1s ease,
        visibility 1.1s ease,
        transform 7s ease;
}

.ak-hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ak-hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(38, 49, 73, 0.90) 0%,
            rgba(38, 49, 73, 0.58) 38%,
            rgba(38, 49, 73, 0.14) 74%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.18) 100%
        );
}

.ak-hero-slide__caption {
    position: absolute;
    left: 38px;
    bottom: 46px;
    z-index: 4;
    width: min(290px, calc(100% - 76px));
    padding: 22px 24px;
    color: var(--ak-white);
    background: rgba(25, 30, 44, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.ak-hero-slide__label {
    display: block;
    margin-bottom: 8px;
    color: #e6d3a6;
    font-family: var(--ak-serif);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ak-hero-slide__caption strong {
    display: block;
    font-family: var(--ak-serif);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.ak-hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--ak-white);
    background: rgba(25, 30, 44, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.ak-hero-slider__arrow:hover {
    background: rgba(25, 30, 44, 0.72);
}

.ak-hero-slider__arrow--prev {
    left: 24px;
}

.ak-hero-slider__arrow--next {
    right: 24px;
}

.ak-slider-dots {
    position: absolute;
    right: 44px;
    bottom: 34px;
    z-index: 7;
    display: flex;
    gap: 8px;
}

.ak-slider-dots button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    transition:
        width 0.2s ease,
        background 0.2s ease;
}

.ak-slider-dots button.is-active {
    width: 28px;
    background: var(--ak-white);
}

@media screen and (max-width: 820px) {
    .ak-hero-slide__caption {
        left: 24px;
        bottom: 34px;
        padding: 18px 20px;
    }

    .ak-hero-slide__caption strong {
        font-size: 18px;
    }

    .ak-hero-slider__arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .ak-hero-slider__arrow--prev {
        left: 16px;
    }

    .ak-hero-slider__arrow--next {
        right: 16px;
    }
}

@media screen and (max-width: 560px) {
    .ak-hero-slide__caption {
        width: calc(100% - 48px);
    }

    .ak-slider-dots {
        right: 28px;
        bottom: 22px;
    }

    .ak-hero-slider__arrow {
        display: none;
    }
}

.ak-slider-dots {
    position: absolute;
    right: 44px;
    bottom: 34px;
    z-index: 5;
    display: flex;
    gap: 8px;
}

.ak-slider-dots span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
}

.ak-slider-dots span.is-active {
    width: 28px;
    background: var(--ak-white);
}

/* =========================================================
   Common Sections
   ========================================================= */

.ak-section {
    padding: 88px 0;
}

.ak-section--next {
    background: var(--ak-white);
}

.ak-section--about {
    background:
        linear-gradient(135deg, rgba(248, 244, 237, 0.95), rgba(255, 255, 255, 0.95)),
        repeating-linear-gradient(135deg, rgba(185, 154, 95, 0.06) 0 1px, transparent 1px 14px);
}

.ak-section--news {
    background: var(--ak-white);
}

.ak-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.ak-section__title {
    position: relative;
    margin: 0;
    color: var(--ak-navy);
    font-family: var(--ak-serif);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: 0.09em;
}

.ak-section__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 1px;
    margin-top: 14px;
    background: var(--ak-gold);
}

/* =========================================================
   Next Performance
   ========================================================= */

.ak-next-performance {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 430px;
    overflow: hidden;
    background: var(--ak-ivory);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius-large);
    box-shadow: var(--ak-shadow);
}

.ak-next-performance__visual {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(38, 49, 73, 0.92) 0%, rgba(38, 49, 73, 0.58) 45%, rgba(185, 154, 95, 0.28) 100%),
        radial-gradient(circle at 28% 40%, rgba(255, 255, 255, 0.82) 0 4%, transparent 5%),
        radial-gradient(circle at 44% 30%, rgba(255, 255, 255, 0.72) 0 3%, transparent 4%),
        radial-gradient(circle at 58% 56%, rgba(255, 255, 255, 0.64) 0 5%, transparent 6%),
        linear-gradient(135deg, #273044, #7e8da1 54%, #cfb981);
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.ak-next-performance__visual::before {
    content: "";
    position: absolute;
    inset: 38px 42px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.ak-next-performance__visual::after {
    content: "";
    position: absolute;
    left: 18%;
    bottom: 12%;
    width: 52%;
    height: 44%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(185, 154, 95, 0.36)),
        linear-gradient(#fff, #fff);
    clip-path: polygon(10% 100%, 34% 10%, 74% 0, 100% 100%);
    opacity: 0.68;
}

.ak-next-performance__date {
    position: absolute;
    left: 34px;
    top: 34px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 104px;
    height: 104px;
    color: var(--ak-white);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(25, 30, 44, 0.48);
    backdrop-filter: blur(6px);
}

.ak-next-performance__date span {
    display: block;
    font-family: var(--ak-serif);
    font-size: 28px;
    line-height: 1;
}

.ak-next-performance__date strong {
    display: block;
    margin-top: -18px;
    font-size: 13px;
    letter-spacing: 0.14em;
}

.ak-next-performance__body {
    padding: clamp(34px, 5vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ak-performance-kicker {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 0 18px;
    padding: 5px 12px;
    color: var(--ak-gold-dark);
    background: rgba(185, 154, 95, 0.13);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.ak-next-performance__title {
    margin: 0;
    color: var(--ak-navy);
    font-family: var(--ak-serif);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.45;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.ak-next-performance__text {
    margin: 22px 0 28px;
    color: #555b6a;
}

/* =========================================================
   Performance Cards
   ========================================================= */

.ak-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ak-performance-card {
    min-width: 0;
}

.ak-performance-card a {
    display: block;
    height: 100%;
    overflow: hidden;
    color: inherit;
    background: var(--ak-white);
    border: 1px solid rgba(230, 222, 210, 0.95);
    border-radius: var(--ak-radius-medium);
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(38, 49, 73, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.ak-performance-card a:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 154, 95, 0.6);
    box-shadow: 0 26px 54px rgba(38, 49, 73, 0.14);
}

.ak-performance-card__thumb {
    position: relative;
    min-height: 210px;
    overflow: hidden;
}

.ak-performance-card__thumb::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 18px;
}

.ak-performance-card__thumb--massenet {
    background:
        linear-gradient(135deg, rgba(38, 49, 73, 0.88), rgba(185, 154, 95, 0.36)),
        radial-gradient(circle at 68% 38%, rgba(255, 255, 255, 0.7) 0 7%, transparent 8%),
        linear-gradient(135deg, #243047, #8290a4 52%, #c3aa76);
}

.ak-performance-card__thumb--sketch {
    background:
        linear-gradient(135deg, rgba(38, 49, 73, 0.82), rgba(96, 116, 143, 0.44)),
        radial-gradient(circle at 36% 42%, rgba(255, 255, 255, 0.68) 0 8%, transparent 9%),
        linear-gradient(135deg, #2d3446, #778aa1 56%, #d8d1c3);
}

.ak-performance-card__thumb--hamlet {
    background:
        linear-gradient(135deg, rgba(38, 49, 73, 0.9), rgba(130, 91, 91, 0.36)),
        radial-gradient(circle at 62% 34%, rgba(255, 255, 255, 0.68) 0 6%, transparent 7%),
        linear-gradient(135deg, #1e2535, #6a5361 54%, #c6a66f);
}

.ak-performance-card__year {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    height: 34px;
    padding: 0 12px;
    color: var(--ak-white);
    background: rgba(25, 30, 44, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    font-family: var(--ak-serif);
    font-size: 15px;
    letter-spacing: 0.08em;
}

.ak-performance-card__body {
    padding: 24px 24px 26px;
}

.ak-performance-card__type {
    margin: 0 0 10px;
    color: var(--ak-gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.ak-performance-card h3 {
    margin: 0;
    color: var(--ak-navy);
    font-family: var(--ak-serif);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.ak-performance-card p {
    margin: 14px 0 0;
    color: #606572;
    font-size: 14px;
    line-height: 1.8;
}

.ak-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--ak-gold-dark);
    font-size: 13px;
    font-weight: 700;
}

.ak-card-arrow::after {
    content: "→";
    transition: transform 0.2s ease;
}

.ak-performance-card a:hover .ak-card-arrow::after {
    transform: translateX(4px);
}

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

.ak-about {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: center;
    gap: 56px;
}

.ak-about__body p:not(.ak-section__label) {
    margin: 24px 0 0;
    color: #555b6a;
}

.ak-about__body .ak-button {
    margin-top: 32px;
}

.ak-about__visual {
    position: relative;
    min-height: 430px;
    border-radius: var(--ak-radius-large);
    overflow: hidden;
    box-shadow: var(--ak-shadow);
    clip-path: polygon(0 8%, 88% 0, 100% 88%, 13% 100%);
}

.ak-about__visual::before {
    content: "";
    position: absolute;
    inset: 20px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.44);
    clip-path: polygon(0 8%, 88% 0, 100% 88%, 13% 100%);
    pointer-events: none;
}

.ak-about__photo {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(38, 49, 73, 0.78), rgba(185, 154, 95, 0.22)),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.76) 0 4%, transparent 5%),
        radial-gradient(circle at 58% 28%, rgba(255, 255, 255, 0.62) 0 3%, transparent 4%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 28px),
        linear-gradient(135deg, #20283a, #586a82 50%, #d3bb8c);
}

/* =========================================================
   News
   ========================================================= */

.ak-news-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--ak-border);
}

.ak-news-item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--ak-border);
}

.ak-news-item a {
    display: grid;
    grid-template-columns: 120px 110px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ak-news-item a:hover {
    color: var(--ak-gold-dark);
}

.ak-news-item time {
    color: var(--ak-gray);
    font-family: var(--ak-serif);
    font-size: 14px;
    letter-spacing: 0.08em;
}

.ak-news-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    color: var(--ak-white);
    background: var(--ak-blue);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.ak-news-title {
    overflow: hidden;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ak-news-arrow {
    color: var(--ak-gold);
    text-align: right;
    transition: transform 0.2s ease;
}

.ak-news-item a:hover .ak-news-arrow {
    transform: translateX(4px);
}

/* =========================================================
   Contact Strip
   ========================================================= */

.ak-contact-strip {
    padding: 72px 0;
    background:
        linear-gradient(135deg, rgba(38, 49, 73, 0.95), rgba(38, 49, 73, 0.88)),
        linear-gradient(135deg, #263149, #60748f);
    color: var(--ak-white);
}

.ak-contact-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.ak-contact-strip .ak-section__label {
    color: #e6d3a6;
}

.ak-contact-strip h2 {
    margin: 0;
    font-family: var(--ak-serif);
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.ak-contact-strip p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.ak-contact-strip .ak-button--dark {
    flex: 0 0 auto;
    color: var(--ak-navy);
    background: var(--ak-white);
}

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

.ak-footer {
    color: rgba(255, 255, 255, 0.82);
    background: #1e2432;
}

.ak-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: start;
    padding: 54px 0 44px;
}

.ak-footer__brand a {
    color: var(--ak-white);
}

.ak-footer__brand p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.9;
}

.ak-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ak-footer__nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 14px;
}

.ak-footer__nav a:hover {
    color: var(--ak-white);
}

.ak-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ak-footer__bottom .ak-container {
    padding: 18px 0;
}

.ak-footer__bottom small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.06em;
}

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

@media screen and (max-width: 1024px) {
    .ak-hero__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .ak-hero__copy {
        max-width: 720px;
    }

    .ak-hero__visual {
        min-height: 470px;
    }

    .ak-next-performance {
        grid-template-columns: 1fr;
    }

    .ak-next-performance__visual {
        min-height: 320px;
        clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
    }

    .ak-next-performance__visual::before {
        clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
    }

    .ak-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ak-about {
        grid-template-columns: 1fr;
    }

    .ak-about__visual {
        min-height: 360px;
    }
}

@media screen and (max-width: 820px) {
    body.admin-bar .ak-header {
        top: 46px;
    }

    .ak-container {
        width: min(100% - 32px, 1120px);
    }

    .ak-header__inner {
        min-height: 70px;
    }

    .ak-brand__main,
    .ak-footer__brand-main {
        font-size: 26px;
    }

    .ak-menu-button {
        position: relative;
        z-index: 1002;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 46px;
        height: 46px;
        padding: 0;
        cursor: pointer;
    }

    .ak-menu-button span {
        display: block;
        width: 28px;
        height: 2px;
        margin-left: auto;
        background: var(--ak-navy);
        border-radius: 999px;
        transition:
            transform 0.2s ease,
            opacity 0.2s ease;
    }

    .ak-menu-check:checked + .ak-menu-button span:nth-child(1) {
        transform: translateY(8px) rotate(38deg);
    }

    .ak-menu-check:checked + .ak-menu-button span:nth-child(2) {
        opacity: 0;
    }

    .ak-menu-check:checked + .ak-menu-button span:nth-child(3) {
        transform: translateY(-8px) rotate(-38deg);
    }

    .ak-nav {
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 1001;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--ak-border);
        box-shadow: 0 22px 40px rgba(38, 49, 73, 0.12);
        transition: max-height 0.25s ease;
    }

    .ak-menu-check:checked ~ .ak-nav {
        max-height: 420px;
    }

    .ak-nav__list {
        display: block;
        width: min(100% - 32px, 1120px);
        margin: 0 auto;
        padding: 14px 0;
    }

    .ak-nav__list > li > a {
        padding: 16px 4px;
        border-bottom: 1px solid rgba(230, 222, 210, 0.7);
    }

    .ak-nav__list > li > a::after {
        display: none;
    }

    .ak-hero {
        padding: 44px 0 64px;
    }

    .ak-hero__visual {
        min-height: 390px;
        border-radius: 26px;
        clip-path: polygon(6% 0, 100% 0, 94% 90%, 14% 100%, 0 20%);
    }

    .ak-hero__floating {
        left: 24px;
        bottom: 34px;
        padding: 18px 20px;
    }

    .ak-hero__floating strong {
        font-size: 18px;
    }

    .ak-section {
        padding: 68px 0;
    }

    .ak-section__head {
        display: block;
    }

    .ak-section__head .ak-text-link {
        margin-top: 18px;
    }

    .ak-card-grid {
        grid-template-columns: 1fr;
    }

    .ak-news-item a {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
    }

    .ak-news-title {
        white-space: normal;
    }

    .ak-news-arrow {
        display: none;
    }

    .ak-contact-strip__inner {
        display: block;
    }

    .ak-contact-strip .ak-button {
        margin-top: 26px;
    }

    .ak-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ak-footer__nav ul {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 560px) {
    body.ak-renewal {
        font-size: 15px;
    }

    .ak-hero__title {
        font-size: 31px;
    }

    .ak-hero__lead {
        line-height: 1.95;
    }

    .ak-hero__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ak-button {
        width: 100%;
    }

    .ak-hero__visual {
        min-height: 330px;
    }

    .ak-hero__floating {
        width: calc(100% - 48px);
    }

    .ak-slider-dots {
        right: 28px;
        bottom: 22px;
    }

    .ak-next-performance__visual {
        min-height: 260px;
    }

    .ak-next-performance__date {
        left: 24px;
        top: 24px;
        width: 88px;
        height: 88px;
    }

    .ak-next-performance__date span {
        font-size: 24px;
    }

    .ak-next-performance__body {
        padding: 30px 24px 34px;
    }

    .ak-performance-card__thumb {
        min-height: 185px;
    }

    .ak-about__visual {
        min-height: 290px;
    }

    .ak-contact-strip {
        padding: 58px 0;
    }
}

/* =========================================================
   Scroll Fix
   既存テーマCSSとの衝突対策
   ========================================================= */

html {
    min-height: 100%;
    height: auto !important;
    overflow-y: auto !important;
}

body.ak-renewal {
    min-height: 100%;
    height: auto !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    position: static !important;
}

body.ak-renewal .ak-site {
    min-height: 100vh;
    height: auto !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

body.ak-renewal .ak-main {
    display: block;
    min-height: 100vh;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

body.ak-renewal .ak-hero,
body.ak-renewal .ak-section,
body.ak-renewal .ak-contact-strip,
body.ak-renewal .ak-footer {
    height: auto !important;
    max-height: none !important;
}

/* =========================================================
   Hero Slider 修正版
   左側の切れすぎ対策 + スライダー表示安定化
   ========================================================= */

.ak-hero__visual {
    position: relative;
    min-height: 520px;
    border-radius: var(--ak-radius-large);
    overflow: hidden;
    box-shadow: var(--ak-shadow);

    /*
      以前より左側のカットを浅くしています。
      元の polygon(8% 0, 100% 0, 93% 88%, 15% 100%, 0 22%) は
      左側を削りすぎるので、画像の人物が欠けやすくなります。
    */
    clip-path: polygon(3% 0, 100% 0, 96% 90%, 7% 100%, 0 18%);
    isolation: isolate;
}

.ak-hero__visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 8;
    border: 1px solid rgba(255, 255, 255, 0.52);
    clip-path: polygon(3% 0, 100% 0, 96% 90%, 7% 100%, 0 18%);
    pointer-events: none;
}

.ak-hero__visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0 auto;
    width: 58%;
    height: 36%;
    z-index: 7;
    background: linear-gradient(135deg, transparent 0%, rgba(185, 154, 95, 0.78) 100%);
    clip-path: polygon(30% 100%, 100% 42%, 100% 100%);
    opacity: 0.75;
    pointer-events: none;
}

.ak-hero-slider {
    position: relative;
}

.ak-hero-slider__track {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ak-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;

    background-image: var(--ak-slide-image);
    background-position: var(--ak-slide-position, center center);
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.04);
    transition:
        opacity 1.1s ease,
        visibility 1.1s ease,
        transform 7s ease;
}

.ak-hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ak-hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(38, 49, 73, 0.72) 0%,
            rgba(38, 49, 73, 0.36) 42%,
            rgba(38, 49, 73, 0.08) 76%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.18) 100%
        );
}

.ak-hero-slide__caption {
    position: absolute;
    left: 64px;
    bottom: 48px;
    z-index: 6;
    width: min(300px, calc(100% - 128px));
    padding: 22px 24px;
    color: var(--ak-white);
    background: rgba(25, 30, 44, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.ak-hero-slide__label {
    display: block;
    margin-bottom: 8px;
    color: #e6d3a6;
    font-family: var(--ak-serif);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ak-hero-slide__caption strong {
    display: block;
    font-family: var(--ak-serif);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.ak-hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 9;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--ak-white);
    background: rgba(25, 30, 44, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.ak-hero-slider__arrow:hover {
    background: rgba(25, 30, 44, 0.78);
}

.ak-hero-slider__arrow--prev {
    left: 28px;
}

.ak-hero-slider__arrow--next {
    right: 28px;
}

.ak-slider-dots {
    position: absolute;
    right: 48px;
    bottom: 34px;
    z-index: 9;
    display: flex;
    gap: 8px;
}

.ak-slider-dots button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    transition:
        width 0.2s ease,
        background 0.2s ease;
}

.ak-slider-dots button.is-active {
    width: 28px;
    background: var(--ak-white);
}

/* PCでヒーローの左右バランスを少し改善 */
@media screen and (min-width: 1025px) {
    .ak-hero__inner {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 56px;
    }

    .ak-hero__title {
        font-size: clamp(38px, 3.6vw, 52px);
        line-height: 1.45;
    }
}

@media screen and (max-width: 1024px) {
    .ak-hero__visual {
        min-height: 470px;
    }
}

@media screen and (max-width: 820px) {
    .ak-hero__visual {
        min-height: 390px;
        border-radius: 26px;
        clip-path: polygon(3% 0, 100% 0, 96% 90%, 7% 100%, 0 18%);
    }

    .ak-hero__visual::before {
        clip-path: polygon(3% 0, 100% 0, 96% 90%, 7% 100%, 0 18%);
    }

    .ak-hero-slide__caption {
        left: 32px;
        bottom: 34px;
        width: min(290px, calc(100% - 64px));
        padding: 18px 20px;
    }

    .ak-hero-slide__caption strong {
        font-size: 18px;
    }

    .ak-hero-slider__arrow {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .ak-hero-slider__arrow--prev {
        left: 18px;
    }

    .ak-hero-slider__arrow--next {
        right: 18px;
    }
}

@media screen and (max-width: 560px) {
    .ak-hero-slide__caption {
        width: calc(100% - 48px);
        left: 24px;
    }

    .ak-slider-dots {
        right: 28px;
        bottom: 22px;
    }

    .ak-hero-slider__arrow {
        display: none;
    }
}