/* ===== Base ===== */
:root {
    --text: #524A3B;
    --subtext: #8B7E64;
    --lite-gray: #F8F5EB;
    --btn-hover: #AC9C7B;
    --font-text: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    --font-title: "Ranade", sans-serif;
}

/* ===== Font ===== */
@font-face {
    font-family: "Ranade";
    src: url("../fonts/Ranade/Ranade-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ranade";
    src: url("../fonts/Ranade/Ranade-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== Common ===== */
* {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    height: 100%;
}

img {
    width: 100%;
    height: 100%
}

body {
    height: fit-content;
    color: var(--text);
    font-family: var(--font-text);
    background: #fff;
}

.l-container {
    width: 100%;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

.sec-title {
    display: inline-block;
    font-size: 96px;
    font-family: var(--font-title) !important;
    font-weight: 400;
    background: linear-gradient(90deg,
            #524A3B 0%,
            #524A3B 25%,
            #7e735c 55%,
            #AC9C7B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-inner {
    max-width: 1386px;
    padding: 0 56px;
    margin: 0 auto;
}

.pc-show {
    display: block;
}

.sp-show {
    display: none;
}

@media (max-width: 1024px) {
    body {
        padding-top: 64px;
    }

    html.is-menu-open,
    body.is-menu-open {
        height: 100%;
        overflow: hidden;
    }

    .l-container {
        max-width: calc(100% - 16px);
    }

    .sec-title {
        font-size: 56px;
        font-weight: 300;
    }

    .header-inner {
        padding: 0;
    }

    .pc-show {
        display: none;
    }

    .sp-show {
        display: block;
    }
}

/* ===== Header ===== */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 1000000;
    background: #fff;
}

.lp-header__inner {
    max-width: 1440px;
    height: 96px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
}

.lp-header__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.lp-header__logo {
    height: 48px;
    width: auto;
    display: block;
}

.lp-header__nav {
    justify-self: center;
}

.lp-header__nav-list {
    list-style: none;
    display: flex;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.lp-header__nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    letter-spacing: .06em;
    padding: 0 16px;
}

.lp-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 22px;
    background: var(--lite-gray);
    color: var(--text);
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 0.08em;
    transition: all .3s ease;
}

.lp-header__cta:hover {
    background: var(--btn-hover);
    color: #fff;
}

.lp-cta-icon-svg {
    fill: var(--text);
}

.lp-header__cta:hover .lp-cta-icon-svg {
    fill: #fff;
}

.lp-header__cta-icon-img {
    width: 10px;
    height: 10px;
    display: block;
}

.lp-header__burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    justify-self: end;
}

.lp-header__burger span {
    display: flex;
    justify-content: flex-end;
    width: 24px;
    height: 1px;
    background: var(--text);
    text-align: right;
    margin: 3px 0;
    transition: transform .25s ease, opacity .2s ease;
}

.lp-header__burger span:nth-child(2) {
    width: 16px;
}

.is-menu-open .lp-header__burger span:nth-child(2) {
    width: 24px;
}

.is-menu-open .lp-header__burger span:nth-child(1) {
    transform: translateY(5px) rotate(-45deg);
}

.is-menu-open .lp-header__burger span:nth-child(2) {
    transform: translateY(-2px) rotate(45deg);
}

.lp-spmenu {
    position: fixed;
    left: 0;
    right: 0;
    top: 96px;
    bottom: 0;
    background: #fff;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease;
}

.is-menu-open .lp-spmenu {
    opacity: 1;
    pointer-events: auto;
}

.lp-spmenu__inner {
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: grid;
    grid-template-rows: auto auto auto auto;
    align-content: start;
    padding: 32px 22px 28px;
}

.lp-spmenu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 44px;
    text-align: center;
}

.lp-spmenu__link {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    letter-spacing: .12em;
}

.lp-pcmenu__cta-top,
.lp-spmenu__cta-top {
    display: grid;
    justify-items: center;
}

.lp-spmenu__cta-top {
    margin-top: 40px;
}

.lp-spmenu__cta-stack {
    margin-top: 32px;
    display: grid;
    gap: 10px;
    justify-items: center;
}

.lp-spmenu__cta-top .lp-spmenu__cta {
    width: 92.5%;
    padding: 14px 24px !important;
}

.lp-spmenu__divider {
    width: 100%;
    height: 1px;
    background: #DDDDDD;
    margin: 32px calc(50% - 50vw) 0;
    width: 100vw;
}

.lp-spmenu__social {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.lp-spmenu__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.is-menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .lp-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000000;
    }

    .lp-spmenu {
        top: 0;
        z-index: 1500;
    }

    .lp-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        height: 64px;
        padding: 0 16px 0 0;
        margin-left: 16px;
    }


    .lp-header__logo {
        height: 32px;
    }

    .lp-header__nav {
        display: none;
    }

    .lp-spmenu__cta-stack .lp-spmenu__cta {
        width: 92.5%;
    }

    .lp-spmenu {
        top: 64px;
    }

    .lp-pcmenu__cta-top {
        display: none;
    }

    .lp-header__nav {
        display: none;
    }

    .lp-header__burger {
        display: flex;
        text-align: right;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
    }
}

