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

html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

.wide {
  width: 92%;
  margin: auto;
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 2.5vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

.site-header {
  position: fixed;
  z-index: 999;
  background-color: #5d432c;
  height: 100px;
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .site-header {
    background-color: rgba(0, 0, 0, 0);
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .site-header {
    background-color: rgba(0, 0, 0, 0);
    height: 80px;
  }
}
.site-header .header-texture {
  position: absolute;
  inset: 0;
  background-image: url("./images/header-texture.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .site-header .header-texture {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .site-header .header-texture {
    display: none;
  }
}
.site-header .header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 40px;
}
.site-header .header-nav {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .site-header .header-nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .site-header .header-nav {
    display: none;
  }
}
.site-header .header-nav__list {
  display: flex;
  align-items: center;
  gap: 60px;
  list-style: none;
}
.site-header .header-nav__item a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}
.site-header .header-nav__item a:hover {
  opacity: 0.75;
}
.site-header .header-tel {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  color: #5d432c;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 12px 20px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .site-header .header-tel {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .site-header .header-tel {
    display: none;
  }
}
.site-header .header-tel .fa-phone {
  font-size: 1.4rem;
}
.site-header .header-tel:hover {
  opacity: 0.85;
}
.site-header .hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: #5d432c;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .site-header .hamburger-btn {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .site-header .hamburger-btn {
    display: flex;
  }
}
.site-header .hamburger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
.drawer-overlay.is-open {
  display: block;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 375px;
  height: 100%;
  background-color: #5d432c;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .drawer-menu {
    width: 100%;
  }
}
.drawer-menu.is-open {
  transform: translateX(0);
}
.drawer-menu .drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 999999999;
}
.drawer-menu .drawer-close img {
  width: 30px;
  height: 30px;
}
.drawer-menu .drawer-logo {
  display: flex;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 40px;
  width: 40%;
  margin: auto;
}
.drawer-menu .drawer-logo img {
  width: 100%;
}
.drawer-menu .drawer-nav {
  list-style: none;
  padding: 0 40px;
}
.drawer-menu .drawer-nav__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.drawer-menu .drawer-nav__item a:hover {
  opacity: 0.75;
}
.drawer-menu .drawer-nav__item a img {
  width: 17px;
  height: 18px;
  flex-shrink: 0;
}
.drawer-menu .drawer-nav__divider {
  border-top: 1px dotted rgba(255, 255, 255, 0.5);
}

.mv {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv {
    height: 420px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: 320px;
  }
}
.mv__slider {
  position: absolute;
  inset: 0;
}
.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.mv__slide.is-active {
  opacity: 1;
}
.mv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.mv__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(66, 45, 18, 0.2);
}
.mv__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 80px;
  gap: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__content {
    padding: 0 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .mv__content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    gap: 16px;
  }
}
.mv__logo {
  flex-shrink: 0;
  width: 280px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__logo {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .mv__logo {
    width: 140px;
  }
}
.mv__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.mv__catch {
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1.6;
  text-shadow: 6px 6px 20px #422d12;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__catch {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .mv__catch {
    font-size: 2.4rem;
  }
}
.mv__catch p {
  font-size: inherit;
  line-height: inherit;
}
.mv__dots {
  display: none;
}
.mv__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}
.mv__dot.is-active {
  background-color: #fff;
}

.info {
  background-color: #d9b98a;
  padding-bottom: 80px;
  background-image: url("./images/info_bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .info {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .info {
    padding-bottom: 50px;
  }
}
.info__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 50px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .info__head {
    padding: 10px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .info__head {
    padding: 10px 0 30px;
  }
}
.info__icon {
  width: 80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .info__icon {
    width: 64px;
  }
}
.info__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.info__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-size: 4.8rem;
  color: #422d12;
  letter-spacing: 1.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .info__title {
    font-size: 3.6rem;
    letter-spacing: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .info__title {
    font-size: 2.6rem;
    letter-spacing: 0.8rem;
  }
}
.info__line {
  width: 60px;
  height: 3px;
  background-color: #422d12;
}
.info__body {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .info__body {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .info__body {
    flex-direction: column;
    gap: 30px;
  }
}
.info__image {
  flex: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .info__image {
    width: 100%;
  }
}
.info__image img {
  width: 100%;
  height: auto;
  display: block;
}
.info__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info__lead {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: #422d12;
  line-height: 1.6;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .info__lead {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .info__lead {
    font-size: 2rem;
  }
}
.info__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #422d12;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .info__desc {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .info__desc {
    font-size: 1.4rem;
  }
}

