html {
  font-size: 62.5%; /* 62.5% of the browser default 16px = 10px */
}

body {
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  background-color: #231815;
}
/* Remove margin and padding from all sections */
section {
  margin: 0;
  padding: 0;
}

/* Optional: You can apply it to all elements globally to ensure consistency */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  margin: 0 auto;
  overflow-x: hidden;
}
/* Make sure images maintain their size */
img {
  width: 100%; /* Adjust if you want images to be responsive */
  height: auto; /* Maintain aspect ratio */
}
a {
  text-decoration: none;
  color: #f0d926;
}
/** Header **/

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 100px;
  box-sizing: border-box;
  background-color: #231815;
  box-shadow: 0px 4px 20px 0px #00000033;
}
.header-container {
  display: flex;
  position: relative;
}
.logo {
  max-width: 270px;
  width: 100%;
  padding: 17px 0 16px 20px;

  /* margin-right: 16%; */
}

.logo a img {
  width: 100%;
  object-fit: contain;
}
.navbar {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  margin-left: auto;
  transition: left 0.3s ease;
}
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  border-left: 1px solid #ffdb00;
  border-right: 1px solid #ffdb00;
  height: 30px;
}
.nav-links li:last-child {
  border-right: none;
}
.nav-links li a {
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #ffdb00;
  font-size: 1.8rem;
  letter-spacing: 0.2px;
}

.header-reserve-btn {
  width: 159px;
  height: 100px;
  background-color: #ffdb00;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  color: #231815;
  font-weight: 700;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.header-reserve-btn img {
  width: 58px;
}
.header-reserve-btn span {
  margin: -4px 0 0 0;
  letter-spacing: 0.5px;
  font-size: 1.6rem;
}
.header-reserve-br {
  display: none;
}
/* Hamburger menu styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 80px;
  height: 80px;
  background: #302d2c;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.hamburger-menu .bar:first-child {
  margin-top: 14px;
}
.hamburger-menu .bar {
  width: 23px;
  height: 2px;
  background-color: #ffdb00;
  margin-bottom: 6px;
}

.hamburger-menu .half-bar {
  width: 11.5px;
  margin-bottom: 0;
  margin-left: 11px;
}

.hamburger-menu .menu-label {
  color: #ffdb00;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 0.8px;
}

.hamburger-menu .bar:last-child {
  width: 11.5px;
  margin-bottom: 0;
  margin-top: 2px;
  margin-left: 10px;
}

/* Styles when the menu is open */
.hamburger-menu.open {
  position: absolute;
  right: 6px;
  top: 6px;
}

.hamburger-menu.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 40px;
}

.hamburger-menu.open .bar:nth-child(2) {
  transform: translateY(0px) rotate(-45deg);
  width: 40px;
}

.hamburger-menu.open .bar:nth-child(3) {
  opacity: 0;
}
.hamburger-menu.open .menu-label {
  opacity: 0;
}

@media (min-width: 1101px) and (max-width: 1220px) {
  .nav-links li a {
    padding: 0 1.3rem;
    font-size: 1.5rem;
  }
}

/* Header SP mode*/
@media (max-width: 1100px) {
  header {
    height: 80px;
  }

  .logo {
    width: 205px;
    padding: 19px 0 10px 10px;
  }
  .navbar {
    display: none;
  }

  /* Show hamburger menu on mobile */
  .hamburger-menu {
    display: flex;
    align-items: center;
  }

  /* When the menu is open */
  .navbar.active {
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #302d2c;
    z-index: 1;
  }
  .nav-links {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 121vh;
    z-index: 100;
    justify-content: center;
  }
  .nav-links li {
    border-left: none;
    border-right: none;
    height: auto;
  }
  .nav-links li a {
    padding: 15px;
    font-size: 2rem;
  }
  .header-reserve-btn {
    width: 80px;
    height: 80px;
  }
  .header-reserve-btn img {
    padding: 0;
    width: 30px;
    object-fit: cover;
  }
  .header-reserve-btn span {
    text-align: center;
    font-size: 1.2rem;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1;
  }
  .header-reserve-br {
    display: block;
  }
}

/** FOOTER**/
footer {
  background-color: #231815;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 36px 0 130px 0;
}
.footer-nav-btn-wrp {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 0 24px;
}
.footer-nav {
  margin: 0 40px 0 0;
  width: 230px;
}
.footer-nav-btn-wrp ul:last-child {
  margin-right: 0;
}
.footer-nav li a {
  font-size: 1.6rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 28.8px;
}

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

