@charset "utf-8";

/* ==========================================================================
   VARIABLES & SETTINGS
   ========================================================================== */
:root {
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-en: "EB Garamond", serif;
  
  /* Colors */
  --accent-color: #AD5A68;
  --accent-color-light: #ECDCDB;
  --border-color: #F5F5F5;
  --border-color2: #777777;
  --border-color3: #DDDDDD;
  --bg-notice: #DD3D3D;
  --bg-calendar: #707070;
  --bg-menu: #F6F4F4;
  --bg-cardmenu: #ECDCDB;
  --text-color: #33221E;
  --option-text-color: #999;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section, nav {
  display: block;
}

ol, ul, li {
  list-style: none;
}

img, svg {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

html {
  max-width: 100vw;
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: var(--text-color);
  font-size: 1.4rem;
  font-family: var(--font-family-jp);
  font-optical-sizing: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.7s, background-position 0.7s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

/* Helper Classes */
.sp-only,
.sp-480 {
  display: none;
}

.page-wrapper {
  max-width: 100vw;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767.999px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}

@media (max-width: 480px) {
  .sp-480 {
    display: block;
  }
}

/* ==========================================================================
   COMPONENTS (Buttons, Titles)
   ========================================================================== */

/* Titles */
.section-title,
.page-title {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}

.section-title {
  margin-bottom: 50px;
}

.section-title span,
.page-title span {
  display: block;
  font-size: 5.2rem;
  font-weight: 500;
  font-family: var(--font-family-en);
}

@media (max-width: 767.999px) {
  .section-title,
  .page-title {
    font-size: 1.2rem;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .section-title span,
  .page-title span {
    font-size: 3rem;
  }
}

/* More Button */
.more-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: 220px;
  height: 55px;
  margin-inline: auto;
  padding-inline: 70px;
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid var(--text-color);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.more-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--text-color);
  transition: right 0.7s ease-in-out;
}

@media (any-hover: hover) {
  .more-btn:hover {
    color: #fff;
    opacity: 1;
    background-color: var(--text-color);
  }
  .more-btn:hover::before {
    right: -25px;
  }
}

@media (max-width: 767.999px) {
  .more-btn {
    min-width: auto;
    padding-inline: 35px;
  }
}

/* Breadcrumbs */
.breadcrumb-bar {
  width: auto;
  padding: 30px;
  overflow: auto;
}

.breadcrumb-bar::-webkit-scrollbar {
  display: none;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.2rem;
  gap: 30px;
}

.breadcrumb-list li {
  position: relative;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
}

.breadcrumb-list li + li::after {
  content: "";
  position: absolute;
  top: 1px;
  left: -17px;
  width: 8px;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5LjAyMSIgaGVpZ2h0PSIxMi40NTciIHZpZXdCb3g9IjAgMCA5LjAyMSAxMi40NTciPiA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjI5OCAwLjQwMikiPiA8cGF0aCBkPSJNMTAsOC41NjVsNy44ODMsNS44MTNMMTAsMjAuMjE4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTAgLTguNTY1KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMzMyMjFlIiBzdHJva2Utd2lkdGg9IjEiLz4gPC9nPjwvc3ZnPg==") no-repeat center center / 100% 100%;
}

.breadcrumb-list li:last-child {
  padding-right: 50px;
}

.breadcrumb-list li a {
  display: flex;
  align-items: center;
}

@media (max-width: 767.999px) {
  .breadcrumb-bar {
    padding: 15px 14px;
  }
  .breadcrumb-list {
    gap: 20px;
  }
  .breadcrumb-list li {
    font-size: 1.1rem;
  }
  .breadcrumb-list li + li::after {
    left: -12px;
    width: 6px;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  position: relative;
  overflow: hidden;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding-left: 30px;
  border-bottom: 2px solid var(--border-color);
}

.header-bar .page-title,
.header-bar .site-title {
  margin-right: auto;
}

.nav-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding-right: 90px;
}

.header-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.header-list li {
  height: 28px;
  padding-right: 30px;
  line-height: 28px;
}

.header-list li a {
  display: flex;
  align-items: center;
}

.header-list li:nth-child(1) img {
  margin-right: 10px;
}

.header-list li:nth-child(2) img {
  margin-right: 7px;
}

/* Menu Button */
#js-menubtn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  display: block;
  width: 90px;
  height: 90px;
  padding-top: 20px;
  background-color: var(--text-color);
  cursor: pointer;
}

