@charset "utf-8";

/*******************************************

-------------------------------------------
wrap
********************************************/

.wrap {
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
}
.wrap1000 {max-width: 1000px; width: 100%; margin-left: auto; margin-right: auto;}
.wrap940  {max-width: 940px; width: 100%; margin-left: auto; margin-right: auto;}

@media only screen and (max-width: 768px) {
	.wrap {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*******************************************

-------------------------------------------
header
********************************************/

header {
	display: flex;
	background-color: #fff;
	height: 150px;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
header a.h_logo {
	display: block;
	width: 360px;
}
header a.h_logo img {
	display: block;
	width: 100%;
}
@media only screen and (max-width: 1260px) {
	header {
		display: block;
		padding-top: 30px;
	}
	header a.h_logo {
		margin: 0 auto;
		width: 100%;
		max-width: 450px;
	}
}
@media only screen and (max-width: 768px) {
	header {
		display: flex;
		height: 60px;
		padding-top: 0;
	}
	header a.h_logo {
		width: 225px;
		margin-left: 0;
	}
}

/* グロナビ
========================================== */

header .gNav {
}
header .gNav ul a,
header .gNav ul p {
	display: inline-block;
	padding: 10px 15px;
	line-height: 1;
}

/* お問い合わせボタン */
header .gNav ul.gNavList > li button.btnContact {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 170px;
	height: 40px;
	background-color: #54c3f1;
	color: #fff!important;
	border-radius: 50vh;
	border: none;
	transition: all 0.2s linear;
	font-family: 'Figtree', 'Noto Sans JP', sans-serif;
}
header .gNav ul.gNavList > li button.btnContact:hover {
	cursor: pointer;
}
header .gNav ul.gNavList > li button.btnContact::before {
	content: "";
	display: inline-block;
	background: url("../img/common/ic_mail_white.svg") center / cover no-repeat;
	width: 18px;
	height: 14px;
	margin-right: 10px;
	transition: all 0.2s linear;
}
@media only screen and (min-width: 769px) {
	header .gNav a.current,
	header .gNav a:hover {
		opacity: 1!important;
		color: #54c3f1!important;
	}
	header .gNav ul.gNavList > li button.btnContact:hover {
		background-color: #193574;
	}	
}
@media only screen and (max-width: 768px) {
	header .gNav ul.gNavList > li:last-of-type {
		width: 100%;
		padding: 0 20px;
		margin-top: 20px;
	}
	header .gNav ul.gNavList > li button.btnContact {
		width: 100%;
		max-width: 400px;
		height: 54px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ---------------------------
PCナビ
----------------------------- */

@media only screen and (min-width: 769px) {
	header .gNav {
		display: block!important;
	}
	header .gNav ul {
		font-size: 14px;
	}
	header .gNav ul.gNavList {
		display: flex;
		height: 150px;
	}
	header .gNav ul.gNavList > li {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: all 1s linear;
	}
	header .gNav ul.gNavList > li + li {
		margin-left: 30px;
	}
	header .gNav ul.gNavList > li > p {
		position: relative;
		transition: all 1s linear;
	}
	body.service header .gNav ul.gNavList > li.genre_service > p {
		color: #54c3f1;
	}
	header .gNav ul.gNavList > li > a {
		position: relative;
	}
	header .gNav ul.gNavList > li:hover > p::after,
	header .gNav ul.gNavList > li:nth-of-type(2):hover > a::after {
		content: "";
		display: block;
		width: 1px;
		height: 15px;
		background-color: #193574;
		position: absolute;
		top: 35px;
		right: 50%;
		margin-left: 3px;
	}
	
	/* 入れ子 */
	header .gNav ul.gNavList > li .inMenu {
		display: none;
		position: absolute;
		background-color: #193574;
		padding: 20px 15px;
		top: 108px;
		left: 0;
		right: 0;
		animation: navopen 0.5s ease;
		z-index: 2;
	}
	header .gNav ul.gNavList > li:hover .inMenu {
		display: block;
	}
	header .gNav ul.gNavList > li ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	header .gNav ul.gNavList > li ul li {
		margin: 10px 0;
	}
	header .gNav ul.gNavList > li ul li + li {
		margin-left: 15px;
	}
	header .gNav ul.gNavList > li ul li a {
		text-align: center;
		color: #fff;
	}
	header .gNav ul.gNavList > li ul li a::after {
		content: "";
		display: inline-block;
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg);
		position: relative;
		top: -1px;
		margin-left: 10px;
		transition: all 0.2s linear;
	}
	header .gNav ul.gNavList > li ul li a:hover::after,
	header .gNav ul.gNavList > li ul li a.current::after {
		border-top-color: #54c3f1;
		border-right-color: #54c3f1;
	}
}
@media only screen and (min-width: 769px) and (max-width: 1260px) {
	header .gNav ul.gNavList > li .inMenu {
		top: 150px;
		padding: 5px 15px;
	}
	header .gNav ul.gNavList {
		justify-content: center;
		height: 55px;
		margin-top: 20px;
	}
}
@media only screen and (min-width: 769px) and (max-width: 850px) {
	header .gNav ul.gNavList > li + li {
		margin-left: 15px;
	}
}
@keyframes navopen {
	0% 		{opacity: 0;}
	100% 	{opacity: 1;}
}

/* ---------------------------
SPナビ
----------------------------- */

@media only screen and (max-width: 768px) {
	header .gNav {
		display: none;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		background-color: #193574;
		width: 100vw;
		height: calc(100vh - 60px);
		height: calc(100dvh - 60px);
		z-index: 100;
	}
	header .gNav ul a,
	header .gNav ul p {
		color: #fff;
		padding: 16px 20px;
		width: 100%;
		font-size: 15px;
	}
	header .gNav ul.gNavList {
		padding-top: 10px;
		padding-bottom: 30px;
		display: flex;
		flex-wrap: wrap;
	}
	header .gNav ul.gNavList > li {
		width: calc(100% / 3);
	}
	header .gNav ul.gNavList > li > a::after {
		content: "";
		display: inline-block;
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg);
		position: relative;
		top: -1px;
		margin-left: 10px;
	}
	
	/* 入れ子有り */
	header .gNav ul.gNavList > li[class^="genre_"] {
		width: 100%;
		margin-bottom: 15px;
	}
	header .gNav ul.gNavList > li[class^="genre_"] > a::before,
	header .gNav ul.gNavList > li[class^="genre_"] > p::before {
		content: "";
		display: inline-block;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		border: 3px solid #fff;
		margin-right: 10px;
	}
	header .gNav ul.gNavList > li[class^="genre_"] ul {
		display: flex;
		flex-wrap: wrap;
		padding: 0 10px;
	}
	header .gNav ul.gNavList > li[class^="genre_"] ul li {
		width: 50%;
	}
	header .gNav ul.gNavList > li[class^="genre_"] ul li:nth-of-type(n+3) {
		margin-top: 10px;
	}
	header .gNav ul.gNavList > li[class^="genre_"] ul li a {
		display: flex;
		width: calc(100% - 10px);
		min-height: 48px;
		justify-content: flex-start;
		align-items: center;
		margin: 0 auto;
		background-color: #fff;
		color: #193574;
		border-radius: 5px;
		font-size: 14px;
		line-height: 1.4;
		padding: 10px 20px 10px 10px;
		letter-spacing: 0;
		position: relative;
	}
	header .gNav ul.gNavList > li[class^="genre_"] ul li a::after {
		content: "";
		display: block;
		width: 6px;
		height: 6px;
		border-top: 2px solid #193574;
		border-right: 2px solid #193574;
		transform: rotate(45deg) translateY(-50%);
		position: absolute;
		top: 50%;
		right: 10px;
	}
	
	/* メニューOPEN時の処理 */
	body.close {
		overflow: hidden;
	}
	header .gNav .in-scroll {
		height: 100%;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		position: relative;
	}
}
@media only screen and (max-width: 360px) {
	header .gNav ul a,
	header .gNav ul p {
		padding: 16px 15px;
	}
}

/* ---------------------------
ハンバーガーボタン
----------------------------- */

@media only screen and (min-width: 769px) {
	header .hambMenu {
		display: none;
	}
}
@media only screen and (max-width: 768px) {
	header .hambMenu {
		width: 60px;
		height: 60px;
		position: absolute;
		top: 0;
		right: 0;
		background-color: #54c3f1;
	}
	header .hambMenu a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		position: relative;
	}
	header .hambMenu a span,
	header .hambMenu a span::before,
	header .hambMenu a span::after {
		display: block;
		width: 40px;
		height: 2px;
		background-color: #fff;
		transition: all .25s linear;
	}
	header .hambMenu a span::before,
	header .hambMenu a span::after {
		content: "";
		position: absolute;
		right: 10px;
		transform-origin: 19%;
	}
	header .hambMenu a span::before {
		top: 20px;
	}
	header .hambMenu a span::after {
		bottom: 20px;
	}
	header .hambMenu a span.close {
		background-color: transparent;
	}
	header .hambMenu a span.close::before {
		right: 5px;
		width: 42px;
		transform: rotate(45deg);
	}
	header .hambMenu a span.close::after {
		right: 5px;
		width: 42px;
		transform: rotate(-45deg);
	}
}

/*******************************************

-------------------------------------------
main
********************************************/

#main {
	display: block;
}
#main .mainArea.fadein-up {
	transition-delay: 1s;
}

