@charset "utf-8";

:root {
  --font-main: "Noto Sans JP", sans-serif;
  --font-zenkaku: "Zen Kaku Gothic New", sans-serif;
  --default: 0.4s ease;
}

body {
  font-family: var(--font-main);
  color: #3b1802;
  background-color: #f5f0e7;
}

body.is-open {
  position: relative;
  overflow: hidden;
}

body.is-open::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(172, 172, 172, 0.77);
  z-index: 1000;
}

.menu-open {
  overflow: hidden;
}

.w1728 {
  width: min(90%, 1728px);
  margin: 0 auto;
}

.w1536 {
  width: min(80%, 1536px);
  margin: 0 auto;
}

.w1344 {
  width: min(70%, 1344px);
  margin: 0 auto;
}

.w1152 {
  width: min(80%, 1152px);
  margin: 0 auto;
}

.w960 {
  width: min(50%, 960px);
  margin: 0 auto;
}

.pc-hidden {
  display: none;
}

.sp-hidden {
  display: block;
}

.morebtn {
  position: relative;
  display: inline-block;
}

.morebtn a {
  background-color: #583f2f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 22px 23px 22px 27px;
  transition: 0.8s ease;
}

.morebtn .arrow {
  width: clamp(2.125rem, 1.792rem + 0.69vw, 2.625rem);
  aspect-ratio: 1/1;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.morebtn .arrow .front {
  transition: 0.8s ease;
}

.morebtn .arrow .back {
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  transform: translateX(-250%);
  transition: 0.8s ease;
}

.morebtn.reverse .arrow .back {
  transform: translateX(250%);
}

.morebtn .link-text {
  font-weight: 500;
  font-size: clamp(1.125rem, 1.042rem + 0.17vw, 1.25rem);
  color: #fff;
}

.morebtn:hover a {
  background-color: #a28979;
}

.morebtn:hover .arrow .front {
  transform: translateX(250%);
}

.morebtn.reverse:hover .arrow .front {
  transform: translateX(-250%);
}

.morebtn:hover .arrow .back {
  transform: translateX(0);
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

a.default {
  transition: var(--default);
}

a.default:hover {
  opacity: 50%;
}

.desc p {
  font-family: var(--font-main);
  font-weight: 500;
}

@media (max-width: 767px) {
  .desc p {
    font-feature-settings: "palt";
  }
}

.gjs-dashed .back-top {
  transform: translateY(0);
}