#js-menubtn .line-box {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
}

#js-menubtn .line-box span {
  position: absolute;
  inset: auto 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-radius: 1px;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
}

#js-menubtn .line-box span:nth-child(1) {
  top: 38%;
}

#js-menubtn .line-box span:nth-child(2) {
  top: 64%;
}

#js-menubtn.active .line-box span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}

#js-menubtn.active .line-box span:nth-of-type(2) {
  transform: translateY(-4px) rotate(45deg);
}

#js-menubtn .menu-text {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}

/* Navigation Menu (Drawer) */
#js-menu-bg {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 250;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

#js-menu-bg.active {
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: auto;
}

#js-navbox-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 290;
  display: flex;
  flex-direction: column;
  padding: 145px 130px;
  background-color: var(--bg-menu);
  overflow-x: hidden;
  transition: transform 0.4s ease-in-out;
  transform: translateX(100%);
}

#js-navbox-menu.open {
  width: fit-content;
  height: 100vh;
  transform: translateX(0);
}

#js-navbox-menu:not(.open) a {
  pointer-events: none;
}

#js-navbox-menu .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 442px;
  margin-bottom: 24px;
}

#js-navbox-menu .menu-list li {
  width: calc(33.333% - 20px / 3);
  aspect-ratio: 1 / 1;
  background-color: #fff;
}

#js-navbox-menu .menu-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 20px;
}

#js-navbox-menu .menu-list li a img {
  margin-bottom: 18px;
}

#js-navbox-menu .card-area {
  position: relative;
  width: 440px;
  margin-bottom: 17px;
  padding: 10px 10px 14px;
  background-color: var(--bg-cardmenu);
}

#js-navbox-menu .card-title {
  margin-bottom: 12px;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}

#js-navbox-menu .card-bg {
  position: absolute;
  top: 5px;
  left: -10px;
  width: 103px;
}

#js-navbox-menu .card-menu {
  display: flex;
  gap: 10px;
  padding-left: 104px;
}

#js-navbox-menu .card-menu a {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-inline: auto;
  padding: 10px 12px;
  border-radius: 50px;
  font-size: 1.5rem;
  background-color: #fff;
}

#js-navbox-menu .card-list li:first-child a {
  padding-inline: 12px;
}

#js-navbox-menu .text-list {
  display: flex;
  margin-bottom: 45px;
}

#js-navbox-menu .text-list li {
  margin-right: 30px;
}

#js-navbox-menu .text-list li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
}

#js-navbox-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 220px;
  line-height: 54px;
  margin-inline: auto;
  font-size: 1.6rem;
  border: 1px solid var(--text-color);
}

.sp-fixedmenu {
  display: none;
}

