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

.pc { display: block !important; }
.sp { display: none !important; }

/* -----共通----- */
html{
  height: -webkit-fill-available;
}
body{
	background-color: #f7e9de;
	color: #707070;
	font-family: 'Roboto','Noto Sans JP', sans-serif;
	line-height: 1;
}
/* 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: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	color: #fffe6c;
	line-height: 1;
	padding: 220px 20px 0 20px;
	text-align: right;
}
#title{
	letter-spacing: -10px;
}
h2{
	font-size: 1.5625rem;
	line-height: 1;
	position: absolute;
	margin: 0 auto;
	font-weight: bold;
	color: #FEA7A7;
	-webkit-text-stroke: 1px #888;
	text-stroke: 1px #888;
}
h3{
	font-size: 1.25rem;
	line-height: 1;
	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{
	width: 100%;
	max-width: 100%;
}


.wrap{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px;
}
.wrap10{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 0;
}
.wrap20{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}
.more{
	width: 130px;
	height: 30px;
	border: solid 1px #707070;
	background-color: #FFFFFF;
	display: flex;
    align-items: center;
    justify-content: center;
}
.more_large{
	width: 230px;
	height: 50px;
	display: flex;
    align-items: center;
    justify-content: center;
	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;
}
.btn{
	width: 200px;
	height: 50px;
	border: solid 1px #707070;
	background-color: #FFFFFF;
	padding-right: 20px;
    padding-left: 35px;
    padding-top: 15px;
}
a{
	display: block;/*クリックの範囲を親要素のサイズに広げる*/
}

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



/*========= ページトップ ===============*/
/*リンクの形状*/
#page-top a{
  width: 100px;
  height: auto;
  transition:all 0.3s;
}
/*リンクを下に固定*/
#page-top{
  position: fixed;
  right: 10px;
  bottom: 0;
  z-index: 5;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove, #to-sns.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove, #to-sns.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;
	padding-left: 20px;
}
.nav_follow .l12{
	padding-bottom: 0;
}
.menu_ticket{
	padding-top: 10px;
}
#btn02 {
	z-index: 2000;
	position: fixed;
	left: 3%;
	padding-top: 30px;
	cursor: pointer;
}
.kgy_logo{
	width: 100px;
	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: #888;
  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%;
}
.menu_h2{
	padding: 50px;
	position: static;
}
.menu_box{
	margin-bottom: 30px;
}

.menu_index_01{
	font-size: 1.25rem;
	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-----*/
.nav_area.menu{
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	overflow-y: auto;/*----- heightとoverflowでスクロールできるようになる -----*/
	background-color: #C1BAB4;
	z-index: 1500;
	background-image: url("../images/menu_bg.png");
	background-size: 80% auto;
	background-position: center;
	background-repeat: no-repeat;
}

.menu_l.menu{
	display: none;
}
#btn02.menu{
	display: none;
}


/*=============================
main
=============================*/
/*----- top -----*/

main{
	overflow: hidden;
}
.bg{
	position: fixed;
	z-index: -5;
	top: 0;
	min-height: 100vh;
	overflow: hidden;
}
#bg_00{
	width: auto;
	max-width: none;
}

.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;
}


.copy_in_wb{
	margin: auto;
}
/*
dl {
    margin-bottom: 10px;
}

dt {
    float: left;
    clear: left;
    width: 140px;
    text-align: right;
	padding-top: 10px;
    padding-bottom: 10px;
}
dd {
    padding-left: 180px;
	padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;
}
*/
dl {
    width: 140px;
	margin: 20px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
dt {
    text-align: right;
	box-sizing: border-box;
	width: 30%;
	padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;
}
dd {
	text-align: left;
	box-sizing: border-box;
	width: 70%;
    padding-left: 50px;
	padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;	
}
dt:last-of-type{
	border-bottom: none;
}
dd:last-child{
	border-bottom: none;
}
.border_emp{
	border-bottom: 6px double #707070;
}
/*=============================
footer  
=============================*/

.copy{
	text-align: center;
	padding: 50px 0 20px 0;
}


/*=============================
文字サイズ、位置指定  
=============================*/
/*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.5rem;
}
.l18{
	font-size: 1.125rem;
	padding-bottom: 10px;
}
.l18_p0{
	font-size: 1.125rem;
}
.l20{
	font-size: 1.25rem;
	padding-bottom: 10px;
}
.l22{
	font-size: 1.375rem;
	padding-bottom: 10px;
}
.l25{
	font-size: 1.5625rem;
	padding-bottom: 10px;
}
.l30{
	font-size: 1.875rem;
	padding-bottom: 10px;
}
.l36{
	font-size: 2rem;
	padding-bottom: 10px;
}
.p_0{
	padding: 0;
}
.w70{
	width: 70%;
}
.this{
	border-bottom: thin solid #707070;
}
.rightside{
	text-align: end;
}
.indent{
	padding-left: 30px
}
.center{
	text-align: center;
}
.mar_b_50{
	margin-bottom: 50px;
}
.bot_100{
	margin-bottom: 100px;
}
.pad_lr_100{
	padding-left: 50px;
	padding-right: 50px;
}
.pad_b_50{
	padding-bottom: 50px;
}
.pad_b_30{
	padding-bottom: 30px;
}
.pad_b_20{
	padding-bottom: 20px;
}
.pad_b_10{
	padding-bottom: 10px;
}
.pad_t_20{
	padding-top: 20px;
}
.pad_l_40{
	padding-left: 40px
}
.width_40{
	width: 40%;
}
.lists_dot{
	list-style-type: disc;
}
/*----- タブレット -----*/
@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) {
	.pc { display: none !important; }
    .sp { display: block !important; }
	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;
	}
	.l18_p0{
		font-size: 1rem;
	}
	.l22{
		font-size: 1.25rem;
		padding-bottom: 5px;
	}
	.l25 {
		font-size: 1.25rem;
	}
	.w70{
		width: 95%;
	}
	.pad_b_50{
		padding-bottom: 30px;
	}
	dl{
		margin: 0;
	}
	dd {
    padding-left: 20px;
		}
	.pad_lr_100{
	padding-left: 20px;
	padding-right: 20px;
}
	p{
		font-size: 0.875rem;
	}
	.more {
   		width: 120px;
    	height: 25px;
		font-size: 0.875rem;
	}
	.kgy_logo {
    	width: 80px;
	}
	.more_large {
    	width: 190px;
    	height: 43px;
	}
	.menu_wrap{
		right: 15%;
		top: 90px;
	}
	.nav_follow{
		padding-left: 0;
	}
	.nav_area.menu{
		background-image: url("../images/menu_bg_sp.png");
		background-size: 50% auto;
	}
	.p_accordion_content {
	    width: 100%;
	}
	.width_40{
		width: 70%;
	}
}