.footer-btn-nav li {
  background: #ffdb00;
  margin-bottom: 10px;
  width: 272px;
  height: 60px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.footer-btn-nav li a {
  color: #231815;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.footer-web-reserve img {
  width: 48px;
  padding: 0 0 0 12.5px;
}
.footer-web-reserve span {
  padding: 0 0 0 12px;
  letter-spacing: 1.2px;
}
.footer-contact-btn img {
  width: 45px;
  padding: 0px 0 0 19px;
}
.footer-contact-btn span {
  padding: 0 0 0 39px;
  letter-spacing: 3px;
}
.ftr-bnner-wrp {
  max-width: 1000px;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer-banner,
.footer-banner-img {
  width: 100%;
  max-width: 346px; 
  flex: 1 1 calc(33.333% - 20px); 
  object-fit: cover;
  display: block; 
  line-height: 0;
  height: 125px;
}

.footer-banner img {
  width: 100%; 
  display: block; 
  object-fit: cover;
  height: 125px;
}
.footer-logo {
  width: 200px;
  padding: 0 0 30px 0;
}
.footer-text-lg {
  color: #ffffff;
  padding: 0 0 0 19px;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 36px;
  text-align: center;
}
.footer-text-sm {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 0 0 5px;
}
.footer-cr {
  padding: 42px 0 30px 8px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 1px;
  text-align: center;
}

#top_btn {
  border: 1px solid #fff;
  position: fixed;
  bottom: 66px;
  right: 6px;
  width: 43px;
  height: 43px;
  background: #ffffff33;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

#top_btn::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 60%;
  right: 11px;
  transform: rotate(-45deg) translateY(-56%);
}

#top_btn.show {
  opacity: 1; /* Make it visible */
  visibility: visible; /* Allow interaction */
}

@media (max-width: 768px) {
  .footer-nav-wrap {
    flex-direction: column;
    width: 100%;
    margin-top: 42px;
  }
  .footer-nav-btn-wrp {
    flex-wrap: wrap;
    padding: 0 0 36px 18px;
  }
  .footer-nav {
    /* width: 175px; */
    width: 43%;
  }
  .footer-nav-lst1 {
    width: 100%;
    margin-bottom: 12px;
  }
  .footer-nav-lst2 li,
  .footer-nav-lst3 li {
    margin: 0 0 14px 0;
  }
  .footer-nav-lst3 {
    margin-top: -41px;
  }

  .footer-yllw-btn-lst {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .footer-yllw-btn-lst li {
    width: 300px;
    height: 66px;
  }
  .footer-text-lg {
    padding: 0;
    font-size: 2rem;
  }
  .footer-text-sm {
    font-size: 1.6rem;
    line-height: 22px;
    padding: 7px 46px 0 50px;
  }
  .footer-yllw-btn-lst li {
    width: 300px;
    height: 66px;
    margin-bottom: 25px;
  }

  .footer-web-reserve img {
    width: 61px;
    padding: 0 0 0 25px;
  }

  .footer-contact-btn img {
    width: 58px;
    padding: 0px 0 0 32px;
  }
  .footer-info {
    margin-top: 43px;
  }
  .footer-logo {
    width: 161px;
    padding: 0 0 16px 0px;
  }
  #top_btn {
    bottom: 80px;
    right: 11px;
  }
}

.sm-txt{
  font-size: 1.3rem;
}

/***Section**/
.section_bg_overly {
  position: relative;
}

.section_bg_overly::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000b2;
  z-index: 0;
}
.section_bg_overly > * {
  position: relative;
  z-index: 1;
}

/***Section titles***/
.section_ttl {
  color: #ffffff;
  font-family: "YuMincho", serif;
  margin: 0 0 0 22px;
  padding-top: 60px;
  font-weight: 800;
  font-size: 5rem;
  line-height: 60px;
  letter-spacing: 7px;
  text-align: center;
  text-transform: uppercase;
}

.section_sub_ttl_yellow {
  display: block;
  margin: auto;
  position: relative;
  max-width: 458px;
  width: 100%;
  height: 56px;
  padding: 14px 0px 60px 15px;
  color: #ffdb00;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 28.8px;
  letter-spacing: 1px;
}

.section_sub_ttl_yellow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 8px;
  width: 1px;
  height: 62px;
  border-right: 1px solid #ffdb00;
  transform: rotate(30deg);
  pointer-events: none;
}
.section_sub_ttl_yellow::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -6px;
  width: 1px;
  height: 64px;
  border-left: 1px solid #ffdb00;
  transform: rotate(30deg);
  pointer-events: none;
}

