/* 
MARK: RESET
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* MARK: VARIABLE
*/

:root {
  --txt: #202020;
  --txt-secondary: #473636;
  --ac: #CE4D49;
  --gold: #A07506;
  --font: "Noto Sans", sans-serif;
  --font-secondary: "Noto Serif JP", serif;
  --ac-gold: linear-gradient(to right, #CE4D49, #A07506);
}

/* 
MARK: CUSTOM COMMON
*/
body {
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  min-width: 1280px;
  overflow-x: hidden;
}

.inner {
  width: 100%;
}

.container {
  max-width: 1280px;
  position: relative;
  margin: auto;
}

.container1 {
  max-width: 900px;
  position: relative;
  margin: auto;
  background: #fff;
  border-radius: 40px;
}

.container2 {
  max-width: 1080px;
  position: relative;
  margin: auto;
  background: #fff;
  border-radius: 40px;
}

.sp-only {
  display: none;
}

.square {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.square::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--ac);
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translate(-100%, -50%) rotate(45deg);
}

.svg-sumary {
  display: none;
}

.reverse {
  flex-flow: row-reverse;
}

/* MARK: CUSTOM TEXT
*/

.text {
  color: var(--txt);
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

.text1 {
  color: var(--ac);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}

.text2 {
  color: var(--ac);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}

.text3 {
  color: var(--txt-secondary);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

/* MARK: CUSTOM OTHER
*/

.list-item {
  position: relative;
  left: 0.5rem;
}

.list-item::marker {
  content: "※";
}

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

/*
*-t\d : text
*-i\d : image
*-u\d : url
*-o\d : other
*-l\d : list
*-g\d : group
*/

/* MARK: ON SCROLL
*/

.section {
  opacity: 0;
  transition: all 0.6s ease-out;
}

.fade-in {
  transform: translateY(100px);
}

.slide-left {
  transform: translateX(-100px);
}

.scale-up {
  transform: scale(0.8);
}

.visible {
  opacity: 1;
  transform: none;
}

/* MARK: TOP LOGO
*/

.top-logo {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: shrinkHeight 2s ease-in-out forwards;
}

.top-o1 {
  width: 50vh;
  height: auto;
  animation: fadeInColor 2s ease-in-out forwards;
}

@keyframes fadeInColor {
  0% {
    transform: scale(0.7);
    filter: brightness(0.3) saturate(0.5);
    opacity: 0.7;
  }

  50% {
    width: 50vh;
    transform: scale(1);
    filter: brightness(1) saturate(1);
    opacity: 1;
  }

  100% {
    width: 118px;
  }
}

@keyframes shrinkHeight {
  50% {
    height: 100vh;
  }

  100% {
    height: 100px;
  }
}

/* MARK: TOP VISUAL
*/

.top-visual {
  position: relative;
}

.top-i1 {
  width: 100%;
  aspect-ratio: 21/11;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.top-font {
  width: 100%;
  /* height: 100%; */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
}

/* =========================
  SP専用（新クラス）
========================= */
@media (max-width: 768px) {

  /* 比率管理はこのクラスだけ */
  .top-font--sp {
    position: relative;           /* absoluteの影響を遮断 */
    width: 100%;
    aspect-ratio: 375 / 516;      /* 画像比率 */
    background: transparent;      /* 既存overlayの影響回避 */
  }

  /* picture / img を比率枠にフィット */
  .top-font--sp .fv-media,
  .top-font--sp img {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* 比率そのまま・切れない */
  .top-font--sp img {
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .top-i1 {
    display: none;
  }
}




.top-o2 {
  position: absolute;
  height: 58%;
  width: auto;
  z-index: 1;
}

.top-o3 {
  width: 50%;
  max-width: 989px;
  z-index: 2;
}

.intro-image {
  padding-top: 78px;
}

@media (max-width: 767px) {
  .intro-image {
    padding-top: 50px;
  }
}

/* MARK: LEAD NAV
*/

.lead-navigation {
  padding-top: 80px;
}

.lead-l1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 170%;
  gap: 24px;
}

.restaurant-top-title {
  margin-bottom: 64px;
}

.lead-l1-item {
  font-family: var(--font-secondary);
  color: var(--ac);
}

.lead-u1 {
  color: var(--ac);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.lead-u1:hover {
  opacity: 0.8;
}

.lead-u1:active {
  transform: scale(0.95);
}

.lead-u1::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--ac);
  transition: width 0.3s ease;
}

.lead-u1:hover::after {
  width: 100%;
}

.lead-o1 {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--ac);
}

/* MARK: LEAD SLIDE
*/

.plan-title {
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 30.6px */
}

.lead-slide {
  padding-top: 40px;
}

/* .lead-slide-1 {
  background: url(../images/lead-slide-1.png);
  background: url(../images/lead-slide-1.webp);
}

.lead-slide-2 {
  background: url(../images/lead-slide-2.png);
  background: url(../images/lead-slide-2.webp);
}

.lead-slide-3 {
  background: url(../images/lead-slide-3.png);
  background: url(../images/lead-slide-3.webp);
}

.lead-slide-4 {
  background: url(../images/lead-slide-4.png);
  background: url(../images/lead-slide-4.webp);
}

.lead-slide-5 {
  background: url(../images/lead-slide-5.png);
  background: url(../images/lead-slide-5.webp);
}

.lead-slide-6 {
  background: url(../images/lead-slide-6.png);
  background: url(../images/lead-slide-6.webp);
} */

.lead-slide .swiper-slide {
  width: 100%;
  aspect-ratio: 800/533;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.lead-slide .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.lead-slide .swiper-slide {
  transition: transform 0.3s ease;
  transform: scale(0.8) !important;
  opacity: 0.7 !important;
}

.lead-slide .swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.lead-slide .swiper-pagination-bullet-active {
  background: var(--ac);
  scale: 1.5;
}

.lead-slide .swiper-pagination {
  position: relative;
  margin-top: 24px;
}

/* MARK: LEAD CONTENT
*/

.lead-content {
  padding: 80px 0 79.5px;
  position: relative;
  text-align: center;
}

.lead-o2 {
  top: 0;
  left: -25px;
}


.lead-o3 {
  top: 160px;
  left: 100px;
}

.lead-o4 {
  bottom: 20px;
  right: 0;
}

.lead-t1 {
  margin-bottom: 16px;
}

.lead-t2 {
  color: var(--txt);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

/* MARK: EVENT
*/

.event {
  padding: 80px 0;
  background: url(../svg/event-bg.svg), var(--ac);
  mix-blend-mode: multiply;
  background-size: 30%;
  background-position: center;
}

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

.event-dashed {
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--txt-secondary) 0 4px,
    transparent 4px 12px
  );
}


.event-dashed-bottom {
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--txt-secondary, #473636) 0 4px,
    transparent 4px 12px
  );
}


/* MARK: EVENT OVERVIEW
*/

.event-overview {
  padding: 40px 80px;
  display: grid;
  grid-template-areas:
    "title title"
    "under under"
    "sub1 sub1"
    "cont1 cont1"
    "dashed dashed"
    "sub2 cont2"
  ;
  text-align: center;
}

.event-t1 {
  grid-area: title;
}

.event-g1 {
  grid-area: under;
  margin-top: 16px;
}

.event-t2 {
  grid-area: sub1;
  margin-top: 24px;
}

.event-t3 {
  grid-area: cont1;
  margin: 8px 0 24px;
}

.event-dashed {
  grid-area: dashed;
}

.event-t4 {
  grid-area: sub2;
  margin-top: 16px;
  margin-left: 1rem;
}

.event-t5 {
  grid-area: cont2;
  margin-top: 16px;
  text-align: right;
}

.event-o1 {
  position: relative;
  left: 3px;
}

.event-o2 {
  position: relative;
  top: 0.5px;
}

.event-o3 {
  position: relative;
  right: 4px;
}

/* MARK: EVENT PLAN
*/

.event-plan {
  margin-top: 80px;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 45% auto;
  column-gap: 24px;
  grid-template-areas:
    "title title"
    "under under"
    "text image"
    "more image"
    "more attend"
    "more space"
  ;
}

.event-plan2 {
  margin-top: 80px;
  padding: 40px 24px 72px;
}

@media (max-width: 768px) {
  .event-plan2 {
    margin-top: 40px;
  }
}

.rem  {
  padding-left: 1rem;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 16px;
}

@media (max-width: 768px) {
  .info-side {
    padding-inline: 15px !important;
  }
}


.set {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.right {
  text-align: right;
}

.plan-flex {
  display: flex;
  gap: 24px;
  margin-block-start: 40px;
}
@media (max-width: 768px) {
  .plan-flex {
    display: flex;
    gap: 40px;
    flex-direction: column-reverse;
    margin-block-start: 20px;
  }
}


.plan-right {
  width: 55%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .plan-right {
    width: 100%;
  }
}

.plan-btn {
  margin-top: 48px !important;
}

.plan-set {
  align-items: center;
}


.event-t6 {
  grid-area: title;
  text-align: center;
}

.event-g2 {
  grid-area: under;
  margin-top: 16px;
}

.event-t7 {
  grid-area: text;
  margin-top: 48px;
  font-family: "Noto Serif JP";
}

.event-more {
  grid-area: more;
  margin-top: auto;
  padding-left: 24px;
}

.event-i1 {
  height: min-content;
  aspect-ratio: 55/34;
  grid-area: image;
  background: url(../images/event-image-1.png);
  background: url(../images/event-image-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  margin-top: 24px;
}

.event-attend {
  grid-area: attend;
}

.event-space {
  grid-area: space;
}

.event-t9 {
  font-size: 20px;
}

.event-t10 {
  font-size: 20px;
}

.event-g3 {
  float: right;
  display: flex;
  flex-direction: column;
}

.event-t11 {
  font-family: var(--font-secondary);
  font-size: 24px;
  margin-top: 16px;
}

.event-t12 {
  float: right;
}

.event-o4 {
  margin: 16px 0;
  align-self: center;
}

.event-t13 {
  font-size: 24px;
  font-family: var(--font-secondary);
}

.event-t14 {
  font-weight: 700;
  color: var(--ac);
}

.event-t15 {
  float: right;
}

.event-attend {}

/* MARK: MENU
*/


.menu-o1 {
  position: absolute;
  top: 760px;
  right: 0;
}

.menu-o2 {
  position: absolute;
  top: calc(25% - 222px);
  left: 0;
}

.menu-o3 {
  position: absolute;
  top: calc(50% - 888px);
  right: 0;
}

.menu-o4 {
  position: absolute;
  top: calc(40% + 44px);
  left: 0;
}

.menu-o5 {
  position: absolute;
  top: calc(60% - 44px);
  right: 0;
}

/* MARK: MENU LIST
*/

.menu-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 140px;
  text-align: center;
  position: relative;
}

.menu-item {
  width: 100%;
  display: flex;
  gap: 6.25%;
}



.menu-image-1 {
  background: url(../images/menu-1.png);
  background: url(../images/menu-1.webp);
}

.menu-image-2 {
  background: url(../images/menu-2.png);
  background: url(../images/menu-2.webp);
}

.menu-image-3 {
  background: url(../images/menu-3.png);
  background: url(../images/menu-3.webp);
}

.menu-image-4 {
  background: url(../images/menu-4.png);
  background: url(../images/menu-4.webp);
}

.menu-image-5 {
  background: url(../images/menu-5.png);
  background: url(../images/menu-5.webp);
}

.card__swiper-slide {
  width: 100%;
  max-width: 550px;
  overflow: hidden;
}

.card__swiper-slide img {
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 550 / 340;
}


.menu-image {
  width: 50%;
  max-width: 640px;
  height: fit-content;
  aspect-ratio: 64/43;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 19px 8px;
  max-width: 560px;

  /* Đường viền trong 2px */
  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    top: 0;
    left: 0;
    background: var(--ac-gold);
    clip-path: polygon(0 0, 100% 0, 100% 8px, 0 8px, 0 12px, 100% 12px, 100% 100%, 0 100%);
  }

  &::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    bottom: 0;
    left: 0;
    background: var(--ac-gold);
    clip-path: polygon(0 0, 100% 0, 100% 3px, 0 3px, 0 7px, 100% 7px, 100% 100%, 0 100%);
  }
}

