@charset "UTF-8";
/* CSS Document */
/*@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap')*/


/* -----共通----- */
html{
  height: -webkit-fill-available;
}
body{
	background-color: #c9dfea;
	color: #707070;
	font-family: 'Shippori Mincho', serif;
	line-height: 1;
/*	min-width: 100vw;
	max-width: 1920px;
	min-height: 100vh;
  /* mobile viewport bug fix
  min-height: -webkit-fill-available;*/
}
/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    height: -webkit-fill-available;
  }
}

.inner{
	margin: auto;
	width: 960px;
	height: auto;
}

h1{
	font-size: 6rem;
	font-family: 'Kaisei Opti', serif;
	font-weight: 400;
	color: #fffe6c;
	line-height: 1;
	padding: 220px 20px 0 20px;
	text-align: right;
}
#title{
	letter-spacing: -10px;
}
h2{
	font-size: 1.5625rem;
	writing-mode: vertical-rl;
	line-height: 1;
    border-left: thick solid #fffe6c;
	position: absolute;
	margin: 0 20px;
}
h3{
	font-size: 1.25rem;
	writing-mode: vertical-rl;
	line-height: 1;
    border-left: thick solid #fffe6c;
	position: absolute;
	margin: 0 20px;
}
.headline_l{
	position: absolute;
	left: 0;
	top: 100px;
}
.headline_r{
	position: absolute;
	right: 0;
	top: 100px;
}
.vertical{
	writing-mode: vertical-rl;
	line-height: 1.5;
}
.horizontal{
   text-combine-upright: all;
}
img{
	max-height: 100vh;
	width: 100%;
	max-width: 100%;
	/*以下、親要素に合わせて伸縮
	height: auto;
	width: auto;*/
}
.vertical_num{
	writing-mode: vertical-rl;
    text-orientation: upright;
}
.paddingt_10{
	padding-top: 10px;
}
.paddingb_30{
	padding-bottom: 30px;
}
.paddingb_70{
	padding-bottom: 70px;
}
.w70_center{
	width: 70%;
	margin: 0 auto;
}
/*l12→l14に、l14→l16に*/
.l12{
	font-size: 0.875rem;
	padding-bottom: 5px;
	line-height: 1.2rem;
}
.l14{
	font-size: 1rem;
	padding-bottom: 5px;
	line-height: 1.2rem;
}
.l18{
	font-size: 1.125rem;
	padding-bottom: 10px;
}
.l20{
	font-size: 1.25rem;
	padding-bottom: 10px;
}
.l22{
	font-size: 1.375rem;
	padding-bottom: 10px;
}
.l25{
	font-size: 1.5625rem;
	color: #707070;
	padding-bottom: 10px;
}
.l30{
	font-size: 1.875rem;
	padding-bottom: 10px;
}
.l36{
	font-size: 2rem;
	padding-bottom: 10px;
}
.this{
	border-bottom: thin solid #707070;
}
.rightside{
	text-align: end;
}
.indent{
	padding-left: 30px
}
.center{
	text-align: center;
}
.more{
	width: 130px;
	height: 30px;
	border: solid 1px #707070;
	background-color: #FFFFFF;
	padding: 3px 20px 10px 25px;
}
.more_large{
	width: 230px;
	height: 50px;
	padding: 10px 30px 0 30px;
	border: solid 1px #707070;
	background-color: #FFFFFF;
	font-size: 1.25rem;
}
.more_line{
	width: 20px;
	display: inline-block;
	margin: 10px 0 4px 0;
}
.more_large .more_line{
	margin-top: 13px;
}
.more a,.more_large a{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

a{
	display: block;/*クリックの範囲を親要素のサイズに広げる*/
}

/*↓スマホに出る青い線を消す*/
a {
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	cursor: pointer;
}
*:focus {
  outline: none;
}

.left{
    display: flex;
    justify-content: flex-end;
}



/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
} 
/*2.上下の動きを指定*/
.updown {transform: translateY(-100px);}
.downup {transform: translateY(100px);}
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(200px);}
.slide-left {transform: translateX(-200px);}


/*========= ページトップ ===============*/



/*リンクの形状*/
#page-top a{
  width: 50px;
  height: auto;
  transition:all 0.3s;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  left: 4%;
  bottom: 4%;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}




/*=============================
body
=============================*/

/*=============================
header
=============================*/

/*-----ロゴ-----*/
.nav_follow{
	padding-top: 10px;
}
.nav_follow .l12{
	padding-bottom: 0;
}
.nav_follow ul li:nth-child(n+3){
	padding-top: 10px;
}
/*.nav_follow ul li:last-child{
	padding-top: 10px;
}*/
#nextstage_top .nav_follow ul li:nth-last-child(2){
	padding-top: 10px;
}
.menu_ticket{
	padding-left: 10px;
}
#btn02 {
	z-index: 2000;
	position: fixed;
	left: 3%;
	padding-top: 30px;
	cursor: pointer;
}
#lamanoda_logo{
	width: 100px;
	display: inline-block;
}
#lamanoda_archive{
	width: 150px;
	padding-left: 10px;
	display: inline-block;
}