/* ===== fv ===== */
.lp-fv {
    position: relative;
    isolation: isolate;
}

.lp-fv__inner {
    position: relative;
    width: 100%;
    max-width: none;
}

.lp-fv-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.lp-fv-img {
    display: none;
    width: 100%;
    height: auto;
}

.lp-fv__title {
    position: relative;
    width: 73.5%;
    height: 100%;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
    margin-top: 20px;
    margin-left: 33px;
    z-index: 100;
}

.lp-fv__title.is-show {
    opacity: 1;
    transform: translateY(0);
}

.lp-fv__media {
    position: relative;
    overflow: hidden;
    margin-top: -5%;
    z-index: 0;
}

.lp-fv__scroll {
    position: absolute;
    right: 4%;
    bottom: 23%;
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #fff;
}

.lp-fv__scroll-circle {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid #fff;
}

.lp-fv__scroll-arrow {
    position: relative;
    width: 16px;
    height: 20px;
    fill: #fff;
    transform: rotate(135deg);
}

.fv-sub-text {
    white-space: nowrap;
    font-size: 11.95vw;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-weight: 300;
    background: linear-gradient(90deg,
            #524A3B 0%,
            #524A3B 25%,
            #7e735c 55%,
            #AC9C7B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 5px;
}

.fv-copy-text {
    position: absolute;
    left: 4%;
    bottom: 23%;
    font-size: 14px;
    font-family: var(--font-title) !important;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    padding-top: 32px;
}

.lp-fv__scroll {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
}

.fv-scroll-anchor {
    position: absolute;
    right: 32px;
    bottom: 23%;
    width: 120px;
    height: 120px;
    opacity: 0;
    pointer-events: none;
}

.fv-copy-anchor {
    position: absolute;
    left: 32px;
    bottom: 23%;
    width: 224px;
    height: 46px;
    opacity: 0;
    pointer-events: none;
}

.lp-fv__scroll.is-fixed {
    position: fixed;
    right: 4%;
    bottom: 36px;
}

.fv-copy-text.is-fixed {
    position: fixed;
    left: 4%;
    bottom: 36px;
}

@media (max-width: 1920px) {

    .lp-fv.is-initial .lp-fv__scroll,
    .lp-fv.is-initial .fv-copy-text {
        bottom: 58%;
    }
}

@media (max-width: 1024px) {
    .lp-fv__media {
        margin-top: -9%;
    }

    .lp-fv__media img {
        max-height: 100%;
    }

    .lp-fv__img {
        aspect-ratio: unset;
    }

    .lp-fv__title {
        width: 100%;
        margin-top: 83px;
        margin-left: 0;
    }

    .fv-sub-text {
        font-size: 11.8vw;
        padding-left: 5px;
        padding-bottom: 32px;
    }

    .lp-fv__scroll {
        position: relative;
        right: -84%;
        bottom: 0;
        width: 48px;
        height: 48px;
    }

    .lp-fv__scroll-circle {
        border: 1px solid #000;
    }

    .fv-copy-text {
        left: 24px;
        bottom: 0;
        font-size: 12px;
        color: #000;
    }

    .lp-fv__scroll-arrow {
        width: 12px;
        fill: #000;
    }
}

/* ===== message ===== */
.lp-message {
    position: relative;
    padding: 160px 0;
    background: #fff;
    overflow: hidden;
}

.lp-message__inner {
    max-width: 1280px;
    min-height: 960px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    column-gap: 64px;
    margin: 0 auto;
}

.lp-message__title {
    width: 480px;
    letter-spacing: -6px;
    margin-top: 20px;
    margin-bottom: 120px;
}

.lp-message__catch {
    font-size: 40px;
    font-family: var(--font-text);
    font-weight: 300;
    color: var(--subtext);
    white-space: nowrap;
    margin: 0 0 64px;
}

.lp-message__body {
    font-size: 23px;
    line-height: 2;
    text-align: justify;
    color: var(--text);
}

.lp-message__visual {
    position: absolute;
    top: 12.7%;
    right: -240px;
    overflow: visible;
}

.lp-message__visual-clip {
    width: 960px;
    height: 960px;
    overflow: hidden;
    border-radius: 16px;
}

.lp-message__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 960px;
    height: 100%;
}

