@charset "UTF-8";
@media screen and (min-width: 768px) {
    /* ヒーロー＆見出し */
    .hero-title {
        font-size: 5rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .wave-bottom svg {
        height: 120px;
    }
    .section-head-title {
        font-size: 3rem;
    }
    /* イントロダクション */
    .intro-box {
        padding: 60px;
    }
    .intro-title {
        font-size: 2.2rem;
    }
    .intro-quote {
        max-width: 80%;
    }
    .intro-text {
        padding: 0 40px;
        font-size: 1.1rem;
    }
    /* 3つのポイント（左右分割） */
    .point-row {
        flex-direction: row;
    }
    .point-row.reverse {
        flex-direction: row-reverse;
    }
    .point-image-wrap {
        width: 50%;
    }
    .point-text {
        width: 50%;
        padding: 0 40px;
    }
    .scrap-photo {
        height: 384px;
    }
    /* 体験談・ギャラリー（グリッド化） */
    .scroll-hint {
        display: none;
    }
    .scroll-container {
        display: grid;
        overflow: visible;
        padding-bottom: 0;
    }
    .voice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .voice-card {
        flex: auto;
    }
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .gallery-img {
        flex: auto;
        width: 100%;
        height: auto;
    }
    /* 商品カード (★280pxから270pxに変更して4カラムを維持！) */
    .product-card {
        width: 270px;
    }
	
	/* ＝＝＝ PCでのテキストサイズ最適化 ＝＝＝ */
    /* 全体の基準サイズを明示（外部リセットCSS対策） */
    body {
        font-size: 16px;
    }
    
    /* 各コンテンツの文字を一回り大きく */
    .point-text p {
        font-size: 1.1rem;
    }
    .voice-card h3 {
        font-size: 1.3rem;
    }
    .voice-card p {
        font-size: 1rem;
    }
    .product-card-subtitle {
        font-size: 1rem;
    }
    .product-card-period {
        font-size: 0.95rem;
    }
    .faq-btn {
        font-size: 1.15rem;
    }
    .faq-a-flex {
        font-size: 1.05rem;
    }
}