@charset "utf-8";
* {
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	box-sizing: border-box !important;
}

body {
	color: #231815;
	/*font-family: "fot-udkakugo-large-pr6n", sans-serif;
	font-weight: 400;
	font-style: normal;*/
	font-family: "source-han-serif-japanese", serif;
	font-weight: 300;/*500 900*/
	font-style: normal;
	position: relative;
	background-image: url("../img/bg.jpg");
}
a {
	text-decoration: none;
	color: #231815;
}
a:hover {
	color: #910000;
}


body #load {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 99999;
}


/* header */
body #header {
	position: relative;
}
body:not(.sp) #header {
	display: flex;
	background-color: rgba(255,255,255,.8);
}
@media(min-width:1124px) {
	body.sp #header {
		display: flex;
		background-color: rgba(255,255,255,.8);
	}
}

#nav {
	display: flex;
	flex-direction: column;
	align-items: center;
}
body:not(.sp) #nav {
	width: 300px;
	padding: 10px 0 10px;
}

body:not(.sp) #nav h1 img {
	max-height: 50vh;
}
@media(min-width:1124px) {
	body.sp #nav {
		width: 300px;
		padding: 10px 0 10px;
	}
	body.sp #nav h1 img {
		max-height: 50vh;
	}
}



@media(max-width:1123px) {
	body.sp .sns {
		padding: 30px 0 0;
	}
	body.sp .sns img {
		width: 30px;
	}
}
body:not(.sp) .sns {
	text-align: center;
	padding: 60px 0;
}
body:not(.sp) .sns img {
	width: 40px;
}
@media(min-width:1124px) {
	body.sp .sns {
		text-align: center;
		padding: 60px 0;
	}
	body.sp .sns img {
		width: 40px;
	}
}
#nav li {
	margin-bottom: 20px;
	line-height: 0;
}
#nav li:last-child {
	margin-bottom: 0;
}
@media(max-width:1123px) {
	body.sp #nav li {
		margin-left: 10vw;
		width: 50vw;
	}
	body.sp #nav li img {
		max-width: 100%;
	}
}
#nav li a {
	text-decoration: none;
	color: #231815;
	transition: .3s all;
}
#nav li a:hover {
	color: #910000;
	filter: drop-shadow(0 0 3px rgba(145,0,0,.5));
}


/* メニュー用下線アニメーション */
#nav li a{
	/*線の基点とするためrelativeを指定*/
	position: relative;
}
#nav li a:hover{
	color: #910000;
}
#nav li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -5px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background:#910000;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}
#nav li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}


/* sp時ポップアップメニューボタン */
.menubtn {
	position: fixed;
	z-index: 1;
	top: 5px;
	right: 5px;
	cursor: pointer;
}
.menubtn img {
	width: 50px;
	height: 50px;
	cursor: pointer;
}


/* sp時ポップアップメニュー */
.lity-container {
	position: relative;
}
.lity-content {
}
.lity-content #nav::before {
	content: '';
	position: absolute;
	left: 5px;
	top: 5px;
	display: block;
	width: 20vw;
	aspect-ratio: 203 / 600;
	background-image: url('../img/logo.png');
	background-size: contain;
}
.lity-container #nav,
.lity-container #menu {
	width: calc(100vw - 20px);
	height: calc(100vh - 120px);
	background-color: #fff;
}
.lity-container #nav {
	justify-content: center;
}


body:not(.sp) #kv {
	width: calc(100% - 300px);
	aspect-ratio: 2885 / 4077;
	height: auto;
}
@media(min-width:1124px) {
	body.sp #kv {
		width: calc(100% - 300px);
		aspect-ratio: 2885 / 4077;
		height: auto;
	}
}

.slider {
  opacity: 0;
  transition: opacity .3s linear;
	pointer-events: none;
}
@media(max-width:1123px) {
	body.sp .slider {
		width: 100%;
		/*height: calc(4077 / 2885 * 100vw);*/
		aspect-ratio: 2885 / 4077;
		height: auto;
	}
}
.slider.slick-initialized{
  opacity: 1;
}
.slides {
  margin: 0 auto;
  position: relative;
}
.slider .slick-slide {
	position: relative;
}
@media(max-width:1123px) {
	body.sp .slider .slick-slide::after {
		position: absolute;
		bottom: 0;
		left: 0;
		content: '';
		display: block;
		width: 100%;
		height: 4px;
		z-index: 10;
		background-color: #910000;
	}
	body.sp .slider .slick-slide.slick-active::after {
		animation: progress 10.0s linear forwards;
	}
}
@keyframes progress {
  from {
    width: 0%;
  }
  
  to {
    width: 100%;
  }
}


