#room2_wrap {
  opacity: 1;
  transition: opacity 1s ease;
}

#room2_wrap.fade-out {
  opacity: 0;
  pointer-events: none;
}





/* ===============================
   acs-top
================================= */
.acs-top {
  padding:0 0 0 0;
}
.acs-top .area {
  display: grid;
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}
.acs-top .area h1 {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  z-index: 1;
}
.acs-top .area h1::before {
  content: "";
  position: absolute;
  top: calc(-100vh - 1rem);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100vh;
  background-color: #fff;
  z-index: 0;
}
.acs-top .area .image {
  grid-area: 1 / 1;
  z-index: 0;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}
.acs-top .area .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
.acs-top .area {
  height: auto;
}
.acs-top .area .image {
  height:auto;
}
}




/* ===============================
   room-video
================================= */
.room-video {
  padding: 10% 0 0 0;
  color: white;
}
.room-video .area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.room-video .wrap01 {
  width: 55%;
}
.room-video .wrap01 video {
  width: 100%;
}
.room-video .wrap02 {
  width: 40%;
}
.room-video h2 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 1rem;
  color: #766000;
  border-bottom: 1px solid #766000;
}
.room-video h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
}
.room-video p {
  font-size: 1rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .room-video {
    padding: 20% 5%;
  }
  .room-video .area {
    width: 100%;
  }
  .room-video .wrap01 {
    width: 100%;
  }
  .room-video .wrap02 {
    width: 100%;
  margin-top: 1rem;
  }
  .room-video h2 {
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
  }
}





/* ===============================
   room-sec01
================================= */
.room-sec01 {
  margin: 15% 0 0 0;
  color: white;
}
.room-sec01 .area {
    width: 80%;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: url(../img/room/room_bg.png) center / contain no-repeat;
}
.room-sec01 .wrap01 {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:2rem;
}
.room-sec01 .wrap01 > h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #766000;
    writing-mode: vertical-rl;
}
.room-sec01 .wrap01 > p {
    font-size: 1rem;
    color: #fff;
}
.room-sec01 .wrap02 {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 60%;
}
.room-sec01 .image {
    width: 30%;
}
.room-sec01 .image:nth-child(2) {
    margin-top: 15vh;
  transition-delay: 0.2s;
}
.room-sec01 .image:nth-child(3) {
    margin-top: 5vh;
  transition-delay: 0.4s;
}

@media only screen and (max-width: 1024px) {
.room-sec01 {
  margin: 10% 5%;
  color: white;
}
.room-sec01 .area {
    width: 100%;
    flex-direction: column;
    gap:3rem;
}
.room-sec01 .wrap01 {
    width: 100%;
    gap:1rem;
    align-items: left;
}
.room-sec01 .wrap01 > h2 {
    font-size: 2rem;
    writing-mode: horizontal-tb;
}
.room-sec01 .wrap02 {
    width: 100%;
}
}





/* ===============================
   room-sec02
================================= */
.room-sec02 {
    margin:15% 0 0 0;
    color:white;
}
.room-sec02 .area {
    width:80%;
    margin:0 auto;
}
.room-sec02 .wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:3rem;
    align-items: center;
}
.room-sec02 .box01 {
    width: 45%;
}
.room-sec02 .box01 img{
    width: 100%;
}
.room-sec02 .box02 {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.room-sec02 .box02 .image{
    max-width:300px;
    margin-bottom:2rem;
}
.room-sec02 .box02 > h2 {
    font-size: clamp(1.5rem,5vw,2rem);
    font-weight: bold;
    color: #766000;
    margin-bottom:2rem;
}
.room-sec02 .box02 > p {
    font-size: 1rem;
    margin-bottom:3rem;
}
.room-sec02 .box02 > h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom:1rem;
}
.room-sec02 .box02 > ul {
    font-size:1rem;
    display: flex;
    flex-wrap: wrap;
    gap:0.5rem 2rem;flex-direction: column;
}
.room-sec02 .box02 ul > li {
}

@media only screen and (max-width: 1024px) {
.room-sec02 {
    margin:30% 0 0 0;
    padding:0 5%;
}
.room-sec02 .area {
    width:100%;
}
.room-sec02 .wrap {
    flex-direction: column;
}
.room-sec02 .box01 {
    width: 100%;
}
.room-sec02 .box02 {
    width: 100%;
}
.room-sec02 .box02 .image{
    max-width:200px;
}
.room-sec02 .box02 > ul {
    width:auto;
    flex-direction: column;margin:0 auto;
}
}





/* ===============================
   room-tab
================================= */
.room-tab {
    margin:15% 0 0 0;
    color:white;
}
.room-tab .area {
}
.room-tab h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom:2rem;
}
.room-tab .wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.room-tab .box {
    position: relative;
    width: calc(100% / 6);
    cursor: pointer;
}
.room-tab .box.active img {
    filter: unset;
}
.room-tab .box:hover img {
    filter: unset;
}
.room-tab .box img {
    filter: grayscale(100%);
    width:100%;
    height:100%;
    object-fit: cover;
}
.room-tab h3 {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: end;
  writing-mode: vertical-rl;
  background-color: rgba(0, 0, 0, 0.4); /* ← 半透明の黒背景 */
  padding: 1rem;
}
.room_tab_list_txt {
    width: 80%;
    font-size: 1.5rem;
    color: #766000;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid;
}

