/* 全体共通設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
    color: #333;
    background-color:#f1f5f1;;
    line-height: 1.8;
    overflow-x: hidden;
}

/* PC対応：背景固定 ＆ コンテンツ中央寄せ */
@media (min-width: 768px) {
    body {
        background-image: url('../images/lp-main-background.webp');
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }

    /* 全セクションとフッターをスマホ幅で中央に寄せる */
    section, footer {
        width: 100% !important;
        max-width: 500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        scroll-margin-top: 80px;
        }
}

/* --- 以下、デザイン詳細（共通） --- */

/* フェードイン */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* セクション基本 */
section {
    padding: 60px 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 各セクションの色指定 */
.hero {
    background-color: rgba(199, 213, 200, 0.95);
    text-align: center;
    padding: 60px 24px 100px;
}

.question-section, .reasons-section, .flow-section, .cta-section, .reassurance-section {
    background-color: rgba(255, 255, 255, 0.95);
}

.concerns-section, .services-section  {
    background-color: rgba(199, 213, 200, 0.95);
}

.trust-section {
    background-color: rgba(64, 169, 157, 0.9);
    color: #FFFFFF;
    padding: 120px 24px;
    text-align: center;
}

/* アンカーリンク */
header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background-color: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(8px); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body {
    padding-top: 80px; 
}

.top-nav {
    max-width: 500px; 
    margin: 0 auto;   
    padding: 0 20px;  
}

.top-nav ul {
    display: flex;
    justify-content: center; /* 中央に寄せる */
    gap: 30px; /* リンク同士の間隔 */
    list-style: none;
    padding: 20px 0;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.top-nav a {
    text-decoration: none;
    color: #4a5d4b; /* サイトカラーの緑 */
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}


.btn-quote {
    color: #4a5d4b;
    font-weight: 800;
    margin: 0 5px;
    font-size: 1.2em;
    display: inline-block;
    }

.btn-quote::before {
    content: "✉";
    font-size: 1.1em;
    opacity: 0.8;
}


/* ヒーロー全体のコンテナ */
.hero {
    width: 100%;
    max-width: 500px; 
    margin: 0 auto;
    padding: 40px 20px 80px;
    background-color: rgba(199, 213, 200, 0.95);
    position: relative;
    }

/* 店名のスタイル */
.shop-name {
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.3em;
    font-size: 14px;
    margin-bottom: 30px; /* 下との余白 */
    color: #2c3e50;
}

.shop-logo {
    width: 180px; 
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

/* ロゴの横のテキスト */
.shop-name-sub {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 5px;
}

/* メインビジュアルの囲い */
.hero-main-visual {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

/* フェードインの中を調整 */
.hero .fade-in {
   display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* 縦書きタイトルの位置 */
.hero-title.vertical-text {
    writing-mode: vertical-rl;
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 10;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.2em;
    padding: 15px 5px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    opacity: 0.8;
}

/* メイン画像 */
.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.hero-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
}

/* サブタイトル */
.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    text-align: center; 
    width: 100%;
    padding: 0 10px;
    margin-bottom: 40px;
    color: #333;
}


/* スマホ用の調整（変に重なるのを防ぐ） */
@media (max-width: 480px) {
    .hero-title.vertical-text {
        font-size: 1.5rem;
        right: 5px;
    }
    .hero-subtitle {
        padding-right: 40px;
    }
}

/* 問いかけセクション（question-section） */
.question-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fff; 
    text-align: center;
}

/*  横長写真の設定 */
.question-image {
    width: 100%;
    height: 200px;
    margin: 30px 0; /* タイトルと文章の間に余白を作る */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.question-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.question-section .section-title {
    font-size: 22px;
    color: #2c3e50;
    line-height: 1.6;
}

.question-section .section-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* つなぎ目を自然にするための微調整 */
.cta-section {
    padding-top: 20px; 
}


.section-title { font-size: 22px; margin-bottom: 40px; text-align: center; }
.section-text { font-size: 16px; text-align: center; }


/* 悩みセクション */
.concerns-section {
    padding: 60px 20px;
    background-color: rgba(199, 213, 200, 0.95); 
    position: relative;
    overflow: visible;
    }


.concerns-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr; /* きれいに2列に並べるお */
    gap: 15px;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
}

.concerns-list li {
    background-color: #FFFFFF;
    padding: 20px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* アイコン自体の設定 */
.concern-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* テキストの設定 */
.concerns-list li p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* 波型 */
.wave-separator {
    position: absolute;
    bottom: -1px; 
    left: 0;
    width: 100%; 
    line-height: 0;
    
}

.wave-separator svg {
    display: block;
    width: 100%;
    height: 60px; /* 波の高さ */
}


/* 解決セクション */
.solution-section {
    padding: 80px 20p 100px;
    background-color:#f9fbf9; 
    margin-top: -1px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.solution-sub-title {
    font-size: 1.5rem;
    color: #40A99D; /* アクセントカラー */
    margin-bottom: 15px;
    font-weight: bold;
}

.solution-section .section-title {
    margin-bottom: 30px;
}

.solution-section .section-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.wave-separator-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
   }

.solution-section .wave-separator-bottom {
    z-index: 3; /* タイトルの背景より数字を大きくする */
}


/* ストーリー */
.story-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.story-section .section-title {
    font-size: 22px;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

/* タイトルの下の飾り線 */
.story-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    
    /* ✨ ミシン目っぽくするポイント */
    width: 80%; /* 長めに設定 */
    height: 1.5px; /* 少しだけ太さを出す */
    border-bottom: 2px dashed #c7d5c8; /* dashedで点線（ミシン目）にするお！ */
    
    background-color: transparent; /* 背景色は透明にする */
}

.story-section .section-text {
    font-size: 15px;
    line-height: 2; /* 行間を広げて読みやすく */
    color: #555;
    margin-bottom: 30px;
}

/* ストーリーセクション内の画像 */
.story-image-philosophy {
    width: 100%;
    max-width: 400px; /* 少し小さめにして、文章と哲学の間に収める */
    margin: 40px auto; /* 上下左右にしっかり余白を取る */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* 深めの影で写真に重厚感を出す */
}

.story-visual-container img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
}

/* 哲学（キャッチコピー）の強調 */
.story-philosophy {
    border: 1px solid #c7d5c8;
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Shippori Mincho', serif;
    color: #4a5d4b;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* 写真と文字を重ねるための親要素 */
.story-visual-container {
    position: relative; /* 中の要素を自由に配置するための基準 */
    width: 100%; 
    max-width: 460px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* 画像の周りをぼかす（ふんわりさせる） */
.story-visual-container img {
    width: 100%;
    max-width: 460px;
    display: block;
    border-radius: 15px; /* 少し角を丸く */
    /* マスク機能を使って周囲を透過・ぼかします */
    mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
}

/* 画像の真ん中に文字を配置 */
.story-philosophy-overlay {
    position: absolute; /* 画像の上に浮かせます */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 完全にど真ん中へ */
    
    /* 文字を読みやすくする工夫 */
    background: rgba(255, 255, 255, 0.5); /* 白い半透明のベール */
    padding: 20px 40px;
    backdrop-filter: blur(5px); /* 背景をさらに少しボカして高級感を出す */
    border: 1px solid rgba(74, 93, 75, 0.3);
    white-space: nowrap; /* 改行させない */
    width: 80%;
    max-width: 300px;
    text-align: center;
}

.story-philosophy-overlay p {
    margin: 0;
    font-family: 'Shippori Mincho', serif;
    color: #4a5d4b;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}


/* 理由セクション */
.reasons-section {
    padding: 60px 80px 20px;
    background-color: #f9fbf9; 
    position: relative;
}

/* カードを包むコンテナ */
.reason-cards {
    display: flex;
    flex-direction: column; 
    gap: 40px; 
    max-width: 600px; 
    margin: 0 auto;
}

/* カード1枚の設定 */
.reason-card {
    position: relative; /* 文字を写真の上に乗せるための基準 */
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.reason-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85); /* 白の半透明 */
    backdrop-filter: blur(5px); 
    padding: 25px 20px;
    box-sizing: border-box;
}

/* 画像エリア */
.reason-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を切り抜いてフィットさせる */
}

/* カード内のテキストエリア */
.reason-card .reason-title {
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.reason-card .reason-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.reason-card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(255,255,255,0.5); /* 写真の内側に白いミシン目 */
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
}

.reasons-section > .fade-in > p {
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #c49d83;
    line-height: 2;
    margin-top: 40px;
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    border-top: 1px solid #e0d8d0;
    border-bottom: 1px solid #e0d8d0;
}

/* サステナブルセクション */
.sustainable-section {
    padding: 120px 20px;
    background-color: rgba(199, 213, 200, 0.95); 
    background-image: radial-gradient(#d1c4b7 0.5px, transparent 0.5px); /* 微細なドットで質感を */
    background-size: 20px 20px;
    text-align: center;
}

.sustainable-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.7); /* 半透明の白で文字を浮かせる */
    backdrop-filter: blur(5px);
    border-radius: 2px;
}

.sustainable-label {
    display: block;
    font-family: serif;
    color: #a68b7c;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sustainable-title {
    font-size: 2rem;
    color: #5d524a;
    margin-bottom: 30px;
    line-height: 1.5;
}

.sustainable-text {
    font-size: 1rem;
    line-height: 2;
    color: #666;
    margin-bottom: 40px;
}

/* 決め台詞的な引用部分 */
.sustainable-quote {
    font-family: serif;
    font-size: 1.2rem;
    color: #7d6b5d;
    line-height: 1.8;
    padding: 30px;
    border: 1px solid #d1c4b7;
    background: #fff;
    display: inline-block;
}

@media (max-width: 768px) {
    .sustainable-title { font-size: 1.6rem; }
    .sustainable-container { padding: 40px 20px; }
    .sustainable-quote { font-size: 1.1rem; }
}

.sdgs-concept {
    padding: 60px 20px;
    background: rgba(199, 213, 200, 0.95);
    text-align: center;
}

.sdgs-symbol {
    margin-bottom: 10px;
}

.clover-img {
    width: 400px; 
    height: 300px;
    }

.sdgs-title {
    font-family: serif;
    font-size: 2rem;
    color: #4a5d4c; /* 深みのあるグリーン */
    margin: 0;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

/* タイトルの下に細いラインを入れて地味さを払拭 */
.sdgs-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 1px;
    background: #c49d83;
    margin: 10px auto 0;
}

.sdgs-lead {
    font-size: 0.9rem;
    color: #7d6b5d;
    margin-top: 15px;
    font-weight: 500;
}

.sdgs-grid {
    display: block;
    gap: 30px;
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}

.sdgs-item {
    display: flex;
    align-items: flex-start; /* アイコンを上に揃える */
    gap: 20px;
    background: #fdfaf7;     /* ほんのり温かみのある背景色 */
    padding: 25px;
    border-radius: 12px;     /* 角を丸くして優しさを */
    border: 1px solid #eee;
    margin-bottom: 20px;
}

/* SDGsの数字アイコンを上品に */
.sdgs-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #c49d83;     /* ブランドカラー */
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
}

.sdgs-content {
    text-align: left; /* 左揃えにして読みやすく */
}

.sdgs-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #7d6b5d;
}

