:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

html {
  background: #ddd2c3;
}

main {
  position: relative;
  background: #ddd2c3;
  overflow: hidden;
  z-index: 0;
}

* {
  color: #3e2923;
  font-family: YakuHanMP, "Zen Old Mincho", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.fixedbanner {
  display: none;
}
@media screen and (max-width: 768px) {
  .fixedbanner {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
  }
  .fixedbanner__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    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: max(2rem, 5px);
    padding: max(1.5rem, 10px) 0;
    background: #3e2923;
  }
  .fixedbanner__btn:not(:last-of-type) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .fixedbanner__btn img {
    width: max(12rem, 40px);
  }
  .fixedbanner__btn span {
    color: #fff;
    font-size: max(3rem, 11px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  padding: max(1.5rem, 15px) max(3rem, 20px);
  z-index: 9999;
}
#header h1.header__logo {
  pointer-events: auto;
}
#header h1.header__logo a {
  width: max(28rem, 200px);
}
#header .header__list {
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1rem, 10px);
}
@media screen and (max-width: 768px) {
  #header .header__list {
    display: none;
  }
}
#header .header__list--item a img {
  -webkit-filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.15));
          filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.15));
  -webkit-transition: -webkit-filter 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: -webkit-filter 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: filter 0.3s ease-out, transform 0.3s ease-out;
  transition: filter 0.3s ease-out, transform 0.3s ease-out, -webkit-filter 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
#header .header__list--item a:hover img {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  -webkit-filter: drop-shadow(0px 0px 0 rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px 0 rgba(0, 0, 0, 0));
}

