@charset "UTF-8";
/* SCSS Document */
/*=================================================================
|| mixin
===================================================================*/
/*=================================================================
|| base
===================================================================*/
/*==============================
 || base
==============================*/
/*==============================
 || color
==============================*/
/*==============================
|| font
==============================*/
.mincho, #pointSection > div > h3 {
  font-family: 'Ryumin Bold KL'; }

.goth, * {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; }

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%; }

main {
  margin: 0;
  overflow-x: hidden; }

h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 5rem;
  color: #111;
  letter-spacing: 0; }
  @media screen and (max-width: 1000px) {
    h1 {
      font-size: 4rem;
      font-weight: 400;
      line-height: 5rem;
      color: #111;
      letter-spacing: 0; } }
  @media screen and (max-width: 600px) {
    h1 {
      font-size: 4rem;
      font-weight: 400;
      line-height: 5rem;
      color: #111;
      letter-spacing: 0; } }

h2 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 4.2rem;
  color: #111;
  letter-spacing: 0; }
  @media screen and (max-width: 1000px) {
    h2 {
      font-size: 2.6rem;
      font-weight: 400;
      line-height: 3.6rem;
      color: #111;
      letter-spacing: 0; } }
  @media screen and (max-width: 600px) {
    h2 {
      font-size: 2.2rem;
      font-weight: 400;
      line-height: 3.2rem;
      color: #111;
      letter-spacing: 0; } }

h3 {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 3.6rem;
  color: #111;
  letter-spacing: 0; }
  @media screen and (max-width: 1000px) {
    h3 {
      font-size: 2.2rem;
      font-weight: 400;
      line-height: 2.2rem;
      color: #111;
      letter-spacing: 0; } }
  @media screen and (max-width: 600px) {
    h3 {
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 2.8rem;
      color: #111;
      letter-spacing: 0; } }

h4 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3.2rem;
  color: #111;
  letter-spacing: 0; }
  @media screen and (max-width: 1000px) {
    h4 {
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 2.8rem;
      color: #111;
      letter-spacing: 0; } }
  @media screen and (max-width: 600px) {
    h4 {
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 2.6rem;
      color: #111;
      letter-spacing: 0; } }

p, a, td, th, span, a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  color: #111;
  letter-spacing: 0; }
  @media screen and (max-width: 1000px) {
    p, a, td, th, span, a {
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 2.5rem;
      color: #111;
      letter-spacing: 0; } }
  @media screen and (max-width: 600px) {
    p, a, td, th, span, a {
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 2.4rem;
      color: #111;
      letter-spacing: 0; } }

.hoverbase, a {
  transition: .3s; }

.hover, a:hover {
  opacity: .8;
  transition: .3s; }

a {
  text-decoration: none; }

li {
  list-style: none; }

.fa {
  color: #fff; }

/*==============================
|| 共通パーツ
==============================*/
.linkBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  border: 1px solid #770D02;
  box-shadow: 3px 3px 0 #770D02;
  background-color: #BB0D02;
  border-radius: 10px;
  padding: 15px 20px;
  position: relative; }
  .linkBtn:hover {
    transform: translate(3px, 3px);
    box-shadow: none;
    margin-top: 4px;
    opacity: 1; }
  .linkBtn::after {
    content: "＞";
    position: absolute;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    right: 20px;
    margin: auto; }

/*==============================
 || pc,sp
==============================*/
.pc {
  display: block; }
  @media screen and (max-width: 600px) {
    .pc {
      display: none; } }

.sp {
  display: none; }
  @media screen and (max-width: 600px) {
    .sp {
      display: block; } }

/*==============================
|| header
==============================*/
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  border-bottom: 4px solid #BB0D02;
  background-color: #fff;
  z-index: 10; }
  header > div {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; }
  @media screen and (max-width: 800px) {
    header {
      padding: 10px; } }