.lp-message__col {
    display: grid;
    align-content: start;
}

.js-parallax-left,
.js-parallax-right {
    display: grid;
    align-content: start;
    will-change: transform;
}

.lp-message__text {
    max-width: 480px;
}

.lp-message__img {
    margin: 0;
    overflow: hidden;
}

.lp-message__img img {
    width: 480px;
    height: 400px;
    display: block;
    object-fit: cover;
}

@media (max-width: 1320px) {
    .lp-message__visual-clip {
        width: 800px;
    }

    .lp-message__text {
        padding-left: 20px;
    }

    .lp-message__cols {
        width: 800px;
    }

    .lp-message__img img {
        width: 400px;
        height: 400px;
    }

}

@media (max-width: 1024px) {
    .lp-message {
        padding: 80px 0 0;
    }

    .lp-message__inner {
        max-width: calc(100% - 32px);
        grid-template-columns: 1fr;
        row-gap: 50px;
        margin: 0 auto;
    }

    .lp-message__title {
        width: 300px;
        margin-top: 0;
        margin-bottom: 48px;
    }

    .lp-message__text {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
    }

    .lp-message__visual {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }

    .lp-message__visual-clip {
        width: 100%;
        height: 480px;
        border-radius: 0;
    }

    .lp-message__body {
        font-size: 16px;
        line-height: 2.4;
    }

    .lp-message__cols {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        width: 100%;
        height: 100%;
    }

    .lp-message__col {
        grid-auto-flow: column;
        grid-auto-columns: 240px;
        align-items: start;
        width: max-content;
    }

    .lp-message__img img {
        width: 240px;
        height: 240px;
    }
}


/* ===== Faculty Department ===== */
.lp-faculty {
    position: relative;
    padding: 110px 0 120px;
    background: #fff;
}

.lp-faculty__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 27.5%;
    height: 100%;
    background: #AC9C7B;
    border-top-left-radius: 16px;
    z-index: 0;
}

.lp-faculty__inner {
    position: relative;
    max-width: 1280px;
    z-index: 1;
}

.lp-faculty__header {
    margin-bottom: 64px;
}

.lp-faculty__title {
    letter-spacing: -6px;
    margin-bottom: 120px;
}

.lp-faculty__lead {
    font-size: 40px;
    font-weight: 300;
    font-family: var(--font-text);
    line-height: 1.9;
    color: var(--subtext);
}

.lp-faculty__note {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.06em;
    color: var(--text);
}

.lp-faculty__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lp-faculty-card {
    display: grid;
    grid-template-rows: auto auto;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: var(--lite-gray);
    transition: transform .18s ease;
}

.lp-faculty-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.lp-faculty-card__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    --py: 0px;
    --s: 1.06;
    transform: translate3d(0, var(--py), 0) scale(var(--s));
    will-change: transform;
    transition: transform 0.4s ease;
}

.lp-faculty-card:hover .lp-faculty-card__thumb img {
    --s: 1.16;
}

.lp-faculty-card__placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #D9D9D9;
}

.lp-faculty-card__body {
    position: relative;
    padding: 24px;
    display: grid;
}

