@charset "utf-8";
/*------------------------------------------------------------------
	base.css
------------------------------------------------------------------*/
body {
	width: 100%;
	min-width: 1000px;
	position: relative;
	line-height: 180%;
	color: #333;
	font-family: 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, sans-serif;
	font-weight: 400;
	font-size: 14px;
	font-style: normal;
}
img {
	max-width: 100%;
}
.alphaOver a:hover img {
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	-moz-opacity: .7;
	opacity: .7;
	zoom: 1
}
a,
a:link {
	color: #333;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
/* ==================================
header
=====================================*/
header:not(.entry-header) {
	position: relative;
	
	font-weight: 400;
	letter-spacing: .15em;
	z-index: 1;
	background: #fff;
}
.header_inner {
	display: flex;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	justify-content: space-between;
}
.header_inner h1 {
	width: 150px;
	height: auto;
	margin-right: 30px;
}
.header_inner h1 img {
	width: 100%;
}
.header_content {
	width: calc(100% - 255px);
	height: auto;
}

.contactLink span.ja_contxt {
	font-size: 12px;
    letter-spacing: 0;
}
header .menu_btn {
	display: none;
}
header .menu ul {
	width: 950px;
	margin: 50px auto 10px;
	display: flex;
	justify-content: flex-end;
	z-index: 1;
}
header .menu ul li {
	margin-right: 50px;
	display: block;
	font-style: normal;
	font-size: 20px;
	letter-spacing: .075em;
	line-height: 1;
	position: relative;
}


header .menu ul li {
    display: inline-block;
    vertical-align: middle;
}

header .menu ul li:last-child {
	margin-right: 0;
}
header .menu ul li a {
	display: block;
	font-size: 14px;
	letter-spacing: .075em;
	line-height: 1.7em;
	color: #333;
	position: relative;
}

/* ドロップダウンのメニュー 
=====================*/
header .menu ul li.dropmenu {
	position: relative;
}
header .menu ul li.dropmenu ul {
	position: absolute;
	display: block;
	width: 95px;
	top: 35px;
	height: 60px;
	opacity: 0;
}
header .menu ul li.dropmenu:hover ul.innerlink {
	opacity: 1;
}
header .menu ul li.dropmenu ul li {
	width: 95px;
	height: 25px;
	background: #fffabb;
	text-align: center;
	margin-bottom: 15px;
}
header .menu ul li ul li a {
	font-size: 12px;
	line-height: 30px;
	display: block;
	width: 100%;
	height: 100%;
}
.acd-check {
	display: none;
}
/* main部分
=======================*/
.wrapper {
	width: 100%;
	position: relative;
}
/*===========================================
#subpage header
=============================================*/
#subpage header:before {
	content: none;
}
/*===========================================
#subpage wrapper
=============================================*/
#subpage .wrapper:before {
	content: none;
}
/*  　inviewContents関連　  */
.inviewContents {
	opacity: 0;
	transform: translate(0, 60px);
	-webkit-transform: translate(0, 60px);
	transition: .8s;
}
.fadein {
	opacity: 1.0;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}
/* ==========================
footer 
=============================*/
footer {
	padding: 10px 0 0;
	letter-spacing: 1px;
	background: #4a4949;
}

footer .copyright {
	padding: 20px 0;
}
footer .copyright,
footer .copyright a {
	font-size: 12px;
	color: #fff;
}
@media screen and (max-width: 480px) {
	body {
		min-width: 320px;
		width: 100%;
		position: relative;
		min-height: 500px;
		font-size: 13px;
		color: #333;
	}
	header:not(.entry-header) {
		width: 100%;
		height: 70px;
		margin: 0 auto 15px;
		padding: 10px 0;
		box-sizing: border-box;
	}
	.header_inner h1 {
		width: 100%;
		margin: 0 auto;
	}
	.header_inner h1 img {
		width: 110px;
		height: auto;
		margin: 0 auto;
	}

	.header_content {
		width: auto;
	}
	header .logo img {
		width: 100%;
	}
	header .menu_btn {
		display: block;
		width: 50px;
		height: 50px;
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 99;
		padding: 15px 8px;
		box-sizing: border-box;
	}
	.open header .menu_btn {
		display: block;
		line-height: 30px;
		text-align: center;
		z-index: 999;
	}
	header .menu_btn span {
		display: block;
		width: 34px;
		height: 2px;
		background: #333;
		border-radius: 5px;
		transition: all 0.3s;
		transform: rotate(0deg);
	}
	header .menu_btn span.middle {
		transform: translateY(6px);
	}
	header .menu_btn span.bottom {
		transform: translateY(12px);
	}
	.open header .menu_btn span {
		background: #fff;
	}
	.open header .menu_btn span.middle {
		background: rgba(255, 255, 255, 0);
	}
	.open header .menu_btn span.top {
		transform: rotate(-45deg) translate(-8px, 12px);
	}
	.open header .menu_btn span.bottom {
		transform: rotate(45deg) translate(9px, 5px);
	}
	header .menu_bg {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(56, 54, 50, 0.9);
		-webkit-transition: all .5s;
		transition: all .5s;
		visibility: hidden;
		opacity: 0;
		z-index: 100;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	header .menu {
		display: table;
		width: 100%;
		padding: 0;
		border: none;
	}
	header .menu ul {
		display: block;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		padding: 45px 0 0;
	}
	header .menu ul li {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		border-bottom: 1px solid #fff;
	}
	header .menu ul li.sp {
		font-size: 13px;
	}
	header .menu ul li a {
		display: block;
		width: 80%;
		margin: 0 auto;
		padding: 15px 0;
		font-size: 14px;
		line-height: 1.6em;
		letter-spacing: .25em;
		color: #fff;
		position: relative;
	}
	header .menu ul li a span {
		font-family: poynter-oldstyle-display, serif;
		font-weight: 400;
		font-style: normal;
		font-size: 16px;
		letter-spacing: 1.5px;
		color: #fff;
	}
	
	
	/* 開閉用ボタンがクリックされた時のスタイル */
	.open header .menu_bg {
		-webkit-transition: all .5s;
		transition: all .5s;
		visibility: visible;
		opacity: 1;
	}
	/*   サブメニューの開き方  */
	.acd-label {
		color: #fff;
		margin-bottom: 1px;
		padding: 0;
		display: block;
		margin: 15px 0;
	}
	.acd-content {
		border-top: 1px dotted #fff;
		height: 0;
		opacity: 0;
		display: none;
		padding: 0 10px;
		transition: .5s;
		visibility: hidden;
		background: rgba(255, 250, 187, .40)
	}
	.acd-check:checked + .acd-label + .acd-content {
		height: auto;
		opacity: 1;
		margin-top: 10px;
		visibility: visible;
		display: block;
	}
	.acd-check:checked + li.sp_recruit {
		padding-bottom: 0;
	}
	header .menu ul.sp_submenu,
	header .menu ul.sp_submenu li:nth-child(1),
	header .menu ul.sp_submenu li:nth-child(2) {
		padding: 0;
		border: 0;
	}
	header .menu ul li ul li:first-child a {
		border-bottom: dotted 1px #fff;
	}
	/*  .main
    =============================================  */
	.wrapper {
		padding-bottom: 0;
	}
	/*  ============================================  
    footer
    ============================================*/
	
}
@media screen and (min-width: 481px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 480px) {
	.sp {
		display: inline-block;
	}
	.pc {
		display: none !important;
	}
	
}
