@charset "utf-8";
/* 
 style info : 基本共通スタイル

2019.12

color 
ブルー(メインカラー)　#003894
レッド　#D80003
 */
 
/*----------------------------------------------------
	base	
----------------------------------------------------*/
* {
}

html{ 
font-size: 62.5%;　/* 16px x 0.625 = 10px(=1rem) */} 
html,body {	
 overflow-x: hidden;
}
body{
font-size:16px;
font-size: 1.6rem;/* 16px */ 
/*font-family: Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
font-family: "Noto Sans JP";
line-height:1.6; 
-webkit-text-size-adjust: 100%;/*iphone 調整用*/ 
-webkit-font-smoothing: antialiased;/*ちらつき防止用*/ 
color:#1a1a1a;
padding:50px 0 0;

} 

@media screen and (max-width: 768px) {
body{
	font-size:14px;
	font-size: 1.4rem;/* 14px */ 
}
body.top{
	padding-top:50px;
}
}
select,input,button,textarea,button{
	font:99% arial,helvetica,clean,sans-serif;
}

/*table{
	font-size:inherit;font:100%;
}*/
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* link*/
a {
	color:#0845FE;
	text-decoration:none;
}

a:link {
}

a:visited {
}

a:hover{
}


a img:hover,.mover:hover{
	-webkit-transition: 0.6s ;
	transition: 0.6s ;
	opacity:0.5;
	filter: alpha(opacity=50);        /* ie lt 8 */
	-ms-filter: "alpha(opacity=50)";  /* ie 8 */
	-moz-opacity:0.5;                 /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.5;              /* Safari 1.x */
}


@media screen and (max-width: 768px) {
img{
	max-width:100%;
	height:auto;
}
}

/*----------------------------------------------------
	layout
----------------------------------------------------*/
#fixed{
	position:fixed;
	top:0;
	width: 100%;
	height:50px;
	z-index:1;
	/*background: rgba(255, 255, 255, 0.8);*/
		background: #003894;
}

#content,footer{
	width:100%;
}

header,.inner{
	width:980px;
	margin:auto;
}
section{
	margin-bottom:120px;
}

body,
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
	#fixed{
		height:50px;
	}
	header,.inner{
		width:100%;
	}
	section{
		margin-bottom:50px;
	}
}


/*----------------------------------------------------
	header
----------------------------------------------------*/
header{
	position:relative;
}

.logo{
	position:absolute;
	left:0;
	top:5px;
}
.logo img{
	height: 40px;
}
header h1{
	position:absolute;
	top:15px;
	left:100px;
	color: #fff;
}
#h-nav .sub-wrap{
	display:block;
}

.sub-menu{
	position:absolute;
	right:0;
	top:0;
}

.sub-menu li {
	display:inline-block;
	height:50px;
	line-height:50px;
}

.sub-menu li a{
	/*padding:0 8px;*/
		display:block;
	width:70px;
	text-align:center;
	color: #fff;
}
.sub-menu li:last-of-type a{
	width:120px;
	height:50px;
	background:#D80003;
	color:#fff;
}
.sub-menu li.mypage a{
	background:#fb5d80;
	color:#fff;
}

@media screen and (max-width: 768px) {
	.logo{
	top:10px;
		left: 5px;
}
	.logo img{
	height: 30px;
}
	header h1{
	top:10px;
	left:80px;
	}
	/*	#h-nav　ハンバーガーメニュー*/
#h-nav{
	position:fixed;
	top:10px;
	right:5px;
	z-index:2;
}
#h-nav .sub-wrap{
	display:none;
	position:fixed;
	top:0;
	right:0;
	background-color: rgba(0,0,0,0.7);
	width:100%;
	height:100%;
}

#h-nav ul.sub-menu{
	position:fixed;
	top:50px;
	left:0;
	width:100%;
}

#h-nav ul.sub-menu li{
	display:block;
}
#h-nav ul.sub-menu li a{
	display:block;
	width:100%;
	height:50px;
	line-height:50px;
	color:#fff;
	text-decoration:none;
	text-align:left;
	padding:0 10px;
	box-sizing:border-box;
}
#h-nav ul.sub-menu li:hover{
	background-color: rgba(255,255,255,0.3);
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	z-index:3;
}
.menu-trigger {
	position: relative;
	width: 40px;
	height:24px;
	cursor:pointer;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fff;
	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 10px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}


	
}

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

