@charset "utf-8";

/*** The new CSS reset - version 1.8.4 (last updated 14.2.2023) ***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* mycss */

:root,
::after,
::before {
}

body.myloding {
  height: 100%;
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

html,
body {
  scroll-padding-top: 60px;
}

body {
  padding: 0;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.06rem;
  color: #333;
  font-weight: 400;
  font-family: "Murecho", sans-serif;
}

ul,
li {
  margin: 0;
  padding: 0;
}

img {
  height: auto;
}

a,
a:hover {
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  text-decoration: none;
}

section {
  margin: 0 auto;
  padding: 5rem 0 2rem;
}

.f_cont {
  display: flex;
  flex-wrap: wrap;
}

/* ----- header ----- */

#page_top {
  position: fixed;
  top: 0;
  z-index: 80;
  width: 100%;
  transition: all 0.5s ease;
}

.top_nav h1 {
  width: 130px;
  padding-right: 1rem;
  margin: 0;
}

.top_nav ul {
  display: flex;
  margin: 0 0 0 auto;
}

.top_nav li {
  list-style-type: none;
  font-size: min(1.3vw, 15px);
  margin: 0 1.5vw;
  font-weight: 500;
}

.top_nav li a {
  display: block;
  position: relative;
  letter-spacing: 0.15rem;
  line-height: 2.3;
}

