/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5em;
  font-family: "Zen Antique", serif;
  color: #342E2E;
}

p {
  line-height: 2.7em;
}

.h1, h1 {
  font-family: "Libre Caslon Text", serif;
}

.h1, .h2, .h3, .h4, .h5,
h1, h2, h3, h4, h5 {
  font-weight: 400;
  font-style: normal;
}

@media (min-width: 1025px) {
  .h1, h1 {
    line-height: 1.2375em;
    font-size: 80px;
  }
  .h2, h2 {
    line-height: 1.45em;
    font-size: 40px;
  }
  .h3, h3, h4, h5 {
    line-height: "1.45em";
    font-size: 25px;
  }
}
@media (max-width: 1024px) {
  .h1, h1 {
    line-height: 1.2375em;
    font-size: 40px;
  }
  .h2, h2 {
    line-height: 1.45em;
    font-size: 30px;
  }
  .h3, h3, h4, h5 {
    line-height: 1.45em;
    font-size: 20px;
  }
}
#header {
  background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: white;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  z-index: 9999;
}
#header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .h2 a {
  text-decoration: none;
  color: white;
}
#header nav a {
  color: white;
  text-decoration: none;
}
@media only screen and (max-width: 1400px) and (min-width: 1024px) {
  #header nav a {
    font-size: 16px;
  }
}
#header nav a:hover {
  opacity: 0.7;
}
@media (min-width: 1025px) {
  #header nav {
    display: flex;
    gap: 2.5rem;
    justify-content: right;
  }
}
@media (max-width: 1024px) {
  #header nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 5rem;
    transition: top 0.2s ease-out, bottom 0.2s ease-out, transform 0.2s ease-out;
  }
  #header nav a {
    max-width: 40rem;
    width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: opacity 0.2s ease-out 0.2s;
  }
}
#header .menu_btn {
  display: none;
}
@media (max-width: 1024px) {
  #header .menu_btn {
    display: block;
    width: 46px;
    height: 46px;
    position: relative;
  }
  #header .menu_btn span {
    position: absolute;
    width: 26px;
    height: 4px;
    border-radius: 2px;
    background-color: white;
    display: block;
    left: 10px;
    top: 15px;
    transition: all 0.2s ease-in-out;
  }
  #header .menu_btn span:nth-of-type(2) {
    top: auto;
    bottom: 15px;
  }
  #header .menu_btn span:first-of-type {
    transform: translate(0px, 5.75px) rotate(45deg);
  }
  #header .menu_btn span:last-of-type {
    transform: translate(0px, -5.75px) rotate(-45deg);
  }
}
@media (max-width: 1024px) {
  #header.closed nav {
    top: -100vh;
    bottom: 100vh;
    transition: top 0.2s ease-in 0.2s, bottom 0.2s ease-in 0.2s;
  }
  #header.closed nav a {
    opacity: 0;
    transition: opacity 0.2s ease-in;
  }
  #header.closed .menu_btn span:first-of-type {
    transform: rotate(0) translateY(0);
  }
  #header.closed .menu_btn span:last-of-type {
    transform: rotate(0) translate(0);
  }
}

.youtube_movie {
  position: relative;
}
.youtube_movie .smoke {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 10;
  transition: background-color 0.3s ease-in-out;
}
.youtube_movie .video_thumb {
  object-fit: cover;
}
.youtube_movie .play_btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  cursor: pointer;
  z-index: 20;
}
.youtube_movie:hover .smoke {
  background-color: rgba(0, 0, 0, 0.1);
}

#video_player {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  z-index: -10;
}
#video_player iframe {
  position: relative;
}
#video_player button {
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 2px;
}
#video_player button:hover {
  background-color: white;
}

#kayotei {
  background-image: url("/assets/contact/bg.png");
  background-size: cover;
  background-position: top left;
  padding-bottom: 12rem;
}
#kayotei h1 {
  padding-top: 2em;
  margin-bottom: 1em;
}
#kayotei p {
  max-width: 1074px;
  margin-left: auto;
  margin-right: auto;
}

