* {
  margin: 0;
  padding: 0;
  background-origin: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --txt-primary: #292829;
  --txt-secondary: #dcac4b;
  --wht: #fff;
  --bg-opt-1: #fdf7f0;
  --bg-opt-2: #b94338;
  --span-font: "Dancing Script", cursive;
  font-size: 10px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-yu-mincho);
  color: var(--txt-primary);
  display: block;
  overflow-x: hidden;
  width: 100%;
  word-break: break-all;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
p {
  font-size: 1.6rem;
}
/* ====================================
  base contents
==================================== */
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
ul li {
  color: currentColor;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.btn {
  border: 1px solid var(--txt-primary);
  border-radius: 40px;
  background: var(--bg-opt-1);
  max-width: 500px;
  margin-top: 40px;
}
.btn_opt2 {
  background: var(--bg-opt-2);
  border: 1px solid #e4dece;
}
.btn_opt2 a {
  color: #e4dece !important;
}
.btn_opt2 a:hover {
  background: #e4dece !important;
  color: var(--bg-opt-2) !important;
}
.btn a {
  position: relative;
  display: block;
  color: #000;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.7;
  padding: 16px 126px 16px 126px;
  transition: all 0.3s ease;
  border-radius: 40px;
}
.btn a::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 27px;
  background: url(../img/svg/arrow_l.svg) no-repeat;
  width: 11.5px;
  height: 18px;
}
.btn_opt2 a::after {
  filter: brightness(0) invert(99%) sepia(10%) saturate(200%) hue-rotate(180deg)
    brightness(103%) contrast(98%);
}
.btn a:hover {
  background: var(--txt-primary);
  color: var(--bg-opt-1);
}
.btn a:hover::after {
  filter: brightness(0) invert(99%) sepia(10%) saturate(200%) hue-rotate(180deg)
    brightness(103%) contrast(98%);
}
.btn_opt2 a:hover::after {
  filter: brightness(0) invert(47%) sepia(65%) saturate(2000%)
    hue-rotate(346deg) brightness(85%) contrast(120%);
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
.sp_span_only {
  display: inline;
}
@media (max-width: 1280px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }
  .sp_span_only {
    display: none;
  }
}
/* ▼　slide_wrapper　▼ */
.slide_wrapper {
  grid-area: slider;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  background-color: #e8ecef;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slide_wrapper .slick-slide {
  height: auto;
  outline: none;
  display: block;
  float: left;
}

.slide_wrapper .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* border-radius: 8px; */
}

.slick-dots {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 10;
}

.slick-dots li {
  margin: 0 5px;
  display: inline-block;
}