.sdgs-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 500px) {
    .sdgs-item {
        flex-direction: column; /* スマホではアイコンを上、文字を下に */
        align-items: center;
        text-align: center;
    }
    .sdgs-content {
        text-align: center;
    }
}

.sustainable-loop-container {
    width: 100%;
    max-width: 900px; /* 画像が大きすぎないように適宜調整してね */
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.loop-image-full {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(125, 107, 93, 0.1));
    transition: transform 0.3s ease;
}


.loop-image-full:hover {
    transform: translateY(-5px);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* CEO */
.message-section {
    padding: 80px 20px;
    background: #fdfaf7; 
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box; 
    overflow: hidden;
}

.message-box {
    max-width: 500px;
    margin: 0 auto;
    border-top: 1px solid #d1c4b7;
    border-bottom: 1px solid #d1c4b7;
    padding: 50px 0; 
    box-sizing: border-box;
}

.message-lead {
    font-family: 'Playfair Display', serif;
    color: #c49d83;
    letter-spacing: 0.2em;
    font-style: italic;
    margin-bottom: 20px;
}

.message-title {
    font-family: serif;
    font-size: 1.8rem;
    color: #4a5d4c;
    margin-bottom: 30px;
}

.message-body {
    line-height: 1.8;
    color: #5d524a;
    font-size: 1rem;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.message-signature {
    margin-top: 40px;
    text-align: right;
    font-family: serif;
    font-size: 1.1rem;
}


/* できること */
.services-section {
    padding: 60px 20px;
    background-color:#fff; 
    position: relative;
    overflow: visible;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* スマホでも綺麗に並ぶお */
    gap: 15px;
    margin: 40px auto;
    max-width:400px;
}

/* カードのデザイン */
.service-card {
    background: #fff;
    border: 1px solid #c7d5c8; /* ミシン目と同じ淡いグリーン */
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;    /* 横方向の真ん中 */
    justify-content: flex-start;
    gap: 8px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px); /* ちょっと浮き上がる演出 */
}

/* イラストのサイズ */
.service-illustration {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 16px;
    color: #4a5d4b;
    margin-bottom: 8px;
    font-weight: bold;
    margin-top: 0;
}

.service-card p {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    margin: 0;
    margin-top: auto;
}

.service-note {
    font-size: 13px;
    color: #999;
    margin-top: 20px;
}

/* 料金表へのボタン */
.btn-container {
    margin-top: 30px;
}

.btn-detail-price {
    display: inline-block;
    padding: 15px 35px;
    background-color: #5A8F83; 
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-detail-price:hover {
    background-color: #4A766D;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    opacity: 1; 
}

/* 料金ガイド全体のコンテナ */
.price-visual-guide {
    background-color: #fdfdfd;
    border: 1px solid #eef2ef;
    border-radius: 20px;
    padding: 30px 10px;
    margin: 50px auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 93, 75, 0.05);
}

.guide-title {
    font-family: 'Shippori Mincho', serif;
    color: #4a5d4b;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.main-rule {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.main-rule strong {
    color: #4a5d4b;
    font-size: 1.4rem;
    border-bottom: 2px solid #c7d5c8;
}

/* 横並びのレイアウト */
.guide-flex {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap; 
    overflow-x: hidden;
}

/* 各計算カード */
.guide-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px 10px;
    flex: 1;
    min-width: 0;;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.guide-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    /* 画像を少しふんわりさせる */
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.05));
}

