@charset "UTF-8";
/*-------------------------
* Imported Fonts
* ------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200..900&display=swap");
:root {
  --theme-color: #9b5977;
  --bg-main-color: #000;
  --bg-sec-color: #000;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  background: var(--bg-main-color);
  color: #fff;
  width: 100vw;
  font-family: "Noto Serif JP", serif;
}

p {
  line-height: 2;
  font-size: 18px;
}

img {
  width: 100%;
}

section {
  width: 100vw;
  min-height: 600px;
  padding-bottom: 10rem;
}

section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
  max-width: 80vw;
}

section h2 {
  font-size: 48px;
  padding-block: 3rem;
  color: #fff;
  font-family: "Playfair Display", "Noto Serif JP", serif;
  text-align: center;
  font-weight: 400;
  position: relative;
}

section h2::before {
  content: attr(data-jp);
  position: absolute;
}

section p {
  text-align: center;
}

section:nth-of-type(even) {
  background: var(--bg-sec-color);
}

a:link {
  text-decoration: none !important;
}

@media screen and (min-width: 767px) {
  .sp-br {
    display: none;
  }
}

/*-------------------------
* ヘッダーとナビ
* ------------------------
*/
.hero-section {
  position: relative;
  width: 100vw;
  overflow: hidden !important;
  padding-block: unset;
  padding-bottom: 0;
}

.hero-section img {
  width: 100vw;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.hero-text {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  color: white;
  text-align: center;
  width: 80%;
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-text .container-logo h1 {
  font-weight: normal;
}

.hero-text .container-logo img {
  text-align: center;
  margin-inline: auto;
  width: 30vw;
  max-width: 500px;
  margin-bottom: 15rem;
}

/*-------------------------
* Responsive
* ------------------------
*/
@media screen and (max-width: 360px) {
  .hero-text {
    top: 50%;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .hero-text .container-logo h1 {
    font-size: 10px;
  }
  .hero-text .container-logo img {
    margin-bottom: 40vw;
  }
}

@media (min-width: 361px) and (max-width: 411px) {
  .hero-text {
    top: 50%;
    -webkit-transform: translate(-50%, -55%);
            transform: translate(-50%, -55%);
  }
  .hero-text .container-logo h1 {
    font-size: 12px;
  }
  .hero-text .container-logo img {
    margin-bottom: 40vw;
  }
}

@media (min-width: 412px) and (max-width: 767px) {
  .hero-text {
    top: 45%;
  }
  .hero-text .container-logo h1 {
    font-size: 12px;
  }
  .hero-text .container-logo img {
    margin-bottom: 40vw;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .hero-text {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .hero-text .container-logo h1 {
    font-size: 18px;
  }
  .hero-text .container-logo img {
    margin-bottom: 40vw;
  }
}

@media (min-width: 1440px) {
  .hero-text {
    top: 20%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .hero-text .container-logo img {
    margin-bottom: 10vw;
  }
}

header
.wrapper {
  padding: 2rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  header .wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #sidenav {
    display: none;
  }
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.navbar-nav li a {
  color: #fff;
}

.navbar-nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  scale: 0.8;
  gap: 1rem;
}

/*-------------------------
* モバイルメニュー
* ------------------------
*/
.mobile-menu {
  display: none;
}

.mobile-menu .hamburger span {
  background-color: #fff !important;
}

@media screen and (max-width: 769px) {
  .mobile-menu {
    display: block;
  }
  .desktop-menu {
    display: none;
  }
  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    width: 30px;
    height: 24px;
  }
  .hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    color: #fff;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 11px;
  }
  .hamburger span:nth-child(3) {
    top: 22px;
  }
  .hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(11px) rotate(45deg);
            transform: translateY(11px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-11px) rotate(-45deg);
            transform: translateY(-11px) rotate(-45deg);
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100vh;
    background: #333;
    z-index: 999;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    padding: 80px 20px 20px;
    -webkit-box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  }
  .mobile-nav.active {
    right: 0;
  }
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-nav li {
    margin: 20px 0;
  }
  .mobile-nav a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
  }
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
  }
  .overlay.active {
    display: block;
  }
}

