@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: #000;
  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: #000;
}
.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 {
 overflow: hidden;
}
.u-pc-only {
  display: none;
}
main h1 {
  position: relative;
  font-size: 3.0rem;
  font-family: 'Shippori Mincho', serif;
  text-align: left;
  letter-spacing: 0.01em;
  padding: 120px 0 80px 21%;
}
.japanese {
  display: block;
  font-size: 1.6rem;
  color: #a0272e;
  margin-top: 16px;
  position: relative;
}
.about_discription {
  text-align: left;
  font-size: 1.6rem;
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 0.01em;
  padding: 0 0 32px 21%;
  line-height: 1.9em;
  width: 360px;
  position: relative;
}
main h1::before {
  content: url("../image/mobile/about/about_logo.png");
  position: absolute;
  top: -2%;
  left: 47%;
}
.about-visual_01 {
  display: block;
  width: 93%;
  height: auto;
  border-radius: 0 7px 7px 0;
  margin-bottom: 104px;
}
.about-visual_02 {
  display: block;
  width: 100%;
  max-width: 296px;
  height: auto;
  border-radius: 7px;
  margin: 0 auto 40px 6%;
}
.about_text_01, .about_text_02, .about_text_03 {
  text-align: left;
  margin: 0 6% 80px;
  line-height: 1.9em;
}
.about-visual_03 {
  display: block;
  width: 100%;
  max-width: 296px;
  height: auto;
  border-radius: 7px;
  margin: 0 auto 40px 6%;
}
.about-visual_wrapper {
  position: relative;
}
.about-visual_wrapper::before {
  content: url("../image/mobile/about/wave.png");
  position: absolute;
  top: -44%;
  left: 63%;
}
.about_text_02 {
  margin: 0 6% 56px;
}
.about_text_03 {
  margin: 0 6% 120px;
}
.about-visual_04 {
  display: block;
  width: 100%;
  max-width: 325px;
  height: auto;
  border-radius: 7px;
  margin: 0 6% 40px;
  position: relative;
}
.about-visual_wrapper_02 {
  position: relative;
}
.about-visual_wrapper_02::before {
  content: url("../image/mobile/about/wave02.png");
  position: absolute;
  top: -24%;
  left: -5%;
}
@media(min-width:425px) {
  .about-visual_02, .about-visual_03, .about-visual_04 {
    width: 80%;
    max-width: none;
  }
}
@media(min-width:768px) {
  .wrapper {
    max-width: 1040px;
    margin: 0 auto;
  }
  .u-pc-only {
    display: block;
  }
  .all {
    max-width: 1040px;
    margin: 0 auto;
  }
  main h1 {
    font-size: 4.5rem;
    padding: 192px 0 80px 7%;
  }
  .japanese {
    font-size: 2.1rem;
    margin-top: 24px;
  }
  .about_discription {
    font-size: 2.1rem;
    padding: 0 0 40px 7%;
    line-height: 1.7em;
    width: 570px;
  }
  main h1::before {
    content: url("../image/pc/about/about_logo.png");
    position: absolute;
    top: -14%;
    left: 47%;
  }
  .about-visual_01 {
    display: block;
    width: 100%;
    max-width: 1040px;
    height: auto;
    border-radius: 7px;
    margin-bottom: 152px;
    position: relative;
  }
  .about-visual_02 {
    max-width: 721px;
    height: auto;
    margin: 0 10% 80px auto;
    width: 60%;
  }
  .about_text_01, .about_text_02, .about_text_03 {
    text-align: left;
    line-height: 2.2em;
    letter-spacing: 0.02em;
  }
  .about_text_01 {
    margin: 0 7% 152px auto;
    width: 550px;
  }
  .about_text_02 {
    margin: 30px auto 192px 10%;
    width: 518px;
  }
  .about_text_03 {
    margin: 30px auto 192px 10%;
    width: 518px;
  }
  .about-visual_03 {
    max-width: 721px;
    margin: 0 auto 32px 10%;
    width: 65%;
  }
  .about-visual_wrapper::before {
    content: url("../image/pc/about/wave.png");
    position: absolute;
    top: -45%;
    left: 61%;
  }
  .about-visual_04 {
    max-width: 880px;
    margin: 0 auto 32px 10%;
    width: 65%;
  }
  .about-visual_wrapper_02::before {
    content: url("../image/pc/about/wave02.png");
    position: absolute;
    top: -47%;
    left: -5%;
  }
}
@media(min-width:968px) {
  .about-visual_wrapper::before {
    top: -27%;
    left: 74%;
  }
  .about-visual_wrapper_02::before {
    top: -19%;
    left: -5%;
  }
  .about-visual_02 {
    margin: 0 7% 80px auto;
    width: 100%;
  }
  .about_text_01, .about_text_02, .about_text_03 {
    margin: 0 7% 152px auto;
    width: 728px;
  }
  .about-visual_03 {
    margin: 0 auto 32px 7.7%;
    width: 100%;
  }
  .about_text_02 {
    margin: 0 auto 152px 7.7%;
  }
  .about-visual_04 {
    margin: 0 7.7% 32px;
    width: 100%;
  }
  .about_text_03 {
    margin: 0 7.7% 200px;
  }
}
/*-------------------------------  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;
  }
}