@charset "utf-8";

/* img画像のフルード化 */
img {
  border: 0;
  max-width: 100%;
  height: auto;
}

body {
  background: #000000;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

p {
  color: #ffffff;
  font-size: 1.5rem;
}

/*
=========================================
  Base Layout　共通部分
=========================================
*/

/*container*/
.container {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.heading {
  text-align: center;
  margin: 20px auto 20px;
  font-size: 24px;
  width: 150px;
  color: #ffffff;
}

.heading::before,
.heading::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 0;
  margin-left: 5px;
  margin-right: 5px;
  border: 2px solid #ffffff;
  vertical-align: middle;
}



/*
=========================================
  Modules（Block）
=========================================
*/
.h-menu-content {
  max-width: 940px;
  width: 100%;
  height: 80px;
  padding: 0;
  top: 0;
  margin: 0 auto;
  /* padding-left: 20px;
  padding-right: 20px; */
}


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

/*===== ヘッダー======= */

.header {
  background-color: #000000;
  display: flex;
}

.header .logo {
  width: 40%;
  height: 40%;
  left: 0;
  top: 0;
}

/* グローバルナビ */
.gnav {
  margin: 0;
  top: 0;
  width: 100%;
}

.gnav ul {
  display: flex;
}

.gnav li {
  display: inline-block;
  width: 20%;
  height: 80px;
}

.gnav li a {
  box-sizing: border-box;
  display: block;
  padding: 20px;
  background-color: #000000;
  color: #ffffff;
  font-size: 20px;
  border: 1px solid #ffffff;
  text-align: center;
  text-decoration: none;
}

.gnav .gnav-logo a{
  padding: 0;
  border: none;
}

.gnav li a:hover {
  background: #a22041;
}

.gnav .gnav-logo a:hover{
  background: #000000;
  filter: opacity(60%);
}

/* ====ファーストビュー==== */



/* ====ファーストビュー上の文字==== */
.firstview {
  position: relative;
  /* height: calc(100vh - 40px); */
  height: auto;
  /* max-height: 100vh; */
}

.firstview-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: row-reverse;
}

/* ===ファーストビュー上のロゴ=== */
.firstview-title .logo {
  width: 200px;
  height: 150px;
  margin: 0 auto;
}

.firstview-text {
  writing-mode: vertical-rl;
  margin-right: 100px;
  line-height: 3;
}

.firstview-background-img {
  object-fit: cover;
  width: 100%;
  height: calc(100vh - 40px);
}


/* ===スライドショー上・フッターのロゴ共通=== */
.logo:hover {
  filter: opacity(60%);
}

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


/* ====section=====共通？ */
.section {
  padding-top: 20px;
}

.section:last-child {
  padding-bottom: 20px;
}

/* =====メニュー======= */

/* moreボタンの基準ボックス */
.menu-more {
  position: relative;
  display: block;
  height: 44px;
}

.menu .more {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  font-size: 20px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  border: 1px solid #ffffff;
  background-color: #000000;
}

.menu .more::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border: transparent 7px solid;
  border-left-color: #fff;
  vertical-align: middle;
}

.menu .more:hover {
  background-color: #a22041;
}



/* ====メニュー ページ===== */
/* ===見出し=== */
.s-menu-h {
  margin-bottom: 0;
}

/*=== 季節限定メニュー見出し ===*/
.season-h {
  width: 240px;
}

#season,
#ramen,
#drink {
  padding-top: 5px;
  margin: 0 20px;
}



.menu-grid-col {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 40px;

}

  /*2カラムの列幅*/
  .menu-grid-col .col {
    width: 40%;
  }

  .menu-col {
    margin-left: 20px;
    font-size: 1.5rem;
    flex-grow: 1;
  }


.menu-col .menu-title {
  margin: 5px auto;
  border-bottom: 2px dotted #ffffff;
  display: block;
  }

  .menu-col .menu-dd {
    margin-top: 50px;
  }

#drink .menu-title{
  display: inline-block;
}


#drink li{
  text-align: center;
}

/* ===共通？===== */
.grid-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

/*2カラムの列幅*/
.grid-col .col {
  width: 48.9361%;
}

/* =====お知らせ======= */
.news ul li p {
  line-height: 2.5;
}


.clock::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  /* レギュラー → 400 */
  font-size: 20px;
  margin-right: 5px;
}

.news .date {
  display: inline-block;
  border-bottom: 1px dotted #ffffff;
  font-size: 20px;
}

.news .news-title {
  border-bottom: 2px dotted #ffffff;
}

.news .news-title:last-child {
  margin-bottom: 10px;
}

/* moreボタンの基準ボックス */
.news-more {
  position: relative;
  display: block;
  height: 44px;
}

.news .more {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  font-size: 20px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  border: 1px solid #ffffff;
  background-color: #000000;
}

.news .more::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border: transparent 7px solid;
  border-left-color: #fff;
  vertical-align: middle;
}

.news .more:hover {
  background-color: #a22041;
}



/* ====お知らせページ===== */
.news-col .date {
  margin-top: 5px;
  font-size: 24px;
  border-bottom: 1px dotted #ffffff;
}