.footer {
  position: relative;
  z-index: 0;
}
.footer__decor {
  position: absolute;
  inset: 0;
}
.footer__decor--circle1 {
  position: absolute;
  left: 15%;
  bottom: 0;
  width: max(28rem, 150px);
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .footer__decor--circle1 {
    bottom: 20%;
    left: 0;
  }
}
@media screen and (max-width: 550px) {
  .footer__decor--circle1 {
    bottom: 40%;
    left: -15%;
  }
}
.footer__decor--image1 {
  position: absolute;
  bottom: 0;
  right: 12.5%;
  width: max(28rem, 150px);
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .footer__decor--image1 {
    bottom: 20%;
    right: 0;
  }
}
@media screen and (max-width: 550px) {
  .footer__decor--image1 {
    bottom: 50%;
    right: -10%;
  }
}
.footer__wrapper {
  position: relative;
  z-index: 10;
}
.footer__wrapper .footer__more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: max(7rem, 30px);
  width: max(50%, 450px);
  padding: max(6rem, 40px) 10%;
  margin: 0 auto;
  background: #d5bca5;
  border: max(0.2rem, 2px) solid #fff;
  border-radius: max(1rem, 10px);
  -webkit-box-shadow: 0 3px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media screen and (max-width: 550px) {
  .footer__wrapper .footer__more {
    width: 90%;
  }
}
.footer__wrapper .footer__more--icon {
  width: max(24.5rem, 130px);
}
.footer__wrapper .footer__more--text {
  font-family: YakuHanMP, "Butler", "Zen Old Mincho", sans-serif;
  color: #000;
  font-size: max(1.6rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
.footer__wrapper .footer__more--bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.footer__wrapper .footer__more--bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.footer__wrapper .footer__more:hover .footer__more--bg img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.footer__wrapper .footer__bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px max(2rem, 20px);
  padding: max(1rem, 10px) 10%;
  margin-top: max(13rem, 50px);
  background: #3e2923;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .footer__wrapper .footer__bottom {
    -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;
    padding: 25px 10%;
  }
}
@media screen and (max-width: 550px) {
  .footer__wrapper .footer__bottom {
    gap: 50px;
    padding: 40px 5% 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.footer__wrapper .footer__bottom .footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(8rem, 30px);
}
@media screen and (max-width: 550px) {
  .footer__wrapper .footer__bottom .footer__links {
    -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: start;
    gap: 20px;
  }
}
.footer__wrapper .footer__bottom .footer__links--item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(0.5rem, 5px);
}
.footer__wrapper .footer__bottom .footer__links--item a span {
  color: #fff;
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.footer__wrapper .footer__bottom .footer__links--item a span.circle {
  opacity: 0.3;
}
.footer__wrapper .footer__bottom .footer__links--item a:hover {
  opacity: 0.5;
}
.footer__wrapper .footer__bottom .footer__copyright small {
  color: #fff;
  font-family: YakuHanMP, "Butler", "Zen Old Mincho", sans-serif;
  font-size: max(1rem, 10px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

.mask {
  position: absolute;
  inset: 0;
  z-index: -1;
  mix-blend-mode: multiply;
  background-image: url(../images/maskImage.webp);
  background-size: contain;
  background-repeat: repeat;
}

#hero {
  position: relative;
  max-height: 100svh;
  background: #ddd2c3;
  z-index: 0;
}
#hero .hero__decor {
  position: absolute;
  inset: 0;
  z-index: -1;
}
#hero .hero__decor--image1 {
  position: absolute;
  top: 10%;
  left: -1%;
  width: max(17.5vw, 150px);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #hero .hero__decor--image1 {
    top: 20%;
  }
}
@media screen and (max-width: 550px) {
  #hero .hero__decor--image1 {
    width: 150px;
  }
}
#hero .hero__decor--image2 {
  position: absolute;
  top: max(10%, 100px);
  left: 0;
  width: max(9.6875vw, 5%);
}
@media screen and (max-width: 768px) {
  #hero .hero__decor--image2 {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(2);
            transform: scaleY(2);
  }
}
#hero .hero__decor--circle1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: max(15.9vw, 125px);
  -webkit-transform: translate(40%, -10%);
          transform: translate(40%, -10%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #hero .hero__decor--circle1 {
    -webkit-transform: translate(40%, 20%);
            transform: translate(40%, 20%);
  }
}
#hero .hero__decor--circle2 {
  position: absolute;
  right: 7.5%;
  bottom: 10%;
  width: max(12.5vw, 100px);
}
@media screen and (max-width: 768px) {
  #hero .hero__decor--circle2 {
    bottom: 0;
  }
}
#hero .hero__bg {
  width: 85%;
  max-height: 80%;
  margin-left: auto;
  padding-bottom: 12vw;
}
#hero .hero__title {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 11%;
  z-index: 100;
}
#hero .hero__title hgroup p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1.5rem, 15px);
  text-shadow: 0 0 2px #fff;
}
#hero .hero__title hgroup p .icon {
  width: auto;
  height: 1lh;
  -webkit-filter: drop-shadow(0 0 2px #fff);
          filter: drop-shadow(0 0 2px #fff);
}
@media screen and (max-width: 550px) {
  #hero .hero__title hgroup p .icon {
    height: 0.75lh;
  }
}
#hero .hero__title hgroup p .text {
  color: #3e2923;
  font-size: max(4.3rem, 21px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
#hero .hero__title hgroup h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: max(2rem, 10px);
}
#hero .hero__title hgroup h2 img {
  -webkit-filter: drop-shadow(0 0 2px #fff);
          filter: drop-shadow(0 0 2px #fff);
}
#hero .hero__title hgroup h2 img:nth-of-type(1) {
  width: max(64.5rem, 400px);
}
@media screen and (max-width: 550px) {
  #hero .hero__title hgroup h2 img:nth-of-type(1) {
    width: 100%;
  }
}
#hero .hero__title hgroup h2 img:nth-of-type(2) {
  width: max(13rem, 100px);
  margin-top: max(3.5rem, 20px);
}
#hero .hero__title hgroup h2 p {
  margin-top: max(1rem, 10px);
}
#hero .hero__title > p {
  color: #000;
  font-size: max(1.6rem, 12px);
  font-weight: 600;
  line-height: 2.5;
  letter-spacing: 0.1em;
  margin-top: max(4rem, 25px);
  text-shadow: 0 0 2px #fff;
}

#banner {
  position: relative;
  z-index: 100;
}
#banner .banner__wrapper a {
  width: max(65%, 600px);
  margin: 0 auto;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  #banner .banner__wrapper a {
    width: 100%;
  }
}
#banner .banner__wrapper a:hover {
  opacity: 0.8;
}

