@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "A1明朝", serif;
  font-size: 14px;
  line-height: 2.2;
  color: #0f2e60;
}

@-webkit-keyframes grow {
  0%, 10%, 90%, 100% {
    clip-path: inset(0 50% 0 50%);
  }
  50% {
    clip-path: inset(0 0% 0 0%);
  }
}
@keyframes grow {
  0%, 10% {
    clip-path: inset(0 50% 0 50%);
  }
  90%, 100% {
    clip-path: inset(0 0% 0 0%);
  }
}
.heading-en {
  position: relative;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  padding: 0 16px;
  text-align: center;
  -webkit-text-stroke: 1px rgba(213, 186, 108, 0.4);
  -webkit-text-fill-color: transparent;
}
.heading-en::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  white-space: nowrap;
  content: attr(data-text);
  background: -webkit-gradient(linear, left top, left bottom, from(#d5ba6c), to(rgba(213, 186, 108, 0.65)));
  background: linear-gradient(to bottom, #d5ba6c 0%, rgba(213, 186, 108, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(0 50% 0 50%);
}
.heading-en.is-animated::after {
  -webkit-animation: grow 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  animation: grow 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.heading-en {
  font-size: 52px;
}

.menu-item__en {
  position: relative;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  padding: 0 16px;
  text-align: center;
  -webkit-text-stroke: 1px rgba(213, 186, 108, 0.4);
  -webkit-text-fill-color: transparent;
}
.menu-item__en::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  white-space: nowrap;
  content: attr(data-text);
  background: -webkit-gradient(linear, left top, left bottom, from(#d5ba6c), to(rgba(213, 186, 108, 0.65)));
  background: linear-gradient(to bottom, #d5ba6c 0%, rgba(213, 186, 108, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(0 50% 0 50%);
}
.menu-item__en.is-animated::after {
  -webkit-animation: grow 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  animation: grow 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.menu-item__en {
  font-size: 42px;
}

.heading-ja {
  font-family: "A1明朝", serif;
  font-size: 14px;
  line-height: 2.2;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.fade-up.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.bg {
  display: none;
  background: #f4f1ee;
}
@media (min-width: 750px) {
  .bg {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
  }
  .bg__video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.main-content {
  background: #fff;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
@media (min-width: 750px) {
  .main-content {
    margin-left: min(10%, 100px);
    width: 50%;
    height: 100vh;
    overflow-y: auto;
  }
}
@media (min-width: 1400px) {
  .main-content {
    width: 600px;
  }
}

.sidebar {
  display: none;
}
@media (min-width: 750px) {
  .sidebar {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    height: 100vh;
    overflow-y: auto;
    width: calc(100% - min(10%, 100px) - 50%);
  }
}
@media (min-width: 1400px) {
  .sidebar {
    width: calc(100% - min(10%, 100px) - 600px);
  }
}

.sidebar-logo {
  position: absolute;
  top: 32px;
  right: 40px;
  width: 120px;
}
.sidebar-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.sidebar-logo a {
  display: block;
  text-decoration: none;
}

.sidebar-nav {
  list-style: none;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}
.sidebar-nav__item a {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding-bottom: 6px;
}
.sidebar-nav__item a:hover {
  border-bottom: 1px solid #fff;
}
.sidebar-nav__en {
  font-family: "Libre Baskerville", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.sidebar-nav__ja {
  font-family: "A1明朝", serif;
  font-size: 13px;
  line-height: 1;
}

.sidebar-instagram {
  width: 100%;
  max-width: 320px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 20px;
  border: 1px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.sidebar-instagram:hover {
  opacity: 0.6;
}

.sidebar-inner {
  width: 100%;
  height: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  padding: 13%;
}

.sidebar-nav__char {
  display: inline-block;
  opacity: 0;
}

.sidebar-instagram {
  opacity: 0;
}

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.mv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mv__logo {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.mv__logo img {
  width: 200px;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  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;
  gap: 6px;
  padding: 0;
}
@media (min-width: 750px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #000;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) {
  -webkit-transform: rotate(30deg) translate(4px, 6px);
          transform: rotate(30deg) translate(4px, 6px);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  -webkit-transform: rotate(-30deg) translate(4px, -6px);
          transform: rotate(-30deg) translate(4px, -6px);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 90%;
  height: 100%;
  background: #fff;
  z-index: 90;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  overflow-y: auto;
}
.drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-nav {
  padding: 100px 40px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 72px;
}
.drawer-nav__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.drawer-nav__item a {
  text-decoration: none;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.drawer-nav__en {
  color: #0f2e60;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.drawer-nav__ja {
  color: #0f2e60;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.drawer-instagram {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid #0f2e60;
  border-radius: 40px;
  text-decoration: none;
  color: #0f2e60;
  font-size: 14px;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.drawer-instagram:hover {
  opacity: 0.6;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-nav__char {
  display: inline-block;
  opacity: 0;
}

.drawer-instagram {
  opacity: 0;
}

.intro {
  padding: 80px 40px;
}
.intro__text {
  font-family: "A1明朝", serif;
  font-size: 14px;
  line-height: 2.2;
  text-align: center;
}

.parallax {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.parallax__inner {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
}
.parallax__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
}

.parallax--drinks {
  height: 260px;
}

.parallax--address {
  height: 600px;
}

.menu {
  padding: 80px 0;
}
.menu .heading-en {
  color: #d5ba6c;
  padding: 0 16px;
  margin-bottom: 24px;
  text-align: center;
}
.menu__image {
  margin: 0 32px;
  margin-bottom: 40px;
}
.menu__image img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 60px 0;
}
.menu-item__en {
  color: #d5ba6c;
  font-family: "Libre Baskerville", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  padding: 0 16px;
}
.menu-item__ja {
  color: #d5ba6c;
  font-family: "A1明朝", serif;
  font-size: 14px;
  text-align: center;
  margin-top: -20px;
  margin-bottom: -20px;
  padding: 0 16px;
}
.menu-item__text {
  font-family: "A1明朝", serif;
  font-size: 14px;
  line-height: 2.2;
  text-align: center;
  margin-block: 32px;
  padding: 0 16px;
}
.menu-item__note {
  background: #d5ba6c;
  color: #fff;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2.2;
  text-align: center;
  padding: 32px 16px;
  margin: 0 -16px;
}

.menu-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  padding: 120px 0;
}
.menu-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.menu-list__visual {
  position: relative;
  width: 90%;
  margin: 20px auto;
  padding-top: 59.5238095238%;
}
.menu-list__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-list__bg.is-animated {
  clip-path: inset(0 0% 0 0);
}
.menu-list__img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: calc(100% + 80px);
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.menu-list__img.is-animated {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.menu-list__body {
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.menu-list__name {
  color: #d5ba6c;
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
}
.menu-list__price {
  color: #d5ba6c;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  text-align: center;
  margin-top: -16px;
}
.menu-list__desc {
  font-family: "A1明朝", serif;
  font-size: 14px;
  line-height: 2.2;
  text-align: center;
  padding-inline: 28px;
}

.menu-instagram {
  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;
  gap: 16px;
  padding: 0px 16px 100px 16px;
}
.menu-instagram__text {
  font-family: "A1明朝", serif;
  font-size: 14px;
  line-height: 2.2;
  text-align: center;
}
.menu-instagram__btn {
  width: 80%;
  max-width: 360px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid currentColor;
  border-radius: 50px;
  text-decoration: none;
  color: inherit;
  font-family: "Libre Baskerville", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.menu-instagram__btn:hover {
  opacity: 0.6;
}

@-webkit-keyframes sway {
  0%, 100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
@keyframes sway {
  0%, 100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
.howto {
  background: #f4f1ee;
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  overflow: hidden;
}
.howto__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.howto__item--left .howto__circle {
  margin-left: -8%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.howto__item--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.howto__item--right .howto__circle {
  margin-right: -6%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.howto__item--right .howto__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 16px;
  padding-left: 0;
}
.howto__item--right .howto__text {
  text-align: right;
}
.howto__circle {
  width: 47%;
  height: auto;
  aspect-ratio: 1/1;
  max-width: 300px;
  max-height: 300px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.howto__illust {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-animation: sway 2s ease-in-out infinite;
  animation: sway 2s ease-in-out infinite;
}
.howto__illust:first-child {
  margin-left: 16px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.howto__illust:nth-child(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.howto__body {
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.howto__body:first-child {
  margin-top: -20px;
}
.howto__sub {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-left: -40px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.howto__sub.is-animated {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.howto__text {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.menu-drinks .menu-drink__note {
  margin: 0 32px;
}

.menu-foods .menu-list {
  padding: 20px 0;
}
.menu-foods .menu-list--text .menu-list__item {
  padding-top: 32px;
}
.menu-foods .menu-list--text .menu-list__ja {
  font-family: "A1明朝", serif;
  font-size: 14px;
  color: #d5ba6c;
  margin-top: -18px;
  margin-bottom: 16px;
  text-align: center;
}
.menu-foods .menu-list--text .menu-list__desc {
  -moz-text-align-last: left;
  text-align-last: left;
}

.address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding-bottom: 80px;
}
.address__info {
  padding: 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.address__name {
  font-family: "A1明朝", serif;
  font-size: 19px;
  line-height: 1.4;
}
.address__text {
  font-family: "A1明朝", serif;
  font-size: 14px;
  line-height: 2.2;
}
.address__map {
  margin: 0 28px;
}
.address__map iframe {
  display: block;
  width: 100%;
  height: 600px;
  -webkit-filter: sepia(40%) saturate(60%) brightness(1.05);
  filter: sepia(40%) saturate(60%) brightness(1.05);
}

.instagram {
  padding: 80px 0;
  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;
  gap: 32px;
}
.instagram__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.instagram__item {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.instagram__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.instagram__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.story {
  padding-bottom: 80px;
}
.story .heading-en {
  margin-top: 60px;
  margin-bottom: 40px;
}
.story__text {
  font-family: "A1明朝", serif;
  font-size: 14px;
  line-height: 2.2;
  padding: 0 32px;
  margin-bottom: 48px;
}
.story__photo {
  overflow: hidden;
  margin-bottom: 40px;
}
.story__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.story__photo--left {
  width: 73.1428571429%;
  aspect-ratio: 512/340;
  margin-right: auto;
}
.story__photo--right {
  width: 65.1428571429%;
  aspect-ratio: 456/452;
  margin-left: auto;
  margin-bottom: 48px;
}
.story__photo--center {
  margin: 0 32px 48px;
}
.story__photo--center img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

@-webkit-keyframes charSlideUp {
  from {
    -webkit-transform: translateY(105%);
            transform: translateY(105%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes charSlideUp {
  from {
    -webkit-transform: translateY(105%);
            transform: translateY(105%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.follow {
  padding: 64px 0 80px;
  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;
  gap: 28px;
}
.follow__text {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  color: #d5ba6c;
  letter-spacing: 0.08em;
  text-align: center;
}
.follow__text > span {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.follow__text > span > span {
  display: inline-block;
}
.follow__text.is-animated > span > span {
  -webkit-animation: charSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
  animation: charSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}
.follow__icon {
  display: block;
  color: #0f2e60;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.follow__icon:hover {
  opacity: 0.6;
}
.follow__icon svg {
  display: block;
  width: 52px;
  height: 52px;
}

.footer-illust {
  width: 100%;
}
.footer-illust img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

.parallax--story {
  height: 400px;
  margin-bottom: 0;
}