@charset "utf-8";

/* ==========================================================================
    10th Anniversary LP Styles
========================================================================== */

/* Utility Classes */
@media screen and (min-width: 769px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .sp-hide {
        display: none !important;
    }
}

.p-aniv {
    color: #333;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.p-aniv img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

/* Common Section Title */
.p-aniv-sect-ttl {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
    .p-aniv-sect-ttl {
        margin-bottom: 30px;
        font-size: 36px;
    }
}

.p-aniv-sect-ttl .sub {
    display: block;
    margin-top: 11px;
    color: #1a1a1a;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
}

.p-aniv-sect-ttl--white {
    color: #fff;
}

.p-aniv-sect-ttl--white .sub {
    color: #fff;
}

/* KV */
.p-aniv-kv {
    display: grid;
    justify-items: center;
    align-items: center;
    height: calc(100svh - 184px);
    box-sizing: border-box;
}

.p-aniv-kv__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.p-aniv-kv .p-aniv-kv__img-logo {
    width: auto;
    min-height: 345px;
    height: calc(100vw * 252 / 1440);
    margin: 0 auto;
}

.p-aniv-kv .p-aniv-kv__img-en {
    width: auto;
    min-height: 85px;
    height: calc(100vw * 65 / 1440);
    margin: 0 auto;
}

.p-aniv-kv .p-aniv-kv__img-jp {
    width: auto;
    min-height: 72px;
    height: calc(100vw * 50 / 1440);
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .p-aniv-kv {
        height: calc(100svh - 64px);
        overflow: hidden;
    }

    .p-aniv-kv .p-aniv-kv__img-logo {
        width: 50vw;
        max-height: 172px;
        height: auto;
        object-fit: contain;
    }

    .p-aniv-kv .p-aniv-kv__img-en {
        width: 40vw;
        max-height: 54px;
        height: auto;
        object-fit: contain;
    }

    .p-aniv-kv .p-aniv-kv__img-jp {
        width: 80vw;
        max-height: 56px;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }
}

/* KV Animation (managed by GSAP) */
.p-aniv-kv__img-en_pre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: calc(100vw * 85 / 1440);
    opacity: 0;
    pointer-events: none;
}

.p-aniv-kv__img-jp_pre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: calc(100vw * 72 / 1440);
    opacity: 0;
    pointer-events: none;
}

.p-aniv-kv .p-aniv-kv__img-jp,
.p-aniv-kv .p-aniv-kv__img-logo,
.p-aniv-kv .p-aniv-kv__img-en {
    opacity: 0;
}

/* INTRO */
.p-aniv-intro {
    box-sizing: border-box;
    height: 600px;
    margin-top: 100px;
    padding: 120px 20px 80px;
    background-color: #fff;
    background-image: url("../img/common/intro_background_pc.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .p-aniv-intro {
        height: fit-content;
        margin-top: 20px;
        padding: 60px 30px;
        background-image: url("../img/common/intro_background_sp.svg");
    }
}

.p-aniv-intro .p-aniv-intro__inner {
    position: relative;
    z-index: 101;
    max-width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .p-aniv-intro .p-aniv-intro__inner {
        margin-top: -2px;
    }
}

.p-aniv-intro__txt {
    font-size: 18px;
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .p-aniv-intro__txt {
        font-size: 14px;
        text-align: left;
    }
}

.p-aniv-intro__txt p {
    margin-bottom: 1.3em;
}

@media screen and (max-width: 768px) {
    .p-aniv-intro__txt p {
        margin-bottom: 1.5em;
    }
}

.p-aniv-intro__txt p:last-child {
    margin-bottom: 0;
}

/* Animations */
.js-fadein-up {
    opacity: 0;
    transform: translateY(30px);
    /* transition: opacity 1s ease, transform 1s ease; */
    transition: opacity 2s ease, transform 2s ease;
}

.js-fadein-up.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* SYMBOL */
.p-aniv-symbol {
    margin-top: -52px;
    /* ロゴの高さ分上げる */
    padding: 220px 20px 110px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .p-aniv-symbol {
        padding: 86px 32px 61px;
    }
}

.p-aniv-symbol__logo {
    width: 20vw;
    margin: 0 auto 86px;
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .p-aniv-symbol__logo {
        width: 38vw;
        margin: 0 auto 60px;
    }
}

