/* 災害時のトイレ問題ページ専用スタイル */

/* KV部分（エンドロール風インタラクション） */
.kv { 
    position: relative; 
}

.kv__sticky { 
    position: sticky; 
    top: 0; 
    height: 100svh; 
    overflow: hidden; 
}

.kv__track { 
    position: absolute; 
    inset: 0; 
    display: grid; 
    align-content: center; 
    gap: 2rem; 
    transition: transform 420ms ease; 
    will-change: transform; 
}

.kv-copy { 
    font-size: clamp(20px, 3vw, 36px); 
    line-height: 1.5; 
    margin: 0; 
    font-weight: 600;
    color: #2f7340;
    text-align: center;
    padding: 0 2rem;
}

/* セクション全体 */
.toilet-issues-section {
    padding: 40px 0;
    background-color: #fff;

}

/* サイドバー（共通スタイルはcommon.cssに移動） */
.toilet-issues-section .section-sidebar {
    position: sticky;
    top: 0;
    align-self: flex-start; /* stretchを上書き */
    height: calc(100vh - 78px); /* 罫線表示のため高さを設定 */
}

/* mainの位置調整（ヘッダーの高さ変化に合わせて即座に調整） */

.content-images {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.main-image {
    width: 320px;
    flex-shrink: 0;
}



.main-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}


.message-image {
    width: 540px;
    flex-shrink: 0;
}
.message-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.image-caption {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 2.4;
    color: #2f7340;
    margin: 10px 0 0 0;
    text-align: right;
}

.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    overflow: hidden;
}

.quote-text {
    font-weight: 600;
    font-size: 18px;
    color: #2f7340;
    line-height: 2.4;
    letter-spacing: 2.34px;
    margin-bottom: 40px;
}

.quote-text p {
    margin: 0;
}

.quote-source {
    font-weight: 600;
    font-size: 16px;
    color: #2f7340;
    line-height: 2.4;
    letter-spacing: 2.4px;
    margin-bottom: 16px;
}

.quote-source p {
    margin: 0 0 16px 0;
}

.quote-source p:last-child {
    margin-bottom: 0;
}

.video-content {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 40px;
}

.video-thumbnail {
    width: 170px;
    height: 98px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.video-description {
    flex: 1;
}

.video-description p {
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 1px;
    line-height: 1.8;
    color: #2f7340;
    margin: 0;
}

.section-divider {
    width: 100%;
    height: 1px;
    background-color: #2f7340;
    margin: 80px 0;
}

/* 連鎖図 */
.chain-diagram {
    margin: 40px 0;
}

.chain-diagram img {
    width: 100%;
    height: auto;
    display: block;
}
