@charset "UTF-8";
:root {
    --Black: #1B2D33;
    --white: #FFF;
    --Barlow: Barlow;
    --HiraginoKakuGothic: "Hiragino Kaku Gothic ProN";
}
html {
    font-family: var(--HiraginoKakuGothic), "Hiragino Sans", "Noto Sans JP", "M PLUS 1", -apple-system, BlinkMacSystemFont, Meiryo, sans-serif;
    font-size: calc(100vw / 375);
    color: var(--Black);
}
.pc-br {
    display: none;
}
main {
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    html {
        font-size: 1px;
    }
    .sp-br{
        display: none;
    }
    .pc-br{
        display: inline-block;
    }
}


/* coming-soon */
.coming-soon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding: 120rem 20rem 30rem;
}
.coming-soon__img {
    display: block;
    width: 200px;
    margin: 0 auto 54px;
}
.coming-soon__text {
    color: #1B2D33;
    text-align: center;
    font-family: "Hiragino Kaku Gothic ProN";
    font-size: 16px;
    font-weight: 300;
    line-height: 200%;
    letter-spacing: 1.28px;
    text-align: center;
    margin: 0 0 55px;
}
.coming-soon__copyright {
    color: #1B2D33;
    font-family: Barlow;
    font-size: 10px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.4px;
    text-align: center;
    margin: 0;
}
@media screen and (min-width: 768px) {
    .sp-br {
        display: none;
    }
    .coming-soon__img {
        width: 248px;
        margin: 0 auto 50px;
    }
    .coming-soon__text {
        font-size: 20px;
        letter-spacing: 1.6px;
        margin: 0 0 60px;
    }
}