/* Header & Nav Responsive */
@media (max-width: 767.999px) {
  .nav-box {
    padding-right: 0;
  }
  .header-list {
    height: auto;
  }
  .header-list li {
    height: 47px;
    margin-right: 20px;
    padding-right: inherit;
    line-height: inherit;
  }
  .header-list li a {
    justify-content: space-between;
    gap: 6px;
    height: 45px;
    font-size: 1.2rem;
  }
  .header-bar {
    height: 47px;
    padding-left: 15px;
  }
  .header-bar .page-title,
  .header-bar .site-title {
    width: 86px;
  }
  .header-bar .page-title a,
  .header-bar .site-title a {
    display: flex;
  }
  .header-bar .header-list li img {
    height: 17px;
    margin-right: inherit;
  }

  /* Menu Button (SP) */
  #js-menubtn {
    top: auto;
    right: 0;
    bottom: 0;
    width: 66px;
    height: 66px;
    padding-top: 13px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  #js-menubtn.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  #js-menubtn .menu-text {
    font-size: 0.9rem;
  }
  #js-menubtn .line-box {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
  }
  #js-menubtn .line-box span:nth-child(1) {
    top: 28%;
  }
  #js-menubtn .line-box span:nth-child(2) {
    top: 62%;
  }

  /* Nav Menu (SP) */
  #js-navbox-menu {
    position: fixed;
    width: 340px !important;
    height: calc(100vh - 66px);
    max-width: 100vw;
    padding: 20px;
  }
  #js-navbox-menu .menu-list {
    width: 100%;
  }
  #js-navbox-menu .card-area {
    width: 100%;
  }
  #js-navbox-menu .text-list {
    margin-bottom: 27px;
  }
  #js-navbox-menu .text-list li a {
    font-size: 1.1rem;
  }
  #js-navbox-menu .menu-list a {
    padding-bottom: 0;
    font-size: 1.1rem;
  }
  #js-navbox-menu .menu-list li a img {
    max-width: 30%;
    max-height: 30%;
    margin-bottom: 10px;
  }
  #js-navbox-menu .card-title {
    font-size: 1.5rem;
  }
  #js-navbox-menu .card-bg {
    top: -17px;
    left: 10px;
    width: 80px;
  }
  #js-navbox-menu .card-menu {
    padding-left: 0;
  }
  #js-navbox-menu .card-menu a {
    padding: 8px 10px;
    font-size: 1.3rem;
  }
  #js-navbox-menu .card-menu a img,
  #js-navbox-menu .text-list li a img {
    width: 1em;
  }
  #js-navbox-btn {
    display: none;
  }

  /* Fixed Bottom Menu (SP) */
  .sp-fixedmenu {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 300;
    display: block;
    width: calc(100% - 66px);
    height: 66px;
    background-color: #fff;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .sp-fixedmenu.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  .sp-fixedmenu ul {
    display: flex;
    width: 100%;
    height: 66px;
  }
  .sp-fixedmenu li {
    width: 25%;
  }
  .sp-fixedmenu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-top: 12px;
    font-size: 0.9rem;
  }
  .sp-fixedmenu li img {
    max-height: 30px;
  }
}

/* ==========================================================================
   MODALS & POPUPS
   ========================================================================== */

/* 1. Standard Popup Dialog (Native) */
html.popup-show,
html.popup-show body {
  overflow: hidden;
}

#popup-dialog {
  width: 100vw;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  background: transparent;
  border: none;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#popup-dialog::-webkit-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#popup-dialog[open] {
  opacity: 1;
}

#popup-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#popup-dialog[open]::backdrop {
  opacity: 1;
}

.popup-box {
  position: relative;
  width: calc(100vw - 60px);
  max-width: 520px;
  margin: 0 auto;
  padding: 30px 25px 50px;
  background: #fff;
  overflow: hidden;
}

#popup-close {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 37px;
  height: 47px;
  margin: 0 0 10px auto;
  padding: 0;
  font-size: 1.2rem;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

#popup-close span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-inline: auto;
}

#popup-close span::before,
#popup-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5px;
  height: 30px;
  background: var(--text-color);
}

#popup-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#popup-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-img {
  margin-bottom: 10px;
}

.popup-text {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.8rem;
}

.popup-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 55px;
  margin-inline: auto;
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid var(--text-color);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.popup-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--text-color);
  transition: right 0.7s ease-in-out;
}

@media (any-hover: hover) {
  .popup-btn:hover {
    color: #fff;
    opacity: 1;
    background-color: var(--text-color);
  }
  .popup-btn:hover::before {
    right: -25px;
  }
}