/*-------------------------
* ヘッダーのボタン PC
* ------------------------
*/
.desktop-menu a.btn-header {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-perspective-origin: 50% 50%;
          perspective-origin: 50% 50%;
  overflow: hidden;
  background: transparent;
  border: #fff 1px solid;
  border-radius: 24px;
  margin-right: 1rem;
}

.desktop-menu a.btn-header span {
  color: #fff;
  font-size: 14px;
  padding: 0.5rem 3rem;
  display: inline-block;
  position: relative;
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.desktop-menu a.btn-header:hover {
  border: none;
}

.desktop-menu a.btn-header:hover span {
  -webkit-transform: translate3d(0, 0, -70px) rotateX(90deg);
          transform: translate3d(0, 0, -70px) rotateX(90deg);
}

.desktop-menu a.btn-header:hover span::after {
  content: attr(data-text);
  color: #fff;
  position: absolute;
  text-wrap: nowrap;
  inset: 0;
  text-align: center;
  padding: 0.5rem 3rem;
  border-radius: 24px;
  background-color: var(--theme-color);
  display: inline-block;
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);
          transform: translate3d(0, 100%, 0) rotateX(-90deg);
}

/*-------------------------
* 右側ナビ
* ------------------------
*/
#sidenav {
  position: fixed;
  right: -200px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9999;
  padding: 2rem;
  border-radius: 10px 0 0 10px;
  width: 200px;
  height: auto;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#sidenav.visible {
  right: 0;
  opacity: 1;
}

#sidenav ul {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

#sidenav li {
  margin: 1rem 0;
  white-space: nowrap;
}

#sidenav li a {
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 12px;
}

#sidenav li a:hover {
  border-color: #999;
}

#sidenav li:last-child a {
  background-color: #fff;
  color: #333;
}

/*-------------------------
* 店のコンセプト
* ------------------------
*/
/*-------------------------
* Concept Section
* ------------------------
*/
#concept .inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-text {
  padding: 1rem;
  text-align: center;
}

@media screen and (max-width: 1140px) {
  #concept .content-text {
    max-width: unset;
  }
  #concept .content-text p {
    font-size: 14px;
  }
  #concept .inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 96vw;
  }
}

@media screen and (max-width: 480px) {
  #concept .content-text {
    padding: 0.2rem;
  }
  #concept .content-text p {
    text-align: center;
    text-wrap: stable;
    max-width: 98vw;
    font-size: 14px;
  }
}

#courses {
  padding: 0;
}

#courses .section-bg-img {
  width: 100%;
  max-width: unset;
  opacity: 0.5;
  overflow: hidden;
  width: 100%;
  height: 50vh;
  position: relative;
}

#courses .section-bg-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center bottom;
     object-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
}

#courses .container-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  padding-bottom: 10rem;
}

#courses .container-inner h2 {
  margin: 0;
  padding: 0;
}

#courses h3 {
  font-size: 20px;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  width: 600px;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  max-width: 300px;
}

