/* ===========================
   基本設定
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット */
    --primary-color: #7c3aed;
    --primary-dark: #5b21b6;
    --secondary-color: #d4af37;
    --accent-color: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* グラデーション */
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(91, 33, 182, 0.9) 100%);
    
    /* フォント */
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    
    /* シャドウ */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* トランジション */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* ===========================
   ヘッダー
   =========================== */
.header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.header-top {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
}

.header-top .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-contact a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.header-contact a:hover {
    color: var(--secondary-color);
}

.header-contact .separator {
    opacity: 0.5;
}

.header-links {
    display: flex;
    gap: 15px;
}

.btn-member,
.btn-login {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn-member:hover,
.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
    white-space: nowrap;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.btn-nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
}

.btn-nav-cta::after {
    display: none;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   ヒーローセクション
   =========================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide:nth-child(1) {
    background: url('../images/hed1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f5f5f5;
}

.hero-slide:nth-child(2) {
    background: url('../images/hed2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f5f5f5;
}

.hero-slide:nth-child(3) {
    background: url('../images/hed3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f5f5f5;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* ===========================
   ボタンスタイル
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===========================
   特集ブレスレットバナー
   =========================== */
.featured-bracelets-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0;
    overflow: hidden;
}

.featured-bracelets-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-bracelets-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===========================
   信頼バナー
   =========================== */
.trust-banner {
    background: var(--bg-light);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===========================
   セクション共通
   =========================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* ===========================
   サービスセクション
   =========================== */
.services {
    background: var(--bg-white);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card.featured {
    border-color: var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-dark);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.btn-service {
    display: block;
    text-align: center;
    margin-top: 25px;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   誕生星ブレスレットメインセクション
   =========================== */
.birthday-bracelet-main {
    background: linear-gradient(135deg, #f8f4ff 0%, #faf5ff 100%);
    padding: 80px 0;
}

.birthday-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.birthday-visual .image-placeholder {
    background: linear-gradient(135deg, rgba(248, 244, 255, 0.95) 0%, rgba(250, 245, 255, 0.95) 100%);
    border-radius: 20px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.birthday-visual .birthday-bracelet-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.birthday-visual .image-placeholder i {
    font-size: 6rem;
    margin-bottom: 25px;
    opacity: 0.9;
    color: #7c3aed;
}

.birthday-visual .image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7c3aed;
}

.birthday-description h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.birthday-features-list {
    margin: 30px 0;
}

.birthday-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ===========================
   誕生星ブレスレットセクション（旧）
   =========================== */
.birthday-bracelet {
    background: linear-gradient(135deg, #f8f4ff 0%, #faf5ff 100%);
}

.birthday-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-world-first {
    display: inline-block;
    background: var(--gradient-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.birthday-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.birthday-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.birthday-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.birthday-image .image-placeholder {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.birthday-image .image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.birthday-image .image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===========================
   五行セクション
   =========================== */
.gongyo {
    background: var(--bg-white);
}

/* 五行ブレスレット画像 */
.gongyo-bracelet-image {
    text-align: center;
    margin: 40px 0 50px;
}

.gongyo-showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
    transition: var(--transition);
}

.gongyo-showcase-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.25);
}

.gongyo-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gongyo-stones-image {
    text-align: center;
    margin: 40px auto 50px;
    max-width: 900px;
}

.gongyo-stones-showcase {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gongyo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gongyo-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.gongyo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: currentColor;
}

.gongyo-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}

.gongyo-icon i {
    font-size: 2.5rem;
}

.gongyo-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.gongyo-colors {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.color-badge {
    padding: 6px 15px;
    border-radius: 20px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.gongyo-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.stone-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.stone-examples span {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.gongyo-cta {
    text-align: center;
    margin-top: 60px;
}

/* 五行四神入りブレスレット商品グリッド */
.gongyo-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gongyo-product-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.gongyo-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.tax-note {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

.product-stones {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.stone-item {
    font-size: 0.875rem;
    color: var(--text-dark);
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 968px) {
    .gongyo-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .gongyo-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
}

.cta-note {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   カスタムブレスレットセクション
   =========================== */
.custom-bracelet {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-text h2 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.custom-text h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.process-steps {
    margin: 35px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.custom-image .image-placeholder {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.custom-image .image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.custom-image .image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.custom-image .custom-bracelet-showcase {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.custom-image .custom-bracelet-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.custom-image .custom-bracelet-showcase:hover img {
    transform: scale(1.05);
}

/* ===========================
   商品セクション
   =========================== */
.products {
    background: var(--bg-light);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-category {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-category:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   お客様の声セクション
   =========================== */
.testimonials {
    background: var(--bg-white);
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-detail {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===========================
   店舗紹介セクション
   =========================== */
.about {
    background: linear-gradient(135deg, #f8f4ff 0%, #faf5ff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-trust {
    display: inline-block;
    background: var(--gradient-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.about-image .image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.about-image .image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.about-image .store-photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.about-image .store-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image .store-photo img:hover {
    transform: scale(1.05);
}

/* ===========================
   店舗情報セクション
   =========================== */
.store-info {
    background: var(--bg-light);
}

.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.store-details h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-dark);
}

.small-text {
    font-size: 0.875rem;
}

.store-map .map-placeholder {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 20px;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
}

.store-map .map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.store-map .map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.store-map .map-placeholder small {
    text-align: center;
    font-size: 0.9rem;
}

.store-exterior {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.store-exterior img {
    width: 100%;
    height: auto;
    display: block;
}

.store-access {
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
}

.store-access i {
    color: var(--primary-color);
    margin-right: 8px;
}

.access-map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.access-map img {
    width: 100%;
    height: auto;
    display: block;
}

.access-link {
    text-align: center;
    margin-top: 25px;
}

.access-link .btn {
    min-width: 200px;
}

/* ===========================
   コンタクトセクション
   =========================== */
.contact {
    background: var(--bg-white);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-method i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--primary-dark);
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.formzu-form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.formzu-form-wrapper iframe {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

/* ===========================
   フッター
   =========================== */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* ===========================
   スクロールトップボタン
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-top.show {
    display: flex;
}

/* ===========================
   画像プレースホルダー
   =========================== */
.image-placeholder {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===========================
   法的ページ（特定商取引法、プライバシーポリシー）
   =========================== */
.legal-page {
    padding: 100px 0;
    background: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.page-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.legal-intro {
    background: linear-gradient(135deg, #f8f4ff 0%, #faf5ff 100%);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
}

.legal-intro p {
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.legal-section p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--secondary-color);
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.legal-footer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   レスポンシブデザイン
   =========================== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 600px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

    .hero {
        height: 400px;
    }

    .hero-slide {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .birthday-content,
    .birthday-main-content,
    .custom-content,
    .about-content,
    .store-grid {
        grid-template-columns: 1fr;
    }

    .custom-content .custom-image {
        order: -1;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .hero {
        height: 250px;
    }

    .hero-slide {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    /* スマホ用の軽量画像を使用 */
    .hero-slide:nth-child(1) {
        background-image: url('../images/hed1-mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .hero-slide:nth-child(2) {
        background-image: url('../images/hed2-mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .hero-slide:nth-child(3) {
        background-image: url('../images/hed3-mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .hero-indicators {
        bottom: 10px;
    }

    .indicator {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .btn {
        padding: 10px 25px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }

    .btn-large {
        padding: 12px 30px;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .gongyo-grid,
    .product-categories,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 0;
    }

    .birthday-buttons,
    .about-features {
        grid-template-columns: 1fr;
    }

    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-contact {
        flex-direction: column;
        gap: 5px;
    }

    .header-contact .separator {
        display: none;
    }

    .contact-form-container {
        padding: 20px 15px;
    }

    .formzu-form-wrapper {
        padding: 10px 0;
    }

    .formzu-form-wrapper iframe {
        max-width: 100%;
    }
}

/* ===========================
   アニメーション
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===========================
   超小型スマホ対応
   =========================== */
@media (max-width: 375px) {
    .hero {
        height: 200px;
    }

    .hero-indicators {
        bottom: 8px;
    }

    .indicator {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}