.headLogo {
  display: block;
  width: 100%;
  max-width: 37.7%;
  position: relative; }
  .headLogo > a {
    width: 100%;
    display: block; }
    .headLogo > a > img {
      width: 100%; }
  .headLogo > span {
    position: absolute;
    top: 0;
    right: -40px;
    font-size: 1.9rem;
    font-weight: bold;
    color: #BB0D02; }
    @media screen and (max-width: 1000px) {
      .headLogo > span {
        display: block;
        width: 100vw;
        top: 0;
        right: 0;
        left: -10px;
        margin: auto;
        text-align: center; } }
    @media screen and (max-width: 600px) {
      .headLogo > span {
        top: -10px;
        font-size: 1.2rem; } }
  @media screen and (max-width: 600px) {
    .headLogo {
      max-width: 150px; } }

#headNav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end; }

.headTel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 20px; }
  .headTel > a {
    display: block;
    max-width: 328px; }
    .headTel > a > img {
      width: 100%; }
  .headTel > img {
    width: 100%;
    max-width: 248px; }
  @media screen and (max-width: 1000px) {
    .headTel {
      margin-bottom: 0; } }
  @media screen and (max-width: 800px) {
    .headTel {
      display: none; } }

.headNavlist > a {
  display: none; }
.headNavlist > ul {
  display: flex;
  justify-content: flex-end; }
  .headNavlist > ul > li {
    margin-right: 20px; }
    .headNavlist > ul > li:last-of-type {
      margin-right: 0; }

/*==============================
|| SPメニュー
==============================*/
#spNav {
  display: none;
  width: 100%;
  text-align: center; }
  #spNav h1 {
    display: inline-block;
    margin: 0 auto; }
    #spNav h1 > a {
      display: block; }
      #spNav h1 > a img {
        width: 100px; }
  @media screen and (max-width: 1000px) {
    #spNav {
      display: block;
      z-index: 999999; } }

#nav-drawer {
  position: relative; }

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none; }

/*アイコンのスペース*/
#nav-open {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  border-radius: 5px; }
  #nav-open span, #nav-open span::before, #nav-open span::after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 30px;
    /*長さ*/
    border-radius: 1px;
    background: #000;
    display: block;
    content: '';
    cursor: pointer; }
  @media screen and (max-width: 1000px) {
    #nav-open {
      display: block;
      z-index: 11; } }

#nav-open span:before {
  bottom: -12px; }

#nav-open span:after {
  bottom: -24px; }

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out; }

/*中身*/
@media screen and (max-width: 1000px) {
  .headNavlist {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    /*最前面に*/
    width: 90%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    padding: 50px 30px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    /*背景色*/
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/ }
    .headNavlist > a {
      display: block;
      max-width: 200px;
      margin: 0 auto 20px; }
    .headNavlist > ul {
      display: block;
      width: 100%;
      margin: 0 auto; }
      .headNavlist > ul > li {
        margin-right: 0;
        margin-bottom: 5px; }
        .headNavlist > ul > li > a {
          font-family: 'Crushed', cursive;
          padding: 10px 0 10px;
          border-bottom: 1px solid #000;
          color: #000;
          display: block;
          text-align: left;
          letter-spacing: 0; } }

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;
  /*カバーを表示*/
  opacity: .5; }

#nav-input:checked ~ .headNavlist {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15); }

.iconLink {
  display: flex;
  justify-content: center; }
  .iconLink > li {
    margin-bottom: 10px; }

#nav-content .iconLink li a {
  display: block;
  border-radius: 25px;
  height: 40px;
  width: 40px;
  padding: 10px;
  margin: 10px 5px;
  transition: .3s ease-in-out; }
  #nav-content .iconLink li a i {
    font-size: 18px;
    color: #fff;
    transition: .3s ease-in-out; }

#nav-content .iconLink li:nth-of-type(1) a {
  background-color: #983b3b;
  border: 2px solid #983b3b;
  padding-left: 9px; }

#nav-content .iconLink li:nth-of-type(1) a {
  background-color: #ccca00;
  border: 2px solid #ccca00;
  padding-left: 7px; }

#nav-content .iconLink li:nth-of-type(2) a {
  background-color: #3b5998;
  border: 2px solid #3b5998;
  padding-left: 13px; }

#nav-content .iconLink li:nth-of-type(3) a {
  background-color: #00aced;
  border: 2px solid #00aced;
  padding-left: 10px; }

#nav-content .iconLink li:nth-of-type(4) a {
  background-color: #d93177;
  border: 2px solid #d93177;
  padding-left: 10px; }

#nav-content .languageList {
  display: block;
  position: relative;
  left: 0;
  right: auto;
  top: 0; }

