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

 2021.01.6

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

 * タグの設定

---------------------------------------------- */
a {
	display: block;
	outline:none;
	color: #000;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
input[type="submit"],
input[type="button"],
button {
	font-family: 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 400;
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
	outline: none;
}
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;
   border-radius: 0;
}
select {
	font-family: 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    -webkit-appearance: none;
	 -moz-appearance: none;
    appearance: none;
}
select::-ms-expand{
	font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	display: none;
}
/*------------------------------------------------*/
html {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-family: 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 62.5%;
	font-weight: 400;
	font-style: normal;
	/*font-feature-settings: "palt" 1;*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-break: break-all;
	line-height: 1.8;
	line-break: strict;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
body {font-size: 1.6em;line-height: 1.8;}
h2 {line-height: 1.4;}
h3,h4,h5,li,figcaption,dd,dt,th,td {line-height: 1.8;}
p {font-size: 1.6rem;line-height: 1.8;}
.inner {max-width: 118rem;margin: 0 auto;padding: 0 2rem;}
.inner-m {max-width: 124rem;margin: 0 auto;padding: 0 2rem;}
.inner-l {max-width: 185.6rem;margin: 0 auto;padding: 0 2rem;}
.blank {padding: 13rem 0;}
.flexbox {display: flex;flex-wrap: wrap;justify-content: space-between;}
.title,
.title-w,
.title-b {
	margin-bottom: 5rem;
	color: #C30D21;
	font-weight: 700;
	font-size: 1.4rem;
	text-align: center;
	letter-spacing: .5em;
}
.title-c {
	color: #100A4D;
	font-weight: 700;
	text-align: center;
	font-size: 2.5rem;
}
.title-w {color: #fff;font-size: 4rem;letter-spacing: 0;}
.title-b {font-size: 6rem;letter-spacing: 0;}
.title span,
.title-b span {
	display: block;
	margin-bottom: 1rem;
	font-size: 2.7em;
	text-align: center;
	letter-spacing: 0;
}
.btn-slide {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 62.4rem;
	margin: 0 auto;
	padding: 1.5rem;
	background: #C30D21;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}
.btn-slide::after{
	content: '';
	background: #000;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
	z-index: -5;
}
.btn-slide:hover::after {transform-origin: left top;transform: scale(1, 1);}
.btn-slide span {display: block;position: relative;}
.btn-slide img {position: absolute;bottom: -6px;width: 14rem;}
.pc {display: block;}
.sp {display: none;}
@media only screen and ( max-width : 896px ) {
	body {font-size: 1.4em;}
	p {font-size: 1.4rem;}
	.blank {padding: 10rem 0;}
	.title,
	.title-w,
	.title-b {margin-bottom: 3rem;font-size: 1.2rem;}
	.title-w {font-size: 3rem;}
	.title-b {font-size: 3rem;}
	.btn-slide img {width: 12rem;}
	.pc {display: none;}
	.sp {display: block;}
}
@media only screen and ( max-width : 500px ) {
	.blank {padding: 5rem 0;}
}
/*----------------------------------------------------------------------------------

    animation

-----------------------------------------------------------------------------------*/
.underline {display: inline-block;position: relative;text-decoration: none;}
.underline::after {	
	content: '';
	position: absolute;
	left: 50%;
	bottom: -1rem;
	transform: translate(-50%,50%);
	transition: all .3s ease 0s;
	width: 0;
	height: 2px;
	background: #C30D21;
}
.underline:hover {cursor: pointer;}
.underline:hover::after {width: 100%;}
/*----------------------------------
	画像スライド
----------------------------------*/
.img-animation {position: relative;overflow: hidden;animation: img-opacity 2s cubic-bezier(.4, 0, .2, 1);}
.img-animation:before {
	animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
	background: #fff;
	bottom: 0;
	content: '';
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
@keyframes img-opacity {
  0% {
    opacity: 0;
  }
}
@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}
/*----------------------------------
	画面ローディング
----------------------------------*/
#loader-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background: linear-gradient(-45deg,#0F094D,#000) fixed;
    z-index: 1;
}
#loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    text-align: center;
    color: #fff;
    z-index: 2;
}
/*----------------------------------------------------------------------------------

    header

-----------------------------------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	z-index: 9;
	transition: .5s;
    width: 100%;
	height: 8rem;
	background: #000;
}
header.transform {box-shadow: 0 0 .5rem rgba(0,0,0,.3);}
header .header_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
    height: 100%;
	padding: 1.5rem 0;
}
header nav {width: 100%;}
header .logo {
	display: flex;
	align-items: center;
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
}
header .logo a {
	display: flex;
	align-items: center;
	width: 56rem;
	color: #fff;
	font-size: 1.9rem;
}
header .logo img {width: 5rem;}
header .logo p {position: relative;padding-left: 6rem;color: #fff;}
header .logo p::before{
	content: "";
	position: absolute;
    left: 3rem;
	bottom: 50%;
	transform: translate(0,50%) rotate(-45deg);
	width: .7rem;
    height: .7rem;
    border-left: .2rem solid #fff;
	border-top: .2rem solid #fff;
}
header ul {
	display: flex;
	text-align: center;
	justify-content: flex-end;
	align-items: center;
}
header li a {position: relative;padding: 0 2.5rem;color: #fff;}
header li a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1rem;
	width: 100%;
	height: .1rem;
	background: #fff;
}
header li a:hover {color: #C30D21;}
header li p {
	position: relative;
	z-index: 1;
	width: 20rem;
	height: 8rem;
	margin-left: 4.5rem;
	border: .2rem solid #C30D21;
	background: #C30D21;
	color: #fff;
	text-align: center;
	line-height: 8rem;
}
li.menu__single {position: relative;}
ul.menu__second-level {
	display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 8rem;
    right: 0;
    z-index: 1;
    width: 20rem;
    background: #000;
    transition: all .2s ease;
}
li.menu__single:hover ul.menu__second-level {
    visibility: visible;
    opacity: 1;
	padding: 2rem 1rem;
}
ul.menu__second-level li {margin-bottom: 2rem;}
ul.menu__second-level li:last-child {margin-bottom: 0;}
ul.menu__second-level a {width: 100%;text-align: center;}
@media only screen and ( max-width : 1660px ) {
	header .logo a {width: 42rem;font-size: 1.5rem;}
	header .logo p {padding-left: 4rem;font-size: 1.2rem;}
	header .logo p::before {left: 2rem;}
	header li a {padding: 0 1.5rem;font-size: 1.4rem;}
	header li p {width: 13rem;margin-left: 2.5rem;}
	ul.menu__second-level {width: 13rem;}
}
@media only screen and ( max-width : 1280px ) {
	header .logo a {width: auto;}
	header .logo span,header .logo p {display: none;}
	header li a {font-size: 1.3rem;}
}
@media only screen and ( max-width : 896px ) {
	#js-black-bg {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 6;
		transition: .3s all;
		opacity: 0;
		visibility: hidden;
		width: 0;
		height: 100vh;
		background: #000;
		cursor: pointer;
	}
	#js-black-bg.clicked {opacity: .5;visibility: visible;width: 100%;}
	header {height: 8rem;}
	header nav {
		position: fixed;
		top: 8rem;
		right: -100%;
		z-index: 8;
		transition: .5s;
		width: 60%;
		background: #fff;
	}
	header nav.clicked {right: 0%;box-shadow: -2px 2px 3px rgba(0,0,0,.2);}
	header ul {display: block;}
	header li {display: block;margin-left: 0;border-bottom: 1px solid #3D3D3D;}
	header li a {display: block;padding: 2rem 2.4rem;color: #3D3D3D;}
	header li a::before {display: none;}
	header li p {display: none;}
	ul.menu__second-level {
		visibility: inherit;
		opacity: inherit;
		position: inherit;
		top: inherit;
		right: inherit;
		width: 100%;
		background: #fff;
	}
	li.menu__single:hover ul.menu__second-level {visibility: inherit;top: inherit;padding: inherit;}
	ul.menu__second-level li {margin-bottom: 0;}
	ul.menu__second-level a {text-align: left;}
	.underline {display: block;}
	.underline::after {bottom: 0;}
	#sp-menu {
		position: fixed;
		top: 2.2rem;
		right: 2rem;
		width: 3rem;
		z-index: 10;
	}
	#sp-menu a {
		position: relative;
		width: 2.2rem;
		height: 2rem;
		margin: 0 auto .5rem;
	}
	#sp-menu span {
		position: absolute;
		display: inline-block;
		left: 0;
		width: 100%;
		height: 2px;
		background: #fff;
		border-radius: .2rem;
		transition: all .4s;
	}
	#sp-menu span:nth-child(1) {top: 0;}
	#sp-menu span:nth-child(2) {top: .9rem;}
	#sp-menu span:nth-child(3) {bottom: 0;}
	#sp-menu span:nth-child(2)::after {
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 2px;
		background: #fff;
		border-radius: .2rem;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	#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);}
	#sp-menu p {color: #fff;font-size: 1rem;text-align: center;}
}
@media only screen and ( max-width : 500px ) {
	.header_box {padding: 1rem;}
	header nav {width: 100%;}
}
/*------------------------------------------------------------------

    footer

-------------------------------------------------------------------*/
footer {border-top: 6rem solid #0F094D;background: #0F094D;}
footer .inner {padding: 0 2rem 2rem;}
footer ul.flexbox {justify-content: center;max-width: 47.6rem;margin: 0 auto 2rem;}
footer li {margin: 0 1.5rem 1rem 0;padding-right: 1.5rem;border-right: .1rem solid #fff;}
footer li:nth-of-type(5) {margin-right: 0;padding-right: 0;border: none;}
footer li:last-child {margin: 0;padding: 0;border: none;}
footer a {color: #fff;font-size: 1.4rem;line-height: 1.4;}
footer a:hover {color: #C30D21;}
footer figure {width: 6rem;margin: 0 auto;}
footer p {
	padding: 2rem 0;
	background: #000;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}
@media only screen and ( max-width : 896px ) {
	footer ul.flexbox {max-width: 39rem;}
	footer ul.flexbox:nth-of-type(1) li {
		width: 100%;
		margin: 0;
		padding: 0;
		border-right: none;
		border-bottom: .1rem dotted #fff;
	}
	footer ul.flexbox:nth-of-type(1) li:last-child {border-bottom: none;}
	footer ul.flexbox:nth-of-type(1) a {padding: 2rem 0;text-align: center;}
	footer p {font-size: 1rem;}
}
/*------------------------------------------------------------------

    footer

-------------------------------------------------------------------*/
#notfound {padding-top: 20rem;}
#notfound h2 {margin-bottom: 5rem;text-align: center;}
#notfound h2 span {display: block;font-size: 2.5em;text-align: center;}
#notfound p {margin-bottom: 4rem;text-align: center;}
#notfound a {max-width: 30rem;margin: 0 auto;}
#notfound a span {font-size: 1.6rem;text-align: center;}
@media only screen and ( max-width : 896px ) {
	#notfound {padding-top: 13rem;}
}
/* -----------------------------------------------------------------

　   back top

------------------------------------------------------------------- */
.wrapper {position: relative;}
p.page_top {position: fixed;right: 1rem;bottom: 1rem;z-index: 5;}
p.page_top a {
	display: inline-block;
	vertical-align: middle;
	width: 4rem;
	height: 4rem;
	position: relative;
	border: .3rem solid #000;
	border-radius: .5rem;
	background: #fff;
}
p.page_top a::before {
	content: "";
	position: absolute;
    left: 50%;
	bottom: 50%;
	transform: translate(-50%,50%);
	width: 0;
	height: 0;
	border-left: 1rem solid transparent;
	border-right: 1rem solid transparent;
	border-bottom: 1.5rem solid #000;
}