/* ===== 共通デザインCSS ===== */
body {
    font-family: 'Gothic', sans-serif;
    line-height: 1.7; /* 少し詰める */
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #97C5BC;
}
a:hover {
    color: #6ea89d;
}

/* ===== FEATURE-intro ===== */
.FEATURE-intro {
    margin-bottom: 0.4rem; /* 詰める */
    padding: 0 1rem;
}
.FEATURE-intro p span {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
}
.feature-title span {
    font-family: 'Times New Roman', serif;
    font-size: 1.32em; /* PCタイトル */
    font-weight: normal;
    color: #333;
    margin-bottom: 0.2rem; /* 詰める */
}
.feature-sub span,
.feature-text span {
    font-family: 'Gothic', sans-serif;
    font-size: 0.94em; /* 本文 */
    line-height: 1.5;
    color: #555;
    margin-bottom: 0.2rem; /* 詰める */
}

/* ===== コンセプトカード全体 ===== */
.concept-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1rem 2rem 1rem; /* 全体の余白を縮小 */
}
.concept-card {
    display: flex;
    align-items: stretch;
    margin-bottom: 1rem; /* 1.8rem → 1rem に */
}
.concept-card.reverse {
    flex-direction: row-reverse;
}

/* 画像部分 */
.image-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.3rem; /* PCでも詰める */
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* テキスト部分 */
.text-wrapper {
    flex: 1;
    padding: 0.8rem; /* 1.5rem → 半分に */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-wrapper h3 {
    font-family: 'Times New Roman', serif;
    font-size: 1.32em; /* PCタイトル */
    font-weight: normal;
    margin-bottom: 0.3rem; /* 詰める */
    color: #333;
}
.text-wrapper p {
    font-family: 'Gothic', sans-serif;
    font-size: 0.94em; /* 本文 */
    line-height: 1.5;
    margin: 0 0 0.3rem 0; /* 詰める */
    color: #555;
}

/* CTAボタン */
.cta-button {
    display: inline-block;
    padding: 0.3rem 0.6rem; /* 少し詰める */
    border: 2px solid #97C5BC;
    color: #97C5BC;
    font-weight: 500;
    font-size: 0.94em;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
    transition: 0.3s;
    margin-top: 0.6rem; /* 詰める */
}
.cta-button:hover {
    background-color: #97C5BC;
    color: #fff;
}

@media (max-width: 768px) {
    /* セクション全体 */
    .concept-section {
        padding: 0.2rem 0.4rem 0.5rem 0.4rem; /* 上下左右ともに詰める */
    }

    /* カード全体 */
    .concept-card,
    .concept-card.reverse {
        flex-direction: column;
        margin-bottom: 0.3rem; /* カード間隔をさらに短縮 */
    }

    /* 画像と本文の間隔 */
    .image-wrapper {
        margin-bottom: 0.1rem; /* ほぼゼロに */
    }

    /* テキスト部分 */
    .text-wrapper {
        padding: 0.1rem 0; /* 内側余白も最小化 */
        text-align: left;
    }
    .text-wrapper p {
        margin: 0 0 0.1rem 0; /* 本文間隔をさらに短縮 */
    }

    /* CTAボタン */
    .cta-button {
        display: block;
        margin: 0.2rem auto 0 auto; /* ボタン上下の余白も縮小 */
    }
}