@media screen and (max-width: 1000px) {
  #nav-content ul.languageList {
    display: block;
    width: 100%;
    max-width: 160px; }

  #nav-content .languageList li a {
    border-bottom: none;
    text-align: center; } }
/*==============================
|| aside
==============================*/
#storeBtn {
  display: block;
  position: fixed;
  top: 250px;
  right: -10px;
  z-index: 9;
  transition: .2s; }
  #storeBtn > a {
    display: block;
    width: 226px; }
    #storeBtn > a > img {
      width: 100%; }
    #storeBtn > a:hover {
      opacity: 1; }
  #storeBtn:hover {
    right: 0;
    transition: .2s; }
  @media screen and (max-width: 1000px) {
    #storeBtn {
      display: none; } }

#storeBtnsp {
  display: none;
  position: fixed;
  width: 100%;
  max-width: 400px;
  right: 0;
  bottom: 0;
  z-index: 9; }
  #storeBtnsp > a {
    width: 50%; }
    #storeBtnsp > a > img {
      width: 100%; }
  @media screen and (max-width: 1000px) {
    #storeBtnsp {
      display: flex; } }

#topBtn {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  transition: .2s; }
  #topBtn > a {
    display: block;
    width: 75px; }
    #topBtn > a > img {
      width: 100%; }
    #topBtn > a:hover {
      opacity: 1; }
  #topBtn:hover {
    bottom: 25px;
    transition: .2s; }
  @media screen and (max-width: 1000px) {
    #topBtn {
      display: none; } }

/*==============================
|| footer
==============================*/
#footmapWrap > iframe {
  width: 100%;
  height: 400px; }
  @media screen and (max-width: 800px) {
    #footmapWrap > iframe {
      height: 200px; } }

#footnavWrap {
  margin-top: 50px;
  background-color: #BB0D02;
  padding: 50px 20px; }

#footnavSection {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex; }
  #footnavSection > div {
    width: 60%;
    margin-right: 10%; }
    @media screen and (max-width: 800px) {
      #footnavSection > div {
        width: 100%;
        margin-right: 0; } }

.footNavlist {
  width: 30%; }
  @media screen and (max-width: 800px) {
    .footNavlist {
      display: none; } }

.footcompanyImg {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .footcompanyImg > img:first-of-type {
    width: 60%; }
  .footcompanyImg > img:last-of-type {
    width: 30%; }
    @media screen and (max-width: 800px) {
      .footcompanyImg > img:last-of-type {
        width: 38%; } }

.footcompanyText {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; }
  .footcompanyText > div:first-of-type > h4 {
    font-weight: bold; }
  .footcompanyText h4, .footcompanyText p {
    color: #fff; }
  @media screen and (max-width: 800px) {
    .footcompanyText {
      justify-content: flex-start; }
      .footcompanyText > div:first-of-type {
        margin-right: 10px; } }
  @media screen and (max-width: 600px) {
    .footcompanyText {
      display: block; }
      .footcompanyText > div:first-of-type {
        margin-bottom: 20px; } }

.footNavlist > li {
  margin-bottom: 20px; }
  .footNavlist > li > a {
    color: #fff; }

#footcopySection {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px; }
  #footcopySection > p {
    text-align: center;
    line-height: 1.5rem;
    font-size: 1rem;
    letter-spacing: -1px; }
  @media screen and (max-width: 1000px) {
    #footcopySection {
      margin-bottom: 55px; } }
  @media screen and (max-width: 600px) {
    #footcopySection {
      margin-bottom: 13.6986vw; } }

/*=================================================================
|| front
===================================================================*/
/* SCSS Document */
/*==============================
|| slideWrap
==============================*/
#slideWrap {
  padding: 50px 50px 100px;
  background-image: url("../img/base/woodBack.png");
  background-size: cover;
  position: relative; }
  #slideWrap > img {
    position: absolute;
    width: 100vw;
    left: 0;
    bottom: -1px;
    z-index: 1; }
  @media screen and (max-width: 1000px) {
    #slideWrap {
      padding: 20px 20px 50px; } }
  @media screen and (max-width: 600px) {
    #slideWrap {
      overflow: hidden;
      padding: 0 0 50px; } }

