/* ------------------------------------------------
ARCHIVE: STAFF - スタッフ一覧 -
------------------------------------------------ */

.staff-intro {
    --min-size: 52;
    --max-size: 147;
    padding-bottom: var(--clamp-size);
    position: relative;
    margin-bottom: var(--space-4xl);
}

.staff-intro__inner {
    text-align: center;
}

.staff-intro__title {
    display: flex;
    align-items: center;
    justify-content: center;
    --min-size: 16;
    --max-size: 40;
    gap: var(--clamp-size);
    margin-bottom: 1.25em;
}

.staff-intro__title::before,
.staff-intro__title::after {
    content: "";
    display: block;
    --min-size: 40;
    --max-size: 85;
    width: var(--clamp-size);
    height: 1px;
    background: var(--color-sky);
    display: inline-block;
}

.staff-intro__copy {
    --min-size: 22;
    --max-size: 32;
    font-size: var(--clamp-size);
    font-weight: var(--fontWeight-bold);
    margin-bottom: var(--space-xl);
}


.staff-intro__text {
    line-height: var(--lineHeight-150);
    max-width: 650px;
    margin-inline: auto;
}

.staff-intro::after {
    content: "Interview";
    display: block;
    /* グラデーションテキスト */
    background: var(--gradient-light);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    --min-size: 52;
    --max-size: 147;
    font-size: var(--clamp-size);
    font-family: var(--fontFamily-en);
    font-weight: var(--fontWeight-semi-bold);
    line-height: 0.9;

    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 3%;
    z-index: -1;
}

@media (width < 768px) {

    .staff-intro {
        padding-bottom: clamp(40px, 17vw, 127px);
        position: relative;
    }

    .staff-intro::after {
        font-size: clamp(52px, 20vw, 147px);
    }
}

/* 一覧
-----------------------------------------*/
.staff {
    position: relative;
    padding-top: 0;
    --min-size: 90;
    --max-size: 100;
    padding-bottom: var(--clamp-size);
}

.staff::before {
    content: "";
    display: block;
    background: url(../../img/common/bg_grey.avif) center center / 100% repeat;

    position: absolute;
    top: var(--top, 0px);
    left: 0;
    width: 100%;
    height: calc(100% - var(--space-3xl) - var(--top) - var(--space-4xl));
    z-index: -1;
}

.staff__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: var(--space-3xl);
    justify-items: center;
    --min-size: 48;
    --max-size: 56;
    padding-bottom: var(--clamp-size);
}

.staff__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 1;
    width: min(100%, 340px);
    height: 100%;
    /* コンテナクエリを有効にする */
    container-type: inline-size;
}

.staff__link {
    position: relative;
    width: 100%;
    height: 100%;
}

.staff__thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* 画像のサイズが違う場合も下揃えにする */
    justify-content: center;
}

.staff__thumbnail img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: all 0.2s cubic-bezier(0.08, 0.29, 0.25, 1);
}

.staff__info {
    position: absolute;
    bottom: 12%;
    right: 13%;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.staff__content {
    color: var(--color-white);
    font-weight: var(--fontWeight-bold);
    line-height: var(--lineHeight-1);
    width: max-content;
}


.staff__division {
    /* コンテナベースで調整 */
    font-size: clamp(14px, 6cqi, 19px);
    line-height: 1.5;
    /* font-size: clamp(16px, 7cqi, 24px); */
    text-shadow: 0 2px 2px #00000025;
    width: 9em;
}

.staff__division::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-white);
    margin: var(--space-sm) 0 var(--space-xs);
}

.staff__division {
    /* コンテナベースで調整  */
    /* font-size: clamp(14px, 6cqi, 20px); */
    /* text-shadow: 0 2px 2px #00000025; */
}

/* ボタン（共通パーツ利用） -------- */

.staff__arrow.arrow,
.staff__arrow.arrow::after {
    /* コンテナベースで調整 */
    width: clamp(30px, 16cqi, 54px);
}

.staff__arrow.arrow {
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    transition: all 0.3s cubic-bezier(0.08, 0.29, 0.25, 1);

}

.staff__arrow.arrow::before {
    background-color: var(--color-base);
    aspect-ratio: 12/6;
    width: 30%;
    height: auto;
    transition: all 0.3s cubic-bezier(0.08, 0.29, 0.25, 1);

}

.staff__arrow.arrow::after {
    background: none;
}

