@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Noto+Sans+JP:wght@100..900&display=swap');

/* ===== Base Styles ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  padding: 0 auto;
  scroll-behavior: inherit;
}

img {
  width: 100%;
  max-width: max-content;
}
/* ===== Navigation ===== */ 
nav {
  padding: 46px 50px;
}

.navbar {
  background-color: #111324;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list li {
  text-align: center;
  list-style: none;
  flex: 1;
  border-right: 1px solid white;
}

.nav-list li:last-child {
  border-right: none;
}

.nav-list li:nth-last-child(2) {
  border-right: none;
}

li a {
  text-decoration: none;
  color: #ffffff;
}

.home-en {
  font-family: "Lora", serif;
  color: white;
}

ruby {
  ruby-align: center;
  ruby-position: over;
  line-height: 1;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

rt {
  font-size: 1em;
  color: white;
}

.booking-button {
  background-color: #BCA063;
  color: #111324;
  padding: 10px 40px 15px;
  display: inline-block;
  text-align: center;
  border: none;
  text-decoration: none;
}

.booking-button ruby rt {
  color: #111324;
}

.navbar2{
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list2 {
  list-style: none;
  display: flex;
  min-width: 800px;
}

.nav-list2 li {
  text-align: center;
  list-style: none;
  flex: 1;
  border-right: 1px solid #111324;
}

.nav-list2 li a {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  color:#111324;
  font-size: 26px;
}

.nav-list2 li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  border-left: 1px solid #111324;
  border-bottom: 1px solid #111324;
  transform: translateX(-50%) rotate(-45deg);
}
.nav-list2 li:first-child {
   border-left: 1px solid #111324;
}

.navbar3{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-list3 {
  list-style: none;
  display: flex;
  min-width: 600px;
  gap: 30px;
  margin-bottom: 30px;
}

.nav-list3 li {
  text-align: center;
  list-style: none;
  flex: 1;
  border-bottom: 1px solid #111324;
}

.nav-list3 li {
  position: relative;
  display: block;
  padding-bottom: 12px;
  color:#111324;
  min-width: 250px;
}
.nav-list3 li a{
  color: #111324;
}

.nav-list3 li::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  width: 8px;
  height: 8px;
  border-left: 1px solid #111324;
  border-bottom: 1px solid #111324;
  transform: translateX(-50%) rotate(-45deg);
}


/* Slide */
.slide {
	position : relative;
	overflow : hidden;
	width : 950px;
	height : 761px;
	margin : auto;
	background : #fff;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	overflow: hidden;
	display:flex;
	align-items: stretch;
}
.slide-item {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	animation: slideAnime 15s ease infinite;
  }
  .slide-item:nth-child(1) { animation-delay: 0s; }
  .slide-item:nth-child(2) { animation-delay: 7s; }
  .slide-item:nth-child(3) { animation-delay: 14s; }
  .slide-item:nth-child(4) { animation-delay: 21s; }
  .slide-item:nth-child(5) { animation-delay: 28s; }
  
  @keyframes slideAnime {
	0% { opacity: 0; }
	3% { opacity: 1; }
	20% { opacity: 1; }
	23% { opacity: 0; }
	100% { opacity: 0; }
  }
  
  .slide-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .slide-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 38px;
	font-weight: bold;
	text-align: center;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
	line-height: 2;
  }
  

/* ===== Typography ===== */
h1 {
  font-family: "Lora", serif;
  font-size: 70px;
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 22px;
  text-align: center;
}

h2 {
  font-family: "Lora", serif;
  font-size: 54px;
  font-weight: normal;
  text-align: center;
}

h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: normal;
  /* margin: 0 0 10px 75px; */
}

h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: #111324;
  margin-top: 8px;
}

h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}

p {
  line-height: 24px;
}
.mg-0{
  margin: 0;
}
.txt-white {
  color: #ffffff;
}
/* ===== Section Titles ===== */
.section-title {
  text-align: center;
  font-size: 2.2em;
}

.section-title .subtitle {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 20px;
  color: #111324;
  line-height: 1.2;
}

.page-title {
  text-align: center;
  font-weight: 400;
  font-family: "Lora", serif;
}

