@charset "UTF-8";

/*--------------------------------------------------------------------------------
	reset
--------------------------------------------------------------------------------*/

html{-webkit-text-size-adjust:100%;box-sizing:border-box;-moz-tab-size:4;tab-size:4;word-break:normal}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{margin:0;padding:0}hr{color:inherit;height:0;overflow:visible}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}iframe{border-style:none}input{border-radius:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}a:focus,button:focus,input:focus,select:focus,textarea:focus{outline-width:0}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}[disabled]{cursor:default}img{border-style:none}progress{vertical-align:baseline}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}



/*--------------------------------------------------------------------------------
	override & common
--------------------------------------------------------------------------------*/

/* override */

a{
	color: #111F4B;
	text-decoration: none;
}

html{
	font-size: 62.5%;
}

body{
	font-family: 'Sofia Sans Condensed', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	background: #ffffff;
	letter-spacing: 0.06em;
	line-height: 1.5;
	color: #111F4B;
}

body *{
	box-sizing:border-box;
}

li{
	list-style:none;
}

img{
	width:100%;
	height:auto;
	vertical-align:bottom;
	image-rendering: -webkit-optimize-contrast;
}

.preload{
	transition:0 !important;
}



/* formparts */

input[type="text"],
input[type="email"],
input[type="date"]{
/*	border:solid 1px #666666;
	border-radius:6px;*/
	padding:10px;
	width:100%;
	font-size:16px;
	line-height:1.2;
	border:none;
	border-radius:0;
	background:#F0F0F0;
}

.c-form-select-wrapper {
	display: inline;
	position: relative;
}

.c-form-select-wrapper:before {
	position: absolute;
	top: 50%;
	right: 10px;
	 content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-right: 2px solid #666;
	border-top: 2px solid #666;
	-moz-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	margin: -10px 0 0;
	pointer-events: none;
}

.c-form-select-wrapper > select {
	font-size:16px;
	line-height:1.2;
	border:none;
	border-radius:0;
	padding:10px 50px 10px 10px;
	background:#F0F0F0;
	color: #000000;
}

textarea{
/*	border:solid 1px #666666;
	border-radius:6px;*/
	padding:10px;
	width:100%;
	height:300px;
	font-size:16px;
	line-height:1.5;
	border:none;
	border-radius:0;
	background:#F0F0F0;
}



/* spv / pcv */

.c-pc-v{
	display:none;
}

@media only screen and (min-width: 768px){

	.c-pc-v{
		display:block;
	}

}

.c-sp-v{

}

@media only screen and (min-width: 768px){

	.c-sp-v{
		display:none;
	}

}



/* float */

.c-fl{
	float:left;
}

.c-fr{
	float:right;
}



/* clearfix */

.c-cfx:after{
	content:"";
	display:block;
	clear:both;
}

.c-cfx:before{
	content:"";
	display:block;
	clear:both;
}

.c-cfx{
	display: block;
}



/* container */

.c-container{

}

.c-container.c-container--column2 > .c-container-item:nth-of-type(n+2){
	margin-top:20px;
}

.c-container.c-container--column3 > .c-container-item:nth-of-type(n+2){
	margin-top:20px;
}

.c-container.c-container--column4 > .c-container-item:nth-of-type(n+2){
	margin-top:20px;
}