.guide-card h4 {
    color: #4a5d4b;
    font-size: 0.9rem; /* 少し小さく */
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-card h4::before {
    content: '📌'; /* ちょっとしたアクセント */
    margin-right: 8px;
    font-size: 1rem;
}

.guide-card p {
    font-size: 1rem;
    color: #555;
}

.guide-card p span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8a9a8b; /* 落ち着いたグリーン */
    margin-top: 5px;
}

/* 下部のオプション表記 */
.option-tag {
    margin-top: 40px;
    display: inline-block;
    padding: 8px 25px;
    background: #f0f4f0;
    color: #5d755e;    
    font-size: 0.9rem;
    font-weight: bold;
}

.price-disclaimer {
    margin-top: 20px;
    font-size: 0.8rem; /* 少し小さく */
    color: #999; /* 控えめな色 */
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/* フロー */
.flow-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    overflow: hidden;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    color: #4a4a4a;
}

.section-title {
    text-align: center;
    color: #7d6b5d; /* モリス風の茶系 */
    margin-bottom: 50px;
    font-size: 1.8rem;
}

/* 各ステップの共通設定 */
.flow-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 0; /* 矢印で繋ぐから0 */
    position: relative;
}

/* 左右交互の切り替え */
.left-aligned { flex-direction: row; }
.right-aligned { flex-direction: row-reverse; }

