@charset "UTF-8";

/* ====================================
   カラー変数・基本設定
   ==================================== */
:root {
    --main-orange: #d35400; /* ロゴに合わせた落ち着いたオレンジ */
    --accent-gold: #c5a059; /* 和風のロゴに合うアクセント */
    --bg-color: #ffffff;
    --bg-light: #fdfbf7; /* ほんのり暖かみのある背景色 */
    --text-main: #333333;
    --text-light: #666666;
}

body {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif; /* 清楚・非日常感を出す明朝体 */
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    padding-top: 80px; /* 固定ヘッダーの余白 */
    line-height: 1.8;
}

a { text-decoration: none; color: var(--text-main); }
img { max-width: 100%; height: auto; }


/* ====================================
   共通ヘッダー（PC用 横並びメニュー）
   ==================================== */
.header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    box-sizing: border-box;
    padding: 0 20px;
}

.header-logo img {
    height: 60px; /* ロゴサイズ */
    width: auto;
    vertical-align: middle;
    display: block;
}

/* ナビゲーションメニューの横並び設定 */
.gnav {
    display: flex;
    flex-direction: row; /* 横に並べる */
    align-items: center;
    gap: 25px; /* メニュー同士の隙間 */
    list-style: none;
    margin: 0;
    padding: 0;
}

/* メニューの文字設定（途中で改行させない） */
.gnav li {
    white-space: nowrap; 
}

.gnav li a {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--text-main);
    transition: color 0.3s;
    text-decoration: none;
}

.gnav li a:hover { color: var(--main-orange); }


/* ====================================
   スマホ用メニュー（画面幅が768px以下の場合）
   ==================================== */
@media screen and (max-width: 768px) {
    .header { 
        flex-direction: column; 
        height: auto; 
        padding: 10px 0; 
    }
    .header-logo { margin-bottom: 10px; }
    
    /* スマホでは指で横にスクロールできるメニューにします */
    .gnav-wrapper { 
        width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        background: var(--bg-light); 
        border-top: 1px solid #eee; 
    }
    
    /* スクロール時の余白と並び設定 */
    .gnav { 
        flex-wrap: nowrap; 
        padding: 12px 20px; 
        gap: 20px; 
    }
}


/* ====================================
   共通レイアウト・パーツ（ボタン・見出し）
   ==================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--main-orange);
    margin-bottom: 40px;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 15px auto 0;
}

/* 共通ボタン */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--main-orange);
    color: #ffffff;
    border-radius: 30px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(211, 84, 0, 0.4);
    color: #ffffff;
}


/* ====================================
   共通フッター
   ==================================== */
.footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

/* フッターメニューの横並び設定 */
.footer-nav { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; /* 画面が狭い場合は自然に改行 */
    margin-bottom: 20px; 
    list-style: none; 
    padding: 0; 
}
.footer-nav li {
    white-space: nowrap; /* メニュー単体での変な改行を防ぐ */
}
.footer-nav a { 
    color: #ccc; 
    font-size: 0.9rem; 
    text-decoration: none;
}
.footer-nav a:hover {
    color: #fff;
}

.footer-copy { 
    font-size: 0.8rem; 
    color: #888; 
}

/* ====================================
   料金システムページ (system.php)
   ==================================== */
.system-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 40px;
}
.system-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.system-table th, .system-table td {
    border-bottom: 1px solid #eee;
    padding: 15px;
    text-align: left;
}
.system-table th {
    width: 30%;
    color: var(--main-orange);
    font-weight: bold;
}
.system-table td {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
}

.note-list {
    list-style-type: none;
    padding: 0;
}
.note-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}
.note-list li::before {
    content: "※";
    position: absolute;
    left: 0;
    color: var(--main-orange);
}

/* ====================================
   コンセプトページ (concept.php)
   ==================================== */
.concept-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}
.concept-block {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}
.concept-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 8px 0 0 8px;
}
.concept-title {
    color: var(--main-orange);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
}
.concept-text {
    color: var(--text-light);
    line-height: 2;
    margin: 0;
}


