@charset "utf-8";

/***********************************************************************

------------------------------------------------------------------------
wrap
***********************************************************************/

.wrap1280, .wrap1280N {width: 1280px; margin: 0 auto;}
.wrap1200, .wrap1200N {width: 1200px; margin: 0 auto;}

@media only screen and (max-width: 767px) {
	.wrap1280, .wrap1200 {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.wrap1280N, .wrap1200N {
		width: 100%;
	}
}

/***********************************************************************

------------------------------------------------------------------------
header
***********************************************************************/

header {
	width: 100%;
	min-width: 1330px;
	background-color: #004387;
	color: #fff;
	height: 56px;
	position: absolute;
	top: 35px;
	z-index: 100;
}
header .h_wrap {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
	position: relative;
}
header a.h_logo {
	display: flex;
}
header a.h_denzai {
	display: flex;
}
header a.h_lang {
	font-weight: 700;
	display: inline-block;
	position: absolute;
	top: -34px;
	right: 15px;
	letter-spacing: 0;
}
header a.h_lang::before {
	content: "";
	display: inline-block;
	width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg);
	position: relative;
	top: -2px;
	margin-right: 10px;
}
@media only screen and (max-width: 767px) {
	header {
		min-width: 0;
		height: 70px;
		position: static;
		top: auto;
	}
	header .h_wrap {
		padding: 0 70px 0 15px;
	}
	header a.h_logo img {
		height: 30px;
	}
	header a.h_denzai {
		position: absolute;
		top: 12px;
		right: 70px;
	}
	header a.h_denzai img {
		height: 15px;
	}
	header a.h_lang {
		line-height: 1;
		font-size: 14px;
		top: 43px;
		right: 70px;
	}
	header a.h_lang::before {
		width: 5px;
		height: 5px;
		margin-right: 7px;
	}
}
@media only screen and (max-width: 500px) {
	header a.h_logo img {
		height: 20px;
	}
}

/* グロナビ
========================================== */

header nav {
}

/* ---------------------------
PC
----------------------------- */

@media only screen and (min-width: 768px) {
	header nav {
		display: block!important;
	}
	header nav ul.h_gNav {
		display: flex;
		align-items: center;
		column-gap: 15px;
		margin-left: 40px;
	}
	header nav ul.h_gNav li {
		position: relative;
	}
	header nav ul.h_gNav li a {
		display: block;
		padding: 5px;
		text-align: center;
		line-height: 1.2;
	}
	header nav ul.h_gNav li a:hover,
	header nav ul.h_gNav li a.active {
		opacity: 1;
		color: #f4cd00;
	}
	body.home header nav ul.h_gNav li a.active {
		color: #fff;
	}
	body.home header nav ul.h_gNav li a:hover {
		color: #f4cd00;
	}
	body.sub header nav ul.h_gNav > li:first-of-type > a.active,
	body.sub.mc_sub header nav ul.h_gNav > li ul li:first-of-type > a.active {
		color: #fff;
	}
	body.sub header nav ul.h_gNav > li:first-of-type > a:hover,
	body.sub.mc_sub header nav ul.h_gNav > li ul li:first-of-type > a:hover {
		color: #f4cd00;
	}
	header nav ul.h_gNav > li ul {
		display: none;
		opacity: 0;
		position: absolute;
		bottom: -80px;
		left: -5px;
		background-color: rgba(0,67,135,0.75);
		width: 200px;
		height: 80px;
		padding-top: 10px;
		transition: opacity 0.5s, display 0.5s;
		transition-behavior: allow-discrete;
	}
	header nav ul.h_gNav > li:hover ul {
		display: block;
		opacity: 1;
		@starting-style {
			opacity: 0;
		}
	}
	header nav ul.h_gNav > li ul li a {
		text-align: left;
	}
}

/* ---------------------------
スマホ
----------------------------- */

@media only screen and (max-width: 767px) {
	header nav {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 10;
		background-color: #eeeeef;
	}
	header nav ul.h_gNav li {
	}
	header nav ul.h_gNav li + li {
		border-top: 1px dotted #ccc;
	}
	header nav ul.h_gNav li a {
		padding: 10px 15px;
		display: block;
		position: relative;
		color: #000;
		font-weight: 700;
	}
	header nav ul.h_gNav li a::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 20px;
		width: 7px;
		height: 7px;
		border-top: #f4cd00 2px solid;
		border-right: #f4cd00 2px solid;
		transform: rotate(45deg) translateY(-50%);
	}
	header nav ul.h_gNav li a.active {
		color: #004387;
	}
	header nav ul.h_gNav li a.active::after {
		border-top-color: #004387;
		border-right-color: #004387;
	}
	body.sub header nav ul.h_gNav > li:first-of-type > a.active,
	body.sub.mc_sub header nav ul.h_gNav > li.sub_top > a.active {
		color: #000;
	}
	body.sub header nav ul.h_gNav > li:first-of-type > a.active::after,
	body.sub.mc_sub header nav ul.h_gNav > li.sub_top > a.active::after {
		border-top-color: #f4cd00;
		border-right-color: #f4cd00;
	}
	
