@charset "utf-8";
/* ------------------------------------------------------------ common */
html {
	width: 100%;
	height: 100%;
}

body {
/*
	opacity: 0;
	transition: 1s;
*/
	min-width: 1140px;
	position: relative;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background: #000;
	font-size: 16px;
	color: #fff;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 9999;
	pointer-events: none;
	right: 100%;
	-webkit-transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 9999;
	pointer-events: none;
	left: 100%;
	-webkit-transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.is-slide-in::before {
	right: 0;
}

body.is-slide::after {
	left: 0;
}

body.isHidden {
	overflow: hidden;
}

/*
body.isHidden #wrapper,
body.isHidden button {
	display: none !important;
}
*/

.inner {
	width: 1100px;
	margin: 0 auto;
}

.SP {
	display: none;
}

#wrapper {
	transition: 0s;
	overflow: hidden; 
	position: relative; 
}

#wrapper.fixed {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

/* ------------------------------------------------------------ header */
header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 50;
	width: 100%;
	min-width: 1140px;
	padding: 30px 50px;
	box-sizing: border-box;
	transition: 0.6s;
}

header .max-width {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1500px;
	margin: 0 auto;
}

header.on {
	background: linear-gradient(180deg,#0b0b0d 0,rgba(11,11,13,.2) 70%,rgba(11,11,13,0));
	transition: 0.6s;
}

header .h_logo a img {
	width: auto;
	height: 50px;
}

header .h_right .h_menu_btn {
	width: 50px;
	height: 30px;	
}

header .h_right .h_menu_btn span {
	position: relative;
	display: block;
	background: #fff;
	width: 50px;
	height: 2px;
	transition: 0.5s;
	border-radius: 10px;
}

header .h_right .h_menu_btn span::before,
header .h_right .h_menu_btn span::after {
	position: absolute;
	content: '';
	right: 0;
	display: block;
	height: 2px;
	background: #fff;
	transition: .5s;
	border-radius: 10px;
}

header .h_right .h_menu_btn span::before {
	top: 11px;
	width: 50px;
}

header .h_right .h_menu_btn span::after {
	top: 22px;
	width: 40px;
}

header #h_menu {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
/* 	min-width: 1140px; */
	height: 100%;
	background: #000;
	overflow: scroll;
}

header #h_menu #h_menu_left {
	position: relative;
	float: left;
	width: 45%;
	height: 100%;
/*
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
*/
	box-sizing: border-box;
	opacity: 1;
	transition: opacity 0.3s linear 0.1s,transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.1s,-webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
	background: url(../images/common/menu_bg_top.jpg) no-repeat center center/cover;
	background-color: #000;
}

header #h_menu #h_menu_left .h_menu_bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
	transition: opacity .2s linear;
}

header #h_menu #h_menu_left[data-label="top"] .h_menu_bg[data-label="top"] {
	opacity:1;
	background-image: url(../images/common/menu_bg_top.jpg);
}

header #h_menu #h_menu_left[data-label="people"] .h_menu_bg[data-label="people"] {
	opacity:1;
	background-image: url(../images/common/menu_bg_people.jpg);
}

header #h_menu #h_menu_left[data-label="about"] .h_menu_bg[data-label="about"] {
	opacity:1;
	background-image: url(../images/common/menu_bg_about.jpg);
}

header #h_menu #h_menu_left[data-label="recruit"] .h_menu_bg[data-label="recruit"] {
	opacity:1;
	background-image: url(../images/common/menu_bg_recruit.jpg);
}

header #h_menu #h_menu_left[data-label="company"] .h_menu_bg[data-label="company"] {
	opacity:1;
	background-image: url(../images/common/menu_bg_company.jpg);
}

header #h_menu #h_menu_left[data-label="contact"] .h_menu_bg[data-label="contact"] {
	opacity:1;
	background-image: url(../images/common/menu_bg_contact.jpg);
}

header #h_menu #h_menu_left[data-label="business"] .h_menu_bg[data-label="business"] {
	opacity:1;
	background-image: url(../images/common/menu_bg_business.jpg);
}

header #h_menu .h_menu_right {
	position: relative;
	float: right;
	width: 55%;
	height: 100%;
/*
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
*/
	padding: 200px 10%;
	box-sizing: border-box;
}

