@charset "utf-8";

*, *::after, *::before {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* 共通スタイル */
:root {
  font-size: 16px;
}
body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.875rem, 0.799rem + 0.38vw, 1.25rem);
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
@media (width < 782px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}


/* スタイル */

/* header */
.header {
  height: 100px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #391B1B;
  color: #fff;
}
.logo_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 79px;
  height: 79px;
  margin-right: 10px;
}
.shop_name {
  font-size: 40px;
  font-weight: 800;
}
.header_nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_nav_item {
  padding-left: 32px;
  padding-right: 32px;
  border-right: solid 1px #F9F6EC;
}
.header_nav_item:nth-of-type(3) {
  border-right: none;
  padding-right: 16px;
  padding-left: 16px;
}
.header_nav_link {
  font-size: 30px;
  font-weight: 800;
}
@media (width < 976px) {
  .shop_name {
    font-size: 22px;
  }
  .header_nav_link {
    font-size: 22px;
  }
}
@media (width < 768px)  {
  .header {
    height: 70px;
  }
  .logo {
    width: 50px;
    height: 50px;
  }
  .shop_name {
    font-size: 20px;
  }
}
/* ここから下がハンバーガーメニューに関するCSS */
/*   
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1900;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}


/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: #391B1B;
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.graw-icon {
  padding-top: 0;
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 999;
  background: #391B1B;
  transition: .5s;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-box {
  max-width: 500px;
  margin: 10px auto 0;
  text-align: left;
}
.hamburger_logo_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-text{
  margin-bottom: 35px;
  font-weight: bolder;
}
.nav_item {
  width: 80%;
  margin: 40px auto;
  padding-top: 8px;
  text-align: left;
  padding-bottom: 15px;
  border-bottom: #634040 1px solid;
}
.nav_item_link {
  font-size: 24px;
  font-weight: bold;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;  /* メニューを画面に入れる */
} 


/* sec_top_img */
.top_img {
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  vertical-align: bottom;
}
/* footer */
.footer {
  text-align: center;
  background-color: #391B1B;
  color: #fff;
}
.footer_nav_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.footer_nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_nav_item {
  padding-left: 32px;
  padding-right: 32px;
  border-right: solid 1px #F9F6EC;
}
.footer_nav_item:nth-of-type(3) {
  border-right: none;
  padding-right: 16px;
  padding-left: 16px;
}
.footer_nav_link {
  font-size: 30px;
  font-weight: 800;
}
.small_box {
  height: 90px;
}
.small{
  line-height: 90px;
}
@media (width < 976px) {
  .footer_nav_link {
    font-size: 22px;
  }
}
@media (width < 768px ) {
  .footer_nav_box {
    justify-content: center;
    padding-top: 50px;
  }
}

