@charset "utf-8";

/*******************************************

-------------------------------------------
wrap
********************************************/

.wrap, .wrapW {
	padding-left: 15px;
	padding-right: 15px;
}
.wrap1200 {width: 1200px; margin: 0 auto;}

@media only screen and (max-width: 767px) {
	.wrapW {
		padding-left: 0;
		padding-right: 0;
	}
	.wrap1200 {
		width: 100%;
	}
}

/*******************************************

-------------------------------------------
header
********************************************/

header {
	width: 100%;
	position: fixed;
	top: 20px;
	left: 0;
	right: 0;
	opacity: 1;
	z-index: 2;
	transform: translate(0,50px);
	transition: all 0.3s ease-in, transform 0.4s ease;
}
header.scrollin {
	transform: translate(0,0);
	transition-delay:0.1s;
}
header.fixed {
	top: 0;
}
header.show_out {
	opacity: 0;
	z-index: -1;
}
header .h_wrap {
	width: 1200px;
	height: 88px;
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	transition: all 0.3s ease-in;
}
header.fixed .h_wrap {
	border-radius: 0 0 5px 5px;
}
header a.h_logo {
	width: 450px;
}
header a.h_logo img {
	width: 100%;
}
@media only screen and (max-width: 767px) {
	header {
		top: 10px;
		transform: translate(0,60px);
	}
	header .h_wrap {
		width: 100%;
		height: 50px;
		padding: 0 15px;
	}
	header a.h_logo {
		width: 230px;
		display: flex;
	}
}

/* グロナビ
========================================== */

header nav {
	position: relative;
}

/* 言語選択 */
header nav ul.h_lang_menu {
	width: 104px;
	height: 40px;
	border: 1px solid #cacaca;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 4px;
	position: absolute;
}
header nav ul.h_lang_menu li {
}
header nav ul.h_lang_menu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 22px;
	border-radius: 3px;
	background-color: #fff;
	color: #0e357f;
	font-size: 17px;
}
header nav ul.h_lang_menu li:nth-of-type(2) a {
	background-color: #0e357f;
	color: #fff;
	opacity: 1;
}

/* ---------------------------
PC
----------------------------- */

@media only screen and (min-width: 768px) {
	header nav {
		display: block!important;
	}

/* 言語選択 */
	header nav ul.h_lang_menu {
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
	}
	
/* グロナビ */
	header nav .gNav {
		display: flex;
		align-items: center;
		column-gap: 160px;
		padding-right: 200px;
	}
	
/* グロナビ：メインメニュー */
	header nav .gNav ul.h_main_menu {
		display: flex;
		align-items: center;
		column-gap: 80px;
	}
	header nav .gNav ul.h_main_menu > li {
	}
	header nav .gNav ul.h_main_menu > li > a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 88px;
		font-size: 18px;
		color: #0e357f;
		position: relative;
	}
	header nav .gNav ul.h_main_menu > li:hover > a {
		opacity: 1;
		color: #5591c8;
	}
	header nav .gNav ul.h_main_menu > li:hover > a::after {
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: #5591c8;
	}
	