.info_txt {
  color: #d4d4d4;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 180%;
  display: block;
  text-align: center;
  padding: 43px 0px 33px 13px;
}

@media (max-width: 768px) {
  .section_ttl {
    font-size: 3.2rem;
    letter-spacing: 3.5px;
    margin-left: 0;
    padding-top: 52px;
  }
  .section_sub_ttl_yellow {
    font-size: 1.6rem;
    height: 50px;
    padding: 0px 0px 60px 0;
    line-height: 23px;
    letter-spacing: 0.5px;
  }

  .section_sub_ttl_yellow::before {
    top: -11px;
    left: 5px;
    width: 1px;
    height: 44px;
  }
  .section_sub_ttl_yellow::after {
    top: -10px;
    right: 9px;
    width: 1px;
    height: 42px;
  }
}
@media (max-width: 320px) {
  .section_sub_ttl_yellow {
    max-width: 100%;
    width: 100%;
    font-size: 1.2rem;
  }
}
/***Button**/

.button {
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #ffdb00;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-align: center;
}

/**slider**/

/* Container for the slider */
.slick-container {
  width: 100%;
  margin: 43px auto 0 auto;
  padding-bottom: 82px;
  overflow: hidden;
}

/* Individual slides */
.fature-slick-slide {
  position: relative;
  /* width: 883px;
  height: auto; */
  margin-right: 114px;
  object-fit: cover;
  padding-bottom: 65px;
}

.slick-slide img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}

.slick-prev:before,
.slick-next:before {
  content: "";
}

/* Style for the previous arrow (left chevron) */
.slick-prev {
  position: absolute;
  top: 38%;
  left: calc(50% - 479px);
  transform: translateY(-50%) rotate(-45deg);
  width: 35px;
  height: 35px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  cursor: pointer;
  z-index: 9999;
}

/* Style for the next arrow (right chevron) */
.slick-next {
  position: absolute;
  top: 38%;
  left: calc(50% + 458px);
  transform: translateY(-50%) rotate(135deg);
  width: 35px;
  height: 35px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  cursor: pointer;
  z-index: 9999;
}

.swiper-slide-content {
  position: absolute;
  bottom: 0;
}
.swiper-slide-feature {
  background-color: #231815;
  color: #ffdb00;
  width: 90px;
  height: 90px;
  position: absolute;
}

.slick-slide-feature {
  color: #ffdb00;
  background-color: #231815;
  position: absolute;
  bottom: 87px;
  left: -11px;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 0 0 0;
  z-index: 1;
}
.slick-slide-feature-txt {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 18px;
  letter-spacing: 0.7px;
  text-align: center;
}
.slick-slider-feature-cnt {
  font-family: "YuMincho";
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 57px;
}

.slick-slide-title {
  display: flex;
  align-content: center;
  align-items: center;
  position: absolute;
  color: #fff;
  bottom: 75px;
  left: 59px;
  width: 800px;
  min-height: 112px;
  background: #231815cc;
  font-weight: 700;
  font-size: 3rem;
  line-height: 36px;
  padding: 0 40px 0 40px;
}