/* 2. Worktime Dialog */
#worktime-dialog {
  width: 100vw;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 50px 0;
  background: transparent;
  border: none;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#worktime-dialog::-webkit-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#worktime-dialog[open] {
  opacity: 1;
}

#worktime-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#worktime-dialog[open]::backdrop {
  opacity: 1;
}

.worktime-box {
  position: relative;
  width: calc(100% - 30px);
  max-width: 650px;
  margin: 0 auto;
  padding: 50px 20px 60px;
  background: var(--border-color);
  overflow: hidden;
}

#worktime-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 37px;
  height: 47px;
  padding: 0;
  font-size: 1.2rem;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

#worktime-close span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-inline: auto;
}

#worktime-close span::before,
#worktime-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5px;
  height: 30px;
  background: var(--text-color);
}

#worktime-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#worktime-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.worktime-title {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.6rem;
  text-align: center;
}

.worktime-title img {
  width: 26px;
  margin-right: 10px;
}

.worktime-inner {
  width: 517px;
  margin-inline: auto;
}

.worktime-list {
  display: flex;
  height: max-content;
  margin-bottom: 20px;
  background-color: #fff;
}

.worktime-list:last-child {
  margin-bottom: 12px;
}

.worktime-list > dt {
  display: grid;
  place-items: center;
  width: 115px;
  font-size: 2rem;
  font-weight: 500;
  background-color: var(--accent-color-light);
}

.worktime-list > dd {
  display: flex;
  flex-direction: column;
  width: calc(100% - 115px);
}

.worktime-detail {
  position: relative;
  display: flex;
  height: 70px;
}

.worktime-detail.cinema {
  height: 90px;
}

.worktime-detail + .worktime-detail {
  border-top: 1px solid var(--border-color3);
}

.worktime-detail dt {
  display: grid;
  place-items: center;
  width: 160px;
  font-size: 1.6rem;
  font-weight: 500;
}

.worktime-detail dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
}

.worktime-detail dd span {
  font-size: 1.2rem;
  font-weight: 400;
}

.worktime-box p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
  font-weight: 400;
}

/* 3. Custom Overlay Popup */
.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

@media (any-hover: hover) {
  .popup-close:hover {
    background-color: #f0f0f0;
  }
}

.popup-body {
  padding: 30px;
}

.popup-body h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

.popup-body p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
}

/* Popup/Worktime Responsive */
@media (max-width: 767.999px) {
  /* Standard Popup */
  #popup-dialog {
    height: max-content;
  }
  .popup-btn {
    width: 160px;
    height: 40px;
    font-size: 1.3rem;
  }

  /* Worktime */
  #worktime-dialog {
    padding: 30px 0;
  }
  .worktime-box {
    padding-block: 30px;
  }
  #worktime-close {
    top: 15px;
    right: 10px;
    width: 30px;
    height: 39px;
    font-size: 0.9rem;
  }
  #worktime-close span {
    width: 20px;
    height: 20px;
  }
  #worktime-close span::before,
  #worktime-close span::after {
    width: 1.5px;
    height: 20px;
  }
  .worktime-title {
    margin-bottom: 25px;
  }
  .worktime-detail {
    min-height: 50px;
    padding-right: 8px;
  }
  .worktime-detail.cinema {
    height: auto;
    min-height: 70px;
  }
  .worktime-detail:has(dd span) {
    padding-bottom: 1lh;
  }
  .worktime-detail:has(dd span) dd {
    padding-block: 10px;
  }
  .worktime-list > dt {
    width: 60px;
    font-size: 1.4rem;
  }
  .worktime-list > dd {
    width: calc(100% - 60px);
  }
  .worktime-detail dt {
    font-size: 1.2rem;
  }
  .worktime-detail dd {
    width: calc(100% - 100px);
    font-size: 1.1rem;
  }
  .worktime-detail dd span {
    position: absolute;
    left: 2em;
    bottom: 1em;
    font-size: 1rem;
  }
}

