@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  transition: 0.3s;
  box-sizing: border-box;
}

html,
body {
  font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS PMincho", serif;
  overflow-x: hidden;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #007a7a;
  position: relative;
  letter-spacing: 0.2em;
}
h2 .title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
h2 .title-line > span {
  display: flex;
  flex-direction: column;
  position: relative;
}
h2 .title-line hr {
  flex: 1;
  height: 2px;
  border: none;
  background: linear-gradient(to right, transparent, #007a7a);
}
h2 .title-line hr:last-of-type {
  background: linear-gradient(to left, transparent, #007a7a);
}
h2 .sub-title {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}
h2 .text-decoration {
  position: absolute;
  width: 100px;
  top: -15%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#top {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
#top .top-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#top .top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 1;
}
#top .top-hotelLogo {
  width: 470px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
#top .scroll {
  position: absolute;
  font-size: 13px;
  writing-mode: vertical-rl;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#top .scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #ffffff;
  right: 50%;
  bottom: -115px;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  animation: scroll 1.5s infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.flower-block {
  position: absolute;
  left: 20px;
  top: 10px;
}
.flower-block .flower01 {
  transform: rotate(45deg);
}
.flower-block .flower02 {
  left: 60px;
  top: 55px;
  width: 75px;
  transform: rotate(10deg);
}

.flower {
  position: absolute;
  width: 120px;
  z-index: 10;
  transition: transform 1s ease;
  transform-origin: center center;
}
.flower.right-bottom {
  right: 10px;
  bottom: 25px;
}

.wave-up {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.wave-down {
  position: absolute;
  width: 100%;
  bottom: 0;
}

.back-text {
  position: absolute;
  bottom: -75px;
  right: 40px;
  z-index: 0;
  font-size: 120px;
  opacity: 0.05;
}

#renewal,
#room,
#service,
#facility,
#access {
  padding: 50px 0;
}

.room-contents,
.service-contents,
.facility-contents,
.access-contents {
  padding: 25px 15px;
}

.renewal-contents {
  padding: 25px 0;
}

.mandara {
  position: absolute;
  z-index: -1;
}

.leaf {
  position: absolute;
  z-index: -1;
}

@media (max-width: 1024px) {
  #top {
    height: 70vw;
  }
  .flower {
    width: 75px;
  }
  .flower-block .flower02 {
    top: 30px;
    width: 50px;
  }
}
@media (max-width: 768px) {
  #top .top-hotelLogo {
    width: 60%;
  }
  .back-text {
    font-size: 75px;
    bottom: -40px;
  }
}
@media (max-width: 580px) {
  .flower {
    width: 14vw;
  }
  .flower-block .flower02 {
    width: 8vw;
    top: 6vw;
    left: 10vw;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 6.5vw;
  }
  h2 .text-decoration {
    width: 20%;
  }
  .back-text {
    font-size: 14vw;
    bottom: -7vw;
  }
}
/*------------------------------------------------------*/
/* ↑ 汎用 
/*------------------------------------------------------*/
.main-contents {
  position: relative;
}
.main-contents::before, .main-contents::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  background-repeat: repeat-y;
  z-index: 5000;
  pointer-events: none;
}
.main-contents::before {
  left: 0;
  background-image: url(../img/bg-flowerline.png);
}
.main-contents::after {
  right: 0;
  background-image: url(../img/bg-flowerline_r.png);
}

/*------------------------------------------------------*/
/* ↓ header
/*------------------------------------------------------*/
.hamburger {
  position: fixed;
  top: 40px;
  right: 25px;
  width: 60px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
}
.hamburger span {
  display: block;
  width: 50px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}
.hamburger span:nth-child(1) {
  top: -10px;
}
.hamburger span:nth-child(2) {
  top: 0;
}
.hamburger span:nth-child(3) {
  top: 10px;
}
.hamburger.active span {
  background: #ffffff;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 0;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 0;
}
.hamburger .menu-label {
  margin-top: 40px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 1px;
  pointer-events: none;
}
.hamburger.active .menu-label {
  color: #ffffff;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  padding-top: 80px;
  background: url("../img/menu-back.jpeg") no-repeat right bottom;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 9998;
  overflow-y: auto;
}
.nav-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.nav-menu ul {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0 20px;
}
.nav-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 0;
}
.nav-menu ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-menu ul li a::before {
  content: ">";
  margin-right: 10px;
  transition: margin 0.3s ease;
}
.nav-menu ul li a:hover {
  color: #f7c639;
}
.nav-menu ul li a:hover::before {
  margin-right: 15px;
}
.nav-menu.active {
  right: 0;
}

