@charset "utf-8";

/* ==========================================================================
   1. Variables & Reset
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #006666;   /* メインの深緑 */
    --color-secondary: #299a0b; /* アクセントの明るい緑 */
    --color-accent-red: #cc0000;
    --color-accent-blue: #006bb5;
    --color-text: #333333;
    --color-bg-gray: #f5f5f5;
    --color-white: #ffffff;
    --color-border: #e0e0e0;
    /* Spacing */
    --sp-xs: 8px; --sp-sm: 16px; --sp-md: 32px; --sp-lg: 60px;
    /* Font */
    --font-base: "Shippori Mincho", "游明朝", "Yu Mincho", serif;
    --font-sans: "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: var(--font-base); color: var(--color-text); line-height: 2.0; background: var(--color-white); -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: var(--color-primary); text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, p, figure { margin: 0; padding: 0; }

/* ==========================================================================
   2. Utility Classes
   ========================================================================== */
.l-container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.l-section { padding: var(--sp-lg) 0; }
.u-bg-gray { background-color: var(--color-bg-gray); }
.u-text-center { text-align: center !important; }
.u-inline-block { display: inline-block; }
.u-font-lg { font-size: 1.25rem; font-weight: bold; }
.u-font-sm { font-size: 0.85rem; }
.u-mb-sm { margin-bottom: var(--sp-sm); }
.u-mb-md { margin-bottom: var(--sp-md); }
.u-mb-lg { margin-bottom: var(--sp-lg); }
.u-mt-md { margin-top: var(--sp-md); }
.u-mt-lg { margin-top: var(--sp-lg); }
.u-color-primary { color: var(--color-primary) !important; }
.u-color-red { color: var(--color-accent-red) !important; }
.u-color-blue { color: var(--color-accent-blue) !important; }
.u-color-green { color: var(--color-secondary) !important; }

/* Display Utility */
.u-sp-only { display: block; }
@media (min-width: 768px) {
    .u-sp-only { display: none; }
}

/* Lists (Generic) */
.c-list-disc { list-style: disc; padding-left: 1.5em; margin-bottom: var(--sp-md); }
.c-list-disc li { margin-bottom: 5px; }

