@charset "UTF-8";
/* CSS Document */
.goup
	{
	position: fixed;
	bottom:5%;
	right: 2%;
	height: 60px;
	width: 60px;
	cursor: pointer;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
	z-index: 9999;
	}

/********* ボタンの装飾 *********/
.button_container
	{
	position: fixed;
	top: 3%;
	right: 4%;
	height: 35px;
	width: 45px;
	cursor: pointer;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
	z-index: 9999;
	display: none;
	}
	
.button_container:hover
	{
	opacity: .7;
	}
	
.button_container.active .top
	{
	-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: #3d5778;
	}
	
.button_container.active .middle
	{
	opacity: 0;
	background: #3d5778;
	}
	
.button_container.active .bottom
	{
	-webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: #3d5778;
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth1280(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 1280px) {
 /* ************** */
.button_container
	{
	top: 22px;
	right: 2%;
	height: 27px;
	width: 35px;
	}
 /* *************** */
	}
	
	
/* ▼▼▼▼▼▼▼▼MaxWidth1024(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 1024px) {
 /* ************** */
.button_container
	{
	top: 19px;
	right: 2%;
	height: 27px;
	width: 35px;
	}
 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth768(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 768px) {
 /* ************** */
.button_container
	{
	top: 30px;
	right: 2.2%;
	height: 30px;
	width: 35px;
	display: block;
	}
 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth640(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 640px) {
 /* ************** */
.button_container
	{
	top: 15px;
	right: 2.2%;
	height: 27px;
	width: 38px;
	}
 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth580(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 580px) {
 /* ************** */
.button_container
	{
	top: 12px;
	}
 /* *************** */
	}
/* ▼▼▼▼▼▼▼▼MaxWidth640(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 480px) {
 /* ************** */
.button_container
	{
	top: 15px;
	right: 2.4%;
	height: 27px;
	width: 38px;
	}
 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth420(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 420px) {
 /* ************** */
.button_container
	{
	top: 12px;
	}
 /* *************** */
	}

/* ▼▼▼▼▼▼▼▼MaxWidth375(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 375px) {
 /* ************** */
.button_container
	{
	top: 10px;
	right: 3.5%;
	height: 27px;
	width: 38px;
	}
 /* *************** */
	}
	
	
/* ボタンの線の装飾 */
.button_container span
	{
	background: #6198f3;/* 線の色 */
	border: none;
	height: 4px;/* 線の幅 */
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;/* 線が変化するスピード*/
	transition: all .35s ease;
	cursor: pointer;
	}
	
.button_container span:nth-of-type(2)/* 上から2番目の線の位置*/
	{
	top: 11px;
	}
	
.button_container span:nth-of-type(3)/* 上から3番目の線の位置*/
	{
	top: 22px;
	}
	
	
/* ▼▼▼▼▼▼▼▼MaxWidth375(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 375px) {
 /* ************** */
.button_container span
	{
	height: 2px;/* 線の幅 */
	}
 /* *************** */
	}


/********* メニューの装飾 *********/
/* .openクラスが付与される前は「height0」で隠す */
.overlay
	{
	position: fixed;
	background: #fff;/* メニューの背景色 */
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
	z-index: 9998;
	}

/* .openクラスが付与で高さを100%に */
.overlay.open
	{
	opacity: .9;
	visibility: visible;
	height: 100%;
	}

/* 以下、メニューの中身*/
.overlay.open li
	{
	-webkit-animation: fadeInRight .5s ease forwards;
	animation: fadeInRight .5s ease forwards;
	-webkit-animation-delay: .35s;
	animation-delay: .35s;
	}
/* メニューを上からヌルヌル出したいときは順番に以下を指定
.overlay.open li:nth-of-type(2)
	{
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	}
	
.overlay.open li:nth-of-type(3)
	{
	-webkit-animation-delay: .45s;
	animation-delay: .45s;
	}
	
.overlay.open li:nth-of-type(4)
	{
	-webkit-animation-delay: .50s;
	animation-delay: .50s;
	}
*/

/* 元々のCSS
	
.overlay nav
	{
	position: relative;
	height: 70%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 1.8rem;
	font-weight: 200;
	text-align: center;
	}
	
.overlay ul
	{
	padding: 0;
	margin: 0 auto 0;
	display: inline-block;
	position: relative;
	height: 100%;
	}
	
.overlay ul li
	{
	display: block;
	height: 25%;
	height: calc(100% / 4);
	min-height: 50px;
	position: relative;
	opacity: 0;
	}
	
.overlay ul li a
	{
	display: block;
	position: relative;
	color: #FFF;
	text-decoration: none;
	overflow: hidden;
	}
	
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after
	{
	width: 100%;
	}
	
.overlay ul li a:after
	{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 3px;
	background: #FFF;
	-webkit-transition: .35s;
	transition: .35s;
	}	
*/

.overlay nav
	{
	height: 100%;
	max-width: 1280px;
	margin:0 auto 0;
	}
	
.overlay ul
	{
	padding:12% 10% 16%;
	margin: 0 auto 0;
	height: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	overflow-y: scroll;
	}
	
.overlay ul li
	{
	width: 100%;
	margin:1% 0 1%;
	opacity: 0;
	}
	
.overlay ul li a
	{
	display: block;
	padding:1% 1% 1% 2%;
	border-bottom: solid 1px #3d5778;
	font-size: 2rem;
	font-weight: 300;
	line-height: 280%;
	text-align:justify;
	color: #3d5778;
	text-decoration: none;
	}
	
.overlay ul .li01
	{
	display:none;
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth1280(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 1280px) {
 /* ************** */
.overlay nav
	{
	max-width: 100%;
	}
	
.overlay ul
	{
	padding:12% 10% 12%;
	}
	
.overlay ul li
	{
	width: 48%;
	margin:1% 0 1%;
	}
	
.overlay ul li a
	{
	padding:1% 1% 1% 2%;
	border-bottom: solid 1px #3d5778;
	font-size: 1.6rem;
	line-height: 280%;
	}
 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth960(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 960px) {
 /* ************** */	
.overlay ul
	{
	padding:10% 10% 10%;
	}
	
.overlay ul li
	{
	width: 100%;
	margin:0 auto 2%;
	}
	
.overlay ul li a
	{
	padding:2%;
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 280%;
	}
 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth960(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 640px) {
 /* ************** */
.overlay ul
	{
	padding:18% 2% 18%;
	}
	
.overlay ul li
	{
	margin:0 auto 3%;
	}

.overlay ul li a
	{
	padding:2%;
	line-height: 320%;
	}
 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth960(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 480px) {
 /* ************** */
.overlay ul li a
	{
	font-size: 1.2rem;
	text-align:justify;
	}
	
.overlay ul .li01
	{
	margin:4% 0 0 0;
	padding:2% 5% 4%;
	display:block;
	width: 46%;
	border-bottom: none;
	}
	
.overlay ul .li01 img
	{
	margin:0 10% 0;
	padding:0 0 6%;
	width: 80%;
	border-bottom: none;
	}
 /* *************** */
	}

@-webkit-keyframes fadeInRight
{
0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}


