@charset "utf-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

全体の設定

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

html{
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  /*color: #a9a9a9;*/
  color: #000000;
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo',
    'Noto Sans Japanese', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.bg-darkgray {
  background-color: #a9a9a9;
}

.container,
.container-fulid {
  overflow: hidden;
}

/* 見出しを太字に */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold !important;
}

/* 英字タイトルをWEBフォントに */
header a,
.display-4,
.display-3,
.lead,
.circle-badges {
  font-family: 'Comfortaa', cursive;
}

/* パンくずリスト */
.breadcrumb {
  background: transparent;
}

.breadcrumb li + li:before {
  content: '»' !important;
}


/* common */
.base-mw{
  max-width: 1300px;
}
.txt-bold{
  font-weight: bold;
}

.sub-title{
  font-weight: bold;
  font-size: 1.3rem;
}

.sec-title{
  padding-bottom: 100px;
  height: 100px;
  text-align: center;
}

.sec-title-img{
  height: 100px;
}

.section-wrap{                                                                                        
  padding-top: 70px;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 40px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 5%;
    right: 3%;
  }
}

.pagetop a {
  background: #411800;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 50%;
  opacity: 0.5;
  transition: all .3s ease;
}

.pagetop a:hover {
  text-decoration: none;
  opacity: .9;
}


/* ヘッダー */
.top-logo{
  margin-left: 30px;
}
.top-logo a:hover{
  color: #565656;
  text-decoration: none;
}
.top-logo-img{
  height: 40px;
}

.headbar-wrap{
  min-height: 60px;
  width: 100%;
  /* position: fixed;
  top: 0;
  left: 0;
  z-index: 99; */
  background-color: #fff;
}
.headbar{
  /* display: flex;
  justify-content: space-between; */
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

/* メニューを右側表示 */
.navbar-collapse {
  display: flex;
  justify-content: flex-end; 
}

.nav-underline{
  position: relative;
  margin-left: 10px;
}
.nav-underline:after{
  width: 0;
  height: 0.8px;
  background-color: #000;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.3em;
  transition: 1s;
  opacity: 0;
}
.nav-underline:hover::after{
  width: 100%;
  opacity: 1;
}

/* mv */
.mv-swiper{
  width: 100vw;
  height: calc(100vh - 60px);
  overflow: hidden;
  /* margin-top: 60px; /* menu分の高さ */

  position: relative;
}
.swiper-wrapper{
  height: 100%;
  width: 100%;
}



.swiper-slide-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@keyframes mv_zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.swiper-slide-active .swiper-slide-img,
.swiper-slide-prev .swiper-slide-img,
.swiper-slide-duplicate-active .swiper-slide-img,
.swiper-slide-duplicate-prev .swiper-slide-img {
  animation: mv_zoom 10s linear 0s normal both;
}

.mv-swiper__pagination-wrap{
  position: absolute;
  right: 5%;
  bottom: 3%;
  z-index: 98;
}

.swiper-pagination-bullet{
  background-color: transparent !important;
  width: 20px !important;
  position: relative;
}
.swiper-pagination-bullet::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}


/*  */
.info_area_wrap{
  width: 100%;
  overflow: hidden;
}

.info_area{
  display: flex;
}
.info_area_left{
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;

  background-color: #f5f5f5;
  padding-top: 20px;
  
}
.info_area_center{
  width: 56%;
  
  background-image: url(../img/japanese-paper_00147.jpg);
  background-color:rgba(255,255,255, 0.2);
  background-blend-mode:lighten;

  display: flex;
  justify-content: center;
  align-items: center;
}

.info-center_omiseyori_ps{
  display: none;
}

.info_area_right{
  width: 22%;
  background-color: #000;
  color: #e2e2e2;
  padding: 1%;
}

.info_area_right-reservation{
  margin-bottom: 30px;
}