.lp-faculty-card__tag,
.lp-faculty-card__name {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    color: #000;
}

.lp-faculty-card__icon {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 43px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    line-height: 1;
}

.lp-faculty-card,
.lp-links-card,
.js-fade-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

.lp-faculty-card.is-show,
.lp-links-card.is-show,
.js-fade-item.is-show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1320px) {
    .lp-faculty {
        padding: 110px 20px 120px;
    }
}


@media (max-width: 1024px) {
    .lp-faculty {
        padding: 80px 0 0;
    }

    .lp-faculty__inner {
        max-width: calc(100% - 32px);
    }

    .lp-faculty__bg {
        width: 0;
    }

    .lp-faculty__title {
        line-height: 1;
        letter-spacing: -3px;
        margin-bottom: 56px;
    }

    .lp-faculty__header {
        margin-bottom: 40px;
    }

    .lp-faculty__lead {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .lp-faculty__note {
        font-size: 16px;
    }

    .lp-faculty__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .lp-faculty__bg {
        display: none;
    }

    .lp-faculty__grid {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        background: #AC9C7B;
        padding: 16px 8px;
    }

    .lp-faculty-card__thumb img {
        --s: 1.15;
    }

    .lp-faculty-card:hover .lp-faculty-card__thumb img {
        --s: 1.25;
    }

    .lp-faculty__title {
        letter-spacing: 0;
    }

    .lp-faculty-card__body {
        padding: 6px 8px 8px 12px;
    }

    .lp-faculty-card__tag {
        font-size: 12px;
    }

    .lp-faculty-card__name {
        font-size: 12px;
    }

    .lp-faculty .lp-faculty-card__icon {
        right: -1px;
        bottom: -1px;
        background: transparent;
    }
}

/* ===== FAQ ===== */
.lp-faq {
    padding: 160px 0 120px;
    background: #fff;
}

.lp-faq__header {
    max-width: 1440px;
    margin: 0 auto;
}

.lp-faq__title {
    margin-bottom: 64px;
}

.lp-faq__lead {
    font-size: 40px;
    font-weight: 400;
    font-family: var(--font-text);
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--subtext);
    margin-bottom: 32px;
}

.lp-faq__panel {
    background: var(--lite-gray);
    border-radius: 16px;
    padding: 56px;
}

.lp-faq__list {
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--lite-gray);
    overflow: hidden;
    margin: 0 auto;
}

.lp-faq__item {
    max-width: 1280px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    margin: 0 auto;
}

.lp-faq__q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
}

.lp-faq__q-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.lp-faq__qa {
    width: 24px;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    font-size: 24px;
    line-height: 1;
    letter-spacing: .06em;
    background: linear-gradient(90deg, #8B7E64 0%, #D7C49D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 500;
}

.lp-faq__q-text {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-faq__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lp-faq__btn-circle {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--lite-gray);
    display: grid;
    place-items: center;
    color: var(--text);
    position: relative;
}

.lp-faq__btn-circle::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.6px solid var(--text);
    border-bottom: 1.6px solid var(--text);
    transform: rotate(45deg);
    transition: transform .22s ease;
}

.lp-faq__item.is-open .lp-faq__btn-circle::before {
    transform: translateY(2px) rotate(225deg);
}

.lp-faq__a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height .5s ease,
        opacity .4s ease,
        padding .3s ease;
    padding: 0 18px;
}

.lp-faq__item.is-open .lp-faq__a {
    display: block;
    max-height: 500px;
    opacity: 1;
    padding: 0 24px 24px;
}

.lp-faq__a-inner {
    display: grid;
    gap: 10px;
}

.lp-faq__a-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-top: 1px solid #DDDDDD;
    padding-top: 20px;
}

.lp-faq__a-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.06em;
    color: #000;
}

.lp-faq__a-list {
    margin: 0 0 0 36px;
    padding: 0;
    display: grid;
}

.lp-faq__a-list li {
    font-size: 16px;
    letter-spacing: 0.06em;
    color: #000;
}

.lp-faq__attention {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 24px;
}

