@charset "UTF-8";

/* ====================================
   強みページ専用スタイル
   ==================================== */

/* ① ページヘッダー（Serviceページと同じクラスを使っていますが念のため記述） */
.page-header {
    background-color: var(--color-sub);
    color: #fff;
    padding: 120px 0 60px;
    text-align: center;
}
.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

/* ② コンセプトメッセージ (中央揃え版) */
.strength-intro {
    text-align: center;
}
.intro-heading-center {
    font-size: 32px;
    color: var(--color-sub);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: bold;
}
.intro-text-center {
    line-height: 2;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* ③ 強みポイントカード */
.strength-points {
    background-color: #fcf8f5; /* 薄いオレンジベージュ */
}

.point-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    
    /* ★変更箇所：画面幅を広げたので、画像と文章の間隔も広くしてバランスを取ります */
    gap: 80px; 
    
    position: relative;
    overflow: hidden;
}
/* 最後のカードはマージンなし */
.point-card:last-child {
    margin-bottom: 0;
}

/* 偶数番目（02）を左右反転させるクラス */
.point-card.reverse {
    flex-direction: row-reverse;
}

/* 背景にうっすら浮かぶ大きな数字 */
.point-number {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    font-weight: bold;
    color: var(--color-main);
    opacity: 0.07;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    font-family: "Helvetica Neue", Arial, sans-serif;
}
.point-card.reverse .point-number {
    left: auto;
    right: 20px;
}

/* コンテンツエリア */
.point-content {
    flex: 1;
    z-index: 1; /* 数字より上に表示 */
}

.point-header {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-main);
    padding-bottom: 15px;
    display: inline-block;
    min-width: 250px;
}

.point-header h3 {
    font-size: 24px;
    color: var(--color-sub);
    margin-bottom: 5px;
}

.en-label {
    font-size: 14px;
    color: var(--color-main);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.point-body h4 {
    font-size: 18px;
    color: var(--color-sub);
    margin-bottom: 15px;
    font-weight: bold;
    background: rgba(230, 81, 0, 0.1); /* 薄いオレンジ背景 */
    padding: 10px 15px;
    border-left: 4px solid var(--color-main);
}

.point-body p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}
.point-body strong {
    color: var(--color-main);
    background: linear-gradient(transparent 70%, rgba(230, 81, 0, 0.2) 70%);
}

/* 画像エリア */
.point-image {
    flex: 1;
    z-index: 1;
}

.img-box-strength {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-weight: bold;
    background-size: cover;
    background-position: center;
}

/* ④ CTAエリア（Serviceと共通ですが、専用CSSにも念のため記述可能） */
.cta-area {
    background-color: var(--color-sub);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}
.cta-area h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.cta-area p {
    margin-bottom: 40px;
    opacity: 0.9;
}
.btn-cta {
    display: inline-block;
    background: var(--color-main);
    color: #fff;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s, background 0.3s;
}
.btn-cta:hover {
    background: var(--color-main-hover);
    transform: scale(1.05);
}

/* レスポンシブ (SP) */
@media (max-width: 768px) {
    .intro-heading-center { font-size: 24px; text-align: left; }
    .intro-text-center { text-align: left; }
    
    .point-card, 
    .point-card.reverse {
        flex-direction: column; /* 縦積み */
        padding: 30px 20px;
        gap: 30px;
    }
    
    .point-number {
        font-size: 100px;
        top: 10px;
        left: auto;
        right: 10px;
    }
    
    .point-header {
        width: 100%;
        min-width: auto;
    }
    
    .img-box-strength {
        height: 200px;
    }
    /* 強みページの画像スタイル */
    .point-img {
        width: 100%;
        height: auto;
        border-radius: 12px; /* 角丸 */
        box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* 影 */
        object-fit: cover;
        aspect-ratio: 4 / 3; /* 画像の比率を固定（お好みで調整可） */
    }

    /* スマホ表示時の調整 */
    @media (max-width: 768px) {
        .point-img {
            margin-top: 20px;
            max-height: 300px;
        }
    }
}