.slick-dots li button {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  text-indent: -9999px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slick-dots li button:hover {
  background-color: #ffffff;
  transform: scale(1.2);
}

.slick-dots li.slick-active button {
  background-color: #af0305;
  transform: scale(1.2);
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.set_2 .slick-dots li.slick-active button {
  background: #DCAC4B;
}
/* Responsive */
@media (max-width: 768px) {
  .hotel_plan {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .slide_wrapper {
    height: 350px;
  }

  .slide_wrapper .slick-slide {
    height: 350px;
  }
}
/* ▲　slide_wrapper　▲ */

/* ========== Header ========== */
.nav_list {
  position: relative;
  z-index: 10;
  background-color: var(--bg-opt-1);
  padding: 40px 0;
}
.nav_list.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.nav_list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

.nav_list ul li a {
  position: relative;
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
  color: var(--txt-primary, #333);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav_list ul li a:hover {
  color: var(--txt-secondary);
}

.nav_list ul li a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
.hamburger {
  display: none; 
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--txt-primary, #333); 
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.hero {
  background: #ce4d49 url(../img/bg_top.png) no-repeat center;
  background-position: bottom;
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.hero .hero_img {
  max-width: 1280px;
  max-height: 763px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.hero .hero_img .hero_img--title {
  position: absolute;
  top: 0;
  left: -134px;
  background: url(../img/svg/title.svg) no-repeat;
  width: 642.409px;
  height: 538.706px;
}
.hero_img--title .hero_img--title--text,
.hero_img--title .hero_img--title--hotel {
  position: absolute;
  color: #fff;
  text-align: center;
  font-weight: 800;
  line-height: 1.7;
  width: max-content;
}
.hero_img--title .hero_img--title--hotel {
  font-size: 2.4rem;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
}
.hero_img--title .hero_img--title--text {
  top: 80%;
  left: 50%;
  transform: translate(-50%, -70%);
  font-size: 4rem;
}
.hero_img--title .hero_img--title--text::before {
  content: "";
  border-top: 1px solid #fff;
  display: block;
  width: 377px;
  height: 1px;
  margin-bottom: 25px;
}
.hero_img--setting {
  position: relative;
}
.hero_date {
  position: absolute;
  bottom: -60px;
  left: calc((100% - 1280px) / 2);
  max-width: 1200px;
  width: 100%;
  margin-left: 320px;
  display: flex;
  align-items: center;
  gap: 104px;
  background: var(--wht);
}

.hero_date p {
  line-height: 1.7;
  font-size: 2.4rem;
  color: #000;
}

.hero_date p:first-child {
  padding: 40px 0 40px 64px;
  font-weight: 800;
}

.hero_date p:last-child {
  position: relative;
  font-weight: 500;
}
.hero_date p:last-child::before {
  position: absolute;
  content: "";
  display: inline-block;
  height: 88px;
  left: -40px;
  top: -3px;
  border-left: 2px solid #af0305;
}

.hero .hero_notes {
  color: var(--wht);
  margin: 139px auto 0;
  padding-bottom: 80px;
  text-align: center;
  font-weight: 800;
  line-height: 1.7;
  font-size: 2rem;
}

/* ========== Plan detail ========== */
.plan_detail {
  background: var(--wht);
  text-align: center;
  position: relative;
}
.plan_detail::after {
  content: "";
  position: absolute;
  display: block;
  width: 240px;
  height: 136px;
  background: url(../img/svg/flo_1.svg) no-repeat;
  bottom: -70px;
  left: 150px;
  z-index: 1;
}
.common_title,
.common_title span {
  line-height: 1.7;
  text-align: center;
}
.common_title {
  padding-top: 80px;
  color: var(--txt-primary);
  font-size: 3.2rem;
  font-weight: 600;
}
.common_title span {
  display: block;
  font-family: var(--span-font);
  color: var(--txt-secondary);
  font-size: 2.4rem;
  font-weight: 400;
  margin-top: -10px;
}
.plan_detail .plan_detail--text {
  margin: 0 auto;
  max-width: 1280px;
  margin-top: 24px;
}
.plan_detail .plan_detail--text p {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.7;
}
.plan_detail--text .w_2 {
  margin-top: 40px;
  position: relative;
}
.plan_detail--text .w_2::before {
  content: "< ";
}
.plan_detail--text .w_2:after {
  content: " >";
}
.plan_detail--text p:last-child {
  padding-bottom: 80px;
}
/* ========== hotel ========== */
.hotel {
  position: relative;
  z-index: 0;
  background: var(--bg-opt-1);
}
.decor_1,
.decor_2 {
  position: relative;
  z-index: 0;
}
.decor_1::before,
.decor_2::before,
.decor_2::after {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
}
.decor_1::before {
  background: url(../img/svg/flo_2.svg) no-repeat;
  background-size: cover;
  width: 309.476px;
  height: 148.244px;
  top: -105px;
  right: 120px;
}
.decor_2::before {
  background: url(../img/svg/flo_3.svg) no-repeat;
  background-size: cover;
  width: 230.635px;
  height: 173px;
  top: -42px;
  left: 103px;
}
.decor_2::after {
  background: url(../img/svg/flo_4.svg) no-repeat;
  background-size: cover;
  width: 214.682px;
  height: 144.395px;
  bottom: -89px;
  right: 113px;
}
.hotel .settings {
  margin-top: 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.hotel_plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text slider";
  gap: 56px;
  margin-top: 80px;
  padding-bottom: 112px;
  position: relative;
  z-index: 1;
}
.reverse {
  grid-template-areas: "slider text";
}
.hotel_plan .slide_wrapper {
  max-width: 640px;
}
.slide_wrapper,
.hotel_text {
  width: 100%;
}
.hotel_text {
  grid-area: text;
  z-index: 1;
}
.hotel_text--title,
.hotel_text--title span,
.hotel_text--title p {
  line-height: 1.7;
}
.hotel_text--title,
.hotel_text p {
  font-size: 2.4rem;
  font-weight: 800;
}
.hotel_text--title {
  color: var(--txt-secondary);
}
.hotel_text--title span {
  color: var(--txt-primary);
  display: block;
  font-size: 3.2rem;
  font-weight: 600;
  margin-top: -5px;
}
.hotel_text p {
  margin-top: 8px;
}
.bg_opt2 {
  background: var(--bg-opt-2);
}
.text-white {
  color: var(--wht) !important;
}

.list_notes {
  background: var(--wht);
  max-width: 1196px;
  margin: 80px auto 0;
}
.list_notes ul li {
  position: relative;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.7;
}
.list_notes ul li::before {
  position: absolute;
  left: -20px;
  content: "※";
  display: inline-block;
}
.list_notes .btn {
  margin: 40px auto 80px;
  background: var(--wht);
}
.list_notes .btn a {
  padding: 16px 110px 16px 110px;
}
/* ========== footer ========== */
footer {
  position: relative;
  background: url(../img/footer_bg.webp) no-repeat;
  background-size: cover;
  width: 100%;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121212;
  opacity: 0.6;
  mix-blend-mode: multiply;
  z-index: 1;
}

footer > * {
  position: relative;
  z-index: 2;
}

.footer_cta {
  display: flex;
  align-items: center;
  gap: 215px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 61px 0;
}
.footer_cta .footer_cta--left p:first-child,
.footer_cta .footer_cta--left .phone,
.footer_cta .footer_cta--left p:last-child {
  color: var(--wht);
  font-weight: 800;
  line-height: 1.7;
}
.footer_cta .footer_cta--left p:first-child {
  font-size: 2.4rem;
}
.footer_cta .footer_cta--left .phone {
  position: relative;
  font-size: 4rem;
  margin-left: 38px;
}
.footer_cta .footer_cta--left .phone::before {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/svg/phone.svg) no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  left: -38px;
  bottom: 21px;
}
.footer_cta .footer_cta--left p:last-child {
  font-size: 1.6rem;
}
.footer_cta--right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.btn_social {
  border: 2px solid #fff;
  background: transparent;
}
.btn_social .ins,
.btn_social .line {
  transition: all 0.4 ease;
}
.btn_social .ins:hover,
.btn_social .line:hover {
  opacity: 0.7;
}
.btn_social .ins p,
.btn_social .line p {
  position: relative;
  color: var(--wht);
  padding: 23px 54px 22px 84px;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.7;
}
.btn_social .line p {
  padding: 40px 53px 32px 84px;
}
.btn_social .ins p::before,
.btn_social .line p::before {
  position: absolute;
  content: "";
  display: block;
  background-size: cover;
  width: 47px;
  height: 49px;
  left: 20px;
}
.btn_social .ins p::before {
  background: url(../img/svg/ins.svg) no-repeat;
}
.btn_social .line p::before {
  background: url(../img/svg/line.svg) no-repeat;
  bottom: 21px;
}
.footer_logo {
  margin: 40px auto 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  gap: 69px;
}
.footer_logo a {
  flex: 1 0;
  max-width: 160px;
}
.footer_logo a img {
  object-fit: cover;
}
.footer_logo a:hover {
  opacity: 0.7;
  box-shadow: 0px 6px 5px -5px rgba(0, 0, 0, 0.5);;
}
/* copyright */
.copyright {
  background: linear-gradient(270deg, #a13025 0%, #812d23 100%);
}
.copyright p {
  color: var(--wht);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.7;
  padding: 16px 0;
}