.staff__item:hover .staff__arrow.arrow {
    background-color: transparent;
    border: 1px solid var(--color-white);
}

.staff__item:hover .staff__thumbnail img {
    scale: 1.04;
    transition: all 0.2s cubic-bezier(0.08, 0.29, 0.25, 1);
}

.staff__item:hover .staff__arrow.arrow::before {
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.08, 0.29, 0.25, 1);
}

.staff__item:hover .staff__arrow.arrow::before {
    background-color: var(--color-white);
    transition: all 0.3s cubic-bezier(0.08, 0.29, 0.25, 1);

}

@media (width < 768px) {
    .staff::before {
        background: url(../../img/common/bg_grey-sp.avif) center center / 100% repeat;
    }
}

/* スタッフ詳細 - Interview -
-----------------------------------------*/

.interview {
    padding-top: var(--space-md);
}

/* あしらい -------- */
.interview {
    position: relative;
}

.interview::before,
.schedule::before,
.other::before {
    content: "";
    display: block;
    background: url(../../img/common/bg_blur.png) no-repeat center/contain;
    position: absolute;
    top: 0;
    left: 0;
    translate: -40% -40%;
    --min-size: 300;
    --max-size: 600;
    width: var(--clamp-size);
    height: var(--clamp-size);
    z-index: -1;
}

.schedule::before {
    left: unset;
    right: 0;
    translate: 30% -50%;
}

.other::before {
    left: unset;
    right: 0;
    translate: 30% -60%;
}

/* KV ------------*/
.interview__kv {
    margin-inline: auto;
    max-width: 1250px;
    display: flex;
    align-items: center;
    margin-bottom: var(--space-5xl);
}

/* 画像 */
.interview__image {
    width: min(58%, 730px);
    height: auto;
    aspect-ratio: 16/9;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        vertical-align: bottom;
    }
}

/* コピー・名前 ------------ */
/* 内側に少しはみ出す */
.interview__contents {
    width: 46%;
    margin-left: -3%;
    /* コンテナクエリを有効にする */
    container-type: inline-size;
}

.interview__catch {
    color: var(--color-white);
    font-size: clamp(16px, 6.45cqi, 36px);
    font-weight: var(--fontWeight-bold);
    line-height: var(--lineHeight-150);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
}

.interview__catch1,
.interview__catch2 {
    background: var(--gradient-reverse);
    display: inline-block;
    padding: 0 var(--space-sm) 0.1em;
}

/* 線 */
.interview__tag::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #9B9B9B;
    margin: var(--space-lg) 0;
}

.interview__tag {
    font-size: clamp(14px, 4.5cqi, 24px);
    font-weight: var(--fontWeight-medium);
    line-height: var(--lineHeight-1);
}

.interview__division {
    color: var(--color-white);
    background-color: #717171;
    padding: var(--space-xs);
    width: fit-content;
    margin-bottom: var(--space-sm);
}

.interview__name {
    width: fit-content;
}

@media (width < 768px) {
    .interview__kv {
        flex-direction: column;
    }

    .interview__contents {
        width: 100%;
        margin-left: 0;
    }

    .interview__image {
        width: 100%;
        margin-bottom: var(--space-2xl);
    }
}

/* インタビュー FAQ
-----------------------------------------*/
.interview__inner {
    max-width: 1122px;
    margin-inline: auto;
}

.interview__faq {
    gap: var(--space-2xl);
}

.interview__content {
    flex: 6.5;
    line-height: var(--lineHeight-180);
}

.interview__q {
    font-size: var(--fontSize-xl);
    font-weight: var(--fontWeight-bold);
    margin-bottom: var(--space-md);
}

.interview-faq__image {
    flex: 3.5;
    aspect-ratio: 373/245;
    width: 100%;
    height: auto;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}

/* あしらいInterviewの配置調整 -------- */
.interview {
    /* --min-size: 52;
    --max-size: 84; */
    --min-size: 52;
    --max-size: 84;
    padding-bottom: var(--clamp-size);
    margin-bottom: var(--clamp-size);
}

