@charset "UTF-8";

/* -------------------
common
------------------- */

html{
  font-size: 62.5%;
}

body{
  font-family: 
    "Noto Serif JP",
    "YuMincho",
    serif;
}

img{
  max-width: 100%;
}

/* -------------------
header PC
------------------- */

.page__header{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
  background-color: #E2DED7;
}

.header__btn img{
  display: block;
  width: 46px;
  height: 31px;
  position: absolute;
  top: 40px;
  right: 5%;
}


/* -------------------
header Tablet
------------------- */
@media screen and (max-width: 900px) {
  .page__header{
    height: 110px;
  }

  .header__btn img{
    width: 46px;
    height: 31px;
    position: absolute;
    top: 56px;
    right: 5%;
  }

  .close__btn{
    display: block;
    width: 46px;
    height: 31px;
    position: absolute;
    top: 56px;
    right: 15%;
  }

}


/* -------------------
header SP
------------------- */

@media screen and (max-width: 580px) {
  .page__header{
    height: 90px;
  }

  .header__btn img{
    display: block;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 40px;
    right: 5%;
  }
}

@media screen and (max-width: 450px) {
  .header__btn img{
    right: 5%;
  }
  
}


/* -------------------
nav
------------------- */

.nav__list{
  display: block;
  height: 100%;
  width: 35%;
  position: fixed;
  right: -35%;
  top: 0;
  background-color: rgba(249, 248, 246, 0.90);
  transform: translateX(100%);
  transition: transform 1s;
}

.nav__list ul{
  height: 100%;
}

.nav__header{
  /* height: 20%; */
  height: 100px;
}

.close__btn{
  display: block;
  width: 46px;
  height: 31px;
  position: absolute;
  top: 40px;
  right: 14%;
}

.nav__item{
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho";
  font-size: 1.8rem;
  width: 100%;
  height: 11%;
  text-align: center;
  background-clip: padding-box;
  border-bottom: rgba(101, 82, 18, 0.6) solid 1px;
  margin: 0 3%;
}

.nav__item:first-of-type{
  border-top: rgba(101, 82, 18, 0.6) solid 1px;
}

.nav__item span{
  display: block;
  font-size: 1.4rem;
  margin-top: 5px;
}

.logo_brown{
  width: 180px;
  height: 82px;
  position: absolute;
  bottom: 20px;
  right: 51px;
}

.logo_brown{
  display: none;
}

.logo_brown.open{
  display: block;
  z-index: 1000;
  transition: right 0.8s ease;
}

.nav__list.open{
  right: 35%;
  transition: right 0.8s ease;
  display: block;
  z-index: 100;
}

.nav__item.open{
  display: flex;
  }


/* nav tablet */
@media screen and (max-width:900px) {
  .nav__header{
    height: 110px;
    }
 
  .close__btn{
    position: absolute;
    top: 56px;
    right: 14%;
  } 
}
  

/* nav sp */
@media screen and (max-width: 580px) {
   .nav__list{
    right: 100%;
    width: 100%;
    position: fixed;
    right: -100%;
    top: 0;
    background-color: rgba(249, 248, 246, 0.90);
    transform: translateX(100%);
    transition: transform 1s;
  }

  .nav__header{
    height: 90px;
  }
 
  .close__btn{
    width: 30px;
    height: 20px;
    position: absolute;
    top: 40px;
    right: 5%;
  } 

  .nav__item{
    font-size: 1.6rem;
    height: 12%;
  }

  .nav__item span{
    font-size: 1.2rem;
  }

  .nav__list.open{
    right: 100%;
    transition: right 0.8s ease;
    display: block;
    z-index: 100;
  }

  .logo_brown{
    width: 100px;
    height: 52px;
    position: absolute;
    bottom: 36px;
    right: 30px;
  }
}


@media screen and (max-width: 769px) {
  .nav__list{
    right: 100%;
    width: 100%;
    position: fixed;
    right: -100%;
    top: 0;
    background-color: rgba(249, 248, 246, 0.90);
    transform: translateX(100%);
    transition: transform 1s;
  }

  .nav__item{
    font-size: 1.6rem;
    height: 12%;
  }

  .nav__item span{
    font-size: 1.2rem;
  }

  .nav__list.open{
    right: 100%;
    transition: right 0.8s ease;
    display: block;
    z-index: 100;
  }

  .logo_brown{
    width: 180px;
    height: 82px;
  }

  .close__btn{
    right: 5%;
  }
    
}

@media screen and (max-width: 450px) {
  .top_lead{
    left: 34px;
  }
  
}

/* -------------------
title
------------------- */

.title_line{
  background-color: rgba(21, 14, 5, 0.85);
  width: 100%;
  height: 104px;
  display: inline-block;
  text-align: center;
}
/* 
.title_line--first{
  margin-top: 0;
} */

.title{
  color: #F9F8F6;
  font-family: "Shippori Mincho";
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 104px;
}

@media screen and (max-width: 900px) {
  .title_line{
    height: 80px;
    z-index: 100;
  }

  .title{
    font-size: 2.2rem;
    line-height: 80px;
  }
}


@media screen and (max-width: 580px) {
  .title_line{
    height: 60px;
    z-index: 100;
  }

  .title{
    font-size: 1.8rem;
    line-height: 60px;
  }
}


/* -------------------
body
------------------- */

.page_menu{
  width: 100%;
  height: 100vh;
  background-color: rgba(226, 222, 215, 0.90);
  display: block;
  margin: 0 auto 0;
  padding: 100px 0 0 0;
  align-items: center;
}

.page_menu_title{
  display: block;
  color: #000;
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  border-bottom: 1px solid #5A4806;
  width: 70%;
  margin: 0 auto;
}

.spBr{
    display: none;
  }

.tbBr{
  display: none;
}

.page_menu_list{
  display: flex;
  justify-content:center;
  margin: 50px auto 0;
}

.page_menu_item{
  width: 260px;
  height: 60px;
  align-items: center;
  border-radius: 5px;
  background-color: #5A4806;
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1.6rem;
  line-height: 60px;
}

.contact_text{
  font-size: 1.6rem;
  line-height: 1.42;
  text-align: center;
  margin-top: 80px;
}

.contact_info{
  font-size: 1.6rem;
  line-height: 1.42;
  text-align: center;
  margin-top: 20px;
}

/* -------------------
body tablet
------------------- */

@media screen and (max-width:900px) {
  .page_menu_title{
    font-size: 1.6rem;
    line-height: 2;
    width: 80%;
    margin: 0 auto;
  }

  .page_menu_item{
    width: 180px;
    height: 50px;
    font-size: 1.4rem;
    line-height: 50px;
  }

  .contact_text{
    font-size: 1.4rem;
    margin-top: 70px;
  }

  .contact_info{
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

/* -------------------
body SP
------------------- */
@media screen and (max-width: 580px) {
  .page_menu{
    padding: 50px 0 0 0;
  }

  .page_menu_title{
    color: #000;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .page_menu_list{
    display: block;
    margin: 50px auto 0;
  }

  .page_menu_item{
    width: 150px;
    height: 36px;
    font-size: 1.2rem;
    line-height: 36px;
    margin: 0 auto;
  }

  .contact_text{
    font-size: 1.2rem;
    margin-top: 70px;
  }

  .contact_info{
    font-size: 1.2rem;
    margin-top: 20px;
  }


}
