body {
	font-size: 14px;
	width: 100%;
	height: 100%;
	font-family:
		YuMincho,
		/* Mac用 */
		'Yu Mincho',
		/* Windows用 */
		serif;
}

p {
	margin: 0;
}

* ul {
	margin: 0;
	padding: 0;
}

* li {
	list-style: none;
}

* a {
	color: #000;
}

/***************** header *****************/

header {
	/*
	position: fixed;
	top: 0;
	left: 0;
*/
	width: 100%;
	height: 100px;
	z-index: 10;
}


header .header_inner {
	display: block;
	height: 100%;
	width: 85%;
	margin: 0 auto;
	position: relative;
}

/*

header ul.menu_list {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	font-size: 16px;
}

header ul.menu_list li {
	margin-right: 20px;
}
*/

.header_logo {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-wrbkit-transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
	.page_head .header_logo {}
}

.logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.logo .logo_inner{
	width: 194px;
	height: auto;
}

.logo h1 {
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 1.5px;
}

.logo p {
	font-size: 11px;
	margin-top: 8px;
	letter-spacing: 0.5px;
}

@media screen and (min-width: 769px) {

	header {
		height: 120px;
	}


	.logo h1 {
		font-size: 30px;
	}

	.logo p {
		font-size: 14px;
	}
}



header .menu_btn {
	position: fixed;
	top: 50px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 30px;
	width: 30px;
	height: 24px;
	z-index: 100;
	cursor: pointer;
}

