

body{
  padding: 0px;
  border: 0px;
  max-width: 375px;
  margin: auto;
  background-color:  #ffe9f3;
}


.body{
  background-color:  #fff;
  border: solid 2px #ccc;
  z-index: 9999;

}
/*///////////////////////////////////////////////////////////////////////*/
/* header */
/*ヘッダーまわりはサイトに合わせて調整してください*/
header {
  padding-top:10px;
  width: 80%;
  margin: 12px 10% 10px 10%;
}

a{
  color: #000;
  list-style: none;
}


.header__img{
  width: 30%;
  height: auto;
  padding-top: 16px;
}

#nav-drawer {
  position: relative;
  padding-bottom: 15px;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  z-index: 9999;
  height: 3px;/*線の太さ*/
  width: 60px;/*長さ*/
  margin-top: 20px;
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
  right: 0px;
  bottom: 40px;
}

#nav-open span:before {
  bottom: -10px;
}

#nav-open span:after {
  bottom: -20px;
}

.header__list{
  font-size: 23px;
  font-family: 'Cormorant Garamond';
  font-weight: normal;
  font-style: italic;
  font-weight: normal;
  letter-spacing: 0.2em;
  padding: 0px;
  list-style: none;
  margin: 5% 50% 10% 15%;
}

.header__list__item{
  padding-top: 20%;
  width: 60%;
}

.header__list__item a {
  display: block;
  padding: 0 0 5px;
  text-decoration: none;
}

.header__list__item a::after {
  border-bottom: solid 3px #000;
  bottom: 0;
  content: "";
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}

.header__list__item a:hover::after {
  width: 100%;
}


/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 9997;
  top: 100vw;/*全体に広がるように*/
  left: 100vw;
  width: 100vw;
  height: 100%;
  opacity: 0;
  transition: .0.1s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;/*最前面に*/
  width: 100%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 100%;/*最大幅（調整してください）*/
  height: 100%;
  background-color: rgba(255,255,255,0.9);/*背景色*/
  transition: .0.1s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(100%);
  transform: translateX(100%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
  }



/*///////////////////////////////////////////////////////////////////////*/
/* main */
.main{
  width: 90%;
  margin: 0px 5%;
}

.main__ttl{
  font-size: 40px;
  font-family: 'Cormorant Garamond';
  font-weight: normal;
  font-style: italic;
  text-align: center;
}

.main__txt{
  font-size: 13px;
  font-family: 'Yu Gothic', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.8em;
}

.main__list{
  padding: 5% 0px 5% 0px;
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.main__list__img{
  padding: 0px 3% 3% 0px;
}




/* ----------------------------------------------------------------------------- */
/* コンタクト */
.contact{
  width: 90%;
  margin: 10% 5% 0px 5%;
}

.contact__mailForm{
}

.contact__mailForm__group label{
 font-size: 12px;
 font-family: 'Yu Gothic', 'Noto Sans JP', sans-serif;
 margin: 0px 10% 0px 10%;
}

.contact__mailForm__group input{
  background-color: #ffe9f3;
  width: 80%;
  height: 40px;
  margin: 0px 10%;
  border: none;
}

.contact__mailForm__group__item{
  padding-top: 20px;
}

.contact__mailForm__group input .placeholder{
  font-size: 13px;
  font-family: 'Yu Gothic', 'Noto Sans JP', sans-serif;
}

.contact__mailForm__group textarea{
  background-color: #ffe9f3;
  width: 80%;
  height: 150px;
  margin: 0px 10%;
  border: none;
}

.contact__mailForm__submit{
  background: url("../images/contact__01.png")no-repeat 0 0;
  background-size: 100%;
  width: 40%;
  height: 30px;
  border: none;
  margin: 10% 30% 0px 30%;
}

.contact__txt{
  width: 90%;
  margin: 0px 5%;
  font-size: 10px;
  font-family: 'Yu Gothic', 'Noto Sans JP', sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.8em;
  padding-top: 30px;
}


/*///////////////////////////////////////////////////////////////////////*/
/* sns */
.sns{
  width: 90%;
  margin: 10% 0px;
}

.sns__list{
  display: flex;
  padding: 0px;
}

.sns__list__item{
  width: 100%;
  height: auto;
  padding: 0px 8%;
}

/*///////////////////////////////////////////////////////////////////////*/
/* footer */
footer{
  background-color: #ffe9f3;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 5% 0px;
}

.footer__ttl{
  font-size: 12px;
  font-family: 'Yu Gothic', 'Noto Sans JP', sans-serif;
  font-weight: normal;
  letter-spacing: 0.2em;

}
