@charset "utf-8";
/* CSS Document */

/* -------------------------------
	共通
------------------------------- */
/*メインカラー*/
:root{
	/* --main-color:#3c2763; */
	--main-color: #cd171f;
}

body{
	font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
}
#wrapper{
	width: 100%;
	margin: 0 auto;
}

#inner_wrapper {
    max-width: 1000px;
    margin: 0 auto;
	padding:0 5%;
}

section{
	margin: 5% auto;
}

h2{
	font-size: 22px;
	font-weight: 600;
	padding: 1%;
	border-left: solid 10px var(--main-color);
	border-bottom: solid 1px var(--main-color);
}

/* -------------------------------
	ヘッダー
------------------------------- */
header{
	width:100%;
	background-color: var(--main-color);
	padding: 10px;
	box-sizing: border-box;
}
header img{
	display: block;
	width: 222px;
}

/* -------------------------------
	トップ画像
------------------------------- */
#title{
	display: block;
	width: 95%;
    max-width: 1200px;
	margin: 25px auto;
}

/* -------------------------------
	マップ
------------------------------- */
#Map h2 {
    margin-bottom: 10px;
}

#Map p {
    margin: 25px 0;
    font-size: 18px;
}

/* -------------------------------
	記事リスト
------------------------------- */
.thumbnail_news_list {
    /* width: 90%; */
    margin: 20px auto;
}

.thumbnail_news_list li {
    border-bottom: 1.5px solid #cecece;
	padding-bottom: 15px;
}

.thumbnail_news_list  a:hover{
	color:#0b09ee;
}

.thumbnail_news_list a:hover .headline{
	text-decoration: underline;
}

/*サムネイル付き記事*/
.thumbnail_news {
    margin-bottom: 15px;
}

.thumbnail_news a {
    display: flex;
	color:#000;
}

.thumbnail_news a .headline{
	font-weight: bold;
	font-size: 1.2em;
}

.thumbnail {
	position:relative;
	/* min-width:100px; */
	min-width: 200px;
	height:100%;
	margin-right: 25px;
}

.thumbnail::before {
    content: "";
    display: block;
    /* padding-top: 100%; */
	padding-top: 75%;
}
.thumbnail_img{/*トリミング枠*/
	position:absolute;
	width: 100%;
    height: 100%;
	top:0;
}

.thumbnail_img img {
	width: 100%;
	height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover; object-position: center center;';/*IE対策*/
}

/*ホバー時にサムネイル拡大*/
.thumbnail {
	overflow: hidden;
}

.thumbnail_img{
	transition-duration: 0.3s;
}

.thumbnail_news:hover img{
  transform: scale(1.2);
  transition-duration: 0.3s;
}

/* -------------------------------
	関連リンク
------------------------------- */
.usuallyNewstype02 {
	margin: 0 0 15px 0;
	border-bottom: 1px solid #BEBEBE;
}
.usuallyNewstype02 li {
	position: relative;
	zoom: 1;
	font-size: 100%;
	line-height: 150%;
	font-weight: bold;
	margin: 4px 0 0;
	padding: 0 0 0 15px;
	margin:15px auto !important;
	width:90%;
}
.usuallyNewstype02 li a {
	text-decoration:none;
	color:#333;
}
.newsChk {
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	top: 6px;
	left: 0;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 1px !important;
}
.usuallyNewstype02 li img {
	vertical-align: middle;
}

#Related a:hover{
	color:#0b09ee;
}

/* -------------------------------
	フッター
------------------------------- */
footer{
	width:100%;
	background-color: var(--main-color);
	padding: 10px;
	box-sizing: border-box;
}
footer p {
	margin: 8px auto;
	text-align: center;
	color:#fff;
}

/* 追加：もっと見るボタン */
.readmore{
	text-align: center;
}

.readmore a{
	display: inline-block;
	color: var(--main-color);
	border: solid 1px var(--main-color);
	font-weight: bold;
	line-height: 2.5rem;
	width: 200px;
	border-radius: 100vw;
	transition: 0.3s;
}

.readmore a:hover{
	color: #fff;
	background-color: var(--main-color);
	transition: 0.3s;
}