.page-title .subtitle {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 36px;
  color: #111324;
  line-height: 1.2;
  margin-top: 5px;
}

.top-title {
  text-align: center;
}

.top-title p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  text-align: center;
  padding-bottom: 20px;
  margin: 0 auto;
  line-height: 140%;
}

.intro-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  text-align: center;
  padding-bottom: 20px;
}

.subtext {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 0.6em;
  color: #111324;
}

/* ===== HOME PAGE STYLES ===== */
.site-top-image {
  max-width: 950px;
}

/* Main Slider */
.main-slider {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  height: 50vh;
}

.main-slider-item {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main-slider-item01 {
  background: url(../images/home/kv01.png) center/cover no-repeat;
}

.main-slider-item02 {
  background: url(../images/home/kv02.png) center/cover no-repeat;
}

.main-slider-item03 {
  background: url(../images/home/kv03.png) center/cover no-repeat;
}
.main-slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideFade 21s infinite;
}

@keyframes slideFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}

.main-slider-item:nth-child(1) {
  animation-delay: 7s;
}
.main-slider-item:nth-child(2) {
  animation-delay: 14s;
}
.main-slider-item:nth-child(3) {
  animation-delay: 21s;
}


.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 25px;
  width: 25px;
}

.slick-prev {
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  right: 2.5%;
  transform: rotate(45deg);
}

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #fff;
  border: none;
  margin: 0 3px;
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slick-dots .slick-active button {
  background: #333;
}

.slider-dots button.active {
  background-color: #888;
  opacity: 1;
  transform: scale(1.3);
}

.main-slider .slick-prev,
.main-slider .slick-next,
.main-slider .slick-dots,
.concept-slider .slick-prev,
.concept-slider .slick-next,
.concept-slider .slick-dots {
  display: none !important;
}

/* Concept Section */
.concept p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  text-align: center;
  padding-bottom: 20px;
}

.concept-information {
  display: flex;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
  padding: 30px 10px 80px 20px;
  gap: 4em;
}

.concept-slider {
  margin: 0;
  margin-left: 5vw;
  padding: 0;
  position: relative;
  z-index: 1;
  height: 350px;
  width: 50%;
  max-width: 950px;
  box-sizing: border-box;
  box-shadow: -20px -20px #ffffff;
}

.conceptslider-item {
  margin: 0;
  padding: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.conceptslider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideFade 21s infinite;
}

@keyframes slideFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}

.conceptslider-item:nth-child(1) {
  animation-delay: 7s;
}
.conceptslider-item:nth-child(2) {
  animation-delay: 14s;
}
.conceptslider-item:nth-child(3) {
  animation-delay: 21s;
}


.conceptslider-item01 {
  background: url(../images/home/checkin-panel.png) center/cover no-repeat;
}

.conceptslider-item02 {
  background: url(../images/home/manga-conner.png) center/cover no-repeat;
}

.conceptslider-item03 {
  background: url(../images/home/amenities.png) center/cover no-repeat;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #999;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  transition: color 0.2s ease;
}

.slider-arrow:hover {
  color: #666;
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

.heading-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.heading-row {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.heading-row h3 {
  font-family: "Lora", serif;
  font-weight: normal;
  margin: 0;
  font-size: 2em;
}

.heading-num.is-01 {
  margin-left: 0.2em;
}

.heading-row .subtext {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 16px;
}

.detail {
  font-size: 0.8em;
  line-height: 1.3;
  margin: 0 0 2em 0;
  padding-left: calc(3em + 0.5em);
}

/* Information Section */
.information {
  background-color: #111324;
  padding: 8px 0 26px 0;
}

.information h1 {
  color: #ffffff;
}

.information .section-title .subtitle {
  color: #ffffff;
}

.section {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 40px;
  gap: 3em;
  flex-wrap: wrap;
  justify-content: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 300px;
}

.images {
  flex: 1;
  max-width: 45%;
  min-width: 300px;
}

.images img {
  width: 100%;
  height: auto;
  display: block;
}

.mini-title {
  font-family: "Lora", serif;
  font-size: 2em;
  margin: 0 0 0.3em 0;
  color: #ffffff;
  font-weight: normal;
}

.mini-title .subtitle {
  display: block;
  font-size: 0.5em;
  color: #ffffff;
  margin-top: 0.3em;
}

.content-detail1,
.content-detail2,
.content-detail3 {
  color: #ffffff;
  line-height: 1.8;
  font-size: 1em;
  margin: 0;
  padding: 0;
}

.divider-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 1.5em;
}

.divider-right li {
  list-style: none;
}

.divider-right a {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9em;
  transition: opacity 0.3s;
}

.divider-right a:hover {
  opacity: 0.7;
}

.double-arrow::after {
  content: "≫";
  margin-left: 0.3em;
  font-size: 0.9em;
}

/* Access Section on Home */
.access {
  text-align: center;
  max-width: 950px;
  margin: 60px auto 40px;
  padding: 0 20px;
}

.access iframe {
  width: 85%;
  max-width: calc(100vw - 20vw);
  height: 450px;
  display: block;
  margin: 0 auto;
}

.access p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  margin: 20px auto 0;
  line-height: 1.8;
  text-align: center;
  padding: 0;
}

