.petbakery-container {
    width: 100%;
    margin: 40px auto 0 auto;
    padding: 70px 24px;
    /* background: #f8f4e8; */
    /* border-radius: 16px; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
}

.petbakery-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #e86c52;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.petbakery-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 12px 0 0 0;
    line-height: 1.4;
    color: #1B3B56;
}

.petbakery-lead {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin: 30px 0 40px 0;
    font-weight: 600;
    line-height: 1.6;
    color: #333333;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(
        to right,
        rgba(255,241,0,0.2),
        #FFE066,
        #FF7F50,
        #6DD5ED,
        rgba(109,213,237,0.2)
    ) 1;
    padding: 30px 0;
}

.petbakery-feature-item {
    padding: 15px 20px;
    background: #F8F9FA;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.petbakery-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: #1B3B56;
    line-height: 1.4;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .petbakery-container {
        padding: 50px 20px;
    }
    
    .petbakery-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin: 10px 0 0 0;
    }
    
    .petbakery-lead {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        margin: 25px 0 30px 0;
    }
        
    .petbakery-feature-item {
        padding: 18px 16px;
    }
    
    .feature-text {
        font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    }
}

.petbakery-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.petbakery-made-in {
    min-width: 180px;
    max-width: 260px;
    text-align: center;
    margin: auto;
}

.petbakery-made-in-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #1b3e76;
    line-height: 1.2;
    margin-bottom: 32px;
}

.petbakery-made-in-subtitle {
    font-size: 0.9em;
    color: #1b3e76;
}

.petbakery-features {
    flex: 2 1 350px;
    min-width: 220px;
    /* padding-left: 32px; */
}

.petbakery-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.petbakery-feature-item {
    background: #1b3e76;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
    width: 228px;
}

.heading-ribbon {
    background: #7E3B27;
}

.heading-ribbon::before {
    border-color: orange transparent transparent transparent;
}

/* パララックス効果付き製品一覧セクション */
.parallax-product-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 80px 20px;
    margin: 0;
}

/* 連続するセクション間の隙間をなくし、背景が自然につながるように */
.parallax-product-section + .parallax-product-section {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 80px;
}

/* 背景が連続して見えるように、セクションの境界をなくす */
.parallax-product-section:not(:last-child) {
    margin-bottom: 0;
    padding-bottom: 0;
}

.parallax-product-section .parallax-background {
    position: absolute;
    top: -50vh;
    left: 0;
    width: 100%;
    height: calc(100% + 100vh);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 0;
    transition: transform 0.3s ease-out;
    /* 画像の品質を向上させる */
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* スクロール時に背景が切れないように、各セクションの背景を拡張 */
.parallax-product-section.dog-products .parallax-background,
.parallax-product-section.cat-products .parallax-background {
    top: -50vh;
    height: calc(100% + 100vh);
}

/* 犬用・猫用ドライフードセクションの下端にパディングを追加（PCビュー） */
@media (min-width: 769px) {
    .parallax-product-section.dog-products,
    .parallax-product-section.cat-products {
        padding-bottom: 60px;
    }
}

/* モバイルでは固定背景を無効化（パフォーマンス向上） */
@media (max-width: 768px) {
    .parallax-product-section .parallax-background {
        top: -50vh;
        height: calc(100% + 100vh);
    }
    
    .parallax-product-section.dog-products .parallax-background,
    .parallax-product-section.cat-products .parallax-background {
        top: -50vh;
        height: calc(100% + 100vh);
    }
    
    /* 犬用・猫用ドライフードセクションの下端にパディングを追加（モバイルビュー） */
    .parallax-product-section.dog-products,
    .parallax-product-section.cat-products {
        padding-bottom: 60px;
    }
}

/* オーバーレイ（背景画像の上に暗いレイヤーを重ねて白いテキストの可読性を向上） */
.parallax-product-section::after {
    content: '';
    position: absolute;
    top: -50vh;
    left: 0;
    width: 100%;
    height: calc(100% + 100vh);
    /* background: rgba(0, 0, 0, 0); */
    z-index: 0;
    pointer-events: none;
}

.parallax-product-section .parallax-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
}

