/* 3つの特徴セクションと関連要素のスタイル */

/* 特徴ボックス全体 */
.features-box {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 20px 15px;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.features-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* 個別特徴カード */
.feature-card {
    flex: 1;
    text-align: center;
    min-width: 90px;
    background: rgba(255,255,255,0.05);
    padding: 15px 10px;
    border-radius: 8px;
    border-bottom: 3px solid rgba(255,238,0,0.5);
}

.feature-icon-circle {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.feature-icon-circle i {
    color: #ffee00;
    font-size: 1.5rem;
}

.feature-title {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    line-height: 1.3;
}

/* ヒーローCTAエリア */
.hero-cta {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 電話ボタンコンテナ */
.hero-phone-container {
    position: relative;
    margin-bottom: 20px;
}

/* 「たった3分で解決」ラベル */
.quick-estimate-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffee00;
    color: #000;
    font-weight: bold;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 1px solid rgba(0,0,0,0.1);
}

.quick-estimate-label i {
    margin-right: 5px;
}

/* 電話大ボタン */
.hero-phone-button {
    width: 100%;
    background: linear-gradient(135deg, #ff5500 0%, #ff3500 100%);
    color: white;
    font-size: 1.8rem;
    padding: 1.2rem 1rem;
    font-weight: 900;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255,80,0,0.5), 0 4px 0 rgba(180,50,0,0.5);
    border: 3px solid rgba(255,255,255,0.3);
    position: relative;
    animation: pulse 1.5s infinite;
    transform-origin: center;
    z-index: 10;
}

.phone-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon-circle {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.phone-icon-circle i {
    font-size: 1.8rem;
    animation: shake 1.5s infinite;
}

.phone-text-container {
    text-align: left;
}

.phone-text-main {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.phone-text-sub {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: bold;
}

/* タップで発信ラベル */
.tap-to-call {
    position: absolute;
    bottom: -12px;
    right: -8px;
    background-color: #ffee00;
    color: #000;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    border: 2px solid #fff;
    transform: rotate(3deg);
}

.tap-to-call i {
    animation: pulse 1s infinite;
    margin-right: 5px;
}

/* メール相談ボタン */
.mail-button {
    width: 100%;
    background-color: #fff;
    color: #0066cc;
    font-size: 1.2rem;
    padding: 0.8rem;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: 2px solid #0066cc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mail-button i {
    color: #0066cc;
    font-size: 1.4rem;
    margin-right: 10px;
}

.mail-badge {
    font-size: 0.8rem;
    background: #0066cc;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 10px;
}