@charset "utf-8";

/* ==========================================================================
   ContactButton Component
   フッターで使用されるお問い合わせボタンのスタイル
   ========================================================================== */

/* Block: contact-button
   ========================================================================== */
#Footer .contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 395px;
    height: 83px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.05em;
    color: var(--mainTextColor_2);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#Footer .contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#Footer .contact-button:focus {
    outline: 2px solid var(--mainColor_1);
    outline-offset: 2px;
}

/* Element: contact-button__icon
   ========================================================================== */
#Footer .contact-button__icon {
    display: block;
    flex-shrink: 0;
}

/* Element: contact-button__text
   ========================================================================== */
#Footer .contact-button__text {
    display: block;
    white-space: nowrap;
}

/* Modifier: contact-button--mail
   ========================================================================== */
#Footer .contact-button--mail {
    background-color: var(--mainColor_1);
    margin: 0 auto;
}

#Footer .contact-button--mail .contact-button__icon {
    width: 37px;
    aspect-ratio: 37 / 27;
    margin-right: 20px;
}

/* Modifier: contact-button--tel
   ========================================================================== */
#Footer .contact-button--tel {
    background-color: var(--mainColor_2);
}

#Footer .contact-button--tel .contact-button__icon {
    width: 36px;
    aspect-ratio: 36 / 36;
    margin-right: 14px;
}

/* レスポンシブ対応
   ========================================================================== */
@media screen and (max-width: 767px) {
    #Footer .contact-button {
        width: 100%;
        max-width: 320px;
        font-size: 28px;
        height: 70px;
    }
    
    #Footer .contact-button--mail .contact-button__icon {
        width: 32px;
        margin-right: 15px;
    }
    
    #Footer .contact-button--tel .contact-button__icon {
        width: 30px;
        margin-right: 12px;
    }
}

@media screen and (max-width: 480px) {
    #Footer .contact-button {
        font-size: 24px;
        height: 60px;
    }
    
    #Footer .contact-button--mail .contact-button__icon {
        width: 28px;
        margin-right: 12px;
    }
    
    #Footer .contact-button--tel .contact-button__icon {
        width: 26px;
        margin-right: 10px;
    }
}

/* ダークモード対応
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    #Footer .contact-button:hover {
        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    }
}

/* 印刷時の最適化
   ========================================================================== */
@media print {
    #Footer .contact-button {
        background-color: transparent !important;
        border: 2px solid #333 !important;
        color: #333 !important;
        box-shadow: none !important;
        transform: none !important;
    }
    
    #Footer .contact-button__icon {
        display: none;
    }
} 