.s-news-section img {
  display: block;
  margin: 0 auto 20px;
}

.s-news-section p {
  margin: 20px;
  font-size: 20px;
}


/* =====アクセス======= */

/* ===== Goofle map======== */
.map {
  position: relative;
  padding-top: 50%;
}

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


.access-list {
  display: flex;
  flex-wrap: wrap;
}

.access-list dt {
  width: 30%;
  padding: 10px 0;
  color: #ffffff;
  border-bottom: 1px dotted #ffffff;
}

.access-list dd {
  width: 70%;
  padding: 10px 0;
  color: #ffffff;
  border-bottom: 1px dotted #ffffff;
}

/* =====お問い合わせページ======= */
.contact .heading{
  width: 200px;
}

.entryTable {
  width: 100%;
  margin-bottom: 30px;
  border: 2px solid #000000;
}

.entryTable caption {
  margin-bottom: 10px;
}

.entryTable th,
.entryTable td {
  padding: 10px 20px;
  border: 1px solid #000000;
}

.entryTable th {
  width: 10em;
  background-color: #999999;
  text-align: left;
  vertical-align: middle;
}

.entryTable td {
  background-color: #fff;
}

.entryTable td select,
.entryTable input[type="text"],
.entryTable input[type="tel"],
.entryTable input[type="email"],
.entryTable textarea {
  width: 90%;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 1em;
}

.entryTable td select:focus,
.entryTable input[type="text"]:focus,
.entryTable input[type="tel"]:focus,
.entryTable input[type="email"]:focus,
.entryTable textarea:focus {
  outline: none;
  border-left: 5px solid #a22041;
}

/* カーソル形状 */
input,
textarea,
select {
  cursor: pointer;
}

/* ボタン */
.entryBtns {
  text-align: center;
}

.entryBtns input {
  width: 200px;
  margin: 0 10px;
  padding: 10px;
  font-size: 1em;
  color: #ffffff;
  background-color: #000000;
  border: 2px solid #ffffff;
}

.entryBtns input[type="reset"] {
  color: #000000;
  background-color: #ffffff;
}

.entryBtns input:hover {
  color: #ffffff;
  background-color: #a22041;
}

/* =====プライバシーポリシーページ======= */
.privacy p,
.privacy li{
  color: #000000;
  font-size: 16px;
}

/*=== プライバシーポリシー見出し ===*/
.privacypolicy-h {
  width: 300px;
}

.privacy-scroll {
  width: 90%;
  height: auto;
  margin: 0 auto 20px;
  background-color: #ffffff;
  overflow: visible;
}

.privacy-s {
  line-height: 1.7;
  margin: 10px;
}

.privacy-h {
  font-weight: bolder;
  border-bottom: 2px dotted #a22041;
  display: inline-block;
  margin-bottom: 5px;
}

.privacy-s ol {
  padding-left: 30px;
}

/* ===お問い合わせフォームへボタン=== */
.contact-btn {
  padding: 5px;
  font-size: 20px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  border: 1px solid #ffffff;
  background-color: #000000;
}

.contact-btn::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border: transparent 7px solid;
  border-left-color: #fff;
  vertical-align: middle;
}

.contact-btn:hover {
  background-color: #a22041;
}

.privacy-end {
  text-align: right;
}



/*===== フッター=======ページ共通================================ */
.footer {
  padding-top: 20px;
}

.sitemap {
  margin: auto auto 20px 35px;
}

.sitemap a {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
}

.sitemap a:hover {
  color: #a22041;
}

.footer-menu {
  color: #ffffff;
}

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

.sns-follow {
  text-align: center;
  color: #ffffff;
  opacity: 80%;
  font-size: 20px;
}

/*====SNS====*/
.sns {
  margin-bottom: 15px;
  text-align: center;
}

.sns li {
  display: inline-block;
}

.sns a {
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
}

.sns a:hover {
  color: rgba(255, 255, 255, 0.6);
}


/* ===SNSアイコン===== */
.fb::before {
  content: "\f09a";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  /* レギュラー → 400 */
  font-size: 50px;
}

.tw::before {
  content: "\e61b";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  /* レギュラー → 400 */
  font-size: 50px;
}

.insta::before {
  content: "\f16d";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  /* レギュラー → 400 */
  font-size: 50px;
}


/* ===フッターのロゴ=== */
/* PCのとき */
.footer .logo {
  width: 300px;
  margin: 0 auto;
}



/*===pagetop===*/
.pagetop {
  width: 45px;
  height: 45px;
  position: fixed;
  right: 10px;
  bottom: 70px;
}

.pagetop a {
  display: block;
  width: 45px;
  height: 45px;
  padding-top: 10px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  color: #000000;
}

.pagetop a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(-45deg);
}

.pagetop a:hover {
  background: #a22041;
  color: #ffffff;
}


/* コピーライト */
.copyright {
  color: #ffffff;
  text-align: center;
}

/*===== フッター==終わり==================================== */