.parallax-product-section .parallax-section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    color: white;
    margin-top: 0;
    margin-bottom: 40px;
    /* text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8); */
}

@media (max-width: 768px) {
    .parallax-product-section .parallax-section-title {
        margin-bottom: 30px;
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
}

.parallax-product-section .parallax-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .parallax-product-section .parallax-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .parallax-product-section .parallax-product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
}

.parallax-product-section .parallax-product-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px;
    padding-top: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.parallax-product-section .parallax-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.parallax-product-section .parallax-product-item .product-feature {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    /* font-size: clamp(1rem, 1.１vw, 1.2rem); */
    font-size: 14px;
    color: #333;
    /* font-weight: 600; */
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    background: transparent;
    padding: 10px 0;
    margin: 0;
    margin-top: 10px;
    line-height: 1.6;
    z-index: 2;
    box-sizing: border-box;
    text-shadow: none;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

@media (max-width: 768px) {
    .parallax-product-section .parallax-product-item .product-feature {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-top: 8px;
        margin-bottom: 0;
    }
}

.parallax-product-section .parallax-product-item .product-feature span {
    color: #424242;
    font-weight: bold;
}

.parallax-product-section .parallax-product-item figure {
    margin: 0 0 20px 0;
    overflow: hidden;
    border-radius: 8px;
}

.parallax-product-section .parallax-product-item figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.parallax-product-section .parallax-product-item:hover figure img {
    /* transform: scale(1.05); */
}

.parallax-product-section .parallax-product-item h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* 選べる３つのフレーバーセクション */
.flavor-selection-section {
    /* background-color: #FDF8F0; */
    padding: 40px 20px 60px 20px;
    margin-top:60px;
    overflow: visible;
}

.flavor-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.flavor-main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #1B3B56;
    margin: 0 0 8px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.flavor-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #4A90E2;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.flavor-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 60px;
    overflow: visible;
}

.flavor-card {
    /* background: #FFFFFF; */
    border-radius: 12px;
    padding: 60px 20px 40px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
}

.flavor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.flavor-icon {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.flavor-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.flavor-icon-fallback {
    font-size: 5rem;
    line-height: 1;
}

.flavor-name {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #333333;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #FFF2C3;
    border-radius: 20px;
    padding: 12px 16px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.flavor-description {
    margin-top: 20px;
    text-align: left;
}

.flavor-catchcopy {
    display: block;
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
    text-align: center;
}

.flavor-catchcopy strong {
    font-weight: 700;
    color: #E6A700;
}

.flavor-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flavor-feature-list li {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: #333333;
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

.flavor-feature-list li::before {
    content: '・';
    position: absolute;
    left: 8px;
    color: #E6A700;
    font-weight: bold;
    font-size: 1.2em;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .flavor-selection-section {
        padding: 30px 15px 30px 15px;
        margin: 40px 0 15px 0;
    }
    
    .flavor-card-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
        padding-top: 50px;
    }
    
    .flavor-card {
        padding: 50px 15px 30px 15px;
    }
    
    .flavor-icon {
        top: -50px;
        width: 100px;
        height: 100px;
    }
    
    .flavor-icon img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .flavor-icon-fallback {
        font-size: 4rem;
    }
    
    .flavor-description {
        margin-top: 16px;
    }
    
    .flavor-catchcopy {
        margin-bottom: 12px;
    }
    
    .flavor-feature-list li {
        padding: 3px 0;
        padding-left: 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .flavor-card-grid {
        gap: 20px;
    }
}

/* ペットの感覚要素セクション */
.sensory-chart-section {
    background-color: transparent;
    padding: 10px 20px 40px 20px;
    /* margin-top: 60px; */
    overflow: visible;
}

.sensory-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sensory-main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #1B3B56;
    margin: 0 0 8px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.sensory-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #4A90E2;
    margin: 0 0 40px 0;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sensory-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.sensory-chart-card {
    text-align: center;
}

.sensory-chart-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px auto;
    aspect-ratio: 1;
    overflow: visible;
}

.sensory-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        from 0deg,
        #4A90E2 0deg 288deg,
        #50C8B8 288deg 324deg,
        #FFB84D 324deg 342deg,
        #A0A0A0 342deg 360deg
    );
    padding: 60px;
    box-sizing: border-box;
    overflow: visible;
}

