/* ==========================================
 * Custom Font Loading - 玉ねぎ楷書
 * ========================================== */
@font-face {
    font-family: 'TamanegiKaisho';
    src: url('tamanegi_kaisho_free.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
 * CSS Variables & Reset
 * ========================================== */
:root {
    --color-main: #000000;
    --color-accent: #C31A21;
    --color-header: #b61923;
    --color-navy: #1D2D50;
    --color-light-blue: #EBF2FA;
    --color-bg-light: #f7f7f7;
    --color-text: #333333;
    --font-size-base: 16px;
    --transition-base: 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS Mincho", serif;
    background-color: #ffffff;
    line-height: 1.6;
    color: var(--color-text);
    font-size: var(--font-size-base);
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
 * Loading Screen - 新デザイン
 * ========================================== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    overflow: hidden;
}

#loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==========================================
 * 暖簾カーテン - 上に巻き上がる
 * ========================================== */
.noren-curtain-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
}

.noren-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #242f5d;
    background-image: 
        repeating-linear-gradient(
            90deg,
            #242f5d,
            #242f5d 60px,
            #1e2850 60px,
            #1e2850 63px
        );
    box-shadow: 
        inset 0 -20px 40px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(36, 47, 93, 0.5);
    transform-origin: top center;
    transition: transform 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

#loading-screen.curtain-open .noren-panel {
    transform: translateY(-100%) scaleY(0.1);
}

/* ==========================================
 * キャッチコピー表示 - 1文字ずつフェード版
 * ========================================== */
.catchphrase-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99998;
    background: #ffffff;
}

.catchphrase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
}

.catchphrase h2 {
    font-size: 60px;
    font-weight: 900;
    color: #000000;
    font-family: 'TamanegiKaisho', 'Yuji Boku', serif;
    letter-spacing: 10px;
    text-align: center;
    white-space: nowrap;
    text-shadow: 
        1px 1px 0px rgba(0, 0, 0, 0.3),
        2px 2px 1px rgba(0, 0, 0, 0.2),
        3px 3px 2px rgba(0, 0, 0, 0.1);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    filter: contrast(1.15) brightness(0.95);
}

.catchphrase h2 span {
    display: inline-block;
    font-family: 'TamanegiKaisho', 'Yuji Boku', serif;
}

@media (max-width: 768px) {
    .catchphrase h2 {
        font-size: 40px;
        letter-spacing: 6px;
        font-weight: 900;
        font-family: 'TamanegiKaisho', 'Yuji Boku', 'Kaisei Decol', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    }
}

@media (max-width: 480px) {
    .catchphrase h2 {
        font-size: 28px;
        letter-spacing: 4px;
        font-weight: 900;
        text-shadow: 
            1px 1px 0px rgba(0, 0, 0, 0.2),
            1px 1px 1px rgba(0, 0, 0, 0.1);
        -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.3);
        font-family: 'TamanegiKaisho', 'Yuji Boku', 'Kaisei Decol', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    }
}

/* ==========================================
 * 最終ロゴ表示
 * ========================================== */
.final-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 100000;
}

.final-logo.show {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    animation: logoAppear 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: none;
}

@media (max-width: 768px) {
    .logo-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 120px;
        height: 120px;
    }
}

/* ==========================================
 * Header
 * ========================================== */
.header {
    background-color: var(--color-header);
    color: #ffffff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    overflow: visible;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0;
    justify-content: space-evenly;
}

.header-left {
    flex: 1;
    justify-content: flex-start;
    padding-left: 20px;
}

.header-right {
    flex: 1;
    justify-content: flex-end;
    padding-right: 20px;
}