header #h_menu .h_menu_right .h_menu_close {
	position: absolute;
	top: 30px;
	right: 50px;
	border-radius: 50%;
	width: 66px;
	height: 66px;
	box-shadow: inset 0 0 0 1px #808080;
}

header #h_menu .h_menu_right .h_menu_close .circle1,
header #h_menu .h_menu_right .h_menu_close .circle2 {
	position: absolute;
	overflow: hidden;
	width: 50%;
	height: 100%;
}

header #h_menu .h_menu_right .h_menu_close .circle1 {
	left: 50%;
}

header #h_menu .h_menu_right .h_menu_close .circle1:before,
header #h_menu .h_menu_right .h_menu_close .circle2:before {
	position: absolute;
	content: "";
}

header #h_menu .h_menu_right .h_menu_close .circle1:before {
	width: 100%;
	height: 200%;
	background: #000; /* 背景色に合わせて変更してください */
	transform-origin: 0 25%;
	animation: draw 0.4s linear forwards;
}

header #h_menu .h_menu_right .h_menu_close .circle2:before {
	left: -10%;
	width: 110%;
	height: 120%;
	background: #000; /* 背景色に合わせて変更してください */
	transform-origin: 100% 40%;
	animation: draw 0.4s ease-out 0.4s forwards;
}

header #h_menu .h_menu_right .h_menu_close .cross {
	display: block;
	position: relative;
	left: 21px;
	top: 20px;
	width: 26px;
	height: 26px;
}

header #h_menu .h_menu_right .h_menu_close .cross::before,
header #h_menu .h_menu_right .h_menu_close .cross::after {
	position: absolute;
	content: "";
	top: 12px;
	left: -4px;
	width: 33px;
	height: 1px;
	background: #808080;
}

header #h_menu .h_menu_right .h_menu_close .cross::before {
	animation: rotate45 1s forwards;
}

header #h_menu .h_menu_right .h_menu_close .cross::after {
	animation: rotate135 1s forwards;
}

/* 円を描くアニメーション */
@keyframes draw {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

/* ×を描くアニメーション */
@keyframes rotate45 {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(45deg); }
}

@keyframes rotate135 {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(135deg); }
}

header #h_menu .h_menu_right ul {
	width: 480px;
}

header #h_menu .h_menu_right ul li {
	float: left;
	width: 50%;
	overflow: hidden;
}

header #h_menu .h_menu_right ul li:nth-child(2n+1) {
	clear: both;
}

header #h_menu .h_menu_right ul li.on .en {
	position: relative;
}

header #h_menu .h_menu_right ul li.on .en::before {
	position: absolute;
	content: "";
	left: -10%;
	top: 13px;
	background: #4e4e4e;
	width: 120%;
	height: 1px;
}

header #h_menu .h_menu_right ul li a {
	position: relative;
	display: block;
	padding: 20px 0;
}

header #h_menu .h_menu_right ul li .en {
	display: inline-block;
	font-size: 30px;
	font-family: "helvetica",'Hiragino Kaku Gothic ProN',"ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","Osaka","MS PGothic","arial",sans-serif;
	font-weight: bold;
	color: #4e4e4e;
	margin: 0 0 10px;
}

header #h_menu .h_menu_right ul li .ja {
	display: block;
	font-size: 12px;
	color: #4e4e4e;
}

/* ------------------------------------------------------------ bread */
.fv {
	position: relative;
}

#bread {
	position: absolute;
	z-index: 51;
	left: 0;
	right: 0;
	top: 90px;
	margin: 20px 50px;
}

#bread .inner {
	width: auto;
	max-width: 1500px;
}

body.isHidden #bread {
	z-index: 1;
}

#bread ol li {
	display: inline-block;
	position: relative;
	padding: 0 0 0 28px;
}

#bread ol li:first-child {
	padding: 0;
}

#bread ol li::before {
	position: absolute;
	content: "";
	left: 4px;
	top: 10px;
	width: 14px;
	height: 1px;
	background: #fff;
	transform: rotate(180deg);
}

@media all and (-ms-high-contrast: none) {
	#bread ol li::before {
		top: 6px;
	}
}

#bread ol li:first-child::before {
	display: none;
}

#bread ol li a {
	font-size: 12px;
	color: #fff;
}

/* ------------------------------------------------------------ common fv smoke */

#smoke { 
	transition: 1s;
    position: absolute; 
    z-index: -1;
	right: 0;
    margin: auto;
    left: 50%;
     top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