/* Headings */
.c-heading-primary { text-align: center; font-size: 1.8rem; color: var(--color-primary); margin-bottom: var(--sp-md); position: relative; padding-bottom: 15px; }
.c-heading-primary::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--color-secondary); }
.c-heading-secondary { font-size: 1.4rem; color: var(--color-text); margin-bottom: var(--sp-sm); padding-left: 15px; border-left: 5px solid var(--color-primary); background: #f9f9f9; padding: 10px 15px; }

.c-text-lead { text-align: center; margin-bottom: var(--sp-md); font-weight: 500; }
.u-font-shrink { font-size: 0.8em; margin-right: 2px; }

/* ==========================================================================
   3. Header
   ========================================================================== */
.l-header { background: var(--color-white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; width: 100%; }
.l-header__inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 10px 20px; height: 70px; }
.l-header__logo img { height: 40px; width: auto; display: block; }
.l-header__right { display: flex; align-items: center; }

/* デフォルト（スマホ）ではメニューは非表示 */
.l-header__contact, .l-header__nav { display: none; }

/* --- PC用設定 (768px以上) --- */
@media (min-width: 768px) {
    .l-header__inner { height: 100px; }
    .l-header__logo img { height: 60px; }
    
    /* PCではメニューをブロック表示して常時見せる */
    .l-header__nav { 
        display: block; 
        margin-left: 30px; 
        position: static; 
        width: auto; 
        height: auto; 
        background: none; 
        box-shadow: none; 
        padding-top: 0; 
        right: auto;
    }
    
    .l-header__nav-list { display: flex; gap: 20px; align-items: center; }
    .l-header__nav-list a { display: block; text-align: center; color: #333; font-weight: 500; font-size: 0.9rem; }
    .l-header__nav-list a span { display: block; font-size: 0.65rem; color: var(--color-primary); margin-top: -2px; font-family: var(--font-sans); }
    
    .l-header__contact { display: flex; flex-direction: column; align-items: flex-end; margin-right: 20px; padding-right: 20px; border-right: 1px solid #ddd; }
    .l-header__contact-text { font-size: 0.7rem; color: #666; line-height: 1; margin-bottom: 2px; }
    .l-header__tel { font-size: 1.8rem; font-weight: bold; color: var(--color-primary); line-height: 1; font-family: var(--font-sans); }
    .c-btn-header { background: var(--color-secondary); color: white !important; padding: 10px 15px; border-radius: 4px; }
    .c-btn-header span { display: none; }
}

/* --- ハンバーガーボタン --- */
.l-header__menu-btn { position: relative; width: 30px; height: 24px; background: none; border: none; cursor: pointer; z-index: 1002; margin-left: 10px; }
@media (min-width: 768px) { .l-header__menu-btn { display: none; } }

.l-header__menu-btn span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--color-primary); transition: all 0.3s; }
.l-header__menu-btn span:nth-of-type(1) { top: 0; }
.l-header__menu-btn span:nth-of-type(2) { top: 11px; }
.l-header__menu-btn span:nth-of-type(3) { bottom: 0; }

.l-header__menu-btn.is-active span:nth-of-type(1) { transform: translateY(11px) rotate(45deg); }
.l-header__menu-btn.is-active span:nth-of-type(2) { opacity: 0; }
.l-header__menu-btn.is-active span:nth-of-type(3) { transform: translateY(-11px) rotate(-45deg); }

/* --- Mobile Nav (スマホ用メニュー) --- */
@media (max-width: 767px) {
    .l-header__nav {
        display: block; 
        position: fixed;
        top: 0;
        right: -100%; 
        width: 80%;
        height: 100vh;
        background: var(--color-white);
        z-index: 1001;
        transition: right 0.3s;
        box-shadow: -5px 0 10px rgba(0,0,0,0.1);
        padding-top: 80px;
    }
    .l-header__nav.is-active { right: 0; }
    
    .l-header__nav-list li { border-bottom: 1px solid #eee; }
    .l-header__nav-list a { display: block; padding: 15px 20px; color: var(--color-text); font-weight: bold; }
    .l-header__nav-list a span { font-size: 0.7rem; color: #999; margin-left: 10px; }
    .c-btn-header { display: block; text-align: center; margin: 20px; background: var(--color-secondary); color: white !important; padding: 15px; border-radius: 4px; }
}

/* ==========================================================================
   4. Hero & Components (Slider Updated)
   ========================================================================== */

/* --- Hero Container --- */
.p-hero {
    position: relative;
    width: 100%;
    height: 60vh;      /* スマホの高さ */
    min-height: 350px;
    overflow: hidden;
    background-color: #111; /* 画像ロード前の背景色 */
}

@media (min-width: 768px) {
    .p-hero {
        height: 600px; /* PCの高さ */
    }
}

/* --- Slider Area (Background) --- */
.p-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 黒いフィルター（オーバーレイ） */
/* これにより文字の可読性を確保し、静寂な雰囲気を演出します */
.p-hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* 黒の40%透明 */
    z-index: 10;
    pointer-events: none;
}

/* --- Slider Items & Animation --- */
.p-hero-slider__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* 3枚 × 6秒 = 18秒でループ */
    animation: sliderFade 18s infinite;
}

.p-hero-slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画面いっぱいに表示 */
    
    /* ケン・バーンズ効果（ゆっくりズーム）の初期値 */
    transform: scale(1.0);
    transition: transform 6s linear;
    
    /* デフォルトの表示位置（PCなど） */
    object-position: center center;
}

/* アニメーション定義 */
@keyframes sliderFade {
    0% {
        opacity: 0;
        transform: scale(1.0);
    }
    5% {
        opacity: 1; /* フェードイン完了 */
    }
    33% {
        opacity: 1; /* 表示維持 */
    }
    43% {
        opacity: 0; /* フェードアウト完了 */
        transform: scale(1.1); /* 少し拡大した状態で消える */
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}

/* 各スライドの開始時間ズレ */
.p-hero-slider__item:nth-child(1) {
    animation-delay: 0s;
}
.p-hero-slider__item:nth-child(2) {
    animation-delay: 6s;
}
.p-hero-slider__item:nth-child(3) {
    animation-delay: 12s;
}

/* --- Responsive Object Position (スマホでのトリミング位置調整) --- */
@media (max-width: 767px) {
    /* 中心を見せる（全景など） */
    .u-img-center {
        object-position: center center;
    }
    /* 右側を見せる（祭壇など） */
    .u-img-right {
        object-position: 70% center;
    }
    /* 左側を見せる（人物など） */
    .u-img-left {
        object-position: 30% center;
    }
}

/* --- Hero Content (Text Layer) --- */
.p-hero__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20; /* スライダーより手前 */
    display: flex;
    align-items: flex-end; /* 下揃え */
    justify-content: flex-start; /* 左揃え */
    padding: 30px;
}

.p-hero__text {
    /* 旧デザインのボックス装飾を完全リセット */
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-bottom: 20px; /* 下端からの距離 */
}

/* H1 Typography */
.p-hero__text h1 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    color: #ffffff; /* 白文字 */
    /* 背景がどんな写真でも読めるように影をつける */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7); 
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .p-hero__content {
        padding-left: 10%;
        padding-bottom: 80px;
    }
    .p-hero__text h1 {
        font-size: 1.8rem; /* PCでは大きく */
        line-height: 1.6;
    }
}

