@charset "utf-8";
/* CSS Document */

/***　フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900
font-family: brother-1816, sans-serif;  

英字
font-family: brother-1816, sans-serif;
***/

/*** 色 ****/
/*
赤：#e7191d
青：#023b94
紺：#01164b
*/

/******************************************

　共通

******************************************/


/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********リンク********/
a{ color:#e7191d;}
a:hover{ color: #e7191d;}


a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}

.point {color:#e7191d;}

/*.point2 {
    color:#d22521;
    font-width:900;
}*/

/********　　********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.caution {
	font-size: 0.9em;
	text-align: left;
}

.caution li{
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.8;
}

.pack {display: inline-block;}
.pk {display: inline-block;}

/********改行********/

.res {
	display: none;
}

.res2 {
	display: none;
}

.res3 {
	display: none;
}

.res4 {
	display: none;
}

.res_pc {
	display: inline;
}


@media screen and (max-width: 768px){

    .res {
        display: inline;
    }

}


@media screen and (max-width: 414px){

    .res2 {
        display: inline;
    }

	.res_pc {
		display: none;
	}
	

}


@media screen and (max-width: 375px){

    .res3 {
        display: inline;
    }

}

@media screen and (max-width: 320px){

    .res4 {
        display: inline;
    }

}

/******************************************
　構造
******************************************/

html {  
    overflow-y:scroll;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
    -webkit-text-size-adjust: none;    
}  

body{
    overflow: hidden;
	margin: 0;
	padding: 0;
	background: #01164b;
	font-size: 18em;
	line-height:2;
	color: #fff;
font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;


}    	

body:before{
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
	background-image: url(../images/bg_pc.jpg);
	background-position:top center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: cover;	
	background-color: #01164b;
}

body.index:before{
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
	background-image: url(../images/bg_pc_index.jpg);
	background-position:top center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: cover;	
	background-color: #01164b;
}

@media screen and (max-width: 1045px) {

	body{}
	
	body:before{
	}	
	
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}
}

@media screen and (orientation: portrait) { /**　画面が縦長の時　**/
    body:before{
        position: fixed;        
    	background-image: url(../images/bg_smp.jpg);    
    	background-position:top center;    
        background-size: auto;	
		-webkit-transform: translate3d(0, 0, 0);
    }
    body.index:before{
        position: fixed;        
    	background-image: url(../images/bg_smp_index.jpg);    
    	background-position:top center;    
        background-size: cover;	
		-webkit-transform: translate3d(0, 0, 0);
    }
}

.wrap {
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
    padding: 1em;
	padding-bottom: 140px;/*フッター固定用*/
	text-align: center;
overflow: hidden;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
/*    border-top: 5px solid #500017;*/
}

@media screen and (orientation: portrait) { 
    .wrap{
        animation: fadeIn 1s ease 0s 1 normal;
        -webkit-animation: fadeIn 1s ease 0s 1 normal;
    }
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.main{
	margin: 20px auto 0;
	text-align: center;
	word-wrap: break-word;
}

@media screen and (max-width: 1024px) {
    .main{
        margin: 0 auto;
        }
	.index .main {
		margin: 20px auto 0;
	}
}

@media screen and (max-width: 768px) {
    .main {
    padding: 0 10px;
    }
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
    .main {
    padding: 0;
    }    
}

/*******************************************
	フッター
********************************************/

.foot_link {
    margin-top: 2em;
}

.foot_link a {
    color: #fff;
    text-decoration: none;
}

footer{
	width: 100%;
	margin: 20px auto 0;
    padding-bottom: 1em;
	text-align: center;
	font-size: 14rem;
    font-weight: 500;

position: absolute;/*←絶対位置*/
    bottom: 0;
}

footer .copy {
    color: #fff;
/*	background: #04020f;*/
}
footer .copy .lbl {
    display: inline-block;
    margin: 0 0.5em;
}
footer .copy .name {
    display: inline-block;
    margin: 0 0.5em;
}

@media screen and (max-width: 768px) {
    footer .copy {
        font-size: 0.8em;
    }
}
@media screen and (max-width: 380px) {
    footer .copy .lbl {
        display: block;
    }
    footer .copy {
        margin: 0 auto;
    }
}

footer .policy_link {
	margin: 1em auto 0;
}

footer .policy_link li {
	display: inline-block;
	margin: 0 auto 1em;
}

footer .policy_link li:not(:last-of-type)::after {
	content: "｜";
	margin: 0 0.5em;
}

footer .policy_link li a {
	text-decoration: none;
	color: #fff;
	font-size: 16rem;
	font-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}

/****　ページトップへ戻る　****/

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #e7191d;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}
@media screen and (max-width: 1024px) {

}

/******** 見出し ********/

.heading_page {
    margin: 0 auto 1em;
    padding: 0 0.5em;
    font-size: 30rem;    
	color: #01164b;
	line-height: 1.3;
}


@media screen and (max-width: 414px){

	.heading_page {    
		font-size: 28rem;
	}
  
}
/*** 色 ****/
/*
赤：#e7191d
青：#023b94
紺：#01164b
*/
.box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2em;
    background: #fff;
    border-radius: 5px;
    color: #000;
}

@media screen and (max-width: 414px){
    .box {
        padding: 1.5em 1em;
    }
  
}
.list {}

.list > dt {
    padding: 0.5em 1em;
    background: #01164b;
    color: #fff;
    font-size: 1.1em;
    line-height: 1.5;
    text-align: left;
}

.list > dd {
    padding: 1em 1em 2em;
    text-align: left;
}

@media screen and (max-width: 414px){
  
}

.list .timetable table {
    width: 100%;
    margin: 0 auto;
    table-layout: fixed;
}
.list .timetable table:first-child {
    margin-bottom: 1em;
}
.list .timetable th,
.list .timetable td {
    padding: 0.5em 1em;
    border: 1px solid #000;
    text-align: center;
}

.list .timetable th {
    background: #eee;
    font-weight: 500;
}


.list .timetable .all {
    font-size: 1.1em;
    text-align: right;
}

.list .timetable .caution {    
}

.list2 {}

.list2 dt {
}
.list2 dd {}
.list2 dd:not(:last-of-type){
    margin-bottom: 1em;
}
.list2 dd .caution {
    margin-top: 1em;
}

.support .list2 {
    margin-top: 1em;
}