/*******************************************

-------------------------------------------
footer
********************************************/

footer {
	margin-top: 150px;
	display: flex;
	flex-wrap: wrap;
}
body.home footer {
	margin-top: 100px;
}
body.recruit footer {
	margin-top: 80px;
}
@media only screen and (max-width: 768px) {
	footer {
		margin-top: 80px!important;
	}
}

/* ページトップへ
========================================== */

a#pageTop {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #54c3f1;
	position: fixed;
	bottom: 100px;
	right: 3%;
	z-index: 99;
}
a#pageTop img {
	caption-side: bottom;
	width: 16px;
	height: auto;
	transform: rotate(-90deg);
	position: relative;
	top: 0;
	transition: all 0.2s linear;
}
a#pageTop:hover {
	opacity: 1;
}
a#pageTop:hover img {
	top: -10px;
}
@media screen and (max-width:768px) {
	a#pageTop {
		bottom: 10px;
		right: 20px;
	}
}

/* 採用情報 ＆ お問い合わせ
========================================== */

footer .f_recruit,
footer .f_contact {
	width: 50%;
}
@media only screen and (max-width: 768px) {
	footer .f_recruit,
	footer .f_contact {
		width: 100%;
	}
}

/* ---------------------------
採用情報
----------------------------- */

footer .f_recruit {
}
footer .f_recruit a {
	display: block;
	overflow: hidden;
	width: 100%;
	position: relative;
}
footer .f_recruit a img {
	width: 100%;
	height: auto;
	transition: transform .6s ease;
}
footer .f_recruit a:hover {
	opacity: 1;
}
footer .f_recruit a:hover img {
	opacity: 1;
	transform: scale(1.1);
}
footer .f_recruit a .f_recruit_conts {
	width: 100%;
	position: absolute;
	bottom: 30px;
	right: 50%;
	transform: translateX(50%);
	padding: 0 15px;
}
footer .f_recruit a h2 {
	text-align: center;
}
footer .f_recruit a h2 span {
	text-align: center;
}
footer .f_recruit a p {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	width: 100%;
	max-width: 430px;
	min-height: 40px;
	padding: 10px 15px;
	line-height: 1.2;
	margin: 10px auto 0;
}
@media only screen and (max-width: 1200px) {
	footer .f_recruit a {
		max-height: 330px;
	}
}
@media only screen and (max-width: 768px) {
	footer .f_recruit {
		padding: 0 15px;
	}
	footer .f_recruit a {
		border-radius: 10px;
	}
}
@media only screen and (max-width: 550px) {
	footer .f_recruit a {
		max-height: 300px;
	}
}
@media only screen and (max-width: 500px) {
	footer .f_recruit a {
		max-height: none;
	}
	footer .f_recruit a .f_recruit_conts {
		bottom: 20px;
	}
	footer .f_recruit a p {
		font-size: 15px;
		min-height: 0;
		margin-top: 20px;
	}
}

