@charset "UTF-8";
/* =========================================================
   reform-feature LP  (PC)
   Figma: ajour-LP  node 143:349
   ========================================================= */

/* ---------- tokens ---------- */
:root {
    --main: #3D2924;
    --gold: #836723;
    --beige: #D8CBC4;
    --bg-beige: #F8F5F2;
    --bg-beige-2: #F2EEE8;
    --white: #FFFFFF;
    --font-jp: "Zen Old Mincho", "Yu Mincho", "游明朝", serif;
    --font-en: "Cormorant Garamond", serif;
    --content: 1000px;
    --content-wide: 1384px;
}

/* ---------- reset ---------- */
.rf-body,
.rf-body * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.rf-body {
    font-family: var(--font-jp);
    color: var(--main);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.rf-body img {
    display: block;
    max-width: 100%;
    height: auto;
}

.rf-body a {
    color: inherit;
    text-decoration: none;
    transition: opacity .3s ease;
}

.rf-body a:hover {
    opacity: .7;
}

.rf-body ul,
.rf-body ol {
    list-style: none;
}

/* ---------- layout ---------- */
.rf-container {
    width: var(--content);
    max-width: calc(100% - 40px);
    margin-inline: auto;
}

.rf-container--wide {
    width: var(--content-wide);
    max-width: calc(100% - 40px);
    margin-inline: auto;
}

/* ---------- section english title ---------- */
.rf-en-ttl {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 54px;
    line-height: 1.25;
    letter-spacing: .04em;
    text-align: center;
    color: var(--main);
}

/* lead paragraph under a title */
.rf-lead {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    letter-spacing: .04em;
    text-align: center;
    color: var(--main);
}

/* ---------- button (underline + arrow) ---------- */
.rf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    font-size: 17px;
    letter-spacing: .04em;
    line-height: 1.6;
    color: var(--main);
    white-space: nowrap;
    /* 下線=2層: (上)濃い線=ホバーで左→右に伸びる / (下)薄い基準線=常時フル表示 */
    background-image:
        linear-gradient(currentColor, currentColor),
        linear-gradient(rgba(61, 41, 36, .28), rgba(61, 41, 36, .28));
    background-repeat: no-repeat;
    background-position: 100% 100%, 0 100%;
    background-size: 0% 1px, 100% 1px;
}

/* リセットの .rf-body a{transition:opacity .3s}(詳細度0,1,1)に負けないよう、
   詳細度0,2,1で background-size の transition を確実に効かせる */
.rf-body a.rf-btn {
    transition: background-size .4s cubic-bezier(.33, 1, .68, 1);
}

.rf-btn__label {
    font-family: var(--font-jp);
    font-weight: 500;
}

.rf-btn__label--en {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 17px;
}

.rf-btn__arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--main);
}

.rf-btn:hover {
    opacity: 1;
    /* 濃い線を左端起点で全幅に（＝左→右に濃くなる）。薄い基準線はそのまま */
    background-position: 0 100%, 0 100%;
    background-size: 100% 1px, 100% 1px;
}

/* white variant (on dark background) */
.rf-btn--white {
    color: var(--white);
}

.rf-btn--white .rf-btn__arrow {
    color: var(--white);
}

/* =========================================================
   Header (fixed)
   ========================================================= */
.rf-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 60px;
    background: var(--bg-beige-2);
    z-index: 100;
}

/* ページ内アンカーの着地点を固定ヘッダー(60px)分だけ下げ、見出しがヘッダーに隠れないようにする */
#rf-top,
#rf-service,
#rf-product,
#rf-shop,
#rf-point {
    scroll-margin-top: 60px;
}

