@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600&display=swap");
@import url("all.css");
/*===============================

共通

================================*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/*===============================

タイトル

================================*/
.ttl {
  width: 100%;
  padding: 50px 0 35px;
  background-image: url(../img/ttl_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  letter-spacing: 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ttl {
    padding: 30px 0 15px;
  }
}
.ttl:after {
  content: " ";
  margin-left: -1em;
}
.ttl h2 {
  font-size: 3rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px black, 0 0 1em black, 0 0 0.2em black;
}
.ttl h2 span {
  display: block;
  margin: 10px 0 0;
  font-size: 1.5rem;
}

/*
調整
================================*/
.inner {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 50px 0;
  }
}

.adjustment {
  margin-top: 50px;
}

.shadow_w {
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff;
}

.white {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

.fade_wrap {
  position: relative;
  margin: 0 auto;
}

.fademovie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_02 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
}

.fade_text_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

.fade_click_inner {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 103%;
  height: 103%;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
}

.fade_image {
  position: absolute;
  top: 3.5%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 92%;
  height: 92%;
  z-index: 1;
  object-fit: cover;
}

.fade_movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fade_click {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.swiper-slide-active .fade_text_01 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_02 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_image {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_movie {
  animation: slideFromRightMovie 555.5s ease 0s 1 normal;
}

.swiper-slide-active .fade_click {
  animation: slideFromClick 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_click_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes slideFromText {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromClick {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromWhite {
  0%, 25% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 0;
  }
}
.main_pc_01 {
  animation-delay: 0.5s;
}

.main_pc_02 {
  animation-delay: 1s;
}

.main_pc_03 {
  animation-delay: 1.5s;
}

.main_pc_04 {
  animation-delay: 2s;
}

.main_pc_05 {
  animation-delay: 2.5s;
}

.main_pc_06 {
  animation-delay: 3s;
}

.main_pc_07 {
  animation-delay: 3.5s;
}

.main_pc_08 {
  animation-delay: 4.5s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeStay {
  animation-name: fadeStayAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeStayAnime {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainFrom01 {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes mainFrom02 {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*
オン・オフ
================================*/
.button2 {
  display: inline-block;
  background: #b37700;
  width: 250px;
  padding: 20px 30px 20px 20px;
  text-align: center;
  color: #FFF;
  margin: 10px;
  border: 1px solid;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .button2 {
    width: 100%;
    margin: 5px 0;
  }
}

.button2::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: skew(45deg);
  transition: 0.3s;
}

.button2:hover::after {
  right: 10px;
  width: 30px;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -webkit-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: white;
  color: black;
  font-family: "Zen Old Mincho", serif;
  font-weight: 100;
  font-size: 1.6rem;
}

img {
  max-width: 100%;
}

/*
補足
================================*/
.br_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

.br_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .br_pc {
    display: none;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex {
    flex-wrap: wrap;
  }
}

/*===============================

メイン

================================*/
.main {
  width: 100%;
  margin: 60px 0 0;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .main {
    padding: 0 10px;
  }
}
.main__text {
  margin: 10px 0 0;
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 200;
  line-height: 1.2;
}

.video {
  position: relative;
}
.video__logo {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 45%;
  z-index: 2;
}
@media screen and (max-width: 1168px) {
  .video__logo {
    bottom: 15px;
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .video__logo {
    width: 100%;
  }
}
.video__smoke {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 35%;
  z-index: 1;
}
@media screen and (max-width: 1168px) {
  .video__smoke {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .video__smoke {
    top: 50%;
    width: 120%;
  }
}
.video__efect01 {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 45%;
  mix-blend-mode: screen;
  z-index: 3;
}
@media screen and (max-width: 1168px) {
  .video__efect01 {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .video__efect01 {
    top: 50%;
    width: 120%;
  }
}
.video__efect02 {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 45%;
  mix-blend-mode: color-dodge;
  z-index: 3;
}
@media screen and (max-width: 1168px) {
  .video__efect02 {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .video__efect02 {
    top: 45%;
    width: 100%;
  }
}

/*===============================

スライドショー

================================*/
.slide {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .slide {
    height: 60vh;
  }
}

.slide_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}

.slide_image:nth-child(1) {
  background-image: url(../img/main.jpg);
  animation-delay: -2s;
}

.slide_image:nth-child(2) {
  background-image: url(../img/main2.jpg);
  animation-delay: 6s;
}

.slide_image:nth-child(3) {
  background-image: url(../img/main3.jpg);
  animation-delay: 14s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
/*===============================

パンくずリスト

================================*/
.breadcrumb {
  background-color: #ddd;
}
.breadcrumb ol {
  display: flex;
  height: 40px;
  margin: 0;
  justify-content: center;
  align-items: center;
  color: #171717;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb ol {
    font-size: 1rem;
  }
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
}
.breadcrumb li::after {
  content: " > ";
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb a {
  color: #171717;
  text-decoration: none;
}

/*===============================

最新情報

================================*/
.news, .newslist {
  padding: 0 0 70px;
  background-color: #171717;
  color: white;
}
@media screen and (max-width: 767px) {
  .news, .newslist {
    padding: 0 0 40px;
  }
}
.news__container, .newslist__container {
  display: flex;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .news__container, .newslist__container {
    flex-wrap: wrap;
    max-width: 95%;
  }
}
.news__container h2, .newslist__container h2 {
  width: 300px;
  margin-top: -75px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .news__container h2, .newslist__container h2 {
    width: 100px;
    margin-top: -55px;
  }
}
.news__container .data, .newslist__container .data {
  width: 100%;
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .news__container .data, .newslist__container .data {
    padding: 10px 0 0;
  }
}
.news__container .data li, .newslist__container .data li {
  position: relative;
  padding: 8px 0 10px;
  border-bottom: 1px dashed #fff;
}
.news__container .data li .day, .news__container .data li .text, .newslist__container .data li .day, .newslist__container .data li .text {
  display: flex;
  padding: 0 0 0 50px;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news__container .data li .day, .news__container .data li .text, .newslist__container .data li .day, .newslist__container .data li .text {
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.news__container .data li .day img, .news__container .data li .text img, .newslist__container .data li .day img, .newslist__container .data li .text img {
  width: auto;
  height: 20px;
  margin: 3px 0 0 10px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news__container .data li .day img, .news__container .data li .text img, .newslist__container .data li .day img, .newslist__container .data li .text img {
    height: 15px;
    margin: 1px 0 0 10px;
  }
}
.news__container .data li .day a, .news__container .data li .text a, .newslist__container .data li .day a, .newslist__container .data li .text a {
  width: 100%;
  display: block;
  color: white;
  text-decoration: none;
}
.news__container .data li .comment, .newslist__container .data li .comment {
  display: flex;
  padding: 25px 0 0 50px;
  font-size: 1.3rem;
  font-weight: 400;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news__container .data li .comment, .newslist__container .data li .comment {
    padding: 25px 0 0 0;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .news__container .data li .comment .image, .newslist__container .data li .comment .image {
    margin: auto;
  }
}
.news__container .data li .comment .image img, .newslist__container .data li .comment .image img {
  max-width: 300px;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  .news__container .data li .comment .image img, .newslist__container .data li .comment .image img {
    display: block;
    margin: 0 0 25px;
  }
}
.news__container .data li::after, .newslist__container .data li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.newslist {
  background-color: white;
  color: black;
}
.newslist__container .data li {
  border-bottom: 1px dashed #000;
}
.newslist__container .data li .day a, .newslist__container .data li .text a {
  color: black;
}
.newslist__container .data li::after {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.news_detail {
  padding: 0 0 70px;
}
@media screen and (max-width: 767px) {
  .news_detail {
    padding: 20px 0;
  }
}
.news_detail__container {
  display: flex;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .news_detail__container {
    flex-wrap: wrap;
    max-width: 95%;
  }
}
.news_detail__container .data {
  width: 100%;
  padding: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .news_detail__container .data {
    padding: 10px 0 0;
  }
}
.news_detail__container .data li {
  position: relative;
  padding: 8px 0 10px;
}
.news_detail__container .data li .day, .news_detail__container .data li .text {
  display: flex;
  padding: 0 0 0 50px;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news_detail__container .data li .day, .news_detail__container .data li .text {
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.news_detail__container .data li .day img, .news_detail__container .data li .text img {
  width: auto;
  height: 20px;
  margin: 3px 0 0 10px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news_detail__container .data li .day img, .news_detail__container .data li .text img {
    height: 15px;
    margin: 1px 0 0 10px;
  }
}
.news_detail__container .data li .day a, .news_detail__container .data li .text a {
  width: 100%;
  display: block;
  color: black;
  text-decoration: none;
}
.news_detail__container .data li .text {
  font-size: 2rem;
  color: #ae0001;
}
@media screen and (max-width: 767px) {
  .news_detail__container .data li .text {
    padding: 10px 0 0;
    font-size: 1.5rem;
  }
}
.news_detail__container .data li .comment {
  display: flex;
  padding: 25px 0 0 50px;
  font-size: 1.3rem;
  font-weight: 400;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news_detail__container .data li .comment {
    padding: 25px 0 0 0;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .news_detail__container .data li .comment .image {
    margin: auto;
  }
}
.news_detail__container .data li .comment .image img {
  max-width: 300px;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  .news_detail__container .data li .comment .image img {
    display: block;
    margin: 0 0 25px;
  }
}

/*===============================

ピックアップ

================================*/
.pickup {
  width: 100%;
  background-image: url(../img/pickup_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .pickup {
    background-repeat: repeat-y;
    background-size: 500% auto;
  }
}
.pickup h2 {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .pickup h2 {
    width: 275px;
    margin-top: -5%;
  }
}
.pickup ul {
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .pickup ul {
    padding: 10px 10px 40px;
  }
}
.pickup .data {
  flex: 1;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .pickup .data {
    padding: 50px 0 10px;
  }
}
.pickup .text {
  padding: 60px 0 0;
  line-height: 3.5;
}
@media screen and (max-width: 767px) {
  .pickup .text {
    padding: 20px 0 0;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.pickup .image {
  width: 550px;
}

.swiper-inner {
  overflow-x: auto;
  margin: 0 50px;
}

/*===============================

お品書き

================================*/
.menu__inner {
  max-width: 1200px;
  margin: auto;
  padding: 75px 0;
}
@media screen and (max-width: 767px) {
  .menu__inner {
    padding: 50px 15px;
  }
}
.menu h2 {
  position: relative;
  margin: 0 0 50px;
  padding: 1.4rem;
  font-weight: 200;
  text-align: center;
}
.menu h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #ae0001;
}
.menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 100px;
  column-gap: 50px;
}
@media screen and (max-width: 767px) {
  .menu__list {
    grid-template-columns: 1fr;
    row-gap: 20px;
    column-gap: 0;
  }
}
.menu__list h3 {
  display: block;
  margin: 0 0 30px;
  font-weight: 200;
  text-align: center;
}

.couse {
  padding: 100px 0;
  background: url("../img/couse_bg.jpg");
  background-size: 50% auto;
}
@media screen and (max-width: 767px) {
  .couse {
    padding: 15px;
    background-size: 100% auto;
  }
}
.couse h2 {
  position: relative;
  margin: 0 0 50px;
  padding: 1.4rem;
  font-weight: 200;
  text-align: center;
}
.couse h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #ae0001;
}
.couse__btn {
  display: flex;
  justify-content: center;
  margin: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .couse__btn {
    flex-wrap: wrap;
    margin: 0 0 20px 0;
  }
}
.couse__list {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .couse__list h3 {
    font-size: 1.6rem;
  }
}
.couse__list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .couse__list ul {
    margin: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .couse__list li {
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid #ccc;
  }
}
.couse__list .image {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .couse__list .image {
    width: 100px;
  }
  .couse__list .image img {
    border-radius: 5px;
  }
}
.couse__list .data {
  flex: 1;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .couse__list .data {
    padding: 0 0 10px 10px;
  }
}
.couse__list .data .text {
  padding: 20px 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .couse__list .data .text {
    padding: 10px 0 0;
    font-size: 1.2rem;
    font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 300;
    line-height: 1.2;
  }
}
.couse__list .data .price {
  color: #ae0001;
  font-size: 2rem;
  font-weight: bold;
}
.couse__list .data .price span {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .clear {
    display: block;
    width: 100%;
  }
}

.kushiyaki {
  padding: 10px 0 50px 0;
  background-color: #222;
  color: white;
}
@media screen and (max-width: 767px) {
  .kushiyaki {
    padding: 0 15px 15px;
    background-size: 100% auto;
  }
}

.drink {
  background-image: url("../img/drink_bg.jpg");
  background-size: 20% auto;
}
@media screen and (max-width: 767px) {
  .drink {
    background-size: 100% auto;
  }
}

.table_menu {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.table_menu td {
  padding: 20px;
  border-top: 1px solid #cccccc;
  font-weight: 100;
  font-size: 1.5rem;
}
.table_menu td span {
  display: block;
  padding: 10px 0 0;
  font-size: 1.2rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
}
.table_menu td:first-child {
  flex: 1;
  line-height: 1.5;
}
.table_menu td:last-child {
  width: 100px;
  text-align: right;
  white-space: nowrap;
}

/*
トップ画像
================================*/
.menu_pic {
  width: 100%;
  padding: 60px 0;
  background-image: url(../img/menu_pic_bg_s-2025.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .menu_pic {
    padding: 40px 0;
  }
}
.menu_pic h2 {
  width: 250px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .menu_pic h2 {
    width: 150px;
  }
}
.menu_pic .image {
  width: 800px;
  margin: auto;
  padding: 20px 0 50px;
}
@media screen and (max-width: 767px) {
  .menu_pic .image {
    width: 98%;
    padding: 20px 0 20px;
  }
}
.menu_pic .click {
  width: 200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .menu_pic .click {
    width: 150px;
  }
}

/*===============================

お店のこだわり

================================*/
.particular {
  padding: 60px 0;
  background-color: #171717;
  color: white;
}
@media screen and (max-width: 767px) {
  .particular {
    padding: 60px 0 30px;
  }
}
.particular h2 {
  width: 250px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .particular h2 {
    width: 150px;
  }
}
.particular ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  margin: auto;
  padding: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .particular ul {
    padding: 10px;
  }
}
.particular li {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .particular li {
    width: 50%;
    margin: auto;
    margin-bottom: 10px;
  }
}
.particular figure {
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .particular figure {
    margin: 5px;
  }
}
.particular .text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .particular .text {
    margin-top: -35px;
    font-size: 1.3rem;
  }
}

/*===============================

ショップデータ

================================*/
.shop {
  padding: 60px 0;
  background-color: white;
}
.shop ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .shop ul {
    padding: 0 10px;
  }
}
.shop li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .shop li {
    width: 100%;
  }
}
.shop .data {
  font-size: 1.4rem;
  line-height: 1.95;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .shop .data {
    padding: 0 0 30px;
    line-height: 1.6;
  }
}
.shop .icon {
  display: flex;
}
.shop .icon img {
  width: auto;
  height: 40px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .shop .icon img {
    height: 35px;
    margin-right: 20px;
  }
}
.shop .leisurelarce {
  padding: 30px 0 60px;
}
@media screen and (max-width: 767px) {
  .shop .leisurelarce {
    padding: 20px 0 30px;
  }
}
.shop .leisurelarce img {
  width: auto;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .shop .leisurelarce img {
    height: 35px;
  }
}
.shop .googlemap_bw iframe {
  width: 100%;
  height: 500px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .shop .googlemap_bw iframe {
    height: 394px;
    border-radius: 10px;
  }
}

aside {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  aside {
    display: none;
  }
}

aside img {
  width: 60px;
  margin: 10px 0;
}

@keyframes steam01 {
  0% {
    bottom: -600px;
    filter: blur(16px);
    transform: rotateY(0deg);
    transform: scale(0.6, 1);
    opacity: 0;
  }
  11% {
    opacity: 0.1;
  }
  33% {
    transform: rotateY(40deg);
    transform: scale(1, 1.4);
    opacity: 0.5;
  }
  66% {
    transform: rotateY(10deg);
    transform: scaleY(1.8, 1);
    opacity: 0.4;
  }
  100% {
    bottom: 0;
    filter: blur(20px);
    transform: rotateY(60deg);
    transform: scaleY(2, 1.8);
    opacity: 0;
  }
}
@keyframes steam02 {
  0% {
    bottom: -400px;
    filter: blur(16px);
    transform: rotateY(0deg);
    transform: scale(0.6, 0.6);
    opacity: 0;
  }
  11% {
    opacity: 0.1;
  }
  33% {
    transform: rotateY(40deg);
    transform: scale(0.8, 1);
    opacity: 0.4;
  }
  66% {
    transform: rotateY(2deg);
    transform: scaleY(1, 1.2);
  }
  100% {
    bottom: 0;
    filter: blur(20px);
    transform: rotateY(50deg);
    transform: scaleY(1.2, 1.4);
    opacity: 0;
  }
}
.steam {
  width: 100%;
}

.steam_box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.steam_box > img {
  width: 100%;
  display: block;
}

.steam01 {
  position: absolute;
  right: 0;
  animation: steam01 10s infinite linear;
  opacity: 0;
}

.steam02 {
  position: absolute;
  left: 0;
  animation: steam02 14s infinite linear;
  opacity: 0;
}

.steam03 {
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  animation: steam02 12s infinite linear;
  animation-delay: 6s;
  opacity: 0;
}

.steam01 img, .steam03 img {
  width: 532px;
  height: 800px;
}

.steam02 img {
  width: 399px;
  height: 600px;
}

.header {
  background-image: url("../img/header_bg.jpg");
  background-size: 50% auto;
}
@media screen and (max-width: 767px) {
  .header {
    justify-content: center;
  }
}
.header__container {
  position: relative;
  display: flex;
  border-bottom: 1px solid white;
  color: white;
}
@media screen and (max-width: 767px) {
  .header__container {
    display: none;
  }
}
.header h1 {
  display: block;
  padding: 15px 100px;
  font-weight: 300;
  font-size: 1.3rem;
}
.header__tel {
  position: absolute;
  top: 10px;
  right: 100px;
}
.header__tel img {
  height: 25px;
}

header.scroll_nav {
  background-color: rgba(0, 0, 0, 0.9);
  transition: 1.5s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

footer {
  padding: 25px 0;
  background-color: #666;
  color: white;
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 10px 0 15px;
    font-size: 1.5rem;
  }
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 11;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  background-color: #c29648;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hamburger {
    right: 10px;
    top: 10px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 10px;
  background: white;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 13px;
}

.hamburger span:nth-child(2) {
  top: 23px;
}

.hamburger span:nth-child(3) {
  top: 33px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 24px;
  left: 10px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 24px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav {
  width: 900px;
  margin: auto;
  padding: 20px 0 10px;
}
@media screen and (max-width: 767px) {
  nav {
    width: 100%;
    padding: 10px 0 0;
  }
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  nav .container {
    display: block;
  }
}
nav .left-menu ul,
nav .right-menu ul {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  nav .left-menu ul,
nav .right-menu ul {
    display: none;
  }
}
nav .left-menu ul li,
nav .right-menu ul li {
  display: inline-block;
}
nav .left-menu ul li a,
nav .right-menu ul li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: white;
  font-size: 1.8rem;
  writing-mode: vertical-rl;
  line-height: 2;
}
nav .logo img {
  max-width: 300px;
  height: auto;
}
@media screen and (max-width: 767px) {
  nav .logo img {
    max-width: 150px;
    margin: auto;
    padding: 0 0 10px;
  }
}
nav .tel {
  padding: 25px 0;
  font-size: 2.5rem;
}
nav .tel a {
  color: white;
  text-decoration: none;
}
nav .open {
  padding: 0 0 25px;
  font-size: 1.3rem;
  line-height: 1.5;
}

/* メニュー背景　*/
nav.globalmenu {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.85);
  text-align: center;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: all 0.6s;
}

nav.globalmenu ul {
  width: 100%;
  padding: 100px 0 0;
}

nav.globalmenu ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}

nav.globalmenu ul li:last-child {
  padding-bottom: 0;
}

nav.globalmenu ul li:hover {
  background: white;
}

nav.globalmenu ul li:hover a {
  color: black;
}

nav.globalmenu ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-decoration: none;
}

/* クリックでjQueryで追加・削除 */
nav.globalmenu.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}

nav.globalmenu.active .icon {
  display: flex;
  justify-content: center;
}
nav.globalmenu.active .icon img {
  width: auto;
  height: 40px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  nav.globalmenu.active .icon img {
    height: 30px;
    margin-right: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
