/*------------------------------
header
------------------------------*/
.header-inner {
	padding: 35px;
	width: 100%;
	box-sizing: border-box;
	position: fixed;
	z-index: 9999;
	top: 0;
}

.header-inner>div.wrapper {
	display: flex;
	align-items: center;
}

.header-logo {
	width: 260px;
	display: flex;
	align-items: center;
	line-height: 1;
}

.header-logo span:first-child {
	display: block;
	overflow: hidden;
	width: 41px;
}

.header-logo span:last-child {
	display: block;
	overflow: hidden;
	width: 216px;
	margin-left: 5px;
}

.header-logo span:last-child img {
	-webkit-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.header-logo img {
	width: 100%;
	vertical-align: middle;
}

header.fixed .header-logo span:last-child img {
	transform: translateX(-110%);
	-webkit-transform: translateX(-110%);
}

.header-logo .logo-mark img {
	content: url("../img/hdr-logo_mark-col.svg");
}

.fixed .header-logo .logo-mark img {
	content: url("../img/hdr-logo_mark.svg");
}

nav.header-nav {
	position: absolute;
	right: 0;
	top: 45px;
}

div#globalNavi {
	margin-right: 80px;
	overflow: hidden;
}

ul.global-nav {
	display: flex;
	-webkit-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

ul.global-nav li {
	margin-right: 40px;
	line-height: 1.2;
	color: #fff;
}

ul.global-nav li#gnavi05 {
	border-left: 1px solid #fff;
	padding-left: 30px;
}

div.scroll-indicator {
	width: 4px;
	height: 118px;
	position: absolute;
	left: 50px;
	bottom: 30px;
	animation: scrollarrow 4s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
	overflow: hidden;
	-webkit-clip-path: inset(0% 0% 100% 0%);
	clip-path: inset(0% 0% 100% 0%);
	z-index: 2;
}

div.scroll-indicator:before {
	content: "";
	display: block;
	width: 4px;
	height: 118px;
	background: url(../img/arrow_scroll.svg) no-repeat bottom;
	position: absolute;
	bottom: 0;
	left: 0;
}

header.fixed ul.global-nav {
	opacity: 0;
	z-index: -1;
	position: relative;
}

header.fixed .header-inner {
	position: fixed;
}


@keyframes scrollarrow {
	0% {
		-webkit-clip-path: inset(0% 0% 100% 0%);
		clip-path: inset(0% 0% 100% 0%);
	}

	25% {
		-webkit-clip-path: inset(0% 0% 0% 0%);
		clip-path: inset(0% 0% 0% 0%);
	}

	75% {
		-webkit-clip-path: inset(0% 0% 0% 0%);
		clip-path: inset(0% 0% 0% 0%);
	}

	100% {
		-webkit-clip-path: inset(100% 0% 0% 0%);
		clip-path: inset(100% 0% 0% 0%);
	}
}

@media screen and (max-width:1000px) {
	.header-inner {
		padding: 15px;
		width: 100%;
		box-sizing: border-box;
		position: fixed;
	}

	.header-inner>div.wrapper {
		display: flex;
		align-items: center;
	}

	.header-logo {
		width: 141px;
		display: flex;
		align-items: center;
		line-height: 1;
		margin-top: 3px;
	}

	.header-logo span:first-child {
		display: block;
		overflow: hidden;
		width: 22px;
	}

	.header-logo span:last-child {
		display: block;
		overflow: hidden;
		width: 116px;
		margin-left: 3px;
		padding-bottom: .3em;
	}

	.header-logo span:last-child img {
		-webkit-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
		transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	}

	header.fixed .header-logo span:last-child img {
		transform: translateX(-110%);
		-webkit-transform: translateX(-110%);
	}


	nav.header-nav {
		position: absolute;
		right: 0;
		top: 45px;
	}

	div#globalNavi {
		display: none;
	}

	ul.global-nav {
		display: flex;
		-webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
		transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	}

	ul.global-nav li {
		color: #fff;
		margin-right: 40px;
		line-height: 1.2;
	}

	ul.global-nav li#gnavi05 {
		border-left: 1px solid #e6e6e6;
		padding-left: 30px;
	}

	div.scroll-indicator {
		display: none;
	}

	header.fixed ul.global-nav {
		transform: translateY(-100%);
		-webkit-transform: translateY(-100%);
	}

	header.fixed .header-inner {
		position: fixed;
	}
}

/*------------------------------
header nav
------------------------------*/
.global-nav li {
	font-size: 1rem;
}

.btn-hamburger {
	display: block;
	width: 65px;
	height: 55px;
	padding: 15px;
	background: none;
	position: fixed;
	right: 0;
	top: 0;
	border: none;
	-ms-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 10003;
	position: fixed;
	right: 25px;
	top: 25px;
	cursor: pointer;
}

.fixed .btn-hamburger {
	background-color: #828788;
}

.btn-hamburger span {
	width: 35px;
	height: 2px;
	background: #e6e6e6;
	position: relative;
	display: block;
	-ms-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.btn-hamburger span:first-child {
	content: "";
	width: 45px;
	position: absolute;
	left: 10px;
	top: 12px;
	-ms-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.btn-hamburger span:last-child {
	content: "";
	width: 45px;
	position: absolute;
	left: 10px;
	bottom: 12px;
	-ms-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

body.open .btn-hamburger span:nth-child(2) {
	opacity: 0;
}

#header #globalNavi_sp {
	width: 100%;
	height: 0;
	position: fixed;
	z-index: 9999;
	transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	-webkit-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

#header #globalNavi_sp .inner {
	padding: 140px 80px 0 0;
	display: block;
	width: 300px;
	height: 100vh;
	visibility: visible;
	position: fixed;
	background: #1D3932;
	z-index: 10001;
	right: 0;
	top: 0;
	box-sizing: border-box;
	z-index: 9999;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	-webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

body.open #header #globalNavi_sp {
	display: block;
	background: rgba(0, 0, 0, 0.3);
	height: 100vh;
	top: 0;
}

body.open #header #globalNavi_sp .inner {
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
}

#header #globalNavi_sp .inner>div {
	display: flex;
}

#header #globalNavi_sp .inner>div ul {
	margin: 0 0 50px 80px;
}

#header #globalNavi_sp .inner li {
	color: #fff;
	margin-bottom: 25px;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
	-webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
	transform: translateX(30px);
	-webkit-transform: translateX(30px);
}

body.open #header #globalNavi_sp .inner li {
	opacity: 1;
	transform: translateX(0px);
	-webkit-transform: translateX(0px);
}

#header #globalNavi_sp .inner li a {
	display: block;
}

body.open .btn-hamburger span:first-child {
	transform: rotate(-30deg);
	top: 50%;
}

body.open .btn-hamburger span:last-child {
	transform: rotate(30deg);
	top: 50%;
}

.function ul,
.function_btn_sp {
	display: block;
}

.function_btn_sp a {
	display: block;
	position: fixed;
	left: 0px;
	bottom: 0px;
	width: 100%;
	border-top: 1px solid #485049;
	background: #26b7bc url(../img/header_ico_btn.svg) no-repeat 15px bottom;
	background-size: 60px;
	text-align: center;
	font-weight: bold;
	font-size: .9rem;
	color: #fff;
	line-height: 150%;
	padding: 10px;
	z-index: 9998;
}

.function_btn_sp a:after {
	content: "";
	display: block;
	width: 80px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: #485049 url(../img/header_ico_arrow2.svg)no-repeat 30px center;
	background-size: 6px;
}

.function_btn a {
	border: none;
}

