/* 基本設定とリセット */
:root {
    --primary-color: #5D4037; /* 温かみのあるブラウン */
    --secondary-color: #c5b358; /* 上品なゴールド */
    --background-color: #F8F5F0; /* クリームがかった背景色 */
    --text-color: #3a2e2e;
    --heading-font: 'EB Garamond', serif;
    --body-font: 'Noto Sans JP', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
}

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

/* ヘッダー */
.header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.site-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.site-subtitle {
    margin: 5px 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ヒーローセクション */
.hero {
    text-align: center;
    padding: 60px 20px;
}
.hero-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin: 0 0 20px;
}
.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.btn-primary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--primary-color);
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.btn i {
    margin-right: 8px;
}

/* セクション共通スタイル */
.section {
    background-color: #ffffff;
    padding: 50px 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}
.section-subtitle {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 40px;
    color: #666;
}

/* 工房の魅力 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.feature-item {
    padding: 20px;
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.feature-item h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
}

/* サービス一覧 */
.service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.service-list li {
    background-color: #fcfaf6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}
.service-list i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

/* ご来店案内 */
.caution-box {
    background-color: #fdfaf3;
    border-top: 5px solid var(--secondary-color);
    text-align: center;
}
.access-info {
    margin-top: 30px;
}
.access-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* お問い合わせフォーム */
.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form .form-group {
    margin-bottom: 25px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}
.contact-form .required {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}
.contact-form input[type="text"],
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--body-font);
    box-sizing: border-box;
    background-color: #fff;
}
.contact-form .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-top: 5px;
}
.contact-form .radio-group label {
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.contact-form .radio-group input {
    margin-right: 8px;
}
.contact-form .form-actions {
    text-align: center;
    margin-top: 30px;
}
.btn-submit {
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
}

/* フッター */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}
.footer-title {
    font-family: var(--heading-font);
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 10px;
}
.footer-links {
    margin: 15px 0;
}
.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}
.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .features-grid, .service-list, .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 30px 20px;
    }
    .hero-title {
        font-size: 2rem;
    }
}
/* フッターのスポンサーリンク用スタイル */
.footer-sponsors {
    font-size: 0.8rem; /* 少し小さめの文字にする */
    color: rgba(255, 255, 255, 0.5); /* 控えめな色にする */
    margin-top: 20px;
    margin-bottom: 15px;
}

.footer-sponsors a {
    color: rgba(255, 255, 255, 0.6); /* リンクの色も控えめに */
    text-decoration: underline;
}

.footer-sponsors a:hover {
    color: #fff; /* ホバー時は白くして分かりやすく */
}
/* ========== English Page Specific Styles ========== */

.en-page-body {
    background-color: var(--background-color);
}

.header-en {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0dccc;
}

.language-switch a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.language-switch a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.collection-item {
    background-color: #fcfaf6;
    padding: 30px 20px;
    border-radius: 8px;
    border-bottom: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.collection-item .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.collection-item h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin: 0 0 10px;
}

.collection-item .count {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.partnership-section {
    background-color: #fdfaf3;
    border-left: 5px solid var(--secondary-color);
    text-align: center;
}
.partnership-section .btn {
    margin-top: 20px;
}

/* English Page Responsive */
@media (max-width: 768px) {
    .header-en {
        flex-direction: column;
        gap: 15px;
    }
    .collection-grid {
        grid-template-columns: 1fr;
    }
}