@charset "utf-8";
/*
 shared.css
*/
/* -----------------------------------------------
= reset
----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
html {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
button,
textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
}
input {
	border-radius: 0;
	font: inherit;
}
button {
	cursor: pointer;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
body {
	color: #0d0d0d;
	font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
	font-weight: 500;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	color: #0d0d0d;
	text-decoration: none;
}
.js-inview {
	opacity: 0;
	transition: opacity .4s ease-in-out;
}
.js-inview.is-show {
	opacity: 1;
}
/* -----------------------------------------------
= common
----------------------------------------------- */
html {
	font-size: calc(100vw / 75);
}
.is-pc {
	display: none;
}
.is-pc_inline {
	display: none;
}
.is-sp_inline {
	display: inline;
}
@media print, screen and (min-width: 768px) {/* PC */
html {
	font-size: calc(100vw / 116);
}
.is-pc {
	display: block;
}
.is-pc_inline {
	display: inline;
}
.is-sp {
	display: none;
}
.is-sp_inline {
	display: none;
}
}/* @media */
@media print, screen and (min-width: 1160px) {/* widePC */
html {
	font-size: 62.5%;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 12rem;
	background: #fff;
	z-index: 40;
}
.header .logo {
	width: 23rem;
	padding: 3.3rem 4.3rem 0;
}
.header .link {
	padding: 1rem 0 0;
	border-top: 1px solid rgba(255,255,255,.3);
}
.header .link li {
	margin: 3rem 0;
	font-size: 3rem;
}
.header .link li:first-child a::before {
	content: '';
	display: inline-block;
	width: 3.1rem;
	height: 3.1rem;
	margin-right: 1.6rem;
	background: url(../img/shared/icon_recruit.svg) no-repeat 50% / cover;
	vertical-align: middle;
	filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(200deg) brightness(103%) contrast(105%);
}
.header .link li:nth-child(2) a::before {
	content: '';
	display: inline-block;
	width: 3.7rem;
	height: 2.5rem;
	margin-right: 1.6rem;
	background: url(../img/shared/icon_contact.svg) no-repeat 50% / cover;
	vertical-align: middle;
	filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(200deg) brightness(103%) contrast(105%);
}
.header .search {
	display: flex;
	margin: 4rem 9.5rem 10rem;
}
.header .search input {
	flex: 1;
	padding-left: 7rem;
	background: url(../img/shared/icon_search.svg) no-repeat 2.5rem 50% / 3.3rem auto #fff;
	border: 1px solid #fff;
	border-radius: .3rem 0 0 .3rem;
	font-size: 3.2rem;
	line-height: 8rem;
	-webkit-appearance: none;
	appearance: none;
}
.header .search button {
	width: 12rem;
	border: 1px solid #6369a5;
	border-radius: 0 .3rem .3rem 0;
	font-size: 2.6rem;
	line-height: 8rem;
	letter-spacing: .04em;
}
@media print, screen and (min-width: 768px) {/* PC */
.header {
	height: 10rem;
}
.header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	max-width: 110rem;
	height: 100%;
	margin: 0 auto;
}
.header .logo {
	width: 17rem;
	padding: 0;
}
.header .set {
	width: 22rem;
}
.header .link {
	display: flex;
	justify-content: space-between;
	padding: 0 0 1.5rem;
	border-top: none;
}
.header .link li {
	margin: 0;
	font-size: 1.4rem;
}
.header .link li:first-child a::before {
	width: 1.6rem;
	height: 1.5rem;
	margin-right: .5rem;
	filter: invert(11%) sepia(52%) saturate(5032%) hue-rotate(234deg) brightness(91%) contrast(94%);
}
.header .link li:nth-child(2) a::before {
	width: 1.8rem;
	height: 1.4rem;
	margin-right: .5rem;
	filter: invert(11%) sepia(52%) saturate(5032%) hue-rotate(234deg) brightness(91%) contrast(94%);
}
.header .link a {
	color: #13195d;
	transition: color .3s;
}
.header .link a:hover {
	color: #434cab;
	text-decoration: underline;
}
.header .search {
	margin: 0;
}
.header .search input {
	width: 17rem;
	padding-left: 3.3rem;
	background-position: .8rem 50%;
	background-size: 1.3rem auto;
	background-color: #f7f7f7;
	border: 1px solid #e5e5e5;
	font-size: 1.6rem;
	line-height: 3rem;
}
.header .search button {
	width: 5rem;
	border: none;
	color: #fff;
	background: #20287e;
	font-size: 1.4rem;
	line-height: 3rem;
	transition: background .3s;
}
.header .search button:hover {
	background: #434cab;
}
}/* @media */
/* -----------------------------------------------
= nav
----------------------------------------------- */
.sp_nav_btn {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 50;
	width: 12rem;
	height: 12rem;
}
.sp_nav_btn button {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background: #20287e;
}
.sp_nav_btn button::before,
.sp_nav_btn button::after {
	content: '';
	position: absolute;
	left: 3.4rem;
	height: .2rem;
	background: #fff;
	transition: transform .3s;
}
.sp_nav_btn button::before {
	top: 3.7rem;
	width: 6rem;
}
.sp_nav_btn button::after {
	top: 7.7rem;
	width: 4rem;
}
.sp_nav_btn button span {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.sp_nav_btn button span::before {
	content: '';
	position: absolute;
	top: 5.7rem;
	left: 3.4rem;
	width: 5rem;
	height: .2rem;
	background: #fff;
}
.is-nav_opened .sp_nav_btn button::before {
	top: 5.7rem;
	left: 3rem;
	transform: rotate(-45deg);
}
.is-nav_opened .sp_nav_btn button::after {
	top: 5.7rem;
	left: 3rem;
	width: 6rem;
	transform: rotate(45deg);
}
.is-nav_opened .sp_nav_btn button span::before {
	display: none;
}
.sp_nav {
	position: fixed;
	top: 12rem;
	right: 0;
	z-index: 50;
	width: 100%;
	max-height: calc(100% - 12rem);
	color: #fff;
	background: #20287e;
	overscroll-behavior: contain;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
}
.is-nav_opened .sp_nav {
	opacity: 1;
	pointer-events: auto;
}
.sp_nav ul {
	margin: 0 3rem;
	text-align: center;
}
.sp_nav li a {
	color: #fff;
	line-height: 1.5;
}
.sp_nav .menu {
	padding: 2rem 0;
}
.sp_nav .menu li {
	margin: 5rem 0;
	font-size: 3.2rem;
	font-weight: 700;
}
@media print, screen and (min-width: 768px) {/* PC */
.sp_nav {
	opacity: 0 !important;
	pointer-events: none !important;
}
.global_nav .menu {
	display: flex;
}
.global_nav .menu > li {
	position: relative;
	margin: 0 2rem;
	font-size: 1.6rem;
	font-weight: 700;
}
.global_nav .menu > li > a {
	display: block;
	position: relative;
	margin: 4.5rem 0 0;
	padding: 0 .5rem 4rem;
	color: #13195d;
	transition: color .3s;
}
.global_nav .menu > li > a:hover {
	color: #434cab;
}
.global_nav .menu > li > a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 2.4rem;
	width: 100%;
	height: .3rem;
	background: #434cab;
	opacity: 0;
	transition: opacity .3s;
}
.global_nav .menu > li > a:hover::after {
	opacity: 1;
}
.global_nav .menu .sub {
	position: absolute;
	top: 10rem;
	left: -6.8rem;
	width: calc(100% + 10.6rem);
	padding: 1.4rem;
	background: rgba(67,76,171,.9);
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.global_nav .menu > li:hover > .sub {
	opacity: 1;
	pointer-events: auto;
}
.global_nav .menu .sub li {
	padding: 1.6rem 0;
	font-size: 1.6rem;
	letter-spacing: .04em;
}
.global_nav .menu .sub li a {
	color: #fff;
}
.global_nav .menu .sub li a:hover {
	text-decoration: underline;
}
}/* @media */
/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	margin-top: 12rem;
}
@media print, screen and (min-width: 768px) {/* PC */
.main {
	margin-top: 10rem;
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer .info {
	padding: 7rem 0;
	background: #eff4f7;
	text-align: center;
}
.footer .logo {
	width: 48rem;
	margin: 0 auto 4rem;
}
.footer .address {
	margin-bottom: 4rem;
	font-size: 2.6rem;
	line-height: 4rem;
	letter-spacing: .04em;
}
.footer .tel {
	display: flex;
	justify-content: center;
	margin-bottom: 4.5rem;
	color: #13195d;
	font-size: 3rem;
	font-weight: 700;
}
.footer .tel dt {
	padding: 2rem 2rem 0 0;
}
.footer .tel dd {
	line-height: 1.5;
}
.footer .tel dd .num {
	font-size: 4.4rem;
}
.footer .btn {
	margin-left: 10rem;
	margin-right: 10rem;
}
.footer .f_nav {
	padding: 4rem 3.5rem 1rem;
	color: #fff;
	background: #0f154d;
}
.footer .f_nav > ul {
	float: left;
	width: 50%;
}
.footer .f_nav > ul:last-child {
	clear: left;
	display: flex;
	flex-wrap: wrap;
	float: none;
	width: auto;
}
.footer .f_nav > ul:last-child > li {
	width: 50%;
}
.footer .f_nav > ul > li {
	margin-bottom: 3rem;
}
.footer .f_nav li {
	font-size: 2.4rem;
	line-height: 5rem;
	letter-spacing: .04em;
}
.footer .f_nav > ul > li a {
	color: #fff;
}
.footer .f_nav > ul > li > a {
	position: relative;
	padding-left: 3rem;
}
.footer .f_nav > ul > li > a::before {
	content: '';
	position: absolute;
	top: 1rem;
	left: 0;
	width: 1.7rem;
	height: 1.2rem;
	background: url(../img/shared/icon_arrow.svg) no-repeat 50% / cover;
	filter: invert(100%) sepia(0%) saturate(7434%) hue-rotate(296deg) brightness(94%) contrast(99%);
}
.footer .f_nav .sub {
	display: block;
	margin: 1rem 0 0 3rem;
}
.footer .f_nav .sub li {
	margin-bottom: .5rem;
}
.footer .f_nav .sub li::before {
	content: '・';
}
.footer .copyright {
	padding: 4rem 0;
	color: #666;
	font-size: 2.6rem;
	text-align: center;
	letter-spacing: .04em;
}
.footer .pagetop {
	position: fixed;
	right: 2rem;
	bottom: 7rem;
	width: 8rem;
	height: 8rem;
}
.footer .pagetop button {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #b7c7e0;
	border-radius: 50%;
}
.footer .pagetop button::after {
	content: '';
	position: absolute;
	top: 2.7rem;
	left: calc(50% - 1.1rem);
	width: 2.2rem;
	height: 1.9rem;
	background: #b7c7e0;
	clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
.footer .pagetop button span {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.footer {
	position: relative;
}
.footer::before,
.footer::after {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	z-index: -1;
}
.footer::before {
	left: 0;
	width: calc(50% - 7rem);
	background: #eff4f7;
}
.footer::after {
	right: 0;
	width: calc(50% + 13rem);
	background: #0f154d;
}
.footer .inner {
	display: flex;
	max-width: 110rem;
	margin: 0 auto;
}
.footer .info {
	padding: 7.5rem 7rem 0 0;
	text-align: left;
}
.footer .logo {
	width: 35rem;
	margin-bottom: 3rem;
}
.footer .address {
	margin-bottom: 1rem;
	font-size: 1.6rem;
	line-height: 2.6rem;
}
.footer .tel {
	margin-bottom: 2rem;
	font-size: 2.2rem;
}
.footer .tel dt {
	padding: 1.6rem .5rem 0 0;
}
.footer .tel dd .num {
	font-size: 3.2rem;
}
.footer .btn {
	margin-left: 0;
	margin-right: 0;
}
.footer .f_nav {
	flex: 1;
	display: flex;
	justify-content: space-between;
	padding: 3.5rem 0 1.5rem 5rem;
}
.footer .f_nav > ul {
	float: none;
	width: auto;
}
.footer .f_nav > ul:last-child {
	display: block;
}
.footer .f_nav > ul:last-child > li {
	width: auto;
}
.footer .f_nav > ul > li {
	margin-bottom: 2rem;
}
.footer .f_nav li {
	font-size: 1.6rem;
	line-height: 3rem;
}
.footer .f_nav > ul > li a:hover {
	text-decoration: underline;
}
.footer .f_nav > ul > li > a {
	padding-left: 2.3rem;
}
.footer .f_nav > ul > li > a::before {
	content: '';
	position: absolute;
	top: .5rem;
	left: 0;
	width: 1.1rem;
	height: .8rem;
	background: url(../img/shared/icon_arrow.svg) no-repeat 50% / cover;
	filter: invert(100%) sepia(0%) saturate(7434%) hue-rotate(296deg) brightness(94%) contrast(99%);
}
.footer .f_nav .sub {
	margin: 0 0 0 2.3rem;
}
.footer .f_nav .sub li {
	margin-bottom: 0;
}
.footer .copyright {
	padding: 2.8rem 0;
	background: #fff;
	font-size: 1.6rem;
}
.footer .pagetop {
	display: none;
	right: 5rem;
	bottom: 4rem;
	width: 6rem;
	height: 6rem;
}
.footer .pagetop button {
	transition: .3s;
}
.footer .pagetop button:hover {
	background: #434cab;
	border: 1px solid #434cab;
}
.footer .pagetop button::after {
	top: 2rem;
	left: calc(50% - .8rem);
	width: 1.6rem;
	height: 1.4rem;
	transition: background .3s;
}
.footer .pagetop button:hover::after {
	background: #fff;
}
}/* @media */
/* -----------------------------------------------
= print
----------------------------------------------- */
@media print {
body {
	min-width: 100rem;
}
.header,
.sp_nav_btn,
.footer .pagetop {
	position: absolute;
}
.js-inview {
	opacity: 1;
}
}/* media */