@media(max-width:1123px) {
	body.sp .slider .slick-slide {
		width: 100%;
		/*height: calc(4077 / 2885 * 100vw);*/
		aspect-ratio: 2885 / 4077;
		height: auto;
	}
}
.slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-dotted.slick-slider {
	margin-bottom: 0!important;
}


body:not(.sp) .thumbs_dots {
	position: absolute;
	left: 10px;
	top: 10px;
}
body:not(.sp) .thumbs_list {
	display: flex;
	flex-direction: column;
}
@media(min-width:1124px) {
	body.sp .thumbs_dots {
		position: absolute;
		left: 10px;
		top: 10px;
	}
	body.sp .thumbs_list {
		display: flex;
		flex-direction: column;
	}
}
@media(max-width:1123px) {
	body.sp .thumbs_list {
		display: flex;
		justify-content: center;
		line-height: 0;
	}
	body.sp .thumbs_dots {
		position: relative;
		left: 0;
		top: 0;
		background-color: #000;
		/*background-color: rgba(255,255,255,.8);*/
		padding: 10px 0;
	}
	body.sp .thumbs_dots::after {
		content: '';
		width: 100%;
		display: block;
		clear: both;
	}
}
body:not(.sp) .thumbs_list li {
	display: inline-block;
	width: 100px;
	height: 141px;
	opacity: .6;
	cursor: pointer;
	transition: opacity 0.3s;
}
@media(min-width:1124px) {
	body.sp .thumbs_list li {
		display: inline-block;
		width: 100px;
		height: 141px;
		opacity: .6;
		cursor: pointer;
		transition: opacity 0.3s;
	}
}
@media(max-width:1123px) {
	body.sp .thumbs_list li {
		display: inline-block;
		width: 100%;
		max-width: 60px;
		max-height: 85px;
		aspect-ratio: 2885 / 4077;
		opacity: .6;
		cursor: pointer;
		transition: opacity 0.3s;
		margin: 0 10px;
	}
}
.thumbs_list {
	position: relative;
}
.thumbs_list li.slick-active {
  opacity: 1!important;
}
.thumbs_list li::after {
	display: block;
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid transparent;
}
.thumbs_list li.slick-active::after {
	border: 2px solid #fff;
}



#main #str {
	width: 100%;
	height: min(700px, 56.3vw);
	background-color: #000;
	overflow: hidden;
	position: relative;
}
@media screen and (max-width: 768px) {
	#main #str {
		height: min(200px, 56.3vw);
	}
}
@media screen and (max-width: 480px) {
	#main #str {
		height: auto;
		aspect-ratio: 16 / 9;
	}
}
body:not(.no_animation) .slidein {
	opacity: 0;
	transition: all 1.0s;
}
body:not(.no_animation) .slidein.left {
	transform: translate(100%,0);
}
body:not(.no_animation) .slidein.right {
	transform: translate(-100%,0);
}
body:not(.no_animation) .slidein.scrollin {
    transform: translate(0, 0)!important;
    opacity: 1!important;
}
body .slideout {
	opacity: 1;
	transition: all 1.0s;
	transform: translate(0,0);
}
body .slideout.scrollin {
    transform: translate(0, -100%)!important;
    opacity: 1!important;
}
#main #str .youtubebox {
	width: 100%;
	height: 100%;
	position: relative;
}
#main #str .youtubebox a {
	display: block;
	width: 100%;
	height: 100%;
	/*opacity: .5;*/
	/*background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	background-image: url('https://img.youtube.com/vi/Gv747LpoEiY/maxresdefault.jpg');*/
}
#main #str .youtubebox a::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-image: url("../img/ico_str.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;/*min(120px, 25%);*/
	background-color: rgba(0,0,0,.8);
	transition: all .3s;
	z-index: 2;
}
@media(max-width:1123px) {
	body.sp #main #str .youtubebox a::before {
		background-image: url("../img/ico_str_sp.png");
	}
}
#main #str .youtubebox a:hover::before {
	background-color: rgba(0,0,0,.5);
}
@media (max-width:480px) {
	#main #str iframe {
		max-width:100%!important;
		aspect-ratio: 16 / 9;
		margin: 0!important;
	}
	#wrapper_ytPlayer {
		padding-bottom: calc(9 / 16 * 100vw)!important;
	}
}





