@charset "UTF-8";

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Body Styles */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #4a5568;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: background-image 2s ease-in-out;
}

.comparison-top {
    width: 100%;
    padding-top: 3rem;
    background-color: #f9fafb;
}
.comparison-top-title {
    width: 100%;
    padding: 0 1rem;
}
.comparison-top-img {
    width: 100%;
    padding-top: 2.5rem;
}
.comparison-top-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.top-text-large {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem;
}
.top-text-small {
    font-size: 0.85rem;
    margin-top: 1rem;
    font-weight: 500;
}
.comparison-text-medium {
    font-size: 1.3rem; /* text-xl */
    font-weight: 700; /* font-bold */
}
.comparison-text-small {
    font-size: 0.85rem;
    margin-top: 1rem;
}
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comparison-card {
    flex-direction: column;
    height: 100%;
    background-color: #f9fafb;
}
.comparison-container {
    width: 100%;
    padding-left: 1rem; 
    padding-right: 1rem;
    padding-top: 6rem;
    background-color: #f9fafb;
}
.comparison-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}
.comparison-title span {
    color: #f09dc1;
}
.comparison-header .subtitle {
    display: block;
    color: #f09dc1;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.25rem;
}
.comparison-section h3 {
    font-size: 1rem; 
    font-weight: 700;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    margin-top: 3rem;
    border-bottom: 1px solid #fce7f3;
}
.comparison-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem; /* text-sm */
}
.comparison-list li:not(:last-child) {
    margin-bottom: 0.75rem; /* space-y-3 */
}
.comparison-grid {
    display: grid;
    gap: 6rem; /* gap: 8 */
    margin: 0 auto;
} 
/* Footer/Button */
.comparison-btn-wrapper  {
    margin-top: 15px;
    padding-top: 3rem;
    border-top: 1px solid #eee;
    text-align: center;
}
.comparison-btn-gradient {
    display: block;
    width: 250px;
    padding: 12px;
    background-color: #f09dc1;
    color: var(--color-card-bg);
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #ffffff;
    margin: 0 auto;
}
.comparison-btn-gradient:hover {
    background-color: #c2185b;
}
.comparison-list-detail {
    margin-left: 1rem;
    list-style: none;
}
.comparison-list-detail li {
    font-size: 0.75rem;
}
.comparison-header {
    margin-bottom: 1.5rem; /* mb-6 */
}
.comparison-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.comparison-list-icon {
    color: #ec4899;
    margin-right: 0.5rem;
    line-height: 1.5;
}
.comparison-content .comparison-section {
    width: 100%;
}
.comparison-content .comparison-section:first-child {
    flex-grow: 1;
    margin-bottom: 2rem;
}
.comparison-content .comparison-section:last-of-type {
    display: flex;
    flex-direction: column;
    margin-bottom: auto;
}

.comparison-table-main {
    background-color: #f9fafb;
    padding: 6rem 1rem 6rem 1rem ; /* スマートフォン向け: 1rem */
    box-sizing: border-box; /* パディングを含めて高さを計算 */
}
.comparison-table {
    border-radius: 8px;
    overflow: hidden;
}
.header-cell, .item-cell, .value-cell {
    padding: 2rem;
    box-sizing: border-box;
    line-height: 1.6;
    min-height: 50px;
    display: flex;
    align-items: center;
}
.column-header-row {
    display: none;
}
.value-cell::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    color: #f09dc1;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.3rem;
    font-size: 0.9rem;
    text-align: left;
}
.data-row {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}
.data-row > .item-cell {
    background-color: #f09dc1;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-bottom: none;
}
.value-cell {
    padding: 2rem;
    border-top: 1px solid #eee;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.85rem;
}
.value-cell:last-of-type {
    border-bottom: none;
}


