/* 
 * ハンドエステサロン LPスタイルシート
 * メインカラー: #deb887
 * 背景: #f4a460
 * 文字色: #d3d3d3
 */

/* ==========================================================================
   リセットと基本設定
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* スムーススクロールをCSSで設定（念のためJSでも制御します） */
}

body {
    /* フォント: MSゴシックベース */
    font-family: "MS Gothic", "ＭＳ ゴシック", sans-serif;
    background-color: #fffacd;
    color: #778899;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   共通クラス（コンポーネント）
   ========================================================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #deb887;
}

/* カード風のデザイン（メニューやスタッフなどに使用） */
.card {
    background-color: #ffffff; /* 白背景にして明るく */
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* 軽い影をつける */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ボタンの共通スタイル */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #deb887;
    color: #ffffff;
    text-shadow: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.8;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.header {
    background-color: rgba(255, 250, 205, 0.95); /* #fffacd の透過 */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    color: #deb887;
}

.nav ul {
    display: flex;
    gap: 20px;
}

.nav a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #deb887;
}

/* ==========================================================================
   1. ヒーローセクション
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* ヘッダー分下げる */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-text h2 {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ==========================================================================
   2. コンセプトセクション
   ========================================================================== */
.concept-content {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   3. スタッフ紹介
   ========================================================================== */
.staff-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.staff-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.staff-img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* 丸く切り抜き */
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #deb887;
}

.staff-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #deb887;
}

.staff-skill {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #778899;
}

.staff-comment {
    font-size: 0.95rem;
    text-align: left;
}

/* ==========================================================================
   4. 人気メニュー紹介
   ========================================================================== */
.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.menu-card {
    display: block; /* リンクとして機能させるため */
}

.menu-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.menu-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #deb887;
}

.menu-price,
.menu-time {
    font-weight: bold;
    font-size: 0.95rem;
}

.menu-desc {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ==========================================================================
   5. 店舗情報
   ========================================================================== */
.info-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info-list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e0e0e0;
}

.info-list dt,
.info-list dd {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-list dt {
    width: 30%;
    font-weight: bold;
    color: #deb887;
}

.info-list dd {
    width: 70%;
}

/* ==========================================================================
   6. SNSリンク
   ========================================================================== */
.sns-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sns-btn {
    min-width: 200px;
}

/* SNSごとに少し色を変えるなどの工夫も可能だが、今回はシンプルに統一するか少し変えるか */
.sns-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.sns-btn.google-map {
    background-color: #4285F4;
    color: #fff;
}

/* ==========================================================================
   7. お問合せフォーム
   ========================================================================== */
.form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.required {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-left: 5px;
    vertical-align: middle;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
    color: #778899;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 5px rgba(222, 184, 135, 0.8);
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* ==========================================================================
   フッター
   ========================================================================== */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #deb887;
    color: #ffffff;
    font-size: 0.9rem;
}

/* ==========================================================================
   レスポンシブ対応（スマートフォン・タブレット向け）
   ========================================================================== */
@media screen and (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .info-list dt,
    .info-list dd {
        width: 100%;
        padding: 10px 0;
    }
    
    .info-list dt {
        border-bottom: none;
        padding-bottom: 0;
    }
}