footer{
	padding:20px 0 10px;
	background:#003894;
}
footer ul {
	margin-bottom:20px;
}

footer li {
	display:inline-block;
	color: #fff;
}
footer li a{
	color: #fff;
}
footer .sns {
	padding: 10px 0;
	text-align: center;	
}
footer .sns img{
	width:50px;
	margin:0 3px;
}
footer p{
	font-size:1.2rem;
	text-align:center;
	color: #fff;
}

footer .inner{

}


/*TOPへ戻るボタン*/
.totop{
	position:fixed;
	right:30px;
	bottom:70px;
}
.totop a img{
	width:70px;
	opacity:0.5;
}
@media screen and (max-width: 959px) {
	
}

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

	footer .sns img{
	width:30px;
	margin:0 3px;
}
/*TOPへ戻るボタン*/
.totop{
/*	right:20px;
	bottom:120px;*/
	right:5%;
	bottom:8%;
}
.totop a img{
	width:40px;
}

}


/*----------------------------------------------------
	content
----------------------------------------------------*/
.top #contents{
	/*padding:0 0 80px;*/
	padding:0;
}

#contents{
	padding:50px 0 80px;
}

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

.top #contents{
	padding:0 0 0;
}

#contents{
	padding:30px 0 50px;
}

}
.header-search dl{
    position:relative;
    background-color:#fff;
    border:1px solid #aaa;
}
.header-search dl dt{
    margin-right:40px;
    padding:2px 0 2px 8px;
}
.header-search dt input{
    width:100%;
    height:30px;
    line-height:30px;
    background:none;
    border:none;
	outline: 0;
	margin:0;
}

.header-search dd{
    position:absolute;
    top:0;
    right:0;
}
.header-search dd button{
    display:block;
    padding:0px;
    background:none;
    border:none;
}
.header-search dd button span{
    display:block;
    width:30px;
    height:30px;
    background:url('../img/common/search.png') no-repeat scroll center center;
	background-size:20px;
}

/*下層共通*/


.new{
	background:url(../img/common/ttl_new_bg.gif) repeat-x top;
	margin-bottom:100px;
}

.popularity{
	background:url(../img/common/ttl_popularity_bg.gif) repeat-x top;
	margin-bottom:100px;
}

.new h3,.popularity h3{
	width:300px;
	background:#fff;
	text-align:center;
	margin:0 auto 30px;
}
.new h3 img,.popularity h3 img{
	width:240px;
}
.new ul,.popularity ul{
	margin-bottom:30px;
}
.new li,.popularity li{
	display:inline-block;
	width:245px;
	height:200px;
}
.new li a,.popularity li a{
	position:relative;
}
.new li a span,.popularity li a span{
	position:absolute;
	top:0;
	left:0;
	width:245px;
	height:200px;
    background:#000 ;
	display:block; 
}

.new li:nth-of-type(2n) a span,.popularity li:nth-of-type(2n) a span{
	    background:#fff ;
}
.new li a img,.popularity li a img{
	 opacity: 0.6;  
	position:absolute;
	top:0;
	left:0;
	width:245px;
	height:200px;
	object-fit: cover;
	}
.new li p,.popularity li p{
	position: absolute;
	top:80px;
	left:0;
	width:240px;
	color:#fff;
	text-align:center;
	padding:5px;
}

.new li:nth-of-type(2n) p,.popularity li:nth-of-type(2n) p{
	color:#000;
}

.new .next,.popularity .next{
	width:240px;
	float:right;
}
.new .next a,.popularity .next a{
	position:relative;
	display:block;
	background:#97918f;
	padding:10px 20px;
	text-align:center;
	color:#fff;
}
.new .next a:after,.popularity  .next a:after{
position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -12px;
    content: "\f105";
	color:#fff;
    font-family: FontAwesome;
	}

	
@media screen and (max-width: 959px) {
	.subttl{
	padding:15px 0;
}
.new ul,.popularity ul{
	width:490px;
	margin:0 auto 30px;
}

}


@media screen and (max-width: 768px) {
.new ul,.popularity ul{
	width:245px;
	margin:0 auto 30px;
}
.new .next,.popularity .next{
	width:80%;
	float:none;
	margin:auto;
}


}




