/* Header CSS */

.header {
    background: white;
    box-shadow: 0 0 6px 2px #EAF1FD;
    width: 100%;
    height: 95px;
    top: 0;
    left: 0; 
    position: fixed;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

.header-box {
    width: 100%;
    max-width: 1100px;
    height: 95px;
    justify-content: space-between !important;
    padding: 0 50px;
    box-sizing: border-box;
}

.header-box .name {
    color: #1E4B9F;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.header-box .phone-box {
    gap: 8px;
}

.header-box .phone-icon {
    width: 26px;
    height: 32px;
    background: url("../media/h_1.png") no-repeat center/contain;
}

.header-box .phone-number-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.header-box .phone-number {
    font-family: "Noto Sans JP", sans-serif;
    color: #1E4B9F;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.header-box .open-time {
    color: #1E4B9F;
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
}

.header-box .button {
    width: 166px;
    height: 44px;
    background: #FD9C01;
    text-decoration: none;
    border: none;
    border-radius: 100px;
    gap: 6px;
    margin-left: 40px;
}

.header-box .button-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.header-box .email-icon {
    width: 18px;
    height: 18px;
    background: url("../media/h_2.svg") no-repeat center/contain;
}
.header-box .nowrap{
    white-space: nowrap;
}

@media screen and (max-width: 700px){
    .header-box .button {
        display: none;
    }
    .header-box {
        padding: 0 50px;
    }
}
@media screen and (max-width: 400px){
    .header-box .button {
        display: none;
    }
    .header-box {
        padding: 0 20px;
    }
    .header {
        height: 71px;
    }
    .phone-number {
        font-size: 20px !important;
    }
}