@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ovo&family=Poiret+One&display=swap');

↓明朝
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');
/* CSS Document */
*{zoom:1;}
:root{
--mainPurple:#200629;
--subPurple:#5f3b67;
--subGray:#919191;
--yellow:#ebc11d;
--blue:#348ac3;
--pink:#e87c9c;
--purple_a:rgba(108,64,113,0.5);
--gray_a:rgba(145,145,145,0.53);
--txt_b:#1f0629;
}
body {
	font-family:'Noto Sans JP', "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif; */
    background-color:#fff;
	font-size:16px;
	color:var(--txt_b);
    line-height:1.5em;
    width:100%;
    min-width:1024px;
    overflow-y:scroll;
}
body,nav,header,footer,div,p,a,ul,li,section,article,dl,dt,dd,h1,h2,h3,h4,h5,h6,img{
	margin:0;
	padding:0;
	font-weight:normal;
	list-style-type:none;	
	box-sizing:border-box;
	font-size: 1em;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

::selection {
    background: #6c7f96;
    color: #fff;
}

/*Firefox*/
::-moz-selection {
    background: #6c7f96;
    color: #fff;
}

.clear{clear:both;}


img{
	width:100%;
    vertical-align: bottom;
    border:0;
}

a{
	text-decoration:none;
	word-wrap: break-word;     /* 旧プロパティ名 */
	overflow-wrap: break-word; /* 新プロパティ名 */
}
a:hover{
}

.br2{display:inline-block;}
.english{
font-family: 'Ovo', serif;
}
.japanese{
font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}
ul.notes{margin-left:1em;}
ul.notes li{text-indent:-1em;}
/*ボックス関係*/
.corner_r{
	border-radius: 6px;
}
/*テキスト関係*/
.smallTxt{font-size: max(0.8em,11px);}
.center{text-align: center;}
/*グリッド関係*/
.grid_box{
	display: grid;
	column-gap: 1em;
	row-gap: 1em;
}
.grid_4{grid-template-columns:repeat(4, 1fr);}
.grid_3{grid-template-columns:repeat(3, 1fr);}
.grid_2{grid-template-columns:repeat(2, 1fr);}
/*ルビ関係*/
ruby {
        display: inline-table;
        border-collapse: collapse;
        margin: 0;
        padding: 0;
        border: none;
        white-space: nowrap;
        text-indent: 0;
        vertical-align: 0.9em;
        text-decoration: inherit;
        text-align: center;
        line-height: 1em;
        }
ruby>rt {
    display: table-header-group;
    height: 25%;
    margin: 0;
    padding: 0 0.125em;
    border: none;
    font: inherit;
    font-size: 50%;
    line-height: 1em;
	text-align: center;
    }

/*トップヘ戻る*/
#backTop{
	width: 10%;
	max-width:70px;
	/*bottom:100px;*/
    bottom:5px;
	right:5px;
	cursor:pointer;
	position: fixed;
	z-index:999;
}
#backTop span{
	display: block;
	position: relative;
	width: 4em;
	height: 4em;
	text-indent: -99999px;
}
#backTop span:before{
	content: "";
	width: 100%;
	top:0;
	bottom: 0;
	background-color:var(--mainPurple);
	box-shadow:  inset 0 0 0 0.3em  var(--mainPurple), inset 0 0 0 0.4em #8b7361;
	position: absolute;
	display: block;
}
#backTop span:after{
	content: "▲";
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	margin-left: -0.5em;
	top:50%;
	left: 50%;
	color: #fff;
	border-top: #fff 2px solid;
	position: absolute;
	display: block;
	text-indent: 0;
	line-height: 1em;

}
/*----------------------------------------------------------------
動画
-----------------------------------------------------------------*/
 .movieArea {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:auto;
	border: solid 1px #2c2c2c;
}

.movieArea iframe,  
.movieArea object,  
.movieArea embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*----------------------------------------------------------------
ローディング
-----------------------------------------------------------------*/
.loading{
    width:100%;
    position:fixed;
    top:50%;
    z-index:999;
	background-color:#fff;
	font-size: 3em;
	font-family: 'Poiret One', cursive;
}
.loading .load{
	width: 10em;
	margin: 0 auto;
	color: var(--mainPurple);
}

.loadBg{
	background-color: #fff;
	position: absolute;
	top:0;
	right: 0;
	border-left: #000 1px solid;
	opacity: 0;
	z-index: 999;
}
/*----------------------------------------------------------------
コンテンツ
-----------------------------------------------------------------*/
	#wrap{
		width: 100%;
		display: block;
		position: relative;

	}
	#contents{
		width: 100%;
		opacity: 0;
		position: relative;
	}
	.mainWrap{
	}

	.contentsBox{
		width: calc(100% - 2em);
		max-width: 1400px;
		margin: 0 auto;
	}
	.doubleCont{
		background-color: var(--mainPurple);
		background-image: url(../img/gnavi/bg.png);
		background-position: left bottom;
		background-size: 50% auto;
		background-repeat: no-repeat;
		position: relative;
		background-attachment: fixed;
	}
	

	.doubleCont:before{
		content: "";
		width: 1px;
		height: 50vh;
		position:absolute;
		display: block;
		background-color: var(--yellow);
		left: 0.5em;
		bottom: 0;
	}
	.topArea.doubleCont .pickup:after,.secondArea.doubleCont:after{
		content: "";
		width: 4vw;
		height: 10vw;
		position:absolute;
		display: block;
		left: 1em;
		bottom: 0.5em;
		background-image: url(../img/side_icon.png);
		background-position: left bottom;
		background-repeat: no-repeat;
		background-size: 100% auto;
	}
	.topArea.doubleCont .pickup{
		/*padding-bottom: 0.5em;*/
	}
	.secondArea.doubleCont:after,.secondArea.doubleCont:before{
			position:fixed;

	}
	.topArea.doubleCont .pickup:after{
		bottom: auto;
		top:-10.5vw;
	}
	.doubleCont .mainBox{
		width:calc(100% - 15vw) ;
		margin-left: auto;
		position: relative;
		background-color: #fff;
	}