/* ==========================================================================
   SLIDERS (Splide / Footer Slider)
   ========================================================================== */
.footer-slider {
  position: relative;
}

.footer-slider .splide__track {
  width: calc(100% + 15px);
  height: 340px;
  transform: translateX(-15px);
}

.footer-slider .splide__list {
  overflow: visible;
}

.footer-slider .splide__slide {
  width: 340px !important;
  height: 340px;
  margin-inline: 18px;
  aspect-ratio: 1 / 1;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-slider .splide__playpause {
  top: 20px;
  right: 20px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 35px auto 85px;
  padding: 0;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  background-color: #fff;
  color: var(--text-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-slider .splide__playpause::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: currentcolor;
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M11 6L3 10.5L3 1.5L11 6Z" fill="white"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.footer-slider .splide__playpause.is-active::before {
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M3 2L3 10M9 2L9 10" stroke="white" stroke-width="2" /></svg>');
}

/* JS Splide (Top Page) Override */
/*#js-splide .splide__slide {
  margin-right: -64px;
}*/

#js-splide .splide__slide img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

#js-splide .splide__slide a {
  display: block;
  width: 100%;
}

@media (max-width: 767.999px) {
  .footer-slider .splide__track {
    height: 210px;
  }
  .footer-slider .splide__slide {
    width: 210px !important;
    height: 210px;
    margin-inline: 8px;
  }
  .footer-slider .splide__playpause {
    top: 15px;
    right: 15px;
    margin: 20px auto 50px;
  }
}

@media (max-width: 480px) {
  .footer-slider .splide__playpause {
    width: 25px;
    height: 25px;
    top: 10px;
    right: 10px;
  }
  .footer-slider .splide__playpause::before {
    width: 10px;
    height: 10px;
  }
  .footer-slider .splide__playpause.is-active::before {
    width: 10px;
    height: 10px;
  }
}

/* ==========================================================================
   FIXED CONTROLS (Top Arrow, SNS, Page Top)
   ========================================================================== */
.top-arrow {
  position: fixed;
  bottom: 0;
  right: 0;
  left: auto;
  display: block;
  padding: 15px;
  justify-content: flex-end;
  gap: 10px;
  z-index: 180;
  height: 175px;
}

/* SNS Box */
.sns-box {
  position: relative;
  display: block;
  place-items: center;
  z-index: 100;
  width: 140px;
  height: 100px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  top: -20px;
}

.sns-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px !important;
  padding-top: 10px;
}

.sns-list li {
  width: 40px;
}

.sns-list::before {
  content: "アルパークの\A公式SNS";
  white-space: pre;
  display: block;
  flex-basis: 100%;
  font-size: 12px;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 0;
}

.post-sns .sns-list::before {
  content: none;
  display: none;
}

/* Close Box (for fixed elements) */
.close-box {
  position: absolute;
  top: -10px;
  right: -7px;
  z-index: 200;
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--text-color);
  cursor: pointer;
}

.close-box::before,
.close-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 12px;
  background: #fff;
}

.close-box::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-box::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Page Top Button */
.page-top {
  position: relative;
  z-index: 100;
  width: 55px;
  height: 55px;
  cursor: pointer;
  background: var(--text-color);
  border-radius: 50%;
  margin: 0 -12px 0 0;
  left: 85px;
  top: -20px;
  opacity: 0;
  visibility: hidden;
  left: auto;
  top: auto;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.page-top a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.page-top img {
  display: none;
}

.page-top a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translate(-50%, -40%) rotate(45deg);
}

@media (max-width: 767.999px) {
  .top-arrow {
    gap: 0;
    height: 100px;
    padding: 10px 15px;
  }
  .sns-box {
    width: 130px;
    padding: 0;
    height: 100px;
    top: -135px;
    z-index: 200;
  }
  .sns-list {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding-top: 0;
  }
  .sns-list li {
    width: 42px;
  }
  .sns-list::before {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 0px
  }
  .page-top {
    width: 40px;
    height: 40px;
    right: 10px !important;
    margin: 0 10px 0 0;
    top: -125px;
  }
  .page-top a::before {
    width: 8px;
    height: 8px;
  }
}

