/* ============================================================
   1sec.coffee ページ
   ============================================================ */
.onesec-page {
    background: var(--cream);
}

/* vivaso.cssと共通の見出しクラス */
.vv-headline-64 {
    font-family: var(--font-mincho);
    font-size: clamp(28px, 3.75vw, 54px);
    font-weight: 500;
    line-height: 1.8;
    color: var(--black);
}

/* ============================================================
   HERO  bg:cream
   ============================================================ */
.os-hero {
    background: var(--cream);
    min-height: 788px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 140px 80px 80px;
}

/* 背景写真（右端から左80pxを除いた領域に配置） */
.os-hero__bg-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: calc(100% - 80px);
    object-fit: cover;
    object-position: left top;
}

/* テキストブロック */
.os-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 628px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

/* キャッチコピー */
.os-hero__catch {
    font-family: var(--font-mincho);
    font-size: clamp(18px, 2.2vw, 32px);
    font-weight: 800;
    line-height: 2;
    color: var(--black);
}

/* ロゴ画像 */
.os-hero__logo-img {
    width: min(317px, 100%);
    height: auto;
    object-fit: contain;
}

/* デコ正方形（hero内で絶対配置、overflow:hiddenでクリップ） */
.os-sq {
    position: absolute;
    width: 57px;
    height: 57px;
    border-radius: 8px;
    background: #364457;
}
.os-sq--1 { left: 485px; top: 445px; opacity: 0.3; }
.os-sq--2 { left: 556px; top: 515px; opacity: 0.6; }
.os-sq--3 { left: 467px; top: 572px; opacity: 0.8; }
.os-sq--4 { left: 380px; top: 614px; opacity: 0.9; }
.os-sq--5 { left: 495px; top: 651px; opacity: 0.95; }
.os-sq--6 {
    left: 605px;
    top: 734px;
    border-radius: 8px 8px 0 0;
    opacity: 1;
}

/* ============================================================
   CONCEPT  bg:#364457  arch-top
   ============================================================ */
.os-concept {
    background: #364457;
    border-radius: 280px 280px 0 0;
    padding: 64px 0 120px;
    overflow: hidden;
}

/* セクションヘッド */
.os-concept__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 180px 0 0;
    width: 600px;
    max-width: 1440px;
    margin: 0 auto 80px;
}

/* ラベル下の線 */
.os-concept__head-line {
    width: 163px !important;
}

/* Block1: 左テキスト + 右動画（横並び） */
.os-concept__block1 {
    display: flex;
    align-items: flex-start;
    gap: clamp(40px, 5vw, 80px);
    padding-left: 80px;
}

/* 左：テキストエリア */
.os-concept__block1-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
    max-width: 860px;
}

/* 見出し・本文を白に */
.os-concept .vv-headline-64 {
    color: #F5F0E8;
}

.os-concept__body {
    color: #F5F0E8;
}
.os-concept__body p { margin-bottom: 0; }

/* 右：動画エリア */
.os-concept__media {
    flex-shrink: 0;
    width: clamp(300px, 33vw, 479px);
    aspect-ratio: 479 / 327;
    overflow: hidden;
}

.os-concept__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Block2: 右寄せテキスト */
.os-concept__block2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
    max-width: 831px;
    margin-left: auto;
    margin-top: 80px;
    padding-right: 80px;
}

.os-concept__block2-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.os-concept__body2 {
    color: #F5F0E8;
}
.os-concept__body2 p { margin-bottom: 0; }

/* テイストカード */
.os-taste {
    background: #F5F0E8;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    color: #364457;
    white-space: nowrap;
    align-self: flex-end;
}

.os-taste__name {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    flex-shrink: 0;
}

.os-taste__chart {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    white-space: nowrap;
}

/* ============================================================
   STORE  bg:#F5F0E8  arch-top
   ============================================================ */
.os-store {
    background: var(--cream);
    padding: 64px 80px 100px;
}

/* セクションヘッド（右寄せ） */
.os-store__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0px 0 180px;
    width: 440px;
    max-width: 1440px;
    margin: 0 auto 80px;
}

/* ラベル下の線 */
.os-store__head-line {
    width: 100% !important;
}

/* コンテンツ行（ロゴ＋店舗情報） */
.os-store__content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* 店舗ロゴ */
.os-store__logo {
    width: min(350px, 100%);
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* 店舗情報ブロック */
.os-store__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    min-width: 280px;
}