.menu-item:nth-of-type(1) .menu-content {
  &::before {
    content: "";
    background: var(--gold);
  }

  &::after {
    content: "";
    background: var(--gold);
  }
}

.menu-item:nth-of-type(2) .menu-content {
  &::before {
    content: "";
    background: var(--ac);
  }

  &::after {
    content: "";
    background: var(--ac);
  }
}

.menu-recommend {
  margin-top: 8px;
}

.menu-t2 {
  color: var(--gold)
}

.menu-name {
  padding-bottom: 8px;
  position: relative;
}

.menu-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--ac);
}

.menu-t2::after {
  background: var(--gold);
}

.menu-text {
  margin-top: 24px;
  padding: 0 40px;
}

.menu-l1 {
  text-align: left;
  align-self: flex-start;
  margin-top: 16px;
}

.menu-l1-item {
  list-style-type: disc;
  white-space: nowrap;
}

.menu-g1 {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* MARK: NOTIFICATION
*/

.notification {
  padding: 80px 0;
  background: url(../images/notification-bg.png);
  background: url(../images/notification-bg.webp);
  position: relative;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.notification::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 32, 32, 0.8);
}

.notification-t1 {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 170%;
}

.notification-t2 {
  font-size: 40px;
  font-weight: 900;
}

/* MARK: ROOM
*/
.restaurants {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-top: 56px;
  text-align: center;
  padding-bottom: 120px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .restaurants {
  gap: 80px;
  padding-top: 0px;
  text-align: center;
  padding-bottom: 60px;
}
  }