.interview::after {
    content: "Interview";
    display: block;
    /* グラデーションテキスト */
    background: var(--gradient-light);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    --min-size: 52;
    --max-size: 164;
    font-size: var(--clamp-size);
    font-family: var(--fontFamily-en);
    font-weight: var(--fontWeight-semi-bold);
    line-height: 0.9;

    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

@media (width < 768px) {

    .interview__content {
        order: 1;
    }

    .interview {
        padding-bottom: clamp(40px, 17vw, 127px);
        position: relative;
    }

    .interview::after {
        font-size: clamp(52px, 18vw, 164px);
    }
}

/* 1日のスケジュール
-----------------------------------------*/
.schedule {
    padding-top: 0;
}

.schedule__inner {
    max-width: 1122px;
    margin-inline: auto;
}

.schedule__box {
    background-color: #FAFAFA;
    padding: clamp(20px, 3.8vw, 52px) clamp(16px, 5vw, 88px) clamp(40px, 8vw, 110px);
}

.schedule__title {
    --min-size: 26;
    --max-size: 36;
    font-size: var(--clamp-size);
    margin-bottom: var(--space-2xl);
}

.schedule__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* 各スケジュールの白ボックス */
.schedule__item {
    display: flex;
    background-color: var(--color-white);
    padding: clamp(10px, 2.1vw, 30px);
    gap: clamp(16px, 2.9vw, 40px);
}

.schedule__time {
    font-size: var(--fontSize-xl);
    font-weight: var(--fontWeight-bold);
    font-family: var(--fontFamily-en);
    width: 3.5em;
}

.schedule__content {
    flex: 1;
}

.schedule__heading {
    font-size: var(--fontSize-xl);
    font-weight: var(--fontWeight-medium);
    margin-bottom: var(--space-lg);
}

.schedule__description {
    font-size: var(--fontSize-md);
    font-weight: var(--fontWeight-bold);
}



/* その他の事例
-----------------------------------------*/
.other {
    padding: 0 max(6.5vw, 35px) var(--space-4xl);
    position: relative;
}

.other__inner {
    max-width: 1045px;
    margin-inline: auto;
}

/* タイトル */
.other__heading {
    --min-size: 26;
    --max-size: 36;
    font-size: var(--clamp-size);
    margin-bottom: var(--space-2xl);
}

.other__slider {
    --min-size: 54;
    --max-size: 72;
}


/* その他の事例スライダー */
.other__item {
    transition: transform 0.3s ease;
}

.other__item {
    display: block;
    margin-bottom: 0;
    height: auto !important;
    background-color: #F4F4F4;
    transition: all 0.2s ease-in-out;
    max-width: none;
    padding-bottom: var(--space-2xl);
}

.other__item:hover {
    box-shadow: 0 0 20px #E5F2F2;
    transition: all 0.2s ease-in-out;
}

.other__item>a {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0;
}

.other__thumbnail {
    flex-shrink: 0;
    width: 100%;
    height: auto;
}

.other__thumbnail {
    aspect-ratio: 323 / 184;
    height: auto;
    margin-bottom: var(--space-md);
}

.other__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
    aspect-ratio: 323 / 184;
}

.other__division,
.other__content {
    margin: 0 var(--space-sm);
}

.other__division {
    padding: 0.3em 1em 0.4em 0.85em;
    background-color: var(--color-sky);
    width: fit-content;
    flex-shrink: 0;
        align-items: center;
    color: var(--color-white);
    font-family: var(--fontWeight-bold);
    line-height: var(--lineHeight-1);
}


.other__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0 var(--space-sm);
}

.other__title {
    font-size: var(--fontSize-lg);
    font-weight: var(--fontWeight-medium);
    line-height: var(--lineHeight-150);
    flex-shrink: 0;
    margin-top: var(--space-sm);
}

/* スライダードロップシャドウが隠れるので余白を追加 */
.splide__track {
    padding-bottom: 1em;
}

/* スライダーの矢印 */
.splide__arrow {
    background: var(--color-white);
}

.splide__arrow {
    background: var(--color-white);
    width: clamp(17.7px, 3.5vw, 40px);
    height: clamp(35px, 6vw, 80px);
}

.splide__arrow svg {
    fill: var(--color-sky);
    width: 100%;
    height: 100%;
}

.splide__arrow svg {
    fill: var(--color-sky);
}

.splide__arrow--next {

    right: calc(-1 * clamp(8px, 4.3vw, 60px));
}

.splide__arrow--prev {

    left: calc(-1 * clamp(8px, 4.3vw, 60px));
}

@media (width < 768px) {
    .splide__arrow--next {

        right: 0;
        translate: 150%;
    }

    .splide__arrow--prev {

        left: 0;
        translate: -150%;

    }
}