/*
Theme Name: new
*/
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

html {
  scroll-behavior: smooth;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 100;
}
header h1 {
  font-size: 2rem;
  color: white;
  padding: 3rem 2rem;
  font-family: "Noto Serif JP";
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  header h1 {
    font-size: 1.25rem;
    padding: 2rem 1rem;
  }
}
header .hm {
  position: fixed;
  top: 0px;
  width: 8vw;
  height: 8vw;
  background: #5f6f66;
  right: 0;
  z-index: 20;
  border-radius: 0 0 0 0.5vw;
}
@media screen and (max-width: 1024px) {
  header .hm:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 1024px) {
  header .hm {
    width: 84px;
    height: 84px;
    border-radius: 0 0 0 16px;
  }
}
header .hm__inner {
  width: 33%;
  left: 33%;
  top: 40%;
  transform: translateY(-50%);
  height: 4px;
  background-color: white;
  position: relative;
  transition: all 0.3s ease;
  transform-origin: left top;
}
@media screen and (max-width: 1024px) {
  header .hm__inner {
    height: 2px;
  }
}
header .hm__inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 4px;
  background-color: white;
  top: 12px;
  right: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  header .hm__inner::before {
    height: 2px;
  }
}
@media screen and (max-width: 1024px) {
  header .hm__inner::before {
    top: 10px;
  }
}
header .hm__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 25%;
  height: 4px;
  background-color: white;
  top: 24px;
  right: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  header .hm__inner::after {
    height: 2px;
  }
}
@media screen and (max-width: 1024px) {
  header .hm__inner::after {
    top: 20px;
  }
}
header .menu {
  position: absolute;
  top: 110vh;
  width: 100%;
  height: 100vh;
  background: #5f6f66;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}
header .menu ul {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}
header .menu ul li {
  text-align: center;
}
header .menu ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  font-weight: bold;
}
header .menu.show {
  top: 0;
  opacity: 1;
}

.open .hm__inner {
  background: #fff !important;
  transform: rotate(45deg);
}
.open .hm__inner::before {
  background: #fff;
  opacity: 0;
}
.open .hm__inner::after {
  background: #fff;
  width: 100%;
  transform: rotate(-90deg);
  top: 0;
  left: 0;
  transform-origin: center bottom;
}

.btn {
  background: #5f6f66;
  color: #fff;
  padding: 1em 2em;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1em;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  border-radius: 5em;
}

.fv-wrapper {
  height: 180vh;
}

.fv {
  position: sticky;
  top: 0;
  overflow: hidden;
  height: 100vh;
}
.fv video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 5;
}
.fv .message1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5vw;
  font-size: 7.5vw;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  z-index: 10;
  font-family: "Noto Serif JP";
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  .fv .message1 {
    font-size: 48px;
    left: 5%;
    top: 80%;
  }
}

.sec2 {
  background: #e6e9e5;
  padding: 5em 0;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sec2 {
    flex-direction: column;
  }
}
.sec2 .imagepic {
  width: 50%;
  overflow: hidden;
  border-radius: 0 1em 1em 0;
}
@media screen and (max-width: 1024px) {
  .sec2 .imagepic {
    width: 95%;
  }
}
.sec2 .imagepic .swiper-wrapper {
  transition-timing-function: linear !important;
}
.sec2 .imagepic img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec2 .sec2Text {
  width: 50%;
  padding: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .sec2 .sec2Text {
    width: 100%;
    padding: 2em 5%;
  }
}
.sec2 .sec2Text h2 {
  font-size: 2em;
  font-family: "Noto Serif JP";
  margin-bottom: 1em;
  color: #5f6f66;
}
.sec2 .sec2Text p {
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}

.sec3 h2,
.sec4 h2 {
  text-align: center;
  font-size: 2em;
  font-family: "Noto Serif JP";
  color: #5f6f66;
  margin-bottom: 1.5em;
}
.sec3 h2 span,
.sec4 h2 span {
  display: block;
}

.sec3 {
  margin: 5em 0;
}
.sec3 .spenttime {
  margin-left: 5vw;
}
.sec3 .spenttime .swiper-slide {
  position: relative;
}
.sec3 .spenttime .swiper-slide img {
  aspect-ratio: 1;
  border-radius: 0.5em;
}
.sec3 .spenttime .swiper-slide .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1em;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  border-radius: 0 0 0.5em 0.5em;
}
.sec3 .spenttime .swiper-slide h3 {
  font-size: 1.25em;
  font-weight: 700;
  margin: 0.5em 0 0.25em;
  color: white;
  padding-bottom: 0.25em;
}
.sec3 .spenttime .swiper-slide p {
  color: white;
  font-weight: 600;
}

.sec4 {
  background: #e6e9e5;
  padding: 5em 0;
}
.sec4 .inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.sec4 .inner .description {
  text-align: center;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
}
.sec4 .inner .rental {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
@media screen and (max-width: 1024px) {
  .sec4 .inner .rental {
    gap: 1em;
  }
}
.sec4 .inner .rental .item {
  flex-basis: calc(25% - 1.5em);
}
@media screen and (max-width: 1024px) {
  .sec4 .inner .rental .item {
    flex-basis: calc(50% - 0.5em);
  }
}
.sec4 .inner .rental .item img {
  aspect-ratio: 3/2;
  border-radius: 0.5em;
}
.sec4 .inner .rental .item h3 {
  font-size: 1.125em;
  font-weight: 700;
  margin: 0.5em 0 0.25em;
}

footer {
  background: #8b6a4f;
  color: white;
}
footer .inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 3em 0 1em;
}
footer .inner h2 {
  font-size: 1.125em;
  margin-bottom: 0.25em;
}
footer .inner h3 {
  font-size: 1.25em;
  margin-bottom: 0.5em;
}
footer .inner p {
  font-size: 0.875em;
  font-weight: 600;
}
footer .inner .credit {
  margin-top: 1rem;
  text-align: center;
}/*# sourceMappingURL=style.css.map */