@charset "UTF-8";
:root {
  --font-color: #333333;
  --yellow-color: #EDE5CB;
  --orange-color: #E57747;
  --background-color: #FFFBFB;
  --footer-color: #E2BE85;
  --font-tittle: "Zen Old Mincho", serif;
}

html {
  font-size: 100%;
}

body {
  background-color: #FFFBFB;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: #121212;
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

.section-title {
  position: relative;
  text-align: center;
  padding-top: 100px;
  margin-bottom: 100px;
  font-family: var(--font-tittle);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 5px;
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.3);
}

.section-title::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 8px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E9DFBF;
  border-radius: 20px;
}

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  width: 80px;
  height: 80px;
  background-color: var(--background-color);
  transition: scale 1s;
}
@media (max-width: 768px) {
  #page-top a {
    width: 60px;
    height: 60px;
  }
}

#page-top a:hover {
  transform: scale(1.1);
  background-color: var(--yellow-color);
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 20;
  opacity: 0;
  transform: translateY(100px);
}

#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

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

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

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

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100px);
  }
}
.fadeUpTrigger {
  opacity: 0;
  position: relative;
  z-index: 2;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  width: 250px;
  padding-block: 10px;
  background-color: #fff;
  border: 3px solid #e0d7b9;
  font-size: 1rem;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  font-family: var(--font-tittle);
  position: relative;
}

.detail-btn .arrow {
  position: absolute;
  right: 20px;
  color: #e0d7b9;
  font-size: 1rem;
  font-weight: bold;
}

.detail-btn:hover {
  scale: 1.05;
  transform: translateY(-4px);
}

.br {
  display: block;
}
@media (max-width: 768px) {
  .br {
    display: none;
  }
}

.no-br {
  display: none;
}
@media (max-width: 1024px) {
  .no-br {
    display: block;
  }
}

@-webkit-keyframes softFade {
  to {
    opacity: 1;
  }
}

@keyframes softFade {
  to {
    opacity: 1;
  }
}
.breadcrumb {
  list-style: none;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb li a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb li + li::before {
  content: ">";
  margin: 0.5em;
}

#header .header-inner {
  background-color: var(--footer-color);
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-100%);
  z-index: 99;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
#header .header-inner .header-logo {
  width: 130px;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#header .header-inner .header-logo img {
  height: 80px;
}
#header .header-inner.is-show {
  top: 0;
  opacity: 1;
  transform: translateY(0);
}

.hamburger {
  position: fixed;
  right: 24px;
  top: 50px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  overflow: visible;
  z-index: 200;
  opacity: 0;
  -webkit-animation: softFade 2s ease-out 1s forwards;
          animation: softFade 2s ease-out 1s forwards;
}
.hamburger::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}
.hamburger:hover::after {
  -webkit-animation: ripple-ring 0.8s ease-out forwards;
          animation: ripple-ring 0.8s ease-out forwards;
}
.hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  right: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: white;
}
.hamburger span:nth-of-type(1) {
  top: 15px;
  width: 70%;
}
.hamburger span:nth-of-type(2) {
  top: 23px;
  width: 55%;
}
.hamburger span:nth-of-type(3) {
  top: 31px;
  width: 40%;
}
.hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 45%;
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 45%;
}