/* ---------------------------
お問い合わせ
----------------------------- */

footer .f_contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
}
footer .f_contact h2 {
	width: 100%;
	line-height: 1;
	position: relative;
	text-align: center;
}
footer .f_contact h2::before {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background-color: #193574;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: 1;
}
footer .f_contact h2 span {
	display: inline-block;
	padding: 0 25px;
	font-weight: 700;
	color: #193574;
	font-size: 34px;
	position: relative;
	z-index: 1;
}
footer .f_contact form {
	width: calc(100% - 40px);
}
footer .f_contact button.btnForm {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 580px;
	height: 100px;
	border-radius: 50vh;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	background-color: #193574;
	margin: 40px auto 0;
	border: none;
	transition: all 0.2s linear;
	font-family: 'Figtree', 'Noto Sans JP', sans-serif;
}
footer .f_contact button.btnForm::before {
	content: "";
	display: inline-block;
	background: url("../img/common/ic_mail_white.svg") center / cover no-repeat;
	width: 40px;
	height: 29px;
	margin-right: 15px;
}
footer .f_contact button.btnForm:hover {
	background-color: #54c3f1;
	cursor: pointer;
}
footer .f_contact a[href^="tel:"] {
	display: block;
	width: calc(100% - 40px);
	font-size: 30px;
	font-weight: 700;
	color: #193574;
	text-align: center;
	margin-top: 20px;
	line-height: 1.0;
}
footer .f_contact a[href^="tel:"] span {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	top: -3px;
	margin-left: 10px;
}
@media only screen and (max-width: 900px) {
	footer .f_contact button.btnForm {
		font-size: 20px;
		height: 70px;
	}
	footer .f_contact button.btnForm::before {
		width: 25px;
		height: 19px;
	}
}
@media only screen and (max-width: 768px) {
	footer .f_contact {
		margin-top: 50px;
		padding: 40px 0 30px;
	}
	footer .f_contact h2 span {
		font-size: 25px;
	}
	footer .f_contact button.btnForm {
		margin-top: 30px;
	}
	footer .f_contact a[href^="tel:"] {
		font-size: 22px;
		margin-top: 15px;
	}
	footer .f_contact a[href^="tel:"] span {
		font-size: 14px;
	}
}