/* ==========================================================================
   FOOTER (Legacy & Reborn)
   ========================================================================== */
.page-footer {
  display: block;
  position: relative;
  overflow-x: hidden;
}

/* SNS Follow Bar (Above Footer) */
.section-sns-follow {
  width: 100%;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, rgba(245, 245, 245, 1) 6px, rgba(245, 245, 245, 1) 9px);
  padding: 40px 0;
}

.section-sns-follow .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-sns-follow .label {
  font-size: 2.0rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #33221E;
  margin: 0;
}

.section-sns-follow .footer-sns-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-sns-follow .footer-sns-list li {
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
}

.section-sns-follow .footer-sns-list li a {
  display: block;
}

.section-sns-follow .footer-sns-list li img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (any-hover: hover) {
  .section-sns-follow .footer-sns-list li:hover {
    opacity: 0.7;
  }
}

/* Legacy Footer Area (Alpark) */
.alpark-area {
  padding-block: 55px 50px;
  background-color: var(--bg-menu);
}

.alpark-inner,
.dhg-inner {
  display: flex;
  align-items: center;
  max-width: 1030px;
  margin-inline: auto;
}

.alpark-inner .alpark-logo {
  margin-right: 45px;
}

.alpark-inner .link-list {
  display: flex;
  margin-left: auto;
  height: 2rem;
}

.alpark-inner .link-list li + li {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid var(--border-color3);
}

.dhg-inner {
  justify-content: space-between;
  padding-block: 30px;
}

.dhg-inner .dhg-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 487px;
  height: 33px;
  margin-bottom: 12px;
}

.dhg-inner .dhg-logo img:first-child {
  width: 267px;
}

.dhg-inner .dhg-logo img + img {
  width: 189px;
}

.dhg-inner .dhg-text {
  font-size: 1rem;
}

.dhg-inner .dhg-block:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 65px;
  padding-top: 8px;
}

.dhg-inner .link-list {
  display: flex;
  margin-left: auto;
}

.dhg-inner .link-list li + li {
  height: 1lh;
  margin-left: 30px;
  padding-left: 30px;
  line-height: 1.4;
  border-left: 1px solid var(--border-color3);
}

.dhg-inner .link-list a {
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.dhg-inner .link-list img {
  position: relative;
  bottom: 1px;
  width: 14px;
}

/* Footer Reborn (Active Footer) */
.footer-reborn-area {
  padding-block: 55px 30px;
  background-color: var(--bg-menu);
}

.footer-reborn-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 30px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 20px;
}

.ft-left-block {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-reborn-area .alpark-logo img {
  width: 140px;
  height: auto;
}

.footer-reborn-area .alpark-text {
  font-size: 1.3rem;
  line-height: 1.6;
}

.ft-right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 10px;
}

.footer-reborn-area .dhg-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-reborn-area .dhg-logo img:first-child {
  width: 32px;
  height: auto;
}

.footer-reborn-area .dhg-logo img:last-child {
  width: 220px;
  height: auto;
}

.footer-reborn-area .dhg-text {
  font-size: 1rem;
  color: var(--text-color);
}

.footer-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 0;
}

.footer-link-list li {
  padding-inline: 30px;
  border-left: 1px solid var(--border-color3);
  line-height: 1;
}

.footer-link-list li:first-child {
  border-left: none;
  padding-left: 0;
}

.footer-link-list a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.2rem;
  white-space: nowrap;
}

.footer-link-list img {
  width: 12px;
  height: auto;
  position: relative;
  top: -1px;
}

.separator-pc {
  display: none !important;
}

.dhg-copyright {
  text-align: center;
  font-size: 1rem;
  color: #666;
}

