/*MK*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');
/*////////////////////////////////////////////////////////////////////////
reset
////////////////////////////////////////////////////////////////////////*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
}

html {
	/*image-rendering: -webkit-optimize-contrast;*/
}

body{
	overflow-y: scroll; /* スクロールバー常に表示 */
}

html,body {
	font-size-adjust:100%;
	-webkit-font-size-adjust: 100%;
}

body,h1,h2,h3,h4,h5,h6,p,img,
hr,li,ul,dl,dt,dd
{
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
}

table th{font-weight:normal;}

img{
	border:0px;
	image-rendering:auto;
}

.clear{clear:both;}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}


/*////////////////////////////////////////////////////////////////////////
基本カラー
////////////////////////////////////////////////////////////////////////*/
:root{
	
--dPink:#af5870;
--kPink:#c13856;
--lPink:#ff999f;
--brown:#6b3b10;
--gold:#eecc6f;
		
--white10: rgba(255,255,255,0.1);
--white30: rgba(255,255,255,0.3);
--white50: rgba(255,255,255,0.5);
--white70: rgba(255,255,255,0.7);
	
--c0:#ac3241;
--c1:#00629f;
--c2:#bc9a36;
--c3:#ff7e90;
--c4:#aaaaaa;
--c5:#333333;
--c6:#865898;
--c7:#ee7c4a;
--c8:#04c0ff;
--c9:#007d50;
--c10:#84393d;
--c99:#9b9b9b;
	
--fontZen:"Zen Kurenaido", sans-serif;
	
}


/*////////////////////////////////////////////////////////////////////////
基本
////////////////////////////////////////////////////////////////////////*/
.non{
	opacity:0.3;
	cursor:default;
	pointer-events: none;
}

ruby {
        display: inline-table;
        border-collapse: collapse;
        margin: 0;
        padding: 0;
        border: none;
        white-space: nowrap;
        text-indent: 0;
        vertical-align: bottom;
        text-decoration: inherit;
        text-align: center;
        }
ruby>rt {
    display: table-header-group;
    height: 25%;
    margin: 0;
    padding: 0 0.125em;
    border: none;
    font: inherit;
    line-height: 1.1em;
	text-align: center;
	font-size: 50%;
	position: relative;
	transform: translateY(0.5em);
    }

br.txtCutNone{display:none;}

a{
	color: var(--gray);
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration: none;
}

::selection {
	color: #fff;
	background-color:#00b4c8;
}
::-moz-selection {
	color: #fff;
	background-color:#00b4c8;
}

hr.solidLine{
	border-top: solid 1px var(--gray);
}

.txtCutNone{
	display: none;
}

.fadeUp{
	opacity: 0;
	position: relative;
	bottom: -20px;
}

.blur{
	filter: blur(10px);
	animation: blur-anim 2s forwards;
}

@keyframes blur-anim {
	100% {	filter: blur(0); }
}


/*////////////////////////////////////////////////////////////////////////
全体ボックス
////////////////////////////////////////////////////////////////////////*/
html{
}

body{
	font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif; 
	font-size:min(2.5vw,18px);
	font-weight: bold;
	color: var(--darkBlue);
	min-width: 1300px;
}

body::before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-3;
	width:100%;
	height:100vh;
}

html, body {
	width: 100%;
	height: 100%;
	position: relative;
}

h1{
	padding: 5% 0 3%;
	position: relative;
	z-index: 1;
}

h1 img{
	width: 70%;
	max-width: 550px;
}

/*////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////*/
#loading{
	width:100%;
	height: 100%;
	position:fixed;
	z-index:99;
	display: flex;
    justify-content: center;
    align-items: center;
	text-align:center;
	pointer-events: none;
}

#loading p{
	display: block;
	width: 100%;
	padding: 5px;
}

#loading p img{
	width: 50%;
	max-width: 300px;
}

#backTop{
	padding: 3.5em;
	max-width: 60px;
	z-index: 99;
	position: fixed;
	bottom: 0.5em;
	right: 0;
	cursor: pointer;
	background-image: url("../img/backtop.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
}

#backTop img{
	width: 100%;
	transition: 0.3s;
}

#backTop:hover{
	background-image: url("../img/backtop_on.png");
	transition: 0.3s;
}

#backTop.btChange{
	background-image: url("../img/backtop_on.png");
}

#mainBox{
	width: 100%;
	margin: auto;
	opacity: 0;
	text-align: center;
	position: relative;
	z-index: 0;
}

.inBox{
	max-width: 1300px;
	padding:0 3%;
	margin: auto;
}

.indent{
	padding-left: 1em;
}