#main h2 {
	/*font-family: "genkaimincho", sans-serif;
	font-weight: 800;
	font-style: italic;*/
	font-family: "cheddar-gothic-rough", sans-serif;
	font-weight: 400;
	/*font-family: "nexa-rust-sans-black-2", sans-serif;
	font-weight: 900;*/
	font-style: normal;
	font-size: min(500%, 6vw);
	letter-spacing: -0.01em;
	line-height: 1;
	padding: 10px 10px 0 10px;
	opacity: .8;
}
#main h2 img {
	height: min(1em, 8vw);
	width: auto!important;
	margin-right: 0!important;
}
#main #str h2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	color: #fff;
}
#main #sns h2 {
	line-height: 1;
	text-align: right;
	margin-bottom: 10px;
}
#main h2 span {
	display: inline-block;
	padding-right: 30px;
	margin-right: -30px;
}
#main #sns h2 span {
	display: inline-block;
	padding-left: 30px;
	margin-left: -30px;
	padding-right: 0;
	margin-right: 0;
}

body:not(.no_animation) #main h2 span:nth-child(0) {
	animation-delay: 0s;
	transition-delay: 0s;
}
body:not(.no_animation) #main h2 span:nth-child(1) {
	animation-delay: .2s;
	transition-delay: .2s;
}
body:not(.no_animation) #main h2 span:nth-child(2) {
	animation-delay: .4s;
	transition-delay: .4s;
}
body:not(.no_animation) #main h2 span:nth-child(3) {
	animation-delay: .6s;
	transition-delay: .6s;
}
body:not(.no_animation) #main h2 span:nth-child(4) {
	animation-delay: .8s;
	transition-delay: .8s;
}
body:not(.no_animation) #main h2 span:nth-child(5) {
	animation-delay: 1s;
	transition-delay: 1s;
}
#main #news h2 {
	color: #fff;
}






#main #sns {
	padding: 0 10px min(calc(5em + 20px), calc(8vw + 20px));
	position: relative;
	background-color: rgba(255,255,255,.8);
}
#main #sns a {
	text-decoration: none;
	color: #231815;
	transition: .3s all;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	margin: 0 auto;
}
#main #sns a:hover {
	color: #910000;
}
#main #sns a > * {
	align-self: center;
}
#main #sns img {
	/*width: 40px;*/
	width: 1.8em;
	margin-right: 10px;
}
#main #sns p {
	/*font-size: 240%;*/
	font-size: 180%;
	font-weight: 700;
	letter-spacing: -.05em;
	white-space: nowrap;
}




#main #news {
	background-color: rgba(153,153,153,.80);
	padding: 0 10px 10px;
}
#main #news dl {
	justify-content: center;
	padding: 30px 30px 10px 30px;
	padding-left: min(30px, 4vw);
	padding-right: min(30px, 4vw);
}
#main #news dl a {
	/*width: calc((100% - 80px) / 5);*/
	display: block;
	max-width: 900px;
	width: 100%;
	padding: min(20px, 2vw);
	background-color: rgba(0,0,0,.3);
	transition: .3s all;
	margin: 0 auto 20px; 
}
#main #news dl a:hover {
	background-color: rgba(238,238,238,.4);
}
#main #news dl a dt {
	line-height: 1;
	color: #ccc;
	font-size: 80%;
	transition: .3s all;
}
#main #news dl a:hover dt {
	color: #231815;
}
#main #news dl a dd {
	padding: 5px 5px 0;
	line-height: 1.5;
	color: #fff;
	transition: .3s all;
}
#main #news dl a:hover dd {
	color: #910000;
}

