@charset "UTF-8";
/*--------------------------------
	　サイト共通設定
--------------------------------*/
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, font, 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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;
}
input,button,textarea,select {
	margin: 0;padding: 0;border: none;border-radius: 0;background: none;outline: none;-webkit-appearance: none;-moz-appearance: none;appearance: none;
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
	color: #000000;
}
.roboto {
	font-family: 'Roboto', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
a, a:link {
	text-decoration: none;
}
textarea {resize: vertical;}
select::-ms-expand {display: none;}
::placeholder {
	color: #C7C7C7;
}
/*.ie11対策*/
input:-ms-input-placeholder {
	color: #C7C7C7;
}
select:invalid {
	color: #C7C7C7;
}
/*.ie11対策*/
[type="checkbox"],
[type="radio"] {
	visibility: hidden;
	width:1px;
	position: absolute;
}
input,
select {
	-webkit-appearance: none;
}
/*--------------------------------
	　全体レイアウト
--------------------------------*/
body {
	position: relative;
	color: #000000;
	font-size: 1.6rem;
	line-height: 1.56;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
@media all and (max-width: 1279px) {
	body {
		min-width: inherit;
		font-size: 1.2rem;
	}
}
.content {
	max-width: 128rem;
	margin: 0 auto;
	box-sizing: border-box;
}
.content-in {
	max-width: 120rem;
	margin: 0 auto;
	box-sizing: border-box;
}
@media all and (max-width: 1279px) {
	.content {
		max-width: calc( 100% - 4rem );
		margin: 0 auto;
	}
	.content-in {
		max-width: unset;
	}
}
/*--------------------------------
	　ヘッダー
--------------------------------*/
header .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 11rem;
}
header .gnav nav ul {
	display: flex;
	gap: 0 6.8rem;
}
header .gnav nav ul li a {
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 3.32rem 0.7rem;
	color: #000000;
}
header .gnav nav ul li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	display: inline-block;
	width: 100%;
	height: 0.2rem;
	background: #191970;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
header .gnav nav ul li a:hover {
	color: #191970;
}
header .gnav nav ul li a:hover::after {
	opacity: 1;
	visibility: visible;
}
header .gnav nav ul li a span {
	display: flex;
	justify-content: center;
}
header .gnav nav ul li a span.jp {
	font-size: 1.6rem;
	font-weight: 500;
}
header .gnav nav ul li a span.en {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #191970;
}
header.fixed {
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	background: #FFF;
	box-shadow: 0 1px 10px rgba(0, 0, 0, .16);
}
@media all and (max-width: 1279px) {
	header .content {
		display: flex;
		min-height: 7rem;
	}
	header .site-logo a {
		display: block;
		width: calc( calc( 33.5rem / 3 ) * 2 );
	}
	header .gnav {
		position: fixed;
		top: 7rem;
		right: -100%;
		z-index: 3;
		width: 20rem;
		overflow-y: scroll;
		transition: .3s;
	}
	header .gnav-open {
		right: 0;
	}
	header .gnav nav {
		background: #FFF;
	}
	header .gnav nav ul {
		display: block;
	}
	header .gnav nav ul li:first-child a {
		border-top: 0.1rem solid #191970;
	}
	header .gnav nav ul li a {
		padding: 1.5rem 0;
		border-bottom: 0.1rem solid #191970;
	}
	header .gnav nav ul li a::after {
		content: unset;
	}
	header .menu-btn {
		position: relative;
		width: 30px;
	}
	header .menu-btn span {
		display: block;
		margin-top: 7px;
		width: 100%;
		height: 2px;
		background: #191970;
		transition: .3s;
	}
	header .menu-btn span:nth-of-type(1) {
		margin-top: 0;
	}
	header .menu-btn.active span:nth-of-type(1) {
		transform: translateY(9px) rotate(-45deg);
	}
	header .menu-btn.active span:nth-of-type(2) {
		opacity: 0;
	}
	header .menu-btn.active span:nth-of-type(3) {
		transform: translateY(-9px) rotate(45deg);
	}
	header .gnav-bg {
		display: none;
		position: fixed;
		top: 7rem;
		left: 0;
		z-index: 2;
		width: 100%;
		height: calc( 100% - 7rem );
		background: rgba(0,0,0,.3);
	}
}
/*--------------------------------
	　フッター
--------------------------------*/
footer {
	position: relative;
	padding: 9rem 0 4rem;
	overflow: hidden;
}
footer::before {
	position: absolute;
	z-index: -2;
	left: 0;
	top: 0;
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	background: #131C33;
}
footer::after {
	position: absolute;
	z-index: -1;
	right: -9rem;
	top: 0;
	content: "";
	display: inline-block;
	width: 128rem;
	height: 100%;
	margin: 0 auto;
	background-image: url("/images/common/bg-footer.png");
	background-repeat: no-repeat;
	background-position: top right;
	background-color: rgba( 19, 28, 51, 1);
	background-blend-mode: multiply;
}
footer .f-nav {
	margin: 0 0 9rem;
}
footer .f-nav nav ul {
	display: flex;
	justify-content: center;
	gap: 0 13.5rem;
}
footer .f-nav nav ul li a {
	color: #FFF;
}
footer .f-nav nav ul li a:hover {
	opacity: 0.8;
}
footer .f-nav nav ul li a span {
	display: flex;
	justify-content: center;
}
footer .f-nav nav ul li a span.jp {
	font-size: 1.8rem;
	font-weight: 700;
}
footer .f-nav nav ul li a span.en {
	font-family: 'Roboto', sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #9D9D9D;
}
footer .f-address {
	margin: 0 0 6.7rem;
	color: #FFF;
}
footer .f-address dl dt {
	display: flex;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
}
footer .f-address dl dd {
	display: flex;
	justify-content: center;
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 2;
}
footer .f-address dl dd a {
	color: #FFF;
}
footer .f-address ul li {
	display: flex;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 500;
}
footer .f-address ul li a {
	color: #FFF;
}
footer .f-sns {
	margin: 0 0 1.5rem;
}
footer .f-sns ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 2rem;
}
footer .f-sns ul li a:hover {
	opacity: 0.8;
}
footer address {
	font-size: 1.2rem;
	font-style: normal;
	color: #FFF;
	text-align: center;
}
footer .f-page-top {
	/*display: none;*/
	position: absolute;
	z-index: 1;
 	bottom: 8.5rem;
	right: 0;
	rotate: -90deg;
}
footer .f-page-top a {
	display: block;
	width: 13.1rem;
}
footer .f-page-top a span {
	position: relative;
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	font-size: 1.2rem;
	color: #9D9D9D;
	letter-spacing: 0.02em;
}
footer .f-page-top a span::before {
	position: absolute;
	content: "";
	top: 0.7rem;
	left: 7rem;
	width: 5rem;
	height: 0.1rem;
	background: #9D9D9D;
}
footer .f-page-top a span::after {
	position: absolute;
	content: "";
	top: 0.7rem;
	left: 12.25rem;
	border-top: 0.1rem solid #9D9D9D;
	border-right: 0.1rem solid #9D9D9D;
	width: 0.6em;
	height: 0.6em;
	transform: translate(0, -50%) rotate(45deg);
}
footer .f-page-top a:hover {
	opacity: 0.8;
}
@media all and (max-width: 1279px) {
	footer .f-page-top {
		bottom: 7.5rem;
		right: -4.5rem;
	}
}
@media all and (max-width: 1279px) {
	footer {
		padding: 4.5rem 0 2rem;
	}
	footer::after {
		content: unset;
	}
	footer .f-nav {
		margin: 0 0 4.5rem;
	}
	footer .f-nav nav ul {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0 0;
	}
	footer .f-nav nav ul li {
		flex-basis: 50%;
		margin: 0 0 2rem;
	}
	footer .f-nav nav ul li:last-child {
		margin: 0 0 0;
	}
	footer .f-address {
		margin: 0 0 3.4rem;
	}
	footer .f-address dl dd {
		font-size: 3rem;
		line-height: 1.8;
	}
}
@media (max-width: 321px) {
	footer .f-address dl dt {
		font-size: 1.1rem;
	}
	footer .f-address dl dd {
		font-size: 2.5rem;;
	}
	footer .f-address ul li {
		font-size: 1.1rem;
	}
	footer .f-page-top {
		right: -5.5rem;
	}
}
/*--------------------------------
	　CVR
--------------------------------*/
#cvr {
	padding: 18.4rem 0 22.3rem;
	background: linear-gradient(to bottom, #FFF, #CCE4F3);
}
#cvr .content {
	display: flex;
	align-items: flex-end;
	gap: 0 10rem;
}
#cvr dl dt {
	font-family: 'Roboto', sans-serif;
	font-size: 6rem;
	font-weight: 700;
	color: #191970;
}
#cvr dl dd {
	font-size: 1.6rem;
	color: #191970;
	line-height: 2;
}
#cvr .contact-item {
	display: flex;
	align-items: center;
	gap: 0 6rem;
}
#cvr .contact-item .btn a {
	min-width: 42rem;
	min-height: 12rem;
	font-size: 2rem;
}
#cvr .contact-item .btn a::after {
	right: 4rem;
}
#cvr .contact-item .tel p {
	color: #191970;
}
#cvr .contact-item .tel p.text {
	margin: 0 0 1rem;
	font-size: 1.6rem;
	font-weight: 700;
}
#cvr .contact-item .tel p.num a {
	display: flex;
	margin: 0 0 0.2rem;
	font-family: 'Roboto', sans-serif;
	font-size: 4.8rem;
	font-weight: 700;
	color: #191970;
	letter-spacing: -0.03em;
	line-height: 1;
}
#cvr .contact-item .tel p.num span {
	font-size: 1.2rem;
}
@media all and (max-width: 1279px) {
	#cvr {
		padding: 5rem 0 7rem;
	}
	#cvr .content {
		display:block;
	}
	#cvr dl {
		margin: 0 0 2rem;
	}
	#cvr dl dt {
		font-size: 4rem;
	}
	#cvr .contact-item {
		display: block;
	}
	#cvr .contact-item .btn {
		margin: 0 0 2rem;
	}
	#cvr .contact-item .btn a {
		min-width: unset;
		min-height: 8rem;
		font-size: 1.8rem;
	}
	#cvr .contact-item .tel p.num a {
		font-size: 3.8rem;
	}
	.btn a::after {
		right: 2rem;
	}
}
@media (max-width: 321px) {
	#cvr .contact-item .btn a {
		width: 28rem;
	}
	#cvr .contact-item .btn a::after {
		right: 2rem;
	}
}