#preface {
  position: relative;
  z-index: 10;
}
#preface .preface__wrapper {
  position: relative;
  padding-top: max(10rem, 50px);
}
#preface .preface__wrapper .preface__decor {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#preface .preface__wrapper .preface__decor--image1 {
  position: absolute;
  top: -50%;
  right: -7.5%;
  width: max(32.3rem, 200px);
  z-index: 2;
}
@media screen and (max-width: 550px) {
  #preface .preface__wrapper .preface__decor--image1 {
    display: none;
  }
}
#preface .preface__wrapper .preface__decor--image2 {
  position: absolute;
  bottom: 5%;
  left: -12.5%;
  width: max(24rem, 150px);
  z-index: 10;
}
#preface .preface__wrapper .preface__decor--image3 {
  position: absolute;
  bottom: 10%;
  right: 0;
  -webkit-transform: translateX(75%);
          transform: translateX(75%);
  width: max(18.5rem, 100px);
}
@media screen and (max-width: 1000px) {
  #preface .preface__wrapper .preface__decor--image3 {
    bottom: 20%;
  }
}
#preface .preface__wrapper .preface__decor--circle1 {
  position: absolute;
  width: max(28.2rem, 150px);
  left: 0;
  z-index: 0;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}
#preface .preface__wrapper .preface__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(7rem, 30px);
  width: 95%;
  margin: 0 auto;
  padding: max(8rem, 50px) max(9rem, 30px);
  outline: 1px solid #3e2923;
  outline-offset: -10px;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #preface .preface__wrapper .preface__content {
    width: 100%;
    -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: start;
  }
}
#preface .preface__wrapper .preface__content--square1 {
  position: absolute;
  width: max(21rem, 100px);
  right: 0;
  bottom: 0;
  -webkit-transform: translate(75%, 30%);
          transform: translate(75%, 30%);
}
#preface .preface__wrapper .preface__content--title {
  font-size: max(3.4rem, 26px);
  font-weight: 500;
  line-height: 2;
}
#preface .preface__wrapper .preface__content--list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#preface .preface__wrapper .preface__content--list li {
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 1.5;
}
#preface .preface__wrapper .preface__content--list li:not(:last-of-type) {
  padding-bottom: max(1rem, 10px);
  margin-bottom: max(1.5rem, 15px);
  border-bottom: 1px solid rgba(147, 113, 104, 0.25);
}

