/* ========================================
   ページ専用CSS
   ======================================== */

/* ページヘッダー */
.page-header {
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Tシャツページ専用ヘッダー */
.tshirt-header {
    min-height: 500px;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-overlay .container {
    position: relative;
    z-index: 10;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.header-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* 特徴セクション */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff5f5 0%, #ffe3e3 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    transition: all 0.3s;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-box:hover::before {
    opacity: 0.1;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-box:nth-child(1):hover { border-color: var(--primary-color); }
.feature-box:nth-child(2):hover { border-color: var(--accent-yellow); }
.feature-box:nth-child(3):hover { border-color: var(--accent-red); }
.feature-box:nth-child(4):hover { border-color: var(--accent-blue); }

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.feature-box:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-box:nth-child(2) .feature-icon { animation-delay: 0.3s; }
.feature-box:nth-child(3) .feature-icon { animation-delay: 0.6s; }
.feature-box:nth-child(4) .feature-icon { animation-delay: 0.9s; }

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-light);
}

/* 制作事例セクション */
.examples-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.example-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
    transition: all 0.3s;
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.2);
}

.example-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.example-card:hover .example-image img {
    transform: scale(1.1);
}

.example-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.example-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.example-info {
    padding: 1.5rem;
}

.example-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.examples-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 2rem;
    font-style: italic;
}

/* 料金表セクション */
.pricing-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffe3e3 0%, #ffcdd2 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-yellow), var(--accent-red));
}

.pricing-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    position: relative;
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.05), rgba(255, 211, 61, 0.05));
}

.pricing-card.featured::before {
    height: 8px;
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-red), var(--accent-yellow));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(255, 87, 108, 0.4);
    z-index: 10;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1.5rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* プロセスセクション */
.process-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff0f0 0%, #ffe3e3 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(82, 183, 136, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: rotateDash 20s linear infinite;
}

.process-step:hover .step-number::before {
    opacity: 0.5;
}

@keyframes rotateDash {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(82, 183, 136, 0.5);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 使用例セクション */
.usage-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffcdd2 0%, #ffe3e3 100%);
}

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

.usage-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.usage-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(82, 183, 136, 0.1));
    transition: top 0.5s ease;
}

.usage-card:hover::after {
    top: 0;
}

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

.usage-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconSpin 10s linear infinite;
    position: relative;
    z-index: 1;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.usage-card:hover .usage-icon {
    animation: iconBounce 0.6s ease;
}

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

.usage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.usage-card p {
    color: var(--text-light);
}

/* CTAセクション */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 3px solid white;
}

.cta-section .btn-primary:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    border-color: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* カフェページ専用 */
.menu-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff0f0 100%);
}

/* カフェヘッダー専用 */
.cafe-header {
    min-height: 500px;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cafe-header .page-header-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
}

/* 砂場カフェページ - ギャラリーセクション */
.gallery-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #FFF9E6 0%, #FFFACD 100%);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.2);
    transition: all 0.3s;
    border: 3px solid #FFD700;
}

.gallery-item:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 12px 30px rgba(255, 165, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.gallery-note {
    text-align: center;
    color: #856404;
    font-size: 0.875rem;
    margin-top: 2rem;
    font-style: italic;
}

/* 砂場カフェページ - 工事現場風（黄色メイン） */
.sandbox-header {
    min-height: 500px;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sandbox-overlay {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.95), rgba(255, 235, 59, 0.9)) !important;
}

/* 工事現場風バッジ */
.construction-badge {
    background: repeating-linear-gradient(
        45deg,
        #000,
        #000 10px,
        #FFD700 10px,
        #FFD700 20px
    ) !important;
    color: white !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 0.75rem 2rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    border: 3px solid #000 !important;
}

.construction-title {
    font-size: 4rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    text-shadow: 
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        5px 5px 10px rgba(0, 0, 0, 0.5) !important;
}

.construction-tag {
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.3) 10px,
        rgba(255, 255, 255, 0.15) 10px,
        rgba(255, 255, 255, 0.15) 20px
    ) !important;
    border: 3px solid rgba(0, 0, 0, 0.3) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