/* ------------------------------------------------------------ dots */

#dots {
	transition: 1s;
	position: fixed; 
    z-index: -2;
	right: 0;
    margin: auto;
    left: 50%;
    top: -20%;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

/* ------------------------------------------------------------ common_contact */
#common_contact {
	width: calc(100% - 100px);
	margin: 50px auto 0;
}

#common_contact a {
	display: block;
	background: url(../images/common/contact_bg.jpg) no-repeat center center/cover;	
	padding: 50px 30px 70px;
	box-sizing: border-box;
	color: #fff;
}

#common_contact h2 {
	margin: 0 auto 35px;
	font-weight: 600;
}

#common_contact p {
	font-size: 26px;
	text-align: center;
}

#common_contact .max_wrap {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
}

#common_contact .animation_btn {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 225px;
	height: 80px;
	margin: auto 0;
}

#common_contact .animation_btn .arrow {
	position: absolute;	
	top: 45px;
	left: 0;
	display: block;
	width: 196px;
	height: 1px;
	background: #fff;
	transition: 0.3s;
}

#common_contact .animation_btn .arrow::before {
	position: absolute;
	content: "";
	right: -2px;
	top: -10px;
	width: 32px;
	height: 1px;
	background: #fff;
	transform: rotate(35deg);
}

#common_contact .animation_btn .circle {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 80px;
	height: 80px;
	border: solid 1px #fff;
	border-radius: 50%;
	box-sizing: border-box;
	transition: 0.3s;
}

@media (hover: hover), (-ms-high-contrast:none){
	#common_contact a:hover .animation_btn .arrow {
		left: 29px;
		transition: 0.3s;
	}
	
	#common_contact a:hover .animation_btn .circle {
		right: -29px;
	}
}

/* ------------------------------------------------------------ common_entry */
#common_entry {
	width: calc(100% - 100px);
	margin: 50px auto 0;
}

#common_entry a {
	display: block;
	background: url(../images/common/entry_bg.jpg) no-repeat center center/cover;	
	padding: 130px 0;
	box-sizing: border-box;
	color: #fff;
}

#common_entry h2 {
	font-size: 80px;
	font-family: "helvetica",'Hiragino Kaku Gothic ProN',"ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","Osaka","MS PGothic","arial",sans-serif;
	font-weight: bold;
	text-align: center;
	margin: 0 auto 35px;
}

#common_entry p {
	font-size: 26px;
	text-align: center;
}

#common_entry .max_wrap {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
}

#common_entry .animation_btn {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 225px;
	height: 80px;
	margin: auto 0;
}

#common_entry .animation_btn .arrow {
	position: absolute;	
	top: 45px;
	left: 0;
	display: block;
	width: 196px;
	height: 1px;
	background: #fff;
	transition: 0.3s;
}


#common_entry .animation_btn .arrow::before {
	position: absolute;
	content: "";
	right: -2px;
	top: -10px;
	width: 32px;
	height: 1px;
	background: #fff;
	transform: rotate(35deg);
}

#common_entry .animation_btn .circle {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 80px;
	height: 80px;
	border: solid 1px #fff;
	border-radius: 50%;
	box-sizing: border-box;
}

@media (hover: hover), (-ms-high-contrast:none){
	
	#common_entry a:hover .animation_btn .arrow {
		left: 29px;
		transition: 0.3s;
	}
	
	#common_entry a:hover .animation_btn .circle {
		right: -29px;
	}
}


/* ------------------------------------------------------------ footer */
footer {
	margin: 30px auto 0;
}

footer .f_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 50px 50px;
}



footer .f_left .f_logo {
	margin: 0 0 20px;
}

footer .f_left .f_logo img {
	width: auto;
	height: 50px;
}

footer .f_left .f_address {
	font-size: 12px;
	color: #4e4e4e;
	line-height: 1.8;
}

footer .f_nav a {
	display: inline-block;
	font-size: 12px;
	color: #4e4e4e;
	text-align: center;
	letter-spacing: 1px;
	margin: 0 30px 0 0;
}

footer .f_nav a:last-of-type {
	margin: 0;
}

footer .f_nav a span {
	display: block;
	font-size: 18px;
	font-family: "helvetica",'Hiragino Kaku Gothic ProN',"ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","Osaka","MS PGothic","arial",sans-serif;
	margin: 0 0 8px;
}