.divider-right2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 40px 40px;
}

.divider-right2 li {
  list-style: none;
}

.divider-right2 a {
  font-family: "Noto Sans JP", sans-serif;
  color: #111324;
  text-decoration: none;
  font-size: 0.9em;
  transition: opacity 0.3s;
}

.divider-right2 a:hover {
  opacity: 0.7;
}

.double-arrow2::before {
  content: "≫";
  font-size: 0.8em;
  color: #111324;
  padding-left: 5px;
}

/* Another Section */
.another {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  max-width: 950px;
  margin: 60px auto;
  padding: 0 20px;
}

.btntextchange {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  color: #ffffff;
  background-color: #111324;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s;
  min-width: 200px;
  text-align: center;
}

.btntextchange span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s;
  display: block;
  white-space: nowrap;
}

.btntextchange span:nth-child(2) {
  opacity: 0;
}

.btntextchange:hover span:nth-child(1) {
  opacity: 0;
}

.btntextchange:hover span:nth-child(2) {
  opacity: 1;
}

.btntextchange span::after {
  content: " >";
  margin-left: 0.4em;
  font-weight: bold;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  width: 90%;
  margin: 20px auto;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid #111324;
}

.divider::before {
  margin-right: 1em;
}

.divider::after {
  margin-left: 1em;
}

.divider span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #111324;
}

/* ===== ROOMS PAGE STYLES ===== */
#page-link {
  width: 50%;
  max-width: 600px;
  min-width: 250px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  border-left: 1px solid black;
  border-right: 1px solid black;
}

#page-link li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  border-left: 1px solid black;
  padding-bottom: 30px;
  box-sizing: border-box;
  position: relative;
}

#page-link li:first-child {
  border-left: none;
}

#page-link li a {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #111324;
}

#room-link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 80vw;
  max-width: 1000px;
  box-sizing: border-box;
}

#room-link li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 calc(33.333% - 10px);
  padding-bottom: 5px;
  box-sizing: border-box;
}

#room-link li a {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  align-items: center;
  color: #111324;
  text-decoration: none;
  border-bottom: 1px solid black;
  padding-bottom: 2px;
  text-align: center;
}

#room-link li a::after {
  content: "\2304";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #111324;
  position: static;
  transform: none;
}

#room-link .subtext {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 0.8em;
  color: #111324;
  line-height: 1;
  margin-top: 2px;
}

.section .text {
  flex: 1;
  max-width: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 1vw;
  box-sizing: border-box;
}

.room-detail {
  max-width: 400px;
  word-break: break-word;
  line-height: 1.8;
}

.room-detail1,
.room-detail2,
.room-detail3,
.room-detail4,
.room-detail5 {
  line-height: 1.8;
  font-size: 1em;
}

/* Room Sliders */
/* .slider {
  margin: 0;
  margin: 0 1vw;
  padding: 0;
  position: relative;
  z-index: 1;
  height: 350px;
  width: 25vw;
  max-width: 950px;
  box-sizing: border-box;
} */

.slider {
  position: relative;
  width: 25vw;
  max-width: 350px;
  height: 350px;
  margin: 0 1vw;
  overflow: hidden;
  list-style: none;
  padding: 0;
}

/* === Các ảnh trong slider === */
.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideFade 21s infinite;
}