/* 工事現場風ストライプ装飾 */
.construction-stripes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: repeating-linear-gradient(
        45deg,
        #FFD700,
        #FFD700 30px,
        #000 30px,
        #000 60px
    );
    z-index: 100;
}

.construction-stripes::before {
    content: '⚠️';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: warningBlink 1s infinite;
}

@keyframes warningBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.menu-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.1), rgba(255, 211, 61, 0.1));
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

.category-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.category-header h3 i {
    margin-right: 0.5rem;
    animation: iconWiggle 2s ease-in-out infinite;
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.category-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(82, 183, 136, 0.2);
}

.menu-grid {
    display: grid;
    gap: 2rem;
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.menu-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.menu-item:hover .menu-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* メニュー画像スタイル */
.menu-icon-image {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.menu-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.menu-item:hover .menu-icon-image {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.menu-item:hover .menu-icon-image img {
    transform: scale(1.15);
}

.menu-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.menu-info p {
    color: var(--text-light);
}

.menu-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
    border-radius: 5px;
}

.enjoy-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffe3e3 0%, #ffcdd2 100%);
}

.enjoy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.enjoy-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    border: 3px solid transparent;
}

.enjoy-card::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s;
}

.enjoy-card:hover::after {
    opacity: 1;
    animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 0.5; }
}

.enjoy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-yellow);
    background: linear-gradient(135deg, white, rgba(255, 211, 61, 0.05));
}

.enjoy-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s;
}

.enjoy-card:hover .enjoy-icon {
    transform: scale(1.2);
    animation: iconShake 0.5s ease;
}

@keyframes iconShake {
    0%, 100% { transform: scale(1.2) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    75% { transform: scale(1.2) rotate(10deg); }
}

.enjoy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.enjoy-card p {
    color: var(--text-light);
}

.atmosphere-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff5f5 0%, #ffe3e3 100%);
}

.atmosphere-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.atmosphere-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.atmosphere-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.atmosphere-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.atmosphere-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, white, rgba(116, 192, 252, 0.1));
}

.atmosphere-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.atmosphere-item:hover i {
    transform: scale(1.2);
    color: var(--accent-blue);
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
}

/* 砂場カフェページ専用（黄色メイン） */
.sandbox-header + .features-section {
    background: repeating-linear-gradient(
        0deg,
        #FFFEF7 0px,
        #FFFEF7 2px,
        #FFF9E6 2px,
        #FFF9E6 4px
    );
    position: relative;
}

.sandbox-header + .features-section::before {
    content: '🚧';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.15;
    animation: construction-float 3s ease-in-out infinite;
}

.sandbox-header + .features-section::after {
    content: '🚧';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.15;
    animation: construction-float 3s ease-in-out infinite 1.5s;
}