.sensory-chart.cat-chart {
    background: conic-gradient(
        from 0deg,
        #FF8C42 0deg 252deg,
        #B884D3 252deg 306deg,
        #FFB84D 306deg 342deg,
        #A0A0A0 342deg 360deg
    );
}

.chart-center {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-icon {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.chart-icon-fallback {
    font-size: 5.5rem;
    line-height: 1;
}

.chart-label {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #FFFFFF;
    white-space: nowrap;
    pointer-events: none;
    font-weight: 700;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.chart-label strong {
    font-weight: 700;
    color: #FFFFFF;
    display: block;
}

/* 犬用チャートのラベル位置 */
.dog-chart .chart-label:nth-child(2) {
    --radius: 120px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
}

.dog-chart .chart-label:nth-child(3) {
    --radius: 120px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
}

.dog-chart .chart-label:nth-child(4) {
    --radius: 120px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
}

.dog-chart .chart-label:nth-child(5) {
    --radius: 120px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
}

/* 猫用チャートのラベル位置 */
.cat-chart .chart-label:nth-child(2) {
    --radius: 120px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
}

.cat-chart .chart-label:nth-child(3) {
    --radius: 120px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
}

.cat-chart .chart-label:nth-child(4) {
    --radius: 120px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
}

.cat-chart .chart-label:nth-child(5) {
    --radius: 120px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
}

.sensory-chart-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.sensory-chart-summary {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2em;
    margin-bottom: 60px;
}

.sensory-chart-summary-title {
    color: #1B3B56;
    font-size: clamp(2rem, 2.2vw, 2.1rem);
    text-align: center;
    font-weight: 700;
}

.sensory-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0px 2em 3em 2em;
    padding: 0 20px;
}

@media (min-width: 769px) {
    .sensory-points-grid {
        margin-left: 2em;
        margin-right: 2em;
    }
}

.sensory-point-item {
    padding: 0;
}

.sensory-point-title {
    background-color: #1B3B56;
    color: #FFFFFF;
    padding: 0.5em 1em;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: none;
    border-bottom: none;
    margin-top: 30px;
}
.sensory-point-title:first-child {
    margin-top: 0;
}
.sensory-point-title span {
    flex: 1;
}

.sensory-point-logo {
    height: 1.5em;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: auto;
}

/* モバイル対応（1列） */
@media (max-width: 768px) {
    .sensory-points-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .sensory-chart-section {
        padding: 10px 15px 30px 15px;
        /* margin-top: 40px; */
    }
    
    .sensory-chart-summary {
        font-size: clamp(1.4rem, 2.8vw, 2.5rem);
        margin: 30px auto 0 auto;
        padding: 0 15px;
    }
    
    .sensory-chart-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .sensory-chart-wrapper {
        max-width: 250px;
    }
    
    .sensory-chart {
        padding: 50px;
    }
    
    .chart-icon {
        max-width: 100%;
        max-height: 100%;
    }
    
    .chart-icon-fallback {
        font-size: 4rem;
    }
    
    .chart-label {
        font-size: clamp(1rem, 1.6vw, 1.2rem);
        font-weight: 700;
        color: #FFFFFF;
    }
    
    /* 小さいセグメント用の調整 */
    .dog-chart .chart-label:nth-child(4),
    .dog-chart .chart-label:nth-child(5),
    .cat-chart .chart-label:nth-child(4),
    .cat-chart .chart-label:nth-child(5) {
        --radius: 95px;
    }
    
    /* 大きいセグメント用 */
    .dog-chart .chart-label:nth-child(2),
    .dog-chart .chart-label:nth-child(3),
    .cat-chart .chart-label:nth-child(2),
    .cat-chart .chart-label:nth-child(3) {
        --radius: 95px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .sensory-chart-grid {
        gap: 30px;
    }
}

.sensory-feature-title {
    background: #1885E0;
    padding: 10px 20px;
    position: relative;
    text-align: left;
}

.sensory-feature-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #24DACA transparent transparent transparent;
}

.sensory-feature-name {
    color: white;
    font-weight: bold;
}

/* ソウルメイトの強みセクション */
.strength-section {
    background-color: #F0F8FF;
    padding: 60px 20px 80px 20px;
    margin-top: 60px;
    overflow: visible;
}

.strength-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.strength-main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #1B3B56;
    margin: 0 0 8px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.strength-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #4A90E2;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.strength-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
    overflow: visible;
}

.strength-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 70px 30px 40px 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    border: 2px solid #E8F4F8;
}