.menu-logo {
  width: 150px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 480px) {
  .hamburger {
    top: 30px;
    right: 20px;
    width: 40px;
    height: 15px;
  }
  .hamburger span {
    width: 35px;
    height: 2px;
  }
  .hamburger span:nth-child(1) {
    top: -6px;
  }
  .hamburger span:nth-child(3) {
    top: 6px;
  }
  .nav-menu {
    width: 100%;
  }
}
/*------------------------------------------------------*/
/* ↑ header
/*------------------------------------------------------*/
/*------------------------------------------------------*/
/* ↓ renewal
/*------------------------------------------------------*/
#renewal {
  position: relative;
}
#renewal h2 {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  letter-spacing: 0;
}
#renewal h2 br {
  display: none;
}

.baliland {
  position: absolute;
  right: 0;
  top: 10%;
  z-index: -1;
}

.bird {
  width: 100px;
}

.bird02 {
  transform: rotate(180deg);
}

.renewal-text {
  letter-spacing: 0.05em;
  font-size: 18px;
  line-height: 2.2em;
  text-align: center;
}

.gallery-contents .gallery-right {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 700px;
}

.combined-marquee {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: scrollLeft 70s linear infinite;
  gap: 350px;
  padding-top: 13px;
  position: relative;
}
.combined-marquee img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  height: auto;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.combined-marquee .slide {
  position: relative;
}
.combined-marquee .slide img {
  position: absolute;
  left: 0;
  top: 0;
}

.slide-1 .img-1 {
  width: 300px;
  transform: translate(20px, 0px) rotate(-3deg);
}
.slide-1 .img-2 {
  width: 305px;
  transform: translate(80px, 380px) rotate(2deg);
}

.slide-2 .img-1 {
  width: 320px;
  transform: translate(-5px, 65px) rotate(1deg);
}
.slide-2 .img-2 {
  width: 280px;
  transform: translate(60px, 460px) rotate(-1deg);
}

.slide-3 .img-1 {
  width: 340px;
  transform: translate(0px, 100px) rotate(3deg);
}
.slide-3 .img-2 {
  width: 305px;
  transform: translate(90px, 360px) rotate(-4deg);
}

.slide-4 .img-1 {
  width: 280px;
  transform: translate(50px, 20px) rotate(-2deg);
}
.slide-4 .img-2 {
  width: 300px;
  transform: translate(90px, 400px) rotate(3deg);
}

.slide-5 .img-1 {
  width: 260px;
  transform: translate(10px, 60px) rotate(0deg);
}
.slide-5 .img-2 {
  width: 300px;
  transform: translate(120px, 325px) rotate(-2deg);
}