/* MARK: ROOM SLIDE
*/

.room-slide {
  margin-top: 32px;
  margin-bottom: 48px;
}

.swiper-title {
  color: var(--ac);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  text-align: left;
  margin-block-end: 24px;
}

.dummy-image {
  background: url(../images/dummy.png);
  /* background: url(../images/menu-1.webp); */
}

.etowar1 {
  background: url(../images/etowar1.webp);
}
.etowar2 {
  background: url(../images/etowar2.webp);
}
.etowar3 {
  background: url(../images/etowar3.webp);
}
.etowar4 {
  background: url(../images/etowar4.webp);
}
.etowar5 {
  background: url(../images/etowar5.webp);
}

.musashino1 {
  /* background: url(../images/musashino1.jpg); */
  background: url(../images/musashino1.webp);
}
.musashino2 {
  /* background: url(../images/musashino2.jpg); */
  background: url(../images/musashino2.webp);
}
.musashino3 {
  /* background: url(../images/musashino3.jpg); */
  background: url(../images/musashino3.webp);
}
.musashino4 {
  /* background: url(../images/musashino4.jpg); */
  background: url(../images/musashino4.webp);
}

.kokiden1 {
  /* background: url(../images/kokiden1.jpg); */
  background: url(../images/kokiden1.webp);
}
.kokiden2 {
  /* background: url(../images/kokiden2.jpg); */
  background: url(../images/kokiden2.webp);
}