/* 店舗名行 */
.os-store__name-row {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.os-store__name {
    font-family: var(--font-mincho);
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

/* 説明文 */
.os-store__desc {
    width: 100%;
}
.os-store__desc p { margin-bottom: 0; }

/* YouTubeリンク行 */
.os-store__yt {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.os-store__yt-icon {
    width: 30px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ============================================================
   共通：リンク行（URL + 矢印アイコン）
   ============================================================ */
.os-link-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.os-link-url {
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #364457;
    text-decoration: underline;
    word-break: break-all;
}

/* ダーク背景上のURLは cream */
.os-link-url--light {
    color: #F5F0E8;
}

.os-link-arrow {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ============================================================
   ONLINE STORE / CONTACT  bg:#1F2022
   ============================================================ */
.os-links {
    background: #1F2022;
    padding: 32px 0;
    margin-bottom: 100px;
}

.os-links__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 共通カラム */
.os-links__col {
    display: flex;
    flex-direction: column;
    gap: 44px;
    padding: 0 24px;
    min-height: 397px;
    flex: 1;
    min-width: min(480px, 100%);
}

/* 右カラム：コンタクト（border-left） */
.os-links__col--contact {
    border-left: 1px solid #fff;
    max-width: 624px;
}

/* カラムヘッド */
.os-links__col-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* カラムヘッド内のlabel-wrapを中央揃えに上書き */
.os-links__col-head .section-head__label-wrap {
    align-items: center;
}

/* EC一覧 */
.os-links__ec-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 576px;
}

/* 各ECアイテム */
.os-links__ec-item {
    display: flex;
    gap: 32px;
    align-items: flex-end;
}

/* ECサービス名 */
.os-links__ec-name {
    font-family: var(--font-mincho);
    font-size: 18px;
    font-weight: 700;
    color: #F5F0E8;
    white-space: nowrap;
    line-height: normal;
}

/* EC内リンクURL */
.os-links__ec-item .os-link-url {
    white-space: nowrap;
    word-break: normal;
}

/* コンタクト本文ブロック */
.os-links__contact-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.os-links__contact-text {
    color: #F5F0E8;
    width: 100%;
}
.os-links__contact-text p { margin-bottom: 0; }

/* CTAボタン */
.os-links__cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #0E9A8F;
    padding: 12px 44px;
    border-radius: 32px;
    color: #F5F0E8;
    text-decoration: none;
    transition: background 0.2s;
}
.os-links__cta:hover { background: #0B8A80; }

.os-links__cta span {
    font-family: var(--font-jp);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
    text-align: center;
}

.os-links__cta img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ============================================================
   SP（〜768px）
   ============================================================ */
@media (max-width: 768px) {
    /* HERO */
    .os-hero {
        min-height: auto;
        padding: 120px 16px 60px;
    }

    .os-hero__bg-img {
        width: 100%;
        opacity: 0.25;
        right: -10px;
        height: 50%;
    }

    .os-hero__catch {
        font-size: clamp(16px, 2.2vw, 32px);
    }

    .os-hero__inner {
        max-width: 100%;
    }

    /* CONCEPT */
    .os-concept {
        border-radius: 60px 60px 0 0;
        padding: 48px 0 64px;
    }

    .os-concept__head {
        width: 100%;
        padding: 0 16px;
    }

    .os-concept__block1 {
        flex-direction: column-reverse;
        padding: 0 16px;
        gap: 32px;
    }

    .os-concept__media {
        width: 100%;
    }

    .os-concept__block1-text {
        padding-top: 0;
    }

    .os-concept__block2 {
        margin-top: 48px;
        padding: 0 16px;
        max-width: 100%;
        align-items: stretch;
    }

    .os-taste {
        align-self: stretch;
        justify-content: flex-start;
        white-space: normal;
        flex-direction: column;
        gap: 16px;
    }

    /* STORE */
    .os-store {
        padding: 48px 16px 64px;
    }

    .os-store__name {
        line-height: 1.5;
    }

    .os-store__head {
        width: 100%;
        padding: 0;
    }

    .os-store__content {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .os-store__logo {
        width: min(240px, 100%);
    }

    .os-store__yt {
        flex-wrap: nowrap;
    }

    .os-link-row {
        flex-wrap: nowrap;
    }

    /* LINKS */
    .os-links__col {
        padding: 0 0 12px 0;
    }

    .os-links__col--contact {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 32px;
    }

    .os-links__cta {
        width: 100%;
        justify-content: center;
    }

    .os-links__ec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .os-links__ec-item .os-link-url {
        white-space: normal;
        word-break: break-all;
    }
}
