/* ==============================================
   REASONS.CSS - 選ばれる理由セクションスタイル
   ============================================== */

/* 選ばれる理由セクション */
.reasons-section {
    padding: 2rem 0 !important; /* 左右paddingを削除 */
    margin: 0 auto !important; /* 中央配置 */
    max-width: 100% !important; /* 幅制限を削除 */
    width: 100% !important; /* 幅を100%に設定 */
    display: flex !important;
    flex-direction: column !important; /* コンテンツを中央配置 */
}

.reasons-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 2000px;
}

/* 理由アイテムのアニメーション */
.reason-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 20px;
    background: transparent;
    text-align: center;
    width: 100%; /* 幅を100%に設定 */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reason-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.reason-image {
    flex-shrink: 0;
    width: 450px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

.reason-text {
    width: 100%;
    max-width: 100%;
}

.reason-text h3 {
    font-family: 'Sawarabi Gothic', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #4A90E2;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #4A90E2, #48CAE4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reason-text ul {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
}

.reason-text ul li {
    font-family: 'Sawarabi Gothic', sans-serif;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    margin-bottom: 0.5rem;
    padding: 0;
} 