@media only screen and (min-width: 768px){

	.c-container{
		display:flex;
		margin-left:-20px;
		margin-right:-20px;
	}

	.c-container.c-container--column2{
		flex-wrap:wrap;
	}

	.c-container.c-container--column2 > .c-container-item{
		width:50%;
		padding:0 20px;
	}

	.c-container.c-container--column2 > .c-container-item:nth-of-type(2){
		margin-top:0;
	}

	.c-container.c-container--column2 > .c-container-item:nth-of-type(n+3){
		margin-top:40px;
	}

	.c-container.c-container--column3{
		flex-wrap:wrap;
	}

	.c-container.c-container--column3 > .c-container-item{
		width:33.3333%;
		padding:0 20px;
	}

	.c-container.c-container--column3 > .c-container-item:nth-of-type(n+2){
		margin-top:0;
	}

	.c-container.c-container--column3 > .c-container-item:nth-of-type(n+4){
		margin-top:40px;
	}

	.c-container.c-container--column3 > .c-container-item.c-container-item--double{
		width:66.6666%;
		padding:0 20px;
	}

	.c-container.c-container--column4{
		flex-wrap:wrap;
	}

	.c-container.c-container--column4 > .c-container-item{
		width:25%;
		padding:0 20px;
	}

	.c-container.c-container--column4 > .c-container-item:nth-of-type(n+2){
		margin-top:0;
	}

	.c-container.c-container--column4 > .c-container-item:nth-of-type(n+5){
		margin-top:40px;
	}

}



/* margin */

.c-pt-0{
	padding-top:0 !important;
}

.c-mb-0{
	margin-bottom:0 !Important;
}

.c-mt-0{
	margin-top:0 !important;
}

.c-mt-10{
	margin-top:10px !important;
}

.c-mt-xl{
	margin-top:100px !important;
}

.c-mt-ll{
	margin-top:80px !important;
}

.c-mt-l{
	margin-top:64px !important;
}

.c-mt-ml{
	margin-top:48px !important;
}

.c-mt-m{
	margin-top:32px !important;
}

.c-mt-ms{
	margin-top:24px !important;
}

.c-mt-s{
	margin-top:16px !important;
}

@media only screen and (min-width: 768px){

	.c-mt-xl{
		margin-top:120px !important;
	}

	.c-mt-ll{
		margin-top:100px !important;
	}

	.c-mt-l{
		margin-top:80px !important;
	}

	.c-mt-ml{
		margin-top:64px !important;
	}

	.c-mt-m{
		margin-top:48px !important;
	}

	.c-mt-ms{
		margin-top:32px !important;
	}

	.c-mt-s{
		margin-top:24px !important;
	}

}



/* align */

.c-align-c{
	text-align:center !important;
}

.c-align-c-pc{

}

@media only screen and (min-width: 768px){

	.c-align-c-pc{
		text-align:center !important;
	}

}

@media only screen and (max-width: 767px){

	.c-align-c-sp{
		text-align:center !important;
		margin-left:auto;
		margin-right:auto;
	}

}

.c-align-r{
	text-align:right !important;
}

.c-align-dc{
	margin-left:auto;
	margin-right:auto;
}

.c-align-dr{
	margin-left:auto;
}

.c-align-dl{
	margin-left:auto;
}



/*--------------------------------------------------------------------------------
	header
--------------------------------------------------------------------------------*/

.c-header {
	position: fixed;
	width: 100%;
	height: 60px;
	padding: 0 20px;
	background:rgba(255,255,255,1);
	z-index:99;
}

.c-header-inner {
	width: 100%;
	max-width: 1064px;
	margin: 0 auto;
	position: relative;
}

.c-header-inner-logo {
	position: absolute;
	top: 21px;
	left: 0;
	width: 240px;
	height: 28px;
}

.c-header-inner-logo > a {
	display: block;
	width: 240px;
	height: 28px;
	font-size: 0;
	line-height: 0;
	background: url(../../img/common/logo-red.svg) no-repeat center center / contain;
}

.c-header-inner-nav {
	display: none;
}