.wine-context {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  text-align: center;
  padding: 1rem;
  font-size: 18px;
  text-align: center;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.course-swiper,
.wine-swiper {
  width: 100%;
  padding: 1rem;
  height: 100%;
}

.course-swiper .swiper-button-prev,
.course-swiper .swiper-button-next,
.wine-swiper .swiper-button-prev,
.wine-swiper .swiper-button-next {
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.course-swiper .swiper-button-prev:after,
.course-swiper .swiper-button-next:after,
.wine-swiper .swiper-button-prev:after,
.wine-swiper .swiper-button-next:after {
  font-size: 20px;
}

.course-swiper .swiper-button-next:after,
.course-swiper .swiper-button-prev:after,
.wine-swiper .swiper-button-next:after,
.wine-swiper .swiper-button-prev:after {
  text-rendering: initial;
}

.course-swiper .swiper-button-next,
.wine-swiper .swiper-button-next {
  -webkit-transform: translatex(-20vw);
          transform: translatex(-20vw);
}

.course-swiper .swiper-button-prev,
.wine-swiper .swiper-button-prev {
  -webkit-transform: translatex(20vw);
          transform: translatex(20vw);
}

.swiper-wrapper {
  height: 100%;
}

.swiper-wrapper .course-slide {
  text-align: center;
  padding: 20px auto 0;
  max-width: 800px;
  -ms-grid-column-align: center;
      justify-self: center;
}

.swiper-wrapper .course-slide:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

.swiper-wrapper .course-slide img {
  width: 100%;
  max-height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  text-align: center;
}

.swiper-wrapper .course-slide h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
}

.swiper-wrapper .course-slide p {
  font-size: 16px;
  line-height: 1.6;
}

.swiper-wrapper .course-slide ul {
  padding-inline: 1rem;
  list-style-type: none;
  font-size: 14px;
}

.wine-swiper {
  max-height: 600px;
  overflow-y: hidden;
}

.course-swiper .swiper-slide,
.wine-swiper .swiper-slide {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.course-swiper .swiper-slide-active,
.wine-swiper .swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 2;
}

.course-swiper .swiper-slide-prev,
.course-swiper .swiper-slide-next,
.wine-swiper .swiper-slide-prev,
.wine-swiper .swiper-slide-next {
  opacity: 0.4;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.swiper-3d .swiper-wrapper {
  height: auto;
}

@media screen and (max-width: 767px) {
  .course-swiper,
  .wine-swiper {
    max-width: 100vw;
    height: auto;
  }
  .course-swiper .swiper-button-next,
  .wine-swiper .swiper-button-next {
    -webkit-transform: unset;
            transform: unset;
  }
  .course-swiper .swiper-button-prev,
  .wine-swiper .swiper-button-prev {
    -webkit-transform: unset;
            transform: unset;
  }
  .course-swiper .swiper-button-next,
  .course-swiper .swiper-button-prev {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  .swiper-wrapper .course-slide h3 {
    font-size: 20px;
  }
  .swiper-wrapper .course-slide p {
    font-size: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1440px) {
  .course-swiper,
  .wine-swiper {
    height: auto;
  }
  .course-swiper .swiper-button-next {
    -webkit-transform: translatex(-20vw) translateY(-200px);
            transform: translatex(-20vw) translateY(-200px);
  }
  .course-swiper .swiper-button-prev {
    -webkit-transform: translatex(20vw) translateY(-200px);
            transform: translatex(20vw) translateY(-200px);
  }
  .wine-swiper .wine-context {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .swiper-wrapper .course-slide ul {
    padding-inline: 0;
  }
  .course-swiper {
    padding: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .wine-context p {
    font-size: 16px !important;
  }
}

#reservation {
  padding-top: 0;
}

#reservation .inner {
  background-color: #fff;
  min-height: 400px;
  margin-inline: auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #333;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 800px;
}

#reservation .inner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#reservation .inner div:first-child {
  margin-inline: auto;
}

#reservation .inner .small-text {
  display: block;
  opacity: 0.5;
  padding-inline: 1rem;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

#reservation .inner .small-text a {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1.5px solid #33333350;
}

#reservation .inner .small-text a:link {
  color: #333333;
}

#reservation .inner span {
  font-weight: 200;
  font-size: 18px;
}

#reservation .inner div:not(.wrapper) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 600px;
  padding: 2rem;
}

#reservation .inner div:not(.wrapper) img {
  width: 100%;
  min-width: 180px;
  max-width: 200px;
}

#reservation .inner div:not(.wrapper):nth-child(2) {
  border-top: 1px solid rgba(17, 17, 17, 0.2);
}

#reservation .btn-external {
  padding: 0.2rem 2rem;
  margin-top: 0.5rem;
  background-color: #a6435a;
  border-radius: 24px;
  color: #fff;
  font-size: 14px;
}

#reservation .wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#reservation .wrapper a:hover {
  cursor: pointer;
}

#reservation .wrapper img {
  width: 80% !important;
  margin-block: 1rem;
}

/*-------------------------
* 店舗情報
* ------------------------
*/
#shop-info {
  color: #ffffff;
  padding: 80px 20px 40px;
  position: relative;
}

#shop-info p {
  text-align: left;
}

#shop-info .shop-info-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

#shop-info .shop-info-title span {
  display: block;
  font-size: 18px;
  color: #cccccc;
  margin-top: 10px;
  font-weight: 300;
}

#shop-info .info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  max-width: 1200px;
  margin-inline: auto;
  padding: 2rem;
}