@keyframes slideFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}

.slider-item:nth-child(1) {
  animation-delay: 7s;
}
.slider-item:nth-child(2) {
  animation-delay: 14s;
}
.slider-item:nth-child(3) {
  animation-delay: 21s;
}


.doubleslider-item01 {
  background: url(../images/rooms/double1.png) center/cover no-repeat;
}

.doubleslider-item02 {
  background: url(../images/rooms/double2.png) center/cover no-repeat;
}

.doubleslider-item03 {
  background: url(../images/rooms/double3.png) center/cover no-repeat;
}

.twinslider-item01 {
  background: url(../images/rooms/twin1.png) center/cover no-repeat;
}

.twinslider-item02 {
  background: url(../images/rooms/twin2.png) center/cover no-repeat;
}

.twinslider-item03 {
  background: url(../images/rooms/twin3.png)center/cover no-repeat;
}

.superiorslider-item01 {
  background: url(../images/rooms/superior1.png) center/cover no-repeat;
}

.superiorslider-item02 {
  background: url(../images/rooms/superior2.png) center/cover no-repeat;
}

.superiorslider-item03 {
  background: url(../images/rooms/superior3.png) center/cover no-repeat;
}

.suiteslider-item01 {
  background: url(../images/rooms/suite1.png) center/cover no-repeat;
}

.suiteslider-item02 {
  background: url(../images/rooms/suite2.png) center/cover no-repeat;
}

.suiteslider-item03 {
  background: url(../images/rooms/suite3.png) center/cover no-repeat;
}

.familyslider-item01 {
  background: url(../images/rooms/family1.png) center/cover no-repeat;
}

.familyslider-item02 {
  background: url(../images/rooms/family2.png) center/cover no-repeat;
}

.familyslider-item03 {
  background: url(../images/rooms/family3.png) center/cover no-repeat;
}

/* Room Quality Section */
.spacer {
  height: 60px;
}

.bgc {
  background-color: #111324;
  padding: 40px 0;
}

.category {
  background-color: #ffffff;
  border-radius: 25px;
  margin: 0 50px;
}
.rcm-plan {
  margin: 0 50px;
}
.quality-section {
  padding: 10px 50px 40px;
}

#area-2 {
  margin-top: 0;
}

.gallery {
  display: block;
  margin: auto;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0 10px;
}

.gallery li {
  padding: 0;
}

figure {
  margin: 0;
  padding: 0;
}

.gallery img {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.gallery2 {
  display: block;
  margin: auto;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0 10px;
}

.gallery2 li {
  padding: 0;
}

.gallery2 figure {
  margin: 0;
  padding: 0;
}

.gallery2 img {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

figcaption {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

figcaption h2,
figcaption h3 {
  font-size: 1.1rem;
  margin: 0.5em 0 0.2em;
  margin-left: 0;
  padding-left: 0;
  font-weight: normal;
}

figcaption h2::after,
figcaption h3::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: #111324;
  margin-top: 8px;
}

figcaption p,
.gallery-text {
  font-size: 0.9rem;
  color: #111324;
  margin-top: 8px;
  margin-left: 0;
}

#area-3 {
  margin-top: 60px;
}

.dif-title {
  margin-bottom: 20px;
}

.content-detail {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 0 16px;
}

.content-detail h4 {
  font-weight: normal;
  margin-bottom: 8px;
}

.content-detail p {
  margin-top: 0;
  font-size: 0.9rem;
  margin-left: 0;
  margin-bottom: 1em;
}

.note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  margin-left: 0;
}

/* ===== BREAKFAST PAGE STYLES ===== */
.page-title p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  text-align: center;
  padding-bottom: 20px;
}

.meal-menu {
  text-align: center;
}

.subsection-title {
  font-size: 2.2em;
  margin-bottom: 0.4em;
  line-height: 1.1;
}

.subsection-title .subtitle {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 18px;
  color: #111324;
  margin-top: 0.5px;
}

.meal-menu p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0.1em;
  margin-left: 0;
}

.meal-menu .note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  padding-bottom: 20px;
  margin-left: 0;
}