/* サイトマップ
========================================== */

footer .f_sitemap {
	width: 100%;
	color: #666;
	padding: 90px 30px;
}
footer .f_sitemap .f_sitemap_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
footer .f_sitemap a {
	color: #666;
}
@media only screen and (max-width: 1000px) {
	footer .f_sitemap {
		padding: 50px 30px 40px;
	}
}
@media only screen and (max-width: 768px) {
	footer .f_sitemap {
		padding: 45px 30px 25px;
	}
}
@media only screen and (max-width: 640px) {
	footer .f_sitemap {
		padding: 45px 0 0;
	}
}

/* ---------------------------
ロゴ周り
----------------------------- */

footer .f_sitemap .f_company {
	font-size: 14px;
	line-height: 1.4;
}
footer .f_sitemap .f_company a.f_logo {
	display: inline-block;
	width: 360px;
}
footer .f_sitemap .f_company a.f_logo + p {
	font-weight: 700;
	margin-top: 30px;
}
footer .f_sitemap .f_company address {
	margin-top: 15px;
}
footer .f_sitemap .f_company address a {
	display: inline-block;
	margin-right: 15px;
}
footer .f_sitemap .f_company address span {
	display: inline-block;
}
@media only screen and (max-width: 768px) {
	footer .f_sitemap .f_company a.f_logo {
		width: 225px;
	}
	footer .f_sitemap .f_company a.f_logo + p {
		margin-top: 40px;
	}
	footer .f_sitemap .f_company address {
		margin-top: 5px;
	}
}
@media only screen and (max-width: 640px) {
	footer .f_sitemap .f_company {
		padding: 0 15px;
	}
}

/* ---------------------------
サイトマップ
----------------------------- */

footer .f_sitemap .f_nav {
}
@media only screen and (max-width: 1000px) {
	footer .f_sitemap .f_nav {
		width: 100%;
	}
}

/* ---------------------------
PC
----------------------------- */

