/* Access & Contact Page Styles - Modern Design from Reference Site */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* Page Hero Section */
.page-hero {
    background: #e6dfd3;
    padding: 120px 0 80px;
    text-align: left;
    position: relative;
    overflow: visible;
}

.page-hero .container {
    max-width: 100%;
    padding: 0;
}

.page-title {
    font-family: 'Outfit', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12rem;
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: rgba(51, 51, 51, 0.08);
    line-height: 0.9;
    position: relative;
    left: 0;
    transform: translateX(-5px);
}

.page-description {
    font-family: 'Shippori Mincho', 'Noto Serif JP', 'YuMincho', 'Hiragino Mincho ProN', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    line-height: 1.8;
    margin-top: -40px;
    margin-left: 100px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    background: #e6dfd3;
    padding: 1rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #D4A574;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb .separator {
    color: #999;
}

.breadcrumb .current {
    color: #666;
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: transparent;
    color: #667eea;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
}

.section-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-intro {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Access Section */
.access-modern-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFF8F0 0%, #FFEAD5 100%);
}

.access-modern-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.access-info-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.access-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #D4A574;
    margin-bottom: 2rem;
}

.access-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-label {
    display: inline-block;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFEAD5 100%);
    color: #D4A574;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.info-content {
    flex: 1;
    color: #333;
    line-height: 1.6;
}

.phone-link {
    color: #D4A574;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #c9965a;
}

.access-map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Access Features */
.access-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 4rem auto 0;
}

.feature-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #e0e0e0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #D4A574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212,165,116,0.3);
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-modern-section {
    padding: 5rem 0;
    background: white;
}

.contact-methods-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #faf6f0 0%, #fff5f0 100%);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(205,102,154,0.15);
}

.method-icon-wrapper {
    margin-bottom: 1.5rem;
}

.method-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: #E8A87C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 20px rgba(232,168,124,0.3);
}

/* LINE用の緑色アイコン */
.line-icon {
    background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
    box-shadow: 0 5px 20px rgba(0,185,0,0.3);
}

/* メール用のコーラル色アイコン */
.contact-method-card:nth-child(3) .method-icon {
    background: #CD9575;
    box-shadow: 0 5px 20px rgba(205,149,117,0.3);
}

.contact-method-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.method-number {
    font-size: 1.8rem;
    color: #D4A574;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.method-email {
    font-size: 1.2rem;
    color: #D4A574;
    margin-bottom: 0.5rem;
}

.method-hours,
.method-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-modern {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Noto Sans JP', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #CD669A;
    background: white;
    box-shadow: 0 0 0 4px rgba(205, 102, 154, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.required {
    color: #D4A574;
    font-weight: normal;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.checkbox-label a {
    color: #D4A574;
    text-decoration: none;
    border-bottom: 1px solid #D4A574;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-modern-submit {
    padding: 1rem 3rem;
    background: #D4A574;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212,165,116,0.3);
}

.btn-modern-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,165,116,0.4);
    background: #c9965a;
}

/* Buttons */
.btn-modern-gradient {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: #E8A87C;
    color: white !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232,168,124,0.3);
}

.btn-modern-gradient span {
    color: white !important;
}

.btn-modern-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232,168,124,0.4);
    background: #e09862;
}

.btn-modern-line {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, #06C755 0%, #00B900 100%);
    color: white !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,185,0,0.3);
}

.btn-modern-line span {
    color: white !important;
}

.btn-modern-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,185,0,0.4);
}

.btn-modern-outline {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: white;
    color: #CD9575;
    border: 2px solid #CD9575;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    background: #CD9575;
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* CTA Section */
.cta-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 50%, #d8d8d8 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modern {
    padding: 0.9rem 2.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-white {
    background: #E8A87C;
    color: white;
    border: none;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232,168,124,0.3);
    background: #e09862;
}

.btn-outline-white {
    background: white;
    color: #CD9575;
    border: 2px solid #CD9575;
}

.btn-outline-white:hover {
    background: #CD9575;
    color: white;
    transform: translateY(-3px);
    border-color: #CD9575;
}

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

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 20px 60px;
    }
    
    .page-title {
        font-size: 6.5rem;
        transform: translateX(0);
    }
    
    .page-description {
        font-size: 0.85rem;
        margin-left: 0;
        padding-left: 0;
        margin-top: 20px;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .access-modern-content {
        grid-template-columns: 1fr;
    }
    
    .access-features {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .feature-item:not(:last-child)::after {
        display: none;
    }
    
    .feature-item {
        width: 100%;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .contact-methods-modern {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }

    .section-intro {
        font-size: 16px !important;
    }

    .section-intro p {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 15px 40px;
    }
    
    .page-title {
        font-size: 4.5rem;
        margin-bottom: 15px;
    }
    
    .page-description {
        font-size: 0.75rem;
        line-height: 1.6;
        margin-left: 0;
        padding-left: 0;
    }
}