@charset "UTF-8";

/* ページ全体 */
body {
	margin: 0;
	font-family: "游明朝","Yu Mincho","Hiragino Mincho Pro","Yu Gothic Medium","serif";
	font-weight: 900;
}

.iframe-content {
	position: relative;
	width: 100%;
	padding: 75% 0 0 0;
}

.iframe-content iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* リンク */
a{
	color : #000000;
	padding: 0 10px;
	text-decoration: none;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(100, 149, 237) 50%);
	background-position: 0 0;
	background-size: 200% auto;
	transition: .3s;
}

a:hover{
	background-position: -100% 0;
	text-decoration: none;
	color: #fff;
}

/* アコーディオンメニュー */
.menu2 {
	width: 100%;
	font-size: 12px;
	padding: 10px 10px 20px -10px;
}
.menu2 input {
	display: none; /*チェックボックスを隠す*/
}

/*バー部分*/
.menu2 label {
	min-width: 260px;
	cursor :pointer;
	display: block;
	text-decoration: none;
	color: #000000;
	line-height: 1;
	position: relative;
	margin: 0 0 10px;
	padding: 10px;
}

/*開いたときに表示される部分*/
.menu2 ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 1px;
}

.menu2 li {
	height: 0;
	overflow-y: hidden;
	transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
	-webkit-transition: padding-bottom 0.5s, padding-top 0.5s
	-moz-transition: padding-bottom 0.5s, padding-top 0.5s;
	-ms-transition: padding-bottom 0.5s, padding-top 0.5s;
	-o-transition: padding-bottom 0.5s, padding-top 0.5s;
}

#menu2_bar01:checked ~ #links01 li,
#menu2_bar02:checked ~ #links02 li,
#menu2_bar03:checked ~ #links03 li {
	height: auto; /*開いたときに表示されるliの高さ*/
	opacity: 0.6;
	background: #f1f1f1;
	padding: 5px;
}

/*開いたときの下の余白*/
#menu2_bar01:checked ~ #links01 li:last-child,
#menu2_bar02:checked ~ #links02 li:last-child,
#menu2_bar03:checked ~ #links03 li:last-child {
	margin-bottom: 20px;
}

/*閉じた状態の矢印描画*/
.menu2 label:after{
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: #000000 2px solid;
	border-right: #222222 2px solid;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	position:absolute;
	right: 2%;
	top: 0;
	bottom: 15%;
	margin: auto;
}

/*開いた状態の矢印描画*/
.menu2 input[type=checkbox]:checked + label:after{
	content:"";
	display:block;
	width:8px;
	height:8px;
	border-top: #000000 2px solid;
	border-right: #000000 2px solid;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position:absolute;
	right: 2%;
	top: 7%;
	bottom: 0;
	margin: auto;
}

/* コンテンツブロック */
div {

}

/* 記事 */
article {
	padding: 10px;
	padding: 0px 35px 35px 35px;
}

h1 {
	font-size: 20px;
	width:300px;
	padding: 0px 30px 0px 10px;
	margin: 20px 70px 0px 0px;
	color: #494949;
	background: transparent;
	border-left: solid 3px #6495ed;
}

h2 {
	font-size: 15px;
	font-weight: 300;
}

p {
	line-height: 1.8;
	font-size: 12.5px;
	font-weight: 300;
	text-align: justify;
	text-justify: inter-ideograph;
}


/* サブメニュー */
aside {
	padding: 18px;
	margin-top: -29px;
}

h2 {
	color: #6495ed;
	font-family: 'Exo 2', sans-serif;
	font-weight: normal;
	text-align: center;
}


/* サブメニュー：注目記事メニュー */
.topics ul {
	list-style-type: none;
	padding: 0;
}

.topics a {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.topics figure {
	width: 100px;
	flex: none;
}

.topics img {
	vertical-align: bottom;
}

.topics h3 {
	font-size: 12px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
}

/* 画像 */
img. {
vertical-align: bottom;
}

figure {
	margin: 0;
}

.center{
	text-align: center;
}


/* フッターブロック */
footer {
	padding: 25px 15px;
	margin: 0px 0px 0px 15px;
	font-family: '游ゴシック',YuGothic,sans-serif;
	font-size: 11px;
	font-weight: 300;
}


/* ==== PC版 ==== */
@media (min-width: 600px) {

/* PC版：コンテナ */
.container {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* PC版：ヘッダーブロック内のコンテナ */
header .container {
	display: flex;
	justify-content: space-between;
}

/* PC版：記事 */
article {
	padding-left: 60px;
	padding-right: 60px;
} 

} 
/* ===== PC版の設定ここまで ===== */

/* ==== PC版（大） ==== */
@media (min-width: 1025px) {

/* PC版（大）：コンテナ */
.container {
	max-width: 1100px;
}

/* PC版（大）：「コンテンツ」ブロック内のコンテナ */
.contents .container {
	display: flex;
	justify-content: space-between;
}

/* PC版（大）：記事 */
article {
	width: 60%;
	box-sizing: border-box;
}

/* PC版（大）：サブメニュー */
.sub {
	width: 40%;
}

}
/* ===== PC版（大）の設定ここまで ===== */

/* 上に戻るボタン */
.pagetop {
	color: #ffffff;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 28px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 45px;
	text-align: center;
	cursor: pointer;
}

.pagetop:hover {
	color: #ffffff !important;
	background-color: rgba(0,0,204,0.5);
	text-decoration: none;
}