footer .f_right {

}

footer .f_copyright {
	display: block;
	font-size: 12px;
	text-align: center;
	color: #4e4e4e;
	border-top: solid 1px #282828;
	padding: 40px 0;
}

/* ------------------------------------------------------------ otherpage_link */
.otherpage_link {
	display: flex;
	justify-content: center;
	margin: 150px auto 0;
}

.otherpage_link a {
	width: 220px;
	margin: 0 25px;
}

.otherpage_link a h3 {
	font-size: 12px;
	color: #5b5b5b;
	margin: 0 0 15px;
}

.otherpage_link a h3 span {
	font-size: 30px;
	margin: 0 0 10px;
}

.otherpage_link a .animation_btn {
	width: 100%;
}

.otherpage_link a .animation_btn .arrow {
	background: #5b5b5b;
	width: 93%;
	top: 14px;
}

.otherpage_link a .animation_btn .arrow::before {
	background: #5b5b5b;
}

.otherpage_link a .animation_btn .circle {
	width: 24px;
	height: 24px;
	border: solid 1px #5b5b5b;
}

@media (hover: hover), (-ms-high-contrast:none){
	
	.otherpage_link a:hover .animation_btn .arrow {
		left: 13px;
	}
	
	.otherpage_link a:hover .animation_btn .circle {
		right: -4px;
	}
}

/* ------------------------------------------------------------ title */
.title1 {
	font-size: 20px;
	color: #fff;
	text-align: center;
	letter-spacing: 2px;
}

.title1 span {
	display: block;
	font-size: 80px;
	font-family: "helvetica",'Hiragino Kaku Gothic ProN',"ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","Osaka","MS PGothic","arial",sans-serif;
	font-weight: bold;
}

.title2 {
	font-size: 14px;
	color: #fff;
	text-align: center;
	letter-spacing: 2px;
	margin: 0 0 40px;
}

.title2 span {
	display: block;
	font-size: 60px;
	font-family: "helvetica",'Hiragino Kaku Gothic ProN',"ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","Osaka","MS PGothic","arial",sans-serif;
	font-weight: bold;
	margin: 0 0 8px;
}

.fv_title {
	font-size: 20px;
	color: #fff;
	text-align: center;
	letter-spacing: 2px;
}

.fv_title span {
	display: block;
	font-size: 100px;
	font-family: "helvetica",'Hiragino Kaku Gothic ProN',"ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","Osaka","MS PGothic","arial",sans-serif;
	font-weight: bold;
}

/* ------------------------------------------------------------ btn */
.animation_btn {
	position: relative;
	width: 86px;
	height: 30px;
}

.animation_btn .arrow {
	position: absolute;	
	top: 16px;
	left: 0;
	display: block;
	width: 75px;
	height: 1px;
	background: #fff;
	transition: 0.3s;
}

.animation_btn .arrow {
	left: 9px;
	transition: 0.3s;
}

.animation_btn .arrow::before {
	position: absolute;
	content: "";
	right: -2px;
	top: -4px;
	width: 12px;
	height: 1px;
	background: #fff;
	transform: rotate(35deg);
}

.animation_btn .circle {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 30px;
	height: 30px;
	border: solid 1px #fff;
	border-radius: 50%;
	box-sizing: border-box;
	transition: 0.3s;
}


.switch_btn_white {
	text-align: center;
}

.switch_btn_white a,
.switch_btn_white span {
	position: relative;
	left: -7px;
	top: -7px;
	display: inline-block;
	background: #000;
	min-width: 265px;
	padding: 25px;
	border: solid 1px #fff;
	font-size: 18px;
	font-family: "helvetica",'Hiragino Kaku Gothic ProN',"ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","Osaka","MS PGothic","arial",sans-serif;
	font-weight: bold;
	color: #fff;
	letter-spacing: 1px;
	box-sizing: border-box;
	transition: 0.3s;
}

.switch_btn_white a::before,
.switch_btn_white span::before {
	position: absolute;
	content: "";
	left: 7px;
	top: 7px;
	z-index: -1;
	width: 100%;
	height: 100%;
	border: solid 1px #fff;
	box-sizing: border-box;
	transition: 0.3s;
}