/* --- A案：ミニマル＆タイポグラフィ（お悩みセクション改修） --- */
.p-worry-box {
    background-color: transparent; /* 背景色なし */
    border: none;                  /* 枠線削除 */
    padding: 0 10px;
    max-width: 800px;
    margin: var(--sp-md) auto 0;   /* 上部に余白追加 */
    text-align: center;
    box-shadow: none;
}

.p-worry-list {
    display: inline-block;
    text-align: left;
    margin-bottom: 40px; /* 下のメッセージとの距離を広げる */
}

.p-worry-list li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 20px;  /* 行間を広げてゆとりを持たせる */
    font-size: 1.1rem;
    font-weight: 500;     /* 太すぎないウェイトに変更 */
    line-height: 1.6;
    color: var(--color-text);
}

/* チェックマークをCSSで描画 */
.p-worry-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    transform: rotate(-45deg);
    background: transparent;
    font-size: 1em;
}

.p-worry-answer {
    font-family: var(--font-base);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* スマホ用微調整 */
@media (max-width: 767px) {
    .p-worry-list li {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .p-worry-answer {
        font-size: 1.2rem;
    }
}
/* --- End A案改修 --- */

.p-media { display: block; }
.p-media__img { margin-bottom: 20px; }
.p-media__img img { width: 100%; height: auto; border-radius: 8px; }
@media (min-width: 768px) { .p-media { display: flex; align-items: center; gap: 40px; } .p-media__img { flex: 0 0 45%; margin-bottom: 0; } .p-media__body { flex: 1; } }

.c-btn-wrapper { text-align: center; }
.c-btn { display: inline-block; padding: 15px 40px; font-size: 1.1rem; border-radius: 50px; font-weight: bold; transition: all 0.3s; }
.c-btn--primary { background: var(--color-secondary); color: white; box-shadow: 0 4px 0 #1e7008; }
.c-btn--primary:hover { transform: translateY(2px); box-shadow: 0 2px 0 #1e7008; opacity: 1; color: white; }
.c-btn--secondary { background: var(--color-primary); color: white; }

.p-plans__grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-bottom: var(--sp-lg); }
.c-card-plan { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; transition: transform 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.c-card-plan:hover { transform: translateY(-5px); }
.c-card-plan__img { height: 200px; overflow: hidden; }
.c-card-plan__img img { width: 100%; height: 100%; object-fit: cover; }
.c-card-plan__body { padding: 20px; text-align: center; }
.c-card-plan__title { font-size: 1.4rem; margin-bottom: 10px; }
.c-card-plan__price { background: var(--color-bg-gray); padding: 10px; font-size: 1.4rem; font-weight: bold; color: var(--color-accent-red); margin-top: 15px; border-radius: 4px; }
.c-card-plan__price span { font-size: 0.8rem; color: var(--color-text); display: block; }

.c-accordion { max-width: 800px; margin: 0 auto; }
.c-accordion__item { margin-bottom: 15px; border: 1px solid var(--color-border); border-radius: 4px; background: white; }
.c-accordion__title { padding: 15px 40px 15px 20px; font-weight: bold; cursor: pointer; position: relative; list-style: none; }
.c-accordion__title::-webkit-details-marker { display: none; }
.c-accordion__title::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--color-primary); transition: transform 0.3s ease; }
details[open] .c-accordion__title::after { transform: translateY(-50%) rotate(45deg); }
.c-accordion__content { line-height: 1.6; border-top: 1px dashed var(--color-border); overflow: hidden; max-height: 0; opacity: 0; padding: 0 20px; margin-top: 0; transition: max-height 0.5s ease-out, opacity 0.3s ease-out, padding 0.5s ease-out, margin 0.5s ease-out; }
details[open] .c-accordion__content { max-height: 1000px; opacity: 1; padding: 20px; margin-top: 10px; }

.c-table-responsive { overflow-x: auto; margin-bottom: var(--sp-md); }
.c-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.c-table th, .c-table td { padding: 15px; border: 1px solid var(--color-border); }
.c-table th { background: var(--color-primary); color: white; width: 25%; white-space: nowrap; font-weight: normal; }
.c-table td { background: white; }

.p-list-flow { list-style: none; margin-top: 20px; border-left: 3px solid #e0e0e0; margin-left: 15px; padding-left: 30px; }
.p-list-flow li { position: relative; margin-bottom: 40px; }
.p-list-flow li::before { content: ""; position: absolute; left: -39px; top: 0; width: 15px; height: 15px; background: var(--color-secondary); border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 1px #e0e0e0; }
.p-list-flow__time { display: inline-block; background: var(--color-primary); color: white; padding: 4px 10px; border-radius: 4px; font-weight: bold; font-size: 0.9rem; margin-bottom: 5px; }
.p-list-flow__content { background: #f9f9f9; padding: 15px; border-radius: 4px; }
.p-list-flow__content strong { display: block; font-size: 1.2rem; color: var(--color-primary); border-bottom: 1px dashed #ccc; padding-bottom: 5px; margin-bottom: 5px; }

/* Form (Contact) */
.c-form-wrapper { max-width: 800px; margin: 0 auto; }
.c-form dl { display: flex; flex-wrap: wrap; border-top: 1px solid #eee; }
.c-form dt { width: 100%; padding: 15px; background: #f0fdf0; font-weight: bold; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.c-form dd { width: 100%; padding: 15px; border-bottom: 1px solid #eee; margin: 0; }
/* 必須マークのスタイル */
.c-form span.required { background: var(--color-accent-red); color: white; font-size: 0.7rem; padding: 2px 5px; border-radius: 3px; }
@media (min-width: 768px) { .c-form dt { width: 30%; } .c-form dd { width: 70%; } }
.c-form__input, .c-form__textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
.c-form__group-row { display: flex; gap: 10px; }
.c-form__check-list { list-style: none; }
.c-form__check-list li { margin-bottom: 5px; }

.c-breadcrumb { background: var(--color-bg-gray); padding: 12px 0; font-size: 0.75rem; border-bottom: 1px solid #eee; }
.c-breadcrumb ul { display: flex; flex-wrap: nowrap; overflow-x: auto; white-space: nowrap; }
.c-breadcrumb li { display: flex; align-items: center; color: #666; }
.c-breadcrumb li a { color: var(--color-primary); }
.c-breadcrumb li:not(:last-child)::after { content: ">"; margin: 0 10px; color: #ccc; font-size: 0.7rem; }
.c-breadcrumb li:last-child { font-weight: bold; color: #333; }

.p-include-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.p-include-list li { display: flex; align-items: center; background: white; padding: 0px; border: 1px solid #123611; }
.p-include-list img { width: 50px; margin-right: 10px; }
@media (min-width: 768px) { .p-include-list { grid-template-columns: repeat(4, 1fr); } }

.p-sitemap ul { margin-left: 20px; list-style: disc; }
.p-sitemap ul ul { margin-top: 5px; margin-bottom: 10px; list-style: circle; }
.p-sitemap a { color: var(--color-primary); text-decoration: underline; }

/* ==========================================================================
   5. Footer & Fixed Button
   ========================================================================== */
.l-footer { background: #333; color: #ccc; padding: 40px 0; text-align: center; }
.l-footer__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; }
.l-footer__list a { color: #fff; }
.l-footer__sub-list { display: flex; justify-content: center; gap: 20px; font-size: 0.9rem; margin-bottom: 30px; }

/* Mobile Fixed Footer */
.p-fixed-footer { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; display: flex; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15); }
.p-fixed-footer__item { flex: 1; display: flex; justify-content: center; align-items: center; padding: 10px 5px; text-decoration: none; color: #fff; transition: opacity 0.3s; height: 60px; }
.p-fixed-footer__item:hover { opacity: 0.9; }
.p-fixed-footer__item--mail { background-color: var(--color-primary); border-right: 1px solid rgba(255, 255, 255, 0.2); }
.p-fixed-footer__item--tel { background-color: var(--color-secondary); flex: 1.2; }
.p-fixed-footer__icon { width: 24px; height: 24px; margin-right: 8px; display: flex; align-items: center; }
.p-fixed-footer__icon svg { width: 100%; height: 100%; fill: #fff; }
.p-fixed-footer__text { display: flex; flex-direction: column; justify-content: center; line-height: 1.2; text-align: left; }
.p-fixed-footer__text .u-text-sub { font-size: 0.65rem; opacity: 0.9; display: block; margin-bottom: 2px; }
.p-fixed-footer__text .u-text-main { font-size: 1rem; font-weight: bold; display: block; }
@media (min-width: 768px) { .p-fixed-footer { display: none; } }

/* Plan Options, Custom Plans etc... (Other components preserved) */
.p-plans-mini { display: grid; gap: 10px; grid-template-columns: 1fr; margin-top: 30px; margin-bottom: 30px; }
.c-card-mini { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s; }
.c-card-mini:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); opacity: 1; }
.c-card-mini a { display: flex; align-items: center; text-decoration: none; color: inherit; height: 100%; position: relative; }
.c-card-mini__img { flex: 0 0 90px; width: 90px; height: 90px; margin: 0; }
.c-card-mini__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.c-card-mini__body { flex: 1; padding: 10px 30px 10px 15px; display: flex; flex-direction: column; justify-content: center; }
.c-card-mini__title { font-size: 1rem; line-height: 1.3; margin-bottom: 5px; font-weight: bold; }
.c-card-mini__desc { font-size: 0.75rem; color: #666; margin: 0; }
.c-card-mini a::after { content: "→"; position: absolute; right: 15px; top: 50%; transform: translateY(-55%); font-size: 1.8rem; color: #ccc; font-family: Arial, sans-serif; line-height: 1; }
.c-card-mini:hover a::after { color: var(--color-primary); }
@media (min-width: 768px) { .p-plans-mini { grid-template-columns: repeat(3, 1fr); gap: 20px; } .c-card-mini { height: 120px; } .c-card-mini__img { flex: 0 0 120px; width: 120px; height: 120px; } .c-card-mini__title { font-size: 1.1rem; } .c-card-mini__desc { font-size: 0.85rem; } }

.p-plan-option { background-color: #f9fcf9; border: 1px solid var(--color-border); padding: 30px 20px; border-radius: 8px; }
.p-option-group__title { font-size: 1.1rem; font-weight: bold; color: var(--color-text); border-bottom: 2px solid var(--color-secondary); padding-bottom: 8px; margin-bottom: 10px; }
.p-list-definition { margin-top: 15px; }
.p-list-definition__item { margin-bottom: 15px; border-bottom: 1px dashed #e0e0e0; padding-bottom: 15px; }
.p-list-definition__item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.p-list-definition dt { font-weight: bold; color: var(--color-primary); margin-bottom: 5px; display: flex; align-items: center; }
.p-list-definition dt::before { content: "●"; color: var(--color-secondary); font-size: 0.8em; margin-right: 8px; }
.p-list-definition dd { margin-left: 1.2em; font-size: 0.95rem; line-height: 1.6; }
.u-text-note { font-size: 0.85em; color: #666; display: block; margin-top: 5px; }
@media (max-width: 767px) { .p-plan-option { padding: 20px 15px; } .p-option-group__title { font-size: 1rem; } }

.p-option-message { padding: 0 10px; }
.p-option-message__lead { font-size: 1.1rem; font-weight: bold; color: var(--color-primary); text-align: center; margin-bottom: 20px; line-height: 1.6; border-top: 1px solid var(--color-secondary); border-bottom: 1px solid var(--color-secondary); padding: 20px 0; }
.p-option-spec { background-color: #fff; border: 2px solid #e0e0e0; border-radius: 8px; padding: 20px; margin-top: 20px; }
.p-option-spec__title { font-size: 1rem; font-weight: bold; background-color: #666; color: #fff; display: inline-block; padding: 5px 15px; border-radius: 4px; margin-bottom: 15px; }
.p-option-spec__row { margin-bottom: 20px; border-bottom: 1px dashed #e0e0e0; padding-bottom: 20px; }
.p-option-spec__row:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.p-option-spec__label { font-size: 1rem; font-weight: bold; color: #333; margin-bottom: 5px; border-left: 4px solid var(--color-secondary); padding-left: 10px; }
.u-list-note { list-style: none; font-size: 0.85rem; color: #666; margin-top: 5px; }
.u-list-note li::before { content: "※"; margin-right: 3px; }
.p-list-simple { display: flex; flex-wrap: wrap; font-size: 0.95rem; }
.p-list-simple dt { font-weight: bold; margin-right: 10px; color: var(--color-primary); }
.p-list-simple dd { margin-right: 20px; margin-bottom: 5px; }
@media (min-width: 768px) { .p-option-message__lead { font-size: 1.3rem; } .p-option-spec { padding: 30px; } .p-option-spec__row { display: flex; align-items: flex-start; } .p-option-spec__label { flex: 0 0 150px; margin-bottom: 0; margin-top: 5px; } .p-option-spec__content { flex: 1; } }

.p-plan-special { background-color: #fff; border: 1px solid #dcdcdc; padding: 40px 20px; margin-top: 60px; text-align: center; position: relative; }
.p-plan-special__label { display: inline-block; font-family: var(--font-sans); font-size: 0.9rem; letter-spacing: 0.1em; color: #999; border: 1px solid #ccc; padding: 5px 15px; margin-bottom: 20px; text-transform: uppercase; }
.p-plan-special__title { font-size: 1.8rem; color: #333; font-weight: 500; margin-bottom: 20px; letter-spacing: 0.05em; }
.p-plan-special__lead { font-size: 1rem; line-height: 2; color: #555; margin-bottom: 30px; }
.p-plan-special__info { display: inline-block; text-align: left; background: #fcfcfc; padding: 20px 30px; border-radius: 4px; }
.p-plan-special__notes { list-style: none; font-size: 0.95rem; color: #333; line-height: 1.8; }
.p-plan-special__notes li::before { content: "・"; margin-right: 5px; }
.p-plan-special__caution { margin-top: 10px; font-size: 0.85rem; color: #888; }
.c-btn--border { background: transparent; border: 1px solid var(--color-primary); color: var(--color-primary); padding: 12px 50px; }
.c-btn--border:hover { background: var(--color-primary); color: #fff; }
@media (min-width: 768px) { .p-plan-special { padding: 60px; max-width: 900px; margin-left: auto; margin-right: auto; } .p-plan-special__title { font-size: 2.2rem; } }

.p-hero-custom { padding: 80px 20px; text-align: center; background: #fdfdfd; }
.p-hero-custom__label { display: block; font-family: var(--font-sans); color: var(--color-primary); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 15px; text-transform: uppercase; }
.p-hero-custom__title { font-size: 2rem; color: #333; margin-bottom: 20px; font-weight: 500; }
.p-hero-custom__catch { font-size: 1.2rem; font-weight: bold; color: var(--color-text); margin-bottom: 30px; position: relative; display: inline-block; }
.p-hero-custom__catch::after { content: ""; display: block; width: 40px; height: 1px; background: var(--color-primary); margin: 20px auto 0; }
.p-hero-custom__lead { font-size: 1rem; line-height: 2; color: #555; }
@media (min-width: 768px) { .p-hero-custom { padding: 120px 20px; } .p-hero-custom__title { font-size: 2.8rem; } .p-hero-custom__catch { font-size: 1.5rem; } .p-hero-custom__lead { font-size: 1.1rem; } }
.p-custom-points { display: flex; flex-direction: column; gap: 15px; padding: 0; list-style: none; margin: 30px 0; }
.p-custom-points li { font-size: 1.1rem; font-weight: bold; color: var(--color-primary); text-align: center; border-bottom: 1px solid #ddd; padding-bottom: 10px; }
@media (min-width: 768px) { .p-custom-points { flex-direction: row; justify-content: center; gap: 20px; } .p-custom-points li { border-bottom: none; padding-bottom: 0; white-space: nowrap; } .p-custom-points li:not(:last-child)::after { content: "/"; margin-left: 20px; color: #ccc; font-weight: normal; } }
.p-attention-box { border: 1px solid #ccc; background-color: #fff; padding: 30px 20px; text-align: center; }
.p-attention-box__title { font-size: 1.3rem; margin-bottom: 20px; color: #555; }
@media (min-width: 768px) { .p-attention-box { padding: 50px; max-width: 800px; margin: 0 auto; } }
.p-fit-check { display: flex; flex-wrap: wrap; gap: 30px; }
.p-fit-check__col { flex: 1 1 100%; background: #fff; padding: 30px; border-radius: 8px; }
.p-fit-check__col--muted { background: transparent; border: 2px dashed #ccc; }
.p-fit-check__sub-title { font-size: 1.2rem; margin-bottom: 15px; color: #666; }
@media (min-width: 768px) { .p-fit-check__col { flex: 1; } }

/* Page Top Button */
html { scroll-behavior: smooth; }
.c-page-top { position: fixed; right: 30px; bottom: 30px; z-index: 900; width: 50px; height: 50px; background-color: var(--color-primary); color: var(--color-white); border-radius: 4px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s, background-color 0.3s; }
.c-page-top.is-active { opacity: 1; visibility: visible; }
.c-page-top:hover { background-color: var(--color-secondary); opacity: 1; }
.c-page-top__icon { display: block; width: 12px; height: 12px; border-top: 2px solid var(--color-white); border-right: 2px solid var(--color-white); transform: rotate(-45deg); margin-top: 6px; }
@media (max-width: 767px) { .c-page-top { right: 16px; bottom: 90px; width: 44px; height: 44px; } }

/* ============================================
   トップページ：コンセプトエリア（背景文字 HFF左揃え・全デバイス対応版）
   ============================================ */
.p-concept-area__inner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 40px;
}

.c-bg-text {
    position: absolute;
    top: -40px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: max-content; 
    text-align: left;
    user-select: none;
    pointer-events: none;
}

.c-bg-text span {
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 10rem; 
    color: #f2f4f4;   
    opacity: 1;
    line-height: 1.15; 
    letter-spacing: -0.02em; 
}

.c-bg-text span::first-letter {
    color: #ececec; 
}

.p-concept-area__content { position: relative; }

.p-concept-area__catch {
    font-family: "Shippori Mincho", serif;
    color: var(--color-primary);
    font-size: 1.25rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
    margin-top: 70px;
    margin-bottom: 20px;
}

.p-concept-area__catch span {
    font-size: 1.8rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 16px;
    border-bottom: 3px solid rgba(41, 154, 11, 0.2); 
    padding-bottom: 4px;
}

/* コンセプトエリアの英語サブタイトル */
.p-concept-area__sub-title {
    text-align: center;
    font-family: var(--font-sans); /* Helvetica Neue */
    color: #CCCC00;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-xs);
}

@media screen and (max-width: 767px) {
    .p-concept-area__inner {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .c-bg-text {
        top: 0;
        width: max-content; 
        text-align: left;
    }
    .c-bg-text span {
        font-size: 6.5rem;
        line-height: 1.15;
        color: #f5f5f5; 
    }
    .p-concept-area__catch {
        font-size: 1rem;
        margin-top: 40px;
    }
    .p-concept-area__catch span {
        font-size: 1.4rem;
        margin-top: 12px;
        border-bottom-width: 2px;
    }
}