.header-left a,
.header-right a {
    color: #ffffff;
    padding: 15px 10px;
    font-size: 15px;
    font-weight: 500;
    transition: opacity var(--transition-base), transform var(--transition-base);
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.header-left a:hover,
.header-right a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.header-logo {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 380px;
    z-index: 910;
    height: 70px;
    overflow: visible;
    padding: 0;
    margin: 0;
}

.noren-image {
    width: 380px;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    transform-origin: top center;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.header .container,
.logo,
.header-nav {
    display: none;
}

/* ==========================================
 * ハンバーガーメニュー
 * ========================================== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    position: fixed;
    top: 20px;
    left: 20px;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* モバイルメニューオーバーレイ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(182, 25, 35, 0.98);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu-item {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid #ffffff;
}

/* ==========================================
 * スクロールアニメーション
 * ========================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
 * メインカルーセルスライダー（杉玉スタイル）完全版
 * ========================================== */
.main-slider-section {
    padding: 100px 0 0 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.carousel-container-new {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-wrapper-new {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    overflow: visible;
}

.carousel-slide-new {
    position: absolute;
    width: 70%;
    max-width: 900px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform-origin: center center;
    left: 50%;
    top: 50%;
}

.carousel-slide-new.active {
    z-index: 10;
    transform: translate(-50%, -50%) translateX(0) scale(1);
    opacity: 1;
}

.carousel-slide-new.prev {
    z-index: 5;
    transform: translate(-50%, -50%) translateX(-70%) scale(0.85);
    opacity: 0.5;
}

.carousel-slide-new.next {
    z-index: 5;
    transform: translate(-50%, -50%) translateX(70%) scale(0.85);
    opacity: 0.5;
}

.carousel-slide-new.hidden {
    z-index: 1;
    transform: translate(-50%, -50%) translateX(0) scale(0.8);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.carousel-slide-new a {
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.carousel-slide-new.active a:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.carousel-slide-new img {
    width: 100%;
    height: auto;
    min-height: 500px;
    max-height: 650px;
    object-fit: contain;
    display: block;
    background-color: #f5f5f5;
}

.carousel-dots-new {
    text-align: center;
    padding: 20px 0 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 0;
}

.carousel-dot-new {
    height: 15px;
    width: 15px;
    background-color: #cccccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot-new:hover {
    background-color: #999999;
    transform: scale(1.2);
}

.carousel-dot-new.active {
    background-color: #d32f2f;
    transform: scale(1.3);
}

/* ==========================================
 * Main Visual
 * ========================================== */
.main-visual {
    background-color: #e8e8e8;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}

/* ==========================================
 * Wave Divider
 * ========================================== */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider::before {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff"/></svg>') no-repeat;
    background-size: cover;
}

.wave-divider.wave-flip::before {
    transform: scaleY(-1);
}

.section {
    position: relative;
    padding: 60px 0;
}

/* 3つの魅力セクション：上の余白を削減 */
#concept {
    padding-top: 30px;
}

/* ==========================================
 * Gradient Backgrounds
 * ========================================== */
.gradient-bg-1 {
    background: linear-gradient(180deg, #ffffff 0%, #fef5f5 100%);
}

.gradient-bg-2 {
    background: linear-gradient(180deg, #fef5f5 0%, #ffffff 100%);
}

/* ==========================================
 * Section Title with Lanterns
 * ========================================== */
.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--color-main);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Shippori Mincho B1', 'Kaisei Decol', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    font-weight: 800;
    letter-spacing: 4px;
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.2),
        5px 5px 3px rgba(0, 0, 0, 0.15);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.bg-light {
    background-color: var(--color-bg-light);
}

/* ==========================================
 * Fade In Animation
 * ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
 * 3D Card Effect
 * ========================================== */
.card-3d {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-3d:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ==========================================
 * Float Animation
 * ========================================== */
.float-animation {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ==========================================
 * Features Section
 * ========================================== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-main);
    font-weight: bold;
}

.feature-image-placeholder {
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
}

.feature-item:hover .feature-image-placeholder img {
    transform: scale(1.1);
}

.price-highlight {
    font-size: 24px;
    color: var(--color-accent);
    font-weight: bold;
    margin: 15px 0;
}

/* ==========================================
 * Menu Section
 * ========================================== */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.menu-item {
    text-align: center;
    padding: 20px;
}

.menu-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--color-main);
    font-weight: bold;
}

.menu-item p {
    margin: 15px 0;
    line-height: 1.8;
}

.menu-item p:first-of-type {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-accent);
    margin-top: 20px;
    margin-bottom: 10px;
}

.menu-item p:last-of-type {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-top: 15px;
    padding: 0 10px;
}

.menu-image-placeholder {
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.menu-image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
}

.menu-item:hover .menu-image-placeholder img {
    transform: scale(1.1);
}

/* ==========================================
 * Carousel Section
 * ========================================== */
.menu-carousel-section {
    background-color: #ffffff;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 30px auto 0;
}

.carousel-window {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 14px);
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.item-img-box {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.item-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.carousel-item:hover .item-img-box img {
    transform: scale(1.15);
}

.item-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--color-main);
}

.item-price {
    font-size: 22px;
    color: var(--color-accent);
    font-weight: bold;
}

.tax-small {
    font-size: 14px;
    color: var(--color-text);
    font-weight: normal;
}

.item-description {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin-top: 8px;
    padding: 0 10px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-main);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity var(--transition-base), transform var(--transition-base);
    z-index: 10;
}

.carousel-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* ==========================================
 * Stats Counter Section
 * ========================================== */
.stats-section {
    background-color: var(--color-light-blue);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.stat-item {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, #ff6b6b 100%);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-number {
    font-size: 56px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 500;
}

.stat-description {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
    font-weight: normal;
}

/* ==========================================
 * Value Proposition Section
 * ========================================== */
.value-prop {
    background-color: var(--color-light-blue);
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.value-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-box {
    background: #ffffff;
    padding: 30px 20px;
    border: 4px solid var(--color-main);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.value-box h3 {
    font-size: 20px;
    color: #ffffff;
    background-color: var(--color-accent);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: bold;
}

.value-image-placeholder {
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.value-image-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
}

.value-box:hover .value-image-placeholder img {
    transform: scale(1.08);
}

.price-big {
    font-size: 28px;
    color: var(--color-accent);
    font-weight: bold;
    margin: 15px 0;
}

.highlight-text {
    font-size: 24px;
    color: #ffffff;
    background-color: var(--color-main);
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-block;
    margin: 10px 0;
}

/* ==========================================
 * Review Section
 * ========================================== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-item {
    background: #ffffff;
    padding: 30px;
    border: 3px solid var(--color-accent);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-tag {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.review-body {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-user {
    display: block;
    text-align: right;
    font-size: 14px;
    color: var(--color-text);
    font-style: normal;
}

/* ==========================================
 * 新しいお客様の声デザイン
 * ========================================== */
.review-container-new {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.review-item-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

/* キャラクター画像 */
.review-character-left,
.review-character-right {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-character-left {
    margin-right: -30px;
}

.review-character-right {
    margin-left: -30px;
}

.review-character-left img,
.review-character-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 吹き出し部分 */
.review-bubble-wrapper {
    position: relative;
    flex: 1;
    max-width: 700px;
    z-index: 5;
}

.review-bubble-bg {
    width: 100%;
    height: auto;
    display: block;
}

.review-bubble-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: left;
    padding: 30px 40px;
}

.review-bubble-text p {
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
    color: #000000;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-user-info {
    font-size: 14px;
    margin-top: 15px;
    color: #333333;
    text-align: right;
    font-weight: 400;
}

/* タグ画像 */
.review-tag-left,
.review-tag-right {
    flex-shrink: 0;
    width: 90px;
    z-index: 10;
    position: relative;
}

.review-tag-left {
    margin-right: -20px;
}

.review-tag-right {
    margin-left: -20px;
}

.review-tag-left img,
.review-tag-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* 2番目のレビューの女性キャラクターを小さく */
.review-item-new:nth-child(2) .review-character-right {
    width: 110px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .review-container-new {
        gap: 30px;
        margin: 40px auto 0;
    }
    
    .review-item-new {
        gap: 0;
    }
    
    .review-character-left,
    .review-character-right {
        width: 90px;
    }
    
    .review-character-left {
        margin-right: -15px;
    }
    
    .review-character-right {
        margin-left: -15px;
    }
    
    .review-tag-left,
    .review-tag-right {
        width: 65px;
    }
    
    .review-tag-left {
        margin-right: -10px;
    }
    
    .review-tag-right {
        margin-left: -10px;
    }
    
    .review-bubble-text {
        width: 82%;
        padding: 16px 18px;
    }
    
    .review-bubble-text p {
        font-size: 13px;
        line-height: 1.65;
    }
    
    .review-user-info {
        font-size: 11px;
        margin-top: 10px;
    }
    
    /* 2番目のレビューの女性キャラクターを小さく */
    .review-item-new:nth-child(2) .review-character-right {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .review-container-new {
        gap: 25px;
    }
    
    .review-character-left,
    .review-character-right {
        width: 70px;
    }
    
    .review-character-left {
        margin-right: -10px;
    }
    
    .review-character-right {
        margin-left: -10px;
    }
    
    .review-tag-left,
    .review-tag-right {
        width: 55px;
    }
    
    .review-tag-left {
        margin-right: -8px;
    }
    
    .review-tag-right {
        margin-left: -8px;
    }
    
    .review-bubble-text {
        width: 80%;
        padding: 18px 15px 10px 15px;
    }
    
    .review-bubble-text p {
        font-size: 11.5px;
        line-height: 1.5;
    }
    
    .review-user-info {
        font-size: 10px;
        margin-top: 6px;
    }
    
    /* 2番目のレビューの女性キャラクターを小さく */
    .review-item-new:nth-child(2) .review-character-right {
        width: 55px;
    }
}

/* iPhone 12 Pro等の小さめの画面用の追加調整 */
@media (max-width: 390px) {
    .review-bubble-text {
        width: 76%;
        padding: 15px 10px 10px 10px;
    }
    
    .review-bubble-text p {
        font-size: 10.5px;
        line-height: 1.45;
    }
    
    .review-user-info {
        font-size: 9px;
        margin-top: 5px;
    }
}

/* ==========================================
 * SNSセクション（添付画像版）
 * ========================================== */
.sns-section-v2 {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.sns-bg-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.sns-banner-left {
    position: absolute;
    left: -110px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 200px;
    z-index: 3;
}

.sns-banner-left img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.4));
}

.sns-character-right {
    position: absolute;
    right: -70px;
    bottom: 20px;
    width: 220px;
    z-index: 3;
}

.sns-character-right img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.3));
}

.sns-white-box {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 80px 40px 80px;
    background-color: #ffffff;
    border: 3px solid #333333;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 60px;
}

.sns-col {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sns-badge {
    width: 180px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.sns-icon-img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin: 5px 0;
}

.sns-icon-img:hover {
    transform: scale(1.05);
}

.sns-account-img {
    width: 200px;
    height: 30px;
    object-fit: contain;
    display: block;
    margin: 3px 0;
}

.sns-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
    margin-top: 5px;
}

.sns-btn:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.5);
    transform: translateY(-2px);
}