/* ハンバーガーボタン */
	header .hambMenu {
		width: 60px;
		height: 70px;
		position: absolute;
		top: 0;
		right: 0;
		background-color: #004387;
	}
	header .hambMenu::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		background-color: #666;
		width: 1px;
		height: 100%;
	}
	header .hambMenu a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		position: relative;
	}
	header .hambMenu a:hover {
		opacity: 1;
	}
	header .hambMenu a span,
	header .hambMenu a span::before,
	header .hambMenu a span::after {
		display: block;
		width: 30px;
		height: 3px;
		background-color: #999;
		transition: all .25s linear;
	}
	header .hambMenu a span::before,
	header .hambMenu a span::after {
		content: "";
		position: absolute;
		right: 15px;
		transform-origin: 19%;
	}
	header .hambMenu a span::before {
		top: 23px;
	}
	header .hambMenu a span::after {
		bottom: 22px;
	}
	header .hambMenu a span.close {
		background-color: transparent;
	}
	header .hambMenu a span.close::before {
		right: 11px;
		top: 27px;
		width: 31px;
		transform: rotate(45deg);
	}
	header .hambMenu a span.close::after {
		right: 11px;
		bottom: 26px;
		width: 31px;
		transform: rotate(-45deg);
	}	
}

/***********************************************************************

------------------------------------------------------------------------
main
***********************************************************************/

#main {
	display: block;
}

/* Main Visual
========================================== */

#mv {
	position: relative;
	text-align: center;
}
#mv > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ---------------------------
HOME
----------------------------- */

body.home #mv {
	height: 760px;
}
body.home #mv h1 {
	text-align: right;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%,-30%);
}
body.home #mv h1 img {
	filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.75));
}
@media only screen and (max-width: 767px) {
	body.home #mv {
		height: 350px;
	}
	body.home #mv > img {
		object-position: 10% center;
	}
	body.home #mv h1 {
		transform: translate(50%,-50%);
	}
	body.home #mv h1 img {
		width: 80%;
	}
}
@media only screen and (max-width: 500px) {
	body.home #mv h1 img {
		width: 95%;
	}
}

/* ---------------------------
下層
----------------------------- */

body.sub #mv {
	height: 500px;
}
@media only screen and (max-width: 767px) {
	body.sub #mv {
		height: 200px;
	}
	body.sub #mv > img {
		object-position: 15% center;
	}
}

/* パンくずリスト
========================================== */

ul#pNav {
	display: flex;
	flex-wrap: wrap;
	line-height: 1;
	font-size: 13px;
	color: #595757;
}
ul#pNav li {
	padding-top: 10px;
	position: relative;
}
ul#pNav li:not(:last-of-type) {
	margin-right: 15px;
}
ul#pNav li:not(:last-of-type)::after {
	content: "";
	display: inline-block;
	margin-left: 8px;
	position: relative;
	top: -1px;
	width: 6px;
	height: 6px;
	border-top: #595757 1px solid;
	border-right: #595757 1px solid;
	transform: rotate(45deg);
}
ul#pNav li a:hover {
	opacity: 1;
	color: #f4cd00;
}
@media only screen and (max-width: 767px) {
	ul#pNav {
		background-color: #eee;
		padding: 0 15px 10px;
		font-size: 12px;
	}
	ul#pNav li:not(:last-of-type) {
		margin-right: 10px;
	}
	ul#pNav li:not(:last-of-type)::after {
		margin-left: 5px;
	}
}

/***********************************************************************

------------------------------------------------------------------------
footer
***********************************************************************/

footer {
	margin-top: 150px;
	background-color: #000;
	color: #fff;
}
@media only screen and (max-width: 767px) {
	footer {
		margin-top: 50px;
	}
	body.recruit footer,
	body.news footer {
		margin-top: 100px;
	}
}

/* お問い合わせ
========================================== */