/* 内容と画像の幅調整 */
.flow-content { flex: 1.2; }
.flow-image-box { 
    flex: 0.8; 
    text-align: center;
    background: transparent; /* 背景を透明に指定 */
    padding: 0; /* ボックス自体の余白をゼロに */
}
.flow-image-box img {
    width: 100%;
    max-width: 200px; /* アイコンが大きくなりすぎないように */
    height: auto;
    mix-blend-mode: multiply;
}

/* ステップ番号 */
.step-number {
    display: inline-block;
    color: #c49d83;
    font-weight: bold;
    border-bottom: 2px solid #c49d83;
    margin-bottom: 10px;
}

/* ステッチ矢印の魔法 */
.stitch-arrow {
    width: 100%;
    height: 80px; /* 矢印の高さ */
    position: relative;
    border-bottom: 3px dashed #d1c4b7; /* ここがステッチ！ */
}

/* 矢印のカーブ（擬似要素で作成） */
.stitch-arrow.right-to-left {
    border-right: 3px dashed #d1c4b7;
    border-bottom-right-radius: 40px;
    margin: -10px 10% 20px 0;
    width: 80%;
    margin-left: auto;
}

.stitch-arrow.left-to-right {
    border-left: 3px dashed #d1c4b7;
    border-bottom-left-radius: 40px;
    margin: -10px 0 20px 10%;
    width: 80%;
}

