@charset "utf-8";
/* CSS Document */

/* manatsuni
-------------------------------------------------------------- */
#manatsuni{
	margin-top:20px;
	margin-bottom:20px;}

#manatsuni p{
    font-size: 2.4rem;}
	
@media (max-width: 767px) {
	#manatsuni p{
    font-size: 1.4rem;}
}
/* コンテナ全体のスタイル */
.service-feature-section {
    width: 100%;
    padding: 40px 20px;
    background-color: #fff; /* 背景色（必要に応じて変更してください） */
}

.service-feature-container {
    max-width: 1000px; /* サイトの横幅に合わせて調整 */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* テキスト部分のスタイル */
.service-feature-text {
    flex: 1;
}

.service-feature-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* テキスト部分のスタイル：太字・サイズアップ版 */
.service-feature-text ul li {
    position: relative;
    padding-left: 1.2em; /* 行頭の「・」のスペース */
    margin-bottom: 20px; /* 行間の余白を少し広げました */
    font-size: 20px;    /* PCサイズ：22pxに大きく設定 */
    line-height: 1.5;
    color: #333;
    font-weight: 700;    /* しっかりとした太字 */
    letter-spacing: 0.05em; /* 文字の間隔を少し開けて読みやすく */
}

/* 行頭の「・」も太く調整 */
.service-feature-text ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* 画像部分のスタイル */
.service-feature-image {
    flex: 1;
    text-align: right;
}

.service-feature-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
}

/* スマートフォン表示（768px以下）の切り替え */
@media screen and (max-width: 768px) {
    .service-feature-container {
        flex-direction: column; /* 縦並びに変更 */
        gap: 20px;
    }

    .service-feature-text {
        order: 1; /* テキストを上へ */
        width: 100%;
    }

    .service-feature-image {
        order: 2; /* 画像を下へ */
        width: 100%;
        text-align: center;
    }
    .service-feature-text ul li {
        font-size: 14px; /* スマホでも見やすいよう、標準より大きめに設定 */
        margin-bottom: 15px;
    }
}
/* セクション全体の余白 */
.customer-voice-section {
    padding: 20px 20px; /* 上下余白を少し広げてゆとりを */
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* 見出しのスタイル：サイズアップと強調 */
.voice-title {
    font-size: 32px;    /* PCサイズ：32pxで大きく */
    font-weight: 900;    /* 極太に設定 */
    margin-bottom: 40px;
    color: #333;
    letter-spacing: 0.1em;
}

/* 横並びのコンテナ設定 */
.voice-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* ボックス同士の隙間を少し広げました */
}

/* 各ボックスのスタイル：フォント強化 */
.voice-item {
    flex: 1;
    background-color: #e8f5e9;
    padding: 30px 25px; /* 内側の余白を増やして読みやすく */
    text-align: left;
    display: flex;
    align-items: center;
}

.voice-item p {
    margin: 0;
    font-size: 20px;    /* 本文サイズ：20pxにアップ */
    line-height: 1.6;
    color: #000;        /* 文字色をよりハッキリした黒に */
    font-weight: 700;    /* 本文も太字で強調 */
}

/* スマートフォン表示（768px以下） */
@media screen and (max-width: 768px) {
    .voice-container {
        flex-direction: column;
        gap: 15px;
    }

    .voice-title {
        font-size: 26px; /* スマホでも存在感のあるサイズ */
        margin-bottom: 25px;
    }

    .voice-item p {
        font-size: 18px; /* スマホでの読みやすさを重視 */
    }
}