/* ===================================
   Sumida Section - 北海道セクション
   =================================== */

.sumida-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.sumida-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 画像コンテナ */
.sumida-images {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.sumida-image {
    flex: 1;
}

.sumida-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* アコーディオンコンテナ */
.sumida-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* アコーディオンアイテム */
.sumida-accordion__item {
    background-color: #eeeeee;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    overflow: hidden;
}

/* アコーディオンヘッダー */
.sumida-accordion__header {
    width: 100%;
    padding: 18px 20px;
    background-color: #eeeeee;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #444444;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.sumida-accordion__header:hover {
    background-color: #e8e8e8;
}

/* プラスアイコン */
.sumida-accordion__icon {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    transition: transform 0.3s ease;
}

.sumida-accordion__item.active .sumida-accordion__icon {
    transform: rotate(45deg);
}

/* アコーディオンコンテンツ */
.sumida-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #ffffff;
}

.sumida-accordion__item.active .sumida-accordion__content {
    max-height: 1000px;
}

.sumida-accordion__body {
    padding: 20px;
    color: #444444;
}

/* テーブルスタイル */
.sumida-table {
    width: 100%;
    border-collapse: collapse;
}

.sumida-table tr {
    height: 30px;
}

.sumida-table td {
    padding: 8px 12px;
    border-style: none;
}

.sumida-table td:first-child {
    width: 16%;
    background-color: #f0f0f0;
    font-weight: bold;
}

.sumida-table td:last-child {
    width: 84%;
}

.sumida-table tr:nth-child(even) td:first-child {
    background-color: #ffffff;
}

.sumida-table tr:nth-child(even) td:last-child {
    background-color: #ffffff;
}

/* ===================================
   Responsive Styles
   =================================== */

/* タブレット */
@media (max-width: 1024px) {
    .sumida-section {
        padding: 60px 0;
    }

    .sumida-section__inner {
        padding: 0 30px;
    }

    .sumida-images {
        gap: 15px;
        margin-bottom: 30px;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .sumida-section {
        padding: 50px 0;
    }

    .sumida-section__inner {
        padding: 0 20px;
    }

    .sumida-images {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .sumida-accordion__header {
        padding: 15px 18px;
        font-size: 15px;
    }

    .sumida-table td {
        padding: 6px 10px;
        font-size: 14px;
    }
}

/* 小さいスマートフォン */
@media (max-width: 480px) {
    .sumida-accordion__header {
        padding: 12px 15px;
        font-size: 14px;
    }

    .sumida-table td {
        padding: 5px 8px;
        font-size: 13px;
    }
}