.sp-slide {
  overflow: hidden;
  border-radius: 20px; }
  @media screen and (max-width: 600px) {
    .sp-slide {
      border-radius: 0px; } }

/*==============================
|| pointWrap
==============================*/
#pointWrap {
  position: relative;
  padding: 100px 20px; }

#pointSection {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; }
  #pointSection > img:first-of-type {
    width: 40%; }
    @media screen and (max-width: 800px) {
      #pointSection > img:first-of-type {
        display: none; } }
  #pointSection > div {
    width: calc(60% - 20px); }
    #pointSection > div > h2, #pointSection > div > h3 {
      color: #BB0D02;
      font-weight: 900; }
    @media screen and (max-width: 800px) {
      #pointSection > div > h2 {
        margin-bottom: 30px; } }
    #pointSection > div > p {
      font-weight: 900;
      margin-bottom: 20px; }
      @media screen and (max-width: 600px) {
        #pointSection > div > p {
          font-size: 1.3rem;
          letter-spacing: -1px; } }
      #pointSection > div > p span {
        font-weight: 900;
        color: #BB0D02; }
    @media screen and (max-width: 800px) {
      #pointSection > div {
        width: 100%;
        max-width: 600px;
        text-align: center;
        margin: 0 auto; } }
  @media screen and (max-width: 800px) {
    #pointSection {
      padding: 150px 0px 20px; } }

#pointSection > img.karaageGrab {
  position: absolute;
  width: 400px;
  top: -100px;
  right: 0;
  z-index: 2; }
  @media screen and (max-width: 1400px) {
    #pointSection > img.karaageGrab {
      top: -150px;
      right: -100px; } }
  @media screen and (max-width: 1400px) {
    #pointSection > img.karaageGrab {
      width: 300px;
      top: -170px;
      right: -100px; } }
  @media screen and (max-width: 800px) {
    #pointSection > img.karaageGrab {
      width: 300px;
      top: -100px;
      right: 0;
      left: 80px;
      margin: auto;
      transform: rotate(-35deg); } }

#pointtextSection {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center; }
  #pointtextSection > p {
    width: 100%;
    text-align: justify;
    margin-bottom: 50px; }
    @media screen and (max-width: 800px) {
      #pointtextSection > p {
        display: none; } }
  @media screen and (max-width: 800px) {
    #pointtextSection {
      max-width: 600px; } }

.pointBacksp {
  display: none; }
  @media screen and (max-width: 800px) {
    .pointBacksp {
      display: block;
      position: absolute;
      width: 100vw;
      top: auto;
      bottom: -30vw;
      left: 0;
      z-index: 2; } }

/*==============================
|| storeWrap
==============================*/
#storeWrap {
  padding: 150px 20px 100px;
  background-image: url("../img/base/woodBack.png");
  background-size: cover;
  position: relative; }
  #storeWrap > img {
    position: absolute;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1; }
  @media screen and (max-width: 800px) {
    #storeWrap {
      padding: calc(40vw) 20px 50px; } }

#storeSection {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; }
  #storeSection > h2 {
    padding: 10px 20px;
    color: #fff;
    background-color: #BB0D02;
    text-align: center;
    border-radius: 20px 20px 0 0;
    margin-bottom: 50px; }
    @media screen and (max-width: 600px) {
      #storeSection > h2 {
        padding: 5px 20px;
        width: calc(100% + 40px);
        position: relative;
        left: -20px;
        border-radius: 0; } }
  @media screen and (max-width: 800px) {
    #storeSection {
      max-width: 600px; } }