.rf-header__inner {
    position: relative;
    height: 100%;
    max-width: 1440px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rf-header__logo {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
}

.rf-header__logo img { width: 100%; }

.rf-header__navmain {
    display: flex;
    align-items: center;
    gap: 36px;
}

/* サブメニュー(サービスご利用ガイド/お気に入り)はPCヘッダーには出さない（SPメニューのみ） */
.rf-header__navsub {
    display: none;
}

.rf-header__nav a {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: .02em;
    color: var(--main);
    white-space: nowrap;
}

/* =========================================================
   MV / Hero
   ========================================================= */
.rf-mv { width: 100%; }
.rf-mv__img { width: 100%; height: auto; }

/* =========================================================
   Concept
   ========================================================= */
.rf-concept {
    padding: 160px 28px 130px;
    background: var(--bg-beige);
}

.rf-concept__txt {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
}

.rf-concept__txt p {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    letter-spacing: .04em;
    color: var(--main);
}

.rf-concept__btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.rf-concept__btn .rf-btn {
    width: 128px;
    gap: 0;
}

/* =========================================================
   Link
   ========================================================= */
.rf-link {
    padding: 60px 0;
    background: var(--bg-beige);
}

.rf-link__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 24px;
}

.rf-link .rf-btn { gap: 40px; }

/* =========================================================
   Service
   ========================================================= */
.rf-service {
    background: var(--white);
    padding-bottom: 120px;
}

.rf-en-ttl--white { color: var(--white); }

.rf-service__banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rf-service__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .4);
}

.rf-service__banner .rf-en-ttl {
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-size: 68px;
}

.rf-service__banner .rf-parallax {
    background-image: url("https://ajour.jp/wp-content/uploads/2026/07/service_bg_pc-scaled.jpg");
}

/* =========================================================
   Parallax : スクロールで背景画像を縦にゆっくり動かす
   ========================================================= */
.rf-parallax {
    position: absolute;
    left: 0;
    top: -30%;
    width: 100%;
    height: 160%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

.rf-service__contents {
    margin-top: 120px;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
}

.rf-service__list {
    width: 760px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rf-service__list li {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: var(--bg-beige);
}

.rf-service__no {
    flex-shrink: 0;
    width: 67px;
    height: auto;
}

.rf-service__div {
    flex-shrink: 0;
    align-self: stretch;
    width: 1px;
    background: var(--beige);
}

.rf-service__txt {
    flex: 1;
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--main);
}

.rf-service__txt b { font-weight: 700; }

.rf-service__btn .rf-btn { gap: 53px; }

/* =========================================================
   Product
   ========================================================= */
.rf-product {
    position: relative;
    padding: 120px 28px;
    background: var(--bg-beige);
    overflow: hidden;
}

.rf-product::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("https://ajour.jp/wp-content/uploads/2026/07/product_bg_pc-scaled.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rf-product__inner {
    position: relative;
    z-index: 1;
    width: var(--content);
    max-width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.rf-product__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.rf-product__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rf-product__no {
    display: flex;
    align-items: center;
    gap: 24px;
}

.rf-product__line {
    flex: 1;
    height: 1px;
    background: var(--gold);
}

.rf-product__num {
    flex-shrink: 0;
    width: 60px;
    height: auto;
}

.rf-product__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.rf-product__img {
    width: 100%;
    aspect-ratio: 40 / 30;
    overflow: hidden;
}

.rf-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.3s ease;
}

.rf-product__card:hover .rf-product__img img {
    transform: scale(1.08);
}

.rf-product__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px 24px;
}

.rf-product__name {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    letter-spacing: .04em;
    color: var(--main);
}

.rf-product__desc {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
    color: var(--main);
}

.rf-product__more {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding: 8px 0;
    color: var(--main);
}

.rf-product__more .rf-btn__arrow { color: var(--main); }

/* stretched link: リンクのあるカード（toku等）は矢印リンクの当たり判定をカード全体に拡張。
   見た目・アクセシブル名は矢印リンクのまま保ち、クリック領域だけカード全面へ。 */
.rf-product__more::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.rf-product__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Figma(node 143:489): 2ボタンを等幅で中央に並べ、境目をページ中心に一致させる。
   space-between で各ボタンの矢印を右端へ押し出し、加工実例の下線も同じ長さに伸ばす。 */
.rf-product__links .rf-btn { width: 244px; gap: 53px; }

/* =========================================================
   Point (ajourの強み)
   ========================================================= */
.rf-point {
    padding: 120px 28px;
    background: var(--bg-beige);
}

.rf-point__inner {
    width: var(--content);
    max-width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.rf-point__ttl {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--main);
}

.rf-point__ttl-en {
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 68px;
    line-height: 1;
}

.rf-point__ttl-jp {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.4;
}