#contact {
  padding-bottom: 12rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
#contact .head {
  margin-bottom: 4rem;
}
#contact .head h2 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
#contact .head h2 span {
  display: block;
  flex-grow: 0;
}
#contact .head h2 .line {
  height: 1px;
  background-color: black;
  flex-grow: 1;
}
#contact .head p {
  padding-left: 2rem;
  line-height: 2em;
}
#contact form .list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1025px) {
  #contact form .list.long .row label {
    width: 36rem;
  }
}
#contact form .list .row .content {
  display: flex;
}
#contact form .list .row label {
  width: 18em;
}
#contact form .list .row label.required::after {
  padding-left: 0.1em;
  color: #E90C0C;
  content: "*";
}
#contact form .list .row label span {
  display: block;
  font-size: 14px;
}
#contact form .list .row input, #contact form .list .row select, #contact form .list .row textarea {
  width: 100%;
  border: 1px solid #141414;
  border-radius: 10px;
  padding: 1em;
  box-sizing: border-box;
}
#contact form .list .row select {
  min-height: 2rem;
}
@media (max-width: 1024px) {
  #contact form .list .row .content {
    flex-direction: column;
    gap: 0.5rem;
  }
  #contact form .list .row label {
    width: 100%;
  }
}
#contact form .list .error {
  text-align: right;
  display: block;
  font-size: 12px;
  color: #E90C0C;
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
}
#contact form .info {
  text-align: center;
  padding: 3rem 1.5rem 0rem;
}
#contact form .note {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
#contact form .note .h3 {
  margin-bottom: 1rem;
}
#contact form .note p {
  line-height: 2em;
  padding-left: 3rem;
}
#contact form input[type=submit] {
  background-color: black;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: none;
  font-family: "Zen Antique", serif;
  width: 100%;
  max-width: 800px;
  padding: 0 2em 0.25em;
  letter-spacing: 0.1em;
  margin: auto;
  display: block;
}
#contact form input[type=submit]:hover {
  background-color: white;
  color: black;
}
#contact form .result-message {
  text-align: center;
  margin-top: 1em;
}

#bnr {
  display: block;
  max-width: 1024px;
  transition: all 0.2s ease-in-out;
}
#bnr:hover {
  opacity: 0.7;
}
#bnr picture, #bnr img {
  display: block;
  width: 100%;
}
@media (max-width: 1024px) {
  #bnr {
    max-width: 480px;
    padding-left: 0;
    padding-right: 0;
  }
}

#suite {
  margin-top: 10rem;
  margin-bottom: 12rem;
}
#suite > .h1 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  max-width: 1600px;
  margin: 0 auto 0.5em;
}
#suite ul {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (min-width: 1025px) {
  #suite ul li.sm .container .left {
    width: 60%;
  }
  #suite ul li.sm .container .right {
    width: 40%;
  }
}
#suite ul li {
  max-width: 1600px;
  width: 100%;
  display: block;
  box-sizing: border-box;
  margin: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 1024px) {
  #suite ul li {
    padding-right: 0;
  }
}
#suite ul li > .h1 {
  margin-bottom: 0.75em;
}
@media (max-width: 1024px) {
  #suite ul li > .h1 br {
    display: none;
  }
}
#suite ul li .container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
#suite ul li .container .left {
  width: 70%;
  padding-left: 50px;
  position: relative;
  box-sizing: border-box;
}
#suite ul li .container .left img {
  width: 100%;
}
#suite ul li .container .left > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#suite ul li .container .left > span::after {
  display: block;
  content: "";
  width: 1px;
  background-color: black;
  height: 100%;
}
#suite ul li .container .left .title {
  margin-bottom: -2.5rem;
  position: relative;
  z-index: 100;
  padding-right: 1.5rem;
}
#suite ul li .container .left .title span {
  display: block;
}
@media (max-width: 1024px) {
  #suite ul li .container .left .title {
    margin-bottom: -1rem;
  }
}
#suite ul li .container .right {
  width: 30%;
  padding: 2rem 1.5rem 4rem;
  box-sizing: border-box;
  border: 1px solid black;
}
#suite ul li .container .right p {
  line-height: 2em;
}
@media (max-width: 1024px) {
  #suite ul li .container {
    flex-direction: column;
  }
  #suite ul li .container .left, #suite ul li .container .right {
    width: 100%;
  }
  #suite ul li .container .right {
    width: calc(100% - 1.5rem);
    margin-right: auto;
  }
}

