@charset "UTF-8";

/* CSS Document */

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

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

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

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

.tC{
	text-align: center;
}
.tS{
	font-size: 86%;
}
.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 .logo {
  display: block;
	text-align: center;
	padding: 20px 10px 10px;
	margin: auto;
	width: 35%;
	max-width: 180px;
}
header .logo img{
	width: 100%;
}

@media (min-width: 980px) {
.headcontent{
	margin: auto;
	z-index: 100;
	transition: .5s;
}	

.headcontent header .logo{
	display: none;
}	
.headcontent.clone-nav {
  position: fixed;
  top: 0;
	left: 0;
	right: 0;
  z-index: 2;
  width: 100%;
  transition: .3s;
  transform: translateY(-100%);
}
.headcontent.is-fixed { 
	transform: translateY(0);
}
nav{
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	max-width: 970px;
	margin: 20px 3% 30px auto;
	z-index: 100;
	position: relative;
	z-index: 100;
}
nav > .navinner > ul{
	display: flex;
	justify-content: center;
    height: 2rem;
}
nav > .navinner > ul > li{
	width: 20%;
	text-align: center;
	font-family: 'Hind', sans-serif;
} 

nav ul li ul{
	/*display: none;*/
	/*font-family: 'Shippori Mincho', serif;*/
	font-size: 1.3rem;
	letter-spacing: 0em;
	font-weight: 200;
	width: 120%;
	margin-left: -10%;
}
	nav ul li a{
		display: block;
		padding: 0 10px;
		color: #fff;
	}
	nav ul li ul li a{
		padding: 15px 0px;
		color: #000;
	}
	
nav ul li a:hover {
	opacity: 0.5;
	text-decoration: none;
}
nav ul li ul li{
    height: 0em;
    overflow: hidden;
    transition: .5s;
	}
	
nav ul li:hover > ul > li {
    height: 3.0em;
    overflow: visible;
}
nav ul li:hover > ul > li {
    overflow: visible;
	background: rgba(255,255,255,0.7);
}
	nav ul li .back{
		display: none;
	}	

	.headcontent.is-fixed {
		background: #fff;
	border-bottom:1px solid #111;
	z-index: 100;
	}
.headcontent.is-fixed header .logo {
  display: block;
	text-align: center;
	padding: 0px 10px;
	margin: auto;
	width: 35%;
	max-width: 120px;
	position: absolute;
	left: 20px;
	top: 10px
}
.headcontent.is-fixed nav{
	width: 85%;
	max-width: 960px;
	margin: 10px auto 30px 15%;
	font-weight: 400;
	font-size: 1.3rem;
}
.headcontent.is-fixed nav ul li a{
		color: #000;
	}
}



@media (max-width: 980px) {

header {
	position: fixed;
	z-index: 30;
	width: 100%;
	top: 0;
	left: 0;
	background: #fff;
}
header .logo {
  display: block;
	text-align: center;
	padding: 15px 10px;
	margin: auto;
	width: 30%;
	max-width: 160px;
}
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: rgba(0,0,0,0.7);
	transition: 0.2s;
	z-index: 100;
}
.navopen:hover {
	background: #ddd;
}

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

.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: 20px;
        color: white;
        background: rgba(0,0,0,0.9);
        font-size: 15px;
        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 12px;
        line-height: 1.5;
		color: #fff;
    }
 nav li span {
        position: relative;
        padding: 15px 12px;
        line-height: 1.5;
		color: #fff;
    }

	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,0,0,0.9);
        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.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 .logo {
  display: block;
	text-align: center;
	padding: 8px 10px;
	margin: auto;
	width: 28%;
	max-width: 120px;
}
header {
	position: fixed;
	z-index: 30;
	width: 100%;
	top: 0;
	left: 0;
	height: 60px;
}
		.navopen {
			width: 60px;
			height: 60px;
		}


