@charset "UTF-8";
/* CSS Document */
html, body {
  width: 100%;
  height: 100%;
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  box-sizing: border-box;
  
}
/*html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}*/

body {
  font-family: 'comic sans MS','captain-comic', 'M PLUS 1p',"cursive", 'sans-serif'; /*左側から優先*/
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 16pt;
  color: #593329;
  background: #fcf3f3;
}

a, a:visited {
  color: #593329;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:active, a.active {
  color: #C96E6E;
}
h1 {
  color: #593329;
  font-size: 2.4rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-align: center;
}
h2 {
  color: #593329;
  font-size: 2.4rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 70px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
	  background-color:#FFF;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転してxに*/
.openbtn.active span:nth-of-type(1) {
	top: 18px;
	right: 14px;
	transform: translateY(6px) rotate(-30deg);
	width: 32px;
  background-color:#FFF;
	
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
	top: 30px;
	right: 14px;
	transform: translateY(-6px) rotate(30deg);
	width: 32px;
  background-color:#FFF;
}

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

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background: #e7c6be;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

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

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

#g-nav li{
  height: 6vw;
  line-height: 2.0em;
  list-style: none;

}

#g-nav li a{
	color: #593329;
	text-decoration: none;
	display: block;
	letter-spacing: 0.1em;
	font-weight: bold;
  font-size: 1.6rem;
}

#g-nav ul .g-nav__instagram img {
	width: 15%;
  margin-top: 36%;
	
}
#g-nav ul .g-nav__top img {
	width: 50%;
	margin-top: 90%;
}

/*========ナビゲーションここまで===========================*/

.header h3 {
  color: #593329;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
}
.header div {
  color: #593329;
  font-size: 1.2rem;
  line-height: 150%;
  text-align: center;
}

dd {
  text-align: left;
  margin-left: 0px;
}
.footer {
  background-color: #ed8b8b;
  width: 100%;
  padding: 20px 0 20px 0;
}

.footer h2 {
  margin: 0px;
}
.footer h2  {
  font-size: 2.0rem;
  font-weight: regular;
  letter-spacing: 0.4rem;
  text-align: center;
  text-decoration: none;
  margin-bottom: 20px;

}
.footer h2 a:hover {
  color: #ECE9E6;
}
.footer .footer-image__harmonie img {
  width: 15vw;
  height: 21vw;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.footer__sns_links {
  list-style: none;
  display: flex;
  justify-content: center;
}

.footer__sns_links a img {
  width: 2vw;
  height: 3vw;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}
.copyright {
  text-align: center;
}
.lb-data .lb-caption {
  font-size: 1.4rem!important;
  font-weight: regular!important;
  line-height: 2.0rem!important;
}



/*------------media query-------*/
@media screen and (max-width:640px) {

  h2 {
    padding-top: 0;
  }

  .footer {
    background-color: #ed8b8b;
    width: 100%;
    padding: 20px 0 20px 0;
  }
  .footer .footer-image__harmonie img {
    width: 30vw;
    height: 43vw;
    object-fit: cover;
    display: block;
    margin: 0 auto;
  }
  .footer h2  {
    font-size: 2.0rem;
    font-weight: regular;
    letter-spacing: 0.4rem;
    text-align: center;
    text-decoration: none;
    margin-bottom: 20px;
  }
  
  .footer__sns_links a img {
    width: 5vw;
    height: 3vw;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }
  
  .footer .copyright {
    font-size: 0.8rem;
    font-weight: regular;
    text-align: center;
  }
  #g-nav li{
    height: 15vw;
    width: 100%;
    list-style: none;
    text-align: center; 
  }
}