
body {
    margin: 0;
    padding: 0; /* 必要に応じて padding も 0 に */
}

p {
    word-wrap: break-word;  /* 長い単語やURLを折り返し */
    overflow-wrap: break-word; /* コンテンツ内で適切に改行 */
    white-space: normal; /* 必要に応じて改行 */
}


#sitename {
    padding-block: 20px;
    font-size: 28px;
    border-bottom: 1px solid #ccc;
}

#sitename a {
    text-decoration: none; /* 下線を消す */
    color: #333; /* リンクの色を黒に */
    font-size: 28px;
    font-weight: normal;
}

#sitename a:hover {
    color: #17635b; /* ホバー時に赤色に変更 */
}

.sub-page-container {
    max-width: 880px;
    padding-inline: 20px;
    margin-inline: auto;
}

.sub-page-footer {
    position: relative;
    max-width: 880px;
    padding-inline: 20px;
    margin-inline: auto;
	font-size: 85%;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #17635b;
	color: #fff;
    line-height: 2;
}

.sub-page-footer a {
    color: #fff;
}

.sub-link-top {
    position: absolute;
	top: -35px;
	right: 5%;
}

.sub-page-title {
    display: flex;
    padding-left: 15px;
    border-left: 5px solid #17635b;
}



/* テーブル */

.table_tokutei {
    width: 100%;
    max-width: 880px;
    margin: 0 auto 40px;
    border-collapse: collapse;
    border: 1px solid #ccc;
    font-family: Arial, sans-serif;
    background-color: #fff;
    border-spacing: 0;
}

.table_tokutei th, .table_tokutei td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}

.table_tokutei th {
    background-color: #f5f5f5;
    font-weight: bold;
    width: 30%;
    white-space: nowrap;
}

.table_tokutei td {
    width: 70%;
}

.table_tokutei a {
    color: #17635b;
    text-decoration: none;
    font-weight: normal;
}

.table_tokutei a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
    .table_tokutei th, .table_tokutei td {
        display: table-cell;
        width: 100%;
        
    }

    .table_tokutei th {
        background-color: #f5f5f5;
        text-align: center;
        word-wrap: break-word;  /* 長い単語やURLを折り返し */
        overflow-wrap: break-word; /* コンテンツ内で適切に改行 */
        white-space: normal; /* 必要に応じて改行 */
        font-size: 14px;
        padding: 8px;
    }

    .table_tokutei td {
        border-bottom: 1px solid #ccc;
        font-size: 14px;
        padding: 8px;
    }

    #sitename a {
        font-size: 20px;
    }

    #sitename {
        border-bottom: 1px solid #ccc;
    }
}