/* ===========768px以下のデバイス用 スマホ用===========*/
/*grid*/
@media screen and (max-width: 768px) {

  /*===== ヘッダー======= */
  /* グローバルナビ ===========*/
  /* ハンバーガーメニュー======各ページ共通============== */
  /*三本線実装部分のcss①
----------------------*/
.menu-btn {
  position: fixed;
  top: 0px;  
  right: 0;
  width: 60px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  position: absolute;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
}
.menu-btn span:before {
  bottom: 10px;
}
.menu-btn span:after {
  top: 10px;
}

/*三本線を「×」にするcss②
----------------------*/
#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* チェックボックスを隠すcss③ media andの外に記載済み
----------------------*/
  
/*ここからメニューの装飾css④
-------------------------------*/
.h-menu-content {
  width: 75%;
  height: 100%;
  padding: 50px 20px 0;
  top: 0;
  right: 0;
  z-index: 2;
}

.gnav ul{
  display: block;
}

.h-menu-content li {
  display: block;
  width: 50%;
  height: 80px;
  list-style: none;
}
.h-menu-content li a {
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  position: relative;
  border: none;
  border-bottom: 2px solid #ffffff;
}

.gnav .gnav-logo a{
  width: 80%;
  margin: 0 auto;
}



/*メニュー部分タップするとメニューが開く⑤
-------------------------------*/
.h-menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 2;
  /* background-color: #c77777; */
  background-color: #000000;
  transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .h-menu-content {
  left: 25%;
}

/* ハンバーガーメニュー=ここまで=================== */


  /* ===スライドショー=== */
  .firstview{
    height: 100vh;
  }


  .firstview-background-img{
    height: 100vh;
  }

  .firstview-title .logo {
    width: 100px;
    height: auto;
  }
  
  .firstview-text {
    font-size: 16px;
    margin-right: 20px;
    line-height: 1.5;
    background-color: #0000003b;
  }
  

  /* アクセス */
  /*1カラム指定*/
  .grid-col {
    display: block;
  }

  .grid-col .col {
    width: 100%;
  }



  /* ===お知らせページ====== */
  .news-grid-col {
    margin-bottom: 20px;
  }

  .news-col {
    margin-left: 20px;
    font-size: 1.5rem;
    flex-grow: 1;
  }

  .news-col .date,
  .s-news-section p {
    font-size: 16px;
  }
  

  /* ===メニューページ====== */

.menu li{
  width: 350px;
}

.menu-grid-col {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

  /*1カラム指定*/
  .menu-grid-col {
    display: block;
  }

  .menu-grid-col .col {
    width: 100%;
  }

.menu-col{
  margin-left: 0;
}

.menu-col .menu-title,
.menu-col .menu-dd{
  margin: 0 auto;
  font-size: 16px;
}

.menu-col .menu-title {
  display: inline-block;
}


  /* =====お問い合わせページ======= */
   .entryTable th,
   .entryTable td {
     padding: 10px;
   }
   
    .entryTable th {
      width: 5em;
    }

    .entryBtns input {
      margin-bottom: 10px;
    }


  /* =====プライバシーポリシーページ======= */

  .privacy-scroll {
    width: 90%;
    height: 550px;
    border: 1px solid #000000;
    overflow: auto;
  }


  /* ===フッターのロゴ=== */
  /* スマホのとき */
  .footer .logo {
    width: 50%;
  }


}

/* ===========768px以下のデバイス用 PC ここまで===========*/

/*チェックボックスを隠すcss③ media andの外に書く
----------------------*/
#menu-btn-check {
  display: none;
}


/* javascript */
/* スクロール フェードイン
---------------------------------*/

/* 初期状態は透明にしておく */
.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: 0.5s;
}

/* 上がる */
.fade-in-up {
  transform: translate(0, 10px);
}

/* 下がる */
.fade-in-down {
  transform: translate(0, -10px);
}

/* 左へ */
.fade-in-left {
  transform: translate(10px, 0);
}

/* 右へ */
.fade-in-right {
  transform: translate(-10px, 0);
}

/* スクロールして画面内に入った時 */
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* デュレイ（アニメーションの開始を遅らせる） */
.delay01 {
  transition-delay: 0.1s;
}

.delay02 {
  transition-delay: 0.2s;
}

.delay03 {
  transition-delay: 0.3s;
}

/* スクロール フェードイン 終わり
---------------------------------*/
/* スライダーCSS */
/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* スライダーのためのcss
=================================== */
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/

/* body{
 background:#eee;
} */

/* h2,p {
   text-align:center;
   padding:10px;
} */

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #333;
}

a:hover,
a:active {
  text-decoration: none;
}

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

/* ====光りながら出現================= */
/*========= レイアウトのためのCSS ===============*/
/* body {
  background: #000000;
} */

.glowAnime {
  /* text-align: center; */
  /* margin: 20px 0; */
  /* font-size: 1.5rem; */
  color: #fff;
}


/*========= 光りながら出現させるためのCSS ===============*/

.glowAnime span {
  opacity: 0;
}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span {
  animation: glow_anime_on 1s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }

  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}

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