/* =========================================================
   /info/about  「私たちについて」LP
   デザイン元: Info/ 配下のカンプ画像
   本文はすべてテキストで持ち、画像は写真・装飾・英字ワードマークのみ。
   ========================================================= */

.about-lp {
    --lp-bg: #ffd8fc;
    /* ページ全体の背景ピンク */
    --lp-panel: #ffe7fd;
    /* ブロブ・カードの薄ピンク */
    --lp-navy: #2e4485;
    /* 見出し・本文のネイビー */
    --lp-navy-soft: #4a5a9f;
    /* CTA・サブテキスト */
    --lp-cyan: #46b6de;
    --lp-pink: #ff8bc9;
    --lp-catch: #d9a8e0;
    /* storyのキャッチコピー */

    background: var(--lp-bg);
    color: var(--lp-navy);
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    line-height: 1.9;
    overflow-x: hidden;
}

.about-lp .about-inner {
    width: min(100% - 2.5rem, 860px);
    margin-inline: auto;
}

/* 画像の共通リセット。個別クラスでのサイズ指定が必ず勝つよう :where() で詳細度を0にする */
:where(.about-lp img) {
    max-width: 100%;
    height: auto;
}

.about-lp p {
    margin: 0;
}

/* ---------- セクション共通 ---------- */
.about-section {
    padding-block: clamp(3.5rem, 9vw, 6rem);
}

/* 後続セクションのブロブ（::before）に隠れないよう重ね順を上げる */
.about-heading {
    position: relative;
    z-index: 1;
    margin: 0 0 clamp(2rem, 5vw, 3rem);
    text-align: center;
    line-height: 1;
}

/* ワードマークは元画像の縦横比のまま、幅で大きさを制御する。
   （.about-lp img の height:auto の方が詳細度が高く、height指定は効かないため） */
.about-heading__mark {
    display: block;
    margin-inline: auto;
    width: auto;
}

/* "How to Use" は横に長いため、狭い画面では幅基準で縮める（SPの上限は後述） */
.about-heading__mark--wide {
    max-width: 100%;
}

