/* Life Consultation Page Specific Styles */

/* Hero Section */
.life-consultation-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/life-consultation-01.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Floating Background Shapes */
.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: floating 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(255, 179, 193, 0.2);
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    background: rgba(255, 143, 171, 0.2);
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
    background: rgba(252, 228, 236, 0.2);
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
    background: rgba(248, 187, 217, 0.2);
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    background: rgba(255, 107, 157, 0.2);
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 70%;
    right: 25%;
    animation-delay: 5s;
    background: rgba(255, 179, 193, 0.2);
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Particles Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle-2 {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle-3 {
    left: 40%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.particle-4 {
    left: 60%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.particle-5 {
    left: 75%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.particle-6 {
    left: 90%;
    animation-delay: 5s;
    animation-duration: 12s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.life-consultation-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
    color: var(--primary-color);
}

.hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: iconPulse 3s ease-in-out infinite;
}

.hero-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }
}

.life-consultation-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white !important;
    line-height: 1.2;
    animation: titleSlideIn 1s ease-out;
}

.title-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    display: inline-block;
    animation: highlightGlow 2s ease-in-out infinite alternate;
}

@keyframes highlightGlow {
    0% {
        filter: brightness(1);
    }

    100% {
        filter: brightness(1.2);
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Notice - Prominent Style */
.life-consultation-hero .hero-notice-prominent {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #555555 !important;
    background: #FFEB3B !important;
    padding: 1.2rem 2rem !important;
    border-radius: 12px;
    border: 3px solid #ff6b00;
    border-left: 8px solid #d32f2f;
    margin-top: 2rem !important;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.25);
    animation: noticeGlow 2s ease-in-out infinite;
    line-height: 1.8 !important;
}

@keyframes noticeGlow {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(211, 47, 47, 0.25);
    }

    50% {
        box-shadow: 0 8px 30px rgba(211, 47, 47, 0.4);
    }
}

.life-consultation-hero .hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
    max-width: 700px;
    animation: subtitleFadeIn 1s ease-out 0.3s both;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 大きな目立つ注記スタイル */
.life-consultation-hero .hero-notice-large {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    border-radius: 15px;
    border: 3px solid #FF6347;
    box-shadow: 0 8px 30px rgba(255, 99, 71, 0.4);
    text-shadow: none;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: noticeGlow 2s ease-in-out infinite alternate;
}

@keyframes noticeGlow {
    0% {
        box-shadow: 0 8px 30px rgba(255, 99, 71, 0.4);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 12px 40px rgba(255, 99, 71, 0.7);
        transform: scale(1.02);
    }
}

.life-consultation-hero .hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: buttonsSlideUp 1s ease-out 0.6s both;
}

@keyframes buttonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 生活相談ページ専用ボタンスタイル - 桜テーマピンク */
.life-consultation-hero .btn-outline {
    background: transparent !important;
    color: #ff8fab !important;
    border: 2px solid #ff8fab !important;
    backdrop-filter: blur(5px);
}

.life-consultation-hero .btn-outline:hover {
    background: #ff8fab !important;
    color: white !important;
    border-color: #ff8fab !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 139, 171, 0.4);
}

/* 位置情報テキストのスタイル */
.life-consultation-hero p {
    color: white !important;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.9;
}

/* 生活相談ページ専用送信ボタンスタイル */
.life-consultation-detail .submit-btn {
    width: auto !important;
    padding: 1rem 1.5rem !important;
    margin: 0 auto !important;
    display: block !important;
    max-width: 300px;
}

.btn-animated {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-animated:hover::before {
    left: 100%;
}

.btn-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.location-notice {
    font-size: 1rem;
    color: #e74c3c;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 76, 60, 0.2);
    animation: noticeSlideIn 1s ease-out 0.9s both;
    font-weight: 600;
}

.location-notice i {
    margin-right: 0.5rem;
    color: #FFD700;
}

@keyframes noticeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.scroll-arrow i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Enhanced Overlay - Simplified for home page consistency */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

/* Detail Section */
.life-consultation-detail {
    background: white;
    padding: 6rem 0;
}

.consultation-intro {
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--light-pink);
}

.consultation-intro h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.consultation-intro p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.consultation-points {
    margin-bottom: 4rem;
}

.consultation-points h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.consultation-examples {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 15px;
}

.consultation-examples h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.example-item {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 179, 193, 0.3);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.example-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.2);
}