/* CSSアニメーションの指定 */
#nav ul li{
	animation: SlideIn-right .5s forwards;
	opacity: 0;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(1){
	animation-delay: 2.1s;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(2){
	animation-delay: 2.2s;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(3){
	animation-delay: 2.3s;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(4){
	animation-delay: 2.4s;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(5){
	animation-delay: 2.5s;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(6){
	animation-delay: 2.6s;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(7){
	animation-delay: 2.7s;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(8){
	animation-delay: 2.8s;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(9){
	animation-delay: 2.9s;
}
body:not(.sp):not(.no_animation) #nav ul li:nth-child(10){
	animation-delay: 3.0s;
}
@media(min-width:1124px) {
body.sp:not(.no_animation) #nav ul li:nth-child(1){
	animation-delay: 2.1s;
}
body.sp:not(.no_animation) #nav ul li:nth-child(2){
	animation-delay: 2.2s;
}
body.sp:not(.no_animation) #nav ul li:nth-child(3){
	animation-delay: 2.3s;
}
body.sp:not(.no_animation) #nav ul li:nth-child(4){
	animation-delay: 2.4s;
}
body.sp:not(.no_animation) #nav ul li:nth-child(5){
	animation-delay: 2.5s;
}
body.sp:not(.no_animation) #nav ul li:nth-child(6){
	animation-delay: 2.6s;
}
body.sp:not(.no_animation) #nav ul li:nth-child(7){
	animation-delay: 2.7s;
}
body.sp:not(.no_animation) #nav ul li:nth-child(8){
	animation-delay: 2.8s;
}
body.sp:not(.no_animation) #nav ul li:nth-child(9){
	animation-delay: 2.9s;
}
body.sp:not(.no_animation) #nav ul li:nth-child(10){
	animation-delay: 3.0s;
}
}
@media(max-width:1123px) {
	body.sp #nav ul li:nth-child(1){
		animation-delay: .6s;
	}
	body.sp #nav ul li:nth-child(2){
		animation-delay: .7s;
	}
	body.sp #nav ul li:nth-child(3){
		animation-delay: .8s;
	}
	body.sp #nav ul li:nth-child(4){
		animation-delay: .9s;
	}
	body.sp #nav ul li:nth-child(5){
		animation-delay: 1s;
	}
	body.sp #nav ul li:nth-child(6){
		animation-delay: 1.1s;
	}
	body.sp #nav ul li:nth-child(7){
		animation-delay: 1.2s;
	}
	body.sp #nav ul li:nth-child(8){
		animation-delay: 1.3s;
	}
	body.sp #nav ul li:nth-child(9){
		animation-delay: 1.4s;
	}
	body.sp #nav ul li:nth-child(10){
		animation-delay: 1.5s;
	}
	body.sp #nav ul li.sns{
		animation-delay: 1.6s;
	}
}
/* CSSアニメーションの設定 */
@keyframes SlideIn-right {
	0% {
	  opacity: 0;/*初期状態では透明に*/
	  transform: translateX(64px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes SlideIn-left {
	0% {
	  opacity: 0;/*初期状態では透明に*/
	  transform: translateX(-64px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes SlideIn-out {
	0% {
	  opacity: 0;/*初期状態では透明に*/
	  transform: translateY(0);
	}
	100% {
		opacity: 1;
		transform: translateX(-64px);
	}
}



#footer {
	background-color: rgba(238,238,238,.50);
	background-image: -webkit-linear-gradient(270deg,rgba(238,238,238,.80) 0%,rgba(153,153,153,.80) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(238,238,238,.80) 0%,rgba(153,153,153,.80) 100%);
	background-image: -o-linear-gradient(270deg,rgba(238,238,238,.80) 0%,rgba(153,153,153,.80) 100%);
	background-image: linear-gradient(180deg,rgba(238,238,238,.80) 0%,rgba(153,153,153,.80) 100%);
	padding: 30px;
}
#footer .bnrbox {
	display: flex;
	flex-direction: column;
}
#footer .bnrbox ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#footer .bnrbox li {
	width: 235px;
	max-width: 25%;
	padding: 20px;
	text-align: center;
}
body:not(.sp) #footer .bnrbox li:nth-child(4) {
	width: 100px;
	max-width: 25%;
	padding: 20px;
	text-align: center;
	}
@media(min-width:1124px) {
	body.sp #footer .bnrbox li:nth-child(4) {
		width: 100px;
		max-width: 25%;
		padding: 20px;
		text-align: center;
	}
}
@media(max-width:1080px) {
	#footer .bnrbox li {
		width: 235px;
		max-width: 50%;
	}
}
#footer .bnrbox > div {
	text-align: center;
	padding: 30px;
}
#footer .bnrbox img {
	width: 100%;
	max-width: 195px;
	aspect-ratio: 195 / 60;
	height: auto;
}
#footer .bnrbox li:nth-child(4) img {
	width: 100%;
	max-width: 60px;
	aspect-ratio: 1 / 1;
}
@media(max-width:1123px) {
	body.sp #footer .bnrbox li:nth-child(4) img {
		width: 31%;
		aspect-ratio: 1 / 1;
	}
}
#footer .copyright {
	padding-bottom: 30px;
}
#footer .copyright p,
#footer .attention p {
	text-align: center;
	line-height: 1.5;
	font-size: 80%;
}