@keyframes construction-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.sandbox-header + .features-section .feature-box {
    border: 5px solid #FFD700;
    background: linear-gradient(135deg, #FFFEF7, #FFF9C4);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.sandbox-header + .features-section .feature-box:hover {
    border-color: #FFC107;
    background: linear-gradient(135deg, #FFF9C4, #FFEB3B);
    transform: translateY(-15px) scale(1.08);
}

.sandbox-header + .features-section .feature-icon {
    color: #FFA500;
    filter: drop-shadow(2px 2px 4px rgba(255, 165, 0, 0.5));
}

/* 料金セクション背景 */
.sandbox-header ~ .pricing-section {
    background: linear-gradient(180deg, #FFF9E6 0%, #FFFACD 100%);
}

.sandbox-pricing {
    max-width: 600px;
    margin: 0 auto;
}

.price-card-large {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 5px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.price-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        #FFD700 0px,
        #FFD700 20px,
        #000 20px,
        #000 40px
    );
}

.price-card-large::after {
    content: '⚠️ SPECIAL PRICE ⚠️';
    position: absolute;
    top: 20px;
    right: -80px;
    background: #FFA500;
    color: white;
    padding: 0.5rem 5rem;
    transform: rotate(45deg);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.price-badge {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1.5rem;
    color: var(--text-light);
}

.price-includes {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.price-includes li {
    padding: 1rem;
    border-bottom: 1px solid var(--bg-light);
    font-size: 1.125rem;
}

.price-includes i {
    color: var(--primary-color);
    margin-right: 1rem;
}

.vehicles-section {
    padding: 4rem 0;
    background: #FFFEF7;
    position: relative;
}

.vehicles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 215, 0, 0.03) 50px,
            rgba(255, 215, 0, 0.03) 100px
        );
    pointer-events: none;
}

.vehicles-section .container {
    position: relative;
    z-index: 1;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background: linear-gradient(135deg, #FFF9E6, #FFFACD);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 4px dashed #FFA500;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
    position: relative;
    transition: all 0.3s;
}

.vehicle-card::before {
    content: '⚙️';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0.2;
    animation: gearRotate 4s linear infinite;
}

@keyframes gearRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vehicle-card:hover {
    background: linear-gradient(135deg, #FFE4B5, #FFDAB9);
    border-color: #FF8C00;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.4);
}

.vehicle-icon {
    font-size: 6rem;
    margin-bottom: 1rem;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
    animation: vehicle-move 3s ease-in-out infinite;
}

/* ラジコン画像スタイル */
.vehicle-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
    border: 5px solid #FFD700;
    transition: all 0.3s ease;
    position: relative;
}

.vehicle-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 215, 0, 0.1) 10px,
        rgba(255, 215, 0, 0.1) 20px
    );
    pointer-events: none;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.6);
    border-color: #FFA500;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.15);
}

/* 画像に工事現場風の警告マークを追加 */
.vehicle-image::after {
    content: '⚠️';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: warning-pulse 2s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes vehicle-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.vehicle-card:hover .vehicle-icon {
    animation: vehicle-bounce 0.5s ease;
}

@keyframes vehicle-bounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-20px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-10px); }
}

.vehicle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vehicle-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* 砂場カフェページのタグは工事標識風 */
.sandbox-overlay .feature-tag {
    background: #FFD700;
    color: #000;
    border: 3px solid #000;
    font-weight: 900;
    text-shadow: none;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.sandbox-overlay .feature-tag:hover {
    background: #FFA500;
    transform: translateY(-5px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
}

.recommend-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

/* 砂場カフェページのおすすめセクション */
.sandbox-header ~ .recommend-section {
    background: linear-gradient(180deg, #FFFACD 0%, #FFF9E6 100%);
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.recommend-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 5px solid #FFD700;
    transition: all 0.3s;
    position: relative;
}

.recommend-card::after {
    content: '⚠️';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    background: #FFA500;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s;
}

.recommend-card:hover::after {
    opacity: 1;
    animation: rotate-warning 2s linear infinite;
}

@keyframes rotate-warning {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.recommend-card:hover {
    background: linear-gradient(135deg, white, #FFFACD);
    border-left-width: 10px;
    transform: translateX(10px);
}

.recommend-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.recommend-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.recommend-card p {
    color: var(--text-light);
}

.safety-section {
    padding: 4rem 0;
}

/* 砂場カフェページの安全対策セクション */
.sandbox-header ~ .safety-section {
    background: #FFFEF7;
}

.safety-content {
    max-width: 900px;
    margin: 0 auto;
}

.safety-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.safety-item {
    text-align: center;
    padding: 1.5rem;
    background: #FFF9E6;
    border-radius: 15px;
    border: 3px solid #FFD700;
    position: relative;
    transition: all 0.3s;
}

.safety-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        #FFD700 0px,
        #FFD700 10px,
        #000 10px,
        #000 20px
    );
}

.safety-item:hover {
    background: #FFFACD;
    border-color: #FFA500;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

.safety-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.safety-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

/* レーザー彫刻ページ（Coming Soon） */
.coming-soon-header {
    position: relative;
}

.coming-soon-large-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-red));
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    animation: pulse 2s infinite;
}

.coming-soon-content {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff5f5 0%, #ffe3e3 100%);
}

.coming-soon-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.coming-soon-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 2rem;
    text-align: center;
    margin: 3rem 0 2rem;
}