.strength-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #4A90E2;
}

.strength-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    box-sizing: border-box;
}

.strength-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.strength-icon-fallback {
    font-size: 4rem;
    line-height: 1;
}

.strength-card-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #1B3B56;
    margin: 0 0 20px 0;
    font-family: 'Noto Sans JP', sans-serif;
    padding-bottom: 15px;
    border-bottom: 2px solid #E8F4F8;
}

.strength-description {
    margin-top: 20px;
    text-align: left;
}

.strength-description p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    text-align: center;
}

.strength-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.strength-feature-list li {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.8;
    color: #333333;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.strength-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: #4A90E2;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    font-weight: bold;
    line-height: 1;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .strength-section {
        padding: 40px 15px 60px 15px;
        margin-top: 40px;
    }
    
    .strength-card-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 100%;
        padding-top: 50px;
    }
    
    .strength-card {
        padding: 60px 20px 30px 20px;
    }
    
    .strength-icon {
        top: -45px;
        width: 90px;
        height: 90px;
    }
    
    .strength-icon-fallback {
        font-size: 3.5rem;
    }
    
    .strength-card-title {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .strength-description {
        margin-top: 16px;
    }
    
    .strength-description p {
        margin-bottom: 16px;
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }
    
    .strength-feature-list li {
        padding: 6px 0;
        padding-left: 26px;
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }
    
    .strength-feature-list li::before {
        width: 18px;
        height: 18px;
        top: 6px;
        font-size: 0.8em;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .strength-card-grid {
        gap: 30px;
    }
    
    .strength-card {
        padding: 65px 25px 35px 25px;
    }
}

/* ソウルメイトの6つの強みセクション */
.soulmate-strengths-section {
    background-color: #FFFFFF;
    padding: 60px 20px 80px 20px;
    /* margin-top: 60px; */
    overflow: visible;
}

.points-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.points-main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #1B3B56;
    margin: 0 0 8px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.points-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #4A90E2;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.point-card {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #E8E9EA;
    overflow: hidden;
}

.point-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #4A90E2;
}

.point-number {
    position: absolute;
    bottom: -10px;
    right: 15px;
    font-size: clamp(5rem, 8vw, 8rem);
    font-weight: 700;
    color: #4A90E2;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: italic;
    line-height: 1;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.point-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #1B3B56;
    margin: 0 0 15px 0;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.point-description {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    line-height: 1.8;
    color: #333333;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

/* モバイル対応（横2×3列） */
@media (max-width: 1024px) and (min-width: 769px) {
    .points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .soulmate-points-section {
        padding: 20px 15px 60px 15px;
        /* margin-top: 40px; */
    }
    
    .points-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        max-width: 100%;
    }
    
    .point-card {
        padding: 25px 15px;
    }
    
    .point-number {
        font-size: clamp(9rem, 10vw, 6rem);
        bottom: -8px;
        right: 10px;
    }
    
    .point-title {
        font-size: clamp(1.15rem, 3.5vw, 1.4rem);
        margin-bottom: 12px;
    }
    
    .point-description {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
        line-height: 1.7;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .points-grid {
        gap: 25px;
    }
    
    .point-card {
        padding: 28px 20px;
    }
}