/* 入力パーツ
----------------------------------------------------*/
input,select{
	margin:5px;
	height:2.5em;
	box-sizing: border-box;
}
textarea {
	margin:5px;
	box-sizing: border-box;
}

input[type="radio"],input[type="checkbox"]{
	height:initial;
	height:auto;
}

input.btn,input.btn-back{
	cursor:pointer;
}
input[type="submit"],input[type="button"]  { /*iphone調整用*/
   -webkit-appearance: none;
   border-radius: 0;
}
input[type="text"],input[type="email"],input[type="url"],input[type="password"],textarea {
	-webkit-appearance: none; /*iphone調整用*/
    outline: none;
    border: 1px solid #ccc;
    border-radius: 5px;
	padding:5px;
	box-sizing: border-box;
}

/*inputボタン*/
input[type="submit"].btn,input[type="button"].btn{
	margin-top:30px;
	border-radius:10px;
	background:#f1f1f1;
	border:0;
	width:100%;
	height:50px;
	text-align:center;
	font-size: 1.8rem;
}
input[type="submit"].btn:hover,input[type="button"].btn:hover{
	background:#C6C6C6;
	transition:0.6s;
}
input[type="submit"].btn.back,input[type="button"].btn.back{
	background:#8C8C8C;
	margin-bottom:15px;
}
@media screen and (max-width: 768px) {

	input,select,textarea{
		font-size:1.6rem;/*iphone拡大防止用*/
	}
}



/* フォーカス・チェック*/
input[type="password"]:focus,input[type="text"]:focus,input[type="tel"]:focus,input[type="email"]:focus,
textarea:focus,input[type="number"]:focus{
	background-color:#FFFFCC;
}



/* 注釈*/
.required{
	background:#fff;
	color:#c0272d;
	border:1px solid #c0272d;
	text-align:center;
	padding:5px 8px;	
	margin:0 0 3px 10px;
	font-size:1.4rem;
	display:inline-block;
	/*float:right;*/
}

@media screen and (max-width: 768px) {
	.required{
		padding:2px 8px;
		font-size:1.2rem;
	}
}

/* エラー、注釈など*/
.ex-comment{
	color:#666;
	font-size:1.4rem;
}
.error-comment{
	color:#F00;
}
th.error-bg{
	background-color:#FCC;
}

.error-box{
	background:#f9edee;
	color:#c0272d;
	padding:5px 20px;
	text-align:center;
	margin:15px auto;
	box-sizing: border-box;
}


@media screen and (max-width: 768px) {
	.ex-comment{
	margin-left:0;
	display:block;
}
}




/*共通
----------------------------------------------------*/

/*ボタンベース single*/
.basebtn{
	width:500px;
	margin:30px auto 0;
}
.basebtn a{
	box-sizing:border-box;
	border-radius:10px;
	display:block;
	background:#fff;
	text-align:center;
	height:70px;
	line-height:70px;
	font-size:2.0rem;
	border:1px solid #97918f;  
}

.basebtn a:hover,input.basebtn:hover{
	background:#f4f4f3;
	transition:0.6s;
}
.basebtn a img{
	vertical-align:middle;
	margin-bottom:5px;
}

input.basebtn{
	box-sizing:border-box;
	border-radius:10px;
	display:block;
	background:#fff;
	text-align:center;
	height:70px;
	line-height:70px;
	font-size:2.0rem;
	border:1px solid #97918f;
	cursor:pointer;
}

@media screen and (max-width: 768px) {
	.basebtn{
	width:100%;
}
	.basebtn a,input.basebtn{
		width:80%;
		margin:20px auto;
	}
		
}

/*ボタンベース single 反転*/
.basebtn2 {
	width:500px;
	margin:30px auto 0;
}
.basebtn2 a{
	box-sizing:border-box;
	border-radius:10px;
	display:block;
	background:#97918f;
	text-align:center;
	height:70px;
	line-height:70px;
	font-size:2.0rem;
	border:1px solid #fff;  
	color:#fff;
}

.basebtn2 a:hover{
	background:#595554;
	transition:0.6s;
}

@media screen and (max-width: 768px) {
	.basebtn2{
	width:100%;
}
	.basebtn2 a{
		width:80%;
		margin:20px auto;
	}
}


