@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    line-height: 100%;
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    visibility: hidden;
}
html.wf-active {
    visibility: visible;
}
body {
    background-color: #ffffff00;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}
/* トピックスのトップページリスト topics_toplist.html */
.table_information_topics th {
	font-size: 16px;
    line-height: 100%;
    font-weight: bold;
	text-align: left;
    color: #ff842d;
	display: block;
	padding: 15px 5px 0;
}
.table_information_topics tr:first-child th {
    border-top: solid 1px #ddd;
}
.table_information_topics td {
    font-size: 16px;
    line-height: 170%;
	display: block;
	padding: 7px 5px 15px;
    border-bottom: solid 1px #ddd;
}
.table_information_topics td a {
	font-size: 16px;
    line-height: 170%;
    color: #333;
    border-bottom: solid 1px #333;
    display: inline;
    transition: all 0.2s ease;
}
.table_information_topics a:hover {
    color: #ff842d;
    border-bottom: solid 1px #ff842d;
}
@media screen and (min-width: 600px) {
/* ここの幅はtableの幅。画面全体ではないので注意 */
}
/* トピックスのトップページリスト topics_toplist.html ここまで */


/* トピックスとトピックスリスト共通の2カラム */
.tp_box {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}
.tp_boxL {
    margin-bottom: 60px;
}
.tp_boxR {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}
@media screen and (min-width: 1000px) {
.tp_box {
    justify-content: space-between;
    flex-direction: row;
}
.tp_boxL {
    width: 240px;
    margin-bottom: 80px;
}
.tp_boxR {
    width: calc(100% - 240px - 50px);
    margin-left: 50px;
    gap: 80px;
}
.stick {
    position: sticky;
    top: 100px;
}
}
@media screen and (min-width: 1100px) {
.tp_boxL {
    width: 260px;
}
.tp_boxR {
    width: calc(100% - 260px - 60px);
    margin-left: 60px;
}
}
@media screen and (min-width: 1200px) {
.tp_boxL {
    width: 300px;
    margin-bottom: 100px;
}
.tp_boxR {
    width: calc(100% - 300px - 75px);
    margin-left: 75px;
    margin-bottom: 100px;
    gap: 100px;
}
}
/* トピックスとトピックスリスト共通の2カラムここまで */


/* 左カラム */
/* SP下部と左カラム記事リスト */
.tl_article {
    font-size: 17px;
    line-height: 130%;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: linear-gradient(30deg, #ff842d, #ff7823);
    padding: 10px 15px;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
}
.tl_box {
    background-color: #fff5e0;
    padding: 0 15px 20px;
}
ul.topics_list {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
ul.topics_list li {
    border-bottom: solid 1px #ddd;
    padding: 17px 0 20px;
}
.tl_title {
    font-size: 16px;
    line-height: 170%;
    border-bottom: solid 1px #333;
    display: inline;
    overflow-wrap: break-word;
    word-break: normal;
}
.tl_date {
    font-size: 16px;
    line-height: 100%;
    font-weight: bold;
    color: #ff842d;
    margin-bottom: 7px;
    display: block;
    font-feature-settings: "palt";
}
a.go_tl_list {
    font-size: 16px;
    line-height: 100%;
    font-weight: bold;
    text-align: center;
    color: #ff842d;
    background-color: #fff;
    border: solid 1px #ff842d;
    width: calc(100% - 20px);
    padding: 12px 25px 12px 15px;
    position: relative;
    display: inline-block;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    transition: all 0.2s ease-in-out;
}
/*矢印と下線の形状*/
.go_tl_list::before {
	content:"";
	position: absolute;
	top: 50%;
	right: -20px;
	width: 35px;
	height: 1px;
	background:#333;
    transition: all 0.2s ease-in-out;
}
.go_tl_list::after {
	content:"";
	position: absolute;
    top: 26%;
    right: -15px;
	width: 1px;
	height: 10px;
	background:#333;
    transform:skewX(45deg);
    transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1000px){
.tl_article {
    font-size: 18px;
}
.tl_title:hover {
    color: #ff842d;
    border-bottom: solid 1px #ff842d;
}
.go_tl_list:hover {
    background-color: #fdeeda;
}
.go_tl_list:hover::before {
	right: -25px;
}
.go_tl_list:hover::after {
	right: -20px;
}
}

/* リストでSPで4件、PCで8件表示 */
.onlyPC {
    display: none;
}
@media screen and (min-width: 1000px) {
.onlyPC {
    display: list-item;
}
}
/* SP下部と右カラム記事リストここまで */


/* トピックスリストページtopics_list.html */
.table_topics_box {
    margin-bottom: 40px;
}
.table_topics_list th.tbl_days {
	font-size: 16px;
    line-height: 100%;
    font-weight: bold;
	text-align: left;
    color: #ff842d;
	display: block;
	padding: 15px 5px 0;
}
.table_topics_list tr {
    border-bottom: solid 1px #ddd;
}
.table_topics_list tr:first-of-type {
    border-top: solid 1px #ddd;
}
.table_topics_list td.tbl_title {
    font-size: 16px;
    line-height: 170%;
	display: block;
	padding: 7px 5px 18px;
}
.table_topics_list a.ti_link {
	font-size: 16px;
    line-height: 170%;
    border-bottom: solid 1px #333;
    display: inline;
}
@media screen and (min-width: 768px){ 
.table_topics_box {
    margin-bottom: 50px;
}
.table_topics_list th.tbl_days {
	font-size: 17px;
	padding: 20px 20px 0;
}
.table_topics_list td.tbl_title {
    font-size: 17px;
	padding: 10px 20px 23px;
}
}
@media screen and (min-width: 1000px) {
.table_topics_list a.ti_link:hover { 
    color: #ff842d;
    border-bottom: solid 1px #ff842d;
}
}
/* NEWアイコン */
.tl_new, .tbl_new {
    font-size: 11px;
    line-height: 15px;
    font-weight: 500;
    color: #fff;
    background-color: #80c525;
    border: solid 1px #80c525;
    padding: 0 7px;
    margin-left: 10px;
    vertical-align: 2px;
    display: inline-block;
}
/* トピックスとトピックスリストページのタイトルまわりここまで */


/* トピックスページの記事topics.html */
/* 大箱・見出しまわり */
.tb {
    padding-top: 20px;
    margin-top: -20px;
}
.topics_wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}
.topics_box {
    border: solid 1px #ff842d;
}
.tb_title_box {
    background-color: #fdeeda;
    border-bottom: solid 1px #ff842d;
    padding: 15px 15px 12px;
    position: relative;
}
/* .tb_title_box:before {
    background-color: #ff842d;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
} */
p.tb_days {
    font-size: 16px;
    line-height: 100%;
    font-weight: bold;
    color: #ff842d;
    margin-bottom: 7px;
    display: inline-block;
}
p.tb_title {
    font-size: 19px;
    line-height: 140%;
    font-weight: bold;
    overflow-wrap: break-word;
    word-break: normal;
}
@media screen and (min-width: 768px){ 
.topics_wrap {
    gap: 40px;
    margin-bottom: 50px;
}
.tb_title_box {
    padding: 20px 25px 17px;  
}
/* .tb_title_box:before {
    width: 20px;
    height: 20px;
} */
 p.tb_days {
    margin-bottom: 10px;
}
}
@media screen and (min-width: 1100px) {
.tb {
    padding-top: 100px;
    margin-top: -100px;
}
.topics_wrap {
    gap: 50px;
}
.tb_title_box {
    padding: 20px 40px 17px;
}
}

/* 本文・写真まわり */
.tb_body_box {
    background-color: #fff;
    padding: 20px 15px;
}
p.tb_txt {
    overflow-wrap: break-word;
    word-break: normal;
}
p.tb_txt:nth-of-type(n+2) {
    margin-top: 25px;
}
img.tb_pic_horizontal, 
img.tb_pic_vertical {
    margin-top: 15px;
}
img.tb_pic_vertical {
    max-width: 500px;
}
span.topics-oomoji {
    font-size: 20px;
}
@media screen and (min-width: 768px){ 
.tb_body_box {
    padding: 25px;
}
img.tb_pic_horizontal, 
img.tb_pic_vertical {
    margin-top: 20px;
}
img.vertical_pic {
    width: 80%;
}
}
@media screen and (min-width: 1100px) {
.tb_body_box {
    padding: 40px;
}
}
/* 添付PDFファイル */
.tb_links {
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.tb_link {
    line-height: 140%;
    background-color: #fff;
    border: solid 1px #aaa;
    padding: 10px 15px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}
.tb_link img {
    width: auto;
    height: 18px;
    object-fit: contain;
    margin-right: 5px;
}
@media screen and (min-width: 1000px) {
.tb_link {
    transition: all 0.2s ease-in-out;
}
.tb_link:hover {
    background-color: #fdeeda;
}
}
/* トピックスページの記事ここまで */




/* ページネーション */
.pagination_box {
    margin-bottom: 40px;
}
ul.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
ul.pagination li {
    margin: 0;
}
ul.pagination li:last-of-type {
    margin: 0;
}
ul.pagination li a {
    display: flex;
    justify-content: center;
    align-items: center;
}
ul.pagination li a i {
    font-size: 13px;
}
li.page_num a {
    font-size: 20px;
    margin: 0 10px;
}
li.page_pn a {
    width: 36px;
    height: 36px;
    color: #80c525;
    background-color: #fff;
    border-radius: 50%;
    border: solid 1px #80c525;
}
li.page_prev a, 
li.page_next a {
    margin: 0 5px;
}
li.page_num a.pg_now {
    width: 36px;
    height: 36px;
    color: #80c525;
    background-color: #ebf9de;
    border-radius: 50%;
    margin: 0;
}
p.page_total {
    text-align: center;
}
@media screen and (min-width: 768px){
li.page_num a {
    font-size: 20px;
    margin: 0 12.5px;
}
li.page_pn a {
    width: 40px;
    height: 40px;
}
li.page_prev a, 
li.page_next a {
    margin: 0 10px;
}
}
@media screen and (min-width: 1000px){
.pagination_box {
    margin-bottom: 0;
}
ul.pagination li a {
    transition: all 0.2s ease-in-out;
}
li.page_num a:hover {
    color: #80c525;
}
li.page_pn a:hover {
    background-color: #ebf9de;
}
}
/* ページネーションここまで */
