@charset "utf-8";

/***************************************************
  common.css
***************************************************/

:root {
  --brand-color: #e61416;
}

body.scroll01 header {
  position: relative;
}

.header02 {
  width: 100%;
  padding: 17px 0;
  background-color: #fff;
  z-index: 9;
}
body.scroll01 .header02 {
  position: fixed;
  top: 0;
  z-index: 112;
}

.header02 > .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header02 .swipe-nav > ul {
  display: flex;
}
.header02 .swipe-nav > ul > li {
  /* display: table-cell; */
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.header02 .swipe-nav > ul > li > a {
  display: block;
  padding: 10px 18px;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 3px solid #fff;
}
.header02 .swipe-nav > ul > li > a.onclick{
  border-color: var(--brand-color);
}
.header02 .swipe-nav > ul > li{
  position: relative;
}
.header02 .swipe-nav ul.list-second{
  position: absolute;
  display: none;
  top: 37px;
  left: -68px;
  margin: auto;
  z-index: 100;
  min-width: 240px;
  /* width: 150%; */
  padding-top: 18px;
}
.header02 .swipe-nav ul.list-second:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent var(--brand-color) transparent;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  margin: auto;
}
.header02 .swipe-nav ul.list-second li{
  border-bottom: none;
  display: block;
  white-space: normal;
}

.header02 .swipe-nav ul.list-second li a{
  display: block;
  background: var(--brand-color) url(/shared/img/svg/ar02.svg)no-repeat center right 12px;
  border: solid 1px var(--brand-color);
  border-bottom: none;
  padding: 12px 17px;
  font-size: 15px;
  text-align: left;
  text-decoration: none;
  color: #fff;
}
.header02 .swipe-nav ul.list-second li:last-child a {
  border-bottom: solid 1px var(--brand-color);
}
.header02 .swipe-nav ul.list-second li a:hover{
  background-color: #fff;
  background-image: url(/shared/img/svg/ar01.svg);
  color: #231815;
}
@media (min-width: 641px) {
  .swipe-nav-overlay {
    display: none;
  }
  .header02 .swipe-nav > ul > li:hover .list-second{
    display: block;
  }
  .header02 .swipe-nav > ul > li:hover > a{
    border-color: var(--brand-color);
  }
}

.header02_menu,
.nav-sp-toggle {
  display: none;
}

@media (max-width: 640px) {
  body{
    padding-top: 0;
  }
  body.is-fixed {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
  }
  .contents-main{
    clear: both;
  }
  .header02 {
    padding: 5px 0;
  }
  .header02.is-scroll,
  .header02.header-scroll {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
  }
  .header02_menu {
    display: block;
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 26px;
    padding-top: 5px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .header02_menu > span {
    background: var(--brand-color);
    border-radius: 50%;
    display: inline-block;
    height: 15px;
    width: 15px;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header02_menu > span::after,
  .header02_menu > span::before {
    background: #fff;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .header02_menu.is-active {
    background: var(--brand-color);
    color: #fff;
  }
  .header02_menu.is-active > span {
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
  }
  .header02_menu.is-active > span::after,
  .header02_menu.is-active > span::before {
    background: var(--brand-color);
  }
  .header02_menu > span::before {
    height: 8px;
    width: 2px;
  }
  .header02_menu > span::after {
    height: 2px;
    width: 8px;
  }
  .header02_menu b {
    font-weight: 700;
  }
  .header{
    position: relative;
  }
  .header02 > .contents-inner {
    display: block;
  }
  .header02 .swipe-nav-wrapper {
    /* width: 300px; */
    width: 100%;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 100;
    transition: height 0.3s linear;
    height: 0;
    overflow: hidden;
  }
  .header02 .swipe-nav-overlay {
    background: rgba(0,0,0,0);
    height: 0;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .header02 .swipe-nav-overlay.is-active {
    height: 100vh;
    z-index: 9;
  }
  .header02 .swipe-nav {
    background-color: var(--brand-color);
    float: none;
    overflow-y: auto;
    padding: 20px 20px 100px;
    /* height: calc(100vh - 40px - 50px); */
    /* width: 300px; */
    width: 100%;
  }
  .header02 .swipe-nav-wrapper.is-active {
    display: block;
    height: 400px;
    overflow: auto;
  }
  .header02 .swipe-nav::before {
    border-color: transparent transparent var(--brand-color);
    border-style: solid;
    border-width: 0 4px 10px;
    content: "";
    position: absolute;
    right: 40px;
    top: 0;
    transform: translateY(-100%);
  }
  .header02 .swipe-nav::-webkit-scrollbar {
    display: none;
  }
  .header02 .page-logo {
    display: block;
    float: none;
    margin: 0;
    text-align: center;
  }
  .header02 .swipe-nav > ul {
    border-top: 1px solid #fff;
    display: block;
  }
  .header02 .swipe-nav > ul > li {
    display: block;
    text-align: left;
    white-space: wrap;
    position: relative;
  }
  .header02 .swipe-nav > ul > li > a {
    background: url(/sp/yakiniku/shared/img/svg/ar10.svg) no-repeat right 15px top 50%;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    outline: none;
    padding: 11px 30px 11px 5px;
  }
  .nav-sp-toggle {
    cursor: pointer;
    display: block;
    height: 44px;
    width: 44px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .nav-sp-toggle > span {
    background-color: #fff;
    border-radius: 50%;
    display: block;
    height: 15px;
    width: 15px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .nav-sp-toggle > span::before,
  .nav-sp-toggle > span::after {
    background-color: var(--brand-color);
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .nav-sp-toggle > span::after {
    height: 2px;
    width: 8px;
  }
  .nav-sp-toggle > span::before {
    height: 0;
    width: 2px;
  }
  .nav-sp-toggle.is-active > span {
    background-color: transparent;
  }
  .nav-sp-toggle.is-active > span::before,
  .nav-sp-toggle.is-active > span::after {
    background-color: #fff;
  }
  .nav-sp-toggle.is-active > span::before {
    height: 8px;
  }
  .header02 .swipe-nav > ul li:last-child a {
    padding-right: 15px;

  }
  .header02 .swipe-nav ul.list-second {
    border-bottom: 1px solid #fff;
    display: block;
    position: static;
    margin: auto;
    min-width: 0;
    padding-left: 25px;
    padding-top: 0;
  }
  .header02 .swipe-nav ul.list-second > li > a {
    border-bottom: 1px solid #fff;
    display: block;
    font-size: 12px;
    font-weight: 400;
    outline: none;
    padding: 11px 30px 11px 5px;
  }
  .header02 .swipe-nav ul.list-second > li:last-child > a {
    border-bottom: 0;
  }
  .header02 .swipe-nav ul.list-second:after {
    content: none;
  }
  .header02{
    position: relative;
    /* padding-top: 0; */
    /* padding-bottom: 0; */
    padding: 10px 0;
    background: #fff;
  }
}


#breadcrumb{
	margin-bottom: 0;
	padding-bottom: 15px;
	background-color: #e7e7e7;
}
.header02{
  z-index: 104;
}
.header02 .swipe-nav{
  z-index: 104;
}
body.drawer-open .header02{
  z-index: 10;
}
.header02 + .close-sp-menu{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 103;
}
.header02 + .close-sp-menu.on{
  display: block;
}

@media (max-width: 640px) {
  #breadcrumb,
  .contents-inner > #breadcrumb,
  #breadcrumb .contents-inner,
  #breadcrumb ul {
    display: block;
  }
  #breadcrumb {
    padding: 0;
  }
  #breadcrumb ul {
    padding: 15px 0;
  }
}
