@charset "utf-8";
/* CSS Document */
.header {
  height: 65px;
  background-color: rgba(255, 255, 255, 0);
  margin-top: 42px;
  padding: 0 6%;
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 0;
}
@media(min-width: 968px) {
  .header {
    max-width: 1080px;
    padding: 0 5%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main {
  background-color: #f8f6f5;
}
/*-------------------------------  hamuburger　-------------------------------  */
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #f8f5f0;
  /*動き*/
  transition: all 0.7s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  /*display: none;*/
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 255px;
  height: 532px;
}
#g-nav.panelactive ul {
  /*display: block;*/
  margin-top: -65px;
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media(min-width:968px) {
  #g-nav ul {
    /*display: none;*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 66%;
    transform: translate(-50%, -50%);
  }
  #g-nav ul::after {
    content: '';
    background-image: url("../image/pc/hamuburger/sky.jpg");
    width: 360px;
    height: 616px;
    background-repeat: no-repeat;
    border-radius: 7px;
    right: 154%;
    top: 8%;
    position: absolute;
  }
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 43px;
  right: 21px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.line {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 1px;
  background-color: #f6f5f0;
  width: 45%;
}
.line:nth-of-type(1) {
  top: 15px;
}
.line:nth-of-type(2) {
  top: 21px;
}
.menu:nth-of-type(3) {
  position: relative;
  top: 22px;
  font-size: 10px;
  font-family: 'Shippori Mincho', serif;
  color: #f6f5f0;
}
.line.invert {
  background-color: #000;
}
.menu.invert {
  color: #000;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-20deg);
  width: 50%;
  background-color: #535353;
}
.openbtn1.active span:nth-of-type(2) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(20deg);
  width: 50%;
  background-color: #535353;
}
.openbtn1.active span:nth-of-type(3) {
  background-color: none;
  opacity: 0;
}
.header-navigation_telephone-number, .header-navigation_reserve_button {
  font-size: 2.0rem;
  font-family: 'Shippori Mincho';
}
.header-navigation_reserve_button {
  border-bottom: 1px solid #000000;
}
@media(min-width:968px) {
  .openbtn1 {
    top: 55px;
    margin-right: 3%;
  }
  .line {
    width: 60%;
  }
  .line:nth-of-type(2) {
    top: 22px;
  }
  .menu:nth-of-type(3) {
    top: 28px;
    left: 3px;
    font-size: 12px;
  }
}
/*----------------------- hamuburger中身　------------------------  */
.nav-list {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-gap: 7px;
  grid-template-areas:
    "logo logo"
    "top floor"
    "about access"
    "menu ."
    "tel tel"
    "mail mail";
}
.nav-list__logo {
  grid-area: logo;
 margin-top: 40px;
}
.nav-list__top {
  grid-area: top;
}
.nav-list__about {
  grid-area: about;
}
.nav-list__menu {
  grid-area: menu;
}
.nav-list__floor {
  grid-area: floor;
}
.nav-list__access {
  grid-area: access;
}
.nav-list__tel {
  grid-area: tel;
  font-size: 2.4rem;
  font-family: 'Shippori Mincho';
  color: #000;
  margin-top: 30px;
}
.nav-list__mail {
  grid-area: mail;
  font-size: 2.4rem;
  font-family: 'Shippori Mincho';
  color: #000;
}
.nav-list__top, .nav-list__about, .nav-list__menu, .nav-list__floor, .nav-list__access {
  font-size: 2.4rem;
  font-family: 'Shippori Mincho';
  color: #000;
  text-align: left;
  display: block;
}
.list_small {
  text-transform: capitalize;
}
.tel, .mail {
  font-size: 1.6rem;
  text-align: center;
}
.header-navigation_japanese {
  font-size: 1.4rem;
  text-align: left;
  display: block;
  letter-spacing: 0.01em;
  margin-top: 5px
}
/*-------------------------------  main　-------------------------------  */
.main {
  background-color: #f8f6f5;
}
/*-------------------------------  course　-------------------------------  */
.section-course {
  margin-bottom: 96px;
}
.sliced-raw-fish {
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 80px;
}
.section-course h1 {
  font-size: 3.0rem;
  font-weight: 500;
  margin: 0 auto;
  position: relative;
}
.section-course h1:before {
  content: url("../image/mobile/menu/wave01.png");
  position: absolute;
  left: 0;
  bottom: -6%;
}
.section-course h1:after {
  content: url("../image/mobile/menu/wave02.png");
  position: absolute;
  right: 0;
  bottom: -6%;
}
.section-course_japanese {
  font-size: 1.6rem;
  color: #a0272e;
  margin-top: 16px;
  display: block;
}
.section-course_text {
  margin: 50px auto;
  padding: 0 7%;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.9em;
}
.all_menu {
  margin: 0 auto;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 48px;
}
.course_osinagaki_various {
  padding: 0 6.4%;
  text-align: left;
}
.section-course_osinagaki {
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
}
.section-course_h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  width: 110px;
}
.section-course_h4_content {
  line-height: 2.1em;
  margin-bottom: 40px;
}
.couse_various {
  list-style: none;
}
.couse_various li {
  padding: 0 6.4% 24px;
  text-align: left;
}
.sashimi, .harumaki, .teppanyaki {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 7px;
}
@media(min-width: 600px) {
	.section-course_width{
		max-width: 1040px;
		margin: 0 auto;
	}
	.all_menu {
  width: 85%;
		border-radius: 7px;
}
  .section-course h1:before {
    content: url("../image/mobile/top/wave02.png");
    left: 10%;
    top: -55%;
  }
  .section-course h1:after {
    content: url("../image/mobile/top/wave01.png");
    right: 10%;
    top: -55%;
  }
  .section-course_text {
    margin: 50px auto;
    padding: 0;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.6em;
    width: 440px;
  }
	  .section-course ul {
    display: flex;
    justify-content: center;
    list-style: none;
		  padding:0 6.4%;
  }
	 .section-course ul li {
    display: inline-block;
    float: left;
    text-align: none;
    padding: 0;
    margin-right: 28px;
    margin-top: 3%;
  }
	.section-course li:last-child {
    margin-right: 0;
  }
	.course_osinagaki_wrapper {
    display: flex;
    align-items: center;
    align-items: flex-start;
}
}
@media(min-width: 968px) {
  .section-course {
    margin-bottom: 200px;
	  overflow: hidden;
  }
  .sliced-raw-fish {
    width: 100%;
    overflow-y: hidden;
    margin-bottom: 176px;
  }
  .section-course h1 {
    font-size: 4.5rem;
    letter-spacing: 0.01em;
    max-width: 1440px;
    margin: 0 auto;
  }
  .section-course h1:before {
    content: url("../image/pc/menu/wave01.png");
    left: 0%;
    top: -125%;
  }
  .section-course h1:after {
    content: url("../image/pc/menu/wave02.png");
    right: 0%;
    top: -125%;
  }
  .section-course_japanese {
    font-size: 2.1rem;
    margin-top: 24px;
  }
  .section-course_text {
    width: 570px;
    margin: 80px auto 104px;
    font-size: 2.1rem;
  }
  .all_menu {
    margin: 70px 0 0;
    width: 100%;
    max-width: 528px;
    height: auto;
    border-radius: 7px;
  }
  .section-course_wrapper {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 0 24px;
    width: 960px;
    margin: 0 auto;
  }
	.section-course ul {
    padding: 0 3.4%;
}
  .course_osinagaki_various {
    padding: 0;
    text-align: left;
  }
  .section-course_osinagaki {
    margin-bottom: 80px;
  }
  .section-course_h4_content {
    margin-bottom: 56px;
    line-height: initial;
  }
  .br-sp {
    display: none;
  }
}
@media(min-width: 1040px) {
  .section-course h1:before {
    left: -9%;
  }
  .section-course h1:after {
    right: -9%;
  }
}
/*-------------------------------  drink　-------------------------------  */
.u-pc-only {
  display: none;
}
.drink {
  padding-bottom: 80px;
}
.alcohol {
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 80px;
}
.section-drink_title {
  font-size: 3.0rem;
  font-weight: 500;
  margin: 0 auto;
  position: relative;
}
.section-drink_text {
  margin: 50px auto 80px;
  padding: 0 7%;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.9em;
}
.section-drink_title:before {
  content: url("../image/mobile/menu/wave01.png");
  position: absolute;
  left: 0;
  bottom: -6%;
}
.section-drink_title:after {
  content: url("../image/mobile/menu/wave02.png");
  position: absolute;
  right: 0;
  bottom: -6%;
}
.drink_menu {
  padding: 0 6.4%;
  text-align: left;
}
.section-drink_h4_01, .section-drink_h4_02, .section-drink_h4_03, .section-drink_h4_04, .section-drink_h4_05, .section-drink_h4_06, .section-drink_h4_07 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.section-drink_h4_content {
  margin-bottom: 40px;
}
.section-drink_h4_small {
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", sans-serif, "メイリオ";
  font-weight: 500;
  font-size: 1.6rem;
}
@media(min-width: 600px) {
  .u-pc-only {
    display: block;
  }
  .drink_wrapper{
    max-width: 1040px;
		margin: 0 auto;
  }
  .section-drink_title:before {
    content: url("../image/mobile/top/wave02.png");
    left: 10%;
    top: -55%;
  }
  .section-drink_title:after {
    content: url("../image/mobile/top/wave01.png");
    right: 10%;
    top: -55%;
  }
  .section-drink_text {
    margin: 80px auto 90px;
    padding: 0;
    line-height: 1.9em;
    font-size: 1.6rem;
	  max-width: 473px;
  }
  .drink_menu {
    padding: 0 0 0 20%;
  }
  .drink_menu_wrapper {
    display: flex;
    align-items: center;
    align-items: flex-start;
  }
  .section-drink_h4_01, .section-drink_h4_02 {
    margin-right: 160px;
  }
  .section-drink_h4_03 {
    margin-right: 201px;
  }
  .section-drink_h4_04 {
    margin-right: 177px;
  }
  .section-drink_h4_05, .section-drink_h4_06 {
    margin-right: 114px;
  }
  .section-drink_h4_07 {
    margin-right: 56px;
  }
}
@media(min-width: 968px) {
	/*.drink_wrapper{
		max-width: 1440px;
    margin: 0 auto;
	}*/
  .drink {
    padding-bottom: 200px;
    overflow: hidden;
  }
  .alcohol {
    width: 100%;
    overflow-y: hidden;
    margin-bottom: 176px;
  }
  .section-drink_title {
    font-size: 4.5rem;
    letter-spacing: 0.01em;
  }
  .section-drink_title:before {
    content: url("../image/pc/menu/wave01.png");
    left: 0%;
    top: -125%;
  }
  .section-drink_title:after {
    content: url("../image/pc/menu/wave02.png");
    right: 0%;
    top: -125%;
  }
  .section-drink_text {
	  margin: 80px auto 168px;
    line-height: 1.6em;
    font-size: 2.1rem;
	 max-width: 824px;
  }
}
@media(min-width: 1040px) {
  .section-drink_title:before {
    left:-9%;
  }
  .section-drink_title:after {
    right:-9%;
  }
}
/*-------------------------------  footer　-------------------------------  */
footer {
  background-color: #22211f;
  padding: 80px 6.4% 60px;
}
.footer_instagram {
  display: inline;
    width: 30px;
    position: relative;
    right: 46%;
}
.footer-wrapper01, .footer-wrapper02, .footer-wrapper03 {
  text-align: left;
  color: #f8f5f0;
}
.footer-wrapper01 {
  margin: 40px 0;
}
.footer-address_title, .fotter-reserve_title {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.0rem;
}
.footer-address_title {
  margin-bottom: 16px;
  display: inline-block;
}
.footer-businesshours {
  margin: 40px 0;
}
.footer-wrapper02 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.4rem;
}
.fotter-reserve_tel-number, .footer-reserve-mail_click {
  font-size: 1.8rem;
}
.footer-mail_link:visited {
  color: #f8f5f0;
}
.footer-mail_link:link {
  color: #f8f5f0;
}
.footer-mail_link:hover {
  color: #a7aba7;
}
.fotter-reserve_title {
  margin-bottom: 32px;
  display: inline-block;
}
.footer-wrapper03 {
  margin: 56px 0;
}
.footer-navigation ul li {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.0rem;
  color: #f8f5f0;
  margin-bottom: 24px;
}
.footer-navigation-top_link, .footer-navigation-about_link, .footer-navigation-menu_link {
  color: #f8f5f0;
  text-decoration: none;
}
.footer-navigation-top_link:hover {
  color: #a7aba7;
}
.footer-navigation-about_link:hover {
  color: #a7aba7;
}
.footer-navigation-menu_link:hover {
  color: #a7aba7;
}
.footer_japanese_top, .footer_japanese_about, .footer_japanese_menu {
  font-size: 1.5rem;
}
.footer_japanese_top {
  margin-left: 55px;
}
.footer_japanese_about {
  margin-left: 38px;
}
.footer_japanese_menu {
  margin-left: 40px;
}
small {
  font-size: 1.1rem;
  color: #f8f5f0;
  display: block;
  text-align: left;
  margin-top: 3px;
}
@media(min-width: 968px) {
  footer {
    padding: 96px 0 96px;
    overflow: hidden;
  }
  .footer_content {
    max-width: 880px;
    margin: 0 auto;
  }
  .fotter_logo {
    display: inline;
    position: relative;
    right: 45%;
  }
  .footer_instagram {
    right: 48%;
    top: 12px
  }
  .fotter_wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: -29px;
  }
  .footer-address_title, .fotter-reserve_title {
    margin-bottom: 56px;
    font-size: 2.8rem;
  }
  .footer-wrapper01 {
    margin: -45px 0 0;
    padding-right: 22%;
  }
  .footer-wrapper02 {
    margin-top: -45px;
    position: relative;
    right: 16%;
  }
  .fotter-reserve_title {
    margin-bottom: 54px;
  }
  .footer-tel, .footer-mail {
    font-size: 1.5rem;
  }
  .fotter-reserve_tel-number, .footer-reserve-mail_click {
    font-size: 2.0rem;
    display: block;
    margin-top: 12px;
  }
  .footer-wrapper03 {
    margin-top: -45px;
  }
  .footer_japanese_top, .footer_japanese_about, .footer_japanese_menu {
    margin: 10px 0 0 0;
    display: flex;
  }
  small {
    margin-top: 30px;
  }
}