/* top.css */

/* ========================================
   ページ全体ラッパー
======================================== */
.p-teaser {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ========================================
   ロゴ
======================================== */
.p-logo {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.p-logo__img {
    width: 180px;
    height: auto;
    display: inline-block;
}

/* ========================================
   キャッチコピー
======================================== */
.p-catch {
    text-align: center;
    margin-bottom: 72px;
}

.p-catch__jp {
    margin-bottom: 48px;
}

.p-catch__jp p {
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--color-text);
    line-height: 2.2;
}

.p-catch__en p {
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--color-text-sub);
    line-height: 2.2;
}

/* ========================================
   メインビジュアル
======================================== */
.p-visual {
    margin-bottom: 64px;
}

.p-visual__img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   情報セクション
======================================== */
.p-info {
    margin-bottom: 80px;
}

.p-info__block {
    margin-bottom: 60px;
}

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

.p-info__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-info__item {
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--color-text);
    line-height: 1.8;
}

.p-info__item--en {
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
}

.p-info__item--group-start {
    margin-top: 40px;
}

.p-info__item a {
    color: inherit;
}

.p-info__item a:hover {
    opacity: 0.6;
}

.p-info__separator {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    margin: 36px 0;
}

/* ========================================
   QRセクション
======================================== */
.p-qr {
    padding-bottom: 100px;
}

.p-qr__list {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.p-qr__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-qr__item a:hover{
   opacity: 0.8;
}
.p-qr__label-jp {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    color: var(--color-text);
    margin-bottom: 14px;
    text-align: center;
}

.p-qr__code {
    width: 140px;
    height: 140px;
    display: block;
    margin-bottom: 14px;
}

.p-qr__code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.p-qr__label-en {
    font-family: var(--font-en);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    color: var(--color-text-sub);
    text-align: center;
}

/* ========================================
   フェードインアニメーション
   JS有効時のみ opacity:0 スタート（.js-enabled を body に付与して制御）
======================================== */
.js-enabled .js-fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-enabled .js-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   レスポンシブ
======================================== */
@media screen and (max-width: 768px) {
    .p-teaser {
        padding: 0 24px;
    }

    .p-logo {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .p-logo__img {
        width: 120px;
    }

    .p-catch {
        margin-bottom: 48px;
    }

    .p-catch__jp {
        margin-bottom: 32px;
    }

    .p-catch__jp p {
        font-size: 0.9375rem;
        letter-spacing: 0.1em;
    }

    .p-catch__en p {
        font-size: 0.9375rem;
    }

    .p-visual {
        margin-bottom: 40px;
    }

    .p-info {
        margin-bottom: 56px;
    }

    .p-info__item {
        font-size: 0.875rem;
    }

    .p-info__item--en {
        font-size: 0.875rem;
    }

    .p-qr__list {
        gap: 48px;
    }

    .p-qr__code {
        width: 110px;
        height: 110px;
    }

    .p-qr {
        padding-bottom: 64px;
    }
}