.comparison-qa-main {
    width: 100%;
    max-width: 100%; /* スマホ: 最大幅制限なし */
    padding: 0 1rem 1.5rem 1rem;
    background-color: #f9fafb;
}
.comparison-qa-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
    padding-top: 30px;
}
.comparison-qa-list-container > .comparison-qa-item:last-child {
    border-bottom: none;
}
.comparison-qa-q-section {
    display: flex;
    margin-bottom: 1.5rem; 
}
.comparison-qa-q-number {
    font-size: 20px;
    font-weight: 700;
    margin-right: 16px;
    line-height: 1.5; 
    min-width: 30px; 
    text-align: left;
}
.comparison-qa-q-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5; 
    flex-grow: 1; 
    padding-top: 2px;
}
.comparison-qa-a-section {
    display: flex;
    align-items: flex-start;
    margin-left: 10px;
}

.comparison-qa-a-label {
    font-size: 20px; /* スマホ: Aラベルサイズ */
    font-weight: 700;
    margin-right: 16px; 
    line-height: 1.7; 
    min-width: 30px; 
    text-align: left;
}

.comparison-qa-a-option {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.comparison-qa-a-option {
    font-size: 0.85rem; /* スマホ: オプションテキストサイズ */
    line-height: 1.7; 
    font-weight: 400;
}

.silver-top {
    padding: 3rem 0 2.5rem 1rem;
    background-color: #f9fafb;
}
.silver-top-img {
    width: 100%;
    padding-top: 2rem;
}
.silver-top-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.text-h3 {
    font-size: 1rem; /* 20px */
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.text-base {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem; /* 18px */
    font-weight: 500;
}
.silver-worries .check-item {
    background-color: #fff;
    padding: 1rem;
    border-radius: 6px;
}
.check-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f09dc1; /* チェックマークの背景色 */
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 0.75rem;
    line-height: 1;
}

/* Container for Mobile (1 Column) */
#container {
    display: block;
}
#left-lane {
    width: 100%;
    padding: 2.5rem 1rem 0rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background-color: #f9fafb;
}
.illustration-placeholder {
    width: 100%;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    text-align: center;
}
.illustration-placeholder img {
    width: 100%;
}
#right-lane {
    width: 100%;
    padding: 2.5rem 1rem;
    margin: 0 auto;
    background-color: #f9fafb;
}
.feature-cards {
    display: flex;
    flex-direction: column; /* モバイルでは縦に並べる */
    gap: 1.5rem;
}
.feature-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    background-color: #fff;
    text-align: center;
}
.card-image-placeholder {
    width: 100px;
    height: auto;
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    color: #333;
}
.night-care-title {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.night-care-title::after {
    content: '◎';
    color: #e91e63;
    font-size: 2rem;
    margin-left: 0.5rem;
}
.silver-worries {
    border-radius: 0 8px 8px 0;
}
.silver-worries .checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.check-icon {
    margin-right: 2rem;
}
.silver-top-title {
    width: 100%;
    padding-right: 1rem;
}
.silver-worries .check-icon {
    background-color: #f09dc1;
    color: #fff;
}
.silver-text-h2 {
    font-size: 1.5rem; /* 28px */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    justify-content: center;
}
.silver-line {
    height: 4rem;
    width: 1px;
    background-color: #d9d9d9;
    margin: 2rem auto;

}
.silver-kinds-container {
    max-width: var(--max-width-lg);
    margin: 0 auto;
    padding: 2.5rem 1rem;
    box-sizing: border-box;
    background-color: #f9fafb;
}
.silver-kinds-section-title {
    margin-bottom: 40px;
    padding-left: 20px;
    position: relative;
}
.silver-kinds-section-title h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}
.silver-kinds-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.silver-kinds-card-list {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;

    /* スマホでの横スクロールを有効にするための設定 */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}
.silver-kinds-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 100%;
    justify-content: space-between;
}
.silver-kinds-card-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    min-height: 48px; /* テキストの高さが揃うように */
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.silver-kinds-card-image img {
    max-width: auto;
    height: 150px;
}
.silver-kinds-description {
    font-size: 0.85rem;
    margin-top: 20px;
    text-align: left;
}
.silver-text-base {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.facility-main {
    background-color: #f9fafb;
    padding: 2.5rem 1rem;
}
.facility-container {
    margin: 0 auto;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}
.facility-card {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-elevation-1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.facility-card:hover {
    box-shadow: var(--shadow-elevation-2);
}

/* Image Section */
.facility-card-image-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.facility-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-card-image-container img {
    transform: scale(1.05);
}

.facility-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #ffffff;
}

/* Header/Title */
.facility-card-header {
    margin-bottom: 15px;
}

.facility-card-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
}