/* ヘッダー */
.header__menu-btn {
    display: block;
    position: fixed;
    top: 20rem;
    right: 20rem;
    /* ボタンの基本設定 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #FFF);
    text-align: center;
    font-size: 20rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.8rem;
    width: 40rem;
    height: 40rem;
    border-radius: 35rem;
    margin: 0 auto;
    z-index: 1;

    /* === Liquid Glass効果の主要部分 === */
    /* 1. 半透明の背景 */
    background-color: rgba(255, 255, 255, 0.3);

    /* 2. 背景のぼかし */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    /* 3. 境界線と立体感 */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10rem 40rem 0 rgba(27, 45, 51, 0.15);
}
.header__menu-icon {
    display: block;
    width: 23rem;
}
.header__menu {
    position: fixed;
    top: 20rem;
    left: 20rem;
    width: 335rem;
    border-radius: 20rem;
    padding: 60rem 20rem 30rem;
    background: rgba(220, 227, 229, 0.35);
    box-shadow: 0 10px 20px 0 rgba(27, 45, 51, 0.15);

    /* === Liquid Glass効果の主要部分 === */
    /* 1. 半透明の背景 */
    background-color: rgba(255, 255, 255, 0.3);

    /* 2. 背景のぼかし */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    /* 3. 境界線と立体感 */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10rem 40rem 0 rgba(27, 45, 51, 0.15);
    z-index: 2;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s 0.3s;
    z-index: 2;
}
.header__menu--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s;
}
.header__menu-title {
    color: var(--Black, #1B2D33);
    font-size: 14rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 10rem;
}
.header__menu-list {
    border-radius: 10rem;
    background: var(--white, #FFF);
    padding: 10rem;
    margin-bottom: 30rem;
}
.header__menu-item {
    border-bottom: 1px solid #EBF2F5;
}
.header__menu-item:last-of-type {
    border-bottom: none;
}
.header__menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--Black, #1B2D33);
    font-size: 16rem;
    font-weight: 300;
    line-height: 100%;
    padding: 12rem 20rem;
}
.header__menu-link::after {
    display: block;
    content: '';
    background-image: url(../images/top/icon-external.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 12rem;
    height: 12rem;
}
.header__menu-sns-list {
    display: flex;
    justify-content: space-between;
    width: 160rem;
    margin: 0 auto 30rem;
}
.header__menu-sns-link {
    display: block;
    width: 40rem;
    height: 40rem;
    border-radius: 20rem;
    background-color: var(--white, #FFF);
}
.header__menu-sns-icon {
    display: block;
    width: 100%;
    margin: 0 auto;

}
.header__menu-lang-list {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.90);
    padding: 8rem;
    border-radius: 24rem;
    width: 240rem;
    min-height: 48rem;
    margin: 0 auto;
}
.header__menu-lang-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 10rem) / 2);
    border-radius: 50rem;
}
.header__menu-lang-item--active {
    background: rgba(27, 45, 51, 0.10);
}
.header__menu-lang-btn {
    color: var(--Black, #1B2D33);
    text-align: center;
    font-family: var(--Barlow);
    font-size: 14rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.56rem;
    cursor: pointer;
}
.header__menu-close-btn {
    position: absolute;
    top: 15rem;
    right: 15rem;
    display: block;
    width: 30rem;
}
.header__logo-link {
    display: block;
}
.header__logo-link--sp-none {
    display: none;
}
.header__logo {
    position: fixed;
    top: 25rem;
    left: 20rem;
    display: block;
    width: 180rem;
}
@media screen and (min-width: 768px) {
    .header__menu-btn {
        display: none;
    }
    .header__menu {
        display: flex;
        justify-content: flex-end;
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        right: 20rem;
        width: 100%;
        max-width: 1440rem;
        border-radius: 0;
        padding: 0;
        background: 0%;
        box-shadow: none;
        padding: 20rem 30rem 0;

        /* === Liquid Glass効果の主要部分 === */
        /* 1. 半透明の背景 */
        background-color: 0%;

        /* 2. 背景のぼかし */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        /* 3. 境界線と立体感 */
        border: none;
        /* z-index: 2; */
        opacity: 100%;
        visibility: visible;
    }
    .header__menu--active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: none;
        display: block;
    }
    .header__menu-section {
        position: relative;
    }
    .header__menu-title {
        display: flex;
        align-items: center;
        height: 40rem;
        border-radius: 20rem;
        padding: 10rem 16rem;
        background: rgba(220, 227, 229, 0.35);
        /* === Liquid Glass効果の主要部分 === */
        /* 1. 半透明の背景 */
        background-color: rgba(255, 255, 255, 0.3);
        /* 2. 背景のぼかし */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        /* 3. 境界線と立体感 */
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 20px 0 rgba(27, 45, 51, 0.15);
        z-index: 2;
        margin: 0 30rem 10rem 0;
        transition: background-color 0.3s ease;
    }
    .header__menu-title:hover {
        background: rgba(220, 227, 229, 0.45);
    }
    .header__menu-title::after {
        display: block;
        content: '';
        background-image: url(../images/top/icon-btn-arrow.svg);
        background-size: cover;
        background-repeat: no-repeat;
        width: 16rem;
        height: 16rem;
        margin-left: 10rem;
    }
    .header__menu-list {
        position: absolute;
        top: 50rem;
        left: 0;
        width: 219rem;
        margin-bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.3s ease-in-out,
            visibility 0s linear 0.3s;
        /* === Liquid Glass効果の主要部分 === */
        /* 1. 半透明の背景 */
        background-color: rgba(255, 255, 255, 0.9);
        /* 2. 背景のぼかし */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        /* 3. 境界線と立体感 */
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10rem 40rem 0 rgba(27, 45, 51, 0.15);
    }
    .header__menu-list--active {
        opacity: 1;
        visibility: visible;
        transition:
            opacity 0.3s ease-in-out,
            visibility 0s linear 0s;
    }
    .header__menu-item {
        border-bottom: none;
    }
    .header__menu-link {
        justify-content: center;
        transition: background-color 0.3s ease;
        border-radius: 10rem;
    }
    .header__menu-link:hover {
        background: rgba(27, 45, 51, 0.10);
    }
    .header__menu-sns-list {
        width: 144rem;
        margin: 0
    }
    .header__menu-sns-link {
        border-radius: 20rem;
        /* === Liquid Glass効果の主要部分 === */
        /* 1. 半透明の背景 */
        background-color: rgba(255, 255, 255, 0.3);
        /* 2. 背景のぼかし */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        /* 3. 境界線と立体感 */
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 20px 0 rgba(27, 45, 51, 0.15);
        transition: background-color 0.3s ease;
    }
    .header__menu-sns-link:hover {
        background: rgba(220, 227, 229, 0.45);
    }
    .header__menu-lang-list {
        width: 87rem;
        min-height: 40rem;
        height: 40rem;
        background: rgba(220, 227, 229, 0.24);
        /* === Liquid Glass効果の主要部分 === */
        /* 1. 半透明の背景 */
        background-color: rgba(255, 255, 255, 0.3);
        /* 2. 背景のぼかし */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        /* 3. 境界線と立体感 */
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 20px 0 rgba(27, 45, 51, 0.15);
        transition: background-color 0.3s ease;
        margin: 0;
    }
    .header__menu-lang-list:hover {
        background: rgba(220, 227, 229, 0.45);
    }
    .header__menu-lang-item {
        width: calc(100% / 2);
    }
    .header__menu-lang-item--active {
        background: rgba(27, 45, 51, 0.10);
    }
    .header__menu-lang-btn {
        font-size: 12rem;
        letter-spacing: 0.48rem;
    }
    .header__menu-close-btn {
        display: none;
    }
    .header__logo {
        top: 20rem;
        width: 240rem;
    }
    .header__logo-link--sp-none {
        display: block;
    }
    .header__logo-link--pc-none {
        display: none;
    }
}


