@import url('https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans&display=swap');
:root{
  --base-color: #00092B;
  --font-gary-color: #707070;
  --accent-color: #15539B;
  --gray-bg-color: #F3F3F3;
  --area-space:20px;
  --font-family-ja: "Noto Sans JP", "Yu Gothic", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-family-en: "Libertinus Sans", sans-serif;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  font-family: var(--font-family-ja);
}
body,h1,h2,h3,h4,h5,ul,p{margin: 0;}
ul{list-style: none;}
a{text-decoration: none;color: var(--base-color);}
.t_en{
  font-family: var(--font-family-en);
  font-weight: 400;
  font-style: normal;
}
br.sp_br{display: none;}
.clearfix::after {
    content: " ";
    display: block;
    clear: both;
}

section.teser-area h1,section h1{display: none;}
section{
  color: var(--base-color);
}
section img{
  width: 100%;
  height: auto;
  display: block;
}

section hgroup{
  text-align: center;
}
section hgroup p{
  font-size: 17px;
  line-height: 1.2;
}
section hgroup h2{
  font-size: 45px;
  line-height: 1;
}
/* ↑共通style */

.teser-box{
  width: 100%;
}
img.fv-sp{
  display: none;
}
/* ↓fv */
.fv_area{
  position: relative;
}
.fv.splide{
  width: 100%;
}
.fv_title{
  position: absolute;
  width: 300px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.scroll-down {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 12px;
}
.mouse-icon {
  width: 20px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
  margin-inline:auto;
  margin-bottom: 5px;
}
.mouse-icon::before {
  content: "";
  width: 2px;
  height: 8px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 2px;
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}
/* ↑fv */
/* ↓予約ボタン */
.fix_boxarea{
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0 20px 8px;
  z-index: 10;
  transition: 0.2s padding ease-in;
}
.fix_boxarea a{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  padding: 10px 30px 12px;
  font-size: 18px;
  border-radius: 100vw;
  border: 1px solid var(--base-color);
  box-shadow: 0px 2px 0px 0px var(--base-color);
  background-color: #fff;
  transition: 0.2s all ease-in;
}
.fix_boxarea a img{
  position: absolute;
  width: 12px;
  height: 12px;
  right: 18px;
  top: 19px;
}
.fix_boxarea:has( a:hover){
  padding: 0 20px 6px;
}
.fix_boxarea a:hover{
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: none;
}
.fix_boxarea a:hover img{
  filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(336deg) brightness(97%) contrast(107%);
}
/* ↑予約ボタン */
/* ↓About */
.imgbg_area{
  background-image: url(../img/tairu.jpg);
  width: 100%;
  padding: 100px 20px;
}
.about_box{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 628px;
  margin: 0 auto;
  gap: 30px;
}
.abo_titbox{
  display: flex;
  height: fit-content;
  align-items: center;
  gap: 15px;
}
.abo_titbox img{
  width: 35px;
  height: auto;
}
.abo_titbox h2{
  font-size: 25px;
}
.about_box p{
  font-size: 16px;
  line-height: 1.8;
}
/* ↑About */
/* ↓menu */
.menu_area{
  margin-top: 100px;
  margin-bottom: 100px;
}
.menu_area ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  font-size: 22px;
}
.menu_area ul li {
  position: relative;
}
.menu_area ul li::before,
.menu_area ul li::after{
  content: "";
  position: absolute;
  width: 1px;
  height: 22px;
  background-color: var(--base-color);
  top: 3px;
}
.menu_area ul li::before{
  left: -1px;
}
.menu_area ul li::after {
  right: 0;
}
.menu_area ul li:first-child::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 22px;
  background-color: var(--base-color);
  top: 3px;
  left: 0;
}
.menu_area ul li a{
  font-family: var(--font-family-en);
  transition: 0.2s all ease-in;
  display: block;
  padding-left: 30px;
  padding-right: 30px;
}
.menu_area ul a:hover{
  color: var(--accent-color);
}
/* ↑menu */
/* ↓Food */
.food_area{
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.morning,.lunch,.dinner{
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.food_imgbox{
  max-width: 600px;
  width: 62.5%;
}
.foodimg_p{
  font-size: 12px;
  color: var(--font-gary-color);
  text-align: right;
  margin-top: 5px;
}
.food_txtbox{
  max-width: 305px;
  width: 31.77%;
}
.food_tit{
  display: flex;
  flex-wrap: wrap;
  font-size: 30px;
  line-height: 1.2;
  justify-content: center;
}
.food_tit span{
  width: 100%;
  font-family: var(--font-family-ja);
  text-align: center;
  font-size: 14px;
}
.open_time{
  font-family: var(--font-family-en);
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}
.open_time span{
  font-family: var(--font-family-en);
  display: block;
  font-size: 16px;
  color: var(--font-gary-color);
}
.food_txt_p{
  line-height: 1.6;
}
.menu_box a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  width: 100%;
  padding: 10px 30px 12px;
  font-size: 17px;
  border-radius: 100vw;
  border: 1px solid var(--base-color);
  background-color: #fff;
  transition: 0.2s all ease-in;
}
.menu_box a img{
  width: 15px;
  height: 15px;
  margin-top: 3px;
  transition: 0.2s all ease-in;
}
.menu_box a:hover{
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}
.menu_box a:hover img{
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.lunch,.dinner{
  margin-top: 150px;
}
/* ↑Food */
/* ↓Drink */
.drink_area{
  max-width: 960px;
  width: 100%;
  margin: 150px auto;
  padding: 0 20px;
}
.drink_titbox{
  display: flex;
  column-gap: 10px;
  border-bottom: 1px solid var(--base-color);
  padding-bottom: 10px;
  margin-top: 50px;
}
.drink_titbox.mt100{
  margin-top: 100px;
}
.drink_titbox img{
  height: 34px;
  width: fit-content;
}
.drink_titbox h2{
  font-size: 30px;
  display: flex;
  column-gap: 10px;
  align-items: flex-end;
  line-height: 0.8;
}
.drink_titbox h2 span{
  font-size: 16px;
  line-height: 1.2;
}
ul.drink_ul{
  margin-top: 40px;
}
ul.drink_ul li{
  max-width: 455px;
  width: 47.395%;
}
ul.drink_ul li:nth-child(odd){
  float: left;
}
ul.drink_ul li:nth-child(even){
  float: right;
}
ul.drink_ul li:nth-child(n+3){
  margin-top: 40px;
}

ul.drink_ul h4{
  font-size: 25px;
  margin-bottom: 20px;
}
ul.drink_ul h4 span{
  font-size: 13px;
  padding-left: 10px;
}
dl.drink_dl div{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
dl.drink_dl div:last-of-type{
  margin-bottom: 0;
}
dl.drink_dl div::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
  border-bottom: dotted 1px var(--base-color);
  }
dl.drink_dl dt{
  margin:0;
  padding: 0 5px 0 0;
  background-color: #ffffff;
  z-index: 2;
  text-align: left;
  font-size: 16px;
  }
dl.drink_dl dd{
  margin:0;
  padding: 0 0 0 5px;
  background-color: #ffffff;
  z-index: 2;
  text-align: right;
  font-size: 16px;
  }
dl.drink_dl dt span,
dl.drink_dl dd span{
  font-size: 14px;
}
dl.drink_dl.sake,dl.drink_dl.sake_1line{
  margin-top: 15px;
}
dl.drink_dl.sake div{
  padding-left: 55px;
  margin-bottom: 10px;
}
dl.drink_dl.sake div:last-of-type{
  margin-bottom: 0px;
}
.drink_dl_tit{
  font-size: 16px;
  margin-bottom: 10px;
}
.drink_dl_tit span{
  font-size: 14px;
}
dl.drink_dl.sake div::after{
  width: calc(100% - 55px);
}
.drink_li_p{
  font-size: 14px;
  text-align: right;
  margin-top: 30px;
}
.drink_li_p.sp{display: none;}
.drink_img{
  max-width: 600px;
  width: 100%;
  margin-top: 30px;
}
/* ↑Drink */
/* ↓Access */
section.access_area{
  width: 100%;
  background-color: var(--gray-bg-color);
  padding: 100px var(--area-space);
}
section.access_area .access_conbox{
  max-width: 960px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 50px auto 0;
}
.access_img{
  max-width: 450px;
  width: 46.875%;
}
.access_txtbox {
  max-width: 450px;
  width: calc(53.125% - 20px);
}
.date{
  border-bottom: 1px solid var(--base-color);
  padding-bottom: 18px;
  margin-bottom: 18px;
  font-size: 18px;
}
.address_name{
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: bold;
}
.address_name span{
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.address{
  margin-bottom: 5px;
}
.address_link{
  width: fit-content;
}
.address_link a{
  position: relative;
  display: block;
  padding-right: 20px;
  color: var(--font-gary-color);
  transition: opacity 0.5ms ease-in;
}
.address_link a::after{
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/blank-icon.svg);
}
.address_link a:hover{
  opacity: 0.7;
}
.address_blankbox{
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
table.access_table thead th{
  text-align: left;
  padding-bottom: 3px;
}
table.access_table tbody th{
  text-align: left;
  font-size: 18px;
  width: 83px;
  padding-top: 6px;
  vertical-align: top;
  line-height: 1.4;
}
table.access_table tbody td{
  font-size: 18px;
  padding-top: 6px;
  vertical-align: top;
  line-height: 1.4;
}
/* ↑Access */
/* ↓footer */
footer{
  margin-bottom: 55px;
  padding: 0 20px;
}
.footerbox{
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  max-width: 960px;
  width: 100%;
  margin: 50px auto;
}
.foot_logo{
  width: 65px;
  height: auto;
}
ul.foot_ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  row-gap: 20px;
  font-size: 18px;
}
ul.foot_ul li {
  position: relative;
}
ul.foot_ul li::before,
ul.foot_ul li::after{
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background-color: var(--base-color);
  top: 2px;
}
ul.foot_ul li::before{
  left: -1px;
}
ul.foot_ul li::after {
  right: 0;
}
ul.foot_ul li:first-child::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background-color: var(--base-color);
  top: 2px;
  left: 0;
}
ul.foot_ul li a{
  font-family: var(--font-family-en);
  transition: 0.2s all ease-in;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}
ul.foot_ul a:hover{
  color: var(--accent-color);
}
/* ↑footer */

/* ↓デスクトップ以上のみ */
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* ↓スマホ版 */
@media (max-width: 768px){
  br.sp_br{display: block;}
  br.pc_br{display: none;}
  img.fv-pc{
    display: none;
  }
  img.fv-sp{
    display: block;
  }

  section.access_area{
    padding: 80px var(--area-space);
  }
  section hgroup p{
    font-size: 14px;
    line-height: 1.2;
  }
  section hgroup h2{
    font-size: 35px;
  }
  /* ↑共通style */

/* ↓fv */
.fv_title{
  width: 210px;
}
.fv .splide__track{
  height: 90vh;
}
/* ↑fv */
/* ↓予約ボタン */
.fix_boxarea a{
  padding: 10px 30px 11px;
  font-size: 16px;
}
.fix_boxarea a img{
  right: 16px;
  top: 17px;
}
/* ↑予約ボタン */
/* ↓About */
.imgbg_area{
  padding: 80px 20px;
}
.about_box{
  flex-wrap: wrap;
  max-width: 100%;
  gap: 17px;
}
/* ↑About */
/* ↓menu */
.menu_area{
  margin-top: 80px;
  margin-bottom: 80px;
}
.menu_area ul{
  font-size: 20px;
}
.menu_area ul li {
  width: calc(100% / 3);
}
.menu_area ul li::before,
.menu_area ul li::after{
  top: 1px;
}
.menu_area ul li:first-child::before {
  top: 1px;
}
.menu_area ul li a{
  padding-left: inherit;
  padding-right: inherit;
  text-align: center;
}
/* ↑menu */
/* ↓Food */
.morning,.lunch,.dinner{
  flex-wrap: wrap;
  gap: 30px;
}
.food_imgbox{
  max-width: 100%;
  width: 100%;
}
.morning .food_imgbox,.dinner .food_imgbox{
  order: 2;
}
.food_txtbox{
  max-width: 100%;
  width: 100%;
}
.morning .food_txtbox,.dinner .food_txtbox{
  order: 1;
}
.food_tit{
  flex-wrap: nowrap;
  font-size: 26px;
  line-height: 1.2;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  order: 1;
}
.food_tit span{
  text-align: left;
  font-size: 13px;
  order: 2;
}
.open_time{
  margin-top: 7px;
  margin-bottom: 27px;
  font-size: 20px;
  text-align: left;
}
.open_time span{
  display: inline;
}
.menu_box a{
  padding: 12px 30px 14px;
  font-size: 16px;
  max-width: 300px;
  margin: 0 auto;
}
.lunch,.dinner{
  margin-top: 80px;
}
/* ↑Food */
/* ↓Drink */
.drink_area{
  margin: 80px auto;
}
.drink_titbox{
  padding-bottom: 15px;
  margin-top: 50px;
}
.drink_titbox.mt100{
  margin-top: 80px;
}
.drink_titbox img{
  height: 26px;
}
.drink_titbox h2{
  font-size: 26px;
}
.drink_titbox h2 span{
  font-size: 13px;
}
ul.drink_ul{
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
ul.drink_ul li{
  max-width: 100%;
  width: 100%;
}
ul.drink_ul li:nth-child(odd){
  float: none;
}
ul.drink_ul li:nth-child(even){
  float: none;
}
ul.drink_ul li:nth-child(n+3){
  margin-top: 0px;
}

ul.drink_ul h4{
  margin-bottom: 17px;
}
dl.drink_dl div{
  margin-bottom: 15px;
}
dl.drink_dl dt{
  font-size: 14px;
  }
dl.drink_dl dd{
  font-size: 14px;
  }
dl.drink_dl dd span{
  font-size: 12px;
}
dl.drink_dl.sake,dl.drink_dl.sake_1line{
  margin-top: 15px;
}
dl.drink_dl.sake div{
  padding-left: 55px;
  margin-bottom: 10px;
}
.drink_dl_tit{
  font-size: 14px;
  margin-bottom: 7px;
}
.drink_dl_tit span{
  font-size: 14px;
}
.drink_li_p{
  margin-top: 20px;
}
.drink_li_p.pc{display: none;}
.drink_li_p.sp{display: block;}
/* ↑Drink */
/* ↓Access */
section.access_area .access_conbox{
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto 0;/* 無変更 */
}
.access_img{
  max-width: 100%;
  width: 100%;
}
.access_txtbox {
  width: 100%;
  max-width: 100%;
}
.date{
  font-size: 16px;
}
.address_link a::after{
  width: 13px;
  height: 13px;
}
/* ↑Access */
/* ↓footer */
footer{
  margin-bottom: 55px;
  padding: 0 20px;
}
.footerbox{
  justify-content: center;
  row-gap: 50px;
  margin: 50px auto 40px;
  flex-wrap: wrap;
}
ul.foot_ul{
  justify-content: center;
  font-size: 20px;
}
ul.foot_ul li{
  width: 113px;
}
ul.foot_ul li:nth-child(n+3):nth-child(-n+5){
  width: calc(100% / 3);
  max-width: 113px;
}
ul.foot_ul li::before,
ul.foot_ul li::after{
  height: 22px;
  top: 1px;
}
ul.foot_ul li:first-child::before {
  height: 22px;
  top: 1px;
}
ul.foot_ul li a{
  padding-left: inherit;
  padding-right: inherit;
  text-align: center;
}
/* ↑footer */

}


.copyright{
  font-size: 10px;
  text-align: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 12px;
}


/* スライドショー↓ */
  .main.splide .splide__track,.main2.splide .splide__track {
    margin-bottom: 7px;
  }
  .thumbnail .splide__slide,.thumbnail2 .splide__slide {
    opacity: 0.5;
    border: none!important;
  }
  .thumbnail .is-active,.thumbnail2 .is-active {
    opacity: 1;
  }
.main.splide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}