.lobby1 {
  /* background: url(../images/lobby1.jpg); */
  background: url(../images/lobby1.webp);
}
.lobby2 {
  /* background: url(../images/lobby2.jpg); */
  background: url(../images/lobby2.webp);
}
.lobby3 {
  /* background: url(../images/lobby3.jpg); */
  background: url(../images/lobby3.webp);
}
.lobby4 {
  /* background: url(../images/lobby4.jpg); */
  background: url(../images/lobby4.webp);
}
.lobby5 {
  /* background: url(../images/lobby5.jpg); */
  background: url(../images/lobby5.webp);
}

.winza1 {
  background: url(../images/winza1.webp);
}
.winza2 {
  /* background: url(../images/uinza1.jpg); */
  background: url(../images/winza2.webp);
}

.plan1 {
  background: url(../images/plan1.jpeg);
  /* background: url(../image/etowar1.webp); */
}
.plan2 {
  background: url(../images/plan2.jpeg);
  /* background: url(../image/etowar1.webp); */
}
.plan3 {
  background: url(../images/plan3.jpg);
  /* background: url(../image/etowar1.webp); */
}

.room-slide-2 {
  background: url(../images/room-slide-2.png);
  background: url(../images/room-slide-2.webp);
}

.room-slide-3 {
  background: url(../images/room-slide-3.png);
  background: url(../images/room-slide-3.webp);
}

