*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  color: #282828;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

textarea {
  resize: vertical;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e0e0;
  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;
  padding: 0 16px 0 32px;
  z-index: 1000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header--hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header__logo {
  height: 50px;
}
.header__logo img {
  height: 100%;
  width: auto;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.header__link {
  color: #282828;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  padding: 0 24px;
  border-right: 1px solid #ccc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-family: "Noto Sans JP", sans-serif;
}
.header__link:last-child {
  border-right: none;
}
.header__link:hover {
  color: #ff4d01;
}
@media (max-width: 768px) {
  .header {
    max-height: 60px;
    width: 100%;
    padding: 14.5px 8px 14.5px 16px;
  }
  .header__logo {
    max-width: 120px;
    height: 31px;
  }
  .header__link {
    padding: 0 8px;
    font-size: 10px;
    line-height: 24px;
  }
}

.hero-section {
  padding-top: 80px;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 500;
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 60px;
  }
}

.swiper {
  width: 100%;
  height: 100vh;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}

.slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: zoomOut 8s ease-out forwards;
          animation: zoomOut 8s ease-out forwards;
  background-position: center center;
  background-size: cover;
}

@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fixed-content {
  position: absolute;
  bottom: 56px;
  left: 0;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 64px;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 768px) {
  .fixed-content {
    padding: 0 24px;
    bottom: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.slide-subtitle {
  font-size: 26px;
  color: #fff;
  margin-bottom: 0px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .slide-subtitle {
    font-size: 17px;
  }
}

.slide-title {
  font-size: clamp(40px, 6vw, 54px);
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .slide-title {
    margin-bottom: 16px;
    font-size: 40px;
  }
}

.slide-description {
  font-size: 12px;
  color: #fff;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .slide-description {
    font-size: 10px;
  }
}

.fixed-content .slide-subtitle {
  opacity: 0;
  -webkit-animation: fadeInUp 1s ease-out 0.5s forwards;
          animation: fadeInUp 1s ease-out 0.5s forwards;
}
.fixed-content .slide-title {
  opacity: 0;
  -webkit-animation: fadeInUp 1s ease-out 0.8s forwards;
          animation: fadeInUp 1s ease-out 0.8s forwards;
}
.fixed-content .slide-description {
  opacity: 0;
  -webkit-animation: fadeInUp 1s ease-out 1.1s forwards;
          animation: fadeInUp 1s ease-out 1.1s forwards;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.vertical-text {
  position: absolute;
  right: 40px;
  bottom: 128px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  z-index: 10;
}
.vertical-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 15px;
  width: 1px;
  height: 120px;
  background: #fff;
  -webkit-animation: scrollLine 2s ease-in-out infinite;
          animation: scrollLine 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .vertical-text {
    font-size: 10px;
    right: 8px;
    bottom: 127px;
  }
  .vertical-text::after {
    height: 80px;
    margin-top: 10px;
  }
}

@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
}

