@charset "UTF-8";

/* CSS Document */

/*==================================================

container
=================================================*/

html {
	background: #ffffff;
}
body {
    position: relative;
    left: 0;
}

.en{
	font-family: 'Fjalla One', sans-serif;
}

img {
width:100%;
max-width: 100%;
height: auto;
}

.tC{
	text-align: center;
}
.tS{
	font-size: 80%;
}
.mwh{
	max-width: 460px;
	margin: 0 auto;
}
.mw6{
	max-width: 600px;
	margin: 0 auto;
}
.selector {
  font-feature-settings: "palt";
}
#wrapper {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}


/*==================================================

header
=================================================*/

/* -------------------------------- 

Main components 

-------------------------------- */
html, body {
  height: 100%;
}

header {
	position: fixed;
	z-index: 30;
	width: 100%;
	height: 70px;
	top: 0;
	left: 0;
}

header .logo {
  display: block;
	text-align: left;
	margin: 0;
	width: 40%;
	height: 45px;
	max-width: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
}
header .logo img{
	width: 100%;
}

nav{
	display: none;
}

/** メニュー開閉ボタン */
.navopen {
	position: fixed;
	top: 0px; right: 0px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin: auto;
	background: #22274c;
	transition: 0.2s;
	z-index: 100;
}
.navopen:hover {
	background: #ddd;
}

.navopen .icon {
	display: block;
	position: relative;
	width: 40%;
	height: 2px;
	border-radius: 2px;
	background: #347bc4;
}

.navopen .icon {
	display: block;
	position: relative;
	width: 40%;
	height: 3px;
	border-radius: 2px;
	background: #fff;
}
.navopen .icon::before,
.navopen .icon::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 3px;
	border-radius: 2px;
	background: #fff;
	transition: top 0.2s, transform 0.2s;
}
.navopen .icon::before { top: -10px; }
.navopen .icon::after { top: 10px; }

.navopen.active .icon { height: 0; }
.navopen.active .icon::before { top: 0; transform: rotate(45deg); }
.navopen.active .icon::after { top: 0; transform: rotate(-45deg); }

/** ナビ */
    nav {
        display: block;
        width: 350px;
        position: fixed;
        top: 70px;
        right: 0px;
        bottom: 5px;
        perspective: 1000px;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 1000;
        pointer-events: none;
    }
    nav.active {
        opacity: 1;
        pointer-events: all;
    }
    nav .navinner {
        width: 100%;
        height: 100%;
        padding: 30px;
        color: white;
        background: rgba(34,39,76,0.9);
        font-size: 16px;
        font-weight: 300;
        transform: rotateY(90deg);
        transform-origin: right center;
        transition: transform 0.3s;
    }
    nav.active .navinner {
        transform: none;
    }
    nav li ul {
        display: none;
		overflow: hidden;
    }
    nav li ul li {
		overflow: hidden;
    }

 nav li a {
        display: block;
        position: relative;
        padding: 15px 15px;
        line-height: 1.7;
		color: #fff;
    }
    nav li ul li.harf{
	width: 50%;
		float: left;
    }
nav li.nave a{
	background: #f49c00;
	/*width: 44%;*/
	width: 96%;
	margin: 10px 3% 0;
	float: left;
}
	nav li a:not(.expand)::before {
		content: "";
		display: block;
		position: absolute;
		top: 1px; right: 10px; bottom: 0;
		width: 10px;
		height: 10px;
		margin: auto;
		border-top: 2px solid white;
		border-right: 2px solid white;
		transform: rotate(45deg);
	}
	nav li a.expand::before {
		content: "";
		display: block;
		position: absolute;
		top: 1px; right: 5px; bottom: 0;
		width: 12px;
		height: 2px;
		margin: auto;
		background: white;
	}
	nav li a.expand::after {
		content: "";
		display: block;
		position: absolute;
		top: 1px; right: 10px; bottom: 0;
		width: 2px;
		height: 12px;
		margin: auto;
		background: white;
	}
    nav li a.expand + ul {
        display: block;
        position: absolute;
        top: 0; right: 350px; bottom: 0;
        padding: 20px 30px;
        width: 350px;
		background: rgba(0, 75, 129, 0.80);
        transform: rotateY(90deg);
		transform-origin: right center;
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
    }
    nav li a.expand.active + ul {
        opacity: 1;
        transform: none;
        visibility: visible;
    }
    nav li a.expand + ul li {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.2s 0.2s;
		font-size: 0.9em;
    }
    nav li a.expand.active + ul > * {
        opacity: 1;
        transform: none;
    }
	nav li a:hover {
		background-color: rgba(255,255,255,0.15);
	}
	nav li a.expand.naventry:hover {
		background: rgba(250, 191, 27, 0.80);
	}