/* フッター */
.footer {
    padding: 80rem 20rem 30rem;
}
.footer__logo-img {
    display: block;
    width: 292rem;
    margin: 0 auto 32rem;
}
.footer__sns-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 132rem;
    margin: 0 auto 32rem;
}
.footer__sns-item {
    width: var((100% - 24rem) / 3)
}
.footer__sns-link {
    display: block;
}
.footer__sns-img {
    display: block;
    width: 100%;
}
.footer__copyright {
    color: var(--Black, #1B2D33);
    font-family: var(--Barlow);
    font-size: 10rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.4rem;
    width: fit-content;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .footer {
        padding: 160rem 0 30rem;
    }
    .footer__logo-img {
        width: 364rem;
    }
}


/* キービジュアル */
.top__kv-body {
    width: 100%;
    margin: 0 auto;
}
.top__kv-image {
    display: block;
    width: 100%;
}


/* 会場 */
.top__place-text-block {
    padding: 80rem 0 60rem;
}
.top__place-title {
    font-size: 18rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15rem;
}
.top__place-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 36rem;
}
.top__place-list:last-of-type {
    margin-bottom: 0;
}
.top__place-item {
    font-size: 18rem;
    text-align: center;
    margin: 0 15rem 0 0;
}
.top__place-item--outdoor {
    margin-bottom: 15rem;
}
.top__place-item:last-of-type {
    margin: 0;
}
.top__place-item--outdoor:nth-last-child(2) {
    margin-right: 0;
}
@media screen and (min-width: 768px) {
    .top__place-text-block {
        padding: 80rem 0;
    }
    .top__place-title {
        font-size: 22rem;
        margin-bottom: 24rem;
    }
    .top__place-list {
        margin-bottom: 48rem;
    }
    .top__place-item {
        font-size: 22rem;
        margin-right: 20rem;
    }
    .top__place-item--outdoor:nth-last-child(2) {
        margin-right: 20rem;
    }
}