.menu-images {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.menu-images li {
  width: 30%;
  text-align: center;
}

.menu-images img {
  width: 95%;
  height: auto;
}

.caption {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 0.5em;
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 1.4;
}

.addition p {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0.1em;
  margin-left: 0;
}

.addition .note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  margin-left: 0;
}

.kids-meal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 1.5em;
  margin: 3em auto 0 auto;
  max-width: 700px;
}

.kids-meal .plate-text {
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 400px;
}

.kids-meal h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  margin: 0 0 0.5em;
  font-size: 20px;
  text-align: center;
}

.kids-meal h3::after {
  display: none;
}

.kids-meal p {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.kids-meal img {
  width: 250px;
  height: auto;
  margin-left: 1.5em;
  margin-right: 1em;
}

.breakfastbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 1.5em;
  margin: 2em auto 2em auto;
  max-width: 700px;
}

.breakfastbox .box-text {
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 400px;
}

.breakfastbox h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  margin: 0 0 0.5em;
  font-size: 20px;
  text-align: center;
}

.breakfastbox h3::after {
  display: none;
}

.breakfastbox p {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.breakfastbox img {
  width: 250px;
  height: auto;
  margin-left: 1.5em;
  margin-right: 1em;
}

.information {
  text-align: center;
  margin-top: 80px;
}

.information-title {
  font-family: "Lora", serif;
  font-size: 2.2em;
  font-weight: normal;
  margin-bottom: 0.4em;
  line-height: 1.1;
}

.information-title .subtitle {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 18px;
  color: #111324;
  margin-top: 0.5em;
}

.information p {
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  line-height: 2.0;
  margin-left: 0;
}

.photo-area img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* ===== FACILITIES PAGE STYLES ===== */
.service {
  margin-top: 60px;
}

.service-title .subtitle {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 18px;
  color: #111324;
  margin-top: 0.5px;
  text-align: center;
}

.service .content-detail h3 {
  margin-bottom: 8px;
}

.service .content-detail h3::after {
  margin-top: 8px;
}

.service .content-detail p {
  margin-top: 0;
  font-size: 0.9rem;
}

#facilities .main-title .detail {
  margin-top: 40px;
}
#facilities .main-title .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

#facilities .main-title .detail {
  padding-left: 0;
}
#facilities .main-title .gallery2 {
  padding: 0;
  column-gap: 75px;
  row-gap: 50px;
}
#facilities .gallery2 img {
  width: 100%;
}
#facilities figcaption {
  width: 100%;
}
#facilities figcaption h3 {
  font-size: 24px;
  margin-top: 20px;
}
#facilities figcaption h3:after {
  width: 30px;
}
#facilities figcaption p {
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 6%;
}
.gallery2__figure .gallery2__image {
  position: relative;
}
.gallery2__figure .gallery2__image .gallery2__floor {
  position: absolute;
  content: "";
  top: 0;
  left: 9px;
  background-color: #111324;
  color: #E3E5F2;
  font-size: 20px;
  font-weight: 400;
  padding: 5px 10px;
  width: 37px;
  min-height: 45px;
  text-align: center;
  font-family: "Lora", serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#facilities .service .container,
#facilities .facilities-information .container {
  width: 100%;
  max-width: 1025px;
  margin: 0 auto;
}
#facilities .service .content-detail {
  max-width: 100%;
  list-style: none;
  padding: 0;
}
#facilities .service .content-detail h3 {
  font-size: 27px;
}
#facilities .service .content-detail h3::after {
  width: 30px;
  height: 3px;
}
#facilities .service .content-detail p {
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 0;
}
#facilities .service .content-detail > li:not(:last-child) {
  margin-bottom: 40px;
}

#facilities .facilities-information {
  margin-top: 90px;
  margin-bottom: 90px;
}
#facilities .information-detail {
  margin-top: 40px;
}
#facilities table.information-detail tr:first-child th:nth-child(3) {
  border-bottom-color: #111324;
}

/* ===== ACCESS PAGE STYLES ===== */
#area-1.map .container {
  width: 100%;
  max-width: 1196px;
  margin: 0 auto;
}
#area-1.map .mapp__img {
  margin-bottom: 60px;
  margin-top: 40px;
}
#area-1.map img {
  max-width: max-content;
}
#area-1.map iframe {
  width: 100%;
  height: 737px;
}

