section-title@charset "UTF-8";

/* CSS Document */
/* ==========================================================================
   1. 全体設計と基本設定（あたたかみ・丸み・フォント）
   ========================================================================== */
html {
    scroll-behavior: smooth; /* JavaScriptなしで滑らかなページ内リンクを実現 */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif; /* 全編あたたかい丸ゴシック */
    color: #4a3b32; /* 優しいダークブラウン（真っ黒を避けて柔らかく） */
    background-color: #fffdf9; /* ほんのり温かみのある白 */
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 背景色のバリエーション */
.bg-yellow-light { background-color: #fff9e6; }
.bg-orange-light { background-color: #fff2e6; }

/* セクションの共通設定 */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 30px;
    text-align: center;
    color: #e67e22; /* 暖かなオレンジ */
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

/* タイトルの下のかわいい丸下線 */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background-color: #f1c40f; /* ひだまりイエロー */
    border-radius: 10px;
    margin: 15px auto 0;
}

/* レイアウト：2段組み（レスポンシブ対応） */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   2. 各パーツのデザイン（ヘッダー・写真枠・テーブルなど）
   ========================================================================== */

/* ヘッダー固定表示 */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header-nav a {
    text-decoration: none;
    color: #5d4037;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: #e67e22;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    .header-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }
    .header-nav a {
        font-size: 14px;
    }
}

/* メインビジュアル */
.main-visual {
    background-color: #fcecd6; /* 写真が入るまでの仮背景 */
    height: 450px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.mv-content {
    margin: 0 auto;
    max-width: 800px;
}

.main-visual h2 {
    font-size: 38px;
    color: #d35400;
    margin-bottom: 20px;
}

.main-visual p {
    font-size: 20px;
}

/* 写真のダミー枠（丸みを持たせてあたたかく） */
.image-placeholder, .map-placeholder {
    background-color: #f5f0ea;
    border: 3px dashed #ddcbb4;
    border-radius: 30px; /* 大きめの丸み */
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: #8d7765;
}

.text-block h3 {
    font-size: 24px;
    color: #d35400;
    margin-bottom: 15px;
}

.text-block p {
    margin-bottom: 15px;
}

/* チェックリストの装飾 */
.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list li::before {
    content: '●';
    color: #f1c40f;
    position: absolute;
    left: 5px;
    font-size: 18px;
}

/* 相談支援のステップカード */
.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.card-step {
    display: flex;
    gap: 25px;
}

.step-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 30px;
    flex: 1;
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.04);
    position: relative;
    border: 2px solid #fff3cd;
}

.step-num {
    display: inline-block;
    background-color: #f1c40f;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-box h4 {
    font-size: 18px;
    color: #5d4037;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .card-step {
        flex-direction: column;
    }
}

/* スケジュール（表）のあたたかいデザイン */
.sub-heading {
    font-size: 22px;
    color: #d35400;
    margin: 40px 0 20px;
    text-align: center;
}

.schedule-table-wrapper {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 20px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table tr {
    border-bottom: 2px dashed #fcd8b3;
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.schedule-table th {
    width: 120px;
    padding: 20px 10px;
    font-size: 20px;
    color: #e67e22;
    text-align: left;
    vertical-align: top;
}

.schedule-table td {
    padding: 20px 10px;
    vertical-align: top;
}

/* ギャラリー（B型の商品紹介用） */
.gallery-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    flex: 1;
    text-align: center;
}

.img-box {
    background-color: #ffffff;
    height: 200px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fcd8b3;
    margin-bottom: 10px;
    color: #bfa38a;
}

.img-desc {
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-grid {
        flex-direction: column;
    }
}

/* アクセス・採用のテーブル情報 */
.info-table, .recruit-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.info-table th, .info-table td,
.recruit-table th, .recruit-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e0d5c1;
    text-align: left;
}

.info-table th, .recruit-table th {
    width: 120px;
    color: #8d7765;
    font-weight: 700;
}

/* 採用特別ボックス */
.recruit-box {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.02);
    border: 3px solid #ffecb3;
}

.recruit-box h3 {
    color: #d35400;
    margin-bottom: 15px;
    text-align: center;
}

.recruit-box > p {
    text-align: center;
    margin-bottom: 30px;
}

/* フッター */
.site-footer {
    background-color: #5d4037; /* 落ち着いたココアブラウン */
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}