@media only screen and (max-width: 767.99px){

	.c-header-inner-nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		padding: 90px 60px 0 60px;
		background: #CA0915;
	}

	.c-header-inner-nav-logo {
		position: absolute;
		top: 21px;
		left: 20px;
		width: 240px;
		height: 28px;
		z-index:100;
	}

	.c-header-inner-nav-logo > a {
		display: block;
		width: 240px;
		height: 28px;
		font-size: 0;
		line-height: 0;
		background: url(../../img/common/logo-white.svg) no-repeat center center / contain;
	}


	.c-header-inner-nav > ul {
		font-size: 2.0rem;
		line-height: 1.2;
	}

	.c-header-inner-nav > ul + ul {
		position: relative;
		margin:40px 0 0 0;
		padding: 40px 0 0 0;
	}

	.c-header-inner-nav > ul + ul:before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		content: "";
		background: rgba(255,255,255,0.42);
	}

	.c-header-inner-nav > ul > li {

	}

	.c-header-inner-nav > ul > li + li {
		margin: 20px 0 0 0;
	}

	.c-header-inner-nav > ul > li > a {
		display: block;
		text-align: center;
		color: #ffffff;
	}

}

@media only screen and (min-width: 768px){

	.c-header {
		height: 100px;
		padding: 0 40px;
	}

	.c-header-inner {
		width: 100%;
		max-width: 1064px;
		margin: 0 auto;
		position: relative;
	}

	.c-header-inner-nav {
		display: block;
		position: absolute;
		top:57px;
		right: 0;
	}

	.c-header-inner-nav > ul {
		display: flex;
		font-size: 1.4rem;
		line-height: 1.2;
	}

	.c-header-inner-nav > ul + ul {
		display: none;
	}

	.c-header-inner-nav > ul > li {
	
	}

	.c-header-inner-nav > ul > li + li {
		margin: 0 0 0 40px;
	}

	.c-header-inner-nav > ul > li > a {
		
	}

	.c-header-inner-nav > ul > li > a > span {
		display: inline-block;
		padding: 0 0 10px 0;
		position: relative;
	}

	.c-header-inner-nav > ul > li > a:hover > span:before {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		content: "";
		background: #39FF00;
	}

}

@media only screen and (min-width: 1090px){

	.c-header-inner-logo {
		position: absolute;
		top: 48px;
		left: 0;
		width: 300px;
		height: 35px;
	}

	.c-header-inner-logo > a {
		width: 300px;
		height: 35px;
	}

}

/* navbtn */

.c-header-navbtn{
	position:fixed;
	top:16px;
	right:20px;
	z-index:110;
}

.c-header-navbtn-link{
	overflow: hidden;
	display: block;
	position: relative;
	width: 27px;
	height: 27px;
	cursor: pointer;
}

.c-header-navbtn-link span,
.c-header-navbtn-link:before,
.c-header-navbtn-link:after{
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right: 0;
	width: 27px;
	height: 2px;
	margin: auto;
	background: #000000;
}

.c-header.is-scroll .c-header-navbtn-link span,
.c-header.is-scroll .c-header-navbtn-link:before,
.c-header.is-scroll .c-header-navbtn-link:after{
	background: #000000;
}

.c-header.is-scroll.js-act .c-header-navbtn-link span,
.c-header.is-scroll.js-act .c-header-navbtn-link:before,
.c-header.is-scroll.js-act .c-header-navbtn-link:after{
	background: #ffffff;
}

.c-header-navbtn-link span{
	overflow: hidden;
	transition: opacity 150ms 50ms;
}

.c-header-navbtn-link:before{
	transform: translate(0, -10px);
	content: "";
	transition: transform 400ms;
}

.c-header-navbtn-link:after{
	transform: translate(0, 10px);
	content: "";
	transition: transform 400ms;
}

.c-header.js-act .c-header-navbtn-link span{
	opacity: 0;
	transition: opacity 150ms;
}

.c-header.js-act .c-header-navbtn-link:before{
	background:#ffffff;
	transform: rotate(45deg);
}

.c-header.js-act .c-header-navbtn-link:after{
	background:#ffffff;
	transform: rotate(-45deg);
}

@media only screen and (min-width: 768px){

	.c-header-navbtn{
		display:none;
	}

}



/*--------------------------------------------------------------------------------
	main
--------------------------------------------------------------------------------*/

.c-main {
	padding: 90px 0 60px 0;
}