.annotation-text {
  font-family: Noto Serif JP;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 170%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 32px;
}

.room-slide .swiper-slide {
  width: 100%;
  aspect-ratio: 800/533;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.room-slide .swiper-slide {
  transition: transform 0.3s ease;
  transform: scale(0.8) !important;
  opacity: 0.7 !important;
}

.room-slide .swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.room-slide .swiper-pagination-bullet-active {
  background: var(--ac);
  scale: 1.5;
}

.room-slide .swiper-pagination {
  position: relative;
  margin-top: 32px;
  margin-bottom: 48px;
}

/* MARK: ROOM CONTENT
*/

.room-content {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price {
  margin-top: 16px;
  font-weight: 700;
}

.btn {
  display: flex;
  width: fit-content;
  line-height: 0;
  margin-top: 64px;
  border: 2px solid var(--ac);
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  color: var(--ac);
}

.btn::before {
  content: "詳細はこちら";
  padding: 0 64px;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
}

.room-o1 {
  padding: 12px 12px 12px 0;
  height: 58px;
  width: 46px;
}

.btn:hover {
  background: var(--ac);
  color: #fff;
  transform: scale(1.05);
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* MARK: CAUTION
*/

.caution {
  padding: 160px 0;
}

.caution-li1 {
  position: relative;
  left: 1rem;
}

.caution-li1-item {
  list-style-type: decimal;
}

/* MARK: SOCIAL
*/

.social {
  padding: 48px 0;
  background: var(--ac);
}

.social-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.social-item {
  min-width: 366px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-secondary);
  align-items: center;
  position: relative;
}

.social-item:after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 24px;
}

.social-item:hover {
  color: var(--ac);
  background: #fff;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-item {
  transition: all 0.3s ease;
}

.social-item:hover:after {
  border-top: 2px solid var(--ac);
  border-right: 2px solid var(--ac);
}

.social-item:hover .social-logo {
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.social-list2 {
  margin-block-start: 32px;
  gap: 48px;
}

@media (max-width: 767px) {
  .social-list2 {
    gap: 24px;
  }
}

/* ============================
   social list
============================ */
.social-list2 {
  display: flex;
  justify-content: center;
  gap: 48px;
}

/* ============================
   social item
============================ */
.social-item2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
}

.social-item2:hover .social-name2 {
  opacity: 0.3;
}

/* 共通：縦線 */
.social-item2::before,
.social-item2::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 28px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}

/* 左の線：テキストから24px */
.social-item2::before {
  right: calc(100% + 24px);
}

/* 右の線：テキストから24px */
.social-item2::after {
  left: calc(100% + 24px);
}

/* 最後（川越プリンスホテル）は左線なし */
.social-item2:last-child::before {
  display: none;
}