@media (hover: hover), (-ms-high-contrast:none){
	.switch_btn_white a:hover,
	.switch_btn_white span:hover {
		left: 0;
		top: 0;
		background: #fff;
		color: #000;
	}
	
	.switch_btn_white a:hover::before,
	.switch_btn_white span:hover::before {
		left: 0;
		top: 0;
	}
}


.switch_btn_black {
	text-align: center;
}

.switch_btn_black a {
	position: relative;
	z-index: 1;
	left: -7px;
	top: -7px;
	display: inline-block;
	background: rgba(0,0,0,0.9);
	min-width: 265px;
	padding: 25px;
	font-size: 18px;
	font-family: "helvetica",'Hiragino Kaku Gothic ProN',"ヒラギノ角ゴ ProN W3","Meiryo","メイリオ","Osaka","MS PGothic","arial",sans-serif;
	font-weight: bold;
	color: #fff;
	letter-spacing: 1px;
	box-sizing: border-box;
	transition: 0.3s;
}

.switch_btn_black a::before {
	position: absolute;
	content: "";
	left: 7px;
	top: 7px;
	z-index: -1;
	width: 100%;
	height: 100%;
	border: solid 1px #000;
	box-sizing: border-box;
	transition: 0.3s;
}

@media (hover: hover), (-ms-high-contrast:none){
	.switch_btn_black a:hover {
		left: 0;
		top: 0;
		background: #fff;
		color: #000;
	}
	
	.switch_btn_black a:hover::before {
		left: 0;
		top: 0;
		border: solid 1px #fff;
	}
}

/* 縦向き */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
  	header #h_menu #h_menu_left {
		background-image: url(../images/common/ipad/menu_bg_top.jpg);
	}
	footer .f_left {
		max-width: 300px;
	}
}

@media all and (device-width: 834px) and (device-height: 1112px) and (orientation:portrait) {
  	header #h_menu #h_menu_left {
		background-image: url(../images/common/ipad/menu_bg_top.jpg);
	}
	footer .f_left {
		max-width: 300px;
	}
}

@media all and (device-width: 1024px) and (device-height: 1366px) and (orientation:portrait) {
  	header #h_menu #h_menu_left {
		background-image: url(../images/common/ipad/menu_bg_top.jpg);
	}
	footer .f_left {
		max-width: 300px;
	}
}




/* 横向き */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
	header #h_menu #h_menu_left {
		background-image: url(../images/common/ipad/menu_bg_top.jpg);
	}
	footer .f_left {
		max-width: 300px;
	}
}

@media all and (device-width: 1112px) and (device-height: 834px) and (orientation:landscape) {
	header #h_menu #h_menu_left {
		background-image: url(../images/common/ipad/menu_bg_top.jpg);
	}
	footer .f_left {
		max-width: 300px;
	}
}

@media all and (device-width: 1366px) and (device-height: 1024px) and (orientation:landscape) {
	header #h_menu #h_menu_left {
		background-image: url(../images/common/ipad/menu_bg_top.jpg);
	}
	footer .f_left {
		max-width: 300px;
	}
}






/* ------------------------------------------------------------ mobile ------------------------------------------------------------ */
@media only screen and (max-width: 767px) {

	/* ------------------------------------------------------------ common */
	body {
		min-width: 100%;
		max-width: 100%;
	}
		
	.inner {
		width: 90%;
	}
	
	.PC {
		display: none;
	}
	
	.SP {
		display: block;
	}
	
	/* ------------------------------------------------------------ header */
	header {
		width: 100%;
		padding: 15px;
		box-sizing: border-box;
		min-width: inherit;
	}
	
	header .h_logo a img {
		width: auto;
		height: 35px;
	}
		
	header .h_right .h_menu_btn {
		width: 40px;
		height: 30px;
	}
	
	header .h_right .h_menu_btn span {
		width: 40px;
		height: 2px;
	}
	
	header .h_right .h_menu_btn span::before {
		width: 40px;
	}
	
	header .h_right .h_menu_btn span::after {
		width: 30px;
	}
	
	header #h_menu {
		display: none;
		min-width: inherit;
		background: url(../images/common/sp/h_menu_animals_sp.png) no-repeat right 320px #000;
		background-size: 350px auto;
		padding: 0;
		-ms-overflow-style: none; 
		scrollbar-width: none;
	}
	
	header #h_menu #h_menu_left {
		display: none;
	}
	
	header #h_menu .h_menu_right {
		float: none;
		width: 100%;
		height: inherit;
		padding: 60px 10% 0;
		background: url(../images/common/dust.png) repeat center top;
	}
	
	header #h_menu .h_menu_right .h_menu_close {
		top: 15px;
		right: 15px;
		width: 45px;
		height: 45px;
	}
	
	header #h_menu .h_menu_right .h_menu_close .cross {
		left: 15px;
		top: 15px;
		width: 16px;
		height: 16px;
	}
	
	header #h_menu .h_menu_right .h_menu_close .cross::before,
	header #h_menu .h_menu_right .h_menu_close .cross::after {
		top: 7px;
		left: -3px;
		width: 22px;
	}