@media only screen and (min-width: 768px){

	.c-main {
		padding: 150px 0 120px 0;
	}

}


/*--------------------------------------------------------------------------------
	footer
--------------------------------------------------------------------------------*/

.c-footer {
	background: #CA0915;
	padding: 0 0;
	color: #ffffff;
}

.c-footer-inner {
	width: 100%;
	max-width: 1064px;
	margin: 0 auto;
}

.c-footer-inner-01 {
	padding: 30px 0 20px 0;
}

.c-footer-inner-01-logo {
	width: 240px;
	height: 28px;
	margin: 0 auto;
}

.c-footer-inner-01-logo > a {
	display: block;
	width: 240px;
	height: 28px;
	font-size: 0;
	line-height: 0;
	background: url(../../img/common/logo-white.svg) no-repeat center center / contain;
}

.c-footer-inner-01-nav {
	display: none;
}

.c-footer-inner-01-discrlmer{
	padding: 20px 25px 0 25px;
}

.c-footer-inner-01-discrlmer > dl > dt {
	font-size: 1.3rem;
	line-height 1.2;
}

.c-footer-inner-01-discrlmer > dl > dd {
	margin: 5px 0 0 0;
	font-size: 1.2rem;
	line-height: 1.2;
	font-weight: 300;
}

.c-footer-inner-01-discrlmer > dl > dd > p + p {
	margin-top: 0.7em;
}

.c-footer-inner-02 {
	padding: 0 0 20px 0;
}

.c-footer-inner-02-link {
    padding: 0 0 15px 0;
    text-align: center;
}

.c-footer-inner-02-link > ul {
    font-size: 1.4rem;
    line-height: 1.2;
}

.c-footer-inner-02-link > ul > li {

}

.c-footer-inner-02-link > ul > li > a {
    color: #ffffff;
}

.c-footer-inner-02-copyright {
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.2;
}

@media only screen and (min-width: 768px){

	.c-footer {
		padding: 0 40px;
	}

	.c-footer-inner-01 {
		padding: 55px 0 65px 0;
		position: relative;
	}

	.c-footer-inner-01-logo {
		padding: 7px 0 0 0;
		margin: 0 0;
	}
/*
	.c-footer-inner-01-logo > a {
		display: block;
		width: 300px;
		height: 35px;
		font-size: 0;
		line-height: 0;
		background: url(../../img/common/logo-white.svg) no-repeat center center / contain;
	}
*/
	.c-footer-inner-01-nav {
		display: block;
		position: absolute;
		top: 63px;
		right: 0;
	}

	.c-footer-inner-01-nav > ul {
		display: flex;
		font-size: 1.4rem;
		line-height: 1.2;
	}

	.c-footer-inner-01-nav > ul > li {
		margin: 0 38px 0 0;
	}

	.c-footer-inner-01-nav > ul > li:last-child {
		margin: 0 0 0 0;
	}

	.c-footer-inner-01-nav > ul > li > a {
		color: #ffffff;
	}

	.c-footer-inner-01-discrlmer {
		padding: 50px 0 0 0;
	}

	.c-footer-inner-02 {
		position: relative;
		width: 100%;
		height: 73px;
		padding: 0 0 0 0;
	}

	.c-footer-inner-02:before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		content: "";
		background: rgba(255,255,255,0.42);
	}

	.c-footer-inner-02-link {
		display: block;
		position: absolute;
		top:20px;
		left:0;
        padding: 0;
	}

    .c-footer-inner-02-link > ul > li > a {
    }
    
	.c-footer-inner-02-copyright {
		position: absolute;
		top: 20px;
		right: 0;
		font-size: 1.4rem;
		line-height: 1.2;
	}

}

@media only screen and (min-width: 820px) {

	.c-footer-inner-01-logo {
		width: 247px;
		height: 29px;
		margin: 0 0;
		padding: 0 0 0 0;
	}

	.c-footer-inner-01-logo > a {
		display: block;
		width: 247px;
		height: 29px;
		font-size: 0;
		line-height: 0;
		background: url(../../img/common/logo-white.svg) no-repeat center center / contain;
	}

}