.feature {
  background-color: #5d432c;
  position: relative;
}
.feature__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 50px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__head {
    padding: 50px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .feature__head {
    padding: 40px 0 30px;
  }
}
.feature__icon {
  width: 120px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .feature__icon {
    width: 90px;
  }
}
.feature__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.feature__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-size: 4.8rem;
  color: #fff;
  letter-spacing: 1.6rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__title {
    font-size: 3.6rem;
    letter-spacing: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__title {
    font-size: 2.8rem;
    letter-spacing: 0.8rem;
  }
}
.feature__line {
  width: 60px;
  height: 2px;
  background-color: #fff;
}
.feature__block {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .feature__block {
    flex-direction: column;
  }
}
.feature__block-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .feature__block-image img {
    width: 95% !important;
  }
}
.feature__block-image img:first-child {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.feature__block-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(66, 45, 18, 0.1);
  pointer-events: none;
}
.feature__block-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px;
  background-color: #5d432c;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__block-text {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  .feature__block-text {
    padding: 40px 24px;
  }
}
.feature__block-icon01 {
  width: 15vw;
  height: auto;
  display: block;
  margin-bottom: 16px;
  position: absolute;
  top: 35%;
  left: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__block-icon01 {
    top: 45vw;
  }
}
@media screen and (max-width: 768px) {
  .feature__block-icon01 {
    top: 10%;
    width: 30vw;
  }
}
.feature__block-icon {
  width: 15vw;
  height: auto;
  display: block;
  margin-bottom: 16px;
  position: absolute;
  top: 70%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .feature__block-icon {
    top: 75%;
    width: 30vw;
  }
}
.feature__block-title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__block-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .feature__block-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.feature__block-desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__block-desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__block-desc {
    font-size: 1.3rem;
  }
}
.feature__photos {
  display: flex;
  width: 80%;
  margin: 4vw auto;
  padding-left: 5vw;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .feature__photos {
    width: 95%;
  }
}
.feature__photo {
  flex: 1;
  position: relative;
  overflow: hidden;
  width: 50%;
}
.feature__photo img:first-child {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.feature__photo--illustration {
  position: relative;
}
.feature__illustration {
  position: absolute;
  pointer-events: none;
}
.feature__illustration--wineglass {
  bottom: 0;
  left: 0;
  width: 35%;
  height: auto;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .feature__illustration--wineglass {
    width: 50%;
  }
}
.feature__illustration--drink {
  bottom: 0;
  right: 0;
  width: 35%;
  height: auto;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .feature__illustration--drink {
    width: 50%;
  }
}

.menu {
  background-color: #d9b98a;
  background-image: url("./images/info_bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  padding-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .menu {
    padding-bottom: 50px;
  }
}
.menu__wave {
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu__wave {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .menu__wave {
    height: 50px;
  }
}
.menu__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 50px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu__head {
    padding: 10px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .menu__head {
    padding: 10px 0 30px;
  }
}
.menu__icon {
  width: 80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .menu__icon {
    width: 64px;
  }
}
.menu__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.menu__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-size: 4.8rem;
  color: #422d12;
  letter-spacing: 1.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu__title {
    font-size: 3.6rem;
    letter-spacing: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .menu__title {
    font-size: 2.6rem;
    letter-spacing: 0.8rem;
  }
}
.menu__line {
  width: 60px;
  height: 3px;
  background-color: #422d12;
}
.menu__body {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu__body {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .menu__body {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.menu__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media screen and (max-width: 768px) {
  .menu__text {
    gap: 24px;
  }
}
.menu__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #422d12;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu__desc {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .menu__desc {
    font-size: 1.5rem;
  }
  .menu__desc br {
    display: none;
  }
}
.menu__price {
  position: relative;
  display: inline-block;
}
.menu__price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  height: 85%;
  border: 2px solid #422d12;
  pointer-events: none;
}
.menu__price-text {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border: 2px solid #422d12;
  background-color: #fff;
  padding: 16px 40px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  color: #422d12;
  font-size: 3.2rem;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu__price-text {
    font-size: 2.6rem;
    padding: 14px 30px;
  }
}
@media screen and (max-width: 768px) {
  .menu__price-text {
    font-size: 2.2rem;
    padding: 12px 24px;
  }
}
.menu__price-num {
  font-size: 4.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu__price-num {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .menu__price-num {
    font-size: 3.2rem;
  }
}
.menu__price-unit {
  font-size: 3.6rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .menu__price-unit {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .menu__price-unit {
    font-size: 2.4rem;
  }
}
.menu__image {
  flex: 1;
}
.menu__image img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery {
  background-color: #5d432c;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .gallery {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .gallery {
    padding-bottom: 50px;
  }
}
.gallery__deco {
  position: absolute;
  top: 5vw;
  width: 280px;
  opacity: 0.9;
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .gallery__deco {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__deco {
    width: 20vw;
    height: 20vw;
  }
}
.gallery__deco img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .gallery__deco img {
    height: 100%;
  }
}
.gallery__deco--left {
  left: 0;
}
.gallery__deco--right {
  right: 0;
}
.gallery__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 50px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .gallery__head {
    padding: 50px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__head {
    padding: 40px 0 30px;
  }
}
.gallery__icon {
  width: 120px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .gallery__icon {
    width: 90px;
  }
}
.gallery__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-size: 4.8rem;
  color: #fff;
  letter-spacing: 1.6rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .gallery__title {
    font-size: 3.6rem;
    letter-spacing: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .gallery__title {
    font-size: 2.8rem;
    letter-spacing: 0.8rem;
  }
}
.gallery__line {
  width: 60px;
  height: 2px;
  background-color: #fff;
}
.gallery__slider-wrap {
  overflow: hidden;
}
.gallery__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: gallery-scroll 25s linear infinite;
}
.gallery__slide {
  flex: 0 0 25vw;
  padding: 0 4px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .gallery__slide {
    flex: 0 0 50vw;
  }
}
@media screen and (max-width: 768px) {
  .gallery__slide {
    flex: 0 0 80vw;
  }
}
.gallery__slide img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .gallery__slide img {
    height: 280px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__slide img {
    height: 220px;
  }
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.footer-info {
  position: relative;
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-info {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-info {
    padding: 50px 0;
  }
}
.footer-info__bg {
  position: absolute;
  inset: 0;
}
.footer-info__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.footer-info__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(66, 45, 18, 0.7);
}
.footer-info__inner {
  position: relative;
  width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-info__inner {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  .footer-info__inner {
    width: 90%;
    gap: 30px;
  }
}

.footer-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer-table {
    font-size: 1.3rem;
  }
}
.footer-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-table tr:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-table th {
  width: 130px;
  padding: 16px 20px;
  font-weight: 400;
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-table th {
    width: 110px;
    padding: 14px 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer-table th {
    width: 90px;
    padding: 12px 12px;
    text-align: left;
    font-size: 1.2rem;
  }
}
.footer-table td {
  padding: 16px 20px;
  vertical-align: top;
  line-height: 1.7;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-table td {
    padding: 14px 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer-table td {
    padding: 12px 8px;
    font-size: 1.3rem;
  }
}

.footer-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  color: #5d432c;
  text-decoration: none;
  font-family: "Work Sans", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  padding: 10px 30px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-tel {
    font-size: 2.2rem;
    padding: 10px 24px;
  }
}
@media screen and (max-width: 768px) {
  .footer-tel {
    font-size: 2rem;
    padding: 10px 20px;
  }
}
.footer-tel img {
  width: 20px;
  height: auto;
  flex-shrink: 0;
}
.footer-tel:hover {
  opacity: 0.85;
}

.footer-map {
  width: 100%;
  line-height: 0;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 450px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-map iframe {
    height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .footer-map iframe {
    height: 320px;
  }
}

.footer-copy {
  background-color: #5d432c;
  text-align: center;
  padding: 20px;
}
.footer-copy p {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer-copy p {
    font-size: 1.1rem;
  }
}/*# sourceMappingURL=style.css.map */