@charset "utf-8";

* {
	box-sizing: border-box;
	word-break: break-all;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	min-width: 1200px;
	color: #333;
	line-height: 1.8;
	text-align: justify;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	letter-spacing: 1px;
}
::selection {
  background: #d6e9ff;
}
::-moz-selection {
  background: #d6e9ff;
}
.center{text-align:center;}
/*---------------------------------------------
	clearfix
---------------------------------------------*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix {
	zoom: 1;
}


/* header
------------------------------------------------------------*/
header {
	width: 100%;
	padding: 18px 2%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	transition: .3s;
	z-index: 100;
	background: rgba(255, 255, 255, 0.8);
}
header .logo {
	display: inline-block;
}
header .logo img {
	transition: .3s;
}
header.scroll {
	background: rgba(255, 255, 255, 0.5);
	padding: 15px 3%;
}
header.scroll .logo img {
	max-width: 200px;
}

/* nav
------------------------------------------------------------*/
nav.pc-menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
nav.pc-menu ul li:not(:last-of-type) {
	margin-right: 2.5vw;
}
nav.pc-menu ul li a {
	font-size:18px;
	font-weight:bold;
	color: #4148d7;
	display: inline-block;
	text-decoration: none;
	position: relative;
}
nav.pc-menu ul li a::before {
	content: "";
	width: 0;
	height: 1px;
	background: #fff;
	display: block;
	position: absolute;
	top: calc(100% + 5px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: .3s;
}
nav.pc-menu ul li.ac a::before,
nav.pc-menu ul li a:hover::before {
	width: 100%;
}
/* スマホメニューここから */
#drawer {
	display: none;
}
.sp-mbox label {
	cursor: pointer;
	position: fixed;
}
.open-dra {
	z-index: 1000;
	top: 17px;
	right: 17px;
	width: 48px;
	height: 48px;
	border-radius: 48px;
	background: #01017f;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open-dra::before,
.open-dra::after {
	content: "";
}
.open-dra span,
.open-dra::before,
.open-dra::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid white;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open-dra::before {
	transform: translateY(-8px);
}
.open-dra::after {
	transform: translateY(8px);
}
.close-dra {
	z-index: 1;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}
#drawer:checked + .open-dra {
	background: rgba(0,38,81,.3);
	transform: translateX(-280px);
}
#drawer:checked + .open-dra span {
	transform: scaleX(0);
}
#drawer:checked + .open-dra::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open-dra::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close-dra {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.menu-dra {
	z-index: 1000;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(0,38,81,.8);
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-dra h2 {
	color: white;
	font-family: "Ubuntu Condensed", sans-serif;
	font-weight: 400;
	letter-spacing: .1em;
	text-align: center;
}
.menu-dra ul {
	margin: 0;
	padding: 0;
}
.menu-dra li {
	line-height: 1.4;
}
.menu-dra li:not(:first-child) {
	border-top: 1px solid rgba(255,255,255,.6);
}
.menu-dra a {
	display: block;
	padding: 1em 2em;
	color: white;
	text-decoration: inherit;
	transition: background .6s;
}
.menu-dra a:hover {
	background: #fff;
    color: #333;
}
#drawer:checked ~ .menu-dra {
	transform: none;
}

/* アコーディオンメニュー */
.menu-dra .ac-menu-inside a{
	padding:10px;
}
.ac-menu:last-child {
  margin-bottom: 60px;
}
.ac-menu input {
  display: none;
}
.ac-menu label {
  color: #fff;
  padding: 1em 2em;
  cursor: pointer;
  position: relative;
  display: block;
}
.ac-menu label:after {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
  content: "＋";
}
.ac-menu input:checked ~ label::after {
  content: "−";
}
.ac-menu div {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
}
.ac-menu input:checked ~ div {
  height: auto;
  opacity: 1;
  padding: 20px;
}
.ac-menu-inside {
  color: #333;
  font-size: 17px;
  line-height: 2;
}
/* スマホメニューここまで */

/* footer
------------------------------------------------------------*/
footer {
	background:#f7f9fd;
	padding: 20px 0;
	text-align: center;
}
.f-inner{
	max-width:1000px;
	margin:0 auto;
	padding:0 10px;
}
.f-inner nav{
	float:left;
}
.f-inner nav ul{
	display:block;
	float:left;
	margin-left:10px;
}
.f-inner li{
	text-align:left;
	margin-top:20px;
	height:30px;
}
.f-inner li a{
	color:#333;
}
.f-inner li a:hover{
	text-decoration:underline;
}
.f-inner li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.f-inner li a:hover::after {
  transform: scale(1, 1);
}
.f-btm{
	float:right;
}
.f-logo{
	margin:0 auto;
}
.f-info{
	text-align:left;
	margin-top:40px;
}
.f-info dt, .f-info dd{
	float:left;
}
.f-info dd:before{
	content:"：";
}
.f-info dt{
	width:85px;
}
.dli-caret-down {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.64952em 0.375em;
  border-top-color: currentColor;
  border-bottom: 0;
  margin-right:3px;
  margin-bottom:3px;
}
@media screen and (max-width:1200px){
	body{
		min-width:auto;
	}
	header.scroll .logo img {
		max-width: 180px;
	}
}
@media screen and (max-width:1080px){
	header h1 {
		width:32%;
	}	
}
@media screen and (max-width:950px){
	nav.pc-menu ul li a {
		font-size: 16px;
	}
	header h1 {
		width:28%;
	}
}
@media screen and (min-width: 801px){
	#bottom-menu, .sp-mbox{display:none;}
}
@media screen and (max-width:800px) {
	
	* {
		-webkit-appearance: none;
	}
	body {
		min-width: inherit;
		line-height: 1.5;
		letter-spacing: 0;
	}
	/* header
	------------------------------------------------------------*/
	header {
		background: rgba(255, 255, 255, 0.5);
		padding: 15px 3%;
		display:block;
		position:unset;
	}
	header .logo img {
		max-width: inherit;
		height: 60px;
	}
	/* nav
	------------------------------------------------------------*/
	nav.pc-menu ul {
		display: none;
	}
	/* 下部固定メニュー */
	#bottom-menu{
		position: fixed;
		bottom:0;
		width: 100%;
		height: 60px;
		background:rgba(0,38,81,0.9);
		left: 0;
		z-index:100;
	}
	#bottom-menu.fixed{
		display:block;
	}
	#bottom-menu li{
		float:left;
		width:25%;
		border-right:1px solid #ccc;
		box-sizing:border-box;
	}
	#bottom-menu li:last-child{border-right:none;}
	#bottom-menu li a{
		color:#fff;
		font-weight:bold;
		font-size:10px;
		text-align:center;
		height: 60px;
		display: block;
		padding-top:8px;
	}	

	/* footer
	------------------------------------------------------------*/
	.f-inner{
		padding-bottom:30px;
	}
	.f-inner nav, .f-btm{
		float:none;
	}
	.f-inner nav{
		width:315px;
		margin:0 auto;
	}
	.f-inner li:before{margin-right:5px;}
	nav ul li:not(:last-of-type){
		margin-right:10px;
	}
	.f-logo{margin-top:20px;}
	.f-info{
		margin-bottom:30px;
	}
	.f-info dt {width: 65px;}
	.f-info dl{
		width:318px;
		margin:0 auto;
	}
	.f-info dd{font-size:14px;}
}
@media screen and (max-width:400px) {
.f-inner li a{
	font-size:14px;
	}
}