/* プロモーション・アンバサダー就任決定 */
.top__ambassador-body {
    padding: 60rem 0 60rem;
}
.top__ambassador-title-block {
    position: relative;
    padding: 0 20rem;
    margin-bottom: 50rem;
}
.top__ambassador-h2-text-block {
    position: relative;
}
.top__ambassador-new-icon {
    position: absolute;
    top: -20rem;
    left: 86rem;
    display: block;
    width: 40rem;
}
.top__ambassador-h2-text {
    color: var(--Black, #1B2D33);
    text-align: center;
    font-size: 18rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.44rem;
    margin-bottom: 10rem;
}
.top__ambassador-h2-title {
    color: var(--Black, #1B2D33);
    text-align: center;
    font-size: 20rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.6rem;
    margin-bottom: 40rem;
}
.top__ambassador-h2-title--strong {
    font-size: 22rem;
    letter-spacing: 2.08rem;
}
.top__ambassador-description {
    color: var(--Black, #1B2D33);
    font-size: 18rem;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 1.44rem;
}
.top__ambassador-item {
    margin-bottom: 60rem;
}
.top__ambassador-item:last-of-type {
    margin-bottom: 0;
}
.top__ambassador-item-image {
    display: block;
    width: 100%;
    margin-bottom: 20rem;
}
.top__ambassador-item-info {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto 24rem;
}
.top__ambassador-item-name {
    color: var(--Black, #1B2D33);
    text-align: center;
    font-size: 20rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.8rem;
}
.top__ambassador-item-name-reading {
    color: var(--Black, #1B2D33);
    text-align: center;
    font-size: 12rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.48rem;
}
.top__ambassador-item-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200rem;
    min-height: 40rem;
    border-radius: 20rem;
    padding: 10rem 16rem;
    background: rgba(220, 227, 229, 0.35);
    box-shadow: 0 10px 20px 0 rgba(27, 45, 51, 0.15);
    margin: 0 auto;
}
.top__ambassador-item-button-text {
    position: relative;
    color: var(--Black, #1B2D33);
    text-align: center;
    font-size: 14rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.56rem;
    padding-left: 26rem;
    width: fit-content;
}
.top__ambassador-item-button-text::before {
    position: absolute;
    top: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: url(../images/top/icn_people.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 16rem;
    height: 16rem;
}
/* モーダル */
.screen-black{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(27, 45, 51, .84);
    z-index: 1;
    min-height: 100vh;
    min-width: 100vw;
    display: none;
}
.screen-black--visible{
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.cancel-scroll{
    overflow-y: hidden;
    height: 100vh;
}
.top__ambassador-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 10rem;
    padding: 48rem 20rem 20rem;
    margin: 40rem 10rem;
    height: calc(100vh - 80rem);
    max-height: 700rem;
}
.top__ambassador-modal-item {
    display: none;
}
.top__ambassador-modal-item--active {
    display: block;
}
.top__ambassador-modal-item-image {
    display: block;
    width: 200rem;
    margin: 0 auto 30rem;
}
.top__ambassador-modal-item-name {
    font-size: 20rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.8rem;
    margin-bottom: 20rem;
}
.top__ambassador-modal-item-name--ruby {
    font-size: 14rem;
    letter-spacing: 0.56rem;
}
.top__ambassador-modal-item-description {
    font-size: 14rem;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.56rem;
    width: 100%;
    height: calc(100vh - 534rem);
    overflow: scroll;
    margin-bottom: 26rem;
}
.top__ambassador-modal-item-description::-webkit-scrollbar {
    /* スクロールバー全体の幅（縦スクロールの場合）または高さ（横スクロールの場合）を設定 */
    width: 8rem;
    height: 100%;
}
.top__ambassador-modal-item-description::-webkit-scrollbar-track {
    /* トラック（スクロールバーの背景部分）のスタイル */
    background: transparent;
    border-radius: 4rem;
}
.top__ambassador-modal-item-description::-webkit-scrollbar-thumb {
    /* サム（ドラッグするつまみ部分）のスタイル */
    background: #91A2A8;
    border-radius: 4rem;
}
.top__ambassador-modal-item-logo {
    display: block;
    width: 146rem;
}
.top__ambassador-modal-item-button {
    position: absolute;
    top: 10rem;
    right: 10rem;
    width: 60rem;
    height: 60rem;
}
.top__ambassador-modal-item-button-image {
    position: absolute;
    top: -11rem;
    right: 20rem;
    width: 100rem;
    height: 100rem;
    display: block;
    background-image: url(../images/top/modal-close.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.top__ambassador-modal-item-button-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/top/modal-close-hover.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.top__ambassador-modal-item-button-image:hover::after {
    opacity: 1;
}
@media screen and (min-width: 768px) {
    .top__ambassador-body {
        max-width: 1440rem;
        padding: 80rem 0 60rem;
        margin: 0 auto;
    }
    .top__ambassador-title-block {
        max-width: 906rem;
        margin: 0 auto 50rem;
    }
    .top__ambassador-new-icon {
        top: -10rem;
        left: 192rem;
    }
    .top__ambassador-h2-text-block {
        width: fit-content;
        margin: 0 auto;
    }
    .top__ambassador-new-icon {
        left: -74rem;
        width: 54rem;
    }
    .top__ambassador-h2-text {
        font-size: 32rem;
        letter-spacing: 2.56rem;
        width: fit-content;
    }
    .top__ambassador-h2-title {
        font-size: 40rem;
        letter-spacing: 3.2rem;
    }
    .top__ambassador-h2-title--strong {
        font-size: 32rem;
        letter-spacing: 3.2rem;
    }
    .top__ambassador-description {
        font-size: 22rem;
        letter-spacing: 1.76rem;
        text-align: center;
    }
    .top__ambassador-list {
        display: flex;
    }
    .top__ambassador-item {
        width: calc(100% / 3);
        margin-bottom: 0;
    }
    .top__ambassador-item-image {
        margin-bottom: 40rem;
    }
    .top__ambassador-item-name {
        font-size: 24em;
        letter-spacing: 0.96rem;
    }
    .top__ambassador-item-name-reading {
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    /* モーダル */
    .top__ambassador-modal-content {
        width: 780rem;
        height: 520rem;
        max-height: 520rem;
        padding: 48rem 60rem 70rem;
        margin: 0 auto;
    }
    .top__ambassador-modal-item-image {
        width: 240rem;
        margin: 0 36rem 0 0;
    }
    .top__ambassador-modal-item--active {
        display: flex;
    }
    .top__ambassador-modal-item-name {
        font-size: 24rem;
        letter-spacing: 0.96rem;
    }
    .top__ambassador-modal-item-name--ruby {
        font-size: 16rem;
        letter-spacing: 0.64rem;
    }
    .top__ambassador-modal-item-description {
        font-size: 16rem;
        letter-spacing: 0.64rem;
        height: 338rem;
    }
    .top__ambassador-modal-item-button {
        top: -80rem;
        right: 0;
    }
}


/* プロモーション・アンバサダー就任コメント */
.top__comment-body {
    padding: 60rem 0 80rem;
}
.top__comment-list {
    padding: 20rem;
    border-radius: 20rem;
    background: rgba(27, 45, 51, 0.02);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    margin: 30rem 25rem 0;
}
.top__comment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48rem;
    border-radius: 24rem;
    margin-bottom: 10rem;
    background: rgba(46, 50, 51, 0.02);
}
.top__comment-item--active {
    background: var(--logo_blue, #0099CB);
    cursor: auto;
}
.top__comment-item--active > .top__comment-item-button {
    color: #FFF;
}
.top__comment-item:last-of-type {
    margin-bottom: 0;
}
.top__comment-item-button {
    color: var(--Black, #1B2D33);
    text-align: center;
    font-size: 16rem;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.64rem;
    width: 100%;
    height: 100%;
}
.top__comment-thumbnail {
    position: relative;
    width: 100%;
}
.top__comment-thumbnail--hidden {
    display: none;
}
.top__comment-thumbnail-btn-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58rem;
}
.top__comment-thumbnail-img {
    display: block;
    width: 100%;
    cursor: pointer;
}
.top__comment-youtube-block {
    display: none;
}
.top__comment-youtube-block--active {
    display: block;
}
.top__comment-youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}
.top__comment-youtube-item {
    display: none;
}
.top__comment-youtube-item--active {
    display: block;
}
@media screen and (min-width: 768px) {
    .top__comment-body {
        padding: 60rem 0 120rem;
    }
    .top__comment-list {
        display: flex;
        justify-content: space-between;
        max-width: 996rem;
        border-radius: 100rem;
        margin: 30rem auto 0;
    }
    .top__comment-item {
        width: calc((100% - 56rem) / 3);
        height: 70rem;
        border-radius: 35rem;
        margin-bottom: 0;
        background: rgba(55, 60, 61, 0.04);
    }
    .top__comment-item--active {
        background: var(--logo_blue, #0099CB);
    }
    .top__comment-item-button {
        font-size: 20rem;
        line-height: 100%;
        letter-spacing: 0.8rem;
    }
    .top__comment-thumbnail {
        max-width: 1068rem;
        margin: 0 auto;
    }
    .top__comment-thumbnail-btn-img {
        width: 100rem;
    }
    .top__comment-youtube-item {
        max-width: 1068rem;
        margin: 0 auto;
    }
}


/* 開催にあたって */
.top__greeting-body {
    padding: 80rem 0;
}
.top__greeting-content {
    padding: 0 20rem;
}
.top__greeting-image {
    display: block;
    width: 228rem;
    margin: 0 auto 30rem;
}
.top__greeting-h2-title {
    text-align: center;
    font-size: 22rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.88rem;
    margin-bottom: 30rem;
}
.top__greeting-text {
    font-size: 16rem;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.64rem;
    margin-bottom: 24rem;
}
.top__greeting-position-text {
    font-size: 14rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.12rem;
}
.top__greeting-mname-text {
    font-size: 20rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.6rem;
}
.top__greeting-mname-text--ruby {
    font-size: 14rem;
    letter-spacing: 1.12rem;
}
@media screen and (min-width: 768px) {
    .top__greeting-body {
        max-width: 1068rem;
        padding: 120rem 0;
        margin: 0 auto;
    }
    .top__greeting-content {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .top__greeting-image {
        width: 332rem;
        margin: 0;
    }
    .top__greeting-text-block {
        padding: 0 60rem;
    }
    .top__greeting-h2-title {
        font-size: 28rem;
        letter-spacing: 1.12rem;
    }
}


/* 開催決定・応募受付開始 */
.top__competition-content-block {
    display: block;
    background-image: url(../images/top/competition-bg-sp.jpg);
    width: 100%;
    height: 1525rem;
    background-size: cover;
}
.top__competition-body {
    padding: 80rem 0;
}
.top__competition-content {
    padding: 0 20rem;
}
.top__competition-image {
    display: block;
    width: 180rem;
    margin: 0 auto 24rem;
}
.top__competition-title-block {
    margin-bottom: 40rem;
}
.top__competition-title {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 20rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: -0.2rem;
    margin-bottom: 24rem;
}
.top__competition-subtitle {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 20rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.6rem;
    margin-bottom: 30rem;
}
.top__competition-competition-title {
    color: var(--white, #FFF);
    font-family: var(--Barlow);
    text-align: center;
    font-size: 20rem;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 1.6rem;
    margin-bottom: 10rem;
}
.top__competition-competition-title--ruby {
    font-size: 16rem;
    letter-spacing: 1.28rem;
    font-weight: 300;
    margin-bottom: 40rem;
}
.top__competition-banner {
    display: block;
    width: 240rem;
    margin: 0 auto;
}
.top__competition-judging-flow-title {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 18rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.44rem;
    margin-bottom: 16rem;
}
.top__competition-step-list {
    padding: 24rem 20rem;
    border: 1px solid var(--white, #FFF);
    border-radius: 20rem;
    background: rgba(27, 45, 51, 0.10);
    margin-bottom: 20rem;
}
.top__competition-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16rem;
}
.top__competition-step-item:last-of-type {
    margin-bottom: 0;
}
.top__competition-step-item::after {
    display: block;
    content: '';
    background-image: url(../images/top/icon-triangle.svg);
    width: 20rem;
    height: 10rem;
}
.top__competition-step-item:last-of-type::after {
    display: none;
}
.top__competition-step-title {
    color: var(--white, #FFF);
    text-align: center;
    font-family: var(--Barlow);
    font-size: 14rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 1.12rem;
    margin: 4rem;
}
.top__competition-step-description {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 16rem;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 1.28rem;
    margin-bottom: 4rem;
}
.top__competition-award-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28rem 20rem;
    border-radius: 20rem;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.top__competition-award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20rem;
}
.top__competition-award-item:last-of-type {
    margin-bottom: 0;
}
.top__competition-award-title {
    display: flex;
    align-items: center;
    color: var(--white, #FFF);
    text-align: center;
    font-size: 18rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 1.44rem;
    margin-bottom: 8rem;
}
.top__competition-award-title::before,
.top__competition-award-title::after {
    display: block;
    content: '';
    background-image: url(../images/top/award-decoration.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 28rem;
    height: 52rem;
}
.top__competition-award-title::before {
    margin-right: 10rem;
}
.top__competition-award-title::after {
    transform: scaleX(-1);
    margin-left: 10rem;
}
.top__competition-award-subtitle {
    color: var(--white, #FFF);
    font-size: 16rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 1.28rem;
    margin-bottom: 8rem;
}
.top__competition-award-quantity {
    color: var(--white, #FFF);
    font-size: 14rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 1.12rem;
}
.top__competition-detail-link {
    /* ボタンの基本設定 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #FFF);
    text-align: center;
    font-size: 20rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.8rem;
    width: 300rem;
    height: 70rem;
    border-radius: 35rem;
    margin: 30rem auto 0;

    /* === Liquid Glass効果の主要部分 === */
    /* 1. 半透明の背景 */
    background-color: rgba(255, 255, 255, 0.3);

    /* 2. 背景のぼかし (必須) */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    /* 3. 境界線と立体感 */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10rem 40rem 0 rgba(27, 45, 51, 0.15);
}
@media screen and (min-width: 768px) {
    .top__competition-content-block {
        background-image: url(../images/top/competition-bg-pc.jpg);
        width: 100%;
        height: 1664rem;
    }
    .top__competition-body {
        padding: 120rem 20rem;
    }
    .top__competition-content {
        padding: 0;
    }
    .top__competition-image {
        width: 240rem;
        margin: 0 auto 32rem;
    }
    .top__competition-title-block {
        margin-bottom: 50rem;
    }
    .top__competition-title {
        font-size: 40rem;
        letter-spacing: 2.56rem;
    }
    .top__competition-subtitle {
        font-size: 26rem;
        letter-spacing: 2.08rem;
    }
    .top__competition-competition-title {
        font-size: 24rem;
        letter-spacing: 1.92rem;
    }
    .top__competition-competition-title--ruby {
        font-size: 18rem;
        margin-bottom: 50rem;
    }
    .top__competition-banner {
        width: 380rem;
    }
    .top__competition-step-list {
        width: 700rem;
        margin: 0 auto 20rem;
    }
    .top__competition-step-description {
        font-size: 20rem;
        letter-spacing: 1.6rem;
    }
    .top__competition-award-list {
        padding: 28rem 36rem;
        width: 588rem;
        margin: 0 auto;
    }
    .top__competition-award-item {
        margin-bottom: 28rem;
    }
    .top__competition-award-title {
        font-size: 20rem;
        letter-spacing: 2.08rem;
    }
    .top__competition-award-subtitle {
        font-size: 26rem;
        letter-spacing: 2.8rem;
    }
}


/* 応募要項 */
.guidelines {
    max-width: 960rem;
    margin: 0 auto;
}
.guidelines__container {
    padding: 120rem 20rem 0;
}
.guidelines__heading {
    font-size: 18rem;
    margin-bottom: 20rem;
    font-weight: 600;
}
.guidelines__text {
    font-size: 16rem;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.64rem;
}
.guidelines__section {
    margin-bottom: 40rem;
}
.guidelines__section:last-of-type {
    margin: 0;
}
.description-list__term {
    font-size: 16rem;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.64rem;
    margin-bottom: 10rem;
}
.description-list__detail {
    font-size: 16rem;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.64rem;
    margin-bottom: 15rem;
}
.list__label {
    margin-bottom: 10rem;
}
.guidelines__text--mb {
    margin-bottom: 10rem;
}
.guidelines__list {
    margin-bottom: 10rem;
}
.guidelines__item {
    font-size: 16rem;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.64rem;
}
.guidelines__item--award {
    margin-bottom: 10rem;
}
.step-list__link {
    display: block;
    color: var(--Black, #1B2D33);
    overflow-wrap: break-word;
    text-decoration: underline;
    margin-bottom: 10rem;
    margin-bottom: 15rem;
}
.guidelines__title {
    font-size: 22rem;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 1.6rem;
    margin-bottom: 40rem;
}
.guidelines__back-to-top {
    display: block;
    color: var(--Black, #1B2D33);
    font-size: 16rem;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0.64rem;
    padding-top: 60rem;
    text-decoration: underline;
}
@media screen and (min-width: 768px) {
    .guidelines__container {
        padding: 180rem 20rem 0;
    }
    .guidelines__heading {
        font-size: 24rem;
    }
    .guidelines__text {
        font-size: 22rem;
    }
    .guidelines__section {
        margin-bottom: 60rem;
    }
    .guidelines__section:last-of-type {
        margin: 0;
    }
    .description-list__term {
        font-size: 22rem;
        margin-bottom: 15rem;
    }
    .description-list__detail {
        font-size: 22rem;
        margin-bottom: 20rem;
    }
    .guidelines__text--mb {
        margin-bottom: 20rem;
    }
    .guidelines__item {
        font-size: 22rem;
    }
    .step-list__link {
        margin-bottom: 20rem;
    }
    .step-list__link:hover {
        text-decoration: none;
    }
    .guidelines__title {
        font-size: 32rem;
        margin-bottom: 60rem;
    }
    .guidelines__back-to-top {
        font-size: 22rem;
        padding-top: 80rem;
    }
    .guidelines__back-to-top:hover {
        text-decoration: none;
    }
}