@media (max-width: 1024px) {
    .lp-faq {
        padding: 80px 0 40px;
    }

    .lp-faq__inner {
        width: calc(100% - 32px);
    }

    .lp-faq__title {
        margin-left: 0;
        margin-bottom: 32px;
    }

    .lp-faq__lead {
        line-height: 1.5;
        margin-left: 0;
    }

    .lp-faq__panel {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        padding: 16px;
    }

    .lp-faq__a-head {
        gap: 8px;
    }

    .lp-faq__q {
        padding: 16px 14px;
    }

    .lp-faq__a {
        padding: 0 14px;
    }

    .lp-faq__item.is-open .lp-faq__a {
        padding: 0 14px 18px;
    }

    .lp-faq__a-list {
        margin-left: 32px;
    }

    .lp-faq__q-text {
        font-size: 16px;
        white-space: wrap;
        overflow: visible;
        text-overflow: unset;
    }

    .lp-faq__a-text,
    .lp-faq__a-list li {
        font-size: 14px;
    }

    .lp-faq__q-left {
        align-items: start;
    }

    .lp-faq__qa {
        font-size: 20px;
        margin-top: 2px;
    }
    .lp-faq__attention {
        font-size: 14px;
        padding-left: 14px;
    }
}

/* ===== CM Gallery ===== */
.lp-cm {
    padding: 88px 0 60px;
    background: #fff;
}

.lp-cm__header {
    max-width: 1386px;
    margin: 0 auto;
}

.lp-cm__panel {
    background: var(--lite-gray);
    border-radius: 16px;
    padding: 56px;
    margin-top: -44px;
}

.lp-cm__grid {
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1.4fr .53fr;
    gap: 64px;
    align-items: end;
    background: var(--lite-gray);
    border-radius: 14px;
    margin: 0 auto;
}

.lp-cm__media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.lp-cm__thumb {
    width: 880px;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transition: opacity .25s ease;
}

.lp-cm__iframe-wrap {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.lp-cm__iframe {
    width: 100%;
    height: 100%;
}

.lp-cm__media.is-playing .lp-cm__iframe-wrap {
    opacity: 1;
    pointer-events: auto;
}

.lp-cm__media.is-playing .lp-cm__thumb {
    opacity: 0;
}

.lp-cm__side {
    max-width: 336px;
    display: grid;
    gap: 18px;
}

.lp-cm__caption {
    font-size: 20px;
    color: #000;
}

.lp-cm__buttons {
    display: grid;
    gap: 14px;
}

.lp-cm__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 16px 40px;
    border: 0;
    background: #fff;
    border-radius: 999px;
    cursor: pointer;
    text-align: left;
    transition: all .3s ease;
    color: #000;
}

.lp-cm__btn:hover,
.lp-cm__btn.is-active {
    background: var(--btn-hover);
    color: #fff;
}

.lp-cm__btn-text {
    font-size: 16px;
}

.lp-cm__btn-ico {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--lite-gray);
    display: grid;
    place-items: center;
    position: relative;
}

.lp-cm__btn-ico-img {
    width: 11px;
    height: 14px;
    display: block;
    fill: var(--text);
    transform: translateX(1px);
}

.lp-cm__btn:hover .lp-cm__btn-ico,
.lp-cm__btn:hover .lp-cm__btn-ico-img,
.lp-cm__btn.is-active .lp-cm__btn-ico,
.lp-cm__btn.is-active .lp-cm__btn-ico-img {
    background: var(--subtext);
    fill: #fff
}

@media (max-width: 1024px) {
    .lp-cm__inner {
        width: calc(100% - 32px);
    }

    .lp-cm {
        padding: 80px 0 40px;
    }

    .lp-cm__title {
        margin-left: 0;
        margin-bottom: 24px;
    }

    .lp-cm__panel {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        padding: 16px;
    }

    .lp-cm__thumb {
        width: 100%;
    }

    .lp-cm__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-cm__side {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 8px;
    }

    .lp-cm__btn {
        padding: 12px 16px 12px 40px;
    }
}

/* ===== Graphic ===== */
.lp-graphic {
    padding: 108px 0 20px;
    background: #fff;
    overflow: visible
}

.lp-graphic__inner {
    margin: 0 auto;
}

.lp-graphic__header {
    position: relative;
    max-width: 1440px;
    margin: 0 auto 32px;
    z-index: 9999;
}

