@charset "UTF-8";

/* =========================================
   ベース設定 (全幅・リセット)
   ========================================= */
.kounoike-full-content {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* 親CSSのフォント継承 */
    font-family: "Klee One", "Hiragino Kaku Gothic ProN", sans-serif;
    color: #41403e;
    line-height: 1.8;
}

.kounoike-full-content img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.text-center { text-align: center; }

/* =========================================
   テーマカラー定義 (ローカル変数)
   ========================================= */
/* ふれあい工房 (Pink) */
.theme-fureai {
    --main-color: #ec407a;
    --sub-color: #fce4ec;
    --accent-color: #8bc34a;
}

/* Win-Win (Green) */
.theme-winwin {
    --main-color: #558b2f;
    --sub-color: #f1f8e9;
    --accent-color: #fcd89f;
}

/* スタートライン (Orange) */
.theme-startline {
    --main-color: #e65100;
    --sub-color: #fff3e0;
    --accent-color: #ff9800;
}

/* =========================================
   セクションレイアウト
   ========================================= */
.facility-section {
    width: 100%;
    padding: 60px 0;
    /* 背景色をテーマごとに薄く適用 */
    background-color: var(--sub-color);
}

.facility-inner {
    /* コンテンツ幅の制御 */
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    /* ノート風の装飾 */
    border-radius: 2px 20px 2px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* =========================================
   ヘッダー & タイトル
   ========================================= */
.facility-name {
    text-align: center;
    font-size: 2.2rem;
    color: var(--main-color);
    margin-bottom: 5px;
    border: none;
    background: none;
    box-shadow: none;
}

.facility-type {
    text-align: center;
    display: inline-block;
    width: 100%;
    font-weight: bold;
    color: #666;
    margin-bottom: 40px;
}

.hero-block {
    text-align: center;
    margin-bottom: 50px;
}
.hero-block img {
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    border-radius: 10px;
    margin-bottom: 20px;
}
.hero-text {
    font-size: 1.1rem;
    color: #444;
}

/* 手書き風 中見出し */
.handwritten-h3 {
    text-align: center;
    font-size: 1.6rem;
    color: #333;
    margin: 0 0 30px;
    padding-bottom: 10px;
    border-bottom: 3px dashed var(--main-color);
}
.handwritten-h3 small {
    font-size: 0.7em;
    font-weight: normal;
    color: #666;
}

/* =========================================
   コンテンツパーツ
   ========================================= */
.content-row {
    margin-bottom: 60px;
}

/* カードレイアウト */
.card-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.card-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 15px 25px 15px 25px; /* 不揃いな角 */
    padding: 20px;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.05);
}
.card-item h4 {
    text-align: center;
    color: var(--main-color);
    border-bottom: 1px dotted #ccc;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 1.2rem;
}
.card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

/* 中央配置カード（スタートライン用） */
.center-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 15px;
    padding: 30px;
}

/* リスト */
.icon-list, .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.icon-list li, .check-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 5px;
}
.icon-list li::before, .check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
}
.center-list {
    display: inline-block;
    text-align: left;
}

/* 特徴エリア背景 */
.bg-paper {
    background-color: var(--sub-color);
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed var(--main-color);
}

.feature-cols {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.feature-col {
    flex: 1;
    min-width: 280px;
}

.marker-line {
    background: linear-gradient(transparent 60%, rgba(255,255,255,0.7) 60%);
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--main-color);
}

/* Win-Win具体例ボックス */
.example-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px dotted #ccc;
    margin: 15px 0;
    font-size: 0.95em;
}
.example-box ul {
    padding-left: 20px;
    margin: 5px 0 0;
}

.sticky-note {
    background: #fff9c4; /* 黄色い付箋 */
    padding: 15px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
    transform: rotate(1deg);
    margin-top: 20px;
    position: relative;
}
.sticky-note::after {
    content: "";
    position: absolute;
    top: -10px; left: 50%; width: 80px; height: 25px;
    background: rgba(0,0,0,0.1); /* マステ風 */
    transform: translateX(-50%) rotate(-2deg);
}

/* フローチャート */
.flow-chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.flow-step {
    background: #fff;
    border: 1px solid var(--main-color);
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: bold;
    position: relative;
}
.flow-step:not(:last-child)::after {
    content: "▶";
    position: absolute;
    right: -18px;
    color: #ccc;
}
.time-badge {
    background: var(--main-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-right: 5px;
}

/* 2カラムレイアウト (テーブル & FAQ) */
.split-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.split-col {
    flex: 1;
    min-width: 300px;
}
.sub-h4 {
    text-align: center;
    color: var(--main-color);
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* テーブル */
.simple-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.simple-table th, .simple-table td {
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: top;
}
.simple-table th {
    background: var(--sub-color);
    color: #333;
    width: 30%;
    text-align: center;
    white-space: nowrap;
}
.center-table { margin: 0 auto; max-width: 800px; }

/* FAQ */
.faq-list dt {
    font-weight: bold;
    color: var(--main-color);
    margin-top: 10px;
}
.faq-list dd {
    margin-left: 15px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.mini-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    padding: 5px;
    background: #fafafa;
    border: 1px dotted #ccc;
}

/* アクセスパネル */
.access-panel {
    text-align: center;
    padding: 30px;
    border: 3px double var(--main-color);
    border-radius: 10px;
    background: #fff;
}
.contact-area {
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
}
.map-box {
    background: #eee;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    margin-top: 20px;
}

/* =========================================
   スマホ対応
   ========================================= */
@media screen and (max-width: 768px) {
    .facility-section { padding: 40px 0; }
    .facility-inner { padding: 20px; border-radius: 0; box-shadow: none; border-left: none; border-right: none;}
    
    .card-flex, .feature-cols, .split-layout {
        flex-direction: column;
    }
    
    .flow-step { width: 100%; text-align: center; box-sizing: border-box; }
    .flow-step:not(:last-child)::after {
        content: "▼";
        right: 50%;
        bottom: -22px;
        transform: translateX(50%);
    }
    .flow-chart { gap: 25px; }
    
    .simple-table th, .simple-table td {
        display: block;
        width: auto;
    }
    .simple-table th {
        background: var(--main-color);
        color: #fff;
    }
}