/* ============================
   スマホ
============================ */
@media (max-width: 767px) {
  .social-list2 {
    gap: 24px;
  }

  /* スマホでは両方とも左右線を表示 */
  .social-item2:last-child::before {
    display: block;
  }
}


.social-logo {
  width: 47px;
  height: 49px;
}

.social-name {
  line-height: initial;
}

.social-name2{
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  transition: opacity 0.3s ease-in-out;
}

.social-id {
  font-size: 12px;
}

/* MARK: COPYRIGHT
*/

.copyright {
  color: var(--ac);
  font-size: 12px;
  font-family: Montserrat;
  text-align: center;
  padding: 16px;
}

.center-center-plan {
    align-items: flex-start;
  }


@media (max-width: 768px) {
  body {
    min-width: auto;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .square {
    font-size: 16px;
    white-space: nowrap;
  }

.text-small{
    font-size: 14.9px;
  }

  .text1 {
    font-size: 18px;
  }

  .text2,.text3 {
    font-size: 16px;
  }


  @keyframes shrinkHeight {
    50% {
      height: 100vh;
    }

    100% {
      height: 0;
    }
  }

  /* .top-i1 {
    aspect-ratio: 430/774;
  } */

  .top-o2 {
    scale: 0.42;
  }

  .top-o3 {
    width: 80%;
  }

  .lead-navigation {
    display: none;
  }

  .lead-slide {
    padding-top: 60px;
  }

  .lead-slide .swiper-slide {
    transform: unset !important;
  }

  .lead-slide .swiper-pagination {
    margin-top: 20px;
  }

  .lead-content {
    padding-top: 48px ;
  }

  .lead-t2 {
    margin-top: 30px;
    font-size: 16px;
  }

  .lead-o2 {
    scale: 0.5;
    top: unset;
    bottom: -73px;
    left: -40px;
  }


  
  .lead-o3 {
    scale: 0.65;
    top: unset;
    bottom: -30px;
    left: 75px;
  }

  .lead-o4 {
    scale: 0.4;
    top: -30px;
    right: -45px;
  }

  .event {
    padding: 48px 16px;
  }

  .event-overview {
    padding: 40px 0;
  }
  
  .event-under {
    scale: 0.7;
    margin-top: 0;
  }
  
  .event-t2 {
    margin-top: 20px;
  }
  
  .event-t3 {
    margin: 16px 0 12px;
  }
  
  .event-t4 {
    margin-top: 20px;
    margin-left: 2rem;
  }
  
  .event-t5 {
      margin-top: 20px;
      margin-right: 1rem;
    }
  
  .event-plan {
    margin-top: 36px;
    padding: 40px 24px;
    grid-template-columns: 100%;
    grid-template-areas: 
      "title"
      "under"
      "text"
      "image"
      "attend"
      "more"
      "space";
  }

  .event-t7 {
    text-align: center;
    margin-top: 25px;
  }

  .event-i1, .event-attend {
    margin-top: 16px;
  }

  .event-more {
    padding-left: 0;
    margin-top: 16px;
  }

  .event-t8 {
    margin-left: 24px;
  }

  .event-o4 {
    scale: 0.7;
  }

  .event-g3 {
    float: none;
    align-items: center;
  }

  .event-t11 {
    margin-top: 20px;
  }

  .event-t10, .event-t11, .event-t13 {
    font-size: 16px;
  }

  .menu-item {
    flex-direction: column;
  }

  .menu {
    padding: 80px 16px 68px;
    overflow: hidden;
  }

  .menu-list {
    gap: 60px;
  }

  .menu-item {
    gap: 40px;
  }

  .menu-image {
    width: 100%;
    aspect-ratio: 195/77;
  }

  .menu-content {
    padding: 40px 0;
  }

  .menu-text {
    margin-top: 10px;
    margin-bottom: 48px;
  }

  .menu-l {
    padding-left: 52px;
  }

  .menu-recommend {
    margin-top: 10px;
  }

  .menu-name {
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .menu-o1 {
    top: 20px;
    right: 40px;
    transform: translate(50%);
    width: 50px;
  }

  .menu-o2 {
    top: calc(20% + 40px);
    transform: translate(-50%);
    width: 50px;
    left: 40px;
  }

  .menu-o3 {
    top: calc(40% + 50px);
    transform: translate(50%);
    width: 50px;
    right: 40px;
  }

  .menu-o4 {
    top: calc(60% + -106px);
    transform: translate(-70%);
    width: 50px;
    left: 40px;

  }

  .menu-l1-item {
    white-space: initial;
  }

  .menu-o5 {
    top: calc(75% + -274px);
    transform: translate(50%);
    width: 50px;
    right: 40px;
  }

  .notification-t1 {
    font-size: 16px;
  }

  .notification-t2 {
    font-size: 30px;
    padding-top: 20px;
  }
  
  .room {
    padding: 40px 0 0;
  }

  .room-container {
    padding: 0 16px;
  }

  .room-slide .swiper-slide {
    transform: unset !important;
  }

  .room-slide .swiper-pagination {
    margin-top: 20px;
  }

  .caution {
    padding: 72px 32px 80px 16px;
  }

  .social {
    padding: 52px 32px;
  }

  .social-list {
    flex-direction: column;
  }

  .social-item {
    min-width: 100%;
  }
}

.text-announcement {
    margin-block-start: 15px;
  }






/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}


/* =============================
   SPのみ：Swiper固定レイアウト（CSS）
============================= */
@media (max-width: 768px) {

  /* 基準を固定 */
  .plan-right {
    position: relative;
  }

  /* Swiperの高さをpxで固定 */
  .card__swiper {
    height: 240px;
  }

  .card__swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* pagination（完全固定） */
  .card-swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    left: 50%;
    bottom: 12px;
    top: auto;
    transform: translateX(-50%);
  }

  /* bullet */
  .card-swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d9d9d9;
    margin-left: 5px;
    margin-right: 5px;
  }

  .card-swiper-pagination .swiper-pagination-bullet-active {
    background: #CE4D49;
    transform: scale(1.5);
  }

  /* 矢印ボタン */
  .swiper-button-prev,
  .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
  }

}