nav {
        width: calc(100% - 10px);
        top: 60px;
        }
        nav .navinner {
            padding: 10px;
        }
        nav li a.expand + ul {
            left: 35px;
            width: calc(100% - 35px);
        background: rgba(0,0,0,0.9);
            z-index: 150;
        }
		nav li a.back {
			display: block;
			margin-top: 20px;
			padding: 5px 30px;
		}
	
	
	}


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

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

.fColRed {
	color: #F00;
}
table{
	width: 96%;
	margin: 20px auto 50px;
}

table th,
table td{
	padding: 20px 25px;
	vertical-align: top;
	text-align: left;
}
table th{
	white-space: nowrap;
	font-weight: normal;
	letter-spacing: 0.1em;
	width: 120px;
		
}
table td{
	letter-spacing: 0.05em;
	line-height: 1.7em;
}
table tr:nth-child(2n){
	background: #f6f8f8;
}
table td dl{
	overflow: hidden;
}
table td dl dt{
	width: 240px;
	float: left;
	font-size: 0.9em;
	clear: both;
}
table td dl dd{
	margin-left: 240px;
}

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

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

.pagetop {
	width: 53px;
	height: 53px;
	right: 0px;
	bottom:0px;
	position: fixed;
	z-index: 11;
	background: rgba(0,0,0,0.5);
}
.pagetop img{
	width: 80%;
	margin: 10%;
}

footer {
  margin: 0;
  padding: 20px 10px;
  color: #111;
  font-size: 16px;
	background: #f6f8f8;
	border-bottom:3px solid #000;
	
}
footer .footerIn{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto;
}
footer .footerIn .fnav {
  width: 25%;
	margin: 0 auto;
  padding: 0;
  text-align: left;
}
footer .footerIn .fnav ul {
  position: relative;
  margin: 0;
  padding: 0px 10px 25px;
}
footer .footerIn .fnav ul ul{
  padding: 0px 0px 5px;
}
footer .footerIn .fnav ul li {
  position: relative;
  list-style: none;
  text-align: left;
  padding: 0;
	font-size: 14px;
}
footer .footerIn .fnav ul ul li{
  padding: 0;
	font-size: 13px;line-height: 2.0em;
  padding: 0 0 0 10px;
}
footer .footerIn .fnav ul li a {
  color: #111;
	text-align: left;
}

.copy {
  margin: 10px auto;
  text-align: center;
  font-size: 11px;
	color: #aaa;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	
}


@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
	==================================================*/
	
table{
	width: 96%;
	margin: 20px auto 30px;
}
table.resp th,
table.resp td{
	width: 100%;
	display: block;
	padding: 8px 10px;
	text-align: left;
	line-height: 1.6em;
	font-size: 1.4rem;
}
table tr:nth-child(2n){
	background: none;
}
table th{
	background: #f6f8f8;
}
table td dl dt{
	font-size: 0.9em;
	width: 150px;
}
table td dl dd{
	margin-left: 150px;
}

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


footer .footerIn .fnav {
  width: 50%;
	margin: 0 auto;
  padding: 0;
  text-align: left;
}

	.copy{
		padding-bottom: 70px;
	}
	
.pagetop {
	width: 53px;
	height: 53px;
	right: 0px;
	bottom:71px;
	position: fixed;
	z-index: 11;
	background: rgba(0,0,0,0.5);
}
.pagetop img{
	width: 80%;
	margin: 10%;
}
}

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

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

	
	/*==================================================
	
	table
	==================================================*/
	
table td dl dt{
	font-size: 0.9em;
	width: 100%;
	float: none;
}
table td dl dd{
	margin-left: 20px;
}
	
	/*==================================================
	
	footer
	==================================================*/

footer .footerIn .fnav ul {
  position: relative;
  margin: 0;
  padding: 0px 5px 25px;
}	
footer .footerIn .fnav ul li {
	font-size: 13px;
}
footer .footerIn .fnav ul ul li{
	font-size: 12px;
}
	
.pagetop {
	width: 44px;
	height: 44px;
	right: 0px;
	bottom:66px;
	position: fixed;
	z-index: 11;
	background: rgba(0,0,0,0.5);
}
.pagetop img{
	width: 80%;
	margin: 10%;
}
}


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