@charset "utf-8";
/* CSS Document -----------------------------

 2022.04.01

--------------------------------------------*/
/* ----------------------------------------------

 * タグの設定

---------------------------------------------- */
a {
	display: block;
	outline:none;
	color: #000;
	cursor: pointer;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
    transition: all .3s ease;
}
input,
input[type="submit"],
input[type="button"],
button {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	outline: none;
	font-style: normal;
	font-weight: 400;
	font-family: 'Noto Sans JP', 'Noto Sans CJK JP Subset', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
   -webkit-appearance: none;
}
select {
	font-family: 'Noto Sans JP', 'Noto Sans CJK JP Subset', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    -webkit-appearance: none;
	 -moz-appearance: none;
    appearance: none;
}
select::-ms-expand{
	font-family: 'Noto Sans JP', 'Noto Sans CJK JP Subset', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	display: none;
}
/*------------------------------------------------*/
html {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-style: normal;
	font-weight: 400;
	font-size: 62.5%;
	line-height: 2;
	font-family: 'Noto Sans JP', 'Noto Sans CJK JP Subset', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	-webkit-font-smoodting: antialiased;
	-moz-osx-font-smoodting: grayscale;
	word-break: break-all;
}
body {
	font-size: 1.6em;
	line-height: 2;
	font-family: 'Noto Sans JP', 'Noto Sans CJK JP Subset', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	-webkit-font-smoodting: antialiased;
	-moz-osx-font-smoodting: grayscale;
}
h2,h3,h4,h5 {line-height: 1.4;}
p {font-size: 1.6rem;line-height: 2;}
ul,li,th,td,dt,dd,figcaption {line-height: 2;}
.BeirutR {font-family: neue-haas-grotesk-display, sans-serif;font-weight: 600;font-style: normal;}
.inner {max-width: 1274px;margin: 0 auto;padding: 0 20px;}
.inner_s {max-width: 1100px;margin: 0 auto;padding: 0 20px;}
.blank {padding-top: 150px;}
.flexbox {display: flex;flex-wrap: wrap;justify-content: space-between;}
.title,
.title_c {margin-bottom: 40px;font-size: 1.5rem;}
.title02 {margin-bottom: 70px;font-weight: 700;font-size: 3.5rem;}
.title span {display: block;}
.title_c span {display: block;color: #1E4E78;text-align: center;}
.title span.en,
.title_c span.en {margin-bottom: 20px;font-size: 2.4em;}
.read {overflow: hidden;text-align: center;}
.read a {
	display: inline-block;
	position: relative;
	z-index: 3;
	padding: 20px 50px;
	border: 1px solid #3E3E3E;
	color: #3E3E3E;
	font-size: 1.6rem;
	text-align: center;
}
.read a:hover {color: #fff;}
.read a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -5;
	transform-origin: right top;
	transform: scale(0, 1);
	background: #3C3C3C;
	transition: transform .3s;
}
.read a:hover::before {transform-origin: left top;transform: scale(1, 1);}
/* readの横の棒 */
.scrollRight {
	position: absolute;
	right: -102px;
	bottom: 50%;
	transform: rotate(270deg) translate(0, 50%);
}
.scrollRight::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 1px;
	height: 132px;
	background: #3D3D3D;
	animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* 画像をhoverした際に周りに縁がつく */
.edge {position: relative;z-index: 1;}
.edge::before,
.edge::after {
	content: '';
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	z-index: -1;
	transition: all .2s linear;
}
.edge::before {border-top: 1px solid #fff;border-bottom: 1px solid #fff;transform: scale(0, 1);}
.edge::after {border-right: 1px solid #fff;border-left: 1px solid #fff;transform: scale(1, 0);}
.edge:hover::before,
.edge:hover::after {transform: scale(1);}
.edge a {z-index: 1;width: 100%;height: 100%;}
.edge a.default {cursor: default;}
/* 矢印付き四角いボタン */
.button_blk,
.button_wht {position: absolute;right: 25px;bottom: 25px;}
.button_blk .square,
.button_wht .square {
	position: relative;
	width: 45px;
	height: 45px;
	border: 1px solid #fff;
}
.button_wht .square {border-color: #000;}
.button_blk .square img,
.button_wht .square img {
	position: absolute;
	left: -48px;
	bottom: 50%;
	transform: translate(0, 50%);
	width: 56px;
	transition: .3s;
}
a:hover .button_blk .square img,
a:hover .button_wht .square img {left: -28px;}
.pc,.pc2 {display: block;}
.sp,.sp2 {display: none;}
@media only screen and ( max-width : 1024px ) {
	.pc2 {display: none;}
	.sp2 {display: block;}
}
@media only screen and ( max-width : 767px ) {
	body {font-size: 1.4em;line-height: 1.7;}
	p {font-size: 1.4rem;line-height: 1.7;}
	html,ul,li,th,td,dt,dd,figcaption {line-height: 1.7;}
	.blank {padding-top: 100px;}
	.title {font-size: 1.2rem;}
	.title02 {margin-bottom: 40px;font-size: 3rem;}
	.read a {padding: 15px 40px;font-size: 1.4rem;}
	.button_blk,
	.button_wht {right: 20px;bottom: 20px;}
	.button_blk .square,
	.button_wht .square {width: 35px;height: 35px;}
	.button_blk .square img,
	.button_wht .square img {width: 40px;left: -33px;}
	.pc {display: none;}
	.sp {display: block;}
}
@media only screen and ( max-width : 480px ) {
	.blank {padding-top: 60px;}
	.title02 {font-size: 2.6rem;}
}
/*------------------------------------------------

    header

------------------------------------------------*/
header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 9;
	width: 100%;
	height: 70px;
	padding: 20px 60px 20px 20px;
	background: #fff;
}
header .header_box {
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0 auto;
}
header .logo img {width: 212px;}
header nav {width: 100%;}
header nav ul {display: flex;align-items: center;justify-content: flex-end;}
header nav ul li {position: relative;margin-left: 5%;}
header nav ul li.current::before {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #1E4E78;
}
header nav ul li a {
	display: flex;
    align-items: center;
	z-index: 1;
	height: 70px;
	font-weight: 500;
	font-size: 1.6rem;
	text-align: center;
}
header li.accordion ul.contentWrap {
	display: block;
	visibility: hidden;
	opacity: 0;
    position: absolute;
    top: 70px;
	right: -20px;
	z-index: 1;
    width: 250px;
	background: #565656;
	transition: all .3s ease 0s;
}
header li.accordion:hover ul.contentWrap {visibility: visible;opacity: 1;}
header li.accordion ul.contentWrap li {
	position: relative;
	height: auto;
	margin-left: 0;
	border-bottom: 1px solid #666;
}
header li.accordion ul.contentWrap li:last-child {border-bottom: 0;}
header li.accordion ul.contentWrap li a {
	justify-content: center;
	position: relative;
	width: 100%;
	height: auto;
	padding: 15px 10px;
	color: #fff;
	font-size: 1.3rem;
}
header li.accordion ul.contentWrap li a:hover {color: #fbd98f;}
header li.accordion .switch.ac_sp {display: none;}
@media only screen and ( max-width : 1300px ) {
	header {padding: 20px;}
	header .logo img {width: 160px;}
	header nav ul li a {font-size: 1.4rem;}
}
@media only screen and ( max-width : 1024px ) {
	#js-black-bg {
		visibility: hidden;
		opacity: 0;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 6;
		width: 0;
		height: 100vh;
		background: #000;
		cursor: pointer;
		transition: .3s all;
	}
	#js-black-bg.clicked {visibility: visible;opacity: .5;width: 100%;}
	header {height: 60px;}
	header nav {
		position: fixed;
		top: 60px;
		right: -100%;
		max-width: 300px;
		z-index: 9;
		background: #fff;
		transition: .3s all;
	}
	header nav.clicked {right: 0%;box-shadow: -2px 2px 3px rgba(0,0,0,.2);}
	header nav ul {display: block;}
	header nav ul li {
		display: block;
		max-width: 100%;
		margin-left: 0;
		border-top: 1px solid #292727;
		border-left: none;
	}
	header nav ul li a {height: auto;padding: 10px;}
	header nav ul li.current::before {display: none;}
	header li.accordion {margin-left: 0;}
	header li.accordion .ac_pc {display: none;}
	header li.accordion a {display: inline-block;height: auto;padding: 10px;}
	header li.accordion .switch.ac_sp {display: block;}
	header li.accordion .switch {
		display: block;
		position: relative;
		height: auto;
		text-align: left;
	}
	header li.accordion .switch::before {
		content: "";
		position: absolute;
		right: 10px;
		bottom: 50%;
		transform: translate(0, 50%) rotate(-45deg);
		width: 7px;
		height: 7px;
		border-right: 1px solid #000;
		border-bottom: 1px solid #000;
		transition: .3s;
	}
	header li.accordion .switch.open::before {transform: translate(0, 50%) rotate(45deg);}
	header li.accordion ul.contentWrap {
		display: none;
		position: initial;
		width: 100%;
		padding: 0;
		opacity: 1;
		visibility: initial;
		border-bottom: none;
		transition: none;
	}
	header li.accordion:hover ul.contentWrap {position: initial;visibility: initial;opacity: 1;}
	header li.accordion ul.contentWrap li a {display: inline-block;padding: 10px;text-align: left;}
	#sp-menu {
		position: absolute;
		top: 15px;
		right: 20px;
		z-index: 10;
		width: 30px;
		height: 30px;
		padding: 5px;
		cursor: pointer;
	}
	#sp-menu a {position: relative;width: 20px;height: 14px;}
	#sp-menu span {
		position: absolute;
		display: inline-block;
		left: 0;
		width: 100%;
		height: 2px;
		border-radius: 5px;
		background: #0061C1;
		transition: all .3s;
	}
	#sp-menu span:nth-child(1) {top: 0;}
	#sp-menu span:nth-child(2) {top: 6px;}
	#sp-menu span:nth-child(3) {bottom: 0;}
	#sp-menu span:nth-child(2)::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		border-radius: 5px;
		background: #0061C1;
		transition: all .3s;
	}
	#sp-menu.clicked span:nth-child(2) {transform: rotate(-45deg);}
	#sp-menu.clicked span:nth-child(2)::after {transform: rotate(90deg);}
	#sp-menu.clicked span:nth-child(1) {transform: translateY(20px) scale(0);}
	#sp-menu.clicked span:nth-child(3) {transform: translateY(-20px) scale(0);}
}
/*------------------------------------------------

    footer

------------------------------------------------*/
footer {margin-top: 150px;padding: 80px 0 70px;background: #F7F7F7;}
footer .flexbox {margin-bottom: 200px;}
footer a {display: inline-block;font-weight: 500;font-size: 1.5rem;}
footer .boxL .logo {width: 200px;}
footer .boxR {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	max-width: 700px;
}
footer .boxR ul {margin-right: 75px;}
footer .boxR ul:last-child {margin-right: 0;}
footer .boxR ul li {margin-bottom: 10px;}
footer .boxR ul li:nth-last-of-type(1) a,
footer .boxR ul li:nth-last-of-type(2) a,
footer .boxR ul:nth-of-type(1) li:nth-last-of-type(3) a,
footer .boxR ul:nth-of-type(1) li:nth-last-of-type(4) a {color: #969696;}
footer .bottom_box {display: flex;align-items: center;}
footer .bottom_box small {
	display: block;
	margin-right: 35px;
	color: #243552;
	font-weight: 500;
	font-size: 1.3rem;
}
footer .bottom_box ul {display: flex;}
footer .bottom_box ul li {padding: 0 35px;border-left: 1px solid #000;line-height: 1;}
footer .bottom_box ul li a {color: #243552;font-size: 1.1rem;}
footer .bottom_box ul li a:hover {opacity: .5;}
@media only screen and (max-width: 1024px) {
	footer {margin-top: 100px;padding-top: 50px;}
	footer .flexbox {margin-bottom: 100px;}
	footer .boxL {width: 100%;margin-bottom: 50px;}
	footer .boxL .logo {width: 150px;}
	footer .boxR {flex: none;width: 100%;}
	footer .bottom_box {display: block;}
	footer .bottom_box small {margin: 0 0 30px;font-size: 1rem;text-align: center;}
	footer .bottom_box ul {justify-content: center;}
	footer .bottom_box ul li:nth-of-type(1) {border-left: none;}
}
@media only screen and (max-width: 767px) {
	footer .boxR ul {width: 48%;margin: 0 0 30px;}
}
@media only screen and (max-width: 767px) {
	footer .boxR ul {width: 100%;}
	footer .boxR ul:last-child {margin-bottom: 0;}
}
/*-----------------------------------------------

	404 Not Found

------------------------------------------------*/
#notfound {padding-top: 200px;}
#notfound h2 {margin-bottom: 50px;text-align: center;}
#notfound h2 span {display: block;font-size: 2.5em;text-align: center;}
#notfound p {margin-bottom: 40px;text-align: center;}
#notfound a {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	padding: 15px;
	background: #3C3C3C;
	color: #fff;
	font-size: 1.6rem;
	text-align: center;
}
#notfound a:hover {color: #3C3C3C;}
#notfound a::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
	z-index: -5;
	background: #fff;
	color: #3C3C3C;
}
#notfound a:hover::after {transform-origin: left top;transform: scale(1, 1);}
#notfound a span {display: block;position: relative;text-align: center;}
@media only screen and ( max-width : 896px ) {
	#notfound {padding-top: 13rem;}
}
/*--------------------------------------------------

　   back top

--------------------------------------------------*/
.wrapper {position: relative;}
.page_top {
	position: fixed;
	right: 20px;
	bottom: 50px;
	z-index: 5;
}
.page_top #goToTop {
	position: relative;
	width: 49px;
	height: 49px;
	border-radius: 50%;
	background: #1E4E78;
}
.page_top #goToTop:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 50%;
	transform: translate(-50%, 50%);
	width: 0;
	height: 0;
	border-right: 8.5px solid transparent;
	border-bottom: 14px solid #fff;
	border-left: 8.5px solid transparent;
}