#facilities .h1,
#onsen .h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
#facilities .h1::after,
#onsen .h1::after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background-color: black;
}

#onsen {
  margin-bottom: 8rem;
}
#onsen .h1 > div {
  display: flex;
  gap: 0;
  flex-direction: row;
  align-items: baseline;
}
#onsen .h1 span {
  display: block;
}
#onsen .h1 span:last-of-type {
  display: block;
  font-size: 60px;
}
@media (max-width: 1024px) {
  #onsen .h1 span:last-of-type {
    font-size: 20px;
  }
}
#onsen .onsen_slides {
  margin: auto;
  max-width: 1440px;
  max-height: 720px;
  width: 100%;
  height: 50vw;
  margin-left: auto;
  margin-right: auto;
}
#onsen .onsen_slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  #onsen .onsen_slides {
    max-width: 680px;
  }
}

#facilities ul {
  display: flex;
  gap: 3rem;
}
#facilities ul > li {
  display: block;
  width: calc(50% - 1.5rem);
}
#facilities ul > li:first-of-type h3 {
  padding-top: 0.6em;
}
@media (max-width: 1024px) {
  #facilities ul {
    flex-direction: column;
  }
  #facilities ul > li {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

#footer {
  text-align: center;
  padding: 16rem 1rem 8rem;
}
#footer br {
  display: none;
}
@media (max-width: 1024px) {
  #footer {
    padding: 12rem 1rem 4rem;
  }
  #footer br {
    display: block;
  }
  #footer .h3 {
    font-size: 15px;
  }
}