@-webkit-keyframes ripple-ring {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  30% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes ripple-ring {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  30% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
.global-menu {
  display: none;
}

@media (min-width: 1025px) {
  .home .global-menu {
    display: block;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
    opacity: 0;
    -webkit-animation: softFade 2s ease-out 1s forwards;
            animation: softFade 2s ease-out 1s forwards;
  }
}
@media (min-width: 1025px) and (max-width: 1024px) {
  .home .global-menu {
    display: none;
  }
}
@media (min-width: 1025px) {
  .home .global-menu ul {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 1025px) {
  .home .global-menu li {
    font-size: 1.1rem;
    margin-left: 30px;
    letter-spacing: 5px;
    font-family: var(--font-tittle);
    transition: opacity 0.3s;
  }
  .home .global-menu li:first-of-type {
    margin-left: 0;
  }
  .home .global-menu li a {
    color: white;
    position: relative;
  }
  .home .global-menu li a::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -4px;
    height: 1px;
    background-color: white;
    transform: translateY(6px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .home .global-menu li a:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
  .home .global-menu li:hover {
    opacity: 0.6;
  }
}
.global-menu.open {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.global-menu.open ul {
  flex-direction: column;
  text-align: center;
}
.global-menu.open li {
  margin: 20px 0;
  font-size: 22px;
  letter-spacing: 0.1em;
  font-family: var(--font-tittle);
}
.global-menu.open li a {
  color: white;
  position: relative;
}
.global-menu.open li a::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -4px;
  height: 1px;
  background-color: white;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.global-menu.open li a:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.global-menu.open li:hover {
  opacity: 0.6;
}

.local-nav {
  width: 100%;
  z-index: 100;
}
.local-nav .logo {
  width: 130px;
  margin-inline: auto;
  padding-block: 10px;
}
.local-nav .logo img {
  height: 80px;
}
.local-nav ul {
  display: flex;
  justify-content: center;
  border-top: 3px double #333;
  font-family: var(--font-tittle);
}
.local-nav ul li {
  border-right: 1px solid #333;
  min-width: 150px;
  font-size: 1rem;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .local-nav ul li {
    min-width: 0;
    width: 20%;
    font-size: clamp(0.7rem, 0.35rem + 0.07vw, 0.9rem);
  }
}
@media (max-width: 500px) {
  .local-nav ul li {
    font-size: 0.6rem;
  }
}
.local-nav ul li:first-of-type {
  border-left: 1px solid #333;
}
.local-nav ul li a {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 5px 0;
}
.local-nav ul li a::before {
  content: "";
  position: absolute;
  inset: 4px;
  background-color: #EDE5CB;
  border-radius: 15px;
  opacity: 0;
  transform: scale(0.9);
  transition: 0.3s ease;
  z-index: -1;
}
.local-nav ul li a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.local-nav ul li a .icon {
  width: 50px;
}
@media (max-width: 768px) {
  .local-nav ul li a .icon {
    width: 40px;
  }
}
.local-nav ul li a .icon img {
  height: 50px;
}
@media (max-width: 768px) {
  .local-nav ul li a .icon img {
    height: 40px;
  }
}
.local-nav ul li a p {
  padding-bottom: 5px;
}

body.home .local-nav {
  display: none;
}

.bg {
  width: 100%;
  height: 240px;
  background-image: url("../img/mainvisual.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.6;
  z-index: 1;
}

body.home .bg {
  display: none;
}

footer {
  background-color: var(--footer-color);
  color: white;
  padding-block: 50px;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-family: var(--font-tittle);
  font-weight: bold;
}
footer .footer-inner {
  display: flex;
  max-width: 800px;
  margin-inline: auto;
}

.footer-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-left .footer-image {
  width: clamp(180px, 17vw, 250px);
  aspect-ratio: 5/3;
}
.footer-left .footer-image img {
  width: 100%;
  height: 100%;
}
.footer-left p {
  padding-block: 20px;
}

.footer-right {
  width: 50%;
  display: flex;
  justify-content: center;
}
.footer-right li {
  padding-block: 5px;
  position: relative;
}
.footer-right li a {
  color: white;
  position: relative;
}
.footer-right li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer-right li a:hover::after {
  transform: scaleX(1);
}
.footer-right li:hover {
  opacity: 0.7;
}

.mainvisual {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../img/mainvisual.jpg");
  background-size: cover;
  background-position: center;
}
.mainvisual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}
.mainvisual .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(195px, 195px + 45 * (100vw - 600px) / 1320, 240px);
  z-index: 2;
  opacity: 0;
  -webkit-animation: softFade 2.2s ease-out 0.4s forwards;
          animation: softFade 2.2s ease-out 0.4s forwards;
}
.mainvisual .logo img {
  height: clamp(120px, 120px + 35 * (100vw - 600px) / 1320, 155px);
}
.mainvisual .text {
  position: absolute;
  left: 5%;
  bottom: 7%;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: white;
  font-family: var(--font-tittle);
  z-index: 2;
  letter-spacing: 5px;
  opacity: 0;
  -webkit-animation: softFade 2.4s ease-out 1.6s forwards;
          animation: softFade 2.4s ease-out 1.6s forwards;
}
@media (max-width: 768px) {
  .mainvisual .text {
    writing-mode: vertical-lr;
  }
}
.mainvisual .text p:nth-child(2) {
  padding-top: 10px;
  padding-left: 20px;
}
@media (max-width: 500px) {
  .mainvisual .text {
    font-size: 1rem;
  }
}

.scrolldown2 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  opacity: 0;
  -webkit-animation: softFade 2.4s ease-out 1.6s forwards;
          animation: softFade 2.4s ease-out 1.6s forwards;
}

.scrolldown2 span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}

.scrolldown2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scrolldown2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50px;
  background: #eee;
}

#about-kusatsu {
  position: relative;
  padding-bottom: 100px;
  background: linear-gradient(#FFF9F2, #FFFBFB);
  overflow-x: hidden;
  z-index: 1;
}
#about-kusatsu::after {
  content: "";
  position: absolute;
  top: -5%;
  right: -5%;
  width: 500px;
  height: 500px;
  border: 1px solid black;
  border-radius: 50%;
  opacity: 0.7;
  z-index: 0;
}
@media (max-width: 1024px) {
  #about-kusatsu::after {
    display: none;
  }
}
#about-kusatsu .content {
  display: flex;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #about-kusatsu .content {
    flex-direction: column;
  }
}
#about-kusatsu .content p {
  width: 50%;
  padding-right: 3%;
  font-size: clamp(1rem, 2vw, 1.7rem);
  font-family: var(--font-tittle);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  #about-kusatsu .content p {
    width: 100%;
    padding-right: 0;
    padding-bottom: 10px;
    text-align: center;
  }
}
#about-kusatsu .content p span {
  font-weight: bold;
  position: relative;
  z-index: 1;
}
#about-kusatsu .content p span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6em;
  background-color: #E9DFBF;
  z-index: -1;
}
#about-kusatsu .content .img {
  width: 50%;
  z-index: 1;
}
@media (max-width: 768px) {
  #about-kusatsu .content .img {
    width: 100%;
  }
}
#about-kusatsu .content .img img {
  border-radius: 20px;
}
@media (max-width: 768px) {
  #about-kusatsu .content .img img {
    height: 300px;
  }
}