.sns-btn-disabled {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
    cursor: not-allowed;
    box-shadow: none;
}

.sns-btn-disabled:hover {
    transform: none;
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
}

/* ==========================================
 * Store Map
 * ========================================== */
.store-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.store-map iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
}

.store-map:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* ==========================================
 * Stores Section
 * ========================================== */
.affiliated-stores-section {
    background-color: #ffffff;
}

.affiliated-stores-vertical {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.store-item-vertical {
    background: #ffffff;
    padding: 30px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.store-item-vertical h3 {
    font-size: 20px;
    color: var(--color-main);
    border-bottom: 3px solid var(--color-accent);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.store-address {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.store-tel {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.btn-store-reserve {
    display: block;
    width: 100%;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    transition: background-color var(--transition-base), transform var(--transition-base);
    box-shadow: 0 4px 10px rgba(195, 26, 33, 0.3);
}

.btn-store-reserve:hover {
    background-color: #d82e35;
    transform: translateY(-2px);
}

/* 新規OPEN店舗のスタイル */
.store-item-vertical.new-store {
    position: relative;
    border: 3px solid var(--color-accent);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.store-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, var(--color-accent) 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(195, 26, 33, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ==========================================
 * Footer
 * ========================================== */
.footer {
    background-color: #b61923;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-nav a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.copyright-info {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: #ffcccc;
}

.separator {
    color: #ffffff;
}

/* ==========================================
 * Fixed CTA Button
 * ========================================== */
.fixed-cta-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 110px;
    height: 110px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    transition: transform var(--transition-base);
    opacity: 0;
    border: none;
    box-shadow: none;
    transform: translateX(calc(-100vw - 150px)) rotate(0deg);
}

.fixed-cta-button.visible {
    opacity: 1;
    animation: rollInFromLeft 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
               pulse 2s infinite 2s;
}

.fixed-cta-button:hover {
    transform: scale(1.15) rotate(15deg);
    transition: transform 0.3s ease;
}

.cta-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes rollInFromLeft {
    0% {
        transform: translateX(calc(-100vw - 150px)) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateX(0) rotate(1080deg);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.08) rotate(5deg);
    }
}

/* ==========================================
 * 非公開セクション
 * ========================================== */
#value,
#menu-carousel {
    display: none !important;
}

.header-right a[href="#value"] {
    display: none !important;
}

/* ==========================================
 * Performance Optimizations
 * ========================================== */
.parallax-section,
.float-animation,
.card-3d {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .float-animation,
    .noren-image {
        animation: none !important;
    }
}

@media print {
    #scroll-progress,
    #confetti-container,
    .fixed-cta-button,
    .carousel-nav,
    .wave-divider {
        display: none !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ==========================================
 * Responsive Design
 * ========================================== */
@media (max-width: 1200px) {
    .carousel-slide-new {
        width: 75%;
    }
    
    .carousel-slide-new.prev {
        transform: translate(-50%, -50%) translateX(-65%) scale(0.82);
    }
    
    .carousel-slide-new.next {
        transform: translate(-50%, -50%) translateX(65%) scale(0.82);
    }
}

@media (max-width: 1024px) {
    .header {
        flex-wrap: wrap;
        min-height: auto;
        overflow: hidden;
        padding: 0;
    }
    
    .header-logo {
        order: -1;
        width: 100%;
        justify-content: center;
        height: auto;
        padding: 10px 0;
        background-color: var(--color-header);
        margin: 0;
    }
    
    .noren-image {
        width: 280px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        animation: none;
    }
    
    .header-left,
    .header-right {
        flex: 1;
        justify-content: center;
        padding: 8px;
    }
    
    .header-left a,
    .header-right a {
        padding: 6px 12px;
        font-size: 14px;
    }

    .main-visual {
        padding-top: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-icon {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
    
    .carousel-wrapper-new {
        height: 550px;
    }
    
    .carousel-slide-new {
        width: 80%;
        max-width: 750px;
    }
    
    .carousel-slide-new.prev {
        transform: translate(-50%, -50%) translateX(-60%) scale(0.8);
    }
    
    .carousel-slide-new.next {
        transform: translate(-50%, -50%) translateX(60%) scale(0.8);
    }
    
    .carousel-slide-new img {
        min-height: 450px;
        max-height: 600px;
    }
    
    .sns-banner-left {
        width: 170px;
        left: -80px;
        transform: translateY(-50%) rotate(-4deg);
    }
    
    .sns-character-right {
        width: 190px;
        right: -80px;
        bottom: 15px;
    }
    
    .sns-white-box {
        max-width: 90%;
        padding: 35px 60px 35px 60px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* ハンバーガーメニュー表示 */
    .hamburger-menu {
        display: flex;
    }
    
    .header-left,
    .header-right {
        display: none;
    }
    
    .header {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding: 0;
        overflow: visible;
    }
    
    .header-logo {
        display: flex !important;
        justify-content: center;
        padding: 15px 0;
        order: -1;
        width: 100%;
        overflow: visible;
        position: relative;
        z-index: 910;
    }
    
    .noren-image {
        display: block !important;
        width: 240px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
    
    /* メインスライダー：スマホで余白を最小化 */
    .main-slider-section {
        padding: 0;
        background-color: #ffffff;
    }
    
    .carousel-wrapper-new {
        height: auto;
        min-height: 300px;
        position: relative;
        overflow: hidden;
    }
    
    .carousel-slide-new {
        position: relative;
        width: 100%;
        max-width: 100%;
        left: 0;
        top: 0;
        transform: none;
    }
    
    .carousel-slide-new.active {
        position: relative;
        transform: none;
        z-index: 10;
    }
    
    /* スマホでは左右のスライドを非表示 */
    .carousel-slide-new.prev,
    .carousel-slide-new.next {
        display: none;
    }
    
    .carousel-slide-new a {
        border-radius: 0;
        box-shadow: none;
    }
    
    .carousel-slide-new img {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: 600px;
        object-fit: contain;
        background-color: #ffffff;
    }
    
    .carousel-dots-new {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        padding: 20px 0;
        margin: 0;
        z-index: 10;
    }
    
    .carousel-dot-new {
        background-color: #cccccc;
    }
    
    .carousel-dot-new.active {
        background-color: #d32f2f;
    }

    .main-visual-title {
        font-size: 60px;
        letter-spacing: 4px;
    }
    
    .main-visual-subtitle {
        font-size: 24px;
    }

    .section {
        padding: 50px 0;
    }
    
    /* 3つの魅力セクション：上の余白を削減 */
    #concept {
        padding-top: 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .features,
    .menu-items,
    .value-boxes,
    .review-grid,
    .affiliated-stores-vertical {
        grid-template-columns: 1fr;
    }
    
    .menu-item {
        padding: 25px 15px;
    }
    
    .menu-item p:last-of-type {
        padding: 0 5px;
        font-size: 15px;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }

    .main-visual {
        min-height: 400px;
        padding: 60px 20px;
        padding-top: 80px !important;
        margin: 0 !important;
    }

    .fixed-cta-button {
        width: 90px;
        height: 90px;
        right: 20px;
        bottom: 20px;
    }
    
    .fixed-cta-button.visible {
        animation: rollInFromLeft 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
                   pulse 2s infinite 1.8s;
    }

    .wave-divider::before {
        height: 40px;
    }

    .store-map iframe {
        height: 180px;
    }
    
    .store-badge {
        top: -12px;
        right: 15px;
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .sns-section-v2 {
        padding: 60px 0;
    }
    
    .sns-banner-left {
        width: 110px;
        left: -30px;
        top: 40%;
        transform: translateY(-50%) rotate(-3deg);
    }
    
    .sns-character-right {
        width: 130px;
        right: -30px;
        bottom: 15px;
    }
    
    .sns-white-box {
        flex-direction: column;
        padding: 30px 25px 30px 25px;
        gap: 30px;
        max-width: 85%;
        margin: 0 auto;
        align-items: center;
    }
    
    .sns-col {
        gap: 10px;
    }
    
    .sns-icon-img {
        width: 90px;
        height: 90px;
    }
    
    .sns-badge {
        width: 160px;
        height: 45px;
        margin-bottom: 3px;
    }
    
    .sns-account-img {
        width: 180px;
        height: 28px;
        margin: 2px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .main-visual-title {
        font-size: 48px;
    }
    
    .main-visual-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
    }
    
    /* 3つの魅力セクション：上の余白を削減 */
    #concept {
        padding-top: 20px;
    }

    .header-left a,
    .header-right a {
        font-size: 12px;
        padding: 5px;
    }
    
    .noren-image {
        display: block !important;
        width: 150px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }

    .header-logo {
        display: flex !important;
        justify-content: center;
        padding: 8px 0;
        overflow: visible;
        position: relative;
        z-index: 910;
    }

    .fixed-cta-button {
        width: 80px;
        height: 80px;
    }
    
    .fixed-cta-button.visible {
        animation: rollInFromLeft 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
                   pulse 2s infinite 1.5s;
    }

    .wave-divider::before {
        height: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-icon {
        font-size: 32px;
    }

    .store-map iframe {
        height: 150px;
    }
    
    .store-badge {
        top: -10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .carousel-wrapper-new {
        height: auto;
        min-height: 350px;
    }
    
    .carousel-slide-new {
        width: 100%;
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }
    
    .carousel-slide-new img {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: none;
        object-fit: contain;
        background-color: #ffffff;
    }
    
    .carousel-dots-new {
        position: relative;
        bottom: auto;
        gap: 10px;
        padding: 15px 0;
    }
    
    .carousel-dot-new {
        height: 10px;
        width: 10px;
    }
    
    .sns-banner-left {
        width: 90px;
        left: -20px;
        top: 35%;
        transform: translateY(-50%) rotate(-2deg);
    }
    
    .sns-character-right {
        width: 110px;
        right: -20px;
        bottom: 10px;
    }
    
    .sns-white-box {
        padding: 25px 15px 25px 15px;
        border: 2px solid #333333;
        gap: 25px;
        max-width: 80%;
    }
    
    .sns-col {
        gap: 8px;
    }
    
    .sns-icon-img {
        width: 80px;
        height: 80px;
        margin: 3px 0;
    }
    
    .sns-badge {
        width: 140px;
        height: 40px;
        margin-bottom: 2px;
    }
    
    .sns-account-img {
        width: 160px;
        height: 26px;
        margin: 2px 0;
    }
    
    .sns-btn {
        padding: 10px 25px;
        font-size: 14px;
        margin-top: 3px;
    }
}

/* ==========================================
 * お問い合わせフォーム
 * ========================================== */
.contact-section {
    background-color: #ffffff;
    position: relative;
    padding-bottom: 100px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-intro p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: var(--color-accent);
    font-size: 14px;
    margin-left: 5px;
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-main);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--color-accent);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-main) 0%, #004080 100%);
    color: white;
    padding: 16px 60px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
    background: linear-gradient(135deg, #004080 0%, var(--color-main) 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group label {
        font-size: 15px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 14px 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-intro p {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}