@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;
}
 section{
overflow: hidden;	
}

/*-------------------------------  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
}
/*-------------------------------  top　-------------------------------  */
.swiper {
  z-index: 0;
}
.main-visual, .main-visual02{
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.swiper-slide-active .main-visual,
.swiper-slide-duplicate-active .main-visual,
.swiper-slide-prev .main-visual {
  animation: zoomdown 11s linear 0s normal both;
}

.swiper-slide-active .main-visual02,
.swiper-slide-duplicate-active .main-visual02,
.swiper-slide-prev .main-visual02 {
  animation: zoomdown 11s linear 0s normal both;
}
@keyframes zoomdown {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1); /* 縮小 */
  }
}
.section-top h2 {
  font-weight: 500;
  writing-mode: vertical-rl;
  text-shadow:
    7px 10px 18px #000;
  letter-spacing: 0.12em;
}
.section-top__text01, .section-top__text02 {
  font-size: 2.4rem;
  color: #f6f5f0;
}
.section-top__text01 {
  position: absolute;
  top: 36%;
  right: 40%;
}
.section-top__text02 {
  position: absolute;
  top: 36%;
  right: 52%;
}
@media(min-width: 768px) {
  .section-top__text01, .section-top__text02 {
    font-size: 2.7rem;
  }
  .section-top__text01 {
    right: 46%;
  }
}
@media(min-width: 968px) {
  .section-top {
    position: relative; /*足した部分*/
  }
  .section-top__text01 {
    top: 50%;
    right: 50%;
    transform: translate(131%, -80%);
  }
  .section-top__text02 {
    top: 50%;
    right: 50%;
    transform: translate(-49%, -55%);
  }
}
@media(min-width:1040px) {
  .section-top {
    margin: 0 auto;
    overflow-y: hidden;
  }
  .section-top__text01 {
    transform: translate(144%, -94%);
    max-height: 864px;
  }
  .section-top__text02 {
    transform: translate(-56%, -63%);
    max-height: 864px;
  }
}
/*-------------------------------  reserve-button　-------------------------------  */
.reserve_fishbutton {
  display: none;
  margin-left: auto;
  padding-top: 8px;
  padding-right: 5px;
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 100;
  width: 108px;
  height: auto;
}
.reserve_fishbutton.invert {
  animation: fuwafuwa_2 5s ease 1.4s infinite;
}
@keyframes fuwafuwa_2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -15%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media(min-width: 768px) {
  .reserve_fishbutton {
    width: 125px;
    height: auto;
  }
}
@media(min-width: 1440px) {
  .reserve_fishbutton {
    right: 20px;
  }
}
/*-------------------------------  concept　-------------------------------  */
/*--------------  title　-------------  */
.section-concep_title {
  text-align: left;
}
.section-concep_title_circle {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  color: #333;
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.01em;
  margin-left: 24px;
  margin-top: 45px;
  margin-bottom: 50px;
}
.section-concept h2 {
  margin: 0 auto;
  padding-top: 14px;
  font-weight: 500;
}
.section-concept_japanese {
  font-size: 1.6rem;
  font-weight: 500;
  color: #a0272e;
  line-height: 2.4em;
}
@media(min-width: 768px) {
  .section-concep_title_circle {
    width: 276px;
    height: 267px;
    font-size: 4.5rem;
    text-align: center;
    letter-spacing: 0.01em;
    margin: 40px auto 60px;
  }
  .section-concept h2 {
    margin: 0 auto;
    padding-top: 26px;
  }
  .section-concept_japanese {
    font-size: 2.1rem;
  }
}
/*--------------  concept01　-------------  */
@media (max-width: 374px) {
  .all_menu {
   width:100%;	  
  }
}
.section-concept {
  position: relative;
}
.section-concept_privateroom::before {
  content: url("../image/mobile/top/wave03.png");
  position: absolute;
  right: 0;
  top: 156px;
}
.section-concept_privateroom.invert::before {
  animation: fadeIn 1s ease 1s 1 normal backwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-concept_englishtitle_01 {
  display: block;
  margin-left: 46px;
  font-size: 7.2rem;
  color: #e0d9cd;
  text-align: left;
  line-height: 0.85;
  letter-spacing: 0.02em;
  font-family: 'Shippori Mincho', serif;
  font-weight: normal;
  position: absolute;
  z-index: 1;
  top: 211px;
}
.section-concept_englishtitle__p {
  color: #b7b1a7;
}
.all_menu {
  display: block;
  margin-left: auto;
  margin-top: 150px;
  top: 126px;
  right: 0;
  border-radius: 7px 0 0 7px;
  z-index: 1;
	width: none;
}
.section-concept_privateroom_japanesetitle {
  margin: 65px 13% 36px;
  text-align: left;
  font-size: 2.1rem;
  line-height: 1.6em;
  letter-spacing: 0.01em;
  font-weight: 600;
}
.section-concept_sentence_01 {
  text-align: left;
  font-size: 1.6rem;
  margin: 0 13% 190px;
  line-height: 1.9em;
  letter-spacing: 0.01em;
}
@media(min-width: 768px) {
  .section-concept {
    max-width: 1040px;
    margin: 0 auto;
  }
  .section-concept_privateroom::before {
    top: 13%;
  }
  .all_menu {
    margin-top: 121px;
    margin-bottom: 250px;
    top: 126px;
    max-width: 326px;
    width: 100%;
    height: auto;
  }
  .privateroom_wrraper {
    float: right;
  }
  .section-concept_englishtitle_01 {
    top: 16%;
    left: 38px;
  }
  .section-concept_privateroom_japanesetitle {
    margin: 0 13% 36px;
  }
  .section-concept_sentence_01 {
    margin: 0 0 0 12%;
    padding-right: 52%;
  }
  .section-concept_privateroom_text {
    padding-top: 27%;
  }
}
@media(min-width:968px) {
  .section-concept {
    max-width: none;
    margin: none;
    position: none;
    overflow: hidden;
  }
  .section-concept_privateroom {
    margin: 0 auto;
    max-width: 1040px;
    position: relative;
  }
  .all_menu {
    max-width: 454px;
    margin-top: 77px;
    position: relative;
    z-index: 1
  }
  .section-concept_sentence_01 {
    margin: 0 0 0 13%;
  }
  .section-concept_privateroom::before {
    content: url("../image/pc/top/wave03.png");
    position: absolute;
    right: 0%;
    top: 1%;
    z-index: 0;
  }
  .section-concept_englishtitle_01 {
    font-size: 13.7rem;
    left: -2%;
    top: 5%;
  }
  .section-concept_privateroom_text {
    padding-top: 33%;
  }
  .section-concept_privateroom_japanesetitle {
    margin: 0 9% 36px;
  }
  .section-concept_sentence_01 {
    margin: 0 9% 0;
    padding-right: 49%;
  }
}
@media(min-width:1040px) {
  .section-concept_privateroom::before {
    content: url("../image/pc/top/wave01.png");
    right: -7%;
    top: -12%;
  }
  .all_menu {
    max-width: 454px;
    margin-top: -3px;
    margin-bottom: 416px;
    position: relative;
    z-index: 1
  }
}
/*--------------  concept02　-------------  */
.section-concept_freshseafood::before {
  content: url("../image/mobile/top/wave04.png");
  position: absolute;
  left: 0px;
  top: 52%;
	display: none;
}
.section-concept_freshseafood.invert::before {
  animation: fadeIn02 1s ease 1s 1 normal backwards;
	display: block;
}
@keyframes fadeIn02 {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-concept_englishtitle_02 {
  display: block;
  position: absolute;
  right: 0;
  margin-right: 24px;
  font-size: 7.2rem;
  line-height: 0.85;
  letter-spacing: 0.02em;
  top: 53%;
  text-align: right;
  z-index: 1;
  font-family: 'Shippori Mincho', serif;
  font-weight: normal;
  color: #e0d9cd;
}
.section-concept_englishtitle__f {
  color: #b7b1a7;
}
.view {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
.section-concept_freshseafood_japanesetitle {
  margin: 50px auto;
  text-align: left;
  font-size: 2.1rem;
  line-height: 1.5em;
  letter-spacing: 0.01em;
  display: inline-block;
  font-weight: 600;
}
.section-concept_fish_cut {
  padding: 0 13%;
}
.fish_cut {
  border-radius: 7px;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 439px;
}
.section-concept_sentence_02 {
  text-align: left;
  font-size: 1.6rem;
  margin: 35px 12.8%;
  line-height: 1.9em;
  letter-spacing: 0.01em;
}
/*---------------------------------  スマホ用の動き　-----------------------------------------  */
.view_fade[data-aos] {
  transition-delay: .2s;
}
.section-concept_freshseafood_japanesetitle_fade[data-aos] {
  transition-delay: .3s;
}
.section-concept_fish_cut[data-aos] {
  transition-delay: .3s;
}
.section-concept_sentence_02_fade[data-aos] {
  transition-delay: .1s;
}
/*---------------------------------  スマホ用の動き　-----------------------------------------  */
@media (min-width: 425px) {
  .section-concept_freshseafood::before {
    content: url("../image/mobile/top/wave04.png");
    position: absolute;
    top: 51%;
  }
  .section-concept_englishtitle_02 {
    position: absolute;
    top: 52%;
  }
}
@media (min-width: 576px) {
  .section-concept_freshseafood::before {
    content: url("../image/mobile/top/wave04.png");
    position: absolute;
    left: 0px;
    top: 47%;
  }
  .section-concept_englishtitle_02 {
    position: absolute;
    top: 46%;
  }
}
@media (min-width: 768px) {
  .view {
    width: 70%;
    max-width: 664px;
    height: auto;
    border-radius: 7px;
  }
  .section-concept_freshseafood::before {
    content: url("../image/mobile/top/wave04.png");
    position: absolute;
    top: 44%;
  }
  .section-concept_englishtitle_02 {
    position: absolute;
    top: 42%;
    left: 2%;
  }
  .section-concept_sentence_02 {
    margin: 35px 0 0;
    padding: 0 21% 0;
  }
}
@media(min-width: 968px) {
  .section-concept_freshseafood {
    max-width: 100%;
    margin: 0 auto;
  }
  .section-concept_freshseafood::before {
    content: url("../image/pc/top/wave02.png");
    position: absolute;
    left: -74px;
    top: -24%;
  }
  .section-concept_freshseafood {
    margin: 0 auto;
    max-width: 1040px;
    position: relative;
  }
  .section-concept_englishtitle_02 {
    font-size: 13.7rem;
    top: -29%;
  }
  .section-concept_privateroom_japanesetitle, .section-concept_freshseafood_japanesetitle {
    font-size: 2.7rem;
    letter-spacing: 0.015em;
    line-height: 1.6em;
  }
  .bbb {
    margin-top: 50%;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
  }
  .view {
    width: 100%;
    max-width: 664px;
    height: auto;
    border-radius: 7px;
    position: relative;
    z-index: 1
  }
  .ccc {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    margin-top: -75px;
  }
  .section-concept_fish_cut {
    padding: 0;
  }
  .fish_cut {
    width: 439px;
    height: auto;
  }
  .section-concept_sentence_02 {
    margin: 0;
    padding: 155px 13% 0;
  }
  /*---------------------------------  タブレット、PC　-----------------------------------------  */
  .view_fade[data-aos] {
    transition-delay: .3s;
  }
  .section-concept_freshseafood_japanesetitle_fade[data-aos] {
    transition-delay: .3s;
  }
  .section-concept_fish_cut[data-aos] {
    transition-delay: .5s;
  }
  .section-concept_sentence_02_fade[data-aos] {
    transition-delay: .7s;
  }
  /*---------------------------------  タブレット、PC　-----------------------------------------  */
}
@media(min-width:1040px) {
  .section-concept_freshseafood {
    max-width: 1040px;
    margin: 0 auto;
  }
  .section-concept_freshseafood::before {
    content: url("../image/pc/top/wave02.png");
    position: absolute;
    left: -74px;
    top: 5-24%;
  }
  .section-concept_englishtitle_02 {
    font-size: 13.7rem;
    top: -30%;
  }
  .bbb {
    width: 1040px;
  }
  .ccc {
    width: 1040px;
  }
  .section-concept_fish_cut {
    padding: 0;
  }
  .fish_cut {
    width: 439px;
    height: auto;
  }
  .section-concept_sentence_02 {
    margin: 0;
    padding: 155px 13% 0;
  }
}
/*--------------  button　-------------  */
.ciecle_button_01 {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  border: 1px solid #a1272e;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  text-align: center;
  margin: 0 auto 48px;
  padding: 17px;
}
.ciecle_button_01:hover {
  background: #a1272e;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.ciecle_button_text {
  /*line-height: 120px;*/
  text-align: center;
  font-family: 'Shippori Mincho B1', serif;
  color: #a1272e;
  letter-spacing: 0.03em;
  font-size: 1.5rem;
  text-decoration: none;
}
.ciecle_button_text:hover {
  color: #f8f6f5;
  text-decoration: none;
}
#about_button {
  text-decoration: none;
}
@media(min-width:768px) {
  .ciecle_button_01 {
    width: 160px;
    height: 160px;
    padding: 17px;
    margin-top: 7%;
  }
  .ciecle_button_text {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    padding: 16px;
  }
}
/*-------------------------------  course　-------------------------------  */
.section-course {
  background: linear-gradient(180deg, rgb(248, 246, 245, 1), rgb(224, 217, 205, 0)), url("../image/mobile/top/mathu02.png"), url("../image/mobile/top/washi02.jpg");
  padding: 25% 0 29%;
}
.section-course-picture{
  position: relative;
}
.swiper-button-next:after,.swiper-button-prev:after{
  display: none;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom:var(--swiper-pagination-bottom,-50px);
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
   margin:0 6px var(--swiper-pagination-bullet-horizontal-gap,0px);
}
:root {
   --swiper-theme-color: #a1272e;
}
@media(min-width: 768px) {
  /*.slick-slide {
    padding: 0 4%;
  }*/
  .section-course {
    padding-bottom: 12%;
    padding-top: 18%;
  }
  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 9px var(--swiper-pagination-bullet-horizontal-gap,0px);
}
}
@media(min-width: 968px) {
  .slick-slide {
    padding: 0%;
  }
  .section-course {
    background: linear-gradient(180deg, rgb(248, 246, 245, 1), rgb(224, 217, 205, 0)), url("../image/pc/top/mathu03.png"), url("../image/pc/top/washi02.jpg");
    padding-top: 15%;
  }
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom:var(--swiper-pagination-bottom,-65px);
}
  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin:0px 14px var(--swiper-pagination-bullet-horizontal-gap,4px);
}
  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,12px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,12px));
  }
}
  @media(min-width: 1025px) {
      .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom:var(--swiper-pagination-bottom,-80px);
}
}
/*--------------  course01　-------------  */
.course_visual {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin: 0 auto;
  padding: 0 12%;
}
@media(min-width: 768px) {
  .course_visual {
    width: 100%;
    height: auto;
    border-radius: 50%;
    padding: 0 15%;
  }
}
@media(min-width: 968px) {
  .course_visual {
    width: 100%;
    height: auto;
    border-radius: 50%;
    max-width: 646px;
    margin: 0 auto;
    padding: 0;
  }
}
/*--------------  course02　-------------  */
.beef {
  width: 100%;
  height: auto;
  border-radius: 50%;
  padding: 0 12%;
}
@media(min-width: 768px) {
  .beef {
    width: 100%;
    height: auto;
    border-radius: 50%;
    padding: 0 15%;
  }
}
@media(min-width: 968px) {
  .beef {
    width: 100%;
    border-radius: 50%;
    max-width: 646px;
    margin: 0 auto;
    padding: 0;
  }
}
/*--------------  course03　-------------  */
.soba {
  width: 100%;
  height: auto;
  border-radius: 50%;
  padding: 0 12%;
}
@media(min-width: 768px) {
  .soba {
    width: 100%;
    border-radius: 50%;
    padding: 0 15%;
  }
}
@media(min-width: 968px) {
  .soba {
    width: 100%;
    border-radius: 50%;
    max-width: 646px;
    margin: 0 auto;
    padding: 0;
  }
}
/*--------------  text　-------------  */
.section-course h2 {
  font-size: 2.8rem;
  display: block;
  margin: 80px auto 32px;
}
.section-course_japanese {
  font-size: 1.6rem;
  color: #a1272e;
  display: block;
  margin-top: 12px;
}
.section-course_sentence {
  text-align: left;
  font-size: 1.6rem;
  margin: 0 12% 32px;
  line-height: 1.9em;
  letter-spacing: 0.01em;
}
.u-pc-only {
  display: none;
}
#menu_button {
  text-decoration: none;
}
.ciecle_button_02 {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  border: 1px solid #a1272e;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  text-align: center;
  margin: 0 auto;
  padding: 17px;
}
.ciecle_button_02:hover {
  background: #a1272e;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
@media(min-width:768px) {
  .ciecle_button_02 {
    width: 160px;
    height: 160px;
    padding: 17px;
    margin-top: 4%;
  }
}
@media(min-width:968px) {
  .section-course h2 {
    font-size: 4.5rem;
    margin: 9% auto 32px;
  }
  .u-pc-only {
    display: block;
  }
  .section-course_japanese {
    font-size: 2.1rem;
    margin-top: 32px;
  }
  .section-course_sentence_wrapper {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  .section-course_sentence {
    text-align: left;
    display: inline-block;
    margin: 0;
  }
}
/*-------------------------------  floor guide　-------------------------------  */
.section-floorguide {
  padding: 56px 6.4% 55px;
  background: linear-gradient(180deg, rgb(224, 217, 205, 0), rgb(248, 245, 240, 1), rgb(224, 217, 205, 0)), url("../image/mobile/top/washi02.jpg");
  position: relative;
}
.section-floorguide h2 {
  font-size: 2.8rem;
  display: block;
  margin: 0 auto 56px;
  font-weight: 500;
}
.section-floorguide_japanese {
  font-size: 1.6rem;
  color: #a1272e;
  display: block;
  margin-top: 12px;
}
@media(min-width:768px) {
  .section-floorguide {
    padding: 56px 6.4% 150px;
  }
  .section-floorguide h2 {
    font-size: 4.5rem;
    letter-spacing: 0.01em;
    margin: 0 auto 80px;
    padding-left: 80px;
    text-align: left;
    position: relative;
  }
  .section-floorguide_japanese {
    font-size: 2.1rem;
    margin-top: 32px;
  }
}
@media(min-width:968px) {
  .section-floorguide {
    padding:0 6.4% 0px;
    background: linear-gradient(180deg, rgb(224, 217, 205, 0), rgb(248, 245, 240, 1), rgb(224, 217, 205, 0)), url("../image/pc/top/washi02.jpg");
    position: relative;
  }
  .section-floorguide_wrapper{
     padding-top: 104px
  }
}
/*-------------- first-floor　-------------  */
.section-floorguide_first::before {
  content: url("../image/mobile/top/wave03.png");
  position: absolute;
  top: 40%;
  right: 0px;
  /*display: none;*/
}
.section-floorguide_first.invert::before {
  animation: fadeIn03 1s ease 1s 1 normal backwards;
  /*display: block;*/
}
@keyframes fadeIn03 {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.first-floor {
  width: 100%;
  max-width: 568px;
  height: auto;
  border-radius: 7px;
  display: block;
  margin-bottom: 56px;
}
.section-floorguide_first_flag {
  padding: 0 17%;
}
.flag {
  width: 100%;
  max-width: 432px;
  height: auto;
  border-radius: 7px;
  display: block;
}
.section-floorguide_title_01, .section-floorguide_title_02 {
  background-repeat: no-repeat;
  font-size: 2.4rem;
  margin: 48px 6.4% 60px;
  text-align: left;
  line-height: 0;
}
.section-floorguide_title__japanese {
  font-size: 1.6rem;
  color: #a0272e;
  display: block;
  margin-bottom: 32px;
}
.section-floorguide_sentence_01, .section-floorguide_sentence_02 {
  text-align: left;
  font-size: 1.6rem;
  margin: 0 7.3% 32px;
  line-height: 1.9em;
  letter-spacing: 0.01em;
}
/*---------------------------------  スマホ用の動き　-----------------------------------------  */
.first-floor[data-aos] {
  transition-delay: .2s;
}
.section-floorguide_first_flag[data-aos] {
  transition-delay: .2s;
}
.section-floorguide_title_01[data-aos] {
  transition-delay: .3s;
}
.section-floorguide_sentence_01[data-aos] {
  transition-delay: .4s;
}
/*---------------------------------  スマホ用の動き　-----------------------------------------  */
@media (min-width: 425px) {
  .section-floorguide_first::before {
    top: 42%;
  }
}
@media(min-width:768px) {
  .section-floorguide_first::before {
    display: none;
  }
  /*.section-floorguide_first.invert::before{
		 display: none;
	}*/
  .section-floorguide_wrapper::before {
    content: url("../image/mobile/top/wave01.png");
    position: absolute;
    top: 6%;
    right: 7%;
    /* display: none;*/
  }
  .section-floorguide {
    margin: 0 auto;
  }
  .section-floorguide_wrapper {
    margin: 0 auto;
    max-width: 1440px;
  }
  .section-floorguide_first_wrapper {
    width: 100%;
  }
  .first-floor {
    width: 100%;
    max-width: 327px;
    height: auto;
    margin-bottom: 56px;
    position: relative;
  }
  .section-floorguide_first_flag {
    padding: 0;
  }
  .flag {
    max-width: 266px;
    height: auto;
    margin: -134px 298px 0;
  }
  .section-floorguide_first_text {
    position: relative;
    left: 54%;
    bottom: 553px;
    width: 308px;
  }
  .section-floorguide_title_01, .section-floorguide_title_02 {
    margin: 48px 0 60px;
    font-size: 2.7rem;
  }
  .section-floorguide_sentence_01, .section-floorguide_sentence_02 {
    margin: 0;
    width: 308px;
  }
  /*------------------------------ タブレット、PC用の動き　-----------------------------------------  */
  .first-floor[data-aos] {
    transition-delay: .2s;
  }
  .section-floorguide_first_flag[data-aos] {
    transition-delay: .1s;
  }
  .section-floorguide_first_text[data-aos] {
    transition-delay: .1s;
  }
}
/*---------------------------------  タブレット、PC用の動き　-----------------------------------------  */
.section-floorguide_wrapper.invert::before {
  animation: fadeIn05 1s ease 1s 1 normal backwards;
  /*display: block;*/
}
@keyframes fadeIn05 {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media(min-width:968px) {
  .section-floorguide_wrapper::before {
    display: none; /*PC用の波、最初は非表示*/
  }
  .section-floorguide h2::after {
    content: url("../image/pc/top/wave01.png");
    position: absolute;
    top: 104%;
    right: -7%;
	  display: none;
  }
  .section-floorguide_wrapper {
    margin: 0 auto;
    max-width: 1040px;
  }
  .section-floorguide_first_wrapper {
    width: 100%;
  }
  .first-floor {
    width: 100%;
    max-width: 539px;
    height: auto;
    margin-bottom: 56px;
    position: relative;
  }
  .section-floorguide_first_flag {
    padding: 0;
  }
  .flag {
    max-width: 363px;
    height: auto;
    margin: -164px 502px;
  }
  .section-floorguide_first_text {
    display: inline-block;
    position: relative;
    left: 31%;
    bottom: 539px;
    width: 308px;
  }
  .section-floorguide_title_01, .section-floorguide_title_02 {
    font-size: 2.7rem;
  }
  .section-floorguide_sentence {
    margin: 0;
    width: 308px;
  }
  .section-floorguide h2.invert::after {
    animation: fadeIn06 1s ease 1s 1 normal backwards;
	  display: block;/*PC用の波、invertで表示*/
  }
}
@keyframes fadeIn06 {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media(min-width:1040px) {
  .section-floorguide h2::after {
    content: url("../image/pc/top/wave01.png");
    position: absolute;
    right: -7%;
    top: 80%;
  }
  .section-floorguide_wrapper {
    margin: 0 auto;
    max-width: 1040px;
  }
  .first-floor {
    width: 100%;
    max-width: 568px;
    height: auto;
    margin-bottom: 56px;
    position: relative;
  }
  .section-floorguide_first_flag {
    padding: 0;
  }
  .flag {
    max-width: 439px;
    height: auto;
    margin: -164px 0px 0 42%;
    display: inline-block;
  }
  .section-floorguide_first_text {
    display: inline-block;
    left: 30%;
    position: relative;
    bottom: 790px;
    width: 308px;
  }
  .section-floorguide_title_01, .section-floorguide_title_02 {
    margin: 48px 0 60px;
    font-size: 2.7rem;
  }
  .section-floorguide_sentence_01, .section-floorguide_sentence_02 {
    margin: 0;
    width: 308px;
  }
}
/*-------------- second-floor　-------------  */
@media (max-width: 374px) {
  .section-floorguide_title::before {
    overflow-x: hidden;
  }
}
.section-floorguide_title_02:before {
  content: url("../image/mobile/top/wave03.png");
  position: absolute;
  bottom: -218%;
    right: -45px;
}
.section-floorguide_title_02.invert::before {
  animation: fadeIn04 1s ease 1s 1 normal backwards;
}
@keyframes fadeIn04 {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.second-floor {
  width: 100%;
  max-width: 654px;
  height: auto;
  border-radius: 7px;
  display: block;
  margin-bottom: 56px;
}
.section-floorguide_second_frog {
  padding: 0 22%;
}
.frog {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 7px;
  display: block;
}
/*---------------------------------  スマホ用の動き　-----------------------------------------  */
.second-floor_fade[data-aos] {
  transition-delay: .2s;
}
.section-floorguide_second_frog[data-aos] {
  transition-delay: .2s;
}
.section-floorguide_title_02[data-aos] {
  transition-delay: .3s;
}
.section-floorguide_sentence_02[data-aos] {
  transition-delay: .4s;
}
/*---------------------------------  スマホ用の動き　-----------------------------------------  */
@media (min-width: 425px) {
  .section-floorguide_second::before {
    bottom: 10%;
  }
}
@media(min-width:768px) {
	
	.section-floorguide_title_02:before {
		display: none;
	}
  .section-floorguide_second::before {
    content: url(../image/mobile/top/wave02.png);
    position: absolute;
    top: -278px;
    left: -10px
  }
  .section-floorguide_second {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .second-floor {
    width: 60%;
    max-width: 654px;
    height: auto;
    border-radius: 7px;
    display: inline;
    margin-bottom: 0;
    float: right;
    margin-top: -210px;
    z-index: 1;
    position: relative;
  }
  .section-floorguide_second_frog {
    padding: 0;
  }
  .frog {
    width: 100%;
    max-width: 261px;
    height: auto;
    border-radius: 7px;
    display: inline-block;
    margin: -15% 50% 0 2%;
  }
  .section-floorguide_title_02 {
    margin: 48px 0 60px;
    font-size: 2.7rem;
    position: absolute;
    top: -64%;
    left: 11%;
  }
  .section-floorguide_sentence_02 {
    width: 326px;
    position: absolute;
    top: 50%;
    right: 1%;
  }
  /*---------------------------------  タブレット、PC用の動き　-----------------------------------------  */
  .section-floorguide_title_02[data-aos] {
    transition-delay: .1s;
  }
  .second-floor_fade[data-aos] {
    transition-delay: .2s;
  }
  .section-floorguide_second_frog[data-aos] {
    transition-delay: .6s;
  }
  .section-floorguide_sentence_02[data-aos] {
    transition-delay: .5s;
  }
}
/*---------------------------------  タブレット、PC用の動き　-----------------------------------------  */
.section-floorguide_second.invert::before {
  animation: fadeIn07 1s ease 1s 1 normal backwards;
  display: block;/*PC用の波、表示*/
}
@keyframes fadeIn07 {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media(min-width:968px) {
  .section-floorguide_second::before {
    content: url(../image/pc/top/wave02.png);
    position: absolute;
    top: -19%;
    left:-8%;
	   display: none; /*PC用の波、最初は非表示*/
  }
  .second-floor {
    width: 70%;
    max-width: 654px;
    height: auto;
    border-radius: 7px;
    display: inline;
    margin-bottom: 0;
    float: right;
    margin-top: 0;
    z-index: 1;
    position: relative;
  }
  .section-floorguide_second_frog {
    padding: 0;
  }
  .frog {
    width: 40%;
    max-width: 360px;
    height: auto;
    border-radius: 7px;
    display: inline-block;
    margin: -15% 44% 0 -18%;
  }
  .section-floorguide_title_02 {
    margin: 48px 0 60px;
    font-size: 2.7rem;
    position: absolute;
    top: 18%;
    left: 5%;
  }
  .section-floorguide_sentence_02 {
    width: 446px;
    position: relative;
    bottom: 162px;
    left: 21%;
    display: inline-block;
  }
}
@media(min-width:1040px) {
  .section-floorguide_second::before {
    content: url(../image/pc/top/wave02.png);
    position: absolute;
    top: -33%;
    left: -5%;
  }
  .section-floorguide_second {
    width: 100%;
    margin: 0 auto;
  }
  .second-floor {
    width: 100%;
    max-width: 654px;
    height: auto;
    border-radius: 7px;
    display: inline;
    margin-bottom: 0;
    float: right;
    margin-top: -130px;
    z-index: 1;
    position: relative;
  }
  .section-floorguide_second_frog {
    padding: 0;
  }
  .frog {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 7px;
    display: inline-block;
    margin: -13% 26% 0 -18%;
  }
  .section-floorguide_title_02 {
    font-size: 2.7rem;
    position: absolute;
    left: 15%;
    top: 2%;
  }
  .section-floorguide_sentence_02 {
    width: 446px;
    position: relative;
    left: 21%;
    display: inline-block;
  }
}
/*-------------------------------  information　-------------------------------  */
.section-information {
  padding: 96px 0;
  background-image: url("../image/mobile/top/ume.png"), url("../image/mobile/top/ume.png");
  background-position: top, bottom;
  background-repeat: repeat-x, repeat-x;
  background-size: contain, contain;
}
.section-information_text {
  padding: 0 13%;
}
.Access {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 48px;
  line-height: 1;
  text-align: left;
}
.section-information_japanese {
  font-size: 1.6rem;
  color: #a1272e;
  display: block;
  margin-top: 0px;
}
.section-information_access__title, .section-information_access__title_02 {
  text-align: left;
  font-size: 2.0rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: normal;
  margin-bottom: 16px;
}
.section-information_googlemaps, .section-information_instagram {
  text-align: left;
  font-size: 2.0rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: normal;
  margin: 0 0 32px 40%;
  display: flex;
  justify-content: flex-end;
}
.section-information_instagram {
  margin-bottom: 32px;
}
.googlemaps, .instagram {
  padding: 0;
  margin-top: 6px;
  margin-right: 14px;
  color: #a1272e;
  font-size: 1.6rem;
  font-family: 'Shippori Mincho B1', serif;
  text-decoration: none;
  display: inline-block;
}
.section-information_instagram__text {
  text-align: left;
  margin-bottom: 8px;
  line-height: 1.6em;
}
.information_picture {
  display: block;
  margin-left: auto;
  margin-right: 0;
  border-radius: 7px 0 0 7px;
}
.section-information_access__contents {
  text-align: left;
  margin-bottom: 56px;
  line-height: 1.6em;
}
.section-information_access__contents_02 {
  text-align: left;
  margin-bottom: 16px;
  line-height: 1.6em;
}
.information_button {
  background: url("../image/mobile/top/button/button.svg")no-repeat;
  width: 36px;
  height: 36px;
  float:right;
}
.information_button:hover {
  background: url("../image/mobile/top/button/button_hover.svg")no-repeat;
  width: 36px;
  height: 36px;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
@media(min-width: 768px) {
  .section-information {
    padding: 15% 0 20%;
    background-image: url("../image/pc/top/ume.png"), url("../image/pc/top/ume.png");
  }
  .section-information_wrapper {
    display: flex;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto;
  }
  .section-information_text {
    width: 28%;
  }
  .section-information_text {
    padding: 0;
  }
  .information_picture {
    max-width: 469px;
    width: 80%;
    height: auto;
    border-radius: 7px;
    position: relative;
    top: 35%;
  }
  .Access {
    font-size: 4.5rem;
    letter-spacing: 0.01em;
    margin-bottom: 96px;
  }
  .section-information_japanese {
    font-size: 2.0rem;
    margin-top: 10px;
  }
  .section-information_access__title {
    margin-bottom: 24px;
  }
  .section-information_access__title_02 {
    margin-bottom: 8px;
  }
  .section-information_access__contents_02 {
    margin-bottom: 32px;
  }
  .section-information_googlemaps, .section-information_instagram {
    margin: 0 0 50px 0;
    justify-content: start;
  }
  .section-information_instagram__text {
    margin-bottom: 32px;
  }
  .br-sp {
    display: none;
  }
}
@media(min-width: 968px) {
  .information_picture {
    width: 85%;
    top: 32%;
  }
}
@media(min-width: 1040px) {
  .information_picture {
    width: 100%;
    top: 30%;
  }
  .information_picture {
    width: 100%;
    top: 30%;
  }
  .section-information_googlemaps, .section-information_instagram {
    margin: 0 0 80px 0;
    justify-content: start;
  }
  .section-information_instagram__text {
    margin-bottom: 48px;
  }
}
/*-------------------------------  reserve　-------------------------------  */
.section-reserve {
  background-image: url("../image/mobile/top/mathu02.png"), url("../image/mobile/top/washi02.jpg");
  padding: 100px 6.4%;
}
.reserve {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 50px;
  line-height: 0;
  text-align: center;
}
.section-reserve_japanese {
  font-size: 1.6rem;
  color: #a1272e;
  display: block;
  margin-top: 36px;
}
.section-reserve_text {
  padding: 32px 0 0 7.3%;
  text-align: left;
}
.section-reserve_text01, .section-reserve_text02, .section-reserve_text03 {
  font-size: 2.0rem;
  text-align: left;
  margin-bottom: 8px;
}
.section-reserve__businesshours, .section-reserve__regularholiday {
  margin-bottom: 32px;
}
.section-reserve h4 {
  margin: 16px 0 3px;
  font-weight: 500;
}
.section-reserve__tel, .section-reserve__form {
  font-size: 2.0rem;
  font-family: 'Shippori Mincho B1', serif;
  color: #a1272e;
  margin-bottom: 16px;
}
.section-reserve__text_tel {
  padding-right: 11%;
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0.01em;
}
.section-reserve__form {
  margin-bottom: 0;
}
.section-reserve__form_link:visited {
  color: #a1272e;
}
.section-reserve__form_link:link {
  color: #a1272e;
}
.section-information_googlemaps_link, .section-information_instagram_link {
  text-decoration: none;
}
@media(min-width: 768px) {
  .section-reserve_text {
    padding: 32px 0 0 15.3%;
  }
}
@media all and (min-width: 968px) {
  .section-reserve {
    background-image: url("../image/pc/top/mathu03.png"), url("../image/pc/top/washi02.jpg");
    padding: 100px 0;
  }
  .section-reserve_text {
    width: 31%;
    padding: 10% 0 0 5%;
    position: relative;
    left: 3%;
  }
  .reserve-text {
    width: 903px;
    margin: 0 auto;
  }
  .reserve {
    font-size: 4.5rem;
    margin-bottom: 100px;
    line-height: 0;
    text-align: left;
  }
  .section-reserve_japanese {
    font-size: 2.0rem;
    margin: 0 0 0 16px;
    display: inline-block;
  }
  .section-reserve_text01, .section-reserve_text02 {
    margin-bottom: 10px;
  }
  .section-reserve__regularholiday {
    margin-bottom: 40px;
  }
  .section-reserve_text03 {
    margin-bottom: 32px;
  }
  .section-reserve h4 {
    margin: 16px 0 10px;
  }
}
/*-------------------------------  カレンダー　-------------------------------  */
.fc-daygrid-block-event .fc-event-time, .fc-daygrid-block-event .fc-event-title {
    font-size: 12px;
}
.calendar {
  position: relative;
  height: 640px;
  background-color: #f8f6f5;
	left: 0%;
}
@media (max-width: 374px) {
  .calendar {
    left:-5%;
  }
}
.googlecalendar_wrapper {
  min-width: 310px;
  max-width: 500px;
  margin: 2.0833% auto;
}
@media all and (min-width: 968px) {
  .section-reserve {
    margin: 0 auto;
  }
  .calendar {
    height: 666px;
  }
  .section-reserve_wrapper {
    display: flex;
    width: 903px;
    margin: 0 auto;
  }
  .googlecalendar_wrapper {
    max-width: 600px;
    width: 73%;
    margin: 0;
  }
}
/*-------------------------------  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;
  }
}