/* Tags */
.facility-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.facility-card-tag {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-transform: none;
    color: var(--color-card-bg);
    color: #ffffff;
}
.facility-card-tag.tag-type-home { background-color: #0077B6; }
.facility-card-tag.tag-type-service { background-color: #00B16B; }
.facility-card-tag.tag-type-apartment { background-color: #ED9121; }
/* Details */
.facility-card-details {
    font-size: 0.85rem;
    margin-bottom: 15px;
    flex-grow: 1;
}
.facility-card-details p { margin: 0 0 5px 0; }
.facility-card-detail-item {
    margin-bottom: 8px;
    display: flex;
}
.facility-card-detail-item strong {
    color: var(--color-text);
    width: 50px;
    font-weight: 700;
    margin-right: 5px;
    flex-shrink: 0;
}
/* Footer/Button */
.facility-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.facility-card-btn-detail {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #f09dc1;
    color: var(--color-card-bg);
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #ffffff;
}
.facility-card-btn-detail:hover {
    background-color: #c2185b;
}

.facility-card-image-container {
        height: 220px;
}
/* Utility Class for Visuals */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.social-button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1300px; 
    width: 100%; 
    box-sizing: border-box;
}
.social-button {
    display: block; 
    text-decoration: none;
    background-color: #f09dc1; 
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; 
    flex: 0 0 auto;
    min-width: unset;
    width: 100%;
}
.social-button:hover {
    background-color: #d195aa; 
}
.silver-price-text {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1rem;
}
.silver-initial {
    width: 100%;
    padding: 2.5rem 1rem;
    background-color: #f9fafb;
}


.social-feature-container {
    margin-top: 5rem;
}
.social-feature-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #d9d9d9;
}
.social-feature-section-last {
    padding-bottom: 3rem;
    border-bottom: 2px solid #d9d9d9;
}
.social-feature-section-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.social-feature-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}
.social-feature-item {
    background-color: #fff;
    padding: 1rem 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    width: 100%;
}
.social-feature-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #f09dc1; 
    border-radius: 50%;
    z-index: 10;
}
.social-feature-support-item-list .social-feature-item {
    background-color: #F8E8EB;
    padding-left: 15px;
}
.social-feature-universal-item-list .social-feature-item {
    background-color: #F5E5F5;
    padding-left: 15px;
}
.social-feature-warmth-item-list .social-feature-item,
.social-feature-anxiety-item-list .social-feature-item,
.social-feature-fee-item-list .social-feature-item {
    background-color: #F8E8EB;
}
.social-feature-support-item-list {
    flex-direction: column;/
}
.social-feature-support-item-list .social-feature-item {
    width: 100%;
}
.social-feature-universal-item-list {
    flex-direction: column;
}
.social-feature-universal-item-list .social-feature-item {
    width: 100%;
}
/* Utility Classes */
.social-text-h2 {
    font-size: 1.5rem; /* 28px */
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
    border-bottom: solid 2px #d9d9d9;
}