#stay-dine {
  margin-bottom: 160px;
  font-family: var(--font-tittle);
}
@media (max-width: 768px) {
  #stay-dine {
    margin-bottom: 40px;
  }
}
#stay-dine h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  margin-bottom: 30px;
  position: relative;
}
#stay-dine h3::after {
  position: absolute;
  content: "";
  border-top: 10px solid var(--yellow-color);
  border-right: 10px solid transparent;
  bottom: -15px;
  left: 0;
  width: 120px;
}
#stay-dine .content {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #stay-dine .content {
    flex-direction: column;
  }
}
#stay-dine .content .left {
  width: 50%;
}
@media (max-width: 768px) {
  #stay-dine .content .left {
    width: 100%;
  }
}
#stay-dine .content .left img {
  height: 480px;
}
@media (max-width: 768px) {
  #stay-dine .content .left img {
    height: 280px;
  }
}
#stay-dine .content .right {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  #stay-dine .content .right {
    width: 100%;
  }
}
#stay-dine .content .right img {
  height: 480px;
  opacity: 0.2;
}
@media (max-width: 768px) {
  #stay-dine .content .right img {
    height: 280px;
  }
}
#stay-dine .content .right .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 5% 5% 0 5%;
}
@media (max-width: 768px) {
  #stay-dine .content .right .text {
    padding: 2%;
  }
}
#stay-dine .content .right .text p {
  font-size: clamp(1rem, 2vw, 20px);
  margin-bottom: 20px;
  font-weight: bold;
}
#stay-dine .bottom {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #stay-dine .bottom {
    flex-direction: column;
  }
}

