@charset "utf-8";

 .loadingWrap {
 width: 100%;/*100%で全画面表示*/
 height: 100%;/*100%で全画面表示*/
 background: #000;/*背景色*/
 position: fixed;
 top: 0;/*画面上部からの位置*/
 left: 0;/*画面左部からの位置*/
 z-index: 9999;/*レイヤー(この他にpositionを使用していない場合は不要)*/
}
.loadingWrap .loader {
	position: absolute;
    top: 50%;
    left: 50%;
	margin: auto;/*画像位置調整(-画像高さの半分 0 0 -画像幅の半分)*/
}


.btn_close {
	width: 40px;
	height: 50px;
	padding: 30px 0 0 0;
	box-sizing: border-box;
	position: fixed;
	top: 20px;
	right: 15px;
	display: block;
	cursor: pointer;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	z-index: 99999;
	color: #e60012;
}
.btn_close:hover {
	opacity: 0.5;
}
.btn_close:before, .btn_close:after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #e60012;
    cursor: pointer;
}
.btn_close:before {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn_close:after {
    top: 20px;
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}

br.sp,
br.sps {
	display: none;
}

body.news {
	height: 100vh;
	color: #231815;
	background: rgba(255,255,255,0.98);
	letter-spacing: 0.05em;
  	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","メイリオ",Meiryo,sans-serif;
	/*background: none;*/
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	overflow-y: scroll;
}

body.news .container {
	width: 100%;
    padding: 0 5%;
	max-width:1000px;
	margin: 0 auto;
}
body.news .container div.scroll {
	width: 100%;
	height: 75vh;
}
.news h1 {
	font-size: 30px;
	font-weight: 400;
    margin-bottom: 20px;
	margin: 50px 0;
	font-family: 'Roboto Slab', serif;
	color: #e60012;
}
.news h1 span {
	font-size: 16px;
	padding: 0 0 0 20px;
  	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","メイリオ",Meiryo,sans-serif;
	color: #000;
}
.news .container span {
	font-family: 'Roboto Slab', serif;
	font-size: 12px;
}
@media screen and (max-width:768px) {
	body.news {
		height: auto;
		min-height: 120vh;
	}
	body.news .container div.scroll {
		height: auto;
	}
	br.pc {
		display: none;
	}
}
@media screen and (max-width:600px) {
	.news h1 {
		font-size: 25px;
		margin: 70px 0 30px 0;
	}
	.news h1 span {
		font-size: 10px;
	}
}
@media screen and (max-width:320px) {
	br.sps {
		display: inline;
	}
	.news h1 {
		margin: 30px 0 30px 0;
	}
	.news h1 span {
		display: block;
		padding: 10px 0 0 0;
	}
}

.news a {
    color: #000;
}

.news a.txt {
	text-decoration:underline;
}