.slick-slide-subtitle {
  display: flex;
  align-items: flex-start;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 9px;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 27px;
}
@media (max-width: 768px) {
  .slick-container {
    margin: 0 auto;
  }
  .fature-slick-slide {
    margin-right: 2.5rem;
    /* max-width: 390px !important; */
    max-width: 90vw !important;
    width: 100% !important;
    padding-bottom: 240px;
  }
  .slick-slide:not(.slick-center) .slick-slide-feature {
    display: none;
  }

  .slick-slide-feature {
    bottom: 215px;
    left: -12px;
    width: 66px;
    height: 66px;
    padding: 5px 0 0 0;
  }
  .slick-slide-feature-txt {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .slick-slider-feature-cnt {
    font-size: 3rem;
    line-height: 30px;
  }

  .slick-slide-title {
    font-size: 1.8rem;
    width: 90vw;
    height: 240px;
    padding: 30px 30px 0 30px;
    left: 0;
    bottom: 0px;
    line-height: 22px;
    display: flex;
    align-items: flex-start;
  }
  .slick-slide-title br {
    display: none;
  }

  .slick-slide-subtitle {
    font-size: 1.4rem;
    bottom: 85px;
    left: 0px;
    padding: 0 30px 30px 30px;
    line-height: 23px;
  }

  .slick-prev {
    top: 64%;
    left: calc(50% - 45vw);
    width: 25px;
    height: 25px;
  }
  .slick-next {
    top: 63%;
    left: calc(50% + 40vw);
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 394px) {
  .slick-slide-title {
    font-size: 1.4rem;
  }
  .slick-slide-subtitle {
    font-size: 1.2rem;
  }
}

/*** Short code Err ***/

.short-code-error {
  font-size: 2rem;
  color: #ffdb00;
  font-weight: 700;
  text-align: center;
  display: block;
  margin: 20px auto;
  padding: 20px 0;
}

/*** Notifiation template ***/
.noti_section .section_ttl {
  letter-spacing: 4.7px;
  margin: 20px 0 0 22px;
}

.noti_sub {
  width: 150px;
}
.notification_lst_wrp {
  max-width: 821px;
  width: 100%;
  display: block;
  margin: 0 auto 0 auto;
}

.notification_lst_wrp .info_notice_lst {
  margin: 56px 0 40px 0;
}

/*** Notifiation  Page template ***/

.post_wrp {
  display: flex;
  max-width: 1000px;
  margin: 44px auto 0 auto;
  flex-direction: column;
  color: #ffffff;
}

.post_ttl_wrp {
  border-bottom: 3px solid #ffdb00;
  padding-bottom: 21px;
  margin: 0 0 52px 0;
}
.post-ttl {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0%;
  margin: 0 0 8px 0;
  color: #ffffff;
}
.post_date {
  font-weight: 500;
  font-size: 1.6rem;
  color: #ffffff;
}
.post_wrp h2 {
  font-weight: 700;
  font-size: 1.8rem;
  color: #ffffff;
  border-left: 4px solid #ffdb00;
  padding: 0 0 0 11px;
  margin: 0 0 21px 0;
}
.post_wrp h3 {
  font-weight: 700;
  font-size: 1.8rem;
  margin: 20px 0 20px 0;
}
.post_wrp p,
.post_wrp pre{
  font-weight: 700;
  font-size: 1.6rem;
}
.post_wrp img {
  display: block;
  max-width: 680px;
  width: 100%;
  object-fit: cover;
  margin: 38px auto 20px auto;
}

.post_back_btn {
  display: flex;
  max-width: 222px;
  width: 100%;
  background: #ffdb00;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 16px;
  color: #231815;
  padding: 20px 10px;
  margin: 38px 0 110px 0;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .post_wrp {
    margin: 44px 16px 0 16px;
  }
}
/** pagination **/

.pagination {
  max-width: 440px;
  width: 100%;
  display: flex;
  margin: auto;
  justify-content: center;
}

.custom-pagination {
  display: flex;
}
.custom-pagination li {
  display: flex;
  height: 34px;
  width: 34px;
  align-items: center;
  justify-content: center;
}
.custom-pagination li a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}
.custom-pagination li.active {
  border: 2px solid #ffdb00;
  background-color: #d9d9d9;
  border-radius: 3px;
}
.custom-pagination li.active a {
  color: #333333;
}
.prev-link a {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}
.prev-link a::before {
  content: "";
  top: 0;
  left: 35%;
  height: 7px;
  width: 7px;
  position: absolute;
  border-top: 2px solid #fdd100;
  border-right: 2px solid #fdd100;
  transform: rotate(220deg) translateX(-40%);
}

.next-link a {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}
.next-link a::before {
  content: "";
  top: 40%;
  left: 35%;
  height: 7px;
  width: 7px;
  position: absolute;
  border-top: 2px solid #fdd100;
  border-right: 2px solid #fdd100;
  transform: rotate(45deg) translateX(-40%);
}

.custom-pagination .dots {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}




/** 404 Page **/
.not-found-txt-wrp{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 540px;
  width: 100%;
  margin: 97px auto 114px auto;

}
.notfound-ttl{
  font-family: 'Oswald', sans-serif;
  color:#fff;
  font-size: 6.678rem;
  font-weight: 700;
}
.notfound-ttl span{
  font-family: 'Oswald', sans-serif;
  color:#fff;
  font-size: 11.082rem;
}

.not-found-txt-wrp p:nth-of-type(1) {
  color: #fff;
  font-weight: 700;
  font-size: 2.793rem;
  text-align: center;
  margin: auto 12px 50px auto;
}

.not-found-txt-wrp p:nth-of-type(2) {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  line-height: 2.88rem;
}