/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

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

/* ヘッダー */
.header {
    background: linear-gradient(135deg, #ffd1dc 0%, #ffc0cb 100%);
    padding: 20px 0;
}

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

.header-info {
    flex: 1;
    min-width: 300px;
}

.header-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #e91e63;
    margin: 0;
}

.header-contact {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.btn-phone,
.btn-phone-large {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-phone:hover,
.btn-phone-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-label {
    font-size: 12px;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
}

.btn-form,
.btn-form-large {
    background: linear-gradient(135deg, #4fc3f7 0%, #2196f3 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-form:hover,
.btn-form-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-icon {
    font-size: 20px;
}

.business-hours {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.hours-label,
.holiday-label {
    font-weight: bold;
    color: #333;
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe4e9 100%);
    padding: 60px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.highlight-yellow {
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    font-weight: bold;
}

.highlight-pink {
    color: #e91e63;
    font-weight: bold;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 16px;
    color: #666;
}

.hero-images {
    flex: 1;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* お知らせセクション */
.notice {
    background: #fff9c4;
    padding: 40px 0;
    text-align: center;
}

.notice-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f57c00;
}

.notice-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.notice-box {
    background: white;
    border: 3px solid #f57c00;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.champagne-text {
    font-size: 18px;
    line-height: 1.8;
}

/* セクションタイトル */
.section-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #e91e63;
    line-height: 1.6;
}

.section-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

/* ギャラリー */
.gallery {
    padding: 60px 0;
    background: #f5f5f5;
}

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

.gallery-item {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

/* 悩みセクション */
.problems {
    padding: 60px 0;
    background: white;
}

.problems-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px;
}

.problems-list li {
    background: #fff3e0;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #ff9800;
    border-radius: 5px;
    font-size: 16px;
}

.problems-list li:before {
    content: "✓ ";
    color: #ff9800;
    font-weight: bold;
    margin-right: 10px;
}

.cta-message {
    text-align: center;
}

.cta-image {
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ソリューションセクション */
.solution {
    padding: 60px 0;
    background: #f5f5f5;
}

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

.solution-content p {
    margin-bottom: 20px;
}

.note {
    font-size: 14px;
    color: #f44336;
}

/* 実績セクション */
.achievements {
    padding: 60px 0;
    background: white;
}

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

.achievements-content p {
    margin-bottom: 20px;
}

/* 理由セクション */
.reasons {
    padding: 60px 0;
    background: #f5f5f5;
}

.reason-item {
    margin-bottom: 50px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reason-header {
    margin-bottom: 20px;
}

.reason-number {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-right: 10px;
}

.reason-title {
    display: inline;
    font-size: 22px;
    color: #333;
}

.reason-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.reason-image {
    flex: 0 0 300px;
}

.reason-image img {
    width: 100%;
    border-radius: 10px;
}

.reason-text {
    flex: 1;
}

.reason-text p {
    margin-bottom: 15px;
}

/* お客様の声 */
.testimonials {
    padding: 60px 0;
    background: white;
}

.testimonial-item {
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
}

.testimonial-image {
    flex: 0 0 200px;
}

.testimonial-image img {
    width: 100%;
    border-radius: 10px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-title {
    font-size: 20px;
    color: #e91e63;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.testimonial-text {
    margin-bottom: 10px;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 40px auto 0;
}

.benefits-list li {
    background: #e3f2fd;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #2196f3;
    border-radius: 5px;
}

.benefits-list li:before {
    content: "★ ";
    color: #2196f3;
    font-weight: bold;
    margin-right: 10px;
}

/* メニュー・料金 */
.menu {
    padding: 60px 0;
    background: #f5f5f5;
}

.menu-intro {
    max-width: 900px;
    margin: 0 auto 40px;
}

.menu-notes {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.menu-notes h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #e91e63;
}

.menu-note {
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}

.price-section {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e91e63;
    text-align: center;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table td {
    padding: 15px;
    border: 1px solid #ddd;
}

.price-table .category {
    background: #fff3e0;
    font-weight: bold;
    text-align: center;
}

.tax-note {
    text-align: right;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* フローセクション */
.flow {
    padding: 60px 0;
    background: white;
}

.flow-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.flow-subtitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e91e63;
}

.flow-list {
    background: #f5f5f5;
    padding: 30px 30px 30px 50px;
    border-radius: 10px;
    line-height: 2;
}

.flow-list li {
    margin-bottom: 10px;
}

.flow-notes {
    max-width: 900px;
    margin: 0 auto;
    background: #fff3e0;
    padding: 30px;
    border-radius: 10px;
}

.flow-notes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f57c00;
}

.flow-notes p {
    margin-bottom: 15px;
}

/* 緊急お知らせ */
.urgent-notice {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    text-align: center;
}

.urgent-text {
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 10px;
}

.urgent-note {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

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

/* FAQ */
.faq {
    padding: 60px 0;
    background: white;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 30px;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: #e91e63;
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
}

.faq-answer {
    padding: 20px;
}

.faq-answer p {
    margin-bottom: 10px;
}

/* 会社概要 */
.company {
    padding: 60px 0;
    background: #f5f5f5;
}

.company-table {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    background: white;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-table th,
.company-table td {
    padding: 20px;
    border: 1px solid #ddd;
}

.company-table th {
    background: #fff3e0;
    font-weight: bold;
    width: 150px;
    text-align: left;
}

/* アクセス */
.access {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.access-info {
    font-size: 18px;
    font-weight: bold;
    color: #e91e63;
    margin-top: 20px;
}

/* お問い合わせフォーム */
.contact-form {
    padding: 60px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.form-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* フッター */
.footer {
    background: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.copyright {
    font-size: 14px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-contact {
        text-align: center;
        margin-top: 20px;
    }
    
    .contact-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-content {
        flex-direction: column;
    }
    
    .reason-image {
        flex: 1;
    }
    
    .testimonial-item {
        flex-direction: column;
    }
    
    .testimonial-image {
        flex: 1;
    }
    
    .flow-columns {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-phone,
    .btn-phone-large,
    .btn-form,
    .btn-form-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}
/* お問い合わせフォーム追加スタイル */
.form-notice {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff3e0;
    border-radius: 10px;
    border-left: 5px solid #ff9800;
}

.contact-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #e91e63;
    border-bottom: 2px solid #e91e63;
    padding-bottom: 10px;
}

.phone-large {
    text-align: center;
    margin: 20px 0;
}

.phone-large a {
    font-size: 32px;
    font-weight: bold;
    color: #e91e63;
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffe4e9 0%, #ffc0cb 100%);
    border-radius: 50px;
    transition: transform 0.3s;
}

.phone-large a:hover {
    transform: scale(1.05);
}

.business-time {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.required-info {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.required-info li {
    padding: 10px 15px;
    margin-bottom: 8px;
    background: #f5f5f5;
    border-left: 3px solid #2196f3;
    border-radius: 5px;
}

.required-info li:before {
    content: "✓ ";
    color: #2196f3;
    font-weight: bold;
    margin-right: 8px;
}

.email-link {
    text-align: center;
    margin: 25px 0;
    font-size: 18px;
}

.email-link a {
    color: #2196f3;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #2196f3;
    padding-bottom: 2px;
}

.email-link a:hover {
    color: #1976d2;
    border-bottom-color: #1976d2;
}

.note-small {
    font-size: 13px;
    color: #f44336;
    background: #ffebee;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .contact-info-box {
        grid-template-columns: 1fr;
    }
    
    .phone-large a {
        font-size: 24px;
        padding: 12px 20px;
    }
    
    .contact-method {
        padding: 20px;
    }
}
/* 新しいヒーローセクション */
.hero-new {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ee 50%, #ffd6e0 100%);
    padding: 80px 0 60px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-new::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(135, 206, 250, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-new {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    animation: pulse 2s infinite;
}

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

.hero-main-title {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 900;
}

.venue-highlight {
    display: block;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 56px;
    text-shadow: 2px 2px 4px rgba(233, 30, 99, 0.1);
}

.specialist-text {
    display: block;
    color: #333;
    font-size: 44px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 20px;
}

.feature-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 100%);
    color: white;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: #2196f3;
    border: 2px solid #2196f3;
}

.hero-btn-secondary:hover {
    background: #2196f3;
    color: white;
    transform: translateY(-3px);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 12px;
    opacity: 0.9;
}

.btn-number {
    font-size: 22px;
    font-weight: 900;
}

.btn-icon {
    font-size: 24px;
}

/* 画像エリア */
.hero-image-new {
    flex: 1;
    max-width: 700px;
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.hero-image-main:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.main-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.venue-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.venue-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    color: #e91e63;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 0.6s ease-out;
}

.venue-badge-1 {
    animation-delay: 0.2s;
}

.venue-badge-2 {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-gallery-mini {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mini-img {
    flex: 1;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.mini-img:hover {
    transform: scale(1.05) translateY(-5px);
}

/* 既存のheroセクションを非表示 */
.hero {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .hero-wrapper {
        gap: 40px;
    }
    
    .hero-main-title {
        font-size: 40px;
    }
    
    .venue-highlight {
        font-size: 48px;
    }
    
    .specialist-text {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .hero-new {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content-new {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 32px;
    }
    
    .venue-highlight {
        font-size: 36px;
    }
    
    .specialist-text {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-new {
        max-width: 100%;
    }
    
    .hero-image-main {
        transform: none;
    }
    
    .venue-badges {
        left: 10px;
        top: 10px;
    }
    
    .venue-badge {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 26px;
    }
    
    .venue-highlight {
        font-size: 30px;
    }
    
    .specialist-text {
        font-size: 26px;
    }
    
    .feature-item {
        padding: 10px 15px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .hero-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .btn-number {
        font-size: 18px;
    }
}
/* ============================================
   Contact Form 7 専用スタイル
   ============================================ */

/* フォームラッパー */
.cf7-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

/* Contact Form 7 デフォルトスタイルの調整 */
.wpcf7 {
    max-width: 100%;
}

.wpcf7-form {
    margin: 0;
}

/* フォームフィールド */
.wpcf7-form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

/* テキストエリア */
.wpcf7-textarea {
    min-height: 150px;
    resize: vertical;
}

/* 送信ボタン */
.wpcf7-submit {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    width: auto;
    display: inline-block;
    margin-top: 20px;
}

.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

/* フォームラベル */
.wpcf7-form p {
    margin-bottom: 25px;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

/* 必須マーク */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 5px;
}

/* 送信完了・エラーメッセージ */
.wpcf7-response-output {
    border: 2px solid #4caf50;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    border-color: #4caf50;
    background: #e8f5e9;
    color: #2e7d32;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    border-color: #f44336;
    background: #ffebee;
    color: #c62828;
}

/* スピナー（送信中） */
.wpcf7-spinner {
    margin-left: 10px;
}

/* 電話番号補足情報 */
.contact-info-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #dee2e6;
}

.contact-info-note h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-info-note .phone-large {
    margin: 20px 0;
}

.contact-info-note .phone-large a {
    color: #ff69b4;
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-note .phone-large a:hover {
    color: #ff1493;
    transform: scale(1.05);
    display: inline-block;
}

.contact-info-note .business-hours {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .cf7-form-wrapper {
        padding: 25px 20px;
    }
    
    .wpcf7-submit {
        width: 100%;
        padding: 16px 40px;
        font-size: 16px;
    }
    
    .contact-info-note {
        padding: 20px;
    }
    
    .contact-info-note .phone-large a {
        font-size: 28px;
    }
}

/* チェックボックス・ラジオボタン */
.wpcf7-list-item {
    margin: 0 0 10px 0;
}

.wpcf7-list-item-label {
    margin-left: 8px;
}

/* ファイルアップロード */
.wpcf7-file {
    padding: 10px;
    border: 2px dashed #e0e0e0;
}

/* セレクトボックス */
.wpcf7-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* 確認画面対応 */
.wpcf7-display-none {
    display: none;
}