#event {
  padding-bottom: 100px;
}
#event .event-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  padding-inline: 60px;
}
@media (max-width: 1024px) {
  #event .event-inner {
    max-width: 100%;
    padding-inline: 0;
  }
}
#event .event-slider {
  width: 100%;
}
#event .event-slider li {
  padding: 30px 30px;
}
@media (max-width: 1024px) {
  #event .event-slider li {
    padding: 30px 15px;
  }
}
#event .event-slider .slick-list {
  overflow: hidden;
}
#event .slick-prev,
#event .slick-next {
  width: 40px;
  height: 40px;
  border: 2px solid #333;
  border-radius: 50%;
  background: #fff;
}
@media (max-width: 1024px) {
  #event .slick-prev,
#event .slick-next {
    display: none;
  }
}
#event .slick-prev {
  left: -50px;
}
#event .slick-next {
  right: -50px;
}
#event .slick-prev:before,
#event .slick-next:before {
  content: "";
}
#event .slick-prev::after,
#event .slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
}
#event .slick-prev::after {
  border-width: 8px 12px 8px 0;
  border-color: transparent #333 transparent transparent;
  margin-left: -2px;
}
#event .slick-next::after {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #333;
  margin-left: 2px;
}
#event .slick-dots {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  text-align: center;
}
#event .slick-dots li button {
  width: 30px;
  height: 30px;
}
#event .slick-dots li button::before {
  font-size: 20px;
  line-height: 30px;
  color: #4d4d4d;
  left: 50%;
  transform: translateX(-50%);
}
#event .slick-dots li.slick-active button::before {
  color: #333;
}

.event-content {
  padding: 5%;
  box-shadow: 0px 0px 15px 15px rgba(17, 17, 26, 0.08);
  border-radius: 20px;
  font-family: var(--font-tittle);
  display: flex;
  flex-direction: column;
  min-height: 450px;
}
.event-content img {
  width: 100%;
  border-radius: 20px;
}
.event-content .title {
  font-size: 1.1rem;
  font-weight: bold;
  padding-block: 5px;
  border-bottom: 1px solid #333;
}
@media (max-width: 1024px) {
  .event-content .title {
    font-size: 0.9rem;
  }
}
.event-content p {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .event-content p {
    font-size: 0.9rem;
  }
}
.event-content .text {
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .event-content .text {
    font-size: 0.9rem;
  }
}
.event-content .text dt {
  min-width: 50px;
  white-space: nowrap;
}
.event-content .text dd {
  width: calc(100% - 50px);
}

#access {
  margin-bottom: 100px;
  font-family: var(--font-tittle);
}
@media (max-width: 768px) {
  #access .section-title {
    padding-top: 40px;
  }
}
#access .tabs-wrapper {
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  #access .tabs-wrapper {
    padding: 20px;
  }
}
#access .tabs-wrapper .tab {
  display: flex;
  gap: 20px;
  border-bottom: 2px solid #eee;
  margin-bottom: 30px;
}
#access .tabs-wrapper .tab button {
  background: none;
  border: none;
  font-size: 16px;
  padding: 10px 5px;
  cursor: pointer;
  color: #666;
  position: relative;
  transition: color 0.3s;
}
#access .tabs-wrapper .tab button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #333;
  transition: width 0.3s;
}
#access .tabs-wrapper .tab button.active {
  color: #333;
  font-weight: 600;
}
#access .tabs-wrapper .tab button.active::after {
  width: 100%;
}

.area {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}
.area.is-active {
  display: block;
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
}
.area .area-title {
  text-align: center;
  padding-block: 40px;
  letter-spacing: 5px;
}

