@charset "utf-8";
/* CSS Document */

/*_______________________________


    【乙葉ウテナ公式サイト】
　　　　　
全ページ共通パーツ用CSS　(PC/TB/SP)

_______________________________*/




/*    全体 共通
____________________*/


body{
    font-size: 16px;
    color: #000;
    font-family: 'Noto Serif JP',YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    overflow-x: hidden;
    line-height: 1.5;
    position: relative;
    width: 100%;
    background: #fff;
    font-weight: 500;
    letter-spacing: 0.06em;
}
img{
    vertical-align: bottom;
	max-width: 100%;
}
a{
	text-decoration: none;
	color: #000;
}
@media(hover:hover){
	a{
		transition: opacity 0.5s ease-out;
	}
    a:hover{
		opacity: 0.5;
		transition: opacity 0.5s ease-out;
    }
}

main{
	padding-top: 90px;
}
section{
	padding: 100px 5%;
	box-sizing: border-box;
}
.inner{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
* .pc_only{
	display: block;
}
* .tb_only{
	display: none;
}
* .sp_only{
	display: none;
}


.more_btn {
    background: #a57c92;
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    margin: 60px auto 0;
    border-radius: 5px;
    position: relative;
    padding-right: 10px;
    box-sizing: border-box;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    max-width: 200px;
}
.more_btn::after {
    content: '';
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    width: 10px;
    height: 10px;
    display: block;
    transform: rotate(135deg);
    position: absolute;
    right: 25px;
}



/*     header
____________________*/

header{
	height: 90px;
	width: 100%;
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 1000000;
	background: #fff;
	box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}
header .title_logo{
	padding: 15px 25px;
	flex-basis: 25%;
	height: 100%;
	margin-right: auto;
	box-sizing: border-box;
}
header .title_logo img{
	height: 100%;
}
header .reserve {
    background: linear-gradient(45deg, #aa8bb8 0%, #aa8bb8 25%,#d788c0 75%,#d788c0 100%);
    height: 100%;
    flex-basis: 150px;
    margin-left: 30px;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    letter-spacing: -0.02em;
    flex-flow: column;
}
header .reserve img{
    width: 40px;
    margin-bottom: 5px;
}





/*     nav
____________________*/

nav ul{
	display: flex;
	gap: 0 min(1.8vw,30px);
	/* gap: 30px; */
	justify-content: center;
}
nav ul li a{
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	color: #000;
	font-size: min(1.1vw,13px);
	text-align: center;
}



/*     footer
____________________*/

footer{
	background: linear-gradient(45deg, rgb(170 139 184 / 60%) 0%, rgb(170 139 184 / 60%) 25%,rgb(215 136 192 / 60%) 75%,rgb(215 136 192 / 60%) 100%), 
 url(../img/common/footer_bg.jpg) no-repeat left 70%;
	background-size: cover;
	padding-top: 50px;
	color: #fff;
}
footer a{
	color: #fff;
}
footer .title_logo{
    max-width: 380px;
    margin: auto;
    display: block;
}
footer .reserve{
    height: 60px;
    max-width: 320px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    text-align: center;
    font-size: 20px;
    border-radius: 30px;
    padding-right: 30px;
    box-sizing: border-box;
	position: relative;
}
footer .reserve::after {
    content: '';
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    width: 10px;
    height: 10px;
    display: block;
    transform: rotate(135deg);
    position: absolute;
    right: 30px;
}
footer .footer_nav{
	padding: 0 5%;
}
footer .footer_nav ul {
    display: flex;
    gap: 15px 30px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
    font-size: 18px;
}
footer .footer_nav ul.foot_subnav{
	font-size: 13px;
}
footer .footer_nav ul.sns img{
	width: 42px;
}
footer .copy{
	border-top: 1px solid #fff;
	display: flex;
	height: 60px;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 12px;
}


/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  width: 60px;
  height: 60px;
  background: rgb(165 124 146);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
  flex-flow: column;
  padding: 5%;
  box-sizing: border-box;
  line-height: 1.25;
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
}
#page-top a::before {
    content: "";
    border-right: 5px solid transparent;
    border-bottom: 8px solid #ffffff;
    border-left: 5px solid transparent;
    margin-bottom: 5px;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  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);
  }
}




/* __________________

 pages(下層ページ共通)
____________________*/


/*     aside
____________________*/
aside.schedule_reserve{
    background: #fafafa;
    padding: 100px 5%;
}
aside.schedule_reserve .title_copy{
    font-size: 24px;
    display: block;
    margin-bottom: 40px;
    text-align: center;
}
aside.schedule_reserve .reserve_banner {
    margin: auto;
    display: block;
    max-width: 640px;
    box-shadow: 0 0 5px rgb(0 0 0 / 30%);
}

/*     kv
____________________*/
.kv {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 0;
}
.kv::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(125 98 102 / 10%);
    z-index: -1;
}
.kv h1 {
    background: #fff;
    max-width: 400px;
    flex-basis: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
    line-height: 1;
}
.kv h1 em {
    font-size: 42px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}
.kv h1 em::before{
	content: "";
	width: 30px;
	height: 2px;
	background: #e8bcc6;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
}
.kv h1 small{
    font-size: 12px;
}
.kv p{
    margin-top: 5%;
    line-height: 2;
    color: #fff;
    text-shadow: 0 0 10px #000;
    font-size: 18px;
}