/* 注意書きのスタイル */
.caution-text {
    font-size: 0.85rem;
    background-color: #fcfaf8;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .stitch-arrow.right-to-left,
    .stitch-arrow.left-to-right {
        /* 横曲がりをリセットして、縦一本の線にするお */
        width: 0 !important;
        height: 60px; /* 縦の長さ */
        margin: 10px auto !important; /* 真ん中に寄せる */
        border-bottom: none !important;
        border-right: none !important;
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        
        /* 真ん中に縦のステッチを引く */
        border-left: 3px dashed #d1c4b7 !important;
    }

    /* 矢印の先端（▶︎）を縦のステッチの下に出すための魔法 */
    .stitch-arrow::after {
        content: '▼'; /* 下向きの先端 */
        position: absolute;
        bottom: -15px;
        left: -10px; /* border-leftの位置に合わせる */
        color: #d1c4b7;
        font-size: 18px;
    }
}

/* クリーニング・メンテナンスセクション */
.cleaning-section {
    max-width: 800px; 
    margin: 0 auto;
    background-color: rgba(199, 213, 200, 0.95);
    padding: 60px 20px;
    color: #4a4a4a;
}

.service-block {
    display: flex;
    flex-direction: column; /* 常に縦並び！ */
    align-items: center;    /* 中央揃え */
    text-align: center;     /* 文字も中央揃え */
    margin-bottom: 80px;
    gap: 20px;
}

.service-block.reverse {
    flex-direction: column; 
}

/* テキストエリア */
.service-content {
    width: 100%;
}

.service-label {
    display: block;
    font-family: serif;
    color: #c49d83;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    margin-bottom: 12px;
}