@media screen and (max-width: 1200px) {
	.global-nav li {
		font-size: 0.875rem;
		margin-right: 15px;
	}

	.global-nav li#gnavi05 {
		padding-left: 15px;
	}
}

@media screen and (max-width: 1200px) {
	#header #globalNavi_sp .inner li {
		font-size: 0.875rem;
	}
}

@media screen and (max-width: 1000px) {
	.fixed .btn-hamburger {
		background-color: unset;
	}
}

/*------------------------------
header nav SP
------------------------------*/
@media screen and (max-width: 1000px) {
	.btn-hamburger {
		display: block;
		width: 55px;
		height: 35px;
		padding: 10px;
		background: none;
		position: fixed;
		right: 0;
		top: 0;
		border: none;
		-ms-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		z-index: 10003;
		position: fixed;
		right: 15px;
		top: 15px;
		cursor: pointer;
	}

	.btn-hamburger span {
		width: 35px;
		height: 2px;
		position: relative;
		display: block;
		-ms-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}

	.btn-hamburger span:first-child {
		content: "";
		width: 45px;
		position: absolute;
		left: 5px;
		top: 5px;
		-ms-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}

	.btn-hamburger span:last-child {
		content: "";
		width: 45px;
		position: absolute;
		left: 5px;
		bottom: 5px;
		-ms-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}

	#header #globalNavi_sp {
		width: 100%;
		height: 0;
		position: fixed;
		top: 0;
		z-index: 9999;
		transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1);
		-webkit-transition: background 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}

	#header #globalNavi_sp .inner {
		padding: 90px 0 0 0;
		display: block;
		max-width: 600px;
		width: 100%;
		height: 100vh;
		visibility: visible;
		position: fixed;
		right: 0;
		top: 0;
		box-sizing: border-box;
		z-index: 9999;
		transform: translateX(100%);
		-webkit-transform: translateX(100%);
		transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
		-webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	}

	#header #globalNavi_sp .inner:before {
		content: "";
		background: #1D3932;
		position: absolute;
		width: 100%;
		height: 100vh;
		inset: 0;
		margin: auto;
		bottom: 0;
	}

	body.open {
		overflow-y: hidden !important;
	}

	#header #globalNavi_sp .inner>div ul {
		margin: 0 0 35px 8vw;
	}

	#header .headBord {
		width: 100%;
		height: 100%;
		display: none;
		background: rgba(255, 255, 255, 1);
		left: 0;
		top: 0;
		position: fixed !important;
	}

	body.open #header .headBord {
		opacity: 1;
		display: block;
		z-index: 10000;
	}

	.global-nav li {
		display: block;
		margin-left: 0;
		border-bottom: 1px solid #ccc;
	}

	.global-nav li a {
		display: block;
		padding: 10px;
		position: relative;
	}

	.global-nav li a:after {
		content: "";
		display: block;
		width: 25px;
		height: 10px;
		position: relative;
		background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2026.5%2011.1%22%20style%3D%22enable-background%3Anew%200%200%2026.5%2011.1%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23333333%3Bstroke-miterlimit%3A10%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpolyline%20class%3D%22st0%22%20points%3D%2220.7%2C0.4%2025.8%2C5.5%2020.5%2C10.8%20%22%2F%3E%20%3Cline%20class%3D%22st0%22%20x1%3D%2225.8%22%20y1%3D%225.4%22%20x2%3D%220%22%20y2%3D%225.4%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center right;
		background-size: 25px 10px;
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.function_btn {
		border: none;
		position: relative;
		background: #26B7BB url(../img/header_ico_btn.svg) no-repeat left top;
	}

	.function_btn:after {
		content: "";
		display: block;
		width: 40px;
		height: 40px;
		background: #485049 url(../img/header_ico_arrow2.svg)no-repeat center center;
		background-size: 6px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.function ul {
		display: block;
	}

	.function:after {
		display: none;
	}

	.function li:first-child a {
		border-top: 1px solid #485049;
	}
}

/*------------------------------
body
------------------------------*/
body.open {
	overflow-y: hidden;
}

/*------------------------------
CTA
------------------------------*/
.ftr-contact {
	margin: 30px 0;
	padding: 0 115px;
}

.ftr-contact>div.wrapper {
	width: 100%;
	margin: 0px auto;
	padding: 40px 0;
	position: relative;
	background: #498D7B;
	display: flex;
	align-items: center;
}

.ftr-contact>div.wrapper>div {
	width: 50%;
	padding: 30px 7%;
}

.ftr-contact_head h2 {
	font-size: 3.125rem;
	line-height: 1.0;
	margin-bottom: 15px;
	color: #d7d9d8;
}

.ftr-contact_head p {
	font-size: 1.05rem;
	color: #fff;
}

.ftr-contact_body {
	border-left: 1px solid #e6e6e6;
	text-align: center;
}

.ftr-contact_num {
	font-size: 2.0rem;
	line-height: 1.1;
	color: #fff;
}

.ftr-contact_num img {
	width: 100%;
}

.ftr-contact_num span {
	display: inline-block;
	width: 40px;
	margin-right: 5px;
	vertical-align: text-bottom;
	color: #fff;
}

.ftr-contact_notes {
	font-size: 0.85rem;
	color: #fff;
}

.ftr-contact_btn a {
	max-width: 452px;
	margin: 20px auto 0;
	display: block;
	background: #000;
	box-shadow:
		inset 0 1px rgba(255, 255, 255, 0.3),
		0 2px 4px rgba(0, 0, 0, 0.25);
	text-align: center;
	line-height: 1.5;
	color: #fff;
	padding: 25px 0;
	transition: all 0.25s ease;
}

.ftr-contact_btn span {
	display: inline-block;
	width: 30px;
	height: 20px;
	margin-right: 10px;
	vertical-align: text-top;
}

.ftr-contact_btn span img {
	width: 100%;
}

.ftr-contact_btn a {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.ftr-contact_btn a:hover {
	color: #fff;
	background: #035b31;
	transform: translateY(-1px);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3);
}

.ftr-contact_tel_sp {
	display: none;
}

/*------------------------------
footer
------------------------------*/
.ftr-navcont {
	margin: 40px 0;
	padding: 0 115px;
}

.ftr-navcont>div.wrapper {
	width: 100%;
	margin: 0px auto;
	position: relative;
}

.ftr-link {
	position: absolute;
	right: 0;
	top: 0;
}

.ftr-link li {
	display: inline-block;
	font-size: 0.8125rem;
	margin: 0 12px;
}

.ftr-link li:last-child {
	border-left: 1px solid #e6e6e6;
	padding-left: 24px;
	margin-right: 0;
}

.ftr-logo {
	width: 210px;
}

.ftr-copy {
	text-align: right;
}

address {
	font-style: normal;
	margin-top: 20px;
}

p.copyrights {
	font-size: 0.75rem;
	margin-top: 15px;
}

@media screen and (max-width: 1200px) {
	.ftr-link li {
		font-size: 0.75rem;
		margin: 0 6px;
	}
}

@media screen and (max-width: 1000px) {
	.ftr-contact {
		margin: 30px 0;
		padding: 0;
	}

	.ftr-contact>div.wrapper {
		width: 100%;
		margin: 0px auto;
		padding: 20px 0 40px;
		position: relative;
		display: block;
		align-items: center;
	}

	.ftr-contact>div.wrapper>div {
		width: 84%;
		padding: 15px 0;
		margin: 0 auto;
	}

	.ftr-contact_head h2 {
		font-size: 2.5rem;
		line-height: 1.0;
		margin-bottom: 15px;
	}

	.ftr-contact_head p {
		font-size: 0.75rem;
	}

	.ftr-contact_body {
		border-left: none;
		text-align: center;
	}

	.ftr-contact_num {
		font-size: 1.625rem;
		line-height: 1.1;
		color: #333;
	}

	.ftr-contact_num span {
		display: inline-block;
		width: 26px;
		position: absolute;
		left: 30px;
		top: 48%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.ftr-contact_notes {
		font-size: 0.625rem;
		color: #333;
	}

	.ftr-contact_btn a {
		max-width: 452px;
		margin: 10px auto 0;
		display: block;
		background: #000;
		text-align: center;
		line-height: 1.1;
		color: #fff;
		padding: 20px 10px;
	}

	.ftr-contact_btn span {
		display: inline-block;
		width: 30px;
		position: absolute;
		left: 30px;
		top: 41%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.ftr-contact_btn a {
		position: relative;
		z-index: 1;
		overflow: hidden;
	}

	.ftr-contact_tel {
		display: none;
	}

	.ftr-contact_tel_sp {
		display: block;
	}

	.ftr-contact_tel_sp a {
		max-width: 452px;
		margin: 0 auto 0;
		display: block;
		background: #fff;
		text-align: center;
		line-height: 1.1;
		color: #333;
		padding: 10px 0 12px;
		position: relative;
	}

	.ftr-navcont {
		margin: 40px 0;
		padding: 0 5vw;
	}

	.ftr-navcont>div.wrapper {
		width: 100%;
		margin: 0px auto;
		position: relative;
	}

	.ftr-link {
		display: none;
	}

	.ftr-link li {
		display: inline-block;
		font-size: 0.8125rem;
		margin: 0 12px;
	}

	.ftr-link li:last-child {
		border-left: 1px solid #e6e6e6;
		padding-left: 24px;
		margin-right: 0;
	}

	.ftr-logo {
		width: 210px;
		margin: 0 auto;
	}

	.ftr-logo img {
		width: 100%;
	}

	address {
		font-style: normal;
		margin-top: 20px;
		text-align: center;
	}

	.copyrights {
		font-size: 0.6rem;
		margin-top: 35px;
		text-align: center;
	}
}

/*------------------------------
scroll-animne
------------------------------*/
.js-scroll-fade {
	position: relative;
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.is-animation {
	opacity: 1;
	transform: translate(0, 0);
}

/*------------------------------
COMMON
------------------------------*/
.pc_only {
	display: inline-block;
}

.sp_only {
	display: none;
}

.font01 {
	font-family: Futo Go B101, 'Noto Sans JP', 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

.font02 {
	font-family: din-2014, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.05em;
}

div.top-line,
div.bottom-line {
	width: 100%;
	height: 10px;
	position: fixed;
	z-index: 100;
	box-sizing: border-box;
	background: #b5b9b7;
	background: -webkit-linear-gradient(to right, #c9cdcb, #a3a8a6, #8b918e);
	background: linear-gradient(to right, #c9cdcb, #a3a8a6, #8b918e);
	background-blend-mode: overlay;
	z-index: 10002;
}

div.top-line {
	left: 0;
	top: 0;
}

div.bottom-line {
	left: 0;
	bottom: 0;
}

header:after {
	content: "";
	display: block;
	width: 100%;
	height: 500px;
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
}

.blog header:after,
.single header:after,
.contact header:after,
.entry header:after,
.thanks header:after,
.error404 header:after {
	display: none;
}

.home header:after,
.recruit header:after {
	height: 100vh;
}

div.fixed-contact {
	display: flex;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 99;
}

div.fixed-contact-tel {
	width: 206px;
	padding: 20px 0 20px 17px;
	background: #fff;
	box-sizing: border-box;
	line-height: 1;
	font-size: 1.25rem;
	border-left: 1px solid #f3f3f3;
	border-top: 1px solid #f3f3f3;
}

div.fixed-contact-tel span {
	width: 23px;
	display: inline-block;
	padding-right: 10px;
}

div.fixed-contact-tel span img {
	width: 100%;
}

div.fixed-contact-tel_sp {
	display: none;
}

div.fixed-contact-mail {
	width: 64px;
	background: #1D3932;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.25);
	transition: all 0.25s ease;
	box-sizing: border-box;
	line-height: 1;
}

div.fixed-contact-mail:hover {
	background: #035b31;
	transform: translateY(-1px);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3);
}

div.fixed-contact-mail span {
	display: block;
	height: 20px;
}

div.fixed-contact-mail span img {
	width: 100%;
}

div.fixed-contact-mail a {
	display: block;
	padding: 20px 17px;
}

div.fixed-contact {
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.0s;
	-webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.0s;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
}

div.fixed-contact.is-animation {
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
}

div.fixed-contact.no-active {
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
}

div.fixed-contact>div>div {
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
	-webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

div.fixed-contact.is-animation>div>div {
	opacity: 1;
}

div.page_hd_en {
	font-size: 3.75rem;
	color: #ccc;
	line-height: 1.2;
	padding-top: 200px;
}

.page_title {
	font-size: 1.25rem;
	margin-bottom: 50px;
	font-family: 'Noto Sans JP', 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

.page_title_bg {
	color: #f2f2f2;
}

div.page_nav {
	position: relative;
	min-height: 20px;
	margin: 70px 0 0;
}

div.page_nav_prev {
	position: absolute;
	left: 0;
}

div.page_nav_next {
	position: absolute;
	right: 0;
}

div.page_head {
	max-width: 1350px;
	width: 100%;
	padding: 0 115px;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}

div.page_body {
	max-width: 736px;
	width: 84vw;
	margin: 50px auto 0;
}

div.page_body_wd {
	max-width: 1350px;
	width: 100%;
	margin: 100px auto 0;
	padding: 0 115px;
	box-sizing: border-box;
}

.txt_l {
	text-align: left !important;
}

.txt_r {
	text-align: right !important;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: flex-end;
	padding: 0 35px;
	margin: 0 auto;
}

.breadcrumb__list li:not(:last-of-type)::after {
	content: "›";
	margin: 0 .6em;
	color: #777;
}

.breadcrumb__item a {
	pointer-events: none;
	text-decoration: none;
}

.breadcrumb__item.active a {
	pointer-events: auto;
}

.breadcrumb__item a:hover span {
	color: #386C5E;
}

@media screen and (max-width: 1000px) {
	.pc_only {
		display: none;
	}

	.sp_only {
		display: inline-block;
	}

	p {
		font-size: 0.875rem;
	}

	.font01 {
		font-family: Futo Go B101, 'Noto Sans JP', 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	}

	.font02 {
		font-family: din-2014, sans-serif;
		font-weight: 400;
		font-style: normal;
		letter-spacing: 0.05em;
	}

	div.top-line,
	div.bottom-line {
		width: 100%;
		height: 5px;
		position: fixed;
		z-index: 100;
		box-sizing: border-box;
		z-index: 10002;
	}

	div.left_bdr {
		width: 5px;
		height: 102vh;
		background: rgb(204, 204, 204);
		position: fixed;
		left: 0;
		top: 0;
		z-index: 10002;
	}

	div.right_bdr {
		width: 5px;
		height: 102vh;
		background: rgb(199, 178, 153, 1);
		position: fixed;
		right: 0;
		top: 0;
		z-index: 10002;
	}

	header:after {
		content: "";
		display: block;
		width: 100%;
		height: 75vw;
		max-height: 375px;
		background-color: rgba(0, 0, 0, 0.3);
		position: absolute;
		top: 0;
	}

	.recruit header:after {
		content: "";
		display: block;
		width: 100%;
		height: 100vw;
		max-height: 500px;
		background-color: rgba(0, 0, 0, 0.3);
		position: absolute;
		top: 0;
	}

	.home header:after {
		content: "";
		display: block;
		width: 100%;
		height: 100vw;
		max-height: 500px;
		background-color: rgba(0, 0, 0, 0.3);
		position: absolute;
		top: 0;
	}

	div.fixed-contact {
		display: block;
		width: 48px;
		position: fixed;
		right: 5px;
		bottom: 5px;
		z-index: 99;
	}

	div.fixed-contact-tel {
		display: none;
	}

	div.fixed-contact-tel_sp {
		display: block;
		width: 48px;
		background: #1D3932;
		box-sizing: border-box;
		line-height: 1;
		border-bottom: solid 0.1px #fff;
	}

	div.fixed-contact-tel_sp img {
		width: 100%;
	}

	div.fixed-contact-tel_sp a {
		display: block;
		padding: 10px;
		line-height: 1;
	}

	div.fixed-contact-tel_sp a span {
		display: block;
		width: 30px;
	}

	div.fixed-contact-mail {
		width: 48px;
		background: #1D3932;
		box-sizing: border-box;
		line-height: 1;
	}

	div.fixed-contact-mail a {
		display: block;
		padding: 16.5px 12.75px;
	}

	div.page_hd_en {
		font-size: 1.875rem;
		color: #ccc;
		line-height: 1.2;
		padding-top: 174px;
		text-align: center;
	}

	h1.page_title {
		font-size: 0.75rem;
		margin-bottom: 25px;
		text-align: center;
	}

	div.page_nav {
		position: relative;
		min-height: 20px;
		margin: 30px 0 0;
	}

	section.top-contents_phi {
		margin: 50px 0;
		padding: 0;
	}

	div.page_head,
	div.page_body_wd {
		width: 84vw;
		padding: 0;
		position: relative;
		z-index: 2;
	}

	div.page_body_wd {
		margin: 50px auto 0;
	}

	.breadcrumb__list {
		padding: 0 15px;
	}

	.breadcrumb__item span {
		font-size: 0.75rem;
	}

	.breadcrumb__list li:not(:last-of-type)::after {
		margin: 0 .4em;
	}
}

@media screen and (max-width: 540px) {
	div.page_hd_en {
		padding-top: 130px;
	}
}

/*------------------------------
COMMON LINK
------------------------------*/
ul.global-nav li a,
#globalNavi_sp a,
ul.header_inq_link a,
div.post_blog_date a,
.ftr-link a,
div.archive_link a,
ul.link_page a,
div.link_back a {
	-webkit-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

ul.global-nav li a {
	text-shadow: 0 1px 1px rgba(0, 0, 0, .5), 0 3px 10px rgba(0, 0, 0, .35), 0 8px 24px rgba(0, 0, 0, .25);
}

ul.header_inq_link a:hover,
div.post_blog_date a:hover,
div.archive_link a:hover,
ul.link_page a:hover,
div.link_back a:hover {
	opacity: 0.5;
}

ul.global-nav li a:hover,
#globalNavi_sp a:hover,
.ftr-link a:hover {
	color: #4fa99a;
}

ul.global-nav li a:active,
#globalNavi_sp a:active,
.ftr-link a:active {
	color: #66b1a3;
}

a.post_blog_more:hover {
	text-decoration: none;
}

div.post_thumb_wrap,
div.post_blog_thumb_wrap {
	overflow: hidden;
}

a.post_item div.post_thumb,
div.post_blog_thumb_wrap a {
	transform: scale(1);
	transition-duration: 4s;
	-webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	transition-timing-function: cubic-bezier(.075, .82, .165, 1);
	transition-property: transform, -webkit-transform;
}

a.post_item:hover div.post_thumb,
div.post_blog_thumb_wrap a:hover {
	transform: scale(1.1);
}

.btn-hamburger span {
	-webkit-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.btn-hamburger:hover span {
	opacity: 0.4;
}

.btn-hamburger:active span {
	background: #66b1a3;
}

.ftr-contact_btn *,
.fixed-contact-mail *,
.fixed-contact-tel_sp * {
	color: #fff;
	fill: #fff;
	-webkit-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

/*------------------------------
TOP PAGE
------------------------------*/
.home header {
	height: 100vh;
	position: relative;
}

.top-mainvisual {
	position: absolute;
	left: 0;
	top: 0;
}

.top-mainvisual .slick-slide {
	height: 100vh;
	width: 100%;
	background-position: center;
	background-size: cover;
}

.top-mainvisual01 {
	background-image: url(../img/key-01.jpg);
}

.top-mainvisual02 {
	background-image: url(../img/key-02.jpg);
}

.top-mainvisual03 {
	background-image: url(../img/key-03.jpg);
}

div.top-copy {
	position: absolute;
	top: 50%;
	left: 10vw;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 2;
}

p.top-catch-copy {
	font-size: 4.0rem;
	line-height: 1.5;
	color: #f2f2f2;
	margin-left: 15px;
	transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
	-webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
	opacity: 0;
	text-shadow:
		0 1px 1px rgba(0, 0, 0, .5),
		0 3px 10px rgba(0, 0, 0, .35),
		0 8px 24px rgba(0, 0, 0, .25);
}

p.top-catch-copy.is-animation {
	margin-left: 0;
	opacity: 1;
}

p.top-sub-copy {
	line-height: 2;
	color: #fff;
	margin-top: 40px;
	margin-left: 15px;
	transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
	-webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
	opacity: 0;
	text-shadow:
		0 1px 1px rgba(0, 0, 0, .5),
		0 3px 10px rgba(0, 0, 0, .35),
		0 8px 24px rgba(0, 0, 0, .25);
}

p.top-sub-copy.is-animation {
	margin-left: 0;
	opacity: 1;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
}

p.top-sub-copy_sp {
	display: none;
}

section.top-contents_list {
	position: relative;
	padding-bottom: 70px;
}

section.top-contents_list>div.wrapper {
	max-width: 1376px;
	margin: 0px auto;
	padding: 0 115px;
}

section.top-contents_list:after {
	content: "";
	display: block;
	background: #f3f3f3;
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 1344px;
	width: 85%;
	padding-bottom: 40%;
	max-height: 614px;
	box-sizing: border-box;
	z-index: -1;
}

section.top-contents_list>div.wrapper>div {
	display: flex;
}

section.top-contents_list>div.wrapper>div a {
	display: block;
	width: 100%;
}

section.top-contents_list>div.wrapper>div:nth-child(1) {
	width: 100%;
	margin: 0px auto;
}

section.top-contents_list>div.wrapper>div:nth-child(2) {
	max-width: 1312px;
	width: 100%;
	margin: 0px auto;
	display: flex;
}

section.top-contents_list>div.wrapper>div:nth-child(2) a {
	max-width: 640px;
	width: 48.8%;
}

section.top-contents_list>div.wrapper>div:nth-child(2) a:first-child {
	margin-right: 34px;
}

a.top-card {
	display: block;
	position: relative;
}

a.top-card_biz {
	margin: 100px 0;
}

div.top-card_img {
	margin-left: 15%;
	overflow: hidden;
}

div.top_fac_bg {
	max-width: 544px;
	height: 338px;
	width: 85%;
	position: absolute;
	right: 0;
	background: url(../img/top_facilities_ph.jpg) no-repeat center / cover;
}

div.top_flow_bg {
	max-width: 544px;
	height: 338px;
	width: 85%;
	position: absolute;
	right: 0;
	background: url(../img/top_flow_ph.jpg) no-repeat center / cover;
}

div.top-biz_txt {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	background-color: rgba(56, 108, 94, 0.7);
	padding: 40px;
}

div.top-biz_txt p {
	color: #fff;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, .35),
		0 2px 6px rgba(0, 0, 0, .25);
}

div.top-card_txt {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	background-color: rgba(130, 135, 136, 0.6);
	padding: 30px;
}

div.top-card_txt .btn_more {
	margin-top: 20px
}

div.top-card_en {
	font-size: 3.75rem;
	color: #d7d9d8;
	font-weight: normal;
	line-height: 1.0;
}

section.top-contents_list>div.wrapper>div:nth-child(2) div.top-card_en {
	font-size: 2.5rem;
}

.top-contents_list .btn_more {
	color: #fff;
}

h2.top-card_ttl {
	color: #383838;
	font-size: 1.875rem;
	margin: 15px 0;
	font-weight: bold;
}

section.top-contents_phi {
	margin: 130px 0 30px;
	padding: 0 115px;
}

.home section.top-contents_phi {
	margin: 100px 0 30px;
}

section.top-contents_phi>a div.wrapper {
	width: 100%;
	height: 520px;
	margin: 0px auto;
	position: relative;
	overflow: hidden;
}

section.top-contents_phi>a div.wrapper:before {
	content: "";
	display: block;
	width: 100%;
	height: 520px;
	background: url(../img/top-philosophy.jpg) no-repeat center/ cover;
	position: absolute;
	top: 0;
	transition: transform 0.6s ease;
}

section.top-contents_phi>a:hover div.wrapper::before {
	transform: scale(1.1);
}

section.top-contents_phi>a div.wrapper:after {
	content: "";
	display: block;
	width: 100%;
	height: 520px;
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
	z-index: 2;
}

h2.top-phi_en {
	font-size: 3.75rem;
	color: #cccccc;
	font-weight: normal;
	line-height: 1.0;
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 3;
}

div.top-phi_txt {
	text-align: right;
	position: absolute;
	bottom: 80px;
	right: 5%;
	z-index: 3;
}

div.top-phi_txt * {
	color: #fff;
}

div.top-phi_txt p {
	margin-right: 5px;
	text-shadow:
		0 1px 1px rgba(0, 0, 0, .5),
		0 3px 10px rgba(0, 0, 0, .35),
		0 8px 24px rgba(0, 0, 0, .25);
}

div.top-phi_txt div.btn_more {
	margin: 15px 5px 0 0;
}

div.top-phi_txt a:hover div.btn_more {
	margin-right: 0;
}

section.top-contents_news,
section.common_section {
	max-width: 1350px;
	width: 100%;
	padding: 0 115px;
	margin: 100px auto 20px;
	box-sizing: border-box;
}

section.top-contents_news h2 {
	width: 150px;
	float: left;
}

div.top-news_txt {
	margin-left: 150px;
}

div.top-news_txt ul {
	border-top: 1px solid #e6e6e6;
	overflow-y: scroll;
	height: 450px;
}

div.top-news_txt li div {
	border-bottom: 1px solid #e6e6e6;
	padding: 15px 0;
	position: relative;
	-webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

div.top-news_txt li span.news-date {
	display: block;
	width: 150px;
	-webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	float: left;
	color: #878c89;
}

div.top-news_txt li span.news-desc {
	padding: 0 30px 5px 150px;
	display: block;
}

div.top-news_txt li div:hover {
	background: #f3f3f3;
}

div.top-news_txt li div:hover span.news-date {
	width: 155px;
}

div.top-news_txt li span.link_arrow {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -7px;
}

div.top-news_txt div.btn_more {
	text-align: right;
}

h2.top-news_en {
	font-size: 1.875rem;
	font-weight: normal;
	line-height: 1.0;
}

div.btn_more {
	margin-top: 40px;
	font-family: din-2014, sans-serif;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 0.05em;
	position: relative;
	line-height: 1;
	-webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

span.link_arrow {
	content: "";
	display: inline-block;
	width: 50px;
	height: 13px;
	margin-left: 5px;
	background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20250.18%2037.58%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%3E%3Cpolygon%20points%3D%22250.16%2037.58%20250.14%2037.55%20209.84%200%20209.84%2037.58%20250.18%2037.58%20250.16%2037.58%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20y%3D%2230.36%22%20width%3D%22241.47%22%20height%3D%227.22%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center / 73px 5px;
}

span.link_arrow.bl {
	background: url('../img/arrow_black.svg') no-repeat center / 73px 5px;
}

span.link_arrow02 {
	content: "";
	display: inline-block;
	width: 27px;
	height: 14px;
	margin-left: 5px;
	background: url('../img/arrow_white.svg') no-repeat center / 73px 4px;
}

span.link_arrow_prev {
	transform: scale(-1, 1);
	margin: 0 5px 0 0;
}

a:hover div.btn_more {
	margin-left: 10px;
}

a:hover span.link_arrow,
a:hover span.link_arrow02 {
	animation: linkarrow 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
	overflow: hidden;
	-webkit-clip-path: inset(0% 0% 0% 0%);
	clip-path: inset(0% 0% 0% 0%);
}

a:hover span.link_arrow_prev {
	animation: linkarrow 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
	overflow: hidden;
	-webkit-clip-path: inset(0% 0% 0% 0%);
	clip-path: inset(0% 0% 0% 0%);
}

div.top-card_img img {
	width: 100%;
	transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
	-webkit-transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

a:hover div.top-card_img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

@keyframes linkarrow {
	0% {
		-webkit-clip-path: inset(0% 0% 0% 100%);
		clip-path: inset(0% 0% 0% 100%);
	}

	1% {
		-webkit-clip-path: inset(0% 100% 0% 0%);
		clip-path: inset(0% 100% 0% 0%);
	}

	100% {
		-webkit-clip-path: inset(0% 0% 0% 0%);
		clip-path: inset(0% 0% 0% 0%);
	}
}

@media screen and (max-width: 1400px) {
	section.top-contents_about>div.wrapper {
		width: 100%;
		height: 530px;
		margin: 0px auto;
		padding: 90px 0 0;
		position: relative;
		box-sizing: border-box;
	}

	section.top-contents_about>div.wrapper:before {
		content: "";
		display: block;
		width: 100%;
		height: 530px;
		background: url(../img/top_about_bg.jpg) no-repeat center/ cover;
		position: absolute;
		top: 0;
	}

	section.top-contents_about>div.wrapper:after {
		content: "";
		display: block;
		width: 100%;
		height: 530px;
		background-color: rgba(0, 0, 0, 0.5);
		position: absolute;
		top: 0;
	}

	h2.top_about_hd {
		width: 250px;
		height: 250px;
		position: absolute;
		right: 7%;
		top: -40px;
		background: rgb(204, 204, 204);
		background: linear-gradient(135deg, rgba(204, 204, 204, 1) 0%, rgba(255, 255, 255, 1) 100%);
		text-align: center;
		padding: 120px 0;
		box-sizing: border-box;
		font-size: 1.375rem;
		font-weight: bold;
		z-index: 2;
	}

	.top_about_en {
		font-size: 2.5rem;
		color: #cccccc;
		font-weight: normal;
		line-height: 1.0;
		margin-left: 7%;
	}

	div.top_about_txt p {
		font-size: 0.875rem;
	}
}

@media screen and (max-width: 1000px) {
	.home header {
		height: 100vw;
		max-height: 500px;
		position: relative;
	}

	.top-mainvisual .slick-slide {
		height: 100vw;
		max-height: 500px;
		width: 100%;
		background-position: center;
		background-size: cover;
	}

	.top-mainvisual01 {
		background-image: url(../img/key-sp-01.jpg);
	}

	.top-mainvisual02 {
		background-image: url(../img/key-sp-02.jpg);
	}

	.top-mainvisual03 {
		background-image: url(../img/key-sp-03.jpg);
	}

	div.top-copy {
		position: absolute;
		top: auto;
		left: 8vw;
		bottom: 8vw;
		transform: translateY(0%);
		-webkit-transform: translateY(0%);
	}

	p.top-catch-copy {
		font-size: 2.875rem;
		line-height: 1.5;
		color: #f2f2f2;
	}

	p.top-sub-copy {
		display: none;
	}

	p.top-sub-copy_sp {
		display: block;
		padding: 8vw;
	}

	section.top-contents_list {
		position: relative;
		padding-bottom: 0px;
	}

	section.top-contents_list>div.wrapper {
		max-width: 1376px;
		margin: 0px auto;
		padding: 0;
	}

	section.top-contents_list:after {
		display: none;
	}

	section.top-contents_list>div.wrapper>div {
		display: flex;
	}

	section.top-contents_list>div.wrapper>div a {
		display: block;
		width: 100%;
	}

	section.top-contents_list>div.wrapper>div:nth-child(1) {
		width: 100%;
		margin: 0px auto;
	}

	section.top-contents_list>div.wrapper>div:nth-child(2) {
		max-width: 1312px;
		width: 84%;
		margin: 0px auto;
		display: block;
	}

	section.top-contents_list>div.wrapper>div:nth-child(2) a {
		max-width: 640px;
		width: 100%;
		margin: 0 auto;
	}

	section.top-contents_list>div.wrapper>div:nth-child(2) a:first-child {
		margin: 0 auto 30px;
	}

	a.top-card {
		display: block;
		position: relative;
	}

	a.top-card_biz {
		margin: 30px 0;
	}

	div.top-card_img {
		margin-left: 0%;
		overflow: hidden;
	}

	div.top-biz_txt {
		position: relative;
		top: -19px;
		left: 0;
		width: 80vw;
		transform: translateY(0%);
		-webkit-transform: translateY(0%);
	}

	div.top-card_txt {
		position: relative;
		top: auto;
		transform: translateY(0%);
		-webkit-transform: translateY(0%);
	}

	div.top-card_en {
		font-size: 2.5rem;
		color: #b9b9b9;
		font-weight: normal;
		line-height: 1.0;
	}

	section.top-contents_list>div.wrapper>div:nth-child(2) div.top-card_en {
		display: none;
	}

	h2.top-card_ttl {
		font-size: 1.25rem;
		margin: 10px 0;
		position: relative;
	}

	section.top-contents_list>div.wrapper>div:nth-child(2) h2.top-card_ttl:after {
		content: "";
		display: inline-block;
		width: 45px;
		height: 20px;
		margin: -7px 0 0 5px;
		position: absolute;
		right: 0px;
		top: 50%;
		background: url(../img/arrow_black.svg) no-repeat center / 45px 20px;
	}

	section.top-contents_phi {
		margin: 50px 0;
		padding: 0;
	}

	section.top-contents_phi>a div.wrapper {
		width: 100%;
		height: auto;
		margin: 0px auto;
		position: relative;
	}

	section.top-contents_phi>a div.wrapper:before {
		content: "";
		display: block;
		width: 100%;
		height: 53vw;
		position: relative;
		top: 0;
	}

	section.top-contents_phi>a div.wrapper:after {
		height: 53vw;
	}

	h2.top-phi_en {
		width: 84vw;
		font-size: 2.5rem;
		color: #cccccc;
		font-weight: normal;
		line-height: 1.0;
		position: relative;
		top: 0;
		left: 8vw;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	div.top-phi_txt {
		width: 84vw;
		text-align: left;
		position: relative;
		bottom: auto;
		right: auto;
		left: 8vw;
	}

	div.top-phi_txt * {
		color: #333;
	}

	div.top-phi_txt p {
		text-shadow: unset;
	}

	div.top-phi_txt div.btn_more {
		margin: 15px 5px 0 0;
	}

	div.top-phi_txt a:hover div.btn_more {
		margin-right: 0;
	}

	section.top-contents_news,
	section.common_section {
		max-width: 1350px;
		width: 84vw;
		padding: 0;
		margin: 30px auto 70px;
		box-sizing: border-box;
	}

	section.top-contents_news h2 {
		width: 100%;
		float: none;
		margin-bottom: 25px;
	}

	div.top-news_txt {
		margin-left: 0;
	}

	div.top-news_txt ul {
		border-top: 1px solid #e6e6e6;
	}

	div.top-news_txt li div {
		display: block;
		border-bottom: 1px solid #e6e6e6;
		padding: 15px 0;
		position: relative;
		-webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
		transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
		line-height: 1.5;
	}

	div.top-news_txt li span.news-date {
		margin-bottom: 5px;
		display: inline-block;
		width: 100%;
		-webkit-transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
		transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
	}

	div.top-news_txt li span.news-desc {
		padding: 0 30px 10px 0;
		display: block;
	}

	div.top-news_txt li div:hover {
		background: #f3f3f3;
	}

	div.top-news_txt li div:hover span.news-date {
		width: 100%;
	}

	div.top-news_txt li span.link_arrow {
		position: absolute;
		right: 0;
		top: 30px;
		margin-top: -7px;
	}

	div.top-news_txt div.btn_more {
		text-align: right;
	}

	h2.top-news_en {
		font-size: 1.875rem;
		font-weight: normal;
		line-height: 1.0;
	}

	section.top-contents_about {
		padding: 0;
	}

	section.top-contents_about>div.wrapper {
		width: 100%;
		height: auto;
		margin: 0px auto;
		padding: 0 0 0;
		background: none;
		position: relative;
	}

	section.top-contents_about>div.wrapper:before {
		content: "";
		display: none;
	}

	section.top-contents_about>div.wrapper:after {
		content: "";
		display: none;
		width: 100%;
		height: 220px;
		background-color: rgba(0, 0, 0, 0.5);
		position: absolute;
		top: 0;
	}

	div.btn_more {
		margin-top: 20px;
		font-family: din-2014, sans-serif;
		font-weight: 600;
		font-style: normal;
		letter-spacing: 0.05em;
		position: relative;
		line-height: 1;
		-webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1) 0s;
		text-align: right;
	}

	section.top-contents_list>div.wrapper>div:nth-child(2) div.btn_more {
		display: none;
	}

	a:hover div.btn_more {
		margin-left: 10px;
	}

	a:hover span.link_arrow,
	a:hover span.link_arrow02 {
		animation: linkarrow 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
		overflow: hidden;
		-webkit-clip-path: inset(0% 0% 0% 0%);
		clip-path: inset(0% 0% 0% 0%);
	}

	.top-contents_phi span.link_arrow02,
	.top-contents_about span.link_arrow02 {
		content: "";
		display: inline-block;
		width: 27px;
		height: 14px;
		margin-left: 5px;
		background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2027.8%204.6%22%20style%3D%22enable-background%3Anew%200%200%2027.8%204.6%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23000000%3Bstroke-miterlimit%3A10%3B%7D%3C%2Fstyle%3E%3Cpolyline%20class%3D%22st0%22%20points%3D%220%2C4.1%2026.6%2C4.1%2022.9%2C0.4%20%22%2F%3E%3C%2Fsvg%3E') no-repeat center / 73px 4px;
	}

	div.top-card_img img {
		width: 100%;
		transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
		-webkit-transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
	}

	a:hover div.top-card_img img {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

/*------------------------------
relation-list
------------------------------*/
.relation-list {
	margin: 100px 115px 0;
	border-top: 2px solid #e6e6e6;
}

.relation-list>div.wrapper {
	display: flex;
	max-width: 1120px;
	margin: 80px auto;
}

a.relation-list_link {
	width: 50%;
	display: flex;
}

div.relation-list_img {
	width: 45%;
	overflow: hidden;
	align-items: flex-start;
}

.relation-list_link img {
	width: 100%;
	transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
	-webkit-transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.relation-list_link:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

div.relation-list_txt {
	width: 45%;
	margin-left: 5%;
}

h2.relation-list_ttl {
	font-size: 1.25rem;
	line-height: 1.25;
	font-weight: bold;
}

div.relation-list_txt div.btn_more {
	margin-top: 20px;
}

@media screen and (max-width: 1000px) {
	.relation-list {
		margin: 50px 8vw;
		border-top: 1px solid #e6e6e6;
	}

	.relation-list>div.wrapper {
		display: block;
		max-width: 1120px;
		margin: 40px auto;
	}

	a.relation-list_link {
		width: 100%;
		display: flex;
		margin-bottom: 30px;
	}

	div.relation-list_img {
		width: 50%;
	}

	div.relation-list_txt {
		width: 50%;
	}

	h2.relation-list_ttl {
		font-size: 1.0rem;
		line-height: 1.25;
		font-weight: bold;
	}

	div.relation-list_txt div.btn_more {
		margin-top: 20px;
		text-align: left;
	}
}


/*------------------------------
COMPANY PAGE
------------------------------*/
.about header,
.history header,
.environment header {
	height: 500px;
	background: url(../img/company-bg.jpg) no-repeat center / cover;
	position: relative;
}

/*----anchor-link----*/
div.anchor-link {
	background: #cbd7d3;
}

div.anchor-link ul {
	display: flex;
	justify-content: center;
}

div.anchor-link ul li {
	margin: 0 40px;
}

div.anchor-link ul li a {
	display: inline-block;
	padding: 20px 0;
	transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	-webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

div.anchor-link ul li a:hover {
	opacity: 0.5;
}

div.anchor-link ul li a.active {
	border-bottom: 2px solid #000;
}

/*----section-about----*/
section.section-about h1,
section.section-about h2,
section.section-philosophy h2 {
	text-align: center;
	font-size: 1.875rem;
	font-weight: bold;
	margin-bottom: 50px;
}

section.section-about h3,
section.section-philosophy h3 {
	font-size: 1.25rem;
	font-weight: bold;
	margin: 50px 0 10px;
}

section.section-about,
section.section-philosophy {
	margin: 100px auto;
}

section.section-about:first-child {
	margin-top: 75px;
}

/*----greeting----*/
section.section_greeting {
	margin-top: 75px;
}

div.greeting_body {
	max-width: 1350px;
	width: 100%;
	min-height: 680px;
	padding: 0 115px;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
}

div.greeting_ph {
	width: 50%;
	position: absolute;
	left: 115px;
	top: 0;
	z-index: -1;
}

div.greeting_ph img {
	width: 100%;
}

div.greeting_txt {
	width: 50%;
	margin-left: 50%;
	padding-top: 40px;
}

p.greeting_read {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2.0;
	margin-bottom: 20px;
	white-space: nowrap;
}

div.philosophy_sign {
	text-align: right;
	margin-top: 30px;
}

div.philosophy_sign span {
	font-size: 1.2rem;
}

/*----about-box----*/
div.about-box {
	max-width: 736px;
	width: 84vw;
	margin: 50px auto 0;
}

div.about-box h2 {
	font-size: 1.5625rem;
	margin-bottom: 20px;
}

div.about-box p {
	margin-bottom: 30px;
}

div.about-box img {
	width: 100%;
}

div.about-box_rinen p {
	font-size: 1.125rem;
	text-indent: -20px;
	padding-left: 20px;
}

div.about-box dl {
	border-bottom: 1px solid #e6e6e6;
	display: flex;
	padding: 15px 0;
}

div.about-box dl.first {
	border-top: 1px solid #e6e6e6;
}

div.about-box dl dt {
	width: 30%;
}

div.about-box dl dd {
	width: 70%;
}

/*----access-map----*/
div.access-map {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 115px;
	box-sizing: border-box;
}

div.access-map iframe {
	width: 100%;
}

/*----list_env_txt----*/
ul.list_env_txt li {
	text-indent: -2.7em;
	margin-left: 2.2em;
}

ul.list_env_txt li li {
	margin-left: 2.7em;
}

ul.list_env_ph {
	display: flex;
	margin-top: 50px;
}

ul.list_env_ph.-type2 {
	margin-top: 20px;
}

ul.list_env_ph li {
	width: calc(85% / 4);
	margin-right: 5%;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

ul.list_env_ph li img {
	width: 100%;
}

ul.list_env_ph li:last-of-type {
	margin-right: 0;
}

/*----philosophy----*/
.philosophy header {
	height: 500px;
	background: url(../img/philosophy-bg.jpg) no-repeat center / cover;
	position: relative;
}

section.section-philosophy {
	margin-top: 75px;
}

div.philosophy-box {
	max-width: 1350px;
	width: 100%;
	padding: 0 115px;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
}

.philosophy_txt {
	margin-bottom: 60px;
}

div.philosophy_ceo {
	text-align: right;
	margin-top: 30px;
}

div.philosophy_ceo span {
	font-size: 1.5rem;
}

@media screen and (max-width: 1000px) {

	.about header,
	.history header,
	.environment header {
		max-height: 375px;
		height: 75vw;
		background: url(../img/company-bg_sp.jpg) no-repeat center / cover;
		position: relative;
	}

	/*----anchor-link----*/
	div.anchor-link ul li {
		font-size: 0.8125rem;
		margin: 0 15px;
	}

	div.anchor-link ul li a {
		display: inline-block;
		padding: 10px 0;
	}

	div.anchor-link ul li a.active {
		border-bottom: 2px solid #000;
	}

	/*----section-about----*/

	section.section-about h1,
	section.section-about h2,
	section.section-philosophy h2 {
		width: 84vw;
		text-align: left;
		font-size: 1.25rem;
		font-weight: bold;
		margin: 0 auto 10px;
	}

	section.section-about h3,
	section.section-philosophy h3 {
		font-size: 1.25rem;
		font-weight: bold;
		margin: 50px 0 10px;
	}

	section.section-about,
	section.section-philosophy {
		margin: 50px auto 80px;
	}

	section.section-about:first-child {
		margin-top: 50px;
	}

	/*----greeting----*/
	section.section_greeting {
		margin-top: 50px;
	}

	div.greeting_body {
		max-width: 1350px;
		width: 84vw;
		min-height: auto;
		padding: 0;
		margin: 0 auto;
		box-sizing: border-box;
		position: relative;
	}

	div.greeting_ph {
		width: 100%;
		position: relative;
		left: 0;
		top: 0;
		z-index: -1;
	}

	div.greeting_ph img {
		width: 100%;
	}

	div.greeting_txt {
		width: 100%;
		margin-left: 0%;
		padding-top: 20px;
	}

	p.greeting_read {
		font-size: 1.125rem;
		font-weight: bold;
		line-height: 2.0;
		margin-bottom: 20px;
		white-space: wrap;
	}

	div.philosophy_sign {
		text-align: right;
		margin-top: 30px;
	}

	div.philosophy_sign span {
		font-size: 1.125rem;
	}

	/*----about-box----*/
	div.about-box {
		max-width: 736px;
		width: 84vw;
		margin: 10px auto 0;
	}

	div.about-box_rinen p {
		font-size: 0.875rem;
		margin-bottom: 20px;
		text-indent: -17px;
		padding-left: 17px;
	}

	div.about-box dl {
		border-bottom: 1px solid #e6e6e6;
		display: flex;
		padding: 10px 0;
	}

	div.about-box dl dt,
	div.about-box dl dd {
		font-size: 0.875rem;
	}

	div.about-box_history dl {
		display: block;
	}

	div.about-box_history dl dt {
		width: 100%;
		margin-bottom: 10px;
	}

	div.about-box_history dl dd {
		width: 100%;
	}

	/*----access-map----*/
	div.access-map {
		max-width: 1350px;
		width: 84vw;
		margin: 0 auto;
		padding: 0;
		box-sizing: border-box;
	}

	div.access-map iframe {
		width: 100%;
		height: 84vw !important;
	}

	/*----list_env_txt----*/
	ul.list_env_txt li {
		font-size: 0.875rem;
	}

	ul.list_env_ph li {
		width: 47.5%;
		margin-right: 5%;
	}

	ul.list_env_ph li:nth-child(2n) {
		margin-right: 0;
	}

	ul.list_env_ph li:nth-child(3n) {
		margin-top: 5%;
	}

	ul.list_env_ph li:last-of-type {
		margin-top: 5%;
	}

	ul.list_env_ph {
		display: flex;
		flex-flow: wrap;
	}

	/*----philosophy----*/
	.philosophy header {
		max-height: 375px;
		height: 75vw;
		background: url(../img/philosophy-bg_sp.jpg) no-repeat center / cover;
		position: relative;
	}

	section.section-philosophy {
		margin-top: 50px;
	}

	div.philosophy-box {
		max-width: 1350px;
		width: 84vw;
		padding: 0;
		margin: 0 auto;
		box-sizing: border-box;
		position: relative;
	}

	div.philosophy_ceo {
		text-align: right;
		margin-top: 30px;
	}

	div.philosophy_ceo span {
		font-size: 1.125rem;
	}
}

/*------------------------------
BUSINESS
------------------------------*/
.business header {
	height: 500px;
	background: url(../img/business-bg.jpg) no-repeat center / cover;
	position: relative;
}

section.section-turning {
	max-width: 1350px;
	width: 100%;
	margin: 100px auto 0;
	padding: 0 115px;
	box-sizing: border-box;
}

section.section-turning h2,
section.section-facility h2 {
	text-align: center;
	font-size: 1.875rem;
	font-weight: bold;
	margin-bottom: 50px;
}

section.section-turning h3,
section.section-facility h3 {
	font-size: 1.25rem;
	font-weight: bold;
	margin: 50px 0 10px;
}

div.turning-item {
	display: flex;
	justify-content: space-between;
	margin: 80px 0;
}

div.turning-item_img {
	width: 47.5%;
}

div.turning-item_txt {
	width: 47.5%;
}

div.turning-item_img img {
	width: 100%;
}

/*facilities*/
section.section-facility {
	max-width: 1350px;
	width: 100%;
	margin: 100px auto 50px;
	padding: 0 115px;
	box-sizing: border-box;
}

ul.facility-img_fl {
	display: flex;
	justify-content: center;
}

ul.facility-img_fl li {
	width: 50%;
	text-align: center;
}

ul.facility-img_fl li:first-child {
	margin-left: 0;
}

ul.fac_ph_list3 li img,
ul.facility-img_fl li img {
	width: 100%;
	margin-bottom: 15px;
}

.machine-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.machine-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	background: #fff;
}

.machine-card h3 {
	font-weight: 600;
	margin-top: 0 !important;
	margin-bottom: .5rem !important;
}

@media screen and (max-width: 1000px) {
	.business header {
		max-height: 375px;
		height: 75vw;
		background: url(../img/business-bg_sp.jpg) no-repeat center / cover;
		position: relative;
	}

	section.section-turning,
	section.section-facility {
		width: 84vw;
		padding: 0;
		position: relative;
		z-index: 2;
		margin: 50px auto 80px;
	}

	section.section-turning h2 {
		width: 84vw;
		text-align: left;
		font-size: 1.25rem;
		font-weight: bold;
		margin: 0 auto 10px;
	}

	section.section-turning h3 {
		font-size: 1.25rem;
		font-weight: bold;
		margin: 50px 0 10px;
	}

	div.turning-item {
		display: block;
		justify-content: space-between;
		margin: 20px 0 40px;
	}

	div.turning-item_img {
		width: 100%;
		margin-bottom: 20px;
	}

	div.turning-item_txt {
		width: 100%;
	}

	div.turning-item_txt p {
		margin-bottom: 20px;
	}

	/*facilities*/
	ul.facility-img_fl {
		display: block;
	}

	ul.facility-img_fl li {
		width: 100%;
		margin: 0 0 25px 0;
		text-align: left;
	}
}

/*------------------------------
Contact PAGE
------------------------------*/
.contact header {
	height: 500px;
	background: url(../img/contact-bg.jpg) no-repeat center / cover;
	position: relative;
}

section.contact_tel {
	max-width: 736px;
	width: 100%;
	margin: 0 auto;
	background: #498D7B;
	text-align: center;
	padding: 40px 0;
	margin-top: 75px;
}

section.contact_tel .ftr-contact_tel {
	margin: 0 auto 0;
	background: #fff;
	width: 70%;
	padding: 10px 0 12px;
}

section.contact_tel .ftr-contact_num {
	color: #333;
}

section.contact_tel .ftr-contact_num span {
	width: 30px;
	vertical-align: text-top;
}

section.contact_tel .ftr-contact_notes {
	color: #333;
}

section.contact_form {
	max-width: 736px;
	width: 84vw;
	margin: 50px auto 0;
	margin-top: 100px;
}

section.contact_form.-thanks {
	margin: 50px auto 100px;
}

section.contact_form h2 {
	text-align: center;
	font-size: 1.875rem;
	font-weight: bold;
	margin-bottom: 50px;
}

h2.contact_ttl {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
	color: #333;
}

.back-btn {
	margin-top: 2rem;
}

.back-btn a {
	background: #eee;
	border-radius: 3px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 280px;
	padding: 10px 25px;
	color: #313131;
	transition: 0.3s ease-in-out;
	font-weight: 500;
}

.back-btn a:hover {
	background: #313131;
	color: #FFF;
}

.back-btn a:after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 3px solid #313131;
	border-right: 3px solid #313131;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
	border-radius: 1px;
	transition: 0.3s ease-in-out;
}

.back-btn a:hover:after {
	border-color: #FFF;
}

@media screen and (max-width: 1000px) {
	.contact header {
		max-height: 375px;
		height: 75vw;
		background: url(../img/contact-bg_sp.jpg) no-repeat center / cover;
		position: relative;
	}

	section.contact_tel {
		text-align: center;
		padding: 20px 8vw 30px;
		box-sizing: border-box;
		margin-top: 50px;
	}

	section.contact_form {
		margin-top: 50px;
	}

	section.contact_form h2 {
		width: 84vw;
		text-align: left;
		font-size: 1.25rem;
		font-weight: bold;
		margin: 0 auto 10px;
	}

	h2.contact_ttl {
		font-size: 1.25rem;
		font-weight: bold;
		margin-bottom: 10px;
		text-align: center;
		color: #333;
	}
}
