@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lemon&family=Noto+Sans+JP:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap");
:root {
  --main-color: #008ccf;
  --sub-color: #ff7f7f;
  --text-color: #555;
  --font-title: "Lemon", cursive;
  --font-text: "Noto Sans JP", sans-serif;
  --xl: 48px;
  --lg: 28px;
  --md: 18px;
  --sm: 14px;
  --ss: 12px;
  --index-base: -10;
  --index-header: 100;
  --index-modal: 200;
  --index-animation: 1000;
}

* {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--sm);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-break: keep-all;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  width: 1000px;
  height: auto;
  margin: 0 auto;
}

.inner {
  width: 800px;
  height: auto;
  margin: 0 auto;
}

h2 {
  color: var(--main-color);
  font-size: var(--xl);
  font-family: var(--font-title);
  text-align: center;
}

h3 {
  color: var(--sub-color);
  font-size: var(--lg);
  font-weight: bold;
}

h4 {
  color: var(--main-color);
  font-size: var(--lg);
  font-weight: 600;
  border-bottom: 2px dotted var(--main-color);
}

.memo {
  color: var(--main-color);
  font-family: var(--font-text);
  font-size: var(--sm);
  font-weight: 600;
  text-align: center;
  position: relative;
}

.text02 {
  padding-top: 100px;
}

