@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #FFFFFF; /* RGB */
  font-family: "Shippori Mincho", "Yu Mincho", "Noto Serif JP";
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: center;
  letter-spacing: 0.01em;
  background-color: #000;
}
h2{
  font-family: 'Cormorant', serif;
  font-size: 4.2rem;
  margin-bottom:70px;
  font-weight:normal;
letter-spacing: .05em;
}
@media (max-width: 768px){
body {
font-size: 1.4rem;
 line-height: 1.5; }
h2{
 font-size:2.6rem; 
  margin-bottom:50px;
}
}

@media(min-width: 767px){
  .sp_br{
    display: none;
  }
}

h3{
  font-size:1.4rem;
padding:20px 0;
}
ul{
  list-style: none;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: min(840px, 100vh);/*ナビの高さ*/
	
 background:#000;
/*  background:#000;*/

    /*動き*/
	transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:800;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: min(840px, 100vh);/*表示する高さ*/
    overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-image: url("../images/top/menu_bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:60%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: left;
  font-size: 3.6rem;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	margin:20px 0;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
  font-family: 'Cormorant', serif;
}

.menu:before {
  content: '';
  display: inline-block;
  background-image: url("../images/top/star_gold.png");
  background-size: contain;
  width: 40px;
  height: 35px;
  position: relative;
  vertical-align: middle;
  background-repeat: no-repeat;
  bottom: 5px;
}
.icon{
  display: flex;
  position: absolute;
  padding: 10px 50px
}
.icon img{
  width:40px;
  margin: 0 10px;
}
@media(max-width:768px){
  #g-nav.panelactive #g-nav-list{
  background-image: url("../images/top/menu_bg_sp@2x.png");

}
#g-nav ul {
    top: 60%;
    left: 40%;
  transform: translate(-30%,-60%);}

}
@media (max-width: 768px){
#g-nav li{
  font-size: 2.6rem;
}

#g-nav li a{
	margin:20px 0;
}

.menu:before {
  content: '';
  display: inline-block;
  background-image: url("../images/top/star_gold.png");
  background-size: contain;
  width: 30px;
  height: 25px;
  position: relative;
  vertical-align: middle;
  background-repeat: no-repeat;
  bottom: 5px;
}
  .icon{
  position: absolute;
  padding: 30px 40px
}
  .icon img{
  width:30px;
  margin: 0 10px;
}
 }
.btn_logo{
  z-index: 2;
    width: 100%;
  height: 70px;
    position: absolute;
    top: 0;
    left: 0;
  display: flex;
  position: fixed;
  top: 10px;
}
.btnlogo{
  height: 63px;
  margin-left: 10px;
}
@media screen and (max-width:768px){  
.btnlogo{
  height: 43px;
  margin-left: 10px;
}
}
.btn{
  z-index: 999;
    width: 100%;
  height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  display: flex;
  position: fixed;
  top: 10px;
}
.modaal-wrapper .modaal-close {
    z-index: 9999;
}
/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  z-index: 9998;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-image: url("../images/top/hum.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 18px;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
}
.openbtn span:nth-of-type(3) {
  top: 30px;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.illust_header{
  width: 100%;
  height: 426px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px){
  .illust_header{
  width: 100%;
  height: 206px;
  }}
/*footer*/

footer {
  background-color: #fff;
}
.footer_wrapper {
  padding: 90px 0 0;
  text-align: center;
}
#page_top {
  color: #000000;
  display: flex;
  width:150px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  text-decoration: none;
  margin:0 auto;
}

@media screen and (max-width: 768px){
  .footer_wrapper {
  padding: 70px 0 0;
  }
}
.allow_img {
  width: 33px;
  margin-bottom:10px;
}
.allow_img_sp{
  width: clamp(60px,16vw,90px);
}
.page_top_text{
  margin-bottom: 10px;
}
.page_top_acc{
  width:150px;
  padding-bottom:80px;
}
.footer__copyright {
  color: #000000;
}
.fadeUpTrigger {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px){
  #page_top{
    display: none;
  }}
@media (min-width: 769px){
  .page-top_sp{
    display: none;
  }
  .allow_img_sp{
    display: none;
  }
}

.page-top_sp{
	position: fixed;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
    left: 50%;
    translate: -50% 100px;
}

/*　上に上がる動き　*/

.page-top_sp.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
    translate:-50% 100px;
  }
  to {
    opacity: 1;
	translate:-50% 0;
  }
}

/*　下に下がる動き　*/

#page-top_sp.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
/*コンタクトボタン*/
.float-button__wrap {
  display: none; /*最初は隠す*/
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}
.float-button__wrap img {
  width:clamp(90px,8.333333333333332vw,120px);
  animation: rotation 10s linear infinite;
}
.float-button__wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(90px,8.333333333333332vw,120px);
  text-decoration: none;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.body-in {
  position: relative;
}
.new_title:before {
  content: '';
  display: inline-block;
  background-image: url("../images/top/new_l.png");
  background-size: contain;
  width: 28px;
  height: 80px;
  position: relative;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin: 0 18px 0 0;
}
.new_title:after {
  content: '';
  display: inline-block;
  background-image: url("../images/top/new_r.png");
  background-size: contain;
  width: 28px;
  height: 80px;
  position: relative;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin: 0 0 0 18px;
}
@media screen and (max-width:768px){
  .new_title:before {
  width: 26px;
  height: 57px;
  margin: 0 10px 0 0;
}
.new_title:after {
  width: 26px;
  height: 57px;
  margin: 0 0 0 10px;
}
}