.map {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.map iframe {
  width: 100%;
  height: 500px;
}
@media (max-width: 1024px) {
  .map iframe {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .map iframe {
    height: 300px;
  }
}
@media (max-width: 500px) {
  .map iframe {
    height: 250px;
  }
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.access-contents {
  letter-spacing: 2px;
}
.access-contents .content {
  margin-bottom: 40px;
}
.access-contents span {
  position: relative;
}
.access-contents span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6em;
  background-color: #E9DFBF;
  z-index: -1;
}
.access-contents .texts {
  display: flex;
}
@media (max-width: 1024px) {
  .access-contents .texts {
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .access-contents .texts {
    flex-direction: column;
    padding-block: 10px 20px;
  }
}
.access-contents .texts p {
  padding: 8px 0 8px 30px;
}
@media (max-width: 768px) {
  .access-contents .texts p {
    padding: 0 0 0 30px;
  }
}
.access-contents .shapes {
  display: flex;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .access-contents .shapes {
    overflow-x: auto;
  }
}
.access-contents .shapes p {
  border: 1px solid #333;
  padding: 2px 20px;
  position: relative;
}
@media (max-width: 1024px) {
  .access-contents .shapes p {
    padding: 2px 10px;
  }
}
@media (max-width: 768px) {
  .access-contents .shapes p {
    padding: 2px 10px;
    writing-mode: vertical-lr;
  }
}
.access-contents .shapes p:not(:last-of-type)::before {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(100% + 30px);
  width: 40px;
  height: 1px;
  background: #333;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .access-contents .shapes p:not(:last-of-type)::before {
    left: calc(100% + 15px);
    width: 30px;
  }
}
@media (max-width: 768px) {
  .access-contents .shapes p:not(:last-of-type)::before {
    left: calc(100% + 15px);
    width: 30px;
  }
}
@media (max-width: 500px) {
  .access-contents .shapes p:not(:last-of-type)::before {
    left: calc(100% + 10px);
    width: 20px;
  }
}
.access-contents .shapes p:not(:last-of-type)::after {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(100% + 70px);
  transform: translateY(-50%);
  border-left: 8px solid #333;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
@media (max-width: 1024px) {
  .access-contents .shapes p:not(:last-of-type)::after {
    left: calc(100% + 45px);
  }
}
@media (max-width: 768px) {
  .access-contents .shapes p:not(:last-of-type)::after {
    left: calc(100% + 45px);
  }
}
@media (max-width: 500px) {
  .access-contents .shapes p:not(:last-of-type)::after {
    left: calc(100% + 30px);
  }
}
.access-contents .shapes p:not(:first-of-type) {
  margin-left: 100px;
}
@media (max-width: 1024px) {
  .access-contents .shapes p:not(:first-of-type) {
    margin-left: 60px;
  }
}
@media (max-width: 500px) {
  .access-contents .shapes p:not(:first-of-type) {
    margin-left: 45px;
  }
}

#stay,
#dine {
  margin-bottom: 80px;
}
#stay .grid,
#dine .grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  font-family: var(--font-tittle);
}
#stay .grid li:hover img,
#dine .grid li:hover img {
  transform: scale(1.05);
}
#stay .grid li .image,
#dine .grid li .image {
  overflow: hidden;
}
#stay .grid li .image img,
#dine .grid li .image img {
  transition: transform 0.3s ease;
  height: auto;
}
#stay .grid li .griditem-title,
#dine .grid li .griditem-title {
  padding-block: 10px;
  border-bottom: 1px dashed #333;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}
#stay .grid li .griditem-subtitle,
#dine .grid li .griditem-subtitle {
  padding-block: 10px 25px;
}
#stay .grid li .texts,
#dine .grid li .texts {
  height: 110px;
}

