@charset "utf-8";
@media(min-width: 769px) {
header.mobile,
.drawer_mobile {
	display: none;	
}
}

@media(max-width: 768px) {
.drawer_mobile {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}
header.desktop {
	display: none;	
}


header.mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 52px;
	background: #C11F24;
	border-bottom: 3px solid #000;
	z-index: 100;
}
.mobile_header_logo {
	width: 80px;	
}
.mobile_header_logo img {
	width: 100%;
	height: auto;	
}
.mobile_header_inner {
	height: 52px;
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 20px;
	border-bottom: 4px solid #000
}

.mobile_header_inner .nav_trigger {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.nav_trigger span {
	display: block;
	width: 34px;
	height: 2px;
	background: #fff;
	position: absolute;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav_trigger span.trigger_bar1 {
	width: 17px;
	left: 20px;
	top: 10px;
}
.nav_trigger span.trigger_bar2 {
	width: 26px;
	left: 11px;
	top: 19px;
}
.nav_trigger span.trigger_bar3 {
	width: 34px;
	left: 3px;
	top: 29px;
}

.nav_trigger.trigger_open  {
    transform: rotate(180deg);
}

.nav_trigger.trigger_open span.trigger_bar1 {
	width: 30px;
	transform: translateY(9px) rotate(-45deg);
	left: 3px;
}
.nav_trigger.trigger_open span.trigger_bar2 {
	width: 30px;
	transform: translateY(0) rotate(45deg);
	left: 3px;
}
.nav_trigger.trigger_open span.trigger_bar3 {
	opacity: 0;
}

.drawer_mobile {
	position: fixed;
	top: 56px;
	left: 0;
	width: 100vw;
	transform: translateX(100vw);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	background: #fff;
	z-index: 1000;
}
.drawer_mobile.active {
	transform: translateX(0);
}


.drawer_inner {
	padding: 0 0 40px;
}
.mobile_nav_container {
	height: calc(100vh - 150px);
	overflow: auto;
}

.mobile_langselect {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mobile_langselect ul {
	list-style: none;
	display: flex;
	justify-content: center;
}
.mobile_langselect li {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 12px;
	font-weight: 500;
	margin: 0;
	border-right: 1px solid #333;
	line-height: 1;
}
.mobile_langselect ul li:last-child {
	border-right: none;
}

.mobile_langselect li a {
	color: #333;
	text-decoration: none;
	padding: 0 10px;
}
.mobile_langselect li.current a {
	color: #999;	
}
.mobile_mainnav li,
.drawer_sub li,
.drawer_sub h5  {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-height: 1;
	list-style: none;
}

.mobile_mainnav li ,
.drawer_sub h5 {
	font-size: 17px;
}
.drawer_sub li {
	font-size: 15px;
}

.mobile_mainnav li a,
.drawer_sub li a {
	color: #333;
	text-decoration: none;
	display: block;
	padding: 17px 20px;
	position: relative;
}
.drawer_sub li a {
	padding-left: 40px;	
}

.drawer_sub h5 a {
	color: #333;
	text-decoration: none;
	display: block;
	padding: 17px 20px;
}


.mobile_mainnav li.parent_business a::after,
.mobile_mainnav li.parent_company a::after,
.mobile_mainnav li.parent_products a::after,
.mobile_mainnav li.parent_recruit a::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 3px);
	right: 20px;
}

.drawer_mobile .drawer_sub {
	position: absolute;
	top: 50px;
	left: 0;
	width: 100vw;
	height: 100%;
	transform: translateX(100vw);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	background: #fff;
}

.drawer_sub.open {
	transform: translateX(0);
}

.drawer_sub_back {
	margin: 20px 20px 0;
	padding: 20px 25px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	border-top: 1px solid #333;
	position: relative;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.drawer_sub_back::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #333;
	border-left: 2px solid #333;
	transform: rotate(-45deg);
	position: absolute;
	top: calc(50% - 3px);
	left: 0px;
}
}

@media(max-width: 767px) {
.contents_area {
	overflow: hidden;	
}
}

@media(max-width: 320px) {
body {
    font-size: 14px;
}

}



