/* 基本リセット (和モダンカフェと同じでOK) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif, 'Playfair Display'; /* 日本語と英語で使い分けを想定 */
    color: #333;
    line-height: 1.7;
    background-color: #fcfcfc; /* やや明るめの白 */
}

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

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover {
    color: #a08080; /* やや落ち着いたピンク系 */
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* ヘッダー */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-family: 'Playfair Display', serif; /* 英字フォント */
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.site-title a {
    color: #333;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin-left: 40px;
}

.nav-list a {
    font-weight: 500;
    font-size: 16px;
    color: #555;
    position: relative;
    padding-bottom: 5px; /* 下線のために余白 */
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #a08080;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.btn {
    display: inline-block;
    background-color: #a08080; /* アクセントカラー */
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px; /* 丸みを帯びたボタン */
    font-size: 16px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    background-color: #8a6c6c;
}

.btn-dark {
    background-color: #555;
    border-radius: 5px;
}
.btn-dark:hover {
    background-color: #333;
}

.btn-reserve {
    background-color: #c09090; /* 予約ボタンは少し目立つ色に */
    padding: 10px 20px;
    font-size: 15px;
}
.btn-reserve:hover {
    background-color: #a07a7a;
}
.btn-big {
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 5px;
    margin: 10px;
}
.btn-tel {
    background-color: #888;
}
.btn-tel:hover {
    background-color: #666;
}


/* 各セクション共通スタイル */
.section {
    padding: 100px 0;
    text-align: center;
}

.section:nth-of-type(even) { /* 偶数番目のセクションの背景色 */
    background-color: #f8f8f8;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 60px;
    position: relative;
    color: #444;
}
/* h2の下線 */
.section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #a08080;
}


/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 700px;
    background-image: url('../images/hero_salon.jpg'); /* ヒーロー画像を設定 */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    text-align: center;
}

.hero-content h2 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 26px;
    margin-bottom: 50px;
    font-weight: 300;
}

/* コンセプトセクション */
.concept-section p {
    font-size: 18px;
    margin-bottom: 60px;
    color: #666;
}

.concept-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #a08080;
}
.feature-item p {
    font-size: 16px;
    color: #777;
    margin-bottom: 0;
}

/* メニューセクション */
.menu-category {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #a08080;
    margin-bottom: 30px;
    text-align: center;
}

.menu-item-list {
    margin-bottom: 20px;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    font-size: 18px;
    color: #555;
}

.menu-item-row span:first-child {
    font-weight: 500;
}
.menu-item-row span:last-child {
    font-weight: 400;
    color: #777;
}


/* ギャラリーセクション */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 20px;
}

.gallery-item h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #333;
}

.gallery-item p {
    font-size: 15px;
    color: #777;
}

/* スタッフセクション */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.staff-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.staff-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%; /* 丸い写真 */
    margin-bottom: 20px;
    border: 3px solid #eee;
}

.staff-item h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #333;
}

.staff-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}


/* アクセスセクション (和モダンカフェとほぼ同じでOK) */
.access-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.access-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.access-info h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #a08080;
    font-family: 'Playfair Display', serif;
}

.access-info p {
    margin-bottom: 15px;
    font-size: 18px;
    color: #555;
}

.reserve-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.access-map {
    flex: 1;
    min-width: 300px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* フッター (和モダンカフェとほぼ同じでOK) */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sns-links a {
    color: #ddd;
    margin-left: 20px;
    font-size: 16px;
    font-weight: 500;
}

.sns-links a:hover {
    color: #a08080;
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    .site-title {
        margin-bottom: 15px;
    }
    .nav-list {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-list li {
        margin: 0 15px 10px;
    }
    .btn-reserve {
        margin-top: 15px;
    }
    .hero-content h2 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 20px;
    }
    .section {
        padding: 70px 0;
    }
    .section h2 {
        font-size: 38px;
        margin-bottom: 50px;
    }
    .access-content {
        flex-direction: column;
    }
    .reserve-buttons {
        flex-direction: column;
    }
    .btn-big {
        width: 80%;
        margin: 5px auto;
    }
    .footer .container {
        flex-direction: column;
        gap: 15px;
    }
    .sns-links {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 28px;
    }
    .nav-list li {
        margin: 0 10px 8px;
        font-size: 14px;
    }
    .hero-content h2 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    .section h2 {
        font-size: 30px;
    }
    .menu-category h3 {
        font-size: 28px;
    }
    .menu-item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        font-size: 16px;
    }
    .gallery-item img {
        height: 280px;
    }
    .staff-item img {
        width: 120px;
        height: 120px;
    }
}