/*--------------------------------------------------------------------------------
	parts
--------------------------------------------------------------------------------*/

/* ol */

.c-ol {

}

.c-ol.js-act {
	filter: blur(10px);
}

/* disclaimer */

.c-disclaimer {
	opacity: 0;
	transition: opacity 0.5s ease;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% - 80px);
	max-width: 1064px !important;
	background: #ffffff;
	border-radius: 10px;
	padding: 0 10px;
	z-index: -1;
	max-height: 90vh;
    display: flex;
    align-items: center;
    /*max-height: 760px;*/
}



.c-disclaimer.js-act {
	opacity: 1;
	z-index: 201;
	transition: opacity 0.5s ease;
}

.c-disclaimer-inner {
	overflow-y: auto;
    padding: 10px;
    max-height: 90vh;
    /*height: calc(100% - 40px);*/
}

.c-disclaimer-inner-logo {
	margin: 0 0 0 auto;
	width: 126px;
	height: 14px;
	font-size: 0;
	line-height: 0;
	background: url(../../img/common/logo-red.svg) no-repeat center center / contain;
}

.c-disclaimer-inner-box-ttl {
	margin: 15px 0 18px 0;
    padding-top: 24px;
    border-top: solid 1px #CFD4E5;
}

.c-disclaimer-inner-box-ttl > span {
	display: inline-block;
	font-size: 1.8rem;
	line-height: .12;
	font-weight: 600;
	padding: 0 0 12px 0;
	border-bottom: solid 4px #0F1939;
}

.c-disclaimer-inner-box-txt {
	font-size: 1.4rem;
	line-height: 1.2;
	max-height: 70vw;    
}

.c-disclaimer-inner-box-txt p + p {
    padding-top: 10px;
}

.c-disclaimer-inner-btn {
	padding: 20px 0 0 0;
    text-align: right;
    margin-top: 20px;
    border-top: 1px solid #CFD4E5;
}

.c-disclaimer-inner-btn > a {
	display: block;
    margin-left: auto;
	width: 160px;
	height: 36px;
	background: #CA0A14;
	text-align: center;
	font-size: 1.3rem;
	line-height: 36px;
	color: #ffffff;
}

.c-disclaimer-bold {
	font-weight: bold;
}

.c-disclaimer-underline {
	text-decoration: underline;
}

@media only screen and (min-width: 768px){

	.c-disclaimer {
		padding: 0 25px;
        /*max-height: 660px;*/
	}

}

@media only screen and (min-width: 90px){
    
    .c-disclaimer-inner {
        padding: 35px 25px;
        /*height: calc(100% - 70px);*/
    }
    
	.c-disclaimer-inner-logo {
		margin: 0 0 0 auto;
		width: 253px;
		height: 29px;
		font-size: 0;
		line-height: 0;
		background: url(../../img/common/logo-red.svg) no-repeat center center / contain;
	}

	.c-disclaimer-inner-box-ttl {
		margin: 15px 0 24px 0;
        padding-top: 36px;
    }	


	.c-disclaimer-inner-box-ttl > span {
		display: inline-block;
		font-size: 2.2rem;
		line-height: .12;
		font-weight: 600;
		padding: 0 0 15px 0;
		border-bottom: solid 4px #0F1939;
	}

	.c-disclaimer-inner-box-txt {
		font-size: 1.7rem;
		line-height: 1.2;
	}

	.c-disclaimer-inner-btn {
        margin-top: 36px;
        padding-top: 15px;
		
	}

	.c-disclaimer-inner-btn > a {
		width: 200px;
		height: 42px;
		font-size: 1.6rem;
		line-height: 42px;
	}

}



/* overlay */

.c-overlay {
	display: none;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(12,25,57,1.0);
	z-index:200;
}

