/*
Theme Name: wp-manual
Description: wp-manualデザインテンプレート
Requires at least: 6.7
Requires PHP: 7.4
Version: 1.0
*/


/*******************************************************************
 * カスタマイズ
********************************************************************/

/* =========================================================
   Beauty Salon Demo Theme Styles
   ========================================================= */

:root {
    --theme-text-color: #333;
    --theme-bg-color: #fff;
    --theme-accent-color: #c1a376; /* 予約システムと合わせたゴールド */
    --theme-header-height: 70px;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--theme-text-color);
    background-color: var(--theme-bg-color);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--theme-accent-color);
}

/* --- レイアウト調整 --- */
.inner, .g-header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    padding: 60px 0 100px;
    background-color: #fcfcfc; /* 背景を極薄いグレーにして白を目立たせる */
    min-height: 80vh;
}

/* --- ヘッダー --- */
.g-header {
    background-color: #fff;
    height: var(--theme-header-height);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.g-header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.g-header-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #000;
}

.g-header-nav__list {
    display: flex;
    gap: 30px;
}

.item__link {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    display: block;
    padding: 5px 0;
}

.item__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-accent-color);
    transition: width 0.3s;
}

.item__link:hover::after {
    width: 100%;
}

/* --- メインコンテンツ装飾 --- */
.demo-hero {
    text-align: center;
    margin-bottom: 40px;
}

.demo-hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.demo-hero p {
    font-size: 0.95rem;
    color: #666;
}

/* --- フッター --- */
.g-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.g-footer-nav__list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.g-footer .item__link {
    color: #aaa;
    font-size: 0.85rem;
}

.g-footer .item__link:hover {
    color: #fff;
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
    .g-header-inner {
        justify-content: center;
    }
    .g-header-nav {
        display: none; /* スマホではメニューを隠す（簡易対応） */
    }
}


/* =========================================================
   Fixed Page (Reservation Form) Layout
   ========================================================= */

/* 固定ページのタイトルと本文を中央寄せにする */
.page .entry-header,
.page .entry-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* タイトルのデザイン調整 */
.page .entry-title {
    text-align: center;      /* 文字を真ん中に */
    font-size: 2rem;         /* 文字サイズを大きく */
    margin-top: 0;
    margin-bottom: 40px;     /* 下に余白を開ける */
    font-weight: normal;
    letter-spacing: 0.1em;
}