.p-aniv-symbol__ttl {
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 600;
}

.p-aniv-symbol__txt {
    font-size: 18px;
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .p-aniv-symbol__ttl {
        margin-bottom: 5px;
        font-size: 22px;
    }

    .p-aniv-symbol__txt {
        font-size: 14px;
        text-align: left;
        letter-spacing: 0.04em;
    }
}

@media screen and (max-width: 388px) {
    .p-aniv-symbol__ttl span {
        display: block;
        margin-bottom: 0.75em;
    }
}

/* interview */
.p-aniv-interview {
    padding: 65px 20px;
    overflow: hidden;
    /* コンテナの100vwはみ出し対策 */
    background-image: url("../img/pc/iv/iv_background.png");
    background-repeat: repeat-y;
    background-position: top right;
    background-size: 100% auto;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview {
        padding: 77px 20px 80px;
        background-image: url("../img/sp/iv/iv_background_sp.png");
    }
}

.p-aniv-interview .p-aniv-sect-ttl {
    margin-top: 8px;
    margin-bottom: 30px;
    color: #1A1A1A;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview .p-aniv-sect-ttl {
        margin-bottom: 36px;
    }

    .p-aniv-sect-ttl .sub {
        margin-top: 6px;
        font-size: 13px;
    }
}

.p-aniv-interview .p-aniv-interview__lead {
    margin-bottom: 14px;
    color: #1A1A1A;
    font-size: 16px;
    line-height: 2;
    text-align: center;
}
.p-aniv-interview .p-aniv-interview__lead:empty {
    display: none;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview .p-aniv-interview__lead {
        font-size: 14px;
    }
}

.p-aniv-interview__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.p-aniv-interview__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 20px;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__list {
        gap: 20px 20px;
    }
}

.p-aniv-interview__item {
    position: relative;
    width: calc(33.333% - 14px);
    background: #fff;
    cursor: pointer;
    /* クリックできることを明示 */
    /* infoを絶対配置にするため、高さをimgに依存させる必要はありますが、ここでは通常フローをimgに持たせます */
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__item {
        width: calc(50% - 10px);
    }
}

/* is-activeになった時の枠線（レイアウト崩れを防ぐため疑似要素で内側に重ねる） */
.p-aniv-interview__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    box-sizing: border-box;
    border: 0 solid transparent;
    transition: border-width 0.2s ease, border-color 0.2s ease;
    pointer-events: none;
}

.p-aniv-interview__item.is-active::before {
    border-color: #1BB8CE;
    border-width: 6px;
}
@media (hover: hover) {
    .p-aniv-interview__item:hover::before {
        border-color: #1BB8CE;
        border-width: 6px;
    }
}

.p-aniv-interview__item::after {
    content: '';
    position: absolute;
    right: 18px;
    bottom: 17px;
    z-index: 10;
    width: 36px;
    height: 36px;
    /* 白い半透明の円（背景） */
    background-color: rgba(255, 255, 255, 0.8);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23333' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    border-radius: 50%;
    transition: transform 0.2s ease;
    /* 中心に下向き矢印を描画 */
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__item::after {
        right: 11px;
        bottom: 10px;
        width: 28px;
        height: 28px;
        background-size: 12px;
    }
}

.p-aniv-interview__item.is-active::after {
    transform: rotate(180deg);
}

.p-aniv-interview__item figure {
    width: 100%;
    overflow: hidden;
}

/* imgをブロックレベルに */
.p-aniv-interview__img img {
    display: block;
    width: 100%;
}

.p-aniv-interview__info {
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    /* 重なった際に見えるように調整。必要に応じて背景色(グラデーション等)を付けてください */
    padding: 17px;
    color: #fff;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__info {
        padding: 9px 12px;
    }
}

.p-aniv-interview__info .pos {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1;
}

.p-aniv-interview__info .name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__info .pos {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .p-aniv-interview__info .name {
        font-size: 15px;
    }
}