.rf-point__cols {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.rf-point__col {
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.rf-point__img {
    width: 100%;
    aspect-ratio: 320 / 213;
    overflow: hidden;
}

.rf-point__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rf-point__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 20px;
}

.rf-point__name {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.7;
    color: var(--main);
}

.rf-point__line {
    width: 20px;
    height: 1px;
    background: var(--main);
}

.rf-point__desc {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    text-align: justify;
    color: var(--main);
}

/* =========================================================
   utilities
   ========================================================= */
.rf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
   Category
   ========================================================= */
.rf-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
    padding-bottom: 120px;
    background: var(--bg-beige);
}

.rf-category__banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rf-category__parallax {
    background-image: url("https://ajour.jp/wp-content/uploads/2026/07/category_bg_pc-scaled.jpg");
}

.rf-category__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .4);
}

.rf-category__banner .rf-en-ttl {
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-size: 68px;
}

.rf-category__contents {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.rf-category__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 395px;
    max-width: 100%;
}

.rf-category__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.rf-category__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.3s ease;
}

.rf-category__card:hover { opacity: 1; }

.rf-category__card:hover .rf-category__img img { transform: scale(1.08); }

.rf-category__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--main);
}

.rf-category__name {
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: .04em;
    line-height: 1;
    color: var(--main);
}

.rf-category__label .rf-btn__arrow { color: var(--main); }

/* =========================================================
   Collection
   ========================================================= */
.rf-collection {
    padding: 120px 28px;
    background: var(--bg-beige-2);
}

.rf-collection__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.rf-collection__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.rf-collection__card {
    width: 301px;
    max-width: 100%;
    padding: 16px;
    background: var(--white);
}

.rf-collection__img {
    position: relative;
    width: 100%;
    aspect-ratio: 269 / 186;
    overflow: hidden;
}

.rf-collection__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.3s ease;
}

.rf-collection__card:hover .rf-collection__img img {
    transform: scale(1.08);
}

.rf-collection__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
}

.rf-collection__soon {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-weight: 400;
    font-style: italic;
    font-size: 32px;
    color: var(--white);
    transform: skewX(-12deg);
}

/* =========================================================
   Shop
   ========================================================= */
.rf-shop {
    padding: 120px 28px;
    background: var(--bg-beige);
}