/*ボタンベース double*/
.basebtn-double li{
	width:42%;
	display:inline-block;
	margin:20px 4%;
}
.basebtn-double li a{
	box-sizing:border-box;
	border-radius:10px;
	display:block;
	text-align:center;
	height:70px;
	line-height:70px;
	font-size:2.0rem;
	border:1px solid #97918f;  
}

.basebtn-double li a:hover{
	background:#f4f4f3;
	transition:0.6s;
}
.basebtn-double li a img{
	vertical-align:middle;
	margin-bottom:5px;
}
.basebtn-double li input.basebtn{
	width:100%;
}

@media screen and (max-width: 768px) {
	.basebtn-double li{
		display:block;
		width:80%;
		margin:20px auto;
	}
}

.basebtn-double li a.pink,.basebtn a.pink,.basebtn.pink{
	border:1px solid #fb5d80;
	color: #fb5d80;
}
.basebtn-double li a.pink:hover,.basebtn a.pink:hover,.basebtn.pink:hover{
	background:#feeef2;
	transition:0.6s;
}


.pdfbox {
	margin: 30px 0;
}
 
.bnr{ 
	text-align:center;
	margin:30px 0;
	}
	
	
/* table 表組基本
-----------------------------------------*/	




/*注釈リスト(２行目以降インデント有り
-----------------------------------------*/	
.notice{
	margin:30px 20px 5px;
	font-size:1.4rem ;
}
.notice li{
	text-indent: -1em;
	margin-left:1em;
}
.notice li:before {
  content: "※";
}


/*	ページャー
----------------------------------------------------*/
ul.pager {
	margin: 0;
	padding: 10px 10px 5px;
	text-align: center;
}
ul.pager li {
	display: inline;
	margin: 0 8px;
	padding: 0;
}
ul.pager li span,
ul.pager li a {
	display: inline-block;
	margin-bottom: 5px;
	padding: 8px 16px;
	background: #fff;
	text-decoration: none;
	vertical-align: middle;
	border-radius:30px;
	border:1px solid #003894;
}
ul.pager li span{
	background:#003894;
	color: #fff;
}
ul.pager li a:hover {
	background:#ede6da;
}
ul.p-top {
	margin: 0 0 25px 0;
}
ul.p-bottom {
	margin: 25px 0 0 0;
}
@media screen and (max-width: 768px) {
	ul.pager {
	padding: 0px;
	}
	ul.pager li {
		margin:0 3px;
	}
	ul.pager li span,
ul.pager li a {
	padding: 6px 12px;
	border-radius:20px;
}
	
}



/*----------------------------------------------------
	汎用クラス
----------------------------------------------------*/
/* clerfix */

.clear {
  clear: both;
}
.cf:after{
	content: "";
	display: block;
	clear: both;
}
.cf:before {
  display: inline-table;
}
.cf {
	zoom:1;
}

/* float */

.floatL {
	float: left;
}
.floatR {
	float: right;
}
.floatN{
	float:none;
}


/*位置*/
.imgC {
	margin:0 auto 20px;
}

.alL{
	text-align: left;
}

.alC{
	text-align: center;
}
.alR{
	text-align: right;
}
/*fontsize*/

.s-font{
	font-size:85.7% ;
}
.l-font{
	font-size:114.3%;
}
@media screen and (max-width: 768px) {
.s-font{
	font-size:85% ;
}
.l-font{
	font-size:116% ;
}
}

.red{
	color:#F00;
}

/*pcだけ表示*/

@media screen and (max-width: 768px) {
.pc{
	display:none;
}
}
/*spだけ表示*/

@media screen and (min-width: 769px) {
.sp{
	display:none;
}
}

/*PC 兼用左右パディングbox*/
.box{
	padding:0 40px;
}

@media screen and (max-width: 959px) {
	.box{
	padding:0 20px;
}
/*スマホのみ左右パディングbox*/
.sp-box{
	padding:0 10px;
	box-sizing:border-box;
}
}
a.jump_point {
	height: 1px;
	display: block;
	padding-top: 50px;
	margin-top: -50px;
	}

/* よく使いそうなCSS3
----------------------------------------------------*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;
}



/*印刷用*/

@media print {
	html,body{
		zoom:0.84;
	} 
}