/*二階層目*/
.secondArea .mainBox{
	background-image: url(../img/second/bg.png);
	background-position: right top;
	background-repeat: no-repeat;
	background-size: calc(100% - 15vw) auto;
	background-attachment: fixed;
}
.secondArea h1{
	overflow: hidden;
	width: 100%;
}
#subNavi{
	width: 50%;
	position: absolute;
	right: 0.5em;
	top:5.3vw;
	display: block;
}
#subNavi a{
	background-color: var(--subGray);
	text-align: center;
	color: #fff;
	overflow: hidden;
	position: relative;
	box-shadow: 0.3em 0.3em 0 var(--purple_a);
	font-size: max(0.9em,12px);
}
#subNavi a .box{
	position: relative;
	z-index: 2;
		padding: 1em;

}
#subNavi a .box:before{
	content: "";
	left: 0;
	right: 0.3em;
	bottom:0.3em;
	top:0;
	border-bottom: #fff 1px solid;
	border-right: #fff 1px solid;
	position: absolute;
	display: block;
	
}
#subNavi a.selected{
	background-color: var(--yellow);
	box-shadow: 0.3em 0.3em 0 var(--yellow);
}
#subNavi a:not(.selected):hover{
	background-color: var(--mainPurple);
}

#subNavi a.selected:before{
	content: "";
	width: 120%;
	position: absolute;
	top:0;
	bottom:0;
	left: 0.5em;
	transform: skewX(-15deg);
	background-color: var(--mainPurple);
}
#subNavi a.new:after{
	 content: "new";
	 position: absolute;
	 display: block;
	 background-color: #D52C71;
	 color: #fff;
	 width: auto;
	 padding: 0 0.5em;
	 top:0em;
	right: 0;
	 font-size:max(0.8em,12px);
	 line-height: 1em;
	 padding-bottom: 0.2em;
	z-index: 2;
}
/*----------------------------------------------------------------
フッター
-----------------------------------------------------------------*/
footer{
	background-color: #fff;
	padding-bottom: 50px;
	text-align: center;
	position: relative;
	z-index: 2;
}

footer #copy{
	padding: 10px 0;
	font-size: 12px;
	background-color: var(--subGray);
	color: #fff;
}
footer #snsArea {
	padding: 10px 0;
	
}
footer #snsArea img{
	width: 40px;
}
footer #linkArea{
	padding-top: 10px;
}
footer #linkArea a{
	width: 32.8%;
	max-width: 200px;
	margin: 2px 0.25%;
	display: inline-block;
	vertical-align: top;
	border: #ccc 1px solid;
}
footer img.txt{
	width: calc(100%-2em);
	max-width: 700px;
}
/*----------------------------------------------------------------
showAction
-----------------------------------------------------------------*/

.actionObject{
	opacity:0;
}
.showAction{
  animation: 0.5s ease-out 0s 1 normal forwards running;
  animation-name: showAction;
}

@keyframes showAction {
  0% {
    transform: translateY(20px);
	opacity:0;

  }
  100% {
    transform: translateY(0px);
	opacity:1;

  }
}

/*----------------------------------------------------------------
メディアクエリ
-----------------------------------------------------------------*/
@media (max-width: 1024px) {
	.doubleCont{
		padding-top: 6em;
	}
	
	#vote .doubleCont{
		padding-top: 0;
	}
	.doubleCont .mainBox{
		width:100%;
		margin-left: 0;
	}
	.topArea.doubleCont .pickup:after{
		display: none;
	}

	body{
	font-size: 14px;
	}
#subNavi{

	top:4.7em;
}

}

@media (max-width: 912px) {
}

@media (max-width: 786px) {
	.secondArea h1 img{
	width: 110%;
	}

    body{
	min-width:0; 
	overflow-x:hidden;
	font-size:  max(2vw, 12px);
	}
	#subNavi{

	top:0;
	position: relative;
	width: 100%;
	right: 0;
	margin: 0 auto;
	padding: 0 0.5em;
	}

.secondArea .mainBox{

	background-size:130% auto;
	background-position: left top;
}
	.topArea.doubleCont .pickup:after,.secondArea.doubleCont:after{
		display: none;
	}
	.secondArea.doubleCont:after,.secondArea.doubleCont:before{
		display: none;

	}
	}

}
@media (max-width: 480px) {
    /*トップヘ戻る*/
	.loading{
		font-size: 14px;
	}
    #backTop{display:none;}

    body{

		font-size: max(3vw, 11px);
		line-height: 1.5em;

	}
	footer #linkArea a{
		width: 49%;
		margin: 2px 0.5%;
	}
	.secondArea h1 img{
	width: 120%;
	}

}
@media (max-width: 280px) {

}