.memo::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../images/ico/rudder.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 75px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: 8s linear infinite rotation;
          animation: 8s linear infinite rotation;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.fadein1 {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein2 {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
  -webkit-transition: all 1.6s;
  transition: all 1.6s;
}

.fadein3 {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
  -webkit-transition: all 2.4s;
  transition: all 2.4s;
}

.fadein1.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein2.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein3.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein1.left {
  -webkit-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
  -webkit-transition: all 2.6s;
  transition: all 2.6s;
}

.fadein1.left.scrollin {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein1.right {
  -webkit-transform: translate(60px, 0);
          transform: translate(60px, 0);
  -webkit-transition: all 2.6s;
  transition: all 2.6s;
}

.fadein1.right.scrollin {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.flowing_box {
  position: absolute;
  top: 100px;
  left: 30px;
  z-index: var(--index-animation);
}

.flowing {
  font-family: "Zen Kurenaido", sans-serif;
  letter-spacing: 4px;
  background-color: var(--main-color);
  margin: 0;
  width: 0;
  color: #fff;
  font-size: var(--md);
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 10px;
  padding: 0;
  -webkit-animation: flowing-anim 2s forwards ease-in-out;
          animation: flowing-anim 2s forwards ease-in-out;
}

.flowing:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.flowing:nth-child(2) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.flowing:nth-child(3) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes flowing-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes flowing-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.header {
  height: 120px;
  position: relative;
  z-index: var(--index-header);
}
.header h1 {
  text-align: center;
}
.header h1 img {
  width: 200px;
  background-color: #fff;
  border-radius: 50%;
}
.header .g_nav {
  position: absolute;
  top: 10px;
}
.header .g_nav .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header .g_nav .tel_text {
  color: var(--main-color);
  font-size: var(--ss);
  font-weight: 600;
  margin-right: 10px;
}
.header .g_nav .tel_number {
  color: var(--main-color);
  font-size: var(--md);
  font-weight: 600;
  margin-top: -8px;
}
.header .g_nav_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding-top: 20px;
}
.header .g_nav_inner ul {
  width: 500px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header .g_nav_inner ul li a {
  position: relative;
  color: var(--main-color);
  font-family: var(--font-title);
  font-size: var(--md);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .g_nav_inner ul li a:hover {
  color: white;
  text-shadow: 0 0 5px #83caee, 0 0 10px #83caee, 0 0 15px #83caee;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header .g_nav_inner ul li a:hover .description_top {
  opacity: 1;
}
.header .g_nav_inner ul li .description_top {
  position: absolute;
  left: 50%;
  bottom: 80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 8px;
  font-size: var(--ss);
  opacity: 0;
  -webkit-transition: all 1.8s;
  transition: all 1.8s;
  text-shadow: none;
  color: var(--main-color);
}
.header .g_nav_inner ul li .instagram {
  width: 22px;
  display: block;
  padding-top: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header .g_nav_inner ul li .instagram:hover {
  opacity: 0.7;
  -webkit-transform: translate(0, -3px);
          transform: translate(0, -3px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header .g_nav_inner .left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.header .g_nav_inner .left li {
  margin-right: 40px;
}
.header .g_nav_inner .right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header .g_nav_inner .right li {
  margin-left: 40px;
}

.main_visual {
  position: relative;
  /*========= waveレイアウトのためのCSS ===============*/
}
.main_visual .swiper {
  border-radius: 40px;
  width: 100%;
  height: 100%;
}
.main_visual .swiper img {
  width: 100%;
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.main_visual .swiper .swiper-slide-active .slide-img,
.main_visual .swiper .swiper-slide-duplicate-active .slide-img,
.main_visual .swiper .swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
}
.main_visual .swiper .slide-img img {
  display: block;
}
.main_visual #wave_wrapper {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  z-index: var(--index-animation);
  /*========= waveを描画するエリア設定 ===============*/
}
.main_visual #wave_wrapper canvas {
  width: 100%;
}
.main_visual .proviso01 {
  position: absolute;
  bottom: 70px;
  right: 30px;
  color: #fff;
  font-size: var(--ss);
  z-index: var(--index-animation);
}

.about {
  padding-top: 100px;
}
.about_box {
  padding-top: 100px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.about_box .left {
  width: 50vw;
}
.about_box .left img {
  width: 440px;
  border-radius: 4%;
  -webkit-filter: drop-shadow(6px 6px 6px var(--main-color));
          filter: drop-shadow(6px 6px 6px var(--main-color));
}
.about_box .right {
  width: 50vw;
}
.about svg {
  width: 100%;
}

.menu {
  background-color: #a8d6e7;
  padding-top: 50px;
}
.menu_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
}
.menu_box .left {
  width: 50vw;
  margin-right: 50px;
}
.menu_box .left .top, .menu_box .left .bottom {
  position: relative;
}
.menu_box .left .top .menu_text, .menu_box .left .bottom .menu_text {
  width: 60%;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--main-color);
  color: #fff;
  font-size: var(--ss);
  border-radius: 10px;
  padding: 2px 8px;
  z-index: var(--index-animation);
}
.menu_box .left .top img, .menu_box .left .bottom img {
  width: 350px;
  border-radius: 4%;
  -webkit-filter: drop-shadow(6px 6px 6px var(--main-color));
          filter: drop-shadow(6px 6px 6px var(--main-color));
  z-index: -10;
}
.menu_box .left .bottom {
  padding-top: 50px;
  margin-left: 50px;
}
.menu_box .right {
  width: 50vw;
  padding-top: 80px;
  position: relative;
}
.menu_box .right .menu_text {
  width: 60%;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--sub-color);
  color: #fff;
  font-size: var(--ss);
  border-radius: 10px;
  padding: 2px 8px;
  z-index: var(--index-animation);
}
.menu_box .right img {
  width: 500px;
  border-radius: 4%;
  -webkit-filter: drop-shadow(6px 6px 6px var(--sub-color));
          filter: drop-shadow(6px 6px 6px var(--sub-color));
  z-index: -10;
}
.menu_box .right .catch {
  color: #fff;
  font-family: "Zen Kurenaido", sans-serif;
  font-size: var(--md);
  font-weight: 600;
  letter-spacing: 4px;
  background-color: var(--sub-color);
  padding: 4px 8px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: 16px;
}
.menu .button_primary {
  width: 200px;
  height: 50px;
  background-color: var(--main-color);
  display: block;
  color: #fff;
  font-size: var(--md);
  font-weight: 600;
  text-align: center;
  border-radius: 25px;
  line-height: 44px;
  border: 2px solid var(--main-color);
  margin: 50px auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.menu .button_primary::after {
  content: "";
  display: inline-block;
  background: url(../images/ico/arrow_white.svg);
  background-size: cover;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  vertical-align: sub;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.menu .button_primary:hover {
  color: var(--main-color);
  background-color: #fff;
  border: 2px solid var(--main-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.menu .button_primary:hover::after {
  content: "";
  display: inline-block;
  background: url(../images/ico/arrow_blue.svg);
  background-size: cover;
  width: 22px;
  height: 22px;
  margin-left: 16px;
  vertical-align: sub;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.menu .button_primary {
  margin-bottom: 100px;
}
.menu svg {
  width: 100%;
}

.online {
  padding-top: 50px;
}
.online_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
}
.online_box .left {
  width: 50vw;
}
.online_box .left .price {
  font-size: var(--md);
  font-weight: 600px;
  padding-top: 25px;
}
.online_box .left .attension {
  font-size: var(--ss);
}
.online_box .left .content, .online_box .left .season {
  padding-top: 25px;
}
.online_box .left .button_contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  height: 80px;
  background-color: var(--sub-color);
  color: #fff;
  font-size: var(--md);
  font-weight: 600;
  text-align: left;
  border-radius: 10px;
  margin: 50px auto;
  padding: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.online_box .left .button_contact .tel_image {
  padding: 6px;
  width: 64px;
  height: auto;
}
.online_box .left .button_contact .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.6;
}
.online_box .left .button_contact .tel .order {
  font-size: var(--sm);
}
.online_box .left .button_contact .tel .number {
  font-size: var(--lg);
}
.online_box .left .button_contact:hover {
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.online_box .right {
  width: 50vw;
}
.online_box .right img {
  width: 500px;
  border-radius: 4%;
  -webkit-filter: drop-shadow(6px 6px 6px var(--sub-color));
          filter: drop-shadow(6px 6px 6px var(--sub-color));
  z-index: -10;
}
.online .button_primary {
  width: 200px;
  height: 50px;
  background-color: var(--main-color);
  display: block;
  color: #fff;
  font-size: var(--md);
  font-weight: 600;
  text-align: center;
  border-radius: 25px;
  line-height: 44px;
  border: 2px solid var(--main-color);
  margin: 50px auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.online .button_primary::after {
  content: "";
  display: inline-block;
  background: url(../images/ico/arrow_white.svg);
  background-size: cover;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  vertical-align: sub;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.online .button_primary:hover {
  color: var(--main-color);
  background-color: #fff;
  border: 2px solid var(--main-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.online .button_primary:hover::after {
  content: "";
  display: inline-block;
  background: url(../images/ico/arrow_blue.svg);
  background-size: cover;
  width: 22px;
  height: 22px;
  margin-left: 16px;
  vertical-align: sub;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.online .button_primary {
  margin-bottom: 100px;
}
.online svg {
  width: 100%;
}

.cooking {
  background-color: #a8d6e7;
  padding-top: 50px;
}
.cooking_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
}
.cooking_box .left {
  width: 50vw;
}
.cooking_box .left .cooking_image {
  width: 500px;
  border-radius: 4%;
  -webkit-filter: drop-shadow(6px 6px 6px var(--main-color));
          filter: drop-shadow(6px 6px 6px var(--main-color));
  z-index: -10;
}
.cooking_box .left .button_contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  height: 80px;
  background-color: var(--main-color);
  color: #fff;
  font-size: var(--md);
  font-weight: 600;
  text-align: left;
  border-radius: 10px;
  margin: 50px auto;
  padding: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.cooking_box .left .button_contact .tel_image {
  padding: 6px;
  width: 64px;
  height: auto;
}
.cooking_box .left .button_contact .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.6;
}
.cooking_box .left .button_contact .tel .order {
  font-size: var(--sm);
}
.cooking_box .left .button_contact .tel .number {
  font-size: var(--lg);
}
.cooking_box .left .button_contact:hover {
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.cooking_box .right {
  width: 50vw;
  margin-left: 25px;
}
.cooking_box .right .content {
  margin-bottom: 25px;
}
.cooking_box .right .course .title {
  font-size: var(--md);
  font-size: 600;
}
.cooking svg {
  width: 100%;
}

.access {
  padding-top: 50px;
}
.access_box {
  padding-top: 150px;
  margin-bottom: 100px;
  line-height: 2;
}
.access_box .top {
  margin-bottom: 50px;
}
.access_box .top table {
  border-collapse: collapse;
}
.access_box .top table tr {
  border-bottom: 1px dotted var(--text-color);
}
.access_box .top table tr td {
  padding: 20px 100px 20px 0;
}
.access_box .top table tr td:first-child {
  font-weight: 600;
  color: var(--main-color);
}
.access_box .gmap {
  margin: 0 auto;
}
.access_box .gmap iframe {
  width: 100%;
  aspect-ratio: 3/1;
}

.footer {
  position: relative;
  padding-top: 50px;
  background: var(--main-color);
  padding-bottom: 50px;
}
.footer .footer_nav_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
}
.footer .footer_nav_inner ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.footer .footer_nav_inner ul li a {
  color: #fff;
  font-family: var(--font-title);
  font-size: var(--md);
}
.footer .footer_nav_inner ul li .instagram {
  width: 22px;
  display: block;
  padding-top: 4px;
}
.footer .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 50px;
}
.footer .bottom .proviso03 {
  color: #fff;
  font-size: var(--ss);
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer .bottom .ship_image {
  margin-top: -25px;
  width: 80px;
  height: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-animation: yurayura 3s linear infinite;
          animation: yurayura 3s linear infinite;
}
@-webkit-keyframes yurayura {
  0%, 100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
@keyframes yurayura {
  0%, 100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
.footer .bottom .copyright {
  color: #fff;
  font-size: var(--ss);
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.backtotop {
  z-index: var(--index-modal);
}
.backtotop #backtotop {
  width: 74px;
  height: 74px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
}
.backtotop #backtotop_text {
  color: var(--main-color);
  font-size: 8px;
  font-weight: 600;
  text-align: center;
}

.menupage .section1 .key_image {
  width: 100%;
  height: 50vh;
}
.menupage .section1 .menupage_box {
  padding-top: 50px;
  margin-bottom: 100px;
}
.menupage .section1 .menupage_box .menuimage img {
  margin-bottom: 50px;
  -webkit-filter: drop-shadow(6px 6px 6px var(--main-color));
          filter: drop-shadow(6px 6px 6px var(--main-color));
}
.menupage .button_contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  height: 80px;
  background-color: var(--main-color);
  color: #fff;
  font-size: var(--md);
  font-weight: 600;
  text-align: left;
  border-radius: 10px;
  margin: 50px auto;
  padding: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.menupage .button_contact .tel_image {
  padding: 6px;
  width: 64px;
  height: auto;
}
.menupage .button_contact .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.6;
}
.menupage .button_contact .tel .order {
  font-size: var(--sm);
}
.menupage .button_contact .tel .number {
  font-size: var(--lg);
}
.menupage .button_contact:hover {
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.onlinepage .section1 .key_image {
  width: 100%;
  height: 50vh;
}
.onlinepage .section1 .onlinepage_box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 50px;
  margin-bottom: 100px;
}
.onlinepage .section1 .onlinepage_box .online_box {
  margin-bottom: 50px;
}

@media screen and (min-width: 1000px) {
  .mobile_nav {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .g_nav {
    display: none;
  }
  .m_menu, .m_menu span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 1000;
  }
  .m_menu {
    width: 30px;
    height: 22px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  .m_menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    z-index: 1000;
  }
  .m_menu span:nth-of-type(1) {
    top: 0px;
  }
  .m_menu span:nth-of-type(2) {
    top: 10px;
  }
  .m_menu span:nth-of-type(3) {
    bottom: 0px;
  }
  .m_menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
  .m_menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .m_menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  #nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    opacity: 0;
    background-color: var(--main-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
  }
  #nav.active {
    right: 0;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  }
  #nav ul {
    margin: 20px 0;
    padding: 20px 0;
  }
  #nav ul li {
    list-style-type: none;
  }
  #nav ul li a {
    display: block;
    padding: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: var(--sm);
  }
  #nav ul li a.instagram {
    background: url(../images/ico/instagram_white.svg) no-repeat;
    width: 30px;
    height: auto;
    margin: 0 auto;
  }
  .mobile_nav #nav ul li a img {
    width: 10%;
  }
  .mobile_nav #nav .tel {
    color: #fff;
    text-align: center;
  }
  .mobile_nav #nav .tel_number {
    font-size: var(--lg);
  }
  h2 {
    font-size: var(--lg);
  }
  h3 {
    font-size: var(--lg);
    margin-bottom: 25px;
  }
  h3 {
    color: var(--sub-color);
    font-size: var(--md);
    font-weight: bold;
    text-align: center;
    padding-top: 25px;
  }
  h4 {
    color: var(--main-color);
    font-size: var(--md);
    font-weight: 600;
    border-bottom: 2px dotted var(--main-color);
  }
  .memo {
    color: var(--main-color);
    font-family: var(--font-text);
    font-size: var(--ss);
    font-weight: 600;
    text-align: center;
    position: relative;
  }
  .memo::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../images/ico/rudder.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .text {
    font-size: var(--ss);
    margin-bottom: 25px;
  }
  .text02 {
    margin-top: 75px;
  }
  .container {
    width: 100%;
    padding: 0 15px;
  }
  .inner {
    width: 100%;
    padding: 0 15px;
  }
  .header {
    width: 100%;
    height: 60px;
    padding-top: 20px;
  }
  .header h1 img {
    width: 100px;
    -webkit-box-shadow: 0 0 2px #83caee, 0 0 5px #83caee, 0 0 15px #83caee, 0 0 25px #83caee;
            box-shadow: 0 0 2px #83caee, 0 0 5px #83caee, 0 0 15px #83caee, 0 0 25px #83caee;
    border: 3px solid #bbdced;
    color: white;
    text-shadow: 0 0 5px #83caee, 0 0 10px #83caee, 0 0 15px #83caee;
  }
  .main_visual {
    width: 100%;
    height: 70vh;
  }
  .main_visual .swiper {
    width: 100%;
    background-size: cover;
  }
  .main_visual .swiper img {
    height: 70vh;
  }
  .main_visual #wave_wrapper {
    display: none;
  }
  .main_visual .flowing_box {
    top: 70px;
    left: 20px;
  }
  .main_visual .flowing {
    margin-bottom: 0;
    font-size: var(--ss);
    background: none;
  }
  .about {
    width: 100%;
    padding-top: 50px;
  }
  .about_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 75px;
  }
  .about_box .left {
    width: 100%;
    margin-bottom: 25px;
  }
  .about_box .left img {
    width: 100%;
  }
  .about_box .right {
    width: 100%;
  }
  .menu {
    padding: 0;
  }
  .menu_box {
    padding-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu_box .left {
    width: 100%;
  }
  .menu_box .left .top img, .menu_box .left .bottom img {
    width: 100%;
  }
  .menu_box .left .bottom {
    width: 100%;
    margin: 0;
    padding-top: 25px;
  }
  .menu_box .right {
    width: 100%;
    padding-top: 25px;
  }
  .menu_box .right img {
    width: 100%;
  }
  .menu_box .right .catch {
    font-size: var(--sm);
    top: 25px;
  }
  .menu .button_primary {
    margin: 50px auto;
  }
  .online {
    padding: 0;
  }
  .online_box {
    padding-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .online_box .left {
    width: 100%;
  }
  .online_box .left .price {
    font-size: var(--sm);
    padding: 0;
  }
  .online_box .left .season {
    font-size: var(--ss);
  }
  .online_box .right {
    width: 100%;
  }
  .online_box .right img {
    width: 100%;
  }
  .online .button_primary {
    margin: 50px auto;
  }
  .cooking {
    padding: 0;
  }
  .cooking_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cooking_box .left {
    width: 100%;
    padding-top: 25px;
  }
  .cooking_box .left .cooking_image {
    width: 100%;
  }
  .cooking_box .right {
    width: 100%;
    margin: 0;
  }
  .cooking_box .right .course .title {
    font-size: var(--sm);
  }
  .access {
    padding: 0;
  }
  .access_box {
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .access_box table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .access_box table tr td {
    padding: 5px 0 !important;
    overflow-wrap: break-word;
    word-break: keep-all;
  }
  .access_box table tr td:first-child {
    font-size: var(--sm);
  }
  .access_box .g_map iframe {
    aspect-ratio: 4/3 !important;
  }
  .footer {
    padding: 25px;
  }
  .footer_nav {
    display: none;
  }
  .footer .bottom {
    height: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
    position: relative;
  }
  .footer .bottom .ship_image {
    width: 50px;
    position: absolute;
    top: 50px;
  }
  #backtotop {
    right: -10px !important;
    bottom: -10px !important;
  }
  #backtotop img {
    width: 50px;
  }
  #backtotop #backtotop_text {
    display: none;
  }
  .top .about img {
    -webkit-filter: drop-shadow(3px 3px 3px var(--main-color));
            filter: drop-shadow(3px 3px 3px var(--main-color));
  }
  .top .menu .menu_box .left img {
    -webkit-filter: drop-shadow(3px 3px 3px var(--main-color));
            filter: drop-shadow(3px 3px 3px var(--main-color));
  }
  .top .menu .menu_box .right img {
    -webkit-filter: drop-shadow(3px 3px 3px var(--sub-color));
            filter: drop-shadow(3px 3px 3px var(--sub-color));
  }
  .top .online img {
    -webkit-filter: drop-shadow(3px 3px 3px var(--sub-color));
            filter: drop-shadow(3px 3px 3px var(--sub-color));
  }
  .top .cooking img {
    -webkit-filter: drop-shadow(3px 3px 3px var(--main-color));
            filter: drop-shadow(3px 3px 3px var(--main-color));
  }
  .menupage .section1 .menupage_box {
    margin-bottom: 50px;
  }
  .menupage .section1 .menupage_box .menuimage img {
    -webkit-filter: drop-shadow(3px 3px 3px var(--main-color)) !important;
            filter: drop-shadow(3px 3px 3px var(--main-color)) !important;
  }
  .menupage .section1 .menupage_box .menuimage img:last-child {
    margin-bottom: 0;
  }
  .onlinepage .online_box img {
    -webkit-filter: drop-shadow(3px 3px 3px var(--sub-color));
            filter: drop-shadow(3px 3px 3px var(--sub-color));
  }
}/*# sourceMappingURL=style.css.map */