/* 基本スタイル */
.l-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* タイトルセクション */
.title {
    background-color: var(--main-color);
    color: white;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 3px;
}

.sectionTitle.sectionTitle--lv1 {
    font-size: 28px;
    font-family: var(--font-base);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.id,
.date {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 5px 12px;
    font-size: 14px;
    margin-right: 15px;
    margin-top: 10px;
}

/* 問い合わせリンク */
.cmn-linkset {
    text-align: center;
    margin: 30px 0;
}

.cmn-linkset__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cmn-linkset__list li {
    display: inline-block;
}

.cmn-linkset__list a {
    display: inline-block;
    background-color: #EA7317;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-family: var(--font-base);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cmn-linkset__list a:hover {
    background-color: #d65f0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 情報セクション */
.info {
    background-color: #f9f9f9;
    padding: 30px;
    border: 2px solid var(--main-color);
}

.infoTitle {
    color: var(--main-color);
    font-size: 24px;
    font-family: var(--font-base);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--main-color);
    position: relative;
}

.infoTitle::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #EA7317;
}

/* ボディセクション */
.body {
    margin-bottom: 40px;
}

.body:last-child {
    margin-bottom: 0;
}

/* テーブルスタイル */
.info-table,
.table-list {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-table caption {
    display: none;
    background-color: var(--main-color);
    color: white;
    padding: 12px;
    font-family: var(--font-base);
    font-size: 18px;
    text-align: center;
}

.info-table th,
.table-list th {
    background-color: #4e6b72;
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-family: var(--font-base);
    vertical-align: top;
    width: 220px;
    border-bottom: 1px solid #dddddd;
}
.other_table th {
    width: 100%;
}
.other_table td {
    display: block;
    white-space: nowrap;
}

.info-table td,
.table-list td {
    padding: 15px 20px;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.info-table tr:last-child td,
.table-list tr:last-child td {
    border-bottom: none;
}

.info-table tr:nth-child(even) td {
    background-color: #f8f8f8;
}

.table-list tr:nth-child(even) td {
    background-color: #f8f8f8;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .l-article {
        padding: 20px 0;
    }

    .title {
        padding: 20px;
    }

    .sectionTitle.sectionTitle--lv1 {
        font-size: 22px;
    }

    .info {
        padding: 20px;
    }

    .infoTitle {
        font-size: 20px;
    }

    .info-table,
    .table-list {
        font-size: 14px;
    }

    .info-table th,
    .table-list th {
        padding: 12px 15px;
        width: 150px;
    }

    .info-table td,
    .table-list td {
        padding: 12px 15px;
    }

    .cmn-linkset__list a {
        padding: 12px 30px;
        font-size: 14px;
    }
}
.table_tr {
    word-break: auto-phrase;
}

@media (max-width:768px) {
  .table_tr {
    display: flex;
    flex-direction: column;
  }

  .table_tr th {
    width: 100%;
  }
  
}