.c-overlay.js-act {
	display: block;
	opacity: 1;
}



/* cts */

.c-cts {
	padding: 60px 20px;
}

.c-cts-inner {
	width: 100%;
	max-width: 1064px;
	margin: 0 auto;
}

@media only screen and (min-width: 768px){

	.c-cts {
		padding: 100px 40px;
	}

}



/* ttl-01 */

.c-ttl-01 {
	margin: 0 0 36px 0;
}

.c-ttl-01-inner {
	font-size: 2.0rem;
	line-height: 1.2;
	font-weight: 400;
}

.c-ttl-01-inner > span {
	display: inline-block;
	padding: 0 0 15px 0;
	position: relative;
}

.c-ttl-01-inner > span:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	content: "";
	background: #111F4B;;
}

.c-ttl-01.c-ttl-01--white .c-ttl-01-inner {
	color: #ffffff;
}

.c-ttl-01.c-ttl-01--white .c-ttl-01-inner > span:before {
	background: #ffffff;
}

@media only screen and (min-width: 768px){

	.c-ttl-01 {
		margin: 0 0 48px 0;
	}

}



/* ttl-02 */

.c-ttl-02 {
	padding: 0 0 18px 0;
	position: relative;
}

.c-ttl-02:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	content: "";
	background: #111F4B;
}

.c-ttl-02-inner {
	font-size: 2.0rem;
	line-height: 1.2;
	font-weight: 400;
}

@media only screen and (min-width: 768px){

}



/* newslist */

.c-newslist-wrapper {
	border-top: solid 1px #E0E0E0;
}

.c-newslist {
	width: 100%;
	border-bottom: solid 1px #E0E0E0;
	font-size: 1.6rem;
	line-height: 1.2;
	padding: 20px 0;
}

.c-newslist > dt {

}

.c-newslist > dt > span {
	display: inline-block;
}

.c-newslist > dd {
	padding: 6px 0 0 0;
}

.c-newslist-date {
	width: 5em;
}

.c-newslist-cat {
	width: 3em;
	text-align: center;
	color: #FFF;
	background: #111F4B;
	font-size: 90%;
	line-height: 1.4em;
}

@media only screen and (min-width: 768px){

	.c-newslist {
		display: table;
		width: 100%;
		border-bottom: solid 1px #E0E0E0;
		font-size: 1.8rem;
		line-height: 1.2;
		padding: 0 0;
	}

	.c-newslist > dt {
		display: table-cell;
		width: 180px;
		vertical-align: top;
		padding: 26px 0 24px 20px;
		font-size: 1.6rem;
	}

	.c-newslist > dd {
		display: table-cell;
		vertical-align: top;
		padding: 24px 0;
		font-size: 1.8rem;
	}

}



/* pager */

.c-pager-wrapper {
	margin:30px 0 0 0;
	text-align:center;
}

.c-pager {
	text-align:center;
	display: inline-flex;
	margin-left: auto;
	margin-right: auto;
}

.page-numbers {
	box-sizing:border-box;
	border: 1px solid #000000;
	background: #F2F2F2;
	font-family: 'Arial';
	font-size: 13px;
	line-height: 28px;
	font-weight: 400;
	display: inline-block;
	margin: 0 0 0 -1px;
	color: #000000;
	padding: 0 0.5em;
	min-width: 30px;
	box-sizing: border-box;
}

.page-numbers.current {
	background: #ffffff;
	border: 1px solid #000000;
}

@media only screen and (min-width: 768px){

	.c-pager-wrapper {
		margin:60px 0 0 0;
	}

	.page-numbers {
		line-height: 44px;
		min-width: 46px;
	}

}

.c-txt-serif {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "NSimSun", serif;
}

.c-hover:hover {
	opacity: .5;
}

.c-hover {
	transition: .3s;
}

.c-newslist.c-txt-serif {
	line-height: 1.5;
}

.p-news-body.c-txt-serif {
	line-height: 1.7;
}