/*	nav li a.back {
		display: none;
	}*/
	nav li a:not(.expand).back::before {
		left: 10px;
		right: auto;
		transform: rotate(-135deg);
	}

		nav li a.back {
			display: block;
			margin-top: 20px;
			padding: 5px 30px;
		}


@media (max-width: 767px) {
header {
	position: fixed;
	z-index: 30;
	width: 100%;
	top: 0;
	left: 0;
	height: 65px;
	background: #22274c;
}
header .logo {
  display: block;
	text-align: left;
	margin: 0;
	width: 45%;
	height: 65px;
	max-width: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
}
header .logo img{
	width: 100%;
}
	
		.navopen {
			width: 60px;
			height: 60px;
		}
.hnave{
	display: none;
}
.hnavm{
	display: none;
}
	
        nav {
            width: calc(100% - 10px);
        }
        nav .navinner {
            padding: 10px;
        }
        nav li a.expand + ul {
            left: 35px;
            width: calc(100% - 35px);
		background: rgba(0, 75, 129, 1);
            z-index: 150;
        }
		nav li a.back {
			display: block;
			margin-top: 20px;
			padding: 5px 30px;
		}
	}


/*==================================================

table
=================================================*/

.fColRed {
	color: #F00;
}
table{
	width: 98%;
	margin: 0px auto;
}

table th,
table td{
	padding: 5px ;
}
table th{
	white-space: nowrap;
	font-weight: normal;
}
table td{
	line-height: 1.6em;
}

/*==================================================

footer
=================================================*/

.pagetop {
	width: 60px;
	height: 60px;
	right: 10px;
	bottom:20px;
	position: fixed;
	z-index: 11;
}

footer {
  padding: 10px;
  color: #fff;
  font-size: 14px;
	background: #22274c;
	position: relative;
	
}
.footerIn{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto;
}
footer .footerIn .footerlogo {
  width: 35%;
	margin: 0 auto;
  padding: 0;
  text-align: left;
	font-weight: 600;
}
footer .footerLink {
  position: relative;
  overflow: hidden;
	width: 65%;
	display: flex;
	justify-content: flex-end;
	flex-wrap:wrap;
}

footer .footerLink a {
  color: #fff;
	text-align: left;
}
footer .copy {
  margin: 30px auto 0px;
  text-align: center;
  font-size: 11px;
	color: #fff;
}

.footerIn .comLink{
	display: block;
	margin: 10px;
}
.footerIn .comLink a{
    position: relative;
    display: inline-block;
    padding: 10px 10px 10px 30px;
    color: #22274c;
    vertical-align: middle;
    text-decoration: none;
	line-height: 1.0em;
	font-size: 1.4rem;
	border: 1px solid #22274c;
}
.footerIn .comLink a::before{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 13px;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 2px solid #22274c;
    border-right: 2px solid #22274c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.footerIn .copy{
	font-size: 12px;
	margin: 10px 10px;
}
@media print, screen and (min-width:1px) and (max-width: 960px) {

	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
	
	
footer .footerIn .footerlogo {
  width: 100%;
	margin: 0 auto;
  padding: 0 20px;
}
footer .footerLink {
  position: relative;
  overflow: hidden;
	margin-left: 0;
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: flex-start;
	flex-wrap:wrap;
}

}

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


	/*==================================================
	
	table
	==================================================*/
	

	/*==================================================
	
	footer
	=================================================*/

footer .footerLink ul {
  padding: 0px 5px 5px;
	width: 50%;
}
footer .footerLink ul ul{
	width: 100%;
}		
footer .footerIn .footerlogo {
  width: 100%;
	margin: 0 auto;
  padding: 0 10px;
}
}

@media only screen and (min-width:1px) and (max-width: 480px) {
	
	
	/*==================================================
	
	header
	==================================================*/

	
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/

	
	/*==================================================
	
	table
	==================================================*/
	
table{
	width: 98%;
	margin: 0px auto;
}
table th,
table td{
	width: 100%;
	display: block;
	padding: 5px 10px;
	text-align: left;
	line-height: 1.6em;
	font-size: 1.4rem;
}
	
	/*==================================================
	
	footer
	==================================================*/
	.pagetop {
	width: 30px;
	height: 30px;
	right: 10px;
	bottom:50px;
	position: fixed;
	z-index: 11;
}
	
footer .footerLink {
	display: none;
}
	
.footerIn .copy{
	font-size: 11px;
	margin: 0px 10px;
}
}


@media print{
	header,.navopen{
		position: absolute;
	}
	
}