.example-item .example-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 2rem;
    margin-top: 0.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.example-item:hover .example-image {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.example-item .text-content {
    flex: 1;
}

.example-item p {
    color: var(--dark-text);
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

.example-item:not(:has(.text-content)) p {
    flex: 1;
}

.example-item .text-content p+p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Example Icon Spacing */
.example-icon {
    margin-right: 2rem;
    margin-bottom: 0;
    width: 90px !important;
    height: 90px !important;
    font-size: 2.5rem !important;
    flex-shrink: 0;
}

/* Application Section */
.consultation-apply-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.apply-description {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-weight: 500;
}

.apply-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.apply-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.apply-button i {
    font-size: 1.3rem;
}

/* Process Steps */
.consultation-process {
    margin: 2rem 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.process-step p {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 500;
}

/* Flow Section */
.consultation-flow {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 15px;
}

.consultation-flow h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.consultation-flow .flow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.consultation-flow .flow-step {
    display: flex;
    align-items: center;
    text-align: left;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(173, 216, 230, 0.3);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1.5rem;
}

.consultation-flow .flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.2);
    border-color: var(--primary-color);
}

.consultation-flow .step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.consultation-flow .step-content {
    flex: 1;
}

.consultation-flow .step-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.consultation-flow .step-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}


/* Info Section */
.consultation-info {
    margin-bottom: 4rem;
}

.consultation-info h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--light-pink);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.info-card h4 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.price,
.time,
.place {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .life-consultation-hero {
        height: 50vh;
        min-height: 400px;
    }

    .life-consultation-hero .hero-content {
        padding: 0 1rem;
    }

    .hero-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    .hero-icon i {
        font-size: 2rem;
    }

    .life-consultation-hero .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .life-consultation-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .life-consultation-hero .hero-notice-large {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
        margin-top: 1.5rem;
    }

    .life-consultation-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .life-consultation-hero .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 1rem 2rem;
    }

    .location-notice {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    /* Adjust floating shapes for mobile */
    .floating-shape {
        opacity: 0.5;
    }

    .shape-1,
    .shape-3,
    .shape-5 {
        left: 5%;
    }

    .shape-2,
    .shape-4,
    .shape-6 {
        right: 5%;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .example-item {
        padding: 1.2rem;
    }

    .btn-large i {
        font-size: 1.1rem;
    }
}

/* Form Unavailable Notice */
.form-notice-unavailable {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ff9800;
    border-left: 6px solid #ff6b00;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.form-notice-unavailable p {
    color: #856404;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0.5rem 0;
    font-weight: 500;
}

.form-notice-unavailable p:first-child {
    font-weight: 600;
    font-size: 1.15rem;
}

/* Disabled Form Styles */
form[disabled] {
    opacity: 0.6;
    pointer-events: none;
}

form[disabled] input,
form[disabled] select,
form[disabled] textarea {
    background-color: #f5f5f5 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    border-color: #ddd !important;
}

form[disabled] .submit-btn {
    background: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    border: none !important;
    box-shadow: none !important;
}

form[disabled] .submit-btn:hover {
    transform: none !important;
    box-shadow: none !important;
}

.example-icon {
    width: 75px !important;
    height: 75px !important;
    font-size: 2rem !important;
    margin-right: 1.5rem;
}

.consultation-flow .flow-step {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
}

.consultation-flow .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 1rem;
}

.consultation-flow .step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.consultation-flow .step-content p {
    font-size: 0.9rem;
}

/* Form Styling Enhancements */
.form-note {
    display: block;
    font-size: 0.85rem;
    color: #e74c3c;
    margin-top: 0.3rem;
    font-style: italic;
    font-weight: 500;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.form-group input[placeholder] {
    font-size: 0.9rem;
}

/* Address Field Specific Styling */
#address {
    font-weight: 500;
}

/* Name Fields Spacing */
.form-group input+label {
    margin-top: 1rem;
}

/* Consultation Application Section */
.consultation-application {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid #ffb3c1;
}

.application-description {
    font-size: 1.2rem;
    color: #b67a93;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-large i {
    font-size: 1.3rem;
}

/* Responsive adjustments for consultation application */
@media (max-width: 768px) {
    .consultation-application {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }

    .application-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .btn-large i {
        font-size: 1.1rem;
    }
}

/* Temporary Disabled Section Styling */
/* TEMPORARY: 一時的に灰色表示用のクラス - 削除すれば元に戻ります */
.temporary-disabled {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
    position: relative;
}

.temporary-disabled::after {
    content: '（一時的に利用できません）';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(200, 200, 200, 0.95);
    color: #666;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}