.swiper-bottom {
  margin-block-end: 15px;
}

/* =============================
   ナビゲーションボタン
============================= */
/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: ""; /* デフォルトのものを初期化 */
}

/* 各ボタンのカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  top: calc(50%);
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: calc(50% + -16px);
    width: 30px;
  }
}

/* SVGのサイズ指定 */
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
}


.swiper-button-prev {
  left: 498px;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 0;
  }
}

.swiper-button-next {
  right: 32px;
}

@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: 0;
  }
}


/* =============================
   card swiper pagination（bullets）
============================= */

/* 位置の設定（枠組み） */
.card-swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: calc(100% - 122px);
  left: calc(50% + -290px);
}

@media (max-width: 768px) {
  .card-swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    top: calc(50% - -100px);   /* 上に詰める */
    left: 50%;                /* 中央寄せ */
    transform: translateX(-50%);
  }
}

/* 各bullet */
.card-swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet {
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  margin-inline: calc(16px / 2);
}

@media (max-width: 767px) {
  .card-swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal
    .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin-inline: calc(10px / 2);
  }
}

/* active */
.card-swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet-active {
  background: #CE4D49;
  scale: 1.3;
}


@media screen and (max-width: 768px) {
    .stay_annotation-text{
  margin-top: 40px;
  }
}

  
.option-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  }


/* トップに戻るボタン */
.toTop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: #222; /* 背景を濃く */
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.toTop.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toTop:hover{
  transform: translateY(-4px);
}

/* 矢印 */
.toTop__icon{
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}

/* TOPテキスト */
.toTop__text{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}

/* スマホ */
@media (max-width: 768px){
  .toTop{
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .toTop__text{
    font-size: 9px;
  }
}