/*
	header #h_menu .h_menu_right .h_menu_close {
		top: 15px;
		right: 15px;
		width: 45px;
		height: 45px;
	}
	
	header #h_menu .h_menu_right .h_menu_close .cross {
		display: block;
		width: 21px;
		height: 21px;
	}
	
	header #h_menu .h_menu_right .h_menu_close .cross::before,
	header #h_menu .h_menu_right .h_menu_close .cross::after {
		top: 37px;
		left: 12px;
		width: 21px;
	}
*/
	
	header #h_menu .h_menu_right ul {
		float: none;
		width: 100%;
	}
	
	header #h_menu .h_menu_right ul li {
		margin: 0 0 30px;
	}
	
	header #h_menu .h_menu_right ul li a {
		animation: inherit;
		display: inline-block;
		padding: 0;
	}
	
	header #h_menu .h_menu_right ul li:nth-child(1) a {
		animation-delay: inherit;
	}
	
	header #h_menu .h_menu_right ul li:nth-child(2) a {
		animation-delay: inherit;
	}
	
	header #h_menu .h_menu_right ul li:nth-child(3) a {
		animation-delay: inherit;
	}
	
	header #h_menu .h_menu_right ul li:nth-child(4) a {
		animation-delay: inherit;
	}
	
	header #h_menu .h_menu_right ul li .en {
		font-size: 24px;
		margin: 0 0 10px;
		color: #fff;
	}
	
	header #h_menu .h_menu_right ul li.on .en::before {
		background: #fff;
	}
	
	header #h_menu .h_menu_right ul li .ja {
		font-size: 12px;
		color: #fff;
	}
	
	/* ------------------------------------------------------------ fv */
	.fv {
		position: relative;
	}
	
	/* ------------------------------------------------------------ smoke */
	#smoke { 
		width: 200vw !important; 
		height: 200vw !important; 
	}
	
	/* ------------------------------------------------------------ bread */
	#bread {
		width: 100%;
		left: 0;
		top: 75px;
		margin: 0 15px;
	}
	
	body.isHidden #bread {
		z-index: 1;
	}
	
	#bread ol li {
		display: inline-block;
		position: relative;
		padding: 0 0 0 28px;
	}
	
	#bread ol li:first-child {
		padding: 0;
	}

	#bread ol li:first-child::before {
		display: none;
	}
	
	#bread ol li a {
		font-size: 11px;
	}
	
	
	/* ------------------------------------------------------------ common_contact */
	#common_contact {
		width: 90%;
		margin: 20px auto 0;
	}
	
	#common_contact a {
		padding: 35px 0;
	}
	
	#common_contact h2 {
		margin: 0 auto 20px;
	}
	
	#common_contact p {
		font-size: 18px;
		line-height: 1.7;
		margin: 0 0 15px;
	}
	
	#common_contact .max_wrap {
		position: relative;
		max-width: inherit;
		margin: 0 auto;
	}
	
	#common_contact .animation_btn {
		position: relative;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		width: 115px;
		height: 45px;
		margin: 0 auto;
	}
	
	#common_contact .animation_btn .arrow {
		top: 25px;
		left: 0;
		width: 88%;
	}
/*
	
	#common_contact a:hover .animation_btn .arrow {
		left: 0;
	}
	
*/
	#common_contact .animation_btn .arrow::before {
		top: -4px;
		width: 16px;
	}
	
	#common_contact .animation_btn .circle {
		width: 45px;
		height: 45px;
	}