/* Footer Responsive Settings */
@media (max-width: 1250px) {
  .dhg-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .dhg-inner .dhg-block:nth-child(2) {
    padding-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .alpark-inner,
  .dhg-inner {
    padding-inline: 30px;
  }
  .alpark-inner .alpark-logo {
    margin-right: 30px;
  }
  .alpark-inner .link-list li + li {
    margin-left: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 900px) {
  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .ft-left-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .ft-right-block {
    width: 100%;
    align-items: flex-start;
  }
}

@media (max-width: 767.999px) {
  /* SNS Follow */
  .section-sns-follow {
    padding: 30px 20px;
  }
  .section-sns-follow .inner {
    flex-direction: column;
    gap: 20px;
  }
  .section-sns-follow .label {
    font-size: 1.6rem;
  }
  .section-sns-follow .footer-sns-list li {
    width: 40px;
    height: 40px;
  }

  /* Page Footer General */
  .page-footer {
    padding-bottom: 66px;
  }

  /* Legacy Alpark Area */
  .alpark-area {
    padding: 40px 10px 30px 15px;
  }
  .alpark-inner {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .alpark-inner .alpark-logo {
    width: 100px;
    margin: 0 20px 20px 0;
  }
  .alpark-inner .alpark-text {
    font-size: 1.2rem;
  }
  .alpark-inner .link-list {
    width: 54%;
    margin-left: 0;
  }
  .alpark-inner .link-list li {
    height: 1lh;
    line-height: 1.4;
  }
  .alpark-inner .link-list li + li {
    margin-left: 10px;
    padding-left: 10px;
  }
  .alpark-inner .link-list a {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  /* Legacy DHG Area */
  .dhg-area {
    padding-inline: 15px;
  }
  .dhg-inner {
    flex-direction: column;
    padding-block: 20px;
    align-items: flex-start;
  }
  .dhg-inner .dhg-logo {
    justify-content: flex-start;
    gap: max(5%, 20px);
    margin-bottom: 5px;
    width: max(267px, 100%);
    height: auto;
  }
  .dhg-inner .dhg-logo img:first-child {
    width: max(168px, 55%);
    max-width: 45vw;
  }
  .dhg-inner .dhg-logo img + img {
    width: max(130px, 20%);
    max-width: 30vw;
  }
  .dhg-inner .link-list li + li {
    height: auto;
    margin-left: 10px;
    padding-left: 10px;
  }
  .dhg-inner .link-list a {
    gap: 0.5em;
    font-size: 1.2rem;
  }
  .dhg-inner .link-list img {
    width: 10px;
  }
  .dhg-inner .dhg-block:nth-child(2) {
    height: auto;
    padding-top: 20px;
  }
  .dhg-block .link-list {
    margin-bottom: 20px;
  }

  /* Footer Reborn */
  .footer-reborn-area {
    padding: 40px 15px 80px;
  }
  .footer-top-row {
    margin-bottom: 40px;
    gap: 30px;
  }
  .footer-reborn-area .alpark-logo img {
    width: 120px;
  }
  .footer-reborn-area .alpark-text {
    font-size: 1.2rem;
  }
  .footer-reborn-area .dhg-logo img:first-child {
    width: 28px;
  }
  .footer-reborn-area .dhg-logo img:last-child {
    width: 180px;
  }
  .footer-link-list {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .footer-link-list li {
    padding: 0;
    border-left: none;
    margin-bottom: 15px;
    width: 100%;
    padding-left: 10px;
    border-left: 2px solid var(--accent-color);
    line-height: 1.2;
  }
  .footer-link-list a {
    font-size: 1.3rem;
  }
  .dhg-copyright {
    text-align: left;
    font-size: 0.9rem;
  }
  .footer-link-list li:first-child {
    border-left: 2px solid var(--accent-color);
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .alpark-inner .alpark-logo {
    padding-top: 0.8em;
  }
  .dhg-inner .link-list li + li {
    margin-left: 5px;
    padding-left: 5px;
  }
}