@media only screen and (max-width: 1024px) {
.room-tab {
    margin:30% 0 0 0;
    color:white;
}
.room-tab h2 {
    font-size: 2rem;
    margin-bottom:1rem;
}
.room-tab .wrap {
    justify-content: center;
    gap:1rem;
}
.room-tab .box {
    width:28%;
}
.room-tab h3 {
  bottom: 0;
  right: 0;
  font-size: 0.75rem;
  padding: 0.5rem;
  line-height:1.25;
}
.room_tab_list_txt {
    font-size: 1rem;
    margin-top: 15px;
}
}





/* ===============================
   room2 area01
================================= */
.room2 {
  margin: 10% 0 0 0;
  color: white;
}
.room2 .area01 {
}
.room2 .area01 .wrap01 {
}
.room2 .area01 .wrap01 h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.room2 .area01 .room_splide {
  position: relative;
    width:100%;
    margin:0 auto;
}
.room2 .area01 .splide__slide {
  position: relative;
    width:100%;
}
.room2 .area01 .splide__slide img {
    width:100%;
}
.room2 .area01 .splide__slide .caption {
  position: static;
  font-size:1rem;
  text-align: center;
  margin: 0.5rem 0;
}
.room2 .area01 .splide__pagination {
  position: relative;
}
.room2 .area01 .splide__pagination li {
  list-style: none;
}
.room2 .area01 .splide__pagination button {
  width: 30px;
  height: 4px;
  background-color: #aaa;
  border-radius: 0px;
  opacity: 1;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.room2 .area01 .splide__pagination button.is-active {
  width: 30px;
  height: 4px;
  border-radius: 0px;
  background-color: #7F6000;
  opacity: 1;
  transform: scale(1.0);
}

/* ===============================
   room2 area02
================================= */
.room2 .area02 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% auto 0 auto;
  width:80%;
  gap:5rem;
  padding-inline:5%;
}
.room2 .area02 .wrap01 {
    width:50%;
}
.room2 .area02 .wrap01 h2 {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.room2 .area02 p {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.room2 .area02 table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2rem;
}

.room2 .area02 table th,
.room2 .area02 table td {
  padding: 1rem;
  color: white;
  border-top: 1px solid white; /* ← 追加！ */
  border-bottom: 1px solid white;
}

.room2 .area02 .icon-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.room2 .area02 .icon-list li{
  width: 100px;
}

.room2 .area02 .icon-list li img {
  width: 100%;
}
.room2 .area02 .wrap01 .btn {
  padding: 0.75rem 2rem;
  font-weight: bold;
  font-size: 1.5rem;
  border: 2px solid white;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin:2rem auto 0 auto;
}
.room2 .area02 .wrap01 .btn:hover {
  background-color: white;
  color: black;
}
.room2 .area02 .wrap02 {
    width:50%;
}
.room2 .area02 .wrap02 img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.room2 .area02 .splide__slide img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.room2 .area02 .caption {
    text-align: center;
}
.room2 .area02 .room_splide {
  position: relative;
  padding-left: 3rem;
  padding-right: 3rem;
  box-sizing: border-box;
  width: 100%;
}
.room2 .area02 .wrap02 li{
  list-style: none;
}

.room2 .area02 .splide__pagination {
  position: relative;
  padding: 1rem 0;
}
.room2 .area02 .splide__pagination button {
  width: 10px;
  height: 10px;
  background-color: white;
  border: none;
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.room2 .area02 .splide__pagination button.is-active {
  width: 12px;
  height: 12px;
  background-color: #7F6000;
  opacity: 1;
  transform: scale(1.2);
}

@media only screen and (max-width: 768px) {
.room2 {
}
.room2 .area01 .wrap01 h2 {
  font-size: 1.5rem;
    padding-inline:5%;
}
.room2 .area02 {
  margin: 10% auto 0 auto;
  width:100%;
  gap:2rem;
  flex-direction: column;
}
.room2 .area02 .wrap01 {
    width:100%;
}
.room2 .area02 .wrap02 {
    width:100%;
}
}





/* ===============================
   room-sec03
================================= */
.room-sec03 {
  margin:10% 0 10% 0;
  color:white;
}
.room-sec03 .area {
}
.room-sec03 h2 {
  font-size:2rem;
  text-align: center;
  margin-bottom:2rem;
}
.room-sec03 .list {
  max-width:50%;
  margin:0 auto;
  display: block;
  border-top: 1px dotted #ccc;
}
.room-sec03 dl {
  display: flex;
  gap:1rem;
  border-bottom: 1px dotted #ccc;
  align-items: flex-start;
  padding: 1rem;
}
.room-sec03 dt {
  font-size:1.1rem;
  width:20%;
  font-weight: bold;
  box-sizing: border-box;
}
.room-sec03 dd {
  width: 80%;
}
@media only screen and (max-width: 768px) {
.room-sec03 {
    margin:25% 5%;
    color:white;
}
.room-sec03 .list {
    max-width:100%;
}
.room-sec03 dl {
    flex-direction: column;
}
.room-sec03 dt {
  width:100%;
}
.room-sec03 dd {
  width: 100%;
}
}





/* ===============================
   room-sec04
================================= */
.room-sec04 {
  padding:10% 0 0 0;
  color:white;
}
.room-sec04 .area {
}
.room-sec04 h2 {
  font-size:2rem;
  text-align: center;
  margin-bottom:2rem;
}
.room-sec04 img {
  display: block;
  width: 100%;
  max-width:1200px;
  margin:0 auto;
}
@media only screen and (max-width: 768px) {
.room-sec04 {
  padding:15% 0 0 0;
}
.room-sec04 .area {
    padding-inline:5%;
}
.room-sec04 h2 {
  margin-bottom:0.5rem;
}
}