.indent li{
	text-indent: -1em;
	margin-bottom: 5px;
}

.newNav{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 25%;
}

.newNav img{
	width: 100%;
	transform-origin:　center center;
	animation: rotateR 10s linear infinite;
}

h2{
	margin-bottom: 2em;
}

h2 img{
	width: 80%;
	max-width: 550px;
}


/*////////////////////////////////////////////////////////////////////////
ヘッダー
////////////////////////////////////////////////////////////////////////*/
header{
	position: relative;
	background-color: var(--black);
	border-bottom: 10px solid var(--black);
	background-image: url("../img/nav_bg.jpg");
	background-position: center bottom;
	background-repeat: repeat-x;
	z-index: 999;
}

header nav .smpLogo{
	display: none !important;
}

header nav{
	text-align: center;
	border-bottom:  3px solid var(--red);
	padding-top: 0.2em;
	position: relative;
}

header nav ul{
	margin: auto;
	width: 100%;
	max-width: 1500px;
	margin-bottom: -0.5em;
}

header nav ul li{
	position: relative;
	width: 11.5%;
	margin: 0%;
	display: inline-block;
	overflow: hidden;
	padding-top: 1em;
}

header nav ul li .text{
	position: absolute;
	top: 20%;
	left: 0;
	z-index: 1;
}

header nav ul li .text img{
	width: 100%;
	margin-left: -8%;
}

header nav ul li .right{
	background-image: url("../img/n_off_r.png");
	background-size: 100%;
	margin-left: -100%;
	display: inline-block;
	background-repeat: no-repeat;
}

header nav ul li .left{
	background-image: url("../img/n_off_l.png");
	background-size: 100%;
	display: inline-block;
	background-repeat: no-repeat;
}


header nav ul li .right, header nav ul li .left{
	width: 100%;
}

header nav ul a:hover li .right,
header nav ul a li.select .right{
	animation:cuttingR 0.2s forwards;
	background-image: url("../img/n_on_r.png");
	
}

header nav ul a:hover li .left,
header nav ul a li.select .left{
	animation:cuttingL 0.2s forwards;
	background-image: url("../img/n_on_l.png");
}

.navBtn{
	display: none;
}

.snsIcon{
	width: 2.5em;
	position: absolute;
	right: 0.7%;
	top: 18%;
}

.snsIcon img{
	width: 100%;
	border: solid 1px var(--gray);
}

.snsIcon img:hover{
	filter: brightness(1.5);
}


@keyframes cuttingR {
	0% {
		filter: brightness(2);
		transform: translateX(0px) translateY(0px);
	}
	100% {
		filter: brightness(1);
		transform: translateX(-5px) translateY(5px);
	}
}

@keyframes cuttingL {
	0% {
		filter: brightness(2);
		transform: translateX(0px) translateY(0px);
	}
	100% {
		filter: brightness(1);
		transform: translateX(-2px) translateY(-2px);
	}
}


/* ------------------------------
サブナビ
------------------------------*/
#subNavi{
	width: 100%;
	margin: auto;
	border-bottom: 2px solid var(--black);
	margin-bottom: 2em;
}

.nomalNavi ul{
	border-bottom: 3px double var(--black);
	padding-bottom: 0.5em;
}

.nomalNavi ul li{
	display: inline-block;
	margin: 0.5%;
	position: relative;
	width: 20%;
	max-width:200px;
	background-color: var(--black);
	border: double 3px var(--white);
	background-image: url("../img/sn_lt.png"),url("../img/sn_rb.png");
	background-position: left top, right bottom;
	background-repeat: no-repeat,no-repeat;
	background-size: auto, auto;
}

.nomalNavi ul li a{
	display: block;
	color: var(--white);
	padding: 0.5em;
}

.nomalNavi ul li.select, .nomalNavi ul li:hover{
	background-color: var(--gold);
}

.nomalNavi ul li.select a, .nomalNavi ul li:hover a{
	color: var(--black);
}

.newSub{
	position: absolute;
	left: 0;
	top: -10%;
	z-index: 1;
	width: 20%;
}

.newSub img{
	width: 100%;
}



/*////////////////////////////////////////////////////////////////////////
トップ
////////////////////////////////////////////////////////////////////////*/
#kvArea{
	background-image:url("../img/k0_1.png"), url("../img/top/kv_bg_pc.jpg");
	background-size:100%, 100%;
	background-repeat:no-repeat, no-repeat;
	background-position:bottom right, center top;
	font-family: var(--fontZen);
	padding-bottom: 5em;
	position: relative;
	margin-bottom: -1px;
}