/**
 * Swiper 11.2.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 10, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
.swiper-container {
  position: relative;
}

.swiper-pagination {
  position: relative;
  bottom: auto;
  display: flex;
  justify-content: right;
  padding-top: 1rem;
}

.swiper-pagination-bullet-active {
  background-color: #545454;
}

html {
  background-color: #e8e8e8;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.mx {
  max-width: 1440px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .mx {
    max-width: 640px;
  }
}

#init_screen {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 59999;
}
#init_screen::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("assets/contact/bg.png");
  background-size: cover;
  background-position: top left;
}

.reveal {
  position: relative;
}
.reveal > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #e8e8e8;
}

.top_slides {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 1024px) {
  .top_slides {
    max-height: 200vw;
  }
}
.top_slides .h2 {
  position: absolute;
  z-index: 10;
  bottom: 15vh;
  left: 0;
  right: 0;
  width: 100%;
  color: white;
  text-shadow: 0 3px 15px rgba(74, 37, 37, 0.8);
}
.top_slides .h2 .h3 {
  display: block;
  line-height: 1.2em;
}
.top_slides .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.top_slides .swiper-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}
.top_slides .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#partners {
  background-image: url("assets/artisans-kumi/bg.png");
  background-size: cover;
  background-position: top right;
}
#partners .mx {
  padding-top: 12rem;
  padding-bottom: 10rem;
}
#partners .mx .text {
  position: relative;
}
#partners .mx .text h2 {
  margin-bottom: 1em;
}
@media (min-width: 1025px) {
  #partners .mx {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  #partners .mx .pic {
    width: calc(100% - 48rem);
  }
  #partners .mx .text {
    width: 48rem;
    margin-left: -9rem;
  }
  #partners .mx .text p {
    padding-left: 9rem;
  }
}
@media (max-width: 1024px) {
  #partners .mx {
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
}

#concept .bg {
  background-image: url("./assets/top-page/concept.jpg");
  background-size: cover;
  background-position: left bottom;
  height: 500px;
  width: 100%;
  max-width: 1680px;
  margin-right: auto;
  display: block;
}
@media (max-width: 1024px) {
  #concept .bg {
    height: 150px;
  }
}
#concept .h1 {
  position: relative;
  z-index: 10;
  margin-bottom: -0.5em;
}
#concept .text {
  max-width: 1680px;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: right;
  position: relative;
  z-index: 20;
}
#concept .text p {
  background-color: #e8e8e8;
  box-sizing: border-box;
  max-width: 1024px;
  padding: 3rem 3rem 0;
  margin-top: -4rem;
}

#atelier {
  position: relative;
  padding-bottom: 10rem;
}
#atelier .h1::before {
  content: "";
  display: block;
  width: 1px;
  height: 8rem;
  background-color: black;
  margin-left: 1.75rem;
}
@media (max-width: 1024px) {
  #atelier .h1 {
    margin-top: 5rem;
  }
  #atelier .h1::before {
    height: 5rem;
    margin-left: 0rem;
    margin-bottom: 0.4rem;
  }
}
#atelier p {
  max-width: 640px;
}
#atelier .youtube_movie .video_thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 1025px) {
  #atelier .youtube_movie {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: calc(100% - 680px);
    max-width: 800px;
    height: calc(100% - 10rem);
    margin: auto;
  }
}
@media (max-width: 1024px) {
  #atelier .youtube_movie {
    margin-top: 3rem;
  }
}

.hr {
  text-align: center;
  padding: 10rem 2rem 16rem;
}

#artisans .h1,
#restaurants .h1 {
  text-align: center;
  margin-bottom: 1em;
}
#artisans ul li,
#restaurants ul li {
  background-size: cover;
  padding-bottom: 10rem;
  position: relative;
}
@media (min-width: 1025px) {
  #artisans ul li:nth-of-type(2n),
  #restaurants ul li:nth-of-type(2n) {
    background-attachment: fixed;
  }
}
#artisans ul li::after,
#restaurants ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
#artisans ul li .number,
#restaurants ul li .number {
  font-size: 18px;
  display: block;
  color: white;
  position: relative;
  z-index: 20;
}
#artisans ul li .number::before,
#restaurants ul li .number::before {
  margin-left: 0.5rem;
  display: block;
  content: "";
  width: 1px;
  height: 10rem;
  background-color: white;
}
#artisans ul li > div,
#restaurants ul li > div {
  position: relative;
  z-index: 20;
  display: flex;
  gap: 4rem;
}
#artisans ul li > div .content,
#restaurants ul li > div .content {
  width: 40%;
  color: white;
}
#artisans ul li > div .content h3,
#restaurants ul li > div .content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1em;
}
#artisans ul li > div .content h3 span,
#restaurants ul li > div .content h3 span {
  display: block;
  line-height: 1em;
}
#artisans ul li > div .youtube_movie,
#restaurants ul li > div .youtube_movie {
  width: 60%;
}
#artisans ul li > div p,
#restaurants ul li > div p {
  line-height: 1.8em;
}
@media (max-width: 1024px) {
  #artisans ul li > div,
  #restaurants ul li > div {
    flex-direction: column;
  }
  #artisans ul li > div .content, #artisans ul li > div .youtube_movie,
  #restaurants ul li > div .content,
  #restaurants ul li > div .youtube_movie {
    width: 100%;
  }
  #artisans ul li > div p,
  #restaurants ul li > div p {
    line-height: 1.8rem;
  }
}

#restaurants {
  padding-top: 16rem;
}
@media (max-width: 1024px) {
  #restaurants {
    padding-top: 12rem;
  }
}

.bottom_slides {
  margin-top: 20rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 1024px) {
  .bottom_slides {
    padding-top: 14rem;
  }
}
.bottom_slides .swiper-wrapper {
  transition-timing-function: linear !important;
}
.bottom_slides .swiper-slide {
  height: 20vw;
}
.bottom_slides .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .bottom_slides .swiper-slide {
    height: 45vw;
  }
}

/*# sourceMappingURL=style.css.map */