/* interview DETAIL (Accordion) */
.p-aniv-interview__detail-container {
    position: relative;
    width: 100%;
    /* ::beforeの100vw白背景と top:-15px 三角がcontainerを基点にするため overflow:visible を維持 */
    margin-top: 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* 開閉アニメーションはdetail-innerに適用（containerにoverflow:hiddenをつけると::beforeと矢印がクリップされるため） */
.p-aniv-interview__detail-container.is-opening .p-aniv-interview__detail-inner {
    animation: ivOpenAccAnim 0.6s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

/* 閉じるアニメーション（別アイテム切替 or 閉じるボタン） */
.p-aniv-interview__detail-container.is-closing .p-aniv-interview__detail-inner {
    animation: ivCloseAccAnim 0.5s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

/* is-closing 中はクリック無効 */
@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-container {
        margin-top: 3px;
        margin-bottom: 0;
    }
}

.p-aniv-interview__detail-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    /* インタビューセクションのbackground-imageより上に白背景を出くため z-index:0 */
    z-index: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* ほんのり影をつける場吗 */
}

@keyframes ivOpenAccAnim {
    0% {
        height: 0px;
        visibility: hidden;
    }
    99.9% {
        height: var(--acc-body-height);
        visibility: visible;
    }
    100% {
        height: fit-content;
        visibility: visible;
    }
}

@keyframes ivCloseAccAnim {
    0% {
        height: var(--acc-body-height);
        visibility: visible;
    }
    99.9% {
        height: 0.1px;
        visibility: visible;
    }
    100% {
        height: 0px;
        visibility: hidden;
    }
}

/* アニメーション中にコンテナ自体のマージンもアニメーションさせることで、更なるカクつきを防止 */
.p-aniv-interview__detail-container.is-opening {
    animation: ivOpenMarginAnim 0.6s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}
.p-aniv-interview__detail-container.is-closing {
    pointer-events: none;
    animation: ivCloseMarginAnim 0.5s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

@keyframes ivOpenMarginAnim {
    0% {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    100% {
        margin-top: 6px;
        margin-bottom: 20px;
    }
}

@keyframes ivCloseMarginAnim {
    0% {
        margin-top: 6px;
        margin-bottom: 20px;
    }
    100% {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 768px) {
    @keyframes ivOpenMarginAnim {
        0% {
            margin-top: 0px;
            margin-bottom: 0px;
        }
        100% {
            margin-top: 3px;
            margin-bottom: 0px;
        }
    }
    
    @keyframes ivCloseMarginAnim {
        0% {
            margin-top: 3px;
            margin-bottom: 0px;
        }
        100% {
            margin-top: 0px;
            margin-bottom: 0px;
        }
    }
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-box {
        padding: 30px 20px;
    }
}

.p-aniv-interview__detail-inner {
    --acc-body-height: 0px;
    /* js-acc と同様: height:0+overflow:hiddenで折り畳み、アニメーションで開閉 */
    position: relative;
    /* ::before(z-index:0)より上層にコンテンツを出す */
    z-index: 1;
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}
.p-aniv-interview__detail-box {
    padding: 75px 0 80px;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-box {
        padding: 35px 0 40px;
    }
}

.p-aniv-interview__detail-arrow {
    position: absolute;
    top: -15px;
    left: var(--arrow-left, 16.66%);
    /* デフォルト位置 */
    width: 0;
    height: 0;
    opacity: 0;
    transform: translateX(-50%);
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    border-left: 15px solid transparent;
    transition: left 0.4s ease;
}

/* 開く: top:0 → top:-15px */
.p-aniv-interview__detail-container.is-opening .p-aniv-interview__detail-arrow {
    animation: ivArrowOpen 0.6s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

/* 閉じる: top:-15px → top:0 */
.p-aniv-interview__detail-container.is-closing .p-aniv-interview__detail-arrow {
    animation: ivArrowClose 0.5s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

@keyframes ivArrowOpen {
    from { top: 0; opacity: 0; }
    to   { top: -15px; opacity: 1; }
}

@keyframes ivArrowClose {
    from { top: -15px; opacity: 1; }
    to   { top: 0; opacity: 0; }
}

/* コンテンツレイアウト */
.p-aniv-interview__detail-lead {
    margin-bottom: 6px;
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-lead {
        margin-bottom: 0;
        font-size: 14px;
    }
}

.p-aniv-interview__detail-lead:empty {
    display: none;
}

.p-aniv-interview__detail-catch {
    margin-bottom: 22px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-catch {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 2;
    }
}

.p-aniv-interview__detail-catch:empty {
    display: none;
}

.p-aniv-interview__detail-cols {
    display: grid;
    grid-template-columns: calc(55% - 10px) calc(45% - 30px);
    gap: 0 40px;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.p-aniv-interview__detail-col-img {
    grid-column: 2;
    grid-row: 1 / span 4;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-col-img {
        order: 3;
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        margin-top: 10px;
        /* 余白調整のため追加 */
        margin-bottom: 30px;
    }
}

.p-aniv-interview__detail-caption {
    display: block;
    margin-top: 8px;
    color: #1a1a1a;
    font-size: 12px;
    text-align: right;
}

.p-aniv-interview__detail-col-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* Q&A */
.p-aniv-interview__qa {
    grid-column: 1;
    margin-bottom: 33px;
}

.p-aniv-interview__qa.column-2 {
    width: calc(200% - 80px);
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__qa {
        width: 100%;
        margin-bottom: 17px;
    }

    .p-aniv-interview__qa.column-2 {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__qa:nth-of-type(1) {
        order: 1;
    }

    .p-aniv-interview__qa:nth-of-type(2) {
        order: 2;
    }

    .p-aniv-interview__qa:nth-of-type(3) {
        order: 4;
    }

    .p-aniv-interview__qa:nth-of-type(4) {
        order: 5;
    }

    .p-aniv-interview__qa:nth-of-type(n+5) {
        order: 6;
    }
}

.p-aniv-interview__qa dt {
    position: relative;
    padding-left: 36px; /* Qの幅＋余白 */
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
}

.p-aniv-interview__qa dt::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: -2px; /* 高さに合わせて微調整 */
    color: #1BB8CE;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.2;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__qa dt {
        margin-bottom: 9px;
        font-size: 14px;
        padding-left: 30px;
    }

    .p-aniv-interview__qa dt::before {
        font-size: 24px;
        top: -1px;
    }
}

.p-aniv-interview__qa dd {
    position: relative;
    padding-left: 36px; /* Aの幅＋余白 */
    font-size: 15px;
    line-height: 2.15;
}

.p-aniv-interview__qa dd::before {
    content: 'A';
    position: absolute;
    left: 2px;
    top: -3px;
    color: #1BB8CE;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.2;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__qa dd {
        font-size: 13px;
        line-height: 2;
        padding-left: 30px;
    }

    .p-aniv-interview__qa dd::before {
        left: 2px;
        font-size: 24px;
        top: -1px;
    }
}
.p-aniv-interview__qa dd sup {
    font-size: 70%;
    vertical-align: super;
}

.p-aniv-interview__qa dd span.note {
    /* grid-areaを削除してブロック要素にする */
    display: block;
    margin-top: 1em;
    padding-bottom: 1em;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__qa dd span.note {
        font-size: 11px;
    }
}


/* ページネーション・ナビ */
/* .p-aniv-interview__detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.p-aniv-interview__detail-nav .nav-prev,
.p-aniv-interview__detail-nav .nav-next {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    width: auto;
    padding: 0;
    background: none;
    border: none;
    color: #5A626C;
    font-family: inherit;
    font-size: 12px;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-nav .nav-prev,
    .p-aniv-interview__detail-nav .nav-next {
        flex-direction: column;
        gap: 11px;
    }
    .p-aniv-interview__detail-nav .nav-prev {
        align-items: flex-start;
    }
    .p-aniv-interview__detail-nav .nav-prev .nav-col-txt {
        order: 2;
    }
    .p-aniv-interview__detail-nav .nav-prev .nav-col-img {
        order: 1;
    }
    .p-aniv-interview__detail-nav .nav-next .nav-col-txt {
        order: 2;
    }
    .p-aniv-interview__detail-nav .nav-next .nav-col-img {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-nav .nav-col-img {
        width: 32vw;
        height: 32vw;
    }
}

.p-aniv-interview__detail-nav .nav-next {
    text-align: left;
}

.p-aniv-interview__detail-nav .nav-col-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-aniv-interview__detail-nav .nav-prev .nav-col-txt {
    align-items: flex-start;
    text-align: left;
}

.p-aniv-interview__detail-nav .nav-next .nav-col-txt {
    align-items: flex-end;
    text-align: right;
}

.p-aniv-interview__detail-nav .nav-col-img {
    overflow: hidden;
    width: 180px;
    height: 180px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-nav .nav-col-img {
        width: 120px;
        height: 120px;
    }
}

.p-aniv-interview__detail-nav .nav-col-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-aniv-interview__detail-nav .pos {
    margin-bottom: -4px;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-nav .pos {
        margin-bottom: 2px;
        font-size: 11px;
    }
}

.p-aniv-interview__detail-nav .name {
    margin-bottom: 5px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-nav .name {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.2;
    }
}

.p-aniv-interview__detail-nav .dir {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5A626C;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-nav .dir {
        font-size: 12px;
    }
}

.p-aniv-interview__detail-nav .nav-prev .dir::before,
.p-aniv-interview__detail-nav .nav-next .dir::after {
    content: '';
    display: inline-block;
    z-index: 10;
    width: 14px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%235A626C' stroke-width='0.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

.p-aniv-interview__detail-nav .nav-next .dir::after {
    order: 1;
    transform: rotate(-90deg);
}

.p-aniv-interview__detail-nav .nav-prev:hover,
.p-aniv-interview__detail-nav .nav-next:hover {
    opacity: 0.7;
    transition: opacity 0.2s ease;
} */

@media screen and (max-width: 768px) {
    .p-aniv-interview__nav-close {
        width: 100%;
    }
}

.p-aniv-interview__detail-close-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__detail-close-wrap {
        margin-top: 30px;
    }
}

.p-aniv-interview__nav-close {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    max-width: 538px;
    width: 100%;
    padding: 25px;
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.p-aniv-interview__nav-close span {
    display: block;
    font-size: 26px;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .p-aniv-interview__nav-close {
        max-width: 300px;
        width: 100%;
        padding: 9px;
        font-size: 12px;
    }

    .p-aniv-interview__nav-close span {
        font-size: 18px;
    }
}

@media (hover: hover) {
    .p-aniv-interview__nav-close:hover {
        background: #000;
        border-color: #000;
        color: #fff;
    }
}

/* VISUAL */
.p-aniv-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    height: 462px;
    background-image: url("../img/pc/voice/voice_background01.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.p-aniv-visual img {
    width: 309px;
}

@media screen and (max-width: 768px) {
    .p-aniv-visual {
        height: 320px;
        background-image: url("../img/sp/voice/voice_background01_sp.jpg");
    }

    .p-aniv-visual img {
        width: 38.3vw;
    }
}

/* VOICE */
.p-aniv-voice .p-aniv-voice__ttlblock {
    height: calc(100vh - 84px - 120px);
    height: calc(100lvh - 84px - 120px);
    /* 100vhからセクションタイトルの高さと余白を引く */
    background-image: url("../img/pc/voice/voice_background02.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

@media screen and (max-width: 768px) {
    .p-aniv-voice .p-aniv-voice__ttlblock {
        height: calc(100vh - 50px - 112px);
        height: calc(100lvh - 50px - 112px);
        background-image: url("../img/sp/voice/voice_background02_sp.jpg");
    }
}

.p-aniv-voice .p-aniv-sect-ttl {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    aspect-ratio: 1512 / 982;
    margin-top: 0;
    margin-bottom: 30px;
    padding-top: 128px;
    color: #fff;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5), 0px 0px 12px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .p-aniv-voice .p-aniv-sect-ttl {
        aspect-ratio: 402 / 874;
        margin-bottom: 36px;
        padding-top: 124px;
    }
}

.p-aniv-voice__blocks {
    display: flex;
    flex-direction: column;
    margin-top: 120vh; /* 元の 50vh から変更して、タイトル固定後の待ち時間を稼ぐ */
}

.p-aniv-voice__block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: calc(100vh - 84px - 120px);
    height: calc(100lvh - 84px - 120px); /* 変更: アドレスバーが隠れた一番高い状態(lvh)で固定 */
    margin-bottom: 120vh; /* 追加: 次のブロックが出てくるまでの間隔（時間を稼ぐ） */
    /* 100vhからセクションタイトルの高さと余白を引く */
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5), 0px 0px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .p-aniv-voice__block {
        align-self: auto;
        width: 100%;
        height: calc(100vh - 50px - 112px);
        height: calc(100lvh - 50px - 112px); /* 変更: 一番高い状態(lvh)で固定 */
        margin-bottom: 90vh; /* SP版のブロック間隔（さらに広げる） */
    }
}

.p-aniv-voice__block:nth-child(odd) {
    align-self: flex-start;
}

.p-aniv-voice__block:nth-child(even) {
    align-self: flex-end;
}

/* temporary backgrounds if images are missing */
.p-aniv-voice__block:nth-child(1) {
    background-color: #557;
}

.p-aniv-voice__block:nth-child(2) {
    background-color: #79a;
}
.p-aniv-voice__block:last-child {
    margin-bottom: 0;
}

.p-aniv-voice__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.p-aniv-voice__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-aniv-voice__content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.p-aniv-voice__ttl {
    margin-bottom: 28px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
}

.p-aniv-voice__txt {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .p-aniv-voice__ttl {
        margin-bottom: 18px;
        font-size: 22px;
        line-height: 1.8;
    }

    .p-aniv-voice__txt {
        margin-bottom: 24px;
        font-size: 15px;
    }
}

.p-aniv-voice__btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #1BB8CE;
    border-radius: 10em;
    background: #1BB8CE;
    color: #fff;
    font-family: 'Outfit', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: none;
}

@media (hover: hover) {
    .p-aniv-voice__btn:hover {
        background: #fff;
        border-color: #fff;
        color: #1BB8CE;
    }
}

@media screen and (max-width: 768px) {
    .p-aniv-voice__btn {
        padding: 5px 24px;
        font-size: 15px;
    }
}

.p-aniv-voice {
    position: relative;
    padding-bottom: 156px;
    background-color: #fff;
    /* 隙間対策 */
}

@media screen and (max-width: 768px) {
    .p-aniv-voice {
        padding-bottom: 112px;
    }
}

.p-aniv-voice__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 156px;
    margin: 0;
    background: #fff;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@media screen and (max-width: 768px) {
    .p-aniv-voice__bottom {
        height: 112px;
    }
}

.p-aniv-voice__bottom.is-fixed {
    position: fixed;
    bottom: 0;
    transform: translateY(0);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.p-aniv-voice__bottom.is-absolute {
    position: absolute;
    bottom: 0;
    transform: translateY(0);
}

.p-aniv-btn {
    display: inline-block;
    padding: 21px 141px;
    border: 2px solid #1BB8CE;
    border-radius: 10em;
    color: #1BB8CE;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .p-aniv-btn {
        padding: 13px 52px;
    }
}

@media (hover: hover) {
    .p-aniv-btn:hover {
        background: #1BB8CE;
        color: #fff;
    }
}

.p-aniv-btn span:nth-of-type(1) {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

.p-aniv-btn span:nth-of-type(2) {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .p-aniv-btn span:nth-of-type(1) {
        font-size: 16px;
    }

    .p-aniv-btn span:nth-of-type(2) {
        font-size: 14px;
    }
}

/* TOPICS */
.p-aniv-topics {
    height: calc(100vh - 84px);
    height: calc(100dvh - 84px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-image: url("../img/pc/topics/topics_background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .p-aniv-topics {
        height: calc(100vh - 50px);
        height: calc(100dvh - 50px);
        background-image: url("../img/sp/topics/topics_background_sp.jpg");
    }
}

.p-aniv-topics .p-aniv-sect-ttl {
    margin-top: 8px;
    margin-bottom: 30px;
    color: #1A1A1A;
    line-height: 1;
}
@media screen and (max-width: 768px) {
    .p-aniv-topics .p-aniv-sect-ttl {
        margin-bottom: 36px;
    }
}

.p-aniv-topics__inner {
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .p-aniv-topics__inner {
        max-width: 100%;
    }
}

.p-aniv-topics__slider {
    position: relative;
    padding-bottom: 50px;
    /* space for pagination */
}

@media screen and (max-width: 768px) {
    .p-aniv-topics__slider {
        padding-bottom: 57px;
    }
}

.p-aniv-topics__item {
    box-sizing: border-box;
    width: auto;
    /* changed for slidesPerView: auto */
    height: auto;
    text-align: center;
}

.p-aniv-topics__item figure {
    width: 100%;
}

.p-aniv-topics__item img {
    width: 100%;
    max-height: 320px;
}

@media screen and (max-width: 768px) {
    .p-aniv-topics__item img {
        max-height: 228px;
    }
}

.p-aniv-topics__item .txt {
    /*padding: 10px 20px;*/
    margin-top: 10px;
    font-size: 14px;
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .p-aniv-topics__item .txt {
        margin-top: 6px;
        font-size: 12px;
    }
}

.p-aniv-topics__slider .swiper-pagination-bullet {
    opacity: 1;
    width: 6px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.3);
}

.p-aniv-topics__slider .swiper-pagination-bullet-active {
    background-color: #1BB8CE;
}

/* ページネーションとボタンを水平に配置するための調整 */
.p-aniv-topics__slider .swiper-pagination {
    bottom: 2px;
    /* ボタンの中心高さに合わせる */
}

@media screen and (max-width: 768px) {
    .p-aniv-topics__slider .swiper-pagination {
        bottom: 4px;
    }
}

/* TOPICS Slider Buttons (Pure CSS) */
.p-aniv-topics__slider .swiper-button-next,
.p-aniv-topics__slider .swiper-button-prev {
    top: auto;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-top: 0;
    background-color: transparent;
    border: 1px solid #1BB8CE;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.p-aniv-topics__slider .swiper-button-prev {
    left: 0;
}

.p-aniv-topics__slider .swiper-button-next {
    right: 0;
}

@media screen and (max-width: 768px) {

    .p-aniv-topics__slider .swiper-button-next,
    .p-aniv-topics__slider .swiper-button-prev {
        bottom: 0;
        width: 36px;
        height: 36px;
    }

    .p-aniv-topics__slider .swiper-button-prev {
        left: 4.8vw;
    }

    .p-aniv-topics__slider .swiper-button-next {
        right: 4.8vw;
    }
}

@media (hover: hover) {
    .p-aniv-topics__slider .swiper-button-next:hover,
    .p-aniv-topics__slider .swiper-button-prev:hover {
        background-color: #1BB8CE;
    }
}

/* Swiperデフォルトのアイコン文字を消す */
.p-aniv-topics__slider .swiper-button-next::after,
.p-aniv-topics__slider .swiper-button-prev::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 1px solid #1BB8CE;
    border-right: 1px solid #1BB8CE;
    font-family: unset;
    transition: border-color 0.3s;
}

@media (hover: hover) {
    .p-aniv-topics__slider .swiper-button-next:hover::after,
    .p-aniv-topics__slider .swiper-button-prev:hover::after {
        border-color: #fff;
    }
}

.p-aniv-topics__slider .swiper-button-next::after {
    margin-left: -2px;
    /* 視覚的な中央揃え */
    transform: rotate(45deg);
}

.p-aniv-topics__slider .swiper-button-prev::after {
    margin-right: -2px;
    /* 視覚的な中央揃え */
    transform: rotate(-135deg);
}

/* GALLERY */
.p-aniv-gallery {
    padding-top: 119px;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .p-aniv-gallery {
        padding-top: 81px;
    }
}

.p-aniv-gallery .p-aniv-sect-ttl {
    margin-top: 8px;
    margin-bottom: 30px;
    color: #1BB8CE;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .p-aniv-gallery .p-aniv-sect-ttl {
        margin-bottom: 36px;
    }
}

.p-aniv-gallery__wrap {
    overflow: hidden;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .p-aniv-gallery__item {
        width: 150px;
        /* SP時の画像幅。適宜調整してください */
    }
}

.p-aniv-gallery__grid {
    display: flex;
}

.p-aniv-gallery__wrap .swiper-wrapper {
    /* 自動再生時の動きを等速にする */
    transition-timing-function: linear;
}

.p-aniv-gallery__item {
    flex-shrink: 0;
    width: 372px;
    /* デフォルトの画像幅。適宜調整してください */
}

@media screen and (max-width: 768px) {
    .p-aniv-gallery__item {
        width: 168px;
        /* SP時の画像幅。適宜調整してください */
    }
}

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

.p-aniv-bottom__logo {
    width: 400px;
    margin: 120px auto 0;
    opacity: 0;
    filter: blur(7px);
    transition: opacity 0.5s ease, filter 0.5s ease;
}

@media screen and (max-width: 768px) {
    .p-aniv-bottom__logo {
        width: fit-content;
        margin: 60px auto 0;
    }
}

.p-aniv-bottom__logo.is-active {
    opacity: 1;
    filter: blur(0);
}