#kv{
	position: relative;
}

#kv .abs{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
}

#kv .line,
#kv .butterfly{
	z-index: 1;
}

#kvArea .logo{
	padding-top: 70%;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 600px;
	margin: auto;
	margin-bottom: -1em;
}

#kvArea .logo img{
	width: 100%;
}

#kvArea .txt{
	font-size: 330%;
	color: var(--dPink);
	letter-spacing: -0.05em;
	text-shadow: 
    #fff 2px 0px 0px, #fff -2px 0px 0px,
    #fff 0px -2px 0px, #fff 0px 2px 0px,
    #fff 2px 2px 0px, #fff -2px 2px 0px,
    #fff 2px -2px 0px, #fff -2px -2px 0px,
    #fff 1px 2px 0px, #fff -1px 2px 0px,
    #fff 1px -2px 0px, #fff -1px -2px 0px,
    #fff 2px 1px 0px, #fff -2px 1px 0px,
    #fff 2px -1px 0px, #fff -2px -1px 0px,
    #fff 1px 1px 0px, #fff -1px 1px 0px,
    #fff 1px -1px 0px, #fff -1px -1px 0px;
}

/*
.lineKumo{
	background-image: url("../img/line.png");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 100%;
	padding: 11vh;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -5.1em;
}
*/

#infoAria{
	background-image:url("../img/k0_2.png"), url("../img/moya.png"), url("../img/kumo.png"), url("../img/tex_1.jpg");
	background-position:top right, center top, center bottom, center center;
	background-repeat:no-repeat, no-repeat, no-repeat, repeat;
	background-size:100%, 100%, 100%, auto;
}

#infoAria .inBox{
	padding: 5em 3%;
	max-width: 1600px;
}

#infoAria .movie{
	width: 46%;
	display: inline-block;
	margin: 2%;
	position: relative;
}

#infoAria .movie .movieBox{
	position: relative;
	margin: auto;
	overflow: hidden;
}

#infoAria .movie img{
	width: 100%;
}

#infoAria .movie .movieIcon{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	border: 0;
	z-index: 1;
	transition-duration: 0.3s;
}

#infoAria .movie .movieIcon:hover{
  transform: scale(1.2);
  transition-duration: 0.3s;
}

#infoAria .bannerArea{
	max-width: 1000px;
	margin:2em auto 0;
}

#infoAria .bannerArea img{
	width: 45%;
	max-width: 400px;
	margin: 0 2.5%;
}

/*######################################################################
メディアクエリ
######################################################################*/
/*//////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 1300px) {
/*//////////////////////////////////////////////////////////////////////*/

	
/*//////////////////////////////////////////////////////////////////////*/
}
@media screen and (max-width: 1000px) {
/*//////////////////////////////////////////////////////////////////////*/
	
	
/*//////////////////////////////////////////////////////////////////////*/
}
@media screen and (max-width: 800px) {
/*//////////////////////////////////////////////////////////////////////*/
body{
	font-size:min(3vw);
	min-width: inherit;
}
br.txtCut{display:none;}
br.txtCutNone{display:block;}

.inBox{
	padding:2em 1em;
}
	
#mainBox{
	width: 100%;
	margin: auto;
	opacity: 0;
	text-align: center;
	position: relative;
	z-index: 0;
}
	
#backTop{
	width: 15vw;
}
	
	
/*////////////////////////////////////////////////////////////////////////
トップ
////////////////////////////////////////////////////////////////////////*/
#kvArea{
	background-image:url("../img/k0_1.png"), url("../img/top/kv_bg_smp.jpg");
	background-size:200%, 100%;
	background-position:bottom left,  center top;
	padding-bottom: 3em;
	background-color: #fcfafb;
}

#kvArea .logo{
	padding-top: 165%;
	width: 60%;
	margin-bottom:0;
}

#kvArea .txt{
	font-size: 200%;
}

.lineKumo{
	background-position: center left;
	background-size:200%;
	padding: 2.5%;
	bottom:-2%;
}

#infoAria{
	background-size:200%, 200%,200%,25%;
	background-position:top left, center bottom, center bottom, center center;
}

#infoAria .inBox{
	padding: 4em 8%;
}

#infoAria .movie{
	width: 100%;
	display: block;
	margin: 1em auto;
}

#infoAria .bannerArea img{
	width: 48%;
	max-width: 400px;
	margin: 0 1%;
}

	

/*//////////////////////////////////////////////////////////////////////*/
}
@media screen and (max-width: 480px) {
/*//////////////////////////////////////////////////////////////////////*/

	
/*//////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////*/
}