/*   pages  h2
____________________*/
.pages h2{
	font-size: 36px;
	text-align: center;
	margin-bottom: 80px;
	border-bottom: 1px solid #000;
	padding-bottom: 20px;
	font-weight: 500;
}

/*   pages  h3
____________________*/
.pages h3{
	font-size: 30px;
	text-align: center;
	margin-bottom: 60px;
	color: #a57c92;
	font-weight: 600;
}
.pages h3 small{
	font-size: 16px;
	display: block;
	color: #000;
	margin-top: 10px;
}





/* 　============================================


           メディアクエリ　切り替え


===============================================*/




/* 　＋＋＋＋＋＋＋　iPad Pro（12.9inch）/ （1024px）以下　用　＋＋＋＋＋＋＋　*/

@media screen and ( max-width:1024px) {
	
* .tb_only{
	display:block;
}	
	
header {
    height: 70px;
}
header .title_logo {
    padding: 0 15px;
    flex-basis: 240px;
    max-width: 50%;
}
header .reserve {
    flex-basis: 120px;
	font-size: 10px;
	margin-left: 0;
}	
header .reserve img {
    width: 34px;
    margin-bottom: 3px;
}	
main {
    padding-top: 70px;
}
	
	
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    top: 90px;
    width:100%;
    height: calc(100vh - 70px);
}

/*丸の拡大*/
header::before{
	content: "";
	position: fixed;
	z-index: -1;
    /*丸の形*/
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #fff6fa;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	top:calc(50% - 50px);/*50%から円の半径を引いた値*/
	left:calc(50% - 50px);/*50%から円の半径を引いた値*/
	transition: all .6s;/*0.6秒かけてアニメーション*/
	/* box-shadow: 0 0 5px rgb(0 0 0 / 10%); */
}

header.circleactive::before{
  transform: scale(50);/*クラスが付与されたらscaleを拡大*/
  z-index: -1;
}
header::after{
	content: "";
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index:-1;
	width: 100%;
	height: 100%;
}	
	

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: calc(100vh - 70px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    top: 90px;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  flex-flow: column;
  gap: 5px;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{animation-name:gnaviAnime;animation-duration:1s;animation-delay:.2s;/*0.2 秒遅らせて出現*/animation-fill-mode:forwards;opacity:0;}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
  text-align: center; 
  list-style: none;
}

#g-nav li a{
  text-decoration: none;
  padding:10px;
  /* text-transform: uppercase; */
  letter-spacing: 0.1em;
  font-size: 13px;
}


/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position: absolute;
  right: 130px;
  z-index: 9999;/*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    background-color: #000;
    width: 60%;
  }

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 25px;
}

.openbtn1 span:nth-of-type(3) {
  top: 35px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 19px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 31px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
}


    /*　---　*/
}
/* ＋＋end＋＋　iPad Pro（12.9inch）/ 以下 用　ここまで　＋＋end＋＋　*/







/* 　＋＋＋＋＋＋＋　iPad Pro（9.7inch～10.5inch）/（834px）以下　用　＋＋＋＋＋＋＋　*/

@media screen and ( max-width:834px) {



    /*　---　*/
}
/* ＋＋end＋＋　TB 縦（834px）以下 用　ここまで　＋＋end＋＋　*/






/* 　＋＋＋＋＋＋＋　SP（767px）以下　用　＋＋＋＋＋＋＋　*/

@media screen and ( max-width:767px) {

	body{
		font-size: 13px;
	}	
* .pc_only{
	display: none;
}
* .tb_only{
	display:none;
}	
* .sp_only{
	display: block;
}	
.more_btn {
    height: 40px;
    font-size: 18px;
    margin: 30px auto 0;
}	
.more_btn::after {
    right: 20px;
}	
	
section {
    padding: 60px 5%;
    box-sizing: border-box;
}
.kv{
	height: auto !important;
}
.kv h1 {
	max-width: fit-content;
}	
.kv h1 em{
    font-size: 36px;
}
.kv p{
    font-size: 15px;
    margin-top: 40px;
    padding-right: 20%;
}	
aside.schedule_reserve {
    padding: 80px 5% 100px;
}	
aside.schedule_reserve .title_copy {
    font-size: 18px;
    margin-bottom: 20px;
}	
footer .title_logo {
    max-width: 300px;
}	
footer .reserve {
    height: 50px;
    max-width: 240px;
    margin: 50px auto;
    font-size: 16px;
    border-radius: 25px;
    padding-right: 20px;
}	
footer .reserve::after {
    right: 20px;
}
footer .footer_nav ul {
    gap: 5px;
    margin: 20px 0;
    font-size: 14px;
}

footer .footer_nav ul.foot_subnav {
    font-size: 12px;
}	
footer a {
    padding: 10px;
    box-sizing: border-box;
    display: block;
}
#page-top a {
    width: 50px;
    height: 50px;
    padding: 0;
}
#page-top a::before {
    border-right: 4px solid transparent;
    border-bottom: 7px solid #ffffff;
    border-left: 4px solid transparent;
    margin-bottom: 3px;
}
	
	
.pages h2 {
    font-size: 24px;
    margin-bottom: 40px;
    padding-bottom: 10px;
}
.pages h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 40px;
}
.pages h3 small {
    font-size: 13px;
    margin-top: 5px;
}	
	
	
	
	
    /*　---　*/
}
/* ＋＋end＋＋　SP（767px）以下 用　ここまで　＋＋end＋＋　*/






