.phone-contact-section {
    padding: 100px 20px;
    background-image: url('../images/contact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.phone-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    z-index: 0;
}

.phone-contact-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

/* 中央のメインコンテンツ */
.phone-contact-main {
    position: relative;
    z-index: 2;
    text-align: center;
}

.phone-contact-operator {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px;
}

/* 電話 + LINE 横並びレイアウト */
.contact-buttons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.contact-block__label {
    font-size: 16px;
    font-weight: 700;
    color: #3a3a3a;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 20px;
    border-radius: 30px;
}

/* 仕切り */
.contact-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: relative;
    padding: 0 8px;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.contact-divider__text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
}

/* 電話ボタン */
.phone-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 50px;
    background: linear-gradient(135deg, #357CBD 0%, #2563A8 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 60px;
    font-size: 38px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(37, 99, 168, 0.35);
    transition: all 0.3s ease;
    letter-spacing: 3px;
}

.phone-contact-button::before {
    content: '📞';
    margin-right: 15px;
    font-size: 38px;
}

.phone-contact-button:hover {
    background: linear-gradient(135deg, #2563A8 0%, #1a4d87 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 168, 0.45);
}

/* LINEボタン */
.line-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 50px;
    background: linear-gradient(135deg, #06C755 0%, #05a948 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 60px;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(6, 199, 85, 0.35);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.line-contact-button:hover {
    background: linear-gradient(135deg, #05a948 0%, #048a3b 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 199, 85, 0.45);
}

.line-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.line-contact-desc {
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.85);
    padding: 5px 16px;
    border-radius: 20px;
}

/* 4隅の人物画像 */
.phone-contact-person {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 8px solid #ffffff;
    z-index: 1;
}

.phone-contact-person.person-1 {
    top: -20px;
    left: 50px;
}

.phone-contact-person.person-2 {
    top: 20px;
    right: 50px;
}

.phone-contact-person.person-3 {
    bottom: -50px;
    left: 50px;
    width: 250px;
    height: 250px;
}

.phone-contact-person.person-4 {
    bottom: 20px;
    right: 50px;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .phone-contact-person {
        width: 250px;
        height: 250px;
    }
    
    .phone-contact-person.person-1 {
        top: -20px;
        left: 30px;
    }
    
    .phone-contact-person.person-2 {
        top: 20px;
        right: 30px;
    }
    
    .phone-contact-person.person-3 {
        bottom: -50px;
        left: 30px;
        width: 200px;
        height: 200px;
    }
    
    .phone-contact-person.person-4 {
        bottom: 20px;
        right: 30px;
    }
    
    .phone-contact-button {
        font-size: 34px;
        padding: 20px 44px;
    }

    .phone-contact-button::before {
        font-size: 34px;
    }

    .line-contact-button {
        font-size: 24px;
        padding: 20px 44px;
    }

    .line-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 991px) {
    .phone-contact-person {
        width: 180px;
        height: 180px;
        border: 5px solid #ffffff;
    }
    
    .phone-contact-person.person-1 {
        top: -15px;
        left: 20px;
    }
    
    .phone-contact-person.person-2 {
        top: 15px;
        right: 20px;
    }
    
    .phone-contact-person.person-3 {
        bottom: -40px;
        left: 20px;
        width: 150px;
        height: 150px;
    }
    
    .phone-contact-person.person-4 {
        bottom: 15px;
        right: 20px;
    }
    
    .phone-contact-operator {
        max-width: 700px;
    }
    
    .contact-buttons-row {
        gap: 24px;
    }

    .phone-contact-button {
        font-size: 30px;
        padding: 18px 38px;
    }

    .phone-contact-button::before {
        font-size: 30px;
    }

    .line-contact-button {
        font-size: 22px;
        padding: 18px 38px;
    }

    .line-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 767px) {
    .phone-contact-section {
        padding: 60px 15px;
    }
    
    .phone-contact-container {
        min-height: 500px;
    }
    
    .phone-contact-person {
        width: 120px;
        height: 120px;
        border: 4px solid #ffffff;
    }
    
    .phone-contact-person.person-1 {
        top: -10px;
        left: 10px;
    }
    
    .phone-contact-person.person-2 {
        top: 10px;
        right: 10px;
    }
    
    .phone-contact-person.person-3 {
        bottom: -30px;
        left: 10px;
        width: 100px;
        height: 100px;
    }
    
    .phone-contact-person.person-4 {
        bottom: 10px;
        right: 10px;
    }
    
    .phone-contact-operator {
        max-width: 500px;
    }

    .contact-buttons-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-divider {
        flex-direction: row;
        align-self: auto;
        width: 80%;
        padding: 0;
    }

    .contact-divider::before,
    .contact-divider::after {
        width: auto;
        height: 2px;
        flex: 1;
    }

    .contact-divider__text {
        padding: 0 14px;
    }
    
    .phone-contact-button {
        font-size: 26px;
        padding: 16px 36px;
        border-radius: 50px;
    }
    
    .phone-contact-button::before {
        font-size: 26px;
        margin-right: 10px;
    }

    .line-contact-button {
        font-size: 20px;
        padding: 16px 36px;
        border-radius: 50px;
    }

    .line-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .phone-contact-container {
        min-height: 400px;
    }
    
    .phone-contact-person {
        width: 85px;
        height: 85px;
        border: 3px solid #ffffff;
    }
    
    .phone-contact-person.person-1 {
        top: -5px;
        left: 5px;
    }
    
    .phone-contact-person.person-2 {
        top: 5px;
        right: 5px;
    }
    
    .phone-contact-person.person-3 {
        bottom: -20px;
        left: 5px;
        width: 70px;
        height: 70px;
    }
    
    .phone-contact-person.person-4 {
        bottom: 5px;
        right: 5px;
    }
    
    .phone-contact-operator {
        max-width: 350px;
    }

    .contact-buttons-row {
        gap: 16px;
    }

    .contact-block__label {
        font-size: 13px;
        padding: 5px 14px;
    }
    
    .phone-contact-button {
        font-size: 20px;
        padding: 14px 28px;
    }
    
    .phone-contact-button::before {
        font-size: 20px;
    }

    .line-contact-button {
        font-size: 17px;
        padding: 14px 28px;
        gap: 8px;
    }

    .line-icon {
        width: 22px;
        height: 22px;
    }

    .line-contact-desc {
        font-size: 12px;
    }
}