.service-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.preview-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
}

.preview-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.preview-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.preview-card p {
    color: var(--text-light);
}

.usage-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border-radius: 10px;
}

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

.features-coming-soon {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffcdd2 0%, #ffe3e3 100%);
}

.notify-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff0f0 0%, #fff5f5 100%);
}

.notify-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
}

.notify-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.notify-box p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.notify-encourage {
    font-weight: 700;
    color: var(--primary-color);
}

.social-links {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.other-services-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffe3e3 0%, #ffcdd2 100%);
}

.other-services-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.other-service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.other-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.other-service-card .service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.other-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.other-service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
}

/* ストーリーページ */
.story-header {
    min-height: 500px;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-header .page-header-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
}

/* アクセスページ */
.access-header {
    min-height: 500px;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-header .page-header-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
}

.story-content-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff5f5 0%, #ffe3e3 100%);
}

.story-chapter {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.chapter-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin: 2rem 0;
}

.story-signature {
    text-align: right;
    font-style: italic;
    color: var(--text-light);
    margin-top: 3rem;
}

/* オーナー写真セクション */
.story-text-with-image {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.owner-photo-section {
    text-align: center;
    position: sticky;
    top: 100px;
}

.owner-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.owner-photo:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.5);
}

.owner-caption {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

.concept-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffe3e3 0%, #ffcdd2 100%);
}

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

.concept-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.concept-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.concept-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.concept-card p {
    color: var(--text-light);
}

/* アクセスページ */
.shop-info-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff5f5 0%, #ffe3e3 100%);
}

.shop-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.shop-info-main h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

.shop-info-map {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-note {
    margin: 1rem 0;
    color: var(--text-light);
}

.access-methods-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffcdd2 0%, #ffe3e3 100%);
}

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

.access-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.access-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.access-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.access-card p {
    color: var(--text-light);
}

/* FAQセクション */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff0f0 0%, #fff5f5 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question i {
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.6;
}

/* お問い合わせフォーム */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffe3e3 0%, #ffcdd2 100%);
}