.about-heading__sub {
    display: block;
    margin-top: 0.9rem;
    font-size: clamp(0.9rem, 2.6vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* =========================================================
   ヒーロー
   ========================================================= */
.about-hero {
    padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(3rem, 8vw, 5rem);
    text-align: center;
}

.about-hero__title {
    margin: 0;
}

.about-hero__logo {
    width: min(100%, 480px);
    height: auto;
}

.about-hero__lead {
    margin-top: 1rem;
    font-size: clamp(1rem, 3.2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.about-hero__visual {
    position: relative;
    margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.about-hero__bottles {
    display: block;
    width: min(100%, 620px);
    margin-inline: auto;
}

/* 監修バッジ（青いブロブ＋テキスト） */
.about-hero__seal {
    position: absolute;
    top: -1.5rem;
    right: 0;
    width: clamp(88px, 20vw, 122px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.about-hero__seal img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-hero__seal-text {
    position: relative;
    color: #fff;
    font-size: clamp(0.6rem, 1.9vw, 0.8rem);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.about-hero__catch {
    margin-top: clamp(1.25rem, 4vw, 2rem);
    color: var(--lp-navy);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 3.4vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

/* =========================================================
   About（有機的なブロブの上に本文）
   ========================================================= */
.about-blob {
    position: relative;
    display: grid;
    place-items: center;
    padding: clamp(2.5rem, 7vw, 4rem) clamp(1rem, 4vw, 2.5rem);
}

/* ブロブはCSSで描画（画像化するとテキストと重ねた時に位置がずれるため） */
.about-blob::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: min(112%, 780px);
    aspect-ratio: 10 / 8;
    background: var(--lp-panel);
    border-radius: 62% 38% 46% 54% / 54% 60% 40% 46%;
}

.about-blob__body {
    position: relative;
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.25rem);
    text-align: center;
    font-size: clamp(0.9rem, 2.9vw, 1.05rem);
}

/* =========================================================
   CTA
   ========================================================= */
.about-cta {
    position: relative;
    z-index: 2;
    padding-block: clamp(1.5rem, 5vw, 2.5rem);
}

.about-cta--mid {
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.about-cta__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2.5rem);
}

.about-cta__inner--single {
    justify-content: flex-end;
}

/* ラベルが長い・端末の文字サイズが大きい場合でも矢印が押し出されて
   見切れないよう、テキスト側だけを縮ませる */
.about-cta__link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 0.85rem;
    color: var(--lp-navy);
    font-size: clamp(0.85rem, 2.6vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.about-cta__link>span {
    min-width: 0;
    white-space: nowrap;
}

.about-cta__arrow {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border: 1px solid var(--lp-navy-soft);
    border-radius: 50%;
    color: var(--lp-navy-soft);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.about-cta__link:hover {
    opacity: 0.75;
}

.about-cta__link:hover .about-cta__arrow {
    background: var(--lp-navy-soft);
    color: #fff;
}

.about-cta__link:focus-visible {
    outline: 2px solid var(--lp-navy);
    outline-offset: 4px;
    border-radius: 4px;
}

/* =========================================================
   How to Use（3カラムカード）
   ========================================================= */
.about-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 2.5vw, 1.25rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: clamp(2.75rem, 6vw, 3.25rem) clamp(0.75rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
    background: var(--lp-panel);
    text-align: center;
}

/* 番号バッジはカード上辺にまたがる */
.about-step__no {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% -50%;
    width: clamp(48px, 10vw, 66px);
    height: auto;
}

.about-step__title {
    margin: 0;
    font-size: clamp(0.9rem, 2.6vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.about-step__icon {
    width: auto;
    object-fit: contain;
}

.about-step__body {
    display: grid;
    gap: 1.4rem;
    font-size: clamp(0.75rem, 2.2vw, 0.9rem);
    line-height: 1.85;
}

/* =========================================================
   story
   ========================================================= */
.about-story__catch {
    position: relative;
    z-index: 1;
    margin-bottom: clamp(-1rem, -2vw, -0.5rem);
    color: var(--lp-catch);
    font-size: clamp(1.15rem, 4.6vw, 1.9rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.6;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.about-circle {
    position: relative;
    display: grid;
    place-items: center;
    padding: clamp(3rem, 8vw, 4.5rem) clamp(1rem, 4vw, 2rem);
}

.about-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: min(118%, 640px);
    aspect-ratio: 1;
    background: var(--lp-panel);
    border-radius: 50%;
}

.about-circle__body {
    position: relative;
    display: grid;
    gap: clamp(1.35rem, 3.5vw, 1.9rem);
    text-align: center;
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
}

.about-circle__strong {
    font-weight: 700;
}

/* =========================================================
   profile
   ========================================================= */
.about-profile__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 3vw, 1.75rem);
    align-items: start;
}

.about-profile__photo {
    width: clamp(120px, 24vw, 188px);
    height: auto;
    object-fit: cover;
}

.about-profile__name {
    margin: 0.25rem 0 0;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.about-profile__label {
    margin: 1.35rem 0 0.6rem;
    font-size: clamp(0.8rem, 2.4vw, 0.9rem);
    font-weight: 700;
}

.about-profile__label--block {
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.about-profile__careers {
    margin: 0;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.75rem);
    background: var(--lp-panel);
    list-style: none;
    font-size: clamp(0.78rem, 2.3vw, 0.92rem);
    line-height: 2;
}

.about-profile__careers li {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.about-profile__careers li::before {
    content: '・';
    flex-shrink: 0;
}

.about-profile__year {
    flex-shrink: 0;
}

.about-profile__bio {
    padding: clamp(1.25rem, 3.5vw, 2rem) clamp(1.25rem, 4vw, 2.5rem);
    background: var(--lp-panel);
    font-size: clamp(0.78rem, 2.3vw, 0.92rem);
    line-height: 2.1;
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 640px) {

    .about-lp .about-inner {
        width: calc(100% - 2.75rem);
    }

    .about-section {
        padding-block: 3rem;
    }

    /* --- ヒーロー --- */
    .about-hero {
        padding-block: 2rem 2.75rem;
    }

    /* 画面端まで詰まって見えないよう、ロゴに左右の余白を残す */
    .about-hero__logo {
        width: 88%;
    }

    .about-hero__lead {
        font-size: 1rem;
    }

    /* SPは横に逃がす余白が無いので、写真右上の空きスペースに収める
       （リード文にバッジが重なるのを防ぐ） */
    .about-hero__seal {
        top: 0.4rem;
        right: 0.4rem;
        width: 76px;
    }

    .about-hero__seal-text {
        font-size: 0.6rem;
        line-height: 1.4;
    }

    .about-hero__catch {
        font-size: 0.95rem;
    }

    /* --- 見出し --- */
    /* SPでは元画像が大きすぎるため、幅で上限をかけて各見出しの大きさを揃える */
    .about-heading__mark {
        max-width: 56%;
    }

    .about-heading__mark--wide {
        max-width: 84%;
    }

    .about-heading__sub {
        margin-top: 0.7rem;
    }

    /* --- About / story の背景シェイプ --- */
    /* 縦に長い本文をSPでも覆えるよう、シェイプを縦長にする */
    .about-blob::before {
        width: 126%;
        aspect-ratio: 1 / 0.95;
        border-radius: 56% 44% 48% 52% / 50% 54% 46% 50%;
    }

    /* 円が上へせり出してキャッチコピーに重なるため、下げつつ縦の張り出しを抑える */
    .about-circle::before {
        top: 52%;
        width: 130%;
        aspect-ratio: 1 / 1.05;
    }

    .about-blob {
        padding-inline: 0;
    }

    .about-circle {
        padding-block: 3.5rem 3rem;
        padding-inline: 0;
    }

    .about-story__catch {
        margin-bottom: 0.9rem;
    }

    /* --- How to Use --- */
    /* SPでも1・2・3は横並びを維持する。1カラムあたりが狭くなるぶん、
       カードの余白・アイコン・文字を詰めて収める */
    .about-section--howto .about-inner {
        width: calc(100% - 1rem);
    }

    .about-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    /* PCの見栄え用の改行は、3カラムだと語の途中で折り返すため無効化する */
    .about-step__br {
        display: none;
    }

    .about-step {
        gap: 0.6rem;
        padding: 1.9rem 0.3rem 1.25rem;
    }

    .about-step__no {
        width: 42px;
    }

    .about-step__title {
        font-size: 0.72rem;
        letter-spacing: 0;
    }

    .about-step__icon {
        max-width: 52px;
    }

    /* line-break: strict … 狭いカラムで長音記号などが行頭に来るのを防ぐ */
    .about-step__body {
        font-size: 0.6rem;
        line-height: 1.75;
        line-break: strict;
        gap: 0.9rem;
    }

    /* --- CTA --- */
    /* 指で押しやすいよう、行全体をタップ領域にする */
    .about-cta {
        padding-block: 2rem;
    }

    .about-cta--mid {
        margin-top: 3.5rem;
    }

    .about-cta__inner {
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
    }

    .about-cta__inner--single {
        justify-content: center;
    }

    .about-cta__link {
        width: 100%;
        max-width: 320px;
        justify-content: space-between;
        gap: 0.75rem;
        padding: 0.5rem 0.35rem 0.5rem 1rem;
        background: var(--lp-panel);
        border-radius: 999px;
        box-shadow: 0 8px 20px -2px rgba(110, 70, 140, 0.14), 0 3px 8px -2px rgba(110, 70, 140, 0.06);
    }

    .about-cta__arrow {
        width: 2.5rem;
        height: 2.5rem;
    }

    /* --- profile --- */
    .about-profile__head {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.25rem;
    }

    .about-profile__photo {
        width: 156px;
    }

    .about-profile__main {
        width: 100%;
    }

    .about-profile__name,
    .about-profile__label {
        text-align: center;
    }

    /* 年と本文が縦に揃わないと読みにくいため、リスト自体は左揃えのまま中央に置く */
    .about-profile__careers {
        display: grid;
        justify-content: center;
    }

    .about-profile__careers li {
        justify-content: flex-start;
    }

    .about-profile__bio {
        line-height: 1.95;
    }
}

@media (prefers-reduced-motion: reduce) {

    .about-cta__link,
    .about-cta__arrow {
        transition: none;
    }
}