#shop-info .info-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
  max-width: 600px;
}

#shop-info .info-item {
  border-bottom: 1px solid #444;
  padding: 20px 0;
}

#shop-info .info-item h3 {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 5px;
  letter-spacing: 1px;
  font-weight: 400;
}

#shop-info .info-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

#shop-info .info-item:first-child span {
  background: transparent;
  border: 1px solid;
  padding: 0.2rem 1.5rem;
  border-radius: 24px;
  font-size: 0.9em;
  line-height: 40px;
  vertical-align: middle;
}

#shop-info .info-item ul {
  list-style: none;
}

#shop-info .info-item small {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  #shop-info .section-bg-img {
    bottom: 4%;
    right: 0;
    width: 100%;
  }
  #shop-info .group-reservation p:last-child {
    font-size: 1.5rem;
  }
  #shop-info .info-row {
    max-width: 90vw;
    margin-inline: auto;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    gap: 0;
  }
}

.map {
  text-align: center;
}

.map img {
  width: 100%;
  margin-inline: auto;
  max-width: 1200px;
}

@media screen and (max-width: 480px) {
  #shop-info .info-row {
    padding: 1rem;
  }
}

/*-------------------------
* SNSとフッター
* ------------------------
*/
.container-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding-top: 2rem;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container-sns svg {
  text-align: center;
  width: 60px;
  height: 60px;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .container-sns {
    padding-block: 2rem;
  }
  .container-sns svg {
    width: 40px;
    height: 40px;
  }
}

footer {
  background: #0a0a0a;
  text-align: center;
}

footer .wrapper {
  padding: 4rem 2rem;
}

footer .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

footer .inner a {
  color: #fff;
}

footer .p-copyright {
  opacity: 0.5;
  font-size: 0.9rem;
}

footer .container-logo img {
  max-width: 200px;
}

/*-------------------------
* アニメ効果と外部ライブラリー
* ------------------------
*/
.fade {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.fadein {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.fade-left {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.fade.is-active {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/*-------------------------
* 全体レイアウトのモバイル調整
* ------------------------
*/
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
  section {
    padding-block: 2rem;
  }
  section h2 {
    font-size: 2.5rem;
    padding-block: 2rem;
  }
  section:nth-child(1) {
    -webkit-padding-before: 0;
            padding-block-start: 0;
  }
  #concept .content-img {
    max-width: 90vw;
    margin-inline: auto;
    min-width: unset;
    border-right-width: 10px;
    border-bottom-width: 10px;
    -webkit-transform: translate(0, -50px) rotate(0deg);
            transform: translate(0, -50px) rotate(0deg);
  }
  #courses .section-bg-img img {
    -o-object-position: 75% center;
       object-position: 75% center;
  }
  #courses .course-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #courses .course-section .course-menu {
    width: 100%;
  }
  #courses .slide-container .slide-wrapper {
    height: 100%;
    max-height: unset;
    margin-inline: 1rem;
  }
  #courses .course-slide {
    min-width: unset;
    width: 100%;
    padding: 0;
  }
  #courses .course-slide .course-content {
    padding: 0;
    display: unset;
    gap: unset;
  }
  #courses .course-slide .course-content h3 {
    font-size: 1.5rem;
  }
  #courses .course-slide .course-content .gallery {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    width: 100%;
    margin-inline: auto;
  }
  #courses .course-slide .course-content .gallery a:nth-of-type(3),
  #courses .course-slide .course-content .gallery a:nth-last-of-type(4) {
    display: none !important;
  }
  #reservation .inner {
    max-width: 90vw;
  }
  #reservation .inner div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  #reservation .inner .small-text {
    width: 90vw;
    text-align: center;
    margin-inline: auto;
  }
  #nav-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
  }
  #nav-open:hover {
    cursor: pointer;
  }
  .nav-content {
    display: none;
  }
  #wine-info {
    max-width: 90vw;
    margin-inline: auto;
  }
  #wine-info .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #wine-info .inner .container-img {
    width: 100%;
  }
  #wine-info .inner .container-text {
    text-align: left;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: break-word;
    width: 100%;
    max-width: inherit;
    padding: 2rem;
  }
}