.slide-6 .img-1 {
  width: 250px;
  transform: translate(10px, 30px) rotate(1deg);
}
.slide-6 .img-2 {
  width: 255px;
  transform: translate(115px, 480px) rotate(-3deg);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.mandara01 {
  width: 50%;
  bottom: 0%;
  left: -10%;
  opacity: 0.25;
}

@media screen and (max-width: 1024px) {
  .baliland {
    width: 650px;
  }
  .mandara01 {
    width: 70%;
    left: -25%;
  }
}
@media (max-width: 950px) {
  #renewal h2 br {
    display: block;
  }
  .renewal-text {
    padding: 0 35px;
  }
}
@media (max-width: 768px) {
  #renewal h2 span {
    font-size: 4.2vw;
  }
  .baliland {
    width: 300px;
  }
  .bird {
    width: 10vw;
  }
  .gallery-contents {
    flex-direction: column;
  }
  .gallery-contents .gallery-left,
  .gallery-contents .gallery-right {
    flex: none;
    width: 100%;
    height: 400px;
  }
  .combined-marquee {
    gap: 225px;
  }
  .slide-1 .img-1 {
    width: 200px;
    transform: translate(10px, 0px) rotate(-5deg);
  }
  .slide-1 .img-2 {
    width: 180px;
    transform: translate(-15px, 180px) rotate(4deg);
  }
  .slide-2 .img-1 {
    width: 190px;
    transform: translate(-20px, 60px) rotate(6deg);
  }
  .slide-2 .img-2 {
    width: 170px;
    transform: translate(20px, 220px) rotate(-3deg);
  }
  .slide-3 .img-1 {
    width: 195px;
    transform: translate(-4px, 0px) rotate(-7deg);
  }
  .slide-3 .img-2 {
    width: 175px;
    transform: translate(0px, 215px) rotate(5deg);
  }
  .slide-4 .img-1 {
    width: 185px;
    transform: translate(-15px, 10px) rotate(3deg);
  }
  .slide-4 .img-2 {
    width: 165px;
    transform: translate(15px, 190px) rotate(-4deg);
  }
  .slide-5 .img-1 {
    width: 180px;
    transform: translate(18px, 40px) rotate(-6deg);
  }
  .slide-5 .img-2 {
    width: 160px;
    transform: translate(-5px, 185px) rotate(6deg);
  }
  .slide-6 .img-1 {
    width: 170px;
    transform: translate(-12px, 20px) rotate(4deg);
  }
  .slide-6 .img-2 {
    width: 160px;
    transform: translate(12px, 200px) rotate(-5deg);
  }
  .mandara01 {
    bottom: 10%;
    width: 80%;
  }
}
@media (max-width: 670px) {
  .renewal-text {
    font-size: 2.5vw;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .gallery-contents .gallery-left,
  .gallery-contents .gallery-right {
    height: 295px;
  }
  .combined-marquee {
    gap: 190px;
  }
  .baliland {
    width: 70%;
  }
  .slide-1 .img-1 {
    width: 170px;
    transform: translate(8px, 0px) rotate(-4deg);
  }
  .slide-1 .img-2 {
    width: 150px;
    transform: translate(-10px, 140px) rotate(3deg);
  }
  .slide-2 .img-1 {
    width: 165px;
    transform: translate(-12px, 30px) rotate(5deg);
  }
  .slide-2 .img-2 {
    width: 145px;
    transform: translate(10px, 160px) rotate(-2deg);
  }
  .slide-3 .img-1 {
    width: 160px;
    transform: translate(10px, 20px) rotate(-5deg);
  }
  .slide-3 .img-2 {
    width: 150px;
    transform: translate(-10px, 130px) rotate(4deg);
  }
  .slide-4 .img-1 {
    width: 155px;
    transform: translate(-8px, 10px) rotate(3deg);
  }
  .slide-4 .img-2 {
    width: 140px;
    transform: translate(12px, 150px) rotate(-3deg);
  }
  .slide-5 .img-1 {
    width: 150px;
    transform: translate(8px, 25px) rotate(-4deg);
  }
  .slide-5 .img-2 {
    width: 135px;
    transform: translate(-8px, 120px) rotate(5deg);
  }
  .slide-6 .img-1 {
    width: 145px;
    transform: translate(-5px, 15px) rotate(3deg);
  }
  .slide-6 .img-2 {
    width: 130px;
    transform: translate(10px, 140px) rotate(-2deg);
  }
  .mandara01 {
    width: 60%;
  }
}
/*------------------------------------------------------*/
/* ↑ renewal
/*------------------------------------------------------*/
/*------------------------------------------------------*/
/* ↓ Room
/*------------------------------------------------------*/
#room {
  position: relative;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.room-gallery img {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

#room {
  position: relative;
  background-image: url("../img/room-back.jpeg");
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
}
#room::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 128, 128, 0.4);
  z-index: 2;
}
#room .room-contents {
  position: relative;
  z-index: 3;
  color: #fff;
}
#room .room-contents p {
  letter-spacing: 0.05em;
  font-size: 18px;
  line-height: 2.2em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #room .room-contents p {
    font-size: 2.5vw;
  }
  .room-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-gallery img {
    height: 40vw;
  }
}
/*------------------------------------------------------*/
/* ↑ Room
/*------------------------------------------------------*/
/*------------------------------------------------------*/
/* ↓ service
/*------------------------------------------------------*/
#service {
  background: #f8f8f8;
  background-image: url(../img/bg-w.png);
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: screen;
  background-attachment: fixed;
  background-position: bottom center;
}
#service .service-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
#service .service-item {
  text-align: center;
  position: relative;
  width: calc(33.333% - 20px);
}
#service .service-item .img-wrapper {
  position: relative;
  display: inline-block;
}
#service .service-item .img-wrapper img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
#service .service-item .img-wrapper .shadow {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(6px);
  z-index: -1;
}

.service-name {
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  #service .service-contents {
    max-width: 700px;
    justify-content: center;
    gap: 25px 10px;
  }
  #service .service-item {
    width: 45%;
  }
}
@media (max-width: 480px) {
  #service .service-contents {
    gap: 15px 10px;
  }
  .service-name {
    font-size: 2.8vw;
  }
}
/*------------------------------------------------------*/
/* ↑ service
/*------------------------------------------------------*/
/*------------------------------------------------------*/
/* ↓ facirity
/*------------------------------------------------------*/
.leaf-l {
  left: -150px;
  top: 16%;
  height: 75%;
  transform: rotate(-90deg);
  z-index: 0;
}

.leaf-r {
  right: -145px;
  top: 16%;
  height: 75%;
  transform: rotate(90deg);
  z-index: 0;
}

#facility {
  position: relative;
  background-image: url(../img/facility-back01.jpeg);
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: screen;
  background-position: bottom center;
}