.top_nav li a::before {
  background: #7a7a7a;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.top_nav li a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

/* side_menu */
.side_menu {
  display: block;
  position: fixed !important;
  top: 0;
  max-height: 100vh !important;
  height: 100vh;
  max-width: 80vw;
  background-color: #efefef;
  min-width: 250px !important;
  outline: none;
  z-index: 2147483647;
  will-change: transform;
  overflow-y: scroll;
}

.side_menu[side="right"] {
  right: 0 !important;
  -webkit-transform: translateX(100%) !important;
  transform: translateX(100%) !important;
}

.side_menu[side] {
  -webkit-transition: -webkit-transform 233ms cubic-bezier(0, 0, 0.21, 1);
  transition: -webkit-transform 233ms cubic-bezier(0, 0, 0.21, 1);
  transition: transform 233ms cubic-bezier(0, 0, 0.21, 1);
  transition: transform 233ms cubic-bezier(0, 0, 0.21, 1),
    -webkit-transform 233ms cubic-bezier(0, 0, 0.21, 1);
}

.side_menu[side][open] {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

#side_nav {
  color: var(--side-nav-color, #000);
  background: var(--side-nav-bg-color, #fff);
}

#side_nav ul {
  margin: 0;
  padding: 0;
}

#side_nav li a {
  border-bottom: 1px solid var(--side-nav-border-color, #dadada);
  color: var(--side-nav-color, #000);
  text-decoration: none;
  padding: 14px 0 14px 9px;
  display: block;
}

#side_nav nav {
  min-width: 210px;
  font-size: 14px;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

i {
  padding: 0 0.25rem;
}

span {
  display: inline-block;
}

/* ----- top ----- */
.top_cont {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.vd_wrap {
  position: relative;
  height: 95vh;
  background: #fff;
}

.vd_logo {
  min-width: 320px;
  max-width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cont_wrap {
  max-width: 1600px;
  min-height: 80vh;
  margin: 0 auto;
  padding: 0 0 5rem;
}

.m_ttl {
  font-family: "Karla", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  font-weight: 600;
  color: #323132;
  text-align: center;
  margin: 0 auto;
}

.sub_ttl {
  letter-spacing: 0.2rem;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.s_img {
  margin: 0 auto 2rem;
}

.txt_wrap {
  line-height: 2.3;
  margin: 0 auto;
}

.txt_box {
  padding: 0 2rem 2rem;
  line-height: 2;
}

/* ----- about ----- */
#about {
  background: #f1ebe4;
}

.ab_wrap {
  width: 92%;
  margin: 0 auto;
  max-width: 1000px;
  background: #fff;
  border: 1px solid #ddd;
}

.news {
  width: 92%;
  max-width: 400px;
  margin-inline: auto;
}

/* ----- system ----- */

#system {
  background: #efefef;
}

.text_wrap table {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.sys_wrap {
  margin: 0 auto;
  padding-bottom: 2rem;
  justify-content: space-evenly;
  max-width: 1200px;
}

.sys_cont {
  background: #ffffffbb;
  margin: 2rem auto 0;
  padding: 1rem 1.5rem 0.5rem;
  width: 92%;
  border: 1px solid #ddd;
  max-width: 500px;
}

.sys_cont h4 {
  font-family: "Oooh Baby", cursive;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: normal;
  margin: 0;
  padding: 1rem 0 0.25rem;
}

.charge {
  text-align: center;
  font-family: karla;
}

.charge .price {
  font-size: 1.8rem;
  font-weight: 700;
}

.charge .price span {
  font-family: "Murecho";
  font-size: 1rem;
  display: inline-block;
  padding-left: 0.5rem;
}

.charge .caution {
  text-align: left;
  font-family: Murecho;
  padding: 1rem 0 1.5rem;
  line-height: 1.5;
  font-size: 0.8rem;
}

.flavor {
  margin: 1rem auto;
}

.flavor h5 {
  text-align: center;
  font-size: 1.2rem;
  margin: 0 auto 0.5rem;
  font-weight: 500;
}

.sys_wrap::after {
  content: "";
  display: block;
  width: 92%;
  max-width: 500px;
}

.sys_com {
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 0.5rem 0.5rem 1.5rem;
}

.price_list,
.drink_list,
.cham_list {
  font-size: 1rem;
}

.price_list dt {
  margin: 0 0 1rem;
  padding: 0;
  width: 70%;
}

.price_list dd {
  text-align: right;
  margin: 0 0 1rem;
  padding: 0;
  width: 30%;
}

.price_list span,
.drink_list span {
  display: block;
  font-size: 0.75rem;
  line-height: 1.2;
}

.drink_list dt {
  margin: 0 0 1rem;
  padding: 0;
  width: 50%;
}

.drink_list dd {
  margin: 0 0 1rem;
  padding: 0;
  width: 50%;
}

.drink_list dd:last-of-type {
  text-align: right;
}

.cham_list dt {
  margin: 0 0 1rem;
  padding: 0;
  width: 47%;
  font-size: 0.9rem;
  letter-spacing: -0.02rem;
}

.cham_list dd {
  text-align: right;
  margin: 0 0 1rem;
  padding: 0;
  width: 53%;
  font-size: 0.9rem;
}

.cham_list span {
  font-size: 0.7rem;
  letter-spacing: -0.02rem;
}

/* ----- gallery ----- */

#gallery {
  background: #f1ebe4;
}

.gallery_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 2rem;
  width: 85%;
  margin: 0 auto;
  gap: 2rem;
}

.g_thumb {
  cursor: pointer;
  position: relative;
  width: 30%;
  overflow: hidden;
}

.g_thumb:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.g_thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.g_thumb img:hover {
  transform: scale(1.1);
}

/* ---- popup ---- */

#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

#popup.show {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
#popup img {
  max-width: 90%;
  max-height: 80%;
}
#close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* ----- recruit ----- */

#recruit {
  background: #efefef;
}

#recruit .cont_wrap {
  min-height: 40vh;
}

.rec_wrap {
  text-align: center;
}

/* ----- access ----- */

#shopinfo {
  background: #fff;
  padding: 3rem 0;
}

.shop_wrap {
  padding: 0 1rem;
  margin: 0 auto;
  max-width: 500px;
}

.info_logo {
  width: 70%;
  margin: 0 auto;
}

.shop_wrap .open {
  font-family: "Karla";
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.shop_wrap td,
tr {
  padding: 0.5rem;
}

.shop_wrap th {
  text-align: left;
  width: 20%;
}

#shopinfo .cont_wrap {
  padding: 0;
  min-height: auto;
}

.gmap {
  width: 90%;
  margin: 1rem auto;
  max-width: 1000px;
}