/*
	
	#common_contact a:hover .animation_btn .circle {
		right: 0;
	}	
*/
	
	/* ------------------------------------------------------------ common_entry */
	#common_entry {
		width: 90%;
		margin: 50px auto 0;
	}
	
	#common_entry a {
		padding: 40px 0;
	}
	
	#common_entry h2 {
		font-size: 40px;
		margin: 0 auto 20px;
	}
	
	#common_entry p {
		font-size: 16px;
		margin: 0 0 30px;
	}
	
	#common_entry .max_wrap {
		max-width: inherit;
	}
	
	#common_entry .animation_btn {
		position: relative;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		width: 150px;
		height: 40px;
		margin: 0 auto;
	}
	
	#common_entry .animation_btn .arrow {
		top: 25px;
		left: 0;
		width: 92%;
	}
	
	#common_entry a:hover .animation_btn .arrow {
		left: 0;
	}
	
	#common_entry .animation_btn .arrow::before {
		top: -6px;
		width: 20px;
	}
	
	#common_entry .animation_btn .circle {
		width: 40px;
		height: 40px;
	}
	
	#common_entry a:hover .animation_btn .circle {
		right: 0;
	}

	/* ------------------------------------------------------------ footer */
	footer {
		margin: 40px auto 20px;
	}
	
	footer .f_flex {
		display: block;
		padding: 0 5% 30px;
	}
	
	footer .f_left .f_logo {
		margin: 0 0 20px;
		text-align: center;
	}
	
	footer .f_left .f_address {
		font-size: 11px;
		text-align: center;
	}
		
	footer .f_copyright {
		font-size: 10px;
		padding: 20px 0;
	}
	
	/* ------------------------------------------------------------ otherpage_link */
	.otherpage_link {
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 100px auto 0;
	}
	
	.otherpage_link a {
		width: 48%;
		margin: 0 0 25px;
	}
	
	.otherpage_link a h3 {
		font-size: 11px;
		margin: 0;
	}
	
	.otherpage_link a h3 span {
		font-size: 24px;
		margin: 0 0 8px;
	}
	
	.otherpage_link a .animation_btn .arrow {
		width: calc(100% - 18px);
		top: 14px;
	}
	
/*
	.otherpage_link a:hover .animation_btn .arrow {
		left: 9px;
	}
	
	.otherpage_link a:hover .animation_btn .circle {
		right: 0;
	}
*/
	
	/* ------------------------------------------------------------ title */
	.title1 {
		font-size: 13px;
	}
	
	.title1 span {
		font-size: 40px;
		margin: 0 0 5px;
	}
	
	.title2 {
		font-size: 12px;
		margin: 0 0 30px;
	}
	
	.title2 span {
		font-size: 32px;
	}
	
	.fv_title {
		font-size: 16px;
	}
	
	.fv_title span {
		font-size: 60px;
	}
	
	/* ------------------------------------------------------------ btn */
	.animation_btn {
		position: relative;
		width: 86px;
		height: 30px;
	}
	
	.animation_btn .arrow {
		position: absolute;	
		top: 16px;
		left: 0;
		display: block;
		width: 75px;
		height: 1px;
		background: #fff;
		transition: 0.3s;
	}
	
	.animation_btn .arrow {
		left: 9px;
		transition: 0.3s;
	}
	
	.animation_btn .arrow::before {
		position: absolute;
		content: "";
		right: -2px;
		top: -3px;
		width: 12px;
		height: 1px;
		background: #fff;
		transform: rotate(35deg);
	}
	
	.animation_btn .circle {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: 30px;
		height: 30px;
		border: solid 1px #fff;
		border-radius: 50%;
		box-sizing: border-box;
	}
	
	.switch_btn_white a,
	.switch_btn_white span {
		min-width: 230px;
		padding: 20px;
		font-size: 14px;
	}
	
/*
	.switch_btn_white a:hover {
		left: -7px;
		top: -7px;
		background: #000;
		border: solid 1px #fff;
		color: #fff;
	}
	
	.switch_btn_white a:hover::before {
		left: 7px;
		top: 7px;
	}
*/
	
	.switch_btn_black a {
		min-width: 230px;
		padding: 20px;
		font-size: 14px;
	}
	
/*
	.switch_btn_black a:hover {
		left: -7px;
		top: -7px;
		background: rgba(0,0,0,0.9);
		color: #fff;
	}
	
	.switch_btn_black a:hover::before {
		left: 7px;
		top: 7px;
		border: solid 1px #000;
	}
*/
	

}