header .menu_btn li {
	height: 1px;
	width: 100%;
	background-color: #000;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

header .menu_btn li:nth-of-type(1){
	-webkit-transform: translateY(-9px);
	transform: translateY(-9px);
}

header .menu_btn li:nth-of-type(3){
	-webkit-transform: translateY(9px);
	transform: translateY(9px);
}

header .menu_btn:hover li:nth-of-type(1){
	-webkit-transform: translateY(-12px);
	transform: translateY(-12px);
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

header .menu_btn:hover li:nth-of-type(3){
	-webkit-transform: translateY(12px);
	transform: translateY(12px);
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

header .menu_btn li:last-of-type {
	margin-bottom: 0;
}

header.open .menu_btn li:nth-of-type(1){
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

header.open .menu_btn li:nth-of-type(2){
	opacity: 0;
}

header.open .menu_btn li:nth-of-type(3){
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

header .menu_area {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(0vh);
	background-color: transparent;
	z-index: 90;
}

header.open .menu_area {
	height: calc(100vh);
}


header .menu_area .menu_area_inner {
	position: fixed;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-color: transparent;
	-webkit-transform: translateY(-200%);
	transform: translateY(-200%);

}

header.open .menu_area .menu_area_inner {
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);

}


header .menu_area .menu_bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	-webkit-transition: 1s ease-in-out;
	transition: 1s ease-in-out;
}


header.open .menu_area .menu_bg {
	background-color: #fff;
	-webkit-filter: blur(0px);
	filter: blur(0px);
}


header .menu_area .menu_logo {
	position: absolute;
	top: 30px;
	left: 30px;
}

header .menu_area .menu_list {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

header .menu_area .menu_list li {
	font-size: 20px;
	margin-bottom: 15px;
	letter-spacing: 4px;
	overflow: hidden;
	text-align: justify;
  text-justify: inter-ideograph;
}

header .menu_area .menu_list li a {
	display: inline-block;
	-webkit-transform: translateY(-200px);
	transform: translateY(-200px);
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
  	-webkit-box-pack: justify;
  	-ms-flex-pack: justify;
  	justify-content: space-between;
}

header.open .menu_area .menu_list li:nth-of-type(1) a {
	-webkit-transition: 0.8s 0.2s ease-in-out;
	transition: 0.8s 0.2s ease-in-out;
}

header.open .menu_area .menu_list li:nth-of-type(2) a {
	-webkit-transition: 1s 0.2s ease-in-out;
	transition: 1s 0.2s ease-in-out;
}

header.open .menu_area .menu_list li:nth-of-type(3) a {
	-webkit-transition: 1.2s 0.2s ease-in-out;
	transition: 1.2s 0.2s ease-in-out;
}

header.open .menu_area .menu_list li:nth-of-type(4) a {
	-webkit-transition: 1.4s 0.2s ease-in-out;
	transition: 1.4s 0.2s ease-in-out;
}

header.open .menu_area .menu_list li:nth-of-type(5) a {
	-webkit-transition: 1.6s 0.2s ease-in-out;
	transition: 1.6s 0.2s ease-in-out;
}

header.open .menu_area .menu_list li:nth-of-type(6) a {
	-webkit-transition: 1.8s 0.2s ease-in-out;
	transition: 1.8s 0.2s ease-in-out;
}

header.open .menu_area .menu_list li:nth-of-type(7) a {
	-webkit-transition: 2s 0.2s ease-in-out;
	transition: 2s 0.2s ease-in-out;
}

header.open .menu_area .menu_list li:nth-of-type(8) a {
	-webkit-transition: 2.2s 0.2s ease-in-out;
	transition: 2.2s 0.2s ease-in-out;
}

header.open .menu_area .menu_list li a {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

header .menu_area .menu_list li:last-of-type {
	margin-bottom: 0;
}


header .menu_area .menu_company_info {
	position: absolute;
	bottom: 40px;
	left: 30px;
}

header .menu_area .menu_company_info li {
	margin-bottom: 6px;
	font-size: 12px;
	letter-spacing: 2px;
}

header .menu_area .menu_company_info li:last-of-type {
	margin-bottom: 0;
}

@media screen and (min-width: 769px) {
	
	header .menu_btn {
		top: 70px;
		right: 30px;
	}
	
	header .menu_area .menu_list {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	
	header .menu_area .menu_list li{
		-ms-writing-mode: tb-rl;
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
		font-size: 22px;
		margin: 0 15px 0;
	}
	
}



.conteiner {
	transition-property: padding-top, opacity, filter, -webkit-filter;
	-webkit-transition-duration: 0.8s;
	transition-duration: 0.8s;
	-webkit-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
}

.conteiner.open {
	opacity: 0;
	-webkit-filter: blur(2em);
	filter: blur(2em);
}



/***************** contents *****************/

.conteiner {
	/*	margin-top: 100px;*/
}

.conteiner .section .page_title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 4px;
}

.explain_text {
	line-height: 2.2em;
	letter-spacing: 4px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 40px 0 80px;
}

@media screen and (min-width: 769px) {

	.conteiner .section .page_title {
		font-size: 30px;
	}

}


/***************** fade-in animetion *****************/

.fadein {
	opacity: 0;
	-webkit-transform: translate(0, 50px);
	transform: translate(0, 50px);
	-webkit-transition: all 1500ms;
	transition: all 1500ms;
}

.fadein.scrollin {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}


/***************** footer *****************/

footer {
	width: 100%;
	height: auto;
	display: inline-block;
	padding: 20px 0;
	margin-bottom: 40px;
}

footer .footer-inner {
	width: 85%;
	margin: 0 auto;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

footer .info_menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

footer .info_menu .info_box {
	margin: 30px 0;
	line-height: 1.3em;
	letter-spacing: 1px;
}

footer .info_menu ul.menu_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

footer .info_menu ul.menu_box li {
	width: 50%;
	text-align: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-left: 1px solid #767676;
	border-right: 1px solid #767676;
	margin-bottom: 13px;
	font-size: 16px;
}

footer .info_menu ul.menu_box li a {
	padding: 4px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
	height: 100%;
}

footer .info_menu ul.menu_box li:nth-of-type(1),
footer .info_menu ul.menu_box li:nth-of-type(3) {
	border-right: none;
}

footer .copy_right {
	margin-top: 30px;
	display: inline-block;
	text-align: left;
	font-size: 12px;
}

@media screen and (min-width: 769px) {

	footer .info_menu {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		font-size: 16px;
	}

	footer .info_menu .info_box {
		letter-spacing: 2px;
		line-height: 1.5em;
	}

	footer .info_menu ul.menu_box {
		width: auto;
		margin-right: 5%;
		-ms-flex-line-pack: center;
		align-content: center;
	}


	footer .info_menu ul.menu_box li {
		width: 100px;
		border-right: none;
		margin: 0;
		font-size: 14px;
		height: 18px;
		letter-spacing: 1px;
	}

	footer .info_menu ul.menu_box li:last-of-type {
		border-right: 1px solid #767676;
	}

	footer .info_menu ul.menu_box li a {
		padding: 3px 0;
		line-height: 1em;
	}

	footer .copy_right {
		margin-top: 11px;
		letter-spacing: 1px;
	}

}


@media screen and (min-width: 769px) and (max-width: 950px) {
	footer .info_menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	footer .info_menu ul.menu_box li {
		width: 25%;
	}

	footer .copy_right {
		margin-top: 20px;
	}
}