@media (min-width: 1024px) {
    .comparison-top {
        width: 100%;
        padding-top: 8rem;
        padding-left: 3rem;
        background-color: #f9fafb;
    }
    .comparison-top-title {
        width: 100%;
        padding-bottom: 2rem;
        padding-right: 3rem;
    }
    .comparison-top-img {
        width: 100%;
        padding: 0;
    }
    .comparison-top-img img {
        width: 100%;
        height: 70vh;
        object-fit: cover;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    .top-text-large {
        font-size: 4.5rem;
        font-weight: 700;
        line-height: 5rem;
    }
    .top-text-small {
        font-size: 1rem;
        margin-top: 1rem;
        font-weight: 500;
    }
    .comparison-text-medium {
        font-size: 1.875rem;
    } 
    .comparison-text-small {
        font-size: 1rem;
    }
    .comparison-container {
        width: 100%;
        padding-left: 3rem; 
        padding-right: 3rem;
        padding-top: 8rem;
        background-color: #f9fafb;
    }
    .comparison-title {
        font-size: 3rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 4rem;
        letter-spacing: -0.025em;
    }
    .comparison-title span {
        color: #f09dc1;
    }
    .comparison-header .subtitle {
        display: block;
        color: #f09dc1;
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 0.25rem;
    }
    .comparison-section h3 {
        font-size: 1rem;
        font-weight: 700; 
        padding-bottom: 0.5rem;
        margin-bottom: 0.75rem;
        margin-top: 3rem;
        border-bottom: 1px solid #fce7f3;
    }
    .comparison-section {
        height: 22rem;
    }
    .comparison-card {
        background-color: #ffffff;
        padding: 3rem;
        border-radius: 1rem;
        border: 1px solid #f3f4f6;
        flex-direction: column;
        transition: box-shadow 0.3s, transform 0.3s;
        height: 100%;
    }
    .comparison-list li {
        display: flex;
        align-items: flex-start;
        font-size: 1rem;
    }
    .comparison-grid {
        display: grid;
        gap: 2rem;
        margin: 0 auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    } 
    .comparison-btn-gradient {
        width: 100%;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        border-radius: 9999px;
        color: #ffffff;
        font-weight: 700;
        font-size: 1.125rem;
        transition: all 0.4s;
        border: none;
        cursor: pointer;
        background-color: #f09dc1;
    }
    .comparison-btn-wrapper {
        margin-top: 2rem;
        /* align-self: flex-end; */
        width: 100%;
        text-align: center;
    }
    .comparison-list-detail {
        margin-left: 1rem;
        list-style: none;
    }
    .comparison-list-detail li {
        font-size: 0.75rem;
    }


    .comparison-table-main {
        background-color: #f9fafb;
        padding: 8rem 3rem 0 3rem;
        box-sizing: border-box; 
    }
    .comparison-table {
        border: 1px solid #eee;
        margin-bottom: 0;
        background-color: #f9fafb;
    }
    .column-header-row {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1.5fr;
        border-bottom: 1px solid #ddd;
    }
    /* 列ヘッダーのスタイル */
    .column-header-row .header-cell {
        color: white;
        font-weight: bold;
        text-align: center;
        border-bottom: none;
        justify-content: center;
    }
    .column-header-row .header-cell:first-child {
        background-color: white;
        color: #4a5568;
        border-right: 1px solid #eee;
    }
    .column-header-row .header-cell:nth-child(2),
    .column-header-row .header-cell:nth-child(3) {
        background-color: #f09dc1;
    }
    .data-row {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1.5fr;
        margin-bottom: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #eee; /* 行の区切り線 */
    }
    /* 比較項目セル（左端）のスタイルをデスクトップ向けに調整 */
    .data-row > .item-cell {
        background-color: #f9f9f9;
        color: #333;
        font-size: 1rem;
        font-weight: normal;
        border-right: 1px solid #eee;
        border-bottom: none;
        padding: 1rem;
        justify-content: flex-start;
    }
    /* 値セル */
    .value-cell {
        border-top: none;
        border-right: 1px solid #eee;
        background-color: white;
        flex-direction: row; /* テキストだけを表示 */
        font-size: 1rem;
    }
    /* 最後の値セルの右ボーダーを削除 */
    .data-row .value-cell:last-child {
        border-right: none;
    }
    /* スマホ用疑似要素を非表示 */
    .value-cell::before {
        content: none;
        display: none;
    }
    /* 最終行の底線とテーブル全体の底線を統合 */
    .comparison-table .data-row:last-child {
        border-bottom: none;
    }
    .comparison-qa-main {
        width: 100%;
        padding: 8rem 3rem 4rem 3rem;
    }
    /* Q&A項目 */
    .comparison-qa-item {
        padding: 2rem;
        width: 70%;
    }   
    .comparison-qa-q-section {
        margin-bottom: 20px;
        align-items: center;
    }
    .comparison-qa-q-number {
        font-size: 2rem;
        margin-right: 32px;
        min-width: 50px;
    }
    .comparison-qa-q-text {
        font-size: 1.5rem;
        line-height: 1.6;
    } 
    .comparison-qa-a-section {
        margin-left: 5rem; 
    }
    .comparison-qa-a-label {
        font-size: 2.25rem;
        margin-right: 1rem;
        min-width: 50px;
    }
    .comparison-qa-a-option {
        font-size: 20px;
        line-height: 1.7;
    }
    .features-section {
        background-image: initial;
    }
    .silver-top {
        padding: 15vh 0 4rem 6rem;
        background-color: #f9fafb;
    }
    .silver-top-title {
        width: 100%;
    }
    .silver-top-img {
        width: 100%;
        padding-top: 3rem;
    }
    .silver-top-img img {
        width: 100%;
        height: 60vh;
        object-fit: cover;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .check-item {
        font-size: 1.25rem;
    }
    #container {
        display: flex;
        min-height: 100vh;
    }
    #left-lane {
        width: 35%;
        padding: 4rem 4rem 4rem 3rem;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .illustration-placeholder {
        margin-right: 0;
    }
    #right-lane {
        flex-grow: 1;
        max-width: none;
        padding: 4rem 3rem 4rem 0;
    }
    .feature-cards {
        flex-direction: row; /* 横に並べる */
    }
    .feature-card {
        flex: 1 1 50%; /* 2つのカードが均等にスペースを占める */
    }
    /* Utility Classes */
    .silver-text-h2 {
        font-size: 2.25rem; /* 28px */
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    .silver-worries .silver-text-h2 {
        border-bottom: 2px solid #d9d9d9;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .silver-worries .check-item {
        background-color: #fff;
        padding: 2rem;
        border-radius: 6px;
    }
    .night-care-title {
        display: inline-flex;
        align-items: center;
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    .illustration-placeholder {
        max-width: 500px;
    }
    .illustration-placeholder img {
        width: 100%;
    }
    .text-base {
        font-size: 1rem;
    }
    .silver-text-base {
        font-size: 1rem;
    }
    .silver-initial {
        width: 100%;
        padding: 4rem 3rem;
        background-color: #f9fafb;
    }
    .silver-line {
        height: 6rem;
        width: 1px;
        background-color: #d9d9d9;
        margin: 3rem auto;

    }
    .silver-kinds-container {
        padding: 4rem 3rem;
    }
    .silver-kinds-card-list {
        flex-direction: row; /* 横並びにする */
        flex-wrap: nowrap; /* 折り返さない */
        justify-content: space-between;
        gap: 20px;
    }
    .silver-kinds-card {
        flex: 1 1 calc(20% - 16px); /* 100% / 5 = 20%。gap(20px)を考慮して調整 */
        max-width: calc(20% - 16px);
        padding: 20px 10px;
    }
    .silver-kinds-card-text {
        font-size: 1.25rem;
        width: 100%;
    }
    .silver-kinds-description {
        font-size: 1rem;
    }
    .social-button {
        width: 280px;
    }
    .social-button-container{
        margin-top: 2rem;
    }
    .facility-main {
        padding: 4rem 3rem;
    }
    .facility-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .silver-price-text {
        width: 100%;
        font-size: 1.5rem;
        font-weight: 700;
        border-radius: 5px;
        margin-top: 1.5rem;
        padding: 1rem 1.5rem;
        background-color: #fff;
    }
    .social-feature-container {
        margin-top: 16rem;
    }
    /* Utility Classes */
    .social-text-h2 {
        font-size: 2.25rem; /* 28px */
        padding-bottom: 0.5rem;
        margin-bottom: 3rem;
    }
    .social-feature-section-title {
        font-size: 1.5rem;
    }
    .social-feature-item-list {
        margin-top: 2rem;
    }
    .text-h3 {
        font-size: 1.25rem; /* 20px */
    }
    .features-section {
        padding:4rem 3rem;
    }
    .price-system-section {
        padding: 4rem 3rem;
    }
    .inquiry-section {
        padding: 4rem 3rem;
    }

}


@media (min-width: 1300px) {
    .comparison-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding-left: 3rem;
        background-color: #f9fafb;
        align-items: center;
        height: 100vh;
        padding-top: 0;
    }
    .comparison-top-title {
        width: 35%;
        padding-left: 3rem;
    }
    .comparison-top-img {
        width: 60%;
    }
    .comparison-top-img img {
        width: 100%;
            height: 70vh;
        object-fit: cover;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    .top-text-small {
        font-size: 1rem;
        margin-top: 1.5rem;
        font-weight: 500;
    }
    .comparison-text-medium {
        font-size: 2.25rem;
    }
    .comparison-text-small {
        font-size: 1rem;
    }
    .comparison-container {
        width: 100%;
        padding-left: 3rem; 
        padding-right: 3rem;
        padding-top: 8rem;
        background-color: #f9fafb;
    }
    .comparison-title {
        font-size: 3rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 4rem;
        letter-spacing: -0.025em;
    }
    .comparison-title span {
        color: #f09dc1;
    }
    .comparison-header .subtitle {
        display: block;
        color: #f09dc1;
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 0.25rem;
    }
    .comparison-section h3 {
        font-size: 1rem;
        font-weight: 700;
        color: #374151;
        padding-bottom: 0.5rem;
        margin-bottom: 0.75rem;
        margin-top: 3rem;
        border-bottom: 1px solid #fce7f3;
    }
    .comparison-section {
        height: 22rem;
    }
    .comparison-card {
        background-color: #ffffff;
        padding: 3rem;
        border-radius: 1rem;
        border: 1px solid #f3f4f6;
        flex-direction: column;
        transition: box-shadow 0.3s, transform 0.3s;
        height: 100%;
    }
    .comparison-list li {
        display: flex;
        align-items: flex-start;
        font-size: 1rem; /* text-sm */
    }
    .comparison-list li:not(:last-child) {
        margin-bottom: 0.75rem; /* space-y-3 */
    }
    .comparison-grid {
        display: grid;
        gap: 2rem;
        margin: 0 auto;
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* lg:grid-cols-2 */
    }  
    .comparison-btn-gradient {
        width: 100%;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        border-radius: 9999px;
        color: #ffffff;
        font-weight: 700;
        font-size: 1.125rem;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        background-color: #f09dc1;
    }
    .comparison-btn-gradient:hover {
        background-color: #c2185b;
        transform: scale(1.02);
    }
    .comparison-btn-gradient:active {
        transform: scale(0.95);
    }
    /* ボタンラッパー: comparison-btn-wrapper */
    .comparison-btn-wrapper {
        margin-top: 2rem; /* ボタン上の余白を確保 */
        align-self: flex-end; /* ボタンをカードの底に固定 */
        width: 100%;
    }
    .comparison-list-detail {
        margin-left: 1rem;
        list-style: none;
    }
    .comparison-list-detail li {
        font-size: 0.75rem;
    }

    /* 比較項目列の幅を固定 (250px) に変更 */
    .column-header-row {
        grid-template-columns: 250px 1fr 1fr;
    }
    .data-row {
        grid-template-columns: 250px 1fr 1fr;
    }
    .silver-top {
        padding: 15vh 0 8rem 6rem;
    }    
    .silver-kinds-container {
        max-width: var(--max-width-xl); /* より広い幅 */
        padding: 8rem 3rem;
    }
    .silver-kinds-section-title h1 {
        font-size: 32px;
    }
    /* 1024pxと同じく5列を維持しつつ、間隔を調整 */
    .silver-kinds-card {
        padding: 30px 15px;
    }
    .facility-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }  
    .facility-card-image-container {
            height: 160px; /* カードをよりコンパクトに */
    }
    #right-lane {
        padding: 8rem 3rem 8rem 0;
    }
    #left-lane {
        padding: 8rem 4rem 8rem 3rem;
    }
    .silver-initial {
        padding: 4rem 3rem;
    }
    .facility-main {
        padding: 8rem 3rem;
    }
    .inquiry-section {
        padding: 8rem 3rem;
    }
    .price-system-section {
        padding: 8rem 3rem;
    }
    .features-section {
        padding: 8rem 3rem;
    }
    .comparison-table-main {
        padding: 16rem 3rem 8rem 3rem;
    }
    .comparison-qa-main {
        padding: 8rem 3rem;
    }
}