#area-3 img {
  object-fit: none;
}

#area-2 {
  margin-top: 60px;
}
#area-2.route {
  margin-top: 100px;
}

#area-2 h2 {
  margin-bottom: 24px;
}

ul.tab {
  margin-bottom: 0;
}

#area-3.parking {
  margin-top: 0;
  margin-bottom: 50px;
}
#area-3.parking .area-title {
  margin-top: 0;
  margin-bottom: 20px;
}
#area-3.parking .container {
  width: 100%;
  max-width: 1012px;
  margin: 0 auto;
  box-sizing: border-box;
}

#area-3.parking h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.area-title .subtext {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 32px;
  color: #111324;
  margin-top: 5px;
}

.table-box {
  width: 100%;
  max-width: calc(100vw - 20vw);
  margin: 0 auto;
}

.tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-inline-start: 0px;
}

.tab li {
  list-style: none;
  position: relative;
  border: 1px solid #111324;
  border-radius: 0;
  min-width: 210px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  background-color: #E3E5F2;
  outline: none;
  transition: all 0.2s;
}

.tab li a {
  font-family: "Noto Sans JP", sans-serif;
  color: #111324;
  display: block;
  padding: 10px 20px;
}

.tab li.active a {
  background: #111324;
  color: #ffffff;
}

.area {
  display: none;
  opacity: 0;
  padding: 20px 20px;
  padding-top: 10px;
}

.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.table-box p {
  margin-top: 8px;
  margin-bottom: 50px;
}

#area-3 .parking__infor img {
  margin-bottom: 20px;
  object-fit: fill;
  max-width: 100%;
}
#area-3 .parking__infor p {
  margin-top: 0;
}

/* ===== Tables ===== */
table.detail,
table.information-detail {
  width: 100%;
  border-collapse: collapse;
}

table.detail td,
table.information-detail td {
  border: 2px solid #111324;
  padding: 0.8em 2rem;
  font-size: 18px;
}

td {
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
}

table.detail th,
table.information-detail th {
  border: 2px solid #111324;
  padding: 0.8em;
  background-color: #111324;
  width: 19%;
  font-size: 20px;
  border-bottom-color: white;
}
table.detail tr:last-child th,
table.information-detail tr:last-child th {
  border-bottom-color: #111324;
}

th {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  font-weight: normal;
}

table.information-detail th.narrow {
  width: 120px;
}

table.information-detail {
  margin-bottom: 4em;
}

/* ===== Footer ===== */
hr {
  margin: 20px auto 10px auto;
  border-top: 1px solid #111324;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 90px;
  width: auto;
  display: block;
}

.address {
  font-size: 16px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 50px;
  background-color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

#page-top {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border: 2px solid #111324;
  border-color: #111324 #111324 transparent transparent;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
/* Access */
.rakuten-container {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #E3E5F2;
}
.tab-input {
display: none;
}

.tab2 {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding-inline-start: 0px;
margin-bottom: 0;
}

.tab2 li {
list-style: none;
position: relative;
border: 2px solid #111324;
border-radius: 0;
min-width: 288px;
text-align: center;
display: inline-block;
text-decoration: none;
background-color: #e3e5f2;
outline: none;
transition: all 0.2s;
}
.tab2 li:nth-child(1),
.tab2 li:nth-child(2) {
  border-right: none;
}

.tab2 li label {
font-family: "Noto Sans JP", sans-serif;
color: #111324;
display: block;
padding: 17px 20px;
cursor: pointer;
transition: all 0.2s;
font-size: 24px;
}

#tab-train:checked ~ .tab2 li label[for="tab-train"],
#tab-plane:checked ~ .tab2 li label[for="tab-plane"],
#tab-car:checked ~ .tab2 li label[for="tab-car"] {
background: #111324;
color: #ffffff;
}

.area {
display: none;
opacity: 0;
padding: 20px 20px;
padding-top: 10px;
}

#tab-train:checked ~ #train,
#tab-plane:checked ~ #plane,
#tab-car:checked ~ #car {
display: block;
animation-name: displayAnime;
animation-duration: 2s;
animation-fill-mode: forwards;
}
.area img {
  object-fit: none;
}

@keyframes displayAnime {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