/*-----ハンバーガーボタン-----*/
.btn_area{
  z-index: 2000;
  position: fixed;
  right: 5%;
  top: 5%;
}
.btn-trigger {
  width: 26px;
  height: 22px;
  transform: translateY(-5px);
  -webkit- transform: translateY(-5px);
  cursor: pointer;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fffe6c;
  border-radius: 1px;
}
.menu_l{
	position: absolute;
	top: 25px;
	transform: translateX(-10%);
	-webkit- transform: translateX(-10%);	
}

.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 46%;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}



#btn01.active span:nth-of-type(1) {
	background-color: #707070;
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
#btn01.active span:nth-of-type(2) {
  opacity: 0;
}
#btn01.active span:nth-of-type(3) {
	background-color: #707070;
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

.nav_area{
	display: none;
}
.nav_inner{
	padding: 10%;
    display: flex;
    justify-content: center;
	position: relative;
}
.vertical_menu_wrap{
	position: absolute;
	right: 30%;
}
.menu_left_box{
	padding: 0 20px;
	border-left: thick solid #fffe6c;
}
.menu_right_box{
	padding: 0 20px;
	border-left: thick solid #fffe6c;	
}

.menu_index_01{
	font-size: 1.25rem;
	padding-bottom: 5px;
}
.menu_biography{
	padding-bottom: 5px;
}
.menu_index_02{
	font-size: 1rem;
	padding: 0 0 4px 20px;
}
.menu_index_03{
	font-size: 0.875rem;
	padding: 0 0 4px 40px;
}
.menu_shusai_box,.menu_meji_box,.menu_other_box{
	padding-top: 5px;
}
.menu_onlinestore,.menu_blog,.menu_youtube{
	padding-bottom: 20px;
}



/*-----ハンバーガーボタン押したら出てくるmenu-----*/

.nav_area.menu{
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	overflow-y: auto;/*----- heightとoverflowでスクロールできるようになる -----*/
	background-color: #ffffff;
	z-index: 1500;
}
.menu_l.menu{
	display: none;
}
#btn02.menu{
	display: none;
}


/*=============================
main
=============================*/
/*----- 下部ページtop -----*/

main{
	overflow: hidden;
}
.p_h2_wrap{
	position: relative;
	width: 100%;
	height: 250px;
}

.biography_headline_r::after,.biography_headline_l::after{
	content: "";
	position: absolute;
    top: 5px;
    left: -25px;
	background: #707070;
	width: 1px;
	height: 20px;
}
.headline_under{
	position: absolute;
    top: 130px;
    right: 60px;
}
.box_white{
	width: 550px;
	height: 500px;
	margin: 0 auto 60px auto;
	background-color: #fff;
	padding: 5%;
	display: flex;
}

.copy_in_wb{
	margin: auto;
}
/*=============================
footer
=============================*/
.copy{
	text-align: center;
	padding: 50px 0 20px 0;
}




/*----- タブレット -----*/
@media only screen and (max-width : 1024px) {
	.inner{
	width: 80vw;
	}
    #btn01{
	top: 8%;
	left: 3%;
    }
	#nav_area.menu{
    left: 45%;
    }
	main h2{
	font-size: 1.5rem;
	}
	.nav_wrap{
		flex-direction: column;
		align-items: baseline;
	}

}

/*----- スマホ -----*/
@media only screen and (max-width : 599px) {
	h1 {
		font-size: 4rem;
	}
	main h2{
		font-size: 1.25rem;
	}
	h3{
		font-size: 1rem;
	}
	.l14{
		font-size: 0.875rem;
		padding-bottom: 3px;
	}
	.l18{
		font-size: 1rem;
		padding-bottom: 5px;		
	}
	.l22{
		font-size: 1.25rem;
		padding-bottom: 5px;
	}
	.l25 {
		font-size: 1.25rem;
	}
	p{
		font-size: 0.875rem;
	}
/*	.l14{
		font-size: 0.75rem;
		padding-bottom: 3px;
	}
	.l18{
		font-size: 0.875rem;
		padding-bottom: 5px;		
	}
	.l22{
		font-size: 1rem;
		padding-bottom: 5px;
	}
	.l25 {
		font-size: 1rem;
	}
	p{
		font-size: 0.75rem;
	}*/
	.more {
   		width: 120px;
    	height: 25px;
		font-size: 0.875rem;
	}
	.more_large {
    	width: 190px;
    	height: 43px;
	}
	.vertical_menu_wrap{
		right: 15%;
		top: 90px;
	}
	
	/*----- 下部ページtop-----*/

	
	.headline_under {
    right: 55px;
	}

}