#kusatsu {
  font-family: var(--font-tittle);
  overflow-x: hidden;
}
#kusatsu .section-title {
  margin-bottom: 10px;
}
#kusatsu .section-title::after {
  content: none;
}
#kusatsu .subtitle {
  text-align: center;
  margin-bottom: 80px;
  font-size: clamp(1rem, 2vw, 20px);
}
#kusatsu .subtitle span {
  position: relative;
}
#kusatsu .subtitle span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6em;
  background-color: #E9DFBF;
  z-index: -1;
}
#kusatsu .texts {
  max-width: 1000px;
  text-align: center;
  margin-inline: auto;
  font-size: clamp(1rem, 2vw, 22px);
}

.main {
  position: relative;
  padding-bottom: 80px;
  padding-inline: 20px;
}
.main::after {
  content: "";
  position: absolute;
  top: -15%;
  left: -4%;
  width: clamp(220px, 220px + 280 * (100vw - 600px) / 1320, 400px);
  height: clamp(220px, 220px + 280 * (100vw - 600px) / 1320, 400px);
  border: 1px solid black;
  border-radius: 50%;
  opacity: 0.7;
  z-index: 0;
}
@media (max-width: 1024px) {
  .main::after {
    display: none;
  }
}
.main.no-circle::after {
  content: none;
}

.background-image {
  width: 100%;
  height: 400px;
  background-image: url("../img/about1.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .background-image {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .background-image {
    height: 250px;
  }
}
@media (max-width: 500px) {
  .background-image {
    height: 200px;
  }
}
.background-image.alt-bg {
  background-image: url("../img/about2.jpg");
}

.sub {
  margin-bottom: 100px;
  position: relative;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .sub {
    margin-bottom: 50px;
  }
}
.sub::after {
  content: "";
  position: absolute;
  top: 5%;
  width: clamp(220px, 220px + 280 * (100vw - 600px) / 1320, 500px);
  height: clamp(220px, 220px + 280 * (100vw - 600px) / 1320, 500px);
  border: 1px solid black;
  border-radius: 50%;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .sub::after {
    display: none;
  }
}
.sub.circle-right::after {
  right: -5%;
}
.sub.circle-left::after {
  left: -8%;
}
.sub .texts {
  display: flex;
}
@media (max-width: 768px) {
  .sub .texts {
    flex-direction: column;
  }
}
.sub .texts.reverse-row {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .sub .texts.reverse-row {
    flex-direction: column;
  }
}
.sub .texts.reverse-row p {
  padding-right: 0;
  padding-left: 3%;
}
.sub .texts p {
  width: 50%;
  padding-right: 3%;
  font-family: var(--font-tittle);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  text-align: left;
}
@media (max-width: 768px) {
  .sub .texts p {
    width: 100%;
    padding-right: 0;
    padding-bottom: 10px;
  }
}
.sub .texts .img {
  width: 50%;
  z-index: 1;
}
@media (max-width: 768px) {
  .sub .texts .img {
    width: 100%;
  }
}
.sub .texts .img img {
  border-radius: 20px;
}
@media (max-width: 768px) {
  .sub .texts .img img {
    height: 300px;
  }
}

#stay-detail,
#dine-detail {
  font-family: var(--font-tittle);
}
#stay-detail .section-title,
#dine-detail .section-title {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #stay-detail .section-title,
#dine-detail .section-title {
    padding-top: 50px;
  }
}
#stay-detail .section-title::after,
#dine-detail .section-title::after {
  content: none;
}
#stay-detail .subtitle,
#dine-detail .subtitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
}
#stay-detail .subtitle span,
#dine-detail .subtitle span {
  position: relative;
}
#stay-detail .subtitle span::after,
#dine-detail .subtitle span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6em;
  background-color: #E9DFBF;
  z-index: -1;
}
#stay-detail h3,
#dine-detail h3 {
  font-size: clamp(1.5rem, 1.5rem + 0.5 * (100vw - 1024px) / 896, 2rem);
  position: relative;
}
#stay-detail h3 span,
#dine-detail h3 span {
  position: relative;
}
#stay-detail h3 span::after,
#dine-detail h3 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6em;
  background-color: #E9DFBF;
  z-index: -1;
}