.contact-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
    border: 2px solid rgba(255, 107, 107, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.required {
    color: var(--accent-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    text-align: center;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* SNSセクション */
.sns-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff5f5 0%, #fff0f0 100%);
}

.sns-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.sns-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sns-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    min-width: 150px;
    transition: all 0.3s;
}

.sns-link:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sns-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sns-link.facebook {
    background: #1877f2;
}

.sns-link.twitter {
    background: #1da1f2;
}

.sns-link i {
    font-size: 3rem;
}

.sns-link span {
    font-size: 1.125rem;
    font-weight: 600;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .pricing-grid,
    .process-grid,
    .usage-grid,
    .vehicles-grid,
    .recommend-grid,
    .concept-grid,
    .access-grid {
        grid-template-columns: 1fr;
    }

    .shop-info-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-large-badge {
        top: 10px;
        right: 10px;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    /* オーナー写真セクションのレスポンシブ */
    .story-text-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .owner-photo-section {
        position: static;
    }

    .owner-photo {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .owner-photo {
        width: 180px;
        height: 180px;
    }

    .owner-caption {
        font-size: 1rem;
    }
}

/* ========================================
   カフェページ - 主要メニューカード
   ======================================== */

.featured-menu-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
}

.featured-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.featured-menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.featured-menu-card.coming-soon {
    opacity: 0.85;
    position: relative;
}

.featured-menu-card.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
}

.featured-menu-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-menu-card:hover .featured-menu-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.featured-badge.premium {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.featured-badge.coming-soon-badge {
    background: #95a5a6;
}

.featured-menu-content {
    padding: 1.5rem;
}

.featured-menu-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.featured-menu-content h3 i {
    margin-right: 0.5rem;
}

.featured-price {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.featured-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.featured-flavors {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-flavors li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.featured-flavors li:last-child {
    border-bottom: none;
}

.featured-flavors li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ========================================
   カフェページ - ドリンクメニュー
   ======================================== */

.drinks-menu-section {
    padding: 4rem 0;
    background: #fff;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.drink-category {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.drink-category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.drink-category-title i {
    margin-right: 0.5rem;
}

.drink-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.drink-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.drink-item:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: translateX(5px);
}

.drink-item.special {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8cc 100%);
    border: 2px solid var(--secondary-color);
}

.drink-item.decaf {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.drink-name {
    font-weight: 500;
    color: var(--text-color);
}

.drink-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ========================================
   カフェページ - フードメニュー
   ======================================== */

.food-menu-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff5f5 0%, #ffe3e3 100%);
}

.food-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.food-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.food-category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.food-category-title i {
    margin-right: 0.5rem;
}

.food-subtitle {
    font-size: 1rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem 0;
    padding-left: 0.5rem;
    border-left: 4px solid var(--secondary-color);
}

.food-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.food-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.food-item:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: translateX(5px);
}

.food-item.compact {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
}

.food-name {
    font-weight: 500;
    color: var(--text-color);
}

.food-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ========================================
   カフェページ - レスポンシブ
   ======================================== */

@media (max-width: 768px) {
    .featured-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .drinks-grid,
    .food-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-menu-image {
        height: 200px;
    }

    .featured-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .featured-menu-section,
    .drinks-menu-section,
    .food-menu-section {
        padding: 3rem 0;
    }

    .featured-menu-content,
    .drink-category,
    .food-category {
        padding: 1.5rem;
    }

    .drink-category-title,
    .food-category-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   カフェページ - 子育てママスペース
   ======================================== */

.mama-space-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff9e6 0%, #ffe8cc 100%);
    position: relative;
    overflow: hidden;
}

.mama-space-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 182, 193, 0.2);
    border-radius: 50%;
}

.mama-space-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 218, 185, 0.2);
    border-radius: 50%;
}

.mama-space-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.mama-space-icon {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.mama-space-header .section-title {
    color: #d63384;
    margin-bottom: 0.5rem;
}

.mama-space-subtitle {
    font-size: 1.25rem;
    color: #ff6b9d;
    font-weight: bold;
    background: white;
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.mama-space-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.mama-space-description {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mama-space-lead {
    font-size: 1.3rem;
    color: #d63384;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed #ffe8cc;
}

.mama-space-text {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mama-space-text p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.mama-space-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mama-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #fff9e6;
    border-radius: 10px;
    border-left: 4px solid #ff6b9d;
    transition: all 0.3s ease;
}

.mama-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.mama-feature i {
    font-size: 1.5rem;
    color: #ff6b9d;
    margin-top: 0.25rem;
}

.mama-feature h4 {
    font-size: 1.1rem;
    color: #d63384;
    margin-bottom: 0.25rem;
}

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

.mama-space-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mama-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #ff6b9d;
}

.mama-info-card h3 {
    font-size: 1.2rem;
    color: #d63384;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mama-info-card h3 i {
    color: #ff6b9d;
}

.mama-info-highlight {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
}

.mama-info-time {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.mama-info-benefit {
    font-size: 1.1rem;
    color: #ff6b9d;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.mama-info-condition {
    font-size: 0.9rem;
    color: var(--text-light);
    background: #fff9e6;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.mama-info-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.mama-space-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.mama-space-cta p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d63384;
    margin: 0;
}

.mama-space-cta i {
    color: #ff6b9d;
    margin-right: 0.5rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .mama-space-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mama-space-lead {
        font-size: 1.1rem;
    }

    .mama-space-header .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mama-space-section {
        padding: 3rem 0;
    }

    .mama-space-description {
        padding: 1.5rem;
    }

    .mama-info-card {
        padding: 1.5rem;
    }

    .mama-info-highlight {
        font-size: 1.5rem;
    }

    .mama-info-time {
        font-size: 1.1rem;
    }
}