@media screen and (max-width: 1005px) {
  .info_area_center{
    width: 78%;
  }

  .info_area_right{
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .info_area_left{
    width: 32%;
  }

  .info-center_omiseyori{
    display: none;
  }

  .info-center_omiseyori_ps{
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .info_area{
    flex-direction: column;
  }
  .info_area_left{
    width: 100%;
  }
  .info_area_center{
    width: 100%;
  }
}


.info_area dd{
  margin-left: 8px;
}
.info_area_left__txt{
  margin: 0 auto;
}
.info_area_left table{
  margin-bottom: 10px;
}
.eigyobi_txt{
  margin-bottom: 0;
}

.btn_otoriyose{
  display: inline-block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  color: #000;
  text-align: center;
  
  text-decoration: none;
  /* box-shadow: 0 0 8px; */
  background-color: #a9a9a9;
  border: 2px solid #e2e2e2;  
}

.btn_otoriyose__link{
  vertical-align: middle;
}


/* お知らせ */
.news-wrap{
  width: 60%;
  /* border: 1px solid #000; */
  margin: 0 auto;
}

.news-wrap dl{
  display: flex;
  border-bottom: 1px solid #e6e6e6;
  color: #58535E;
}

.news-wrap dt{
  width: 20%;
  font-weight: normal;
}

.news-wrap dd{
  width: 80%;  
  margin-bottom: 0; /* dtと位置合わせ */
}

@media screen and (max-width: 1005px) {
  .news-wrap dt{
    width: 30%;
  }
  
  .news-wrap dd{
    width: 70%;  
  }
}

@media screen and (max-width: 767px) {
  .news-wrap{
    font-size: 90%;
  }

  .news-wrap dt{
    width: 40%;
  }
  
  .news-wrap dd{
    width: 60%;
  }
}

.news-archive{
  margin: 0 auto;
  text-align: center;
}

/* お品書き */
#oshinagaki{                                                                                        
  padding-left: 3%;
  padding-right: 3%;
}

#oshinagaki h3{
  text-align: center;
  /* padding-bottom: 2%; */
}

#oshinagaki h4{
  text-align: center; 
}

.oshinagaki_menu-box-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  /* margin: 0 auto; */
  
}

.oshinagaki-bunrui{
  padding-top: 30px;
  padding-bottom: 30px;
}

.oshinagaki_menu-box{
  width: 350px;
  box-shadow: 0 0 8px gray;
}

@media screen and (max-width: 375px) {
  #oshinagaki{  
    padding-left: 1%;
    padding-right: 1%;
  }
  .oshinagaki_menu-box{
    width: 97%;
  }
}

.menu-img{
  width: 100%;
  /*height: 400px; */
  overflow: hidden;
}

.menu-txt{
  margin-top: 15px;
  padding: 0 2%;
}

.sub_menu::before{
  content: "～ ";
}

.sub_menu::after{
  content: " ～";
}

/* ギャラリー */

#gallery{
  margin: 0 3%;
}
@media screen and (max-width: 767px) {
  #gallery{
    margin: 0 1%;
  }
}


.gallery-swiper-wrap {
  /* min-width: 360px; */
  overflow: hidden;
  position: relative;
}


.gallery-swiper .swiper-slide{
  text-align: center;
}

.gallery-swiper::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #fff;
  opacity: 0;
  z-index: 2;
} 

@media screen and (max-width: 900px) {
/* 
  .gallery-swiper .swiper-wrapper{
    margin: 0 20%;
  } */
}

.swiper-button-next, .swiper-button-prev {
  width: 55px!important;
  height: 55px!important;
  background-color: #585A55; /* 半透明の黒背景 */
  color: white!important; /* ボタンの色 */
  padding: 10px;
  border-radius: 50%; /* 丸いボタン */
  z-index: 10; /* 画像より前面 */
}

.gallery-slide-img-div{
  display: inline-block;
  width: 350px;
  height: 350px;
  overflow: hidden;
}


/* 店舗 */

.l-appearance{
  display: flex;
  justify-content: center;
  gap: 10px;
  /* flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 50px auto; */
}

.appearance-box{
  text-align: center;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .l-appearance{
    flex-direction: column;
    justify-content: center;
  }
}


.access-map{
  height: 600px;

}
.access-map-iframe{
  height: 100%;
  width: 100%;
  border: 0;
}


.l-footer{
  width: 100%;
  background-color: #000;
  color: #fff;
  border-top: 1px solid #fff ;
}

.footer-content-wrap{
  display: flex;
  justify-content: space-between;
  padding: 0 8%;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-content-wrap a{
  color: #fff;
}

.footer-left{
  display: flex;
}

.footer-sns{
  display: flex;
  align-items: end;
  padding-left: 10px;
  padding-bottom: 5px;
  justify-content: center;
}

.footer-logo{
  max-width: 120px;
  overflow: hidden;
}
.footer-logo img{
  width: 100%;
}

@media screen and (max-width: 560px) {
  .footer-content-wrap{
    padding: 0 2%;
  }

  .footer-left{
    flex-direction: column;
    justify-content:center;
  }

  .footer-sns{
    padding-top: 10px;
    padding-left: 0;
  }

  .footer-logo{
    text-align: center;
  }

  .footer-logo img{
    width: 70%;
  }
}

@media screen and (max-width: 560px) {
  .footer-right{
    font-size: 80%;
  }
}

.footer-menu{
  display: flex;
  gap: 15px;
}

.footer-info{
  font-size: 90%;
}
.footer-info dl{
  width: 100%;
  display: flex;
  margin-bottom: 0;
}
.footer-info dt{
  width: 25%;
  font-weight: normal;
}
.footer-info dd{
  width: 75%;
  margin-bottom: 0;
}
.l-footer a:hover {
  color: #fff;
}
.footer-copy-right{
  font-size: 90%;
}