.lp-graphic__title {
    width: 359px;
    color: var(--subtext);
    letter-spacing: -6px;
    margin-bottom: 16px;
    margin-left: 56px;
}

.lp-graphic__panel {
    position: relative;
    overflow: visible;
    margin-top: -75px;
    margin-left: 56px;
    z-index: 0;
}

.lp-graphic__panel::before,
.lp-graphic__panel::after {
    content: "";
    position: absolute;
    width: 96.1vw;
    left: 48.1%;
    transform: translateX(-50%);
    height: 1px;
    background: #DDDDDD;
    pointer-events: none;
}

.lp-graphic__panel::before {
    top: 0;
}

.lp-graphic__panel::after {
    bottom: 0;
}

.lp-graphic__viewport {
    position: relative;
    margin-left: 0;
    width: calc(554px + 554px + 382px + 112px);
    max-width: 100%;
    margin-inline: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lp-graphic__viewport::-webkit-scrollbar {
    display: none;
}

.lp-graphic__track {
    width: max-content;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 40px 0 108px;
}

.lp-graphic__track::after {
    content: "";
    flex: 0 0 28px;
}

.lp-graphic__card {
    position: relative;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
    width: auto;
    height: fit-content;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.lp-graphic__card.is-landscape {
    width: 554px;
}

.lp-graphic__card.is-portrait {
    width: 382px;
}

.lp-graphic__card img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-graphic__nav {
    position: absolute;
    right: 24px;
    bottom: -417%;
    display: flex;
    gap: 12px;
    z-index: 2;
}

.lp-graphic__nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    outline: none;
    background: var(--lite-gray);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: none;
}

.lp-graphic__nav-btn img {
    width: 10px;
    height: auto;
}

.js-graphic-next img {
    transform: rotate(45deg);
}

.js-graphic-prev img {
    transform: rotate(225deg);
}

.lp-graphic__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
    display: grid;
    place-items: center;
}

.lp-graphic__plus {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid #fff;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.lp-graphic__plus::before,
.lp-graphic__plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    transform: translate(-50%, -50%);
}

.lp-graphic__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.lp-graphic__card:hover .lp-graphic__overlay,
.lp-graphic__card:focus-visible .lp-graphic__overlay {
    opacity: 1;
}

.lp-graphic__card:hover .lp-graphic__plus,
.lp-graphic__card:focus-visible .lp-graphic__plus {
    transform: scale(1);
}

.lp-graphic__viewport::-webkit-scrollbar {
    height: 6px;
}

.lp-graphic__viewport::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
}

.lp-graphic__viewport::-webkit-scrollbar-track {
    background: transparent;
}