.dine-inner,
.stay-inner {
  display: flex;
  margin-bottom: 80px;
  padding-top: 60px;
  border-top: 1px dashed #333;
}
@media (max-width: 768px) {
  .dine-inner,
.stay-inner {
    flex-direction: column;
  }
}
.dine-inner .left,
.stay-inner .left {
  width: 50%;
}
@media (max-width: 768px) {
  .dine-inner .left,
.stay-inner .left {
    width: 100%;
  }
}
.dine-inner .left img,
.stay-inner .left img {
  border-radius: 10px;
  height: auto;
}
.dine-inner .right,
.stay-inner .right {
  width: 50%;
  padding-left: 3%;
}
@media (max-width: 768px) {
  .dine-inner .right,
.stay-inner .right {
    width: 100%;
  }
}
.dine-inner .right .feature,
.stay-inner .right .feature {
  font-size: clamp(0.7rem, 1.2vw, 1.1rem);
}
@media (max-width: 768px) {
  .dine-inner .right .feature,
.stay-inner .right .feature {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .dine-inner .right .feature,
.stay-inner .right .feature {
    font-size: 0.9rem;
  }
}
.dine-inner .right .info,
.stay-inner .right .info {
  margin-top: 5%;
}
.dine-inner .right .info dl,
.stay-inner .right .info dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3%;
  font-size: clamp(0.7rem, 1.2vw, 1.1rem);
}
@media (max-width: 768px) {
  .dine-inner .right .info dl,
.stay-inner .right .info dl {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .dine-inner .right .info dl,
.stay-inner .right .info dl {
    font-size: 0.9rem;
  }
}
.dine-inner .right .info dl dt,
.stay-inner .right .info dl dt {
  width: 25%;
}
@media (max-width: 768px) {
  .dine-inner .right .info dl dt,
.stay-inner .right .info dl dt {
    width: 140px;
  }
}
@media (max-width: 500px) {
  .dine-inner .right .info dl dt,
.stay-inner .right .info dl dt {
    width: 120px;
  }
}
.dine-inner .right .info dl dd,
.stay-inner .right .info dl dd {
  width: 75%;
}
@media (max-width: 768px) {
  .dine-inner .right .info dl dd,
.stay-inner .right .info dl dd {
    width: calc(100% - 140px);
  }
}
@media (max-width: 500px) {
  .dine-inner .right .info dl dd,
.stay-inner .right .info dl dd {
    width: calc(100% - 120px);
  }
}
.dine-inner .right .info li,
.stay-inner .right .info li {
  list-style: disc;
  list-style-position: inside;
  font-size: clamp(0.7rem, 1.2vw, 1.1rem);
}
@media (max-width: 768px) {
  .dine-inner .right .info li,
.stay-inner .right .info li {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .dine-inner .right .info li,
.stay-inner .right .info li {
    font-size: 0.9rem;
  }
}
.dine-inner .right .info li::marker,
.stay-inner .right .info li::marker {
  color: #555;
}

.dine-access,
.stay-access {
  margin-bottom: 80px;
}
.dine-access h3,
.stay-access h3 {
  text-align: center;
}
.dine-access .dine-map,
.stay-access .dine-map {
  margin-top: 30px;
}
.dine-access .dine-map iframe,
.stay-access .dine-map iframe {
  width: 100%;
  height: 400px;
}
@media (max-width: 1024px) {
  .dine-access .dine-map iframe,
.stay-access .dine-map iframe {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .dine-access .dine-map iframe,
.stay-access .dine-map iframe {
    height: 300px;
  }
}
@media (max-width: 500px) {
  .dine-access .dine-map iframe,
.stay-access .dine-map iframe {
    height: 250px;
  }
}

#news {
  font-family: var(--font-tittle);
  position: relative;
  background-color: white;
  padding-block: 80px;
  /* 下の境界 */
}
@media (max-width: 768px) {
  #news {
    padding-block: 40px 100px;
  }
}
#news::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #FFFBFB;
  transform: skewY(2deg);
  transform-origin: top left;
}
#news::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #FFFBFB;
  transform: skewY(2deg);
  transform-origin: bottom left;
}
#news .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  #news .container {
    flex-direction: column;
  }
}
#news .container .section-title {
  writing-mode: vertical-rl;
}
@media (max-width: 1024px) {
  #news .container .section-title {
    writing-mode: horizontal-tb;
    padding-top: 50px;
    margin-bottom: 100px;
  }
}
#news .container .section-title::after {
  content: none;
}
@media (max-width: 1024px) {
  #news .container .section-title::after {
    content: "";
  }
}
#news .container .section-title .en {
  text-orientation: upright;
}