footer .f_sitemap .f_nav .f_nav_pc {
	display: flex;
	line-height: 1.9;
}
footer .f_sitemap .f_nav .f_nav_pc a {
	display: inline-block;
}
footer .f_sitemap .f_nav .f_nav_pc button.btnContact {
	font-family: 'Figtree', 'Noto Sans JP', sans-serif;
	font-weight: 700;
	border: none;
	background-color: transparent;
	outline: none;
	padding: 0;
	appearance: none;
	color: #666;
	font-size: 16px;
	transition: all 0.2s linear;
}
footer .f_sitemap .f_nav .f_nav_pc a:hover,
footer .f_sitemap .f_nav .f_nav_pc button.btnContact:hover {
	opacity: 1;
	color: #54c3f1;
}
footer .f_sitemap .f_nav .f_nav_pc button.btnContact:hover {
	cursor: pointer;
}
footer .f_sitemap .f_nav .f_nav_pc > ul {
	margin-left: 45px;
}
footer .f_sitemap .f_nav .f_nav_pc > ul > li {
}
footer .f_sitemap .f_nav .f_nav_pc > ul > li + li {
	margin-top: 7px;
}
footer .f_sitemap .f_nav .f_nav_pc > ul > li > a,
footer .f_sitemap .f_nav .f_nav_pc > ul > li > p {
	font-weight: 700;
}
footer .f_sitemap .f_nav .f_nav_pc > ul > li ul {
	font-size: 14px;
}
footer .f_sitemap .f_nav .f_nav_pc > ul > li ul li {
}
footer .f_sitemap .f_nav .f_nav_pc > ul > li ul li a {
}
footer .f_sitemap .f_nav .f_nav_pc > ul > li ul li a::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 1px;
	background-color: #666;
	position: relative;
	top: -5px;
	margin-right: 10px;
}
@media only screen and (max-width: 1000px) {
	footer .f_sitemap .f_nav .f_nav_pc {
		margin-top: 30px;
		padding-top: 30px;
		border-top: 1px solid #ccc;
		justify-content: space-around;
	}
	footer .f_sitemap .f_nav .f_nav_pc > ul {
		margin-left: 0;
	}
}

/* ---------------------------
SP
----------------------------- */

footer .f_sitemap .f_nav .f_nav_sp {
	margin-top: 40px;
}
footer .f_sitemap .f_nav .f_nav_sp .f_nav_sp_normal {
	padding: 10px 15px 30px;
	color: #fff;
	font-size: 15px;
}
footer .f_sitemap .f_nav .f_nav_sp .f_nav_sp_normal a {
	display: block;
	color: #fff;
	border-bottom: 1px dotted #a3aec7;
	font-weight: 700;
	padding: 8px 25px 8px 0;
	margin-top: 3px;
	position: relative;
}
footer .f_sitemap .f_nav .f_nav_sp .f_nav_sp_normal a::after {
	content: "";
	display: block;
	background: url("../img/common/ic_arrow_white.svg") center / cover no-repeat;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	opacity: 0.6;
}
footer .f_sitemap .f_nav .f_nav_sp .f_nav_sp_normal button.btnContact {
	display: block;
	width: 100%;
	color: #fff;
	border: none;
	border-bottom: 1px dotted #a3aec7;
	font-weight: 700;
	padding: 8px 25px 8px 0;
	margin-top: 3px;
	position: relative;
	line-height: 2;
	text-align: left;
	font-family: 'Figtree', 'Noto Sans JP', sans-serif;
	background-color: transparent;
	outline: none;
	appearance: none;
	font-size: 15px;
	transition: all 0.2s linear;
}
footer .f_sitemap .f_nav .f_nav_sp .f_nav_sp_normal button.btnContact::after {
	content: "";
	display: block;
	background: url("../img/common/ic_arrow_white.svg") center / cover no-repeat;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	opacity: 0.6;
}
footer .f_sitemap .f_nav .f_nav_sp .f_nav_sp_normal p {
	border-bottom: 1px solid #fff;
	font-weight: 700;
	margin-top: 18px;
	padding-bottom: 5px;
}
footer .f_sitemap .f_nav .f_nav_sp .f_nav_sp_normal ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer .f_sitemap .f_nav .f_nav_sp .f_nav_sp_normal ul li {
	width: calc((100% - 20px) / 2);
}
footer .f_sitemap .f_nav .f_nav_sp .f_nav_sp_normal > ul > li > ul li a {
	font-size: 13px;
	font-weight: 400;
}
footer .f_sitemap .f_nav .f_nav_sp ul.f_nav_sp_mini {
	display: flex;
	flex-wrap: wrap;
	padding: 15px;
}
footer .f_sitemap .f_nav .f_nav_sp ul.f_nav_sp_mini li + li::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 10px;
	background-color: #666;
	margin-left: 8px;
	margin-right: 8px;
}
footer .f_sitemap .f_nav .f_nav_sp ul.f_nav_sp_mini li a {
	display: inline-block;
	font-weight: 700;
	font-size: 12px;
}

/* コピーライト
========================================== */

footer p.copy {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 70px;
	font-size: 12px;
	text-align: center;
	padding: 5px 15px;
	border-top: 1px solid #ccc;
	color: #666;
}
@media only screen and (max-width: 768px) {
	footer p.copy {
		height: 50px;
		font-size: 10px;
	}
}