.rf-shop__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.rf-shop__contents {
    width: var(--content);
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.rf-shop__img {
    flex: 0 0 499px;
    max-width: 50%;
    aspect-ratio: 499 / 320;
    overflow: hidden;
}

.rf-shop__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rf-shop__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.rf-shop__text {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
    color: var(--main);
}

/* 列フレックスの align-items:stretch でボタンが全幅に伸び、下線がFigma(133px)より長くなるのを防ぐ。
   align-self:flex-start で内容幅・左寄せに戻す（Figma node 143:785 = 左寄せ133px）。 */
.rf-shop__body .rf-btn { align-self: flex-start; gap: 53px; }

/* =========================================================
   Catalog
   ========================================================= */
.rf-catalog {
    padding: 60px 0;
    background: var(--bg-beige);
}

.rf-catalog__inner {
    width: var(--content);
    max-width: calc(100% - 40px);
    margin-inline: auto;
    display: flex;
    gap: 1px;
}

.rf-catalog__card {
    position: relative;
    flex: 1;
    height: 180px;
    display: flex;
    align-items: center;
    padding: 8px 9px 9px 56px;
    overflow: hidden;
    color: var(--white);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rf-catalog__card--design { background-image: url("https://ajour.jp/wp-content/uploads/2026/07/design_bg.jpg"); }
.rf-catalog__card--case { background-image: url("https://ajour.jp/wp-content/uploads/2026/07/case_bg.jpg"); }

.rf-catalog__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    transition: background .3s ease;
}

.rf-catalog__card:hover { opacity: 1; }
.rf-catalog__card:hover::after { background: rgba(0, 0, 0, .5); }

.rf-catalog__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rf-catalog__ttl {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    color: var(--white);
}

.rf-catalog__card--case .rf-catalog__ttl { letter-spacing: .1em; }

.rf-catalog__desc {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    color: var(--white);
}

.rf-catalog__desc .rf-u { text-decoration: underline; }

/* =========================================================
   Report / Column
   ========================================================= */
.rf-report {
    padding: 100px 28px;
    background: var(--bg-beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.rf-report__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.rf-report__ttl {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.6;
    color: var(--main);
    text-align: center;
}

.rf-report__cards {
    width: var(--content);
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rf-report__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px 24px;
    background: var(--white);
}

.rf-report__card:hover { opacity: 1; }

.rf-report__img {
    /* width必須: これが無いとSafariでaspect-ratioから高さを算出できず、
       height:100%の画像が本来の高さに膨らみカードが縦に伸びる。 */
    width: 100%;
    aspect-ratio: 2560 / 1707;
    overflow: hidden;
}

.rf-report__img img {
    /* aspect-ratioは（コンテナではなく）置換要素のimgに持たせ、height:autoで高さを決める。
       Safariのflex内aspect-ratioバグに一切依存しない最も堅牢な形。 */
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2560 / 1707;
    object-fit: cover;
    object-position: center;
    transition: transform 1.3s ease;
}

.rf-report__card:hover .rf-report__img img { transform: scale(1.08); }

.rf-report__text {
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    color: var(--main);
}

.rf-report .rf-btn { gap: 53px; margin-top: 8px; }

/* 横スクロールのカスタムスクロールバー（SPのみ表示。ネイティブバーは隠す） */
.rf-collection__cards,
.rf-report__cards {
    scrollbar-width: none;
}
.rf-collection__cards::-webkit-scrollbar,
.rf-report__cards::-webkit-scrollbar {
    display: none;
}
.rf-scrollbar {
    display: none;
}

/* =========================================================
   SNS + Footer
   ========================================================= */
.rf-footer {
    background: var(--bg-beige);
    padding-bottom: 120px;
}

.rf-sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 24px 0 60px;
}

.rf-sns__link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rf-sns__link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rf-footer__inner {
    width: var(--content);
    max-width: calc(100% - 56px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.rf-footer__cols {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.rf-footer__head {
    font-family: var(--font-jp);
    font-weight: 600;
    font-size: 15px;
    color: var(--main);
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--beige);
}

.rf-footer__list li {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.rf-footer__list a {
    font-family: var(--font-jp);
    color: var(--main);
    font-size: 13px;
}

.rf-footer__sub {
    font-family: var(--font-jp);
    font-weight: 600;
    color: var(--main);
    font-size: 13px;
}

.rf-footer__indent {
    padding-left: 1em;
}

.rf-footer__list--plain .rf-footer__head-link {
    font-family: var(--font-jp);
    font-weight: 600;
    font-size: 15px;
    color: var(--main);
}

.rf-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.rf-footer__logo img {
    width: 90px;
    height: auto;
}

.rf-footer__company {
    font-family: var(--font-jp);
    font-size: 12px;
    line-height: 1.8;
    color: var(--main);
}

.rf-footer__copy {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--main);
}

/* =========================================================
   FIX : 共通の固定CTAバー(fixed_footer.php)をそのまま流用
   LP独自リセットの影響で高さが過剰になるため、実機表示(約88px)に合わせて
   コンテナの高さ/余白のみ最小限に調整（色・文言・リンク・アイコンは共通側のまま）
   ========================================================= */
/* 固定CTAバー（Figma準拠・LP専用）: 2ボタン等分・ボタン高さ52px・左グレー/右LINE緑 */
.rf-fixbar {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    padding: 8px 12px;
    background: #EFEDEA;
    /* バーはゴシック体（Figma準拠。本文の明朝を継承させない） */
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}
.rf-fixbar__btn {
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
}
.rf-fixbar__btn--shop { background: #B1B3B2; }
.rf-fixbar__btn--line { background: #00BF52; }
/* リセットの .rf-body a(0,1,1) に負けないよう文字色を確実に白に(0,2,1) */
.rf-body a.rf-fixbar__btn { color: #fff; }
.rf-fixbar__main {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 15px;
}
.rf-fixbar__main i { font-size: 15px; }
.rf-fixbar__btn--line .rf-fixbar__main i { font-size: 20px; }
.rf-fixbar__sub {
    font-weight: 700;
    font-size: 10px;
}

/* fixed-header anchor offset & smooth scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

/* hamburger button hidden on PC */
.rf-header__toggle { display: none; }

/* SPメニュー下部バーはPC（横並びナビ内）では非表示。表示はSPメニュー内のみ */
.rf-menubar { display: none; }

/* =========================================================
   Responsive : SP  (max-width 767px)
   ========================================================= */
@media screen and (max-width: 767px) {

    :root { --content: 100%; }

    body.rf-noscroll { overflow: hidden; }

    /* ---------- Header : hamburger + drawer ---------- */
    .rf-header {
        height: 56px;
        /* SPは追従ヘッダーの背景を透明に（メニュー開時は .rf-header.is-open で別途背景付与） */
        background: transparent;
    }

    .rf-header__inner {
        justify-content: flex-start;
        padding: 0 20px;
    }

    .rf-header__logo {
        position: static;
        transform: none;
        width: 69.01px;
    }
    /* Figma: SPロゴは 69.01 × 28 */
    .rf-header__logo img { height: 28px; }

    .rf-header__toggle {
        display: block;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        padding: 0;
        border: 0;
        background: none;
        cursor: pointer;
        z-index: 110;
    }

    /* = → × モーフ（botanist方式: まず中央に寄せてから回転） */
    .rf-header__toggle-line {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 0;
        border-top: 1.5px solid var(--main);
        transition: margin .3s ease .3s, transform .3s ease;
    }
    .rf-header__toggle-line:nth-child(1) { margin-top: -3.5px; }
    .rf-header__toggle-line:nth-child(2) { margin-top: 3.5px; }

    .rf-header.is-open .rf-header__toggle-line {
        margin: 0;
        transition: margin .3s ease, transform .3s ease .3s;
    }
    .rf-header.is-open .rf-header__toggle-line:nth-child(1) { transform: rotate(-45deg); }
    .rf-header.is-open .rf-header__toggle-line:nth-child(2) { transform: rotate(45deg); }

    /* メニュー展開時はヘッダーバーもクリーム地にして全画面を継ぎ目なく（Figma 54:42） */
    .rf-header.is-open { background: var(--bg-beige); }

    .rf-header__nav {
        position: fixed;
        inset: 56px 0 0 0;
        background: var(--bg-beige);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 27px;
        padding: 14px 20px 110px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .3s ease, transform .3s ease, visibility .3s;
        overflow-y: auto;
    }

    .rf-header.is-open .rf-header__nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .rf-header__navmain,
    .rf-header__navsub {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .rf-header__navmain a {
        display: block;
        padding: 3px 8px;
        font-size: 18px;
        line-height: 1.9;
        text-align: center;
    }

    .rf-header__navmain a.rf-header__nav-en {
        font-family: var(--font-en);
        font-weight: 500;
        font-size: 24px;
    }

    .rf-header__navsub a {
        display: block;
        padding: 2px 8px;
        font-size: 14px;
        line-height: 1.9;
        text-align: center;
    }

    /* SPメニュー下部バー（Figma 54:42）: 濃茶地・白アウトラインアイコン＋クリーム文字・中央に区切り線。
       常に画面最下部にピン留め（端末高さに依存せず「したのfooter」を維持）。 */
    .rf-menubar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--main);
    }
    .rf-menubar__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 52px;
        font-size: 15px;
        letter-spacing: .04em;
        text-decoration: none;
    }
    /* リセット .rf-body a(0,1,1) に勝ってクリーム文字を確定(0,2,1) */
    .rf-body a.rf-menubar__btn { color: #F8F5F2; }
    .rf-menubar__btn img { width: 20px; height: 20px; }
    .rf-menubar__btn--line { border-left: 1px solid rgba(248, 245, 242, .35); }
    /* メニューを開いている間はページ下部のグレー/緑バーを隠す */
    body.rf-noscroll .rf-fixbar { display: none; }

    /* ---------- shared titles ---------- */
    .rf-en-ttl { font-size: 44px; }

    /* ---------- Concept ---------- */
    .rf-concept { padding: 80px 28px 64px; }
    .rf-concept__txt { gap: 22px; }
    .rf-concept__txt p { font-size: 15px; }

    /* ---------- Link : stack + down arrow ---------- */
    /* Figma(SP 375幅): 3リンクは等幅、左右余白75px（=幅225px）。矢印は右端(space-between)。 */
    .rf-link { padding: 0 75px 48px; }
    .rf-link__inner { flex-direction: column; gap: 0; }
    .rf-link .rf-btn {
        width: 100%;
        gap: 0;
        padding: 20px 4px;
    }
    .rf-link .rf-btn__arrow { transform: rotate(90deg); }

    /* ---------- Service ---------- */
    .rf-service { padding-bottom: 80px; }
    .rf-service__banner { height: 290px; }
    .rf-service__banner .rf-en-ttl { font-size: 46px; }
    .rf-service__banner .rf-parallax { background-image: url("https://ajour.jp/wp-content/uploads/2026/07/service_bg_sp.jpg"); }
    .rf-service__contents { margin-top: 70px; padding: 0 28px; gap: 31px; }
    .rf-service__list { width: 100%; }
    .rf-service__list li { padding: 16px; gap: 14px; }
    .rf-service__no { width: 46px; font-size: 26px; }
    .rf-service__txt { font-size: 15px; }
    .rf-service__btn .rf-btn { gap: 40px; }
    /* リード文: SPは全て左揃え（スクショ準拠）。Service下部リードは改行(段落)なしで自然に流す。 */
    .rf-lead { text-align: left; }
    .rf-lead--service .rf-lead__br { display: none; }

    /* ---------- Product : 1 column ---------- */
    .rf-product { padding: 70px 28px; }
    .rf-product::before { background-image: url("https://ajour.jp/wp-content/uploads/2026/07/product_bg_sp-scaled.jpg"); }
    .rf-product__inner { gap: 40px; }
    .rf-product__grid { grid-template-columns: 1fr; gap: 40px; }
    /* Linkリンクと同じ幅に揃える: セクションpadding28px + 47px = 左右75px余白（=幅225px@375）。 */
    .rf-product__links { flex-direction: column; gap: 0; width: 100%; padding: 0 47px; }
    .rf-product__links .rf-btn { width: 100%; gap: 0; padding: 18px 4px; }

    /* ---------- Point : 1 column ---------- */
    .rf-point { padding: 70px 28px; }
    .rf-point__inner { gap: 40px; }
    .rf-point__cols { grid-template-columns: 1fr; gap: 40px; }
    .rf-point__ttl-en { font-size: 44px; }
    .rf-point__ttl-jp { font-size: 26px; }

    /* ---------- Category : banner + 2col cards ---------- */
    .rf-category { gap: 56px; padding-bottom: 70px; }
    .rf-category__banner { height: 290px; }
    .rf-category__parallax { background-image: url("https://ajour.jp/wp-content/uploads/2026/07/category_bg_sp.jpg"); }
    .rf-category__banner .rf-en-ttl { font-size: 46px; }
    .rf-category__contents { gap: 12px; padding: 0 28px; }
    .rf-category__card { width: auto; flex: 1; gap: 10px; }
    .rf-category__name { font-size: 17px; }

    /* ---------- Collection : horizontal scroll ---------- */
    .rf-collection { padding: 70px 0; }
    .rf-collection__inner { gap: 40px; }
    .rf-collection__cards {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
        gap: 16px;
        padding: 4px 28px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    /* Figma(SP): カード301px = padding16px + 画像269px。aspect-ratio 269/186 で高さ186px。 */
    .rf-collection__card {
        flex: 0 0 301px;
        max-width: none;
        scroll-snap-align: center;
    }
    /* 1枚目の初期位置をセンターに（301pxカード: 28pxパディング+9px=左37=右peek37） */
    .rf-collection__card:first-child { margin-left: 9px; }

    /* ---------- Shop : stacked ---------- */
    .rf-shop { padding: 70px 28px; }
    .rf-shop__inner { gap: 40px; }
    .rf-shop__contents { flex-direction: column; gap: 24px; }
    .rf-shop__img { flex: none; width: 100%; max-width: 100%; }
    .rf-shop__body { width: 100%; gap: 28px; }
    /* 店舗一覧ボタン: PCは左寄せ(align-self:flex-start)だがSPは中央（スクショ準拠） */
    .rf-shop__body .rf-btn { align-self: center; }

    /* ---------- Catalog : stacked ---------- */
    .rf-catalog { padding: 40px 0; }
    .rf-catalog__inner { flex-direction: column; gap: 1px; width: 100%; max-width: 100%; }
    .rf-catalog__card { height: 180px; padding: 44px 24px 44px 32px; }

    /* ---------- Report / Column : horizontal scroll ---------- */
    .rf-report { padding: 70px 0; gap: 64px; }
    .rf-report__block { gap: 40px; }
    .rf-report__ttl { font-size: 24px; }
    .rf-report__cards {
        display: flex;
        grid-template-columns: none;
        flex-wrap: nowrap;
        width: 100%;
        gap: 16px;
        padding: 4px 28px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    /* Figma(SP): カード301px = 左右padding16px + 画像269px。aspect-ratio 2560/1707(=1.5) で高さ179.37px。 */
    .rf-report__card {
        flex: 0 0 301px;
        max-width: none;
        scroll-snap-align: center;
    }
    /* 1枚目の初期位置をセンターに（301pxカード: 28pxパディング+9px=左37=右peek37） */
    .rf-report__card:first-child { margin-left: 9px; }

    /* 横スクロールのカスタムスクロールバー（Figma: 幅273×高さ1、track #fff / thumb gold、上下40px） */
    .rf-scrollbar {
        display: block;
        position: relative;
        width: 273px;
        height: 1px;
        background: #fff;
    }
    .rf-scrollbar__thumb {
        position: absolute;
        inset: 0 auto 0 0;
        height: 1px;
        width: 40%; /* JSで実スクロール比率に更新 */
        background: var(--gold);
    }
    /* スクロールバー↔ボタンの間隔を40pxちょうどに（reportボタンのmargin-top:8pxを打ち消す） */
    .rf-report .rf-btn { margin-top: 0; }

    /* ---------- SNS + Footer ---------- */
    .rf-footer { padding-bottom: 116px; }
    .rf-sns { padding: 16px 0 48px; }
    .rf-footer__inner { max-width: calc(100% - 48px); gap: 48px; }
    .rf-footer__cols { grid-template-columns: 1fr; gap: 40px; }
    .rf-footer__list { columns: 2; column-gap: 20px; }
    .rf-footer__list li { break-inside: avoid; }
    .rf-footer__list--plain { columns: 1; }

    /* FIX bar は共通 fixed_footer を流用（レスポンシブは共通側のインラインで対応） */
}

/* =========================================================
   Scroll reveal : ふわっとフェードアップ（下から少し上がりながら表示）
   .rf-js が付く＝JS有効時のみ初期状態を隠す（無効時は常に表示）
   ========================================================= */
.rf-js .rf-reveal {
    opacity: 0;
    visibility: hidden;
    /* スクロール表示フェード（ゆっくり 3s） */
    transition: opacity 3s cubic-bezier(.25, 1, .5, 1),
        visibility 0s linear 3s;
}

.rf-js .rf-reveal.is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 3s cubic-bezier(.25, 1, .5, 1),
        visibility 0s linear 0s;
}

/* rf-btn が rf-reveal を兼ねる要素（コレクション一覧・一覧を見る等）:
   .rf-reveal の transition ショートハンドが下線用 background-size の transition を
   丸ごと上書きしてしまうため、フェードと下線の両方を1つの transition に含めて復活させる。
   詳細度を .rf-reveal 系より高くして確実に勝たせる。 */
.rf-js .rf-btn.rf-reveal {
    transition: opacity 3s cubic-bezier(.25, 1, .5, 1),
        visibility 0s linear 3s,
        background-size .4s cubic-bezier(.33, 1, .68, 1);
}

.rf-js .rf-btn.rf-reveal.is-visible {
    transition: opacity 3s cubic-bezier(.25, 1, .5, 1),
        visibility 0s linear 0s,
        background-size .4s cubic-bezier(.33, 1, .68, 1);
}

/* モーション低減設定を尊重 */
@media (prefers-reduced-motion: reduce) {

    .rf-js .rf-reveal,
    .rf-js .rf-reveal.is-visible {
        opacity: 1;
        visibility: visible;
        transition: none;
    }
}