.news-list {
  max-width: 800px;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .news-list {
    margin-bottom: 40px;
  }
}
.news-list li {
  border-top: 1px solid #333;
}
@media (max-width: 768px) {
  .news-list li {
    font-size: 0.9rem;
  }
}
@media (max-width: 500px) {
  .news-list li {
    font-size: 0.8rem;
  }
}
.news-list li:last-of-type {
  border-bottom: 1px solid #333;
}
.news-list li a {
  display: block;
  width: 100%;
  padding: 15px 160px 15px 30px;
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .news-list li a {
    padding: 15px 80px 15px 30px;
  }
}
.news-list li a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  right: 30px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: translateY(-50%) rotate(45deg);
}
.news-list li a time {
  font-weight: 600;
  margin-bottom: 5px;
  border-bottom: 1px solid #555555;
}
.news-list li a:hover {
  transform: scale(1.03);
}

.news-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border: 2px solid #333;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  font-size: 1.25rem;
  transition: all 0.3s;
}
.news-btn::before {
  position: absolute;
  content: "";
  background-image: url("../img/wasi.jpg");
  background-size: cover;
  background-position: center;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
}
.news-btn span {
  position: relative;
}
.news-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.8em;
  background-color: #E9DFBF;
  z-index: -1;
  opacity: 0.6;
}
.news-btn:hover {
  scale: 1.1;
}

#news-detail {
  margin-bottom: 80px;
}

.news-detail {
  max-width: 800px;
  margin-inline: auto;
  font-family: var(--font-tittle);
  padding-inline: 20px;
}
.news-detail li {
  border-top: 1px solid #333;
  padding: 15px 160px 15px 30px;
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .news-detail li {
    font-size: 0.9rem;
    padding: 15px 60px 15px 30px;
  }
}
@media (max-width: 500px) {
  .news-detail li {
    font-size: 0.8rem;
  }
}
.news-detail li:last-of-type {
  border-bottom: 1px solid #333;
}
.news-detail li::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  right: 30px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: translateY(-50%) rotate(45deg);
}
.news-detail li time {
  font-weight: 600;
  margin-bottom: 5px;
  border-bottom: 1px solid #555555;
}

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

#question {
  margin-bottom: 80px;
  font-family: var(--font-tittle);
  padding: 20px;
}
#question .faq {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-item .faq-question {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  background: #ffffff;
}
.faq-item .faq-question .icon.q-icon {
  width: 26px;
  height: 26px;
  color: var(--orange-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  font-size: 1.2rem;
}
.faq-item .faq-question .question-text {
  flex: 1;
}
.faq-item .faq-question .arrow {
  transition: transform 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--orange-color);
}
.faq-item .faq-answer {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0 18px;
  border-top: 1px solid transparent;
  transition: height 0.35s ease, opacity 0.35s ease, padding 0.35s ease, border-top-color 0.3s ease;
}
.faq-item .faq-answer .icon.a-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #dddddd;
  color: #555555;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 12px;
  flex-shrink: 0;
}
.faq-item .faq-answer p {
  margin: 0;
  flex: 1;
}
.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  border-top-color: #e5e5e5;
}
/*# sourceMappingURL=main.css.map */