footer .contact {
	color: #000;
}
footer .f-c_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}
footer .contact span {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	color: #fff;
	font-weight: 700;
	width: 160px;
	height: 70px;
	background-color: #000;
	position: relative;
}
footer .contact span::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -25px;
	border-top: 35px solid transparent;
	border-bottom: 35px solid transparent;
	border-left: 25px solid #000;
}
footer .contact a[href^="tel:"] {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 58px;
	font-weight: 700;
	letter-spacing: 0;
	margin-left: 15px;
}
footer .contact a[href^="tel:"] img {
	display: inline-block;
	position: relative;
	top: 5px;
	margin-right: 5px;
}
footer .contact p {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
	text-align: left;
}
footer .contact a.btnMail {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #000;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 700;
	width: 190px;
	height: 60px;
}
footer .contact a.btnMail img {
	display: inline-block;
	margin-right: 10px;
}
footer .contact a.btnMail:hover {
	background-color: #fff;
	opacity: 1;
}
@media only screen and (max-width: 767px) {
	footer .contact {
		padding: 20px 0;
	}
	footer .f-c_wrap {
		display: block;
		height: auto;
	}
	footer .contact span {
		width: 100%;
		height: auto;
		font-size: 16px;
		padding: 5px;
	}
	footer .contact span::after {
		display: none;
	}
	footer .contact a[href^="tel:"] {
		font-size: 30px;
		line-height: 1;
		padding: 5px;
		margin-top: 15px;
		margin-left: 0;
	}
	footer .contact a[href^="tel:"] img {
		width: 22px;
		top: 2px;
		margin-right: 10px;
	}
	footer .contact p {
		font-size: 16px;
		text-align: center;
	}
	footer .contact a.btnMail {
		margin: 20px auto 0;
		width: 300px;
		height: 50px;
		border-radius: 5px;
	}
}

/* サイトマップ
========================================== */

footer .sitemap {
	padding-top: 40px;
	padding-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
footer .sitemap a.f_logo {
	display: block;
}
footer .sitemap a.f_logo img {
	width: 452px;
}
footer .sitemap nav {
	margin-left: 0;
	font-size: 18px;
}
footer .sitemap nav > ul {
	display: flex;
	flex-wrap: wrap;
}
footer .sitemap nav > ul > li {
	line-height: 1.2;
}
footer .sitemap nav > ul > li > a {
	display: inline-block;
	line-height: 1.2;
}
footer .sitemap nav > ul > li ul {
	line-height: 1.6;
	margin-top: 5px;
}
footer .sitemap nav > ul > li ul li a {
	font-weight: 400;
	display: inline-block;
	position: relative;
	padding-left: 25px;
}
footer .sitemap nav > ul > li ul li a::before {
	content: "";
	width: 5px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 14px;
	left: 10px;
}
footer .sitemap nav ul li a,
footer .sitemap .copy a {
	font-weight: 700;
}
footer .sitemap nav ul li a:hover,
footer .sitemap .copy a:hover {
	opacity: 1;
	color: #f4cd00;
}
footer .sitemap .copy {
	width: 100%;
	margin-top: 40px;
	padding-right: 100px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
footer .sitemap .copy p.copyright {
	letter-spacing: 0;
}
footer .sitemap .copy p.copyright small {
	font-weight: 700;
}
footer .sitemap a.pagetop {
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 10px;
}
@media only screen and (min-width: 768px) {
	footer .sitemap nav > ul {
		width: 760px;
		row-gap: 30px;
	}
	footer .sitemap nav > ul > li:nth-of-type(1),
	footer .sitemap nav > ul > li:nth-of-type(6) {
		width: 150px;
	}
	footer .sitemap nav > ul > li:nth-of-type(2),
	footer .sitemap nav > ul > li:nth-of-type(7) {
		width: 170px;
	}
	footer .sitemap nav > ul > li:nth-of-type(3),
	footer .sitemap nav > ul > li:nth-of-type(8) {
		width: 245px;
	}
}
@media only screen and (max-width: 767px) {
	footer .sitemap {
		padding-top: 20px;
		display: block;
	}
	footer .sitemap a.f_logo {
		margin: 0 auto;
		width: 60%;
		max-width: 304px;
	}
	footer .sitemap a.f_logo img {
		width: 100%;
	}
	footer .sitemap nav {
		margin-left: 0;
		font-size: 15px;
		margin-top: 12px;
	}
	footer .sitemap nav > ul {
		border-top: 1px solid #666;
	}
	footer .sitemap nav > ul > li {
		width: 50%;
		margin-bottom: 0;
		border-bottom: 1px solid #666;
	}
	footer .sitemap nav > ul > li:nth-of-type(4) {
		padding-left: 0;
	}
	footer .sitemap nav > ul > li:nth-of-type(odd) {
		border-right: 1px solid #666;
	}
	footer .sitemap nav ul li a {
		display: flex;
		height: 100%;
		min-height: 52px;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		padding: 8px 15px;
		position: relative;
	}
	footer .sitemap nav ul li a::after,
	footer .sitemap .copy a::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 20px;
		width: 7px;
		height: 7px;
		border-top: #999 2px solid;
		border-right: #999 2px solid;
		transform: rotate(45deg) translateY(-50%);
	}
	footer .sitemap .copy {
		display: block;
		margin-top: 20px;
		padding: 0 15px;
	}
	footer .sitemap .copy a {
		display: inline-block;
		font-size: 14px;
		padding: 6px 0;
		position: relative;
	}
	footer .sitemap .copy a::after {
		right: -15px;
	}
	footer .sitemap .copy p.copyright {
		font-size: 10px;
	}
	footer .sitemap a.pagetop {
		right: 10px;
		bottom: 10px;
		width: 60px;
	}
}