@media (max-width: 980px) {
    .lp-graphic {
        padding: 80px 0 0;
    }

    .lp-graphic__card {
        width: calc((100% - 16px) / 2);
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .lp-graphic__inner {
        width: calc(100% - 32px);
    }

    .lp-graphic__title {
        margin-left: 0;
    }

    .lp-graphic__panel {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        margin-top: -45px;
    }

    .js-graphic-open {
        pointer-events: none;
        cursor: default;
    }

    .lp-graphic__viewport {
        overflow-y: visible;
        overflow-x: visible;
        margin-left: 0;
    }

    .lp-graphic__track {
        width: 100%;
        flex-direction: column-reverse;
        gap: 16px;
        padding: 24px 0;
    }

    .lp-graphic__card.is-landscape {
        width: 92%;
    }

    .lp-graphic__card.is-portrait {
        width: 65%;
    }

    .lp-graphic__card {
        width: 100%;
        flex: 0 0 100%;
    }

    .lp-graphic__nav {
        display: none;
    }
}

.lp-modal {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lp-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.lp-modal__dialog {
    position: relative;
    width: min(1100px, calc(100% - 64px));
    margin: 40px auto;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.lp-modal.is-open .lp-modal__dialog {
    transform: translateY(0);
    opacity: 1;
}

.lp-modal__content,
.lp-modal__viewport {
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.lp-modal__track {
    display: block;
    width: auto;
    transform: none !important;
    transition: none !important;
}

.lp-modal__slide {
    margin: 0;
}

.lp-modal__slide img,
.lp-modal__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 120px);
    object-fit: contain;
}

.lp-modal__nav,
.lp-modal__dots,
.lp-modal__dot {
    display: none !important;
}

.lp-modal__close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.lp-modal__close::before,
.lp-modal__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: #fff;
}

.lp-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lp-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.is-lock {
    overflow: hidden;
}


/* ===== Communication Mark ===== */
.lp-cmark {
    padding-top: 100px;
    background: #fff;
}

.lp-cmark__panel {
    max-width: 1440px;
    background: #962549;
    border-radius: 16px;
    padding: 56px;
    margin: 0 auto;
}

.lp-cmark__title {
    background: linear-gradient(90deg,
            #fff 0%,
            #ddcba9 25%,
            #d2bb8d 55%,
            #AC9C7B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -6px;
    margin-bottom: 40px;
}

.lp-cmark__content {
    display: grid;
    grid-template-columns: 540px 1fr;
    align-items: start;
    gap: 80px;
}

.lp-cmark__logo {
    background: #fff;
    border-radius: 12px;
    width: 540px;
    height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.lp-cmark__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-cmark__text {
    color: #fff;
    margin-top: 38px;
}

.lp-cmark__text h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 40px;
}

.lp-cmark__text p {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 2.5;
}

.lp-cmark__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .lp-cmark {
        padding-top: 80px;
    }

    .lp-cmark__panel {
        padding: 40px 16px;
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }

    .lp-cmark__title {
        font-size: 47px;
        letter-spacing: -3px;
        line-height: 1;
        margin-bottom: 24px;
    }

    .lp-cmark__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lp-cmark__logo {
        width: 100%;
        height: fit-content;
    }

    .lp-cmark__text h3 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .lp-cmark__text {
        font-size: 14px;
        line-height: 2;
        max-width: none;
        margin-top: 0;
    }
}


/* ===== links ===== */
.lp-links {
    margin-top: 120px;
}

.lp-links__inner {
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    padding: 64px 0;
}

.lp-links__grid {
    max-width: 1440px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 auto;
}

.lp-links__grid .lp-faculty-card__body {
    padding: 24px;
}

.lp-links__grid .lp-faculty-card__icon {
    bottom: 17px;
}

@media (max-width: 1024px) {
    .lp-links {
        margin-top: 40px;
    }

    .lp-links__inner {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        max-width: 100%;
        padding: 40px 8px;
    }

    .lp-links__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lp-links .lp-faculty-card__name {
        font-size: 16px;
    }

    .lp-links__grid .lp-faculty-card__body {
        padding: 25px 16px;
    }

    .lp-links__grid .lp-faculty-card__icon {
        right: 16px;
        bottom: 16px;
    }
}


/* ===== footer ===== */
.lp-footer {
    padding: 64px 0;
    background: #fff;
}

.lp-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.lp-footer__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.lp-footer__brand {
    flex: 0 0 auto;
}

.lp-footer__brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.lp-footer__brand-img {
    height: 64px;
    width: auto;
    display: block;
}

.lp-footer__right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.lp-footer__ctas {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.lp-footer__cta {
    position: relative;
}

.lp-footer__cta-ico {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
}

.lp-footer__cta-ico::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lp-footer__sns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

.lp-footer__sns-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    text-decoration: none;
}

.lp-footer__sns-ico {
    width: 20px;
    height: 20px;
    display: block;
}

.lp-footer__copy {
    font-size: 14px;
    font-family: var(--font-title);
    letter-spacing: 0.06em;
    color: var(--text);
    text-align: right;
    margin-top: 24px;
}

.lp-footer__right .lp-header__cta {
    padding: 12px 24px;
}

@media (max-width: 1024px) {
    .lp-footer {
        padding: 64px 0;
    }

    .lp-footer__row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .lp-footer__right {
        align-items: center;
    }

    .lp-footer__right .lp-header__cta {
        width: 264px;
        padding: 12px 24px;
    }

    .lp-footer__ctas {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .lp-footer__sns {
        justify-content: flex-start;
    }

    .lp-footer__copy {
        text-align: center;
        font-size: 11px;
    }

    .lp-footer__brand-img {
        height: 64px;
    }

    .lp-footer__sns {
        gap: 30px;
    }
}