.gmap iframe {
  width: 100%;
  min-height: 400px;
}

.sns {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sns p {
  font-size: 0.9rem;
  width: fit-content;
  margin: 0 auto;
  background: #3b3b3b;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 2.5rem;
}

.sns i {
  padding: 0 0.5rem;
}

/* wave */
.wave_wrap {
  min-height: 400px;
  position: relative;
}

.wave_top {
  position: relative;
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave svg {
  position: relative;
  display: block;
  width: calc(136% + 1.3px);
  height: 67px;
}

/* -- button -- */

.button {
  width: 100%;
}

.button a {
  display: block;
  text-align: center;
  font-weight: 500;
  margin: 3rem auto 0;
  padding: 1rem 1.25rem;
  max-width: 20rem;
  border-radius: 10rem;
  color: #333;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10rem;
  z-index: -2;
  border: 1px solid #ddd;
}

.button a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  color: #fff;
  background-color: #3a3a3a;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}

.button a:hover {
  color: #fff;
}

.button a:hover:before {
  width: 100%;
}

footer {
  background: #4d4d4d;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.copy {
  font-size: 0.8rem;
}

/*======= SPメニュー ==========*/

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

#page_top .checkbox-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
  margin: 0;
}

#page_top .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}

#page_top .checkbox-toggle:checked + .hamburger > div:before,
#page_top .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

#page_top .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}

#page_top .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}

#page_top .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}

#page_top .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

#page_top .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/*
.hbg {
  background: rgb(0 0 0 / 0%);
}

.hbg_on {
  background: rgb(255 255 255 / 90%);
}
  */

.hbg {
  background: rgb(255 255 255 / 90%);
}

.hbg a {
  color: #666;
}

.hbg .hamburger {
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  padding: 0.5em 1em;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  background: rgba(255, 118, 120, 0);
}

.hbg_on .hamburger {
  transition: all 0.5s ease;
}

#page_top .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #0c0c0c;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page_top .hamburger > div:before,
#page_top .hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  right: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}

#page_top .hamburger > div:after {
  top: 10px;
}

#page_top .menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page_top .menu > div {
  width: 200vw;
  height: 200vw;
  color: #353535;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page_top .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page_top .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}

#page_top .menu > div > div > ul > li {
  padding: 0;
  margin: 1.3em 0;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  display: block;
}

#page_top .menu > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s ease;
  font-weight: 500;
}

#page_top .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}

/* タブレット・ノートPC */
@media (min-width: 768px) {
  .top_nav {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0.5rem auto;
  }

  section {
    padding: 5rem 0 6rem;
  }

  .sp_nav {
    display: none;
  }

  .hbg_on a {
    color: #333;
  }

  .s_img {
    width: 50%;
    margin: 0;
  }

  .txt_box {
    padding-top: 2rem;
    width: 50%;
  }
  .gallery_wrap::after {
    content: "";
    display: block;
    width: 30%;
  }

  .sys_cont {
    margin: 2rem 0;
  }

  .sub_ttl {
    margin-bottom: 6rem;
  }
  .top_nav i {
    display: none;
  }
}

/* スマホ */
@media (max-width: 767px) {
  body {
    font-size: 0.9rem;
  }
  #page_top {
    height: 65px;
  }

  .m_ttl {
    font-size: 3rem;
  }

  .top_nav {
    padding: 0.25rem 0 0.25rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;
  }

  .top_nav ul {
    display: none;
  }

  .top_nav i {
    font-size: 1.3rem;
    padding: 0.5rem 0.2rem;
  }

  .gallery_wrap {
    width: 100%;
    gap: 1.5rem;
    padding: 3rem 1.5rem;
  }

  .gallery_wrap::after {
    content: "";
    display: block;
    width: calc(100% / 2 - 1rem);
  }

  .g_thumb {
    width: calc(100% / 2 - 1rem);
  }

  .sv_wrap h3 {
    bottom: 0;
  }

  .sv_wrap li > div {
    aspect-ratio: 1.3;
  }
}