.storeList {
  width: 100%;
  display: flex;
  flex-wrap: wrap; }
  .storeList > li {
    width: 23%;
    margin-right: 2.6666%;
    margin-bottom: 50px; }
    .storeList > li:nth-of-type(4n) {
      margin-right: 0; }
    .storeList > li > a > img {
      width: 100%; }
    .storeList > li > a > h4:first-of-type {
      font-size: 1.9rem;
      line-height: 2.7rem;
      margin-bottom: 15px; }
      @media screen and (max-width: 800px) {
        .storeList > li > a > h4:first-of-type {
          font-size: 1.4rem;
          line-height: 2rem; } }
    .storeList > li > a > h4:last-of-type {
      font-size: 2.5rem;
      line-height: 2.7rem;
      font-weight: 500;
      color: #BB0D02; }
      @media screen and (max-width: 800px) {
        .storeList > li > a > h4:last-of-type {
          font-size: 1.6rem;
          line-height: 2rem; } }
  @media screen and (max-width: 800px) {
    .storeList {
      max-width: 600px; }
      .storeList > li {
        margin-bottom: 30px;
        width: 48%;
        margin-right: 4%; }
        .storeList > li:nth-of-type(2n) {
          margin-right: 0; } }

/*==============================
|| karaageBack
==============================*/
.karaageBack {
  width: 100%;
  height: 27.15vw;
  background-image: url("../img/front/karaageBack.png");
  background-size: cover;
  position: relative; }
  .karaageBack > img {
    position: absolute;
    width: 100vw;
    left: 0;
    bottom: -1px;
    z-index: 1; }

/*==============================
|| menuWrap
==============================*/
#shopWrap {
  padding: 100px 20px; }
  @media screen and (max-width: 800px) {
    #shopWrap {
      padding: 50px 20px; } }

#utazushopSection {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 50px; }
  #utazushopSection > h2 {
    color: #BB0D02;
    font-weight: 900;
    margin-bottom: 30px; }
    @media screen and (max-width: 800px) {
      #utazushopSection > h2 {
        text-align: center; } }
  #utazushopSection > div {
    width: 100%;
    display: flex;
    justify-content: space-between; }
    #utazushopSection > div > div {
      width: 50%; }
      @media screen and (max-width: 800px) {
        #utazushopSection > div > div p {
          text-align: center;
          margin-bottom: 30px; } }
      @media screen and (max-width: 600px) {
        #utazushopSection > div > div p {
          font-size: 1.2rem;
          letter-spacing: -1px; } }
      @media screen and (max-width: 800px) {
        #utazushopSection > div > div p:last-of-type {
          display: none; } }
      #utazushopSection > div > div > table {
        border-collapse: separate;
        border-spacing: 0 10px; }
        #utazushopSection > div > div > table th {
          background-color: #BB0D02;
          color: #fff;
          font-weight: bold;
          padding: 5px 10px; }
        #utazushopSection > div > div > table td {
          padding: 5px 10px; }
        @media screen and (max-width: 800px) {
          #utazushopSection > div > div > table {
            display: none; } }
      @media screen and (max-width: 800px) {
        #utazushopSection > div > div {
          width: 100%;
          max-width: 600px; } }
    @media screen and (max-width: 800px) {
      #utazushopSection > div {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px; } }
    #utazushopSection > div > img {
      width: 45%;
      align-self: flex-start; }
      @media screen and (max-width: 800px) {
        #utazushopSection > div > img {
          width: 100%;
          max-width: 400px;
          align-self: center; } }

#menuSection {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; }

.menuList {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; }
  .menuList > li {
    width: 20%;
    margin-right: 6.6666%;
    position: relative;
    margin-bottom: 50px; }
    .menuList > li:nth-of-type(4n) {
      margin-right: 0; }
    .menuList > li > span {
      padding: 7px 17px;
      display: block;
      position: absolute;
      top: -15px;
      left: 0;
      font-size: 1.7rem;
      line-height: 1.7rem;
      transform: rotate(-10deg);
      border-radius: 50%;
      color: #fff;
      background-color: #BB0D02; }
    .menuList > li > img {
      width: 100%;
      margin-bottom: 10px; }
    .menuList > li > p {
      text-align: center;
      line-height: 1.8rem; }
      .menuList > li > p > span {
        display: block;
        font-size: 1.4rem; }
        @media screen and (max-width: 800px) {
          .menuList > li > p > span {
            font-size: 1rem;
            letter-spacing: -1px; } }
    @media screen and (max-width: 800px) {
      .menuList > li {
        width: 48%;
        margin-right: 4%; }
        .menuList > li:nth-of-type(2n) {
          margin-right: 0; } }
  @media screen and (max-width: 800px) {
    .menuList {
      max-width: 300px; }
      .menuList > li {
        margin-bottom: 30px; } }
  @media screen and (max-width: 600px) {
    .menuList {
      max-width: 240px; } }

/*==============================
|| slideWrap
==============================*/
