@charset "utf-8";
/* CSS Document */

/*---------------------------
        
      0.common setting   

---------------------------*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

/*
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: #333333 ;
  line-height: 1.5;
}
*/

ul {
  list-style: none;
}
/*---------------------------
        
         1. header   

---------------------------*/
.header-sp {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  /*paddingとborderを幅と高さに含める*/
  box-sizing: border-box;
  background-color: #262421 ;
  width: 100%;
  height: 60px;
  z-index: 9998;
  border-bottom: 1px solid #262421 ;
  /*下線の色が変わる時間を調整*/
  transition: all 1s ease;
}

/*line-heightにh1タグの高さよりも小さい値「0」を指定することで、h1タグの上下の余白が消えるため、ロゴ画像の高さと揃う*/
.site-logo {
  display: inline-block;
  line-height: 0;
}

/* aタグのリンク範囲を親要素のサイズに広げる */
.site-logo a {
  display: block;
}

.site-logo img {
  width: 200px;
}

/*           nav
---------------------------*/
nav {
  display: block;
  position: fixed;
  top: 0;
  /* ナビゲーションを表示させる位置を指定する */
  right: -1800px;
  bottom: 0;
  /* メニューアイコンを押下した際のナビゲーションメニューの横幅を指定する */
  width: 90%;
  background: #262421 ;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /*  ナビゲーションを表示する速度を指定する  */
  transition: all 0.8s;
  z-index: 99;
  opacity: 0;
}

.open nav {
  /* ナビゲーションの表示位置を指定する */
  right: 0;
  /* ナビゲーションの透過率を指定する */
  opacity: 1;
}

nav .inner {
  padding: 4.0625rem 1.5625rem 1rem 1.5625rem;
}

nav .inner ul {
  display: inlineblock;
  list-style: none;
  line-height: 1;
  margin: 0;
}

nav .inner ul li {
  position: relative;
  margin: 15px 0;
}

nav .inner ul li a {
  display: inlineblock;
  color: #9a7c03;
  font-size: 1.5rem;
  transition-duration: 0.2s;
  text-decoration:none;
	font-family: "new-tegomin", sans-serif;
	font-weight: 900;
	font-style: normal;
}

nav .nav-sns-erea,nav .nav-other-erea {
  margin-top: 30px;
}

nav .nav-sns-erea li,nav .nav-other-erea li {
	display: inlineblock;
    color: #9a7c03;
    font-size: 1rem;
    transition-duration: 0.2s;
    text-decoration: none;
    font-family: "new-tegomin", sans-serif;
    font-weight: 900;
    font-style: normal;
}
.other-contents a {
  text-decoration:none;
}

nav .txt-title {
  color: #919090 ;
  font-size: 0.75rem;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

nav .sns-contents,nav .other-contents {
  margin-top: 10px;
	display: inlineblock;
    color: #9a7c03;
    font-size: 1.5rem;
    transition-duration: 0.2s;
    text-decoration: none;
    font-family: "new-tegomin", sans-serif;
    font-weight: 900;
    font-style: normal;
}

nav .sns-contents p {
  display: inline-block;
}

nav .other-contents p {
  display: inline-block;
	color: #9a7c03;
    font-size: 1.5rem;
    transition-duration: 0.2s;
    text-decoration: none;
    font-family: "new-tegomin", sans-serif;
    font-weight: 900;
    font-style: normal;
}

/*       toggle_btn
---------------------------*/
.toggle_btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 120px;
    height: 120px;
    cursor: pointer;
    z-index: 3;
    background-image: url("../img/navBtn.png");
    background-size: 100%;
    background-repeat: no-repeat;
}
.toggle_btn .open {
    display: block;
    position: absolute;
    top: 60%;
    left: 25%;
    width: 50px;
    height: 2px;
/*    background-color: #9a7c03;*/
    border-radius: 5px;
}
/*
.toggle_btn .open:nth-child(1) {
  top: 15px;
}
.toggle_btn .open:nth-child(2) {
  top: 20px;
}
.toggle_btn .open:nth-child(3) {
  top: 25px;
}
*/

/*1つ目の要素のafter要素にMenu表示を指定する*/
.toggle_btn .open::after {
    content: "Menu";
    position: absolute;
    top: -18px;
    left: 20%;
    color: #EFE3B4;
    font-size: 0.95rem;
    line-height: 1;
	letter-spacing: 0.1em;
	font-family: "new-tegomin", sans-serif;
	font-weight: 900;
	font-style: normal;
	text-shadow:1px 1px 0 #070622, -1px -1px 0 #070622,
              -1px 1px 0 #070622, 1px -1px 0 #070622,
              0px 1px 0 #070622,  0-1px 0 #070622,
              -1px 0 0 #070622, 1px 0 0 #070622;
}

/* クリック時にハンバーガーメニューを非表示にする */
.open .toggle_btn .open {
  display: none;
}

/*       close_btn
---------------------------*/
/* 非表示にしたハンバーガーメニューの変わりに表示するアイコンを指定する */
.close_btn .close::before {
  position: absolute;
  top: 0px;
  left: -20px;
  font-family: 'Font Awesome 6 Free';
  content: "\f057";
  font-size: 1rem;
  font-weight: 600;
}

.close_btn {
  position: absolute;
  color: #9a7c03;
  cursor: pointer;
  /* 非表示にしたハンバーガーメニューの変わりにCLOSEを表示する位置を指定する   */
  top: calc(0% + 25px);
  left: calc(100% - 80px);
  z-index: 4;
	font-family: "new-tegomin", sans-serif;
	font-weight: 900;
	font-style: normal;
}

/*          mask
---------------------------*/
 #mask  {
  display: none;
  transition: all .5s;
}

/* ナビゲーションが展開された部分の外側余白を指定する */
.open #mask  {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
/*---------------------------
        
          2. main   

---------------------------*/
/*
.main-wrapper {
  height: 600px;
  background-color: #F8F7F5 ;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-wrapper p {
  font-size: 5rem;
}
*/

/*---------------------------
        
          3. footer   

---------------------------*/
/*
 #footer  {
  height: 600px;
  background-color: #333333 ;
  display: flex;
  justify-content: center;
  align-items: center; 
}
 #footer  p {
  font-size: 5rem;
  color: #fff ;
}*/

@media screen and (max-width:500px) {
	.toggle_btn {
    width: 80px;
    height: 80px;
}
	.toggle_btn .open::after {
    left: 0%;
}
}