.service-title {
    font-size: 1.5rem;
    color: #7d6b5d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* 価格ボックス：横いっぱいの安定感 */
.price-card {
    margin-top: 10px;
    padding: 20px 30px;
    background: #fff;
    border: 1px solid #e0d8d0;
    border-radius: 4px; /* 角丸を控えめにしてシャープに */
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.price-formula {
    font-size: 1.2rem;
    font-weight: bold;
    color: #7d6b5d;
    margin-bottom: 5px;
}

/* アイコン・画像エリア */
.service-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    order: -1; /* 画像をテキストの上に持ってくるお！ */
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    max-width: 160px;
    height: auto;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

/* ホバー */
.service-block:hover .service-icon img {
    transform: translateY(-5px);
}

/* プリーツ加工タグ */
.feature-tag {
    display: inline-block;
    padding: 6px 20px;
    background: #c49d83;
    color: #fff;
    border-radius: 2px;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* --- 出張採寸セクション全体 --- */
.visit-section {
    background-color: #f9fbf9; /* ほんのり緑がかった白 */
    padding: 60px 20px;
    text-align: center;
}

.visit-container {
    max-width: 800px;
    margin: 0 auto;
}

.visit-header {
    margin-bottom: 30px;
}

/* 新潟県外OKのバッジ */
.area-badge {
    display: inline-block;
    background-color: #e67e22; /* 少し目立つアクセントカラー */
    color: white;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.visit-title {
    color: #4a5d4b;
    font-size: 24px;
    margin: 0;
}

.visit-body {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

/* 注釈ボックス */
.visit-policy {
    background: white;
    border: 1px solid #c7d5c8;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.policy-main {
    font-weight: bold;
    color: #4a5d4b;
    margin: 0 0 5px 0;
}

.policy-note {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* 車が走るステージの設定 */
.car-stage {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden; /* 画面外からはみ出た車を隠す */
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* 🏎️ くまちゃん号の動き */
.kuma-car {
    width: 180px; /* サイズは調整してね */
    z-index: 2;
    /* 動きの指定：8秒で画面横断 ＋ 0.3秒でトコトコ揺れる */
    animation: 
        drive-around 10s linear infinite,
        toko-toko 0.3s ease-in-out infinite;
}

/* 🛣️ 地面（道）のライン */
.road-line {
    position: absolute;
    bottom: 20px;
    width: 100%;
    height: 2px;
    background: #c7d5c8; /* サイトカラーの淡いグリーン */
    z-index: 1;
}

/* 💨 横に走るアニメーション */
@keyframes drive-around {
    0% { transform: translateX(200%); }   /* 右端の外からスタート */
    100% { transform: translateX(-200%); } /* 左端の外へ消える */
}

/* 🎈 上下にトコトコ揺れるアニメーション */
@keyframes toko-toko {
    0%, 100% { margin-bottom: 0; }
    50% { margin-bottom: 3px; } /* 3pxだけ浮くのが「トコトコ感」のコツ */
}

.visit-cta {
    margin-top: 40px;
}

.cta-lead {
    font-size: 14px;
    color: #4a5d4b;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-consult {
    display: inline-block;
    background-color: #4a5d4b; /* サイトのメインカラー */
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px; /* ここはボタンらしく角丸で！ */
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(74, 93, 75, 0.3);
    transition: all 0.3s ease;
}

.btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 93, 75, 0.4);
    background-color: #5d745e;
}

.cta-note {
    font-size: 11px;
    color: #888;
    margin-top: 15px;
}

/* --- 事例セクション全体 --- */
.case-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.case-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* タイトル周り */
.section-title {
    color: #4a5d4b;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.section-lead {
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

/* グリッドレイアウト */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* スマホでも自動で縦に並ぶお */
    gap: 30px;
}

/* 事例カード */
.case-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden; /* 画像の角丸をはみ出さないように */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px); /* マウス乗せたらちょっと浮くお */
}

/* 画像エリア */
.case-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* 写真の比率を統一 */
    background: #eee; /* 写真がない時の背景色 */
}

.case-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* どんな写真が来ても綺麗に収めるお */
}

/* カテゴリタグ */
.case-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(74, 93, 75, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* テキストエリア */
.case-content {
    padding: 20px;
    text-align: left;
}

.case-content h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px 0;
}

.case-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- キャンペーンセクション全体 --- */
.campaign-section {
    background-color: #f0f4f0; /* 少し濃いめの背景で注目を集める */
    padding: 80px 20px;
    text-align: center;
}

.campaign-container {
    max-width: 900px;
    margin: 0 auto;
}

.campaign-banner {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
    border-radius: 10px; /* バナーの角を少し丸くすると馴染むお */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.campaign-banner:hover {
    transform: scale(1.02); /* マウス乗せると少し大きくなって「押せる感」を出す */
}

/* 注目バッジ */
.campaign-badge {
    display: inline-block;
    background-color: #ff6b6b; /* 注意を引く赤系 */
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
    transform: rotate(-2deg); /* 少し傾けて「お得感」を出すお */
}

/* ステップカードの並び */
.campaign-steps {
    display: flex;
    flex-direction: column;
    gap: 30px; 
    margin: 40px auto;
    width: 100%;
    max-width: 400px;
}

@media (max-width: 768px) {
    .campaign-steps { flex-direction: column; }
}

.step-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    flex: 1;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.step-card:last-child {
    margin-bottom: 0;
}

.step-card:not(:last-child)::after {
    content: '▼';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #4a5d4b;
    font-size: 18px;
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a5d4b;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
    font-weight: bold;
    font-size: 20px;
}

/* ボタンエリア */
.campaign-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.btn-line {
    background-color: #06C755; /* LINEカラー */
    color: #fff;
    padding: 15px 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}

.btn-line:hover { opacity: 0.8; transform: scale(1.05); }

/* 折りたたみ注意事項 */
.campaign-terms {
    margin-top: 40px;
    text-align: left;
    background: rgba(255,255,255,0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

.campaign-terms summary {
    cursor: pointer;
    font-size: 14px;
    color: #666;
    font-weight: bold;
    padding: 10px 0;
}

.terms-content {
    font-size: 12px;
    line-height: 1.8;
    color: #777;
    padding-bottom: 10px;
}


/* CTAボタン */
.cta-button, .btn-consult {
    display: inline-block;
    background-color:#5A8F83; /* ベースの色 */
    color: #FFFFFF;
    padding: 22px 50px; /* 丸すぎない「布の端」っぽい感じ */
    text-decoration: none;
    font-weight: 600;
    position: relative;
    letter-spacing: 0.15em;
    /* ミシン目 */
    border: 1px dashed rgba(255, 255, 255, 0.5); /* 白い点線 */
    outline: 1px solid rgba(255, 255, 255, 0.3); /* 点線の外側に本体の色で枠を作る */
    outline-offset: -8px; /* 枠を内側に食い込ませてステッチに見せる */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* 少し厚みを出して布っぽく */
    transition: all 0.3s ease;
}

.cta-button:hover, .btn-consult:hover {
    background-color: #4A766D;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* コンタクト */
.reassurance-box {
    background: #fff;
    border: 2px solid #eef2ee;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px; /* ボタンとの距離 */
    display: inline-block; /* 中身に合わせる */
}

.reassurance-title {
    font-size: 1rem;
    color: #4a5d4b;
    margin-bottom: 15px;
}

.reassurance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* 横に並べてスッキリさせる */
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* スマホでは縦に並べるお */
@media (max-width: 480px) {
    .reassurance-list {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
}

.contact-section {
    padding: 80px 20px;
    background-color: #f9fbf9; /* 優しい薄緑の背景 */
    text-align: center;
}

.contact-container {
    max-width: 400px; /* 縦長に収めるために幅を絞る */
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* 縦並び！ */
    gap: 20px;
}

.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 22px 0; /* 上下のパディングを揃える */
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.15em;
    position: relative;
    
    /* ✨ ここがこだわり！ミシン目デザイン */
    border: 1px dashed rgba(255, 255, 255, 0.5); 
    outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: -8px;
    
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mail-btn { 
    background-color: #f9fbf9; /* 背景に近い色 */
    color: #5A8F83; 
    border: 1px dashed rgba(90, 143, 131, 0.5); /* 点線をベース色に */
    outline: 1px solid rgba(90, 143, 131, 0.3);
}

/* 色だけは各役割に合わせつつ、ステッチを活かすお */
.line-btn { background-color: #06C755; color: #fff; }
.form-btn { background-color: #5A8F83; color: #fff; } /* ベース色と統一 */


.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.contact-text {
    text-align: center; /* テキストも中央揃えに */
}

.contact-text h3 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.1em; /* 英語メニューに合わせたこなれ感 */
}

.contact-text p {
    margin: 8px 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* 各ボタンの色分け */
.line-btn { background-color: #06C755; color: #fff; }
.mail-btn { background-color: #fff; border: 1px solid #4a5d4b; color: #4a5d4b; }
.form-btn { background-color: #4a5d4b; color: #fff; }


/* フローティングボタン */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 50px;
    width: 55px;  
    height: 55px;
    background-color: #5A8F83;
    background-color: rgba(90, 143, 131, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* Safari用 */
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: bold;
    z-index: 100;
    transition: all 0.3s ease;
    border: 1.5px dashed rgba(255, 255, 255, 0.6);
    outline: 1.5px solid rgba(255, 255, 255, 0.4);
    outline-offset: -6px; /* 円の内側にステッチを走らせる */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
.back-to-top:hover {
    transform: rotate(15deg) scale(1.1); 
    background-color: rgba(74, 118, 109, 0.9); 
    opacity: 1;
    }

/* フッター */
footer {
    background-color: #3e4d3f; /* 少しだけ深い緑にして重厚感を */
    color: #fff;
    padding: 80px 24px 40px;
    text-align: center;
}

.footer-container {
    max-width: 460px; /* 少し絞って密度を上げる */
    margin: 0 auto;
}

/* ショップ名とロゴ周りをエモく */
.footer-shop-name {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.2em; /* 文字間を広げて「仕立て屋」感を */
    margin-bottom: 5px;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin: 20px 0;
    opacity: 0.9;
    /* 白抜きロゴなら最高、カラーなら少し彩度を落とすと馴染むお */
}

/* 住所エリアを中央に寄せて、少し「枠」を感じさせる */
.footer-info {
    display: inline-block; /* 中央寄せしつつ中身は左揃えに */
    text-align: left;
    margin: 40px auto;
    padding: 20px;
    border: 1px dashed rgba(255,255,255,0.2); /* ミシン目をフッターにも！ */
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: flex-start; /* 複数行になってもアイコンが上にくる */
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* アイコンに色をつけてアクセントに */
.info-icon {
    color: #c7d5c8; /* サイトの薄緑色をアクセントに */
    font-size: 1rem;
}

/* コピーライト周り */
.footer-sen {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

.copyright {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
}