#intro {
  position: relative;
  margin-top: min(-5rem, -30px);
  background: #9D8B7A;
}
#intro .intro__decor {
  position: absolute;
  inset: 0;
}
#intro .intro__decor--image1 {
  position: absolute;
  top: 0;
  left: 0;
  width: max(38rem, 200px);
}
#intro .intro__decor--image2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: max(49rem, 250px);
}
#intro .intro__decor--circle1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: max(23rem, 100px);
  -webkit-transform: translate(-20%, 45%);
          transform: translate(-20%, 45%);
}
#intro .intro__wrapper {
  position: relative;
  padding-top: max(20rem, 100px);
  padding-bottom: max(18rem, 70px);
  z-index: 0;
}
#intro .intro__wrapper .intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(5rem, 25px);
}
@media screen and (max-width: 1000px) {
  #intro .intro__wrapper .intro__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#intro .intro__wrapper .intro__content--text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#intro .intro__wrapper .intro__content--text h2 {
  color: #fff;
  font-family: YakuHanMP, "Butler", "Zen Old Mincho", sans-serif;
  font-size: max(3.6rem, 26px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: max(3rem, 10px);
}
#intro .intro__wrapper .intro__content--text p {
  color: #fff;
}
#intro .intro__wrapper .intro__content--video {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(76rem, 400px);
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
}
@media screen and (max-width: 1000px) {
  #intro .intro__wrapper .intro__content--video {
    width: 100%;
  }
}
#intro .intro__wrapper .intro__content--video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#instruct {
  position: relative;
  z-index: 0;
}
#instruct .instruct__wrapper {
  padding-top: max(13rem, 70px);
  padding-bottom: max(13rem, 110px);
}
#instruct .instruct__wrapper h2 {
  text-align: center;
  font-size: max(2.6rem, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: max(1.5rem, 15px) 0;
  border-top: max(0.3rem, 3px) dotted rgba(62, 41, 35, 0.4);
  border-bottom: max(0.3rem, 3px) dotted rgba(62, 41, 35, 0.4);
}
#instruct .instruct__wrapper h2:not(:first-of-type) {
  margin-top: max(13rem, 70px);
}
#instruct .instruct__wrapper h3 {
  margin-top: max(6.5rem, 40px);
  margin-bottom: max(3rem, 10px);
  font-size: max(2.2rem, 16px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: left;
}
#instruct .instruct__wrapper > p {
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
#instruct .instruct__wrapper .instruct__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(5rem, 30px) max(3rem, 15px);
}
#instruct .instruct__wrapper .instruct__content.content1 {
  margin-top: max(5rem, 30px);
}
@media screen and (max-width: 1300px) {
  #instruct .instruct__wrapper .instruct__content.content1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
#instruct .instruct__wrapper .instruct__content.content2 {
  margin-top: max(7rem, 50px);
}
@media screen and (max-width: 1000px) {
  #instruct .instruct__wrapper .instruct__content.content2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #instruct .instruct__wrapper .instruct__content {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#instruct .instruct__wrapper .instruct__content figure {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#instruct .instruct__wrapper .instruct__content figure video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#instruct .instruct__wrapper .instruct__content figure figcaption {
  margin-top: 2rem;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

.gallery__wrapper {
  padding-bottom: max(20rem, 120px);
}
.gallery__title h2 {
  text-align: center;
  font-size: max(2.6rem, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: max(1.5rem, 15px) 0;
  margin-bottom: max(6.5rem, 40px);
  border-top: max(0.3rem, 3px) dotted rgba(62, 41, 35, 0.4);
  border-bottom: max(0.3rem, 3px) dotted rgba(62, 41, 35, 0.4);
}
.gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(1rem, 10px);
}
.gallery__list li button {
  padding: max(1rem, 10px) max(2rem, 20px);
  background: transparent;
  border: max(0.1rem, 1px) solid #3e2923;
  color: #3e2923;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.gallery__list li button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(62, 41, 35, 0.1);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.4s ease, height 0.4s ease;
  transition: width 0.4s ease, height 0.4s ease;
}
.gallery__list li button.active {
  color: #fff;
  background: #3e2923;
  border: max(0.1rem, 1px) solid transparent;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(62, 41, 35, 0.2);
          box-shadow: 0 4px 8px rgba(62, 41, 35, 0.2);
}
.gallery__list li button:hover {
  color: #fff;
  background: #3e2923;
  border: max(0.1rem, 1px) solid transparent;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(62, 41, 35, 0.2);
          box-shadow: 0 4px 8px rgba(62, 41, 35, 0.2);
}
.gallery__list li button:hover::before {
  width: 300px;
  height: 300px;
}
.gallery__list li button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.gallery__list li button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.gallery__content {
  position: relative;
  margin-top: max(5rem, 30px);
}
.gallery__content::before, .gallery__content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #ddd2c3), to(transparent));
  background: linear-gradient(to right, #ddd2c3 35%, transparent);
  z-index: 10;
}
@media screen and (max-width: 550px) {
  .gallery__content::before, .gallery__content::after {
    width: 10%;
  }
}
.gallery__content::after {
  left: unset;
  right: 0;
  background: -webkit-gradient(linear, right top, left top, color-stop(35%, #ddd2c3), to(transparent));
  background: linear-gradient(to left, #ddd2c3 35%, transparent);
}
.gallery__content .slider {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
.gallery__content .slider::-webkit-scrollbar {
  display: none;
}
.gallery__content .slider:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.gallery__content .slider__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1.5rem, 15px);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.gallery__content .slider__list li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.gallery__content .slider__list li figure {
  overflow: hidden;
}
.gallery__content .slider__list li figure img {
  width: auto;
  height: max(40rem, 275px);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-drag: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery__content .slider__list li:hover img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.gallery__content .slider__nav {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  z-index: 100;
  pointer-events: none;
}
@media screen and (max-width: 550px) {
  .gallery__content .slider__nav {
    width: 95%;
  }
}
.gallery__content .slider__nav button {
  padding: max(4rem, 30px) max(1rem, 10px);
  background: #3e2923;
  border-radius: max(0.3rem, 3px);
  color: #fff;
  font-size: 80%;
  pointer-events: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(62, 41, 35, 0.3);
          box-shadow: 0 2px 8px rgba(62, 41, 35, 0.3);
}
.gallery__content .slider__nav button:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 4px 12px rgba(62, 41, 35, 0.4);
          box-shadow: 0 4px 12px rgba(62, 41, 35, 0.4);
}
.gallery__content .slider__nav button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-box-shadow: 0 1px 4px rgba(62, 41, 35, 0.3);
          box-shadow: 0 1px 4px rgba(62, 41, 35, 0.3);
}
.gallery__content .slider__nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  -webkit-transform: scale(1);
          transform: scale(1);
}/*# sourceMappingURL=style.css.map */