.facility-contents {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  flex-direction: column;
  gap: 25px;
}
.slider-container .gallery-swiper {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.slider-container .gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-container .gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.attention {
  font-weight: bold;
  padding: 10px 0;
}

.facility-text {
  flex: 1;
  min-width: 280px;
  padding: 24px 32px;
  position: relative;
  z-index: 0;
}
.facility-text .hotel-name {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  border-bottom: solid 1px #007a7a;
  padding-left: 0.3em;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
}
.facility-text .hotel-name .purumeria {
  width: 1lh;
}
.facility-text table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.facility-text table td {
  padding: 20px 8px;
  border-bottom: 1px solid #cccccc;
}
.facility-text table td:first-child {
  color: #007a7a;
  font-weight: bold;
  width: 35%;
}
.facility-text table td:nth-of-type(2),
.facility-text table td a {
  /* スタイルをここに書く */
  color: #000000;
}

@media (max-width: 1300px) {
  .leaf-r {
    right: -190px;
  }
  .leaf-l {
    left: -190px;
  }
}
@media (max-width: 1024px) {
  .slider-container {
    max-width: 50%;
    gap: 10px;
  }
  .slider-container .gallery-swiper {
    width: 50vw;
    height: auto;
    aspect-ratio: 1/1;
  }
  .facility-text table td {
    padding: 13px 8px;
  }
}
@media screen and (max-width: 768px) {
  .leaf-r {
    right: -290px;
  }
  .leaf-l {
    left: -290px;
  }
  .facility-contents {
    flex-direction: column;
    align-items: normal;
    max-width: 550px;
  }
  .facility-contents .facility-text {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7490196078);
  }
  .facility-contents .facility-img {
    max-width: 100%;
  }
  .slider-container {
    max-width: 100%;
  }
  .slider-container .gallery-swiper {
    width: 100%;
    border-radius: 20px;
    animation: none;
    aspect-ratio: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 480px) {
  .attention {
    font-size: 2.8vw;
  }
}
/*------------------------------------------------------*/
/* ↑ facirity
/*------------------------------------------------------*/
/*------------------------------------------------------*/
/* ↓ ACCESS
/*------------------------------------------------------*/
.black-wave {
  position: absolute;
  z-index: 2;
}

#access {
  position: relative;
  background-color: #F6E2D3;
  padding-bottom: 10em;
}
#access .access-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}
#access .access-contents iframe {
  flex: 1 1 600px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
#access .access-contents .root {
  flex: 1 1 300px;
}
#access .access-contents .root .root-car,
#access .access-contents .root .root-train {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#access .access-contents .root .root-car h3,
#access .access-contents .root .root-train h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007a7a;
  margin-bottom: 10px;
}
#access .access-contents .root .root-car p,
#access .access-contents .root .root-train p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.access-button {
  display: flex;
  justify-content: center;
}

.rootMap {
  padding: 20px;
  display: block;
  width: 250px;
  text-align: center;
  background-color: #333;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
}
.rootMap:hover {
  background-color: #007a7a;
}

.access-city {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  #access {
    padding-bottom: 5em;
  }
  #access .mandara02 {
    bottom: 5%;
  }
  #access .mandara03 {
    top: 5%;
    width: 190px;
  }
  .access-contents {
    flex-direction: column;
    align-items: center;
  }
  .access-contents iframe,
  .access-contents .root {
    width: 100%;
  }
}
/*------------------------------------------------------*/
/* ↑ ACCESS
/*------------------------------------------------------*/
/*------------------------------------------------------*/
/* ↓ footer
/*------------------------------------------------------*/
footer {
  position: relative;
  background: url("../img/footer-back.jpeg") no-repeat center center;
  background-size: cover;
  padding: 60px 20px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
footer .footer-contents,
footer p {
  position: relative;
  z-index: 2;
}
footer p {
  margin-top: 30px;
  font-size: 0.85rem;
}

.footer-logo {
  width: 300px;
}

@media (max-width: 768px) {
  footer {
    padding: 30px 20px 10px;
  }
  .footer-logo {
    width: 40%;
  }
}
/*------------------------------------------------------*/
/* ↑ footer
/*------------------------------------------------------*/
.ripple-effect {
  position: fixed;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.5s linear;
  background-color: rgba(173, 216, 230, 0.6);
  pointer-events: none;
  z-index: 9999;
  width: 20px;
  height: 20px;
}

@keyframes ripple-animation {
  to {
    transform: scale(3);
    opacity: 0;
  }
}
.parallax-dots-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
}
.parallax-dots-container .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(173, 216, 230, 0.25);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* 全体に適用 */
::-webkit-scrollbar {
  width: 8px;
  /* 縦スクロールバーの幅 */
  height: 8px;
  /* 横スクロールバーの高さ（横スクロールがある場合） */
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  /* トラック（背景） */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4af37, #f8e58c);
  /* ゴールド系グラデ */
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #b9942c, #f5da72);
  /* ホバー時の色調整 */
}/*# sourceMappingURL=style.css.map */