/* グロナビ：メインメニュー（入れ子） */	
	header nav .gNav ul.h_main_menu > li .inMenu {
		display: none;
		opacity: 0;
		width: 1200px;
		position: absolute;
		top: 88px;
		right: -20px;
		padding-top: 8px;
		transition: opacity 0.5s, display 0.5s;
		transition-behavior: allow-discrete;
	}
	header nav .gNav ul.h_main_menu > li:hover .inMenu {
		display: block;
		opacity: 1;
		@starting-style {
			opacity: 0;
		}
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu {
		width : 100%;
		padding: 5px 40px 30px;
		background-color: #fff;
		box-shadow: 0 0 5px rgba(0,0,0,0.1);
		border-radius: 8px;
	}
	header nav .gNav ul.h_main_menu > li .inMenu a {
		font-size: 19px;
		color: #0e357f;
	}
	header nav .gNav ul.h_main_menu > li .inMenu a:hover {
		opacity: 1;
		color: #5591c8;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > a {
		display: flex;
		align-items: center;
		column-gap: 18px;
		padding: 8px 5px;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > a span.arrow,
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a span.arrow {
		width: 30px;
		height: 28px;
		border-radius: 2px;
		overflow: hidden;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > a span.arrow {
		display: inline-flex;
		background-color: #eaeef7;
		position: relative;
		top: 1px;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > a span.arrow::before,
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a span.arrow::before {
		content: "";
		display: block;
		position: absolute;
		width: 0;
		height: 100%;
		left: 0;
		background-color: #5591c8;
		transition-duration: .3s;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > a:hover span.arrow::before,
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a:hover span.arrow::before {
		width: 100%;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > a span.arrow::after,
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a span.arrow::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		background: url("../img/common/arrow_blue.svg") center / cover no-repeat;
		width: 8px;
		height: 12px;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > a:hover span.arrow::after,
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a:hover span.arrow::after {
		background-image: url("../img/common/arrow_white.svg");
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul {
		border-top: 1px solid #cacaca;
		padding-top: 15px;
		display: flex;
		flex-wrap: wrap;
		gap: 15px 20px;
		margin-top: 5px;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li {
		width: calc((100% - 40px) / 3);
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li.long {
		width: auto;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		align-content: center;
		line-height: 1.3;
		background-color: rgba(228,238,245,1.00);
		border: 1px solid #cacaca;
		border-radius: 8px;
		padding: 10px 60px 10px 10px;
		min-height: 80px;
		position: relative;
		font-size: 17px;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a:hover {
		background-color: rgba(228,238,245,0.5);
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a span.arrow {
		display: block;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		background-color: #fff;
	}
	
/* グロナビ：採用情報リンク */	
	header nav ul.h_recruit {
	}
	header nav ul.h_recruit li {
	}
	header nav ul.h_recruit li a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100px;
		height: 58px;
		background-color: #f7931e;
		border-radius: 4px;
		color: #fff;
		font-size: 18px;
		position: relative;
		overflow: hidden;
	}
	header nav ul.h_recruit li a::before  {
		content: "";
		display: block;
		position: absolute;
		width: 0;
		height: 100%;
		left: 0;
		background-color: #5591c8;
		transition-duration: .3s;
	}
	header nav ul.h_recruit li a:hover::before  {
		width: 100%;
	}
	header nav ul.h_recruit li a span {
		position: relative;
		z-index: 1;
	}
}

/* ---------------------------
スマホ
----------------------------- */

@media only screen and (max-width: 767px) {
	header nav {
		display: none;
		position: absolute;
		top: -10px;
		left: 0;
		right: 0;
		width: 100vw;
		height: 100vh;
		height: 100dvh;
		background-color: #fff;
		z-index: 10;
	}
	header nav .in-wrap {
		position: relative;
	}
	
/* 言語選択 */
	header nav ul.h_lang_menu {
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
	}
	header nav ul.h_lang_menu li a {
		font-size: 14px;
	}
	
/* グロナビ */
	header nav .gNav {
		padding: 80px 30px 100px;
	}
	header nav .gNav a {
		color: #0e357f;
		font-weight: 500;
	}
	
/* グロナビ：メインメニュー */
	header nav .gNav ul.h_main_menu {
	}
	header nav .gNav ul.h_main_menu > li {
		position: relative;
	}
	header nav .gNav ul.h_main_menu > li > a {
		display: flex;
		align-items: center;
		height: 60px;
		position: relative;
		line-height: 1.4;
		padding: 5px 0;
	}
	header nav .gNav ul.h_main_menu > li:has(.inMenu) > a {
		width: calc(100% - 40px);
	}
	header nav .gNav ul.h_main_menu > li > a + span.slide-open {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 60px;
		position: absolute;
		top: 0;
		right: -15px;
	}
	header nav .gNav ul.h_main_menu > li > a + span.slide-open::before,
	header nav .gNav ul.h_main_menu > li > a + span.slide-open::after {
		content: "";
		position: absolute;
		background-color: #0e357f;
		top: 50%;
		transform: translateY(-50%);
		transition-duration: .3s;
	}
	header nav .gNav ul.h_main_menu > li > a + span.slide-open::before {
		width: 16px;
		height: 2px;
		right: 12px;
	}
	header nav .gNav ul.h_main_menu > li > a + span.slide-open::after {
		width: 2px;
		height: 16px;
		right: 19px;
	}
	header nav .gNav ul.h_main_menu > li > a + span.slide-open.close::after {
		opacity: 0;
	}
	
/* グロナビ：メインメニュー（入れ子） */	
	header nav .gNav ul.h_main_menu > li .inMenu {
		display: none;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > a {
		display: none;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul {
		padding-left: 20px;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a {
		display: flex;
		align-items: center;
		font-size: 14px;
		padding: 10px 0;
		font-weight: 400;
		position: relative;
		padding-left: 20px;
		line-height: 1.4;
	}
	header nav .gNav ul.h_main_menu > li .inMenu .bg-inMenu > ul li a::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateX(-50%);
		width: 10px;
		height: 1px;
		background-color: #0e357f;
	}
	
/* グロナビ：採用情報リンク */	
	header nav ul.h_recruit {
		margin-top: 120px;
	}
	header nav ul.h_recruit li {
	}
	header nav ul.h_recruit li a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 68px;
		border-radius: 4px;
		background-color: #f7931e;
		color: #fff;
		font-weight: 500;
		font-size: 18px;
	}
	
/* ハンバーガーボタン */
	header .hambMenu {
		width: 50px;
		height: 50px;
		background-color: #fff;
		z-index: 11;
	}
	header .hambMenu a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		position: relative;
		opacity: 1!important;
	}
	header .hambMenu a span,
	header .hambMenu a span::before,
	header .hambMenu a span::after {
		display: block;
		width: 30px;
		height: 2px;
		border-radius: 50vh;
		background-color: #0e357f;
		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: 15px;
	}
	header .hambMenu a span::after {
		bottom: 15px;
	}
	header .hambMenu a span.close {
		background-color: transparent;
	}
	header .hambMenu a span.close::before {
		top: 17px;
		right: 5px;
		width: 32px;
		transform: rotate(45deg);
	}
	header .hambMenu a span.close::after {
		bottom: 17px;
		right: 5px;
		width: 32px;
		transform: rotate(-45deg);
	}
	
/* メニューOPEN時の処理 */
	body.menu-open {
		overflow: hidden;
	}
	header nav .in-scroll {
		height: 100%;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		position: relative;
	}
}
@keyframes anm_show_1{
	50% {transform: translateY(400%) rotate(0deg)}
	100%{transform: translateY(400%) rotate(45deg)}
}
@keyframes anm_close_1{
	0%  {transform: translateY(400%) rotate(45deg)}
	50% {transform: translateY(400%) rotate(0)}
	100%{transform: translateY(0) rotate(0)}
}
@keyframes anm_show_3{
	50% {transform: translateY(-400%) rotate(0deg)}
	100%{transform: translateY(-400%) rotate(-45deg)}
}
@keyframes anm_close_3{
	0%  {transform: translateY(-400%) rotate(-45deg)}
	50% {transform: translateY(-400%) rotate(0)}
	100%{transform: translateY(0) rotate(0)}
}

/*******************************************

-------------------------------------------
main
********************************************/

main {
}

/* パンくずリスト
========================================== */

main .pNav {
	padding-top: 120px;
	margin-bottom: 40px;
}
main .pNav ul {
	font-size: 13px;
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
main .pNav ul li {
	color: rgba(14,53,127,0.5);
	mix-blend-mode: multiply;
}
main .pNav ul li:not(:last-of-type)::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 12px;
	background-color: #a5b9d4;
	mix-blend-mode: multiply;
	position: relative;
	top: 1px;
	margin-left: 10px;
}
main .pNav ul li a {
	color: rgba(14,53,127,1);
}
main .pNav ul li a:hover {
	text-decoration: underline;
}
@media only screen and (max-width: 767px) {
	main .pNav {
		padding-top: 70px;
		margin-bottom: 30px;
	}
	main .pNav ul {
		font-size: 11px;
		flex-wrap: nowrap;
		padding-left: 15px;
		padding-right: 15px;
		overflow-x: auto;
		word-break: keep-all;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 15px;
	}
	main .pNav ul li {
		padding-top: 1px;
	}
	main .pNav ul li:not(:last-of-type)::after {
		top: 0;
	}
	main .pNav ul li a {
		position: relative;
		top: -2px;
	}
}

/* MV
========================================== */

main [class^="mv-"] .mv_wrap {
	position: relative;
}

/* ---------------------------
HOME
----------------------------- */

main .mv-home {
	width: 100%;
	height: 100vh;
	position: relative;
}
main .mv-home video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
main .mv-home .mv_catch {
	width: 100%;
	max-width: 1200px;
	position: absolute;
	bottom: 8%;
	left: 45%;
	transform: translateX(-50%);
	transition: left 0.4s ease;
}
main .mv-home .mv_catch.scrollin {
	left: 50%;
	transition-delay:0.1s;
}
main .mv-home .mv_catch h1 {
}
main .mv-home .mv_catch h1 p {
	text-align: right;
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
main .mv-home .mv_catch h1 p span {
	display: inline-block;
	background-color: #fff;
	color: #0e357f;
	font-size: 59px;
	font-weight: 500;
	line-height: 1.1;
	padding: 0 15px 10px;
}
main .mv-home .mv_catch > p {
	text-align: right;
	font-size: 23px;
	font-weight: 500;
	color: #fff;
	line-height: 1.4;
	margin-top: 30px;
}
main .mv-home .mv_catch h1 p span + span {
	padding-left: 0;
}
@media only screen and (max-width: 767px) {
	main .mv-home {
		height: 85vh;
		height: 85dvh;
	}
	main .mv-home .mv_catch {
		padding: 0 15px;
	}
	main .mv-home .mv_catch h1 p {
		margin-top: 10px;
		gap: 10px 0;
	}
	main .mv-home .mv_catch h1 p span {
		font-size: 28px;
		padding: 4px 12px 7px!important;
	}
	main .mv-home .mv_catch > p {
		font-size: 17px;
		line-height: 1.6;
		margin-top: 20px;
	}
}

/* ---------------------------
下層TOP・INFO系（ウェーブ模様）／下層ページ
----------------------------- */

main .mv-wave,
main .mv-simple {
	width: 100%;
	height: 620px;
	background: url("../img/common/bg_mv_wave.jpg") center / cover no-repeat;
}
main .mv-simple {
	height: 460px;
	background: linear-gradient(90deg, #e4eef5, #afc8e8);
}
main .mv-wave h1,
main .mv-simple h1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	width: 100%;
	height: calc(100% - 140px - 30px);
	position: absolute;
	bottom: 30px;
	left: 0;
	font-size: 105px;
	font-weight: 500;
	line-height: 1.3;
	color: #0e357f;
}
main .mv-wave h1 span,
main .mv-simple h1 span {
	display: block;
	width: 100%;
	font-size: 27px;
	font-weight: 500;
	color: #5591c8;
}
@media only screen and (max-width: 767px) {
	main .mv-wave,
	main .mv-simple {
		height: 240px;
	}
	main .mv-wave h1,
	main .mv-simple h1 {
		height: calc(100% - 90px - 15px);
		bottom: 15px;
		font-size: 42px;
		padding: 0 15px;
	}
	main .mv-wave h1 span,
	main .mv-simple h1 span {
		font-size: 18px;
	}
}

/* ---------------------------
ポリシー・お問い合わせ（風車模様）
----------------------------- */

main .mv-wind {
	width: 100%;
	height: 620px;
	background: url("../img/common/bg_mv_wind.jpg") center / cover no-repeat;
}
body.contact main .mv-wind {
	background-image: url("../img/common/bg_mv_wind_mail.jpg");
}
main .mv-wind h1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	height: calc(100% - 140px - 30px);
	position: absolute;
	bottom: 30px;
	left: 0;
	font-size: 50px;
	font-weight: 500;
	line-height: 1.3;
	color: #0e357f;
}
@media only screen and (max-width: 767px) {
	main .mv-wind {
		height: 240px;
	}
	main .mv-wind h1 {
		height: calc(100% - 90px - 15px);
		bottom: 15px;
		font-size: 22px;
		padding: 0 15px;
	}
}

/* ---------------------------
ページ別画像ありMV
----------------------------- */

main .mv-pic {
	width: 100%;
	height: 620px;
	position: relative;
}
main .mv-pic .mv_img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
main .mv-pic .mv_img img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 620px;
}
main .mv-pic h1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	row-gap: 35px;
	width: 100%;
	height: calc(100% - 140px - 30px);
	position: absolute;
	bottom: 30px;
	left: 0;
	font-size: 50px;
	font-weight: 500;
	line-height: 1.3;
	color: #fff;
}
main .mv-pic h1 span {
	display: block;
	width: 100%;
	font-size: 19px;
	color: #0e357f;
	line-height: 1.9;
}
@media only screen and (max-width: 767px) {
	main .mv-pic {
		height: 240px;
	}
	main .mv-pic .mv_img img {
		height: 240px;
	}
	main .mv-pic h1 {
		height: calc(100% - 90px - 15px);
		bottom: 15px;
		font-size: 22px;
		padding: 0 15px;
	}
	main .mv-pic h1 {
		row-gap: 15px;
	}
	main .mv-pic h1 span {
		font-size: 14px;
		line-height: 1.5;
		mix-blend-mode: multiply;
	}

}

/* ---------------------------
GWO
----------------------------- */

main .mv-gwo {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	position: relative;
}
main .mv-gwo .mv_video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
main .mv-gwo .mv_video video {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}
@media only screen and (max-width: 767px) {
}

/*******************************************

-------------------------------------------
footer
********************************************/

footer {
	line-height: 1.6;
	background-color: #5591c8;
	color: #fff;
	padding-top: 50px;
	padding-bottom: 115px;
	position: relative;
}
footer .f_wrap {
	display: flex;
	justify-content: space-between;
	column-gap: 65px;
}
footer a.pagetop {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 110px;
	border-radius: 4px;
	border: 1px solid #fff;
	background-color: rgba(255,255,255,0.2);
	position: absolute;
	right: 30px;
	bottom: 30px;
}
footer a.pagetop:hover {
	opacity: 1;
	background-color: rgba(255,255,255,0.3);
}
footer a.pagetop img {
	width: 20px;
	height: 30px;
	transform: rotate(-90deg);
}
@media only screen and (max-width: 767px) {
	footer {
		padding-top: 30px;
		padding-bottom: 15px;
	}
	footer .f_wrap {
		justify-content: flex-start;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	footer a.pagetop {
		width: 50px;
		height: 50px;
		right: 15px;
		bottom: 50px;
	}
	footer a.pagetop img {
		width: 8px;
		height: 12px;
	}
}

/* バナーエリア
========================================== */

footer .f_banner {
	flex-shrink: 0;
}
footer .f_banner p.catch {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.6;
}
footer .f_banner ul {
	margin-top: 25px;
}
footer .f_banner ul li {
	margin-top: 10px;
}
footer .f_banner ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 62px;
	border-radius: 6px;
	background-color: #fff;
}
footer .f_banner ul li.inf a img {width: 265px;}
footer .f_banner ul li.jwd a img {width: 120px;}
footer .f_banner ul li.bp a img  {width: 294px;}

footer .f_banner a.f_logo {
	margin-top: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 430px;
	height: 105px;
	border-radius: 6px;
	background-color: #fff;
}
footer .f_banner p.copy {
	position: relative;
	top: 90px;
	font-size: 12px;
}
footer .f_banner p.copy small {
	font-weight: 300;
}
@media only screen and (max-width: 767px) {
	footer .f_banner {
		width: 100%;
		flex-shrink: 1;
		margin-top: 50px;
	}
	footer .f_banner ul li a {
		padding: 10px;
		height: 56px;
	}
	footer .f_banner ul li a img {
		width: auto!important;
		height: 80%;
	}
	footer .f_banner p.catch {
		font-size: 20px;
	}
	footer .f_banner a.f_logo {
		width: 75%;
		height: 90px;
		padding: 10px;
	}
	footer .f_banner a.f_logo img {
		width: 100%;
	}
	footer .f_banner p.copy {
		top: 0;
		margin-top: 50px;
		font-size: 11px;
	}
}

/* サイトマップエリア
========================================== */

footer .f_sitemap {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: center;
	gap: 45px 40px;
}
footer .f_sitemap a {
	display: inline-block;
	color: #fff;
}
footer .f_sitemap ul.f_main_menu {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 45px;
}
footer .f_sitemap ul.f_main_menu > li {
}
footer .f_sitemap ul.f_main_menu > li > a {
	font-size: 19px;
	font-weight: 700;
	position: relative;
	padding-left: 20px;
}
footer .f_sitemap ul.f_main_menu > li > a::before {
	content: "";
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
	background: #ffffff;
	height: calc(tan(62deg) * 18px / 2);
	width: 13px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
footer .f_sitemap ul.f_main_menu > li ul {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 15px 25px;
}
footer .f_sitemap ul.f_main_menu > li ul li {
}
footer .f_sitemap ul.f_main_menu > li ul li a {
	font-weight: 500;
	position: relative;
	padding-left: 20px;
}
footer .f_sitemap ul.f_main_menu > li ul li a::before {
	content: "";
	display: block;
	position: absolute;
	top: 12px;
	left: 0;
	width: 12px;
	height: 1px;
	background-color: #fff;
}
footer .f_sitemap ul.f_lang_menu {
	width: 104px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
}
footer .f_sitemap ul.f_lang_menu li {
}
footer .f_sitemap ul.f_lang_menu li a {
	width: 40px;
	height: 22px;
	border-radius: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	color: #313131;
	font-size: 14px;
}
footer .f_sitemap ul.f_lang_menu li:nth-of-type(2) a {
	background-color: #0e357f;
	color: #fff;
	font-size: 16px;
	opacity: 1;
}
footer .f_sitemap ul.policy_menu {
	display: flex;
	column-gap: 40px;
}
footer .f_sitemap ul.policy_menu li {
}
footer .f_sitemap ul.policy_menu li a {
}
@media only screen and (max-width: 767px) {
	footer .f_sitemap {
		display: block;
	}
	footer .f_sitemap ul.f_main_menu {
		gap: 20px;
	}
	footer .f_sitemap ul.f_main_menu > li > a {
		font-size: 16px;
		padding-left: 15px;
	}
	footer .f_sitemap ul.f_main_menu > li > a::before {
		top: 7px;
		height: calc(tan(62deg) * 13px / 2);
		width: 8px;
	}
	footer .f_sitemap ul.f_main_menu > li ul {
		margin-top: 10px;
		gap: 10px 20px;
	}
	footer .f_sitemap ul.f_main_menu > li ul li a {
		font-size: 14px;
		padding-left: 15px;
	}
	footer .f_sitemap ul.f_main_menu > li ul li a::before {
		width: 8px;
		top: 11px;
	}
	footer .f_sitemap ul.f_lang_menu {
		margin-top: 60px;
	}
	footer .f_sitemap ul.policy_menu {
		width: 100%;
		font-size: 14px;
		border-top: 1px solid rgba(255,255,255,0.5);
		padding-top: 15px;
		margin-top: 15px;
		/* SNSポリシー表示の時は下記をイキ
		column-gap: 0;
		justify-content: space-between;*/

	}
}