@keyframes scrollLine {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
}
.title-lineset {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0px 64px;
}
.title-lineset--pt-160 {
  padding-top: 160px;
}
.title-lineset__label {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  margin-bottom: 32px;
  font-weight: 600;
  color: #000;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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;
}
.title-lineset__label.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.title-lineset__label::before, .title-lineset__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background-color: #282828;
}
.title-lineset__label::before {
  right: calc(50% + 76px);
  color: #282828;
}
.title-lineset__label::after {
  left: calc(50% + 76px);
  color: #282828;
}
.title-lineset__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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;
}
.title-lineset__title.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.title-lineset__description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 2;
  position: relative;
}
.title-lineset__description-line {
  display: block;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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;
}
.title-lineset__description-line.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.title-lineset__description-line:nth-child(1).is-visible {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.title-lineset__description-line:nth-child(2).is-visible {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.title-lineset__description-line:nth-child(3).is-visible {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media (max-width: 768px) {
  .title-lineset {
    padding: 80px 24px 48px;
  }
  .title-lineset__label {
    font-size: 12px;
    letter-spacing: 0.16em;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .title-lineset__label::before, .title-lineset__label::after {
    width: 80px;
  }
  .title-lineset__label::before {
    right: calc(50% + 53px);
  }
  .title-lineset__label::after {
    left: calc(50% + 53px);
  }
  .title-lineset__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 32px;
  }
  .title-lineset__description-line {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.04em;
    text-align: left;
  }
}

.onsen-culture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 8px;
}
.onsen-culture:last-child {
  padding-bottom: 128px;
}
.onsen-culture__image {
  position: relative;
  width: 72.327%;
  aspect-ratio: 23/15;
  overflow: hidden;
}
.onsen-culture__image img {
  max-width: 1150px;
  width: 100%;
  height: calc(100% + 160px);
  aspect-ratio: 1000/652;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 1.2s ease-out;
  transition: -webkit-transform 1.2s ease-out;
  transition: transform 1.2s ease-out;
  transition: transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
  margin-top: -80px;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (max-width: 768px) {
  .onsen-culture__image img {
    height: calc(100% + 80px);
    margin-top: -40px;
  }
}
.onsen-culture:hover .onsen-culture__image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.onsen-culture__content {
  width: 27.67%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 72px 40px 0 64px;
}
@media (max-width: 1200px) {
  .onsen-culture__content {
    padding: 60px 16px 0 40px;
  }
}
@media (max-width: 768px) {
  .onsen-culture__content {
    padding: 32px 24px 56px;
  }
}
.onsen-culture__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translate3d(30px, 0, 0);
          transform: translate3d(30px, 0, 0);
}
@media (max-width: 1200px) {
  .onsen-culture__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.onsen-culture__title .str {
  display: inline-block;
  clip-path: polygon(0% 0%, 0% 0%, 0% 150%, 0% 150%);
  -webkit-transition: clip-path 0.6s ease-out;
  transition: clip-path 0.6s ease-out;
}
.onsen-culture__title.is-visible {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.onsen-culture__title.is-visible .str {
  clip-path: polygon(0% 0%, 100% 0%, 100% 150%, 0% 150%);
}
.onsen-culture__title.is-visible .str:nth-child(1) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.onsen-culture__title.is-visible .str:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.onsen-culture__title.is-visible .str:nth-child(3) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.onsen-culture__title.is-visible .str:nth-child(4) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.onsen-culture__title.is-visible .str:nth-child(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.onsen-culture__title.is-visible .str:nth-child(6) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.onsen-culture__title.is-visible .str:nth-child(7) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.onsen-culture__title.is-visible .str:nth-child(8) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.onsen-culture__title.is-visible .str:nth-child(9) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.onsen-culture__title.is-visible .str:nth-child(10) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.onsen-culture__title.is-visible .str:nth-child(11) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}
.onsen-culture__title.is-visible .str:nth-child(12) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.onsen-culture__title.is-visible .str:nth-child(13) {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
.onsen-culture__title.is-visible .str:nth-child(14) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.onsen-culture__title.is-visible .str:nth-child(15) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.onsen-culture__title.is-visible .str:nth-child(16) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.onsen-culture__title.is-visible .str:nth-child(17) {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}
.onsen-culture__title.is-visible .str:nth-child(18) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.onsen-culture__title.is-visible .str:nth-child(19) {
  -webkit-transition-delay: 0.95s;
          transition-delay: 0.95s;
}
.onsen-culture__title.is-visible .str:nth-child(20) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.onsen-culture__title.is-visible .str:nth-child(21) {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}
.onsen-culture__title.is-visible .str:nth-child(22) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.onsen-culture__title.is-visible .str:nth-child(23) {
  -webkit-transition-delay: 1.15s;
          transition-delay: 1.15s;
}
.onsen-culture__title.is-visible .str:nth-child(24) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.onsen-culture__title.is-visible .str:nth-child(25) {
  -webkit-transition-delay: 1.25s;
          transition-delay: 1.25s;
}
.onsen-culture__title.is-visible .str:nth-child(26) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.onsen-culture__title.is-visible .str:nth-child(27) {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
.onsen-culture__title.is-visible .str:nth-child(28) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.onsen-culture__title.is-visible .str:nth-child(29) {
  -webkit-transition-delay: 1.45s;
          transition-delay: 1.45s;
}
.onsen-culture__title.is-visible .str:nth-child(30) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.onsen-culture__title.is-visible .str:nth-child(31) {
  -webkit-transition-delay: 1.55s;
          transition-delay: 1.55s;
}
.onsen-culture__title.is-visible .str:nth-child(32) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.onsen-culture__title.is-visible .str:nth-child(33) {
  -webkit-transition-delay: 1.65s;
          transition-delay: 1.65s;
}
.onsen-culture__title.is-visible .str:nth-child(34) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
.onsen-culture__title.is-visible .str:nth-child(35) {
  -webkit-transition-delay: 1.75s;
          transition-delay: 1.75s;
}
.onsen-culture__title.is-visible .str:nth-child(36) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.onsen-culture__title.is-visible .str:nth-child(37) {
  -webkit-transition-delay: 1.85s;
          transition-delay: 1.85s;
}
.onsen-culture__title.is-visible .str:nth-child(38) {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.onsen-culture__title.is-visible .str:nth-child(39) {
  -webkit-transition-delay: 1.95s;
          transition-delay: 1.95s;
}
.onsen-culture__title.is-visible .str:nth-child(40) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.onsen-culture__description {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 48px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 1200px) {
  .onsen-culture__description {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.onsen-culture__button {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 182px;
  width: 100%;
  padding: 18px 24px;
  border: 1px solid #000;
  background-color: transparent;
  color: #333;
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1200px) {
  .onsen-culture__button {
    width: 180px;
    padding: 14px 20px;
    font-size: 13px;
  }
}
.onsen-culture__button > span {
  display: inline-block;
  position: relative;
  z-index: 5;
}
.onsen-culture__button::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, from(#f47c3c), to(#f9a543));
  background: linear-gradient(to right, #f47c3c, #f9a543);
  border-color: #ff6b35;
}
.onsen-culture__button:hover {
  color: #fff;
}
.onsen-culture__button:hover::before {
  opacity: 1;
}
.onsen-culture__button:hover .onsen-culture__button-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.onsen-culture__button-icon {
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
@media (max-width: 768px) {
  .onsen-culture {
    display: block;
    min-height: auto;
    margin-bottom: 0;
  }
  .onsen-culture:last-child {
    padding-bottom: 24px;
  }
  .onsen-culture__image {
    width: 100%;
  }
  .onsen-culture__content {
    width: 100%;
    max-width: 768px;
    padding: 32px 24px 56px;
  }
  .onsen-culture__title {
    font-size: 26px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .onsen-culture__description {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 40px;
  }
}

.features {
  background: #fff;
  position: relative;
  z-index: 500;
}

.activities {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 72px;
  margin-top: 120px;
}
.activities-section {
  background-color: #f6f4f1;
  position: relative;
  z-index: 500;
}
@media (max-width: 768px) {
  .activities {
    margin-top: 0;
  }
}
.activities__card {
  max-width: 352px;
  width: 100%;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 500px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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;
}
.activities__card.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.activities__card:nth-child(2) {
  margin-top: -120px;
}
.activities__card:nth-child(1).is-visible {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.activities__card:nth-child(2).is-visible {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.activities__card:nth-child(3).is-visible {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.activities__card-image {
  position: relative;
  width: 100%;
  margin-bottom: 34px;
  overflow: hidden;
}
.activities__card-image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
a:hover .activities__card-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.activities__card-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.activities__card-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.activities__card-icon img {
  width: 16px;
  height: 16px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.activities__card:hover .activities__card-icon {
  background: -webkit-gradient(linear, left top, right top, from(#f47c3c), to(#f9a543));
  background: linear-gradient(to right, #f47c3c, #f9a543);
  border-color: #f9a543;
}
.activities__card:hover .activities__card-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.activities__card-description {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 1200px) {
  .activities {
    padding: 0 20px;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .activities {
    -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;
    padding: 0 24px;
    gap: 64px;
  }
  .activities__card {
    max-width: 100%;
    min-height: auto;
  }
  .activities__card:nth-child(2) {
    margin-top: 0;
  }
  .activities__card-image {
    margin-bottom: 34px;
  }
  .activities__card-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .activities__card-description {
    font-size: 13px;
    line-height: 2;
    margin: 0;
  }
}

.reservations {
  max-width: 904px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 120px 0 160px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.reservations__button {
  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;
  padding: 30px 32px;
  border: 1px solid #333;
  background-color: transparent;
  color: #333;
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 56px;
  max-height: 80px;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  position: relative;
}
.reservations__button.booking {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  padding: 8px 16px 8px 24px;
  max-width: 183px;
  width: 100%;
  font-size: 15px;
  line-height: 1.2;
}
.reservations__button > span {
  display: inline-block;
  position: relative;
  z-index: 5;
}
.reservations__button::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, from(#f47c3c), to(#f9a543));
  background: linear-gradient(to right, #f47c3c, #f9a543);
  border-color: #ff6b35;
}
.reservations__button:hover {
  color: #fff;
}
.reservations__button:hover::before {
  opacity: 1;
}
.reservations__button:hover .reservations__button-arrow {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
  position: relative;
  z-index: 5;
}
.reservations__button:hover .reservations__button-arrow img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.reservations__button--dark {
  background-color: #2c2c2c;
  color: #fff;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.reservations__button--dark .reservations__button-arrow img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.reservations__button-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.reservations__button-arrow img {
  width: 32px;
  height: 4px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

@media (max-width: 768px) {
  .reservations {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 64px 24px 80px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .reservations__button {
    padding: 18px 32px;
    min-height: 80px;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
}
.parallax_wrapper {
  position: relative;
  overflow: hidden;
  height: 680px;
  opacity: 0;
}
.parallax_wrapper.is-visible {
  opacity: 1;
}

.parallax_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/parallax.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.parallax_content {
  position: relative;
  z-index: 1;
  padding: 340px 0;
  text-align: center;
}

.tour-benefits {
  background-color: #3d3932;
  padding: 120px 120px 160px;
  color: #fff;
  position: relative;
  z-index: 500;
}
.tour-benefits__header {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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;
}
.tour-benefits__header.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.tour-benefits__label {
  font-size: 15px;
  letter-spacing: 0.3em;
  color: #e7c767;
  margin-bottom: 32px;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.tour-benefits__label::before, .tour-benefits__label::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e7c767;
}
.tour-benefits__label::before {
  margin-right: 16px;
}
.tour-benefits__label::after {
  margin-left: 16px;
}
.tour-benefits__title {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}
.tour-benefits__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
.tour-benefits__card {
  max-width: 572px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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;
}
.tour-benefits__card.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.tour-benefits__card:nth-child(1).is-visible {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.tour-benefits__card:nth-child(2).is-visible {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.tour-benefits__image {
  max-width: 184px;
  min-width: 184px;
  width: 100%;
  height: 184px;
}
.tour-benefits__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.tour-benefits__content {
  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: 8px;
}
.tour-benefits__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .tour-benefits__badges {
    gap: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .tour-benefits__badges {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.tour-benefits__badge {
  display: inline-block;
  padding: 2px 12px;
  border: 1px solid #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.tour-benefits__badge--yellow {
  background-color: #e4bf5c;
  border-color: #e4bf5c;
  color: #393127;
}
.tour-benefits__card-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.4;
}
.tour-benefits__description {
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
}
@media (max-width: 1200px) {
  .tour-benefits {
    padding: 80px 24px;
  }
  .tour-benefits__grid {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .tour-benefits {
    padding: 80px 24px;
  }
  .tour-benefits__header {
    margin-bottom: 50px;
  }
  .tour-benefits__label {
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
  }
  .tour-benefits__title {
    font-size: 32px;
  }
  .tour-benefits__grid {
    -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;
    gap: 40px;
  }
  .tour-benefits__card {
    -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;
    margin: 0 auto;
    gap: 20px;
  }
  .tour-benefits__card-title {
    font-size: 20px;
  }
  .tour-benefits__description {
    font-size: 13px;
  }
  .tour-benefits__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40%;
    min-width: 184px;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.bus-tour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url("../images/tour-background.webp") center center/cover no-repeat;
  padding: 216px 0 120px;
  position: relative;
  z-index: 500;
}
@media (max-width: 768px) {
  .bus-tour {
    padding-top: 80px;
  }
}
.bus-tour__header {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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;
}
.bus-tour__header.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.bus-tour__title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 48px;
  line-height: 1.2;
}
.bus-tour__subtitle {
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
}
.bus-tour__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .bus-tour__cards {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bus-tour__card {
  background-color: #fff;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 598px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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;
}
.bus-tour__card.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.bus-tour__card:nth-child(1).is-visible {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.bus-tour__card:nth-child(2).is-visible {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.bus-tour__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
.bus-tour__image img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}
.bus-tour__content {
  padding: 16px 0;
  max-width: 302px;
  -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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 250px;
}
.bus-tour__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
  line-height: 1.5;
}
.bus-tour__description {
  font-size: 15px;
  line-height: 2;
  color: #000;
  margin-bottom: 24px;
}
.bus-tour__description p {
  margin-bottom: 10px;
}
.bus-tour__description p:last-child {
  margin-bottom: 0;
}
.bus-tour__button {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 200px;
  padding: 16px 24px;
  border: 1px solid #333;
  background-color: transparent;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.bus-tour__button > span {
  display: inline-block;
  position: relative;
  z-index: 5;
}
.bus-tour__button::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: 0;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, from(#f47c3c), to(#f9a543));
  background: linear-gradient(to right, #f47c3c, #f9a543);
  border-color: #ff6b35;
}
.bus-tour__button:hover {
  color: #fff;
}
.bus-tour__button:hover::before {
  opacity: 1;
}
.bus-tour__button:hover .bus-tour__button-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.bus-tour__button-arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 16px;
}
@media (max-width: 768px) {
  .bus-tour {
    padding-bottom: 80px;
  }
  .bus-tour__header {
    padding: 0px 24px 0px;
  }
  .bus-tour__title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .bus-tour__subtitle {
    font-size: 14px;
    text-align: left;
  }
  .bus-tour__cards {
    grid-template-columns: 1fr;
    padding: 0 24px 0;
  }
  .bus-tour__card {
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px;
    gap: 24px;
  }
  .bus-tour__content {
    max-width: none;
    min-height: auto;
  }
  .bus-tour__image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    aspect-ratio: 295/200;
    overflow: hidden;
  }
  .bus-tour__image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .bus-tour__card-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 600;
  }
  .bus-tour__description {
    font-size: 13px;
    line-height: 2;
  }
  .bus-tour__button {
    width: 100%;
  }
}

.footer {
  position: relative;
  z-index: 500;
}
.footer__top {
  background-color: #3d3932;
  padding: 64px 40px;
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
}
.footer__sns-link {
  color: #fff;
  width: 32px;
  height: 32px;
  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;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__sns-link:hover {
  opacity: 0.7;
}
.footer__sns-link svg {
  width: 32px;
  height: 32px;
}
.footer__bottom {
  background-color: #f5f5f5;
  padding: 48px 0 32px;
  text-align: center;
}
.footer__logo {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__logo img {
  height: auto;
  max-width: 256px;
  width: 100%;
}
.footer__copyright {
  color: #333;
  font-size: 10px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .footer__top {
    padding: 40px 0 40px;
  }
  .footer__sns {
    gap: 30px;
  }
  .footer__copyright {
    font-size: 11px;
  }
}