/* ====================================
   セラピスト一覧 (therapists.php)
   ==================================== */
.staff-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.staff-card {
    width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}
.staff-card:hover {
    transform: translateY(-5px);
}
.staff-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: #f5f5f5;
}
.staff-info {
    padding: 15px;
}
.staff-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--main-orange);
    margin: 0 0 5px;
}
.staff-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ====================================
   セラピスト詳細 (profile.php)
   ==================================== */
.profile-wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.profile-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.profile-main-img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.profile-sub-imgs {
    display: flex;
    gap: 15px;
}
.profile-sub-imgs img {
    width: calc(33.333% - 10px);
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 3/4; /* 縦長の比率を維持 */
}
.profile-details {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.profile-name {
    font-size: 2rem;
    color: var(--main-orange);
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
}
.data-table, .schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.data-table th, .data-table td, .schedule-table th, .schedule-table td {
    border: 1px solid #eee;
    padding: 12px;
    text-align: left;
}
.data-table th {
    background: var(--bg-light);
    width: 30%;
    color: var(--text-main);
}
.schedule-table th {
    background: var(--bg-light);
    text-align: center;
    font-size: 0.9rem;
}
.schedule-table td {
    text-align: center;
    font-weight: bold;
}
.manager-comment {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--main-orange);
    margin-top: 20px;
}
.manager-comment h4 {
    margin-top: 0;
    color: var(--main-orange);
    margin-bottom: 10px;
}

/* スマホ用の縦積みレイアウト */
@media screen and (max-width: 768px) {
    .profile-wrap { flex-direction: column; }
    .profile-gallery, .profile-details { width: 100%; }
}

/* ====================================
   週間スケジュール (schedule.php)
   ==================================== */
.schedule-container {
    width: 100%;
    margin-top: 20px;
}

/* スマホ等で表がはみ出さないように横スクロールを許可 */
.schedule-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.schedule-main-table {
    width: 100%;
    min-width: 800px; /* スマホでも表の形を維持 */
    border-collapse: collapse;
    background: #fff;
}

.schedule-main-table th, .schedule-main-table td {
    border: 1px solid #eee;
    padding: 15px 10px;
    text-align: center;
    vertical-align: middle;
}

/* 左端のセラピスト固定列 */
.schedule-main-table th:first-child {
    background: var(--bg-light);
    width: 150px;
    position: sticky;
    left: 0;
    z-index: 10;
    border-right: 2px solid var(--accent-gold);
}

.schedule-staff-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.schedule-staff-link img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.schedule-staff-name {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--main-orange);
}

/* 日付ヘッダー */
.date-head {
    background: var(--bg-light);
    font-size: 0.9rem;
}

.date-head .day-name {
    display: block;
    font-size: 0.8rem;
    margin-top: 3px;
}

/* 各ステータスの装飾 */
.status-work {
    font-weight: bold;
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.4;
}

.status-off {
    color: #e74c3c;
    font-weight: bold;
}

.status-undecided {
    color: #95a5a6;
}

/* ====================================
   求人情報ページ (recruit.php)
   ==================================== */
.recruit-hero {
    background-color: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.recruit-hero h3 {
    color: var(--main-orange);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.recruit-point {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.point-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--main-orange);
}

.point-item h4 {
    color: var(--main-orange);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.recruit-table th, .recruit-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.recruit-table th {
    background-color: var(--bg-light);
    width: 25%;
    text-align: left;
    color: var(--main-orange);
    white-space: nowrap;
}

.cta-box {
    text-align: center;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border: 2px dashed var(--main-orange);
}

.tel-link {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-orange);
    margin: 20px 0;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .recruit-table th, .recruit-table td {
        display: block;
        width: 100%;
    }
    .recruit-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }
}

/* ====================================
   LINE応募ボタン (recruit.php 等で使用)
   ==================================== */
.btn-line {
    display: inline-block;
    background-color: #06C755; /* LINE公式カラー */
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-line:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(6, 199, 85, 0.4);
    color: #ffffff;
}