@charset "utf-8";

/**
 * @file
 * メインCSSファイル
 */

/* global */
* {
  scroll-margin-top: var(--size-80);
}

@media (max-width: 768px) {
  * {
    scroll-margin-top: var(--size-40);
  }
}

html {
  position: relative !important;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  height: auto !important;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  height: auto !important;
}
img {
  height: auto;
}

/* component */

.c-skip-link {
  position: absolute;
  top: -200px;
  left: 0;
  background: #FFF;
  color: #000;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s ease-in-out;
}
.c-skip-link:focus {
  top: 10px;
  z-index: 302;
}
.c-bold {
  font-weight: 700;
}
.c-only-pc {
  display: block;
}
.c-only-sp {
  display: none;
}

@media (max-width: 768px) {
  .c-only-pc {
    display: none;
  }
  .c-only-sp {
    display: block;
  }
}

/* button */
.c-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-8);
  background: var(--accent-orange);
  color: #fff;
  min-width: var(--size-400);
  width: fit-content;
  padding: var(--size-30);
  border-radius: var(--size-12);
  transition: opacity 0.3s ease;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button-small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-8);
  background: var(--accent-orange);
  color: #fff;
  padding: var(--size-14);
  font-weight: 700;
  border-radius: var(--size-12);
  letter-spacing: 0.2em;
  transition: opacity 0.3s ease;
  width: 100%;
}
.c-button-small:hover {
  opacity: 0.7;
}
.c-button-small.u-red {
  background: var(--accent-red);
}
.c-button-small.u-blue {
  background: var(--accent-blue);
}
.c-button-small.u-purple {
  background: var(--accent-purple);
}
.c-button-small.u-pink {
  background: #F07191;
}
.c-button-small.u-black {
  background: #000;
}
.c-button-small.u-green {
  background: #64CB61;
}
.c-button-arrow,
.c-button-small-arrow {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .c-button {
    width: 100%;
    min-width: 0;
    padding: var(--size-20);
    font-size: var(--size-14);
    max-width: var(--size-400);
    margin: 0 auto;
  }
  .c-button-small {
    font-size: var(--size-12);
    padding: var(--size-8) var(--size-16);
  }
}

/* text */
/* 見出し/h1 */
.c-h1 {
  font-size: var(--size-18);
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.1em;
}
/* 見出し/h2 */
.c-h2 {
  font-size: var(--size-16);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .c-h2 {
    font-size: var(--size-12);
    letter-spacing: 0.2em;
  }
}
/* 見出し/h2(英字タイトル下) */
.c-h2-en {
  font-size: var(--size-36);
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-h2-en {
    font-size: var(--size-26);
    letter-spacing: 0;
  }
}
/* 見出し/h3 */
.c-h3 {
  font-size: var(--size-16);
  line-height: 1.2;
  font-weight: 700;
}
/* h4 */
.c-h4 {
  font-size: var(--size-14);
  line-height: 1.4;
  font-weight: 700;
}
/* お知らせH1 */
.c-news-h1 {
  font-size: var(--size-28);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2em;
}
/* お知らせH2 */
.c-news-h2 {
  font-size: var(--size-24);
  font-weight: 700;
}
/* その他/込み出し18 10% */
.c-title {
  font-size: var(--size-18);
  font-weight: 700;
  letter-spacing: 0.1em;
}
/* その他/キャッチコピー */
.c-catch-copy {
  font-size: var(--size-48);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
/* 注意書き最小 */
.c-annotation {
  font-size: var(--size-10);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
}
/* その他/本文 */
.c-text {
  font-size: var(--size-14);
  line-height: 1.8;
  font-weight: 500;
}
/* その他/説明文 */
.c-desc {
  font-size: var(--size-12);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1em;
}
/* その他/メニュー・タグ等 14B */
.c-menu-tag {
  font-size: var(--size-14);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.15em;
}
/* その他/ボタン用テキスト 16 20% */
.c-button-text {
  font-size: var(--size-16);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media (max-width: 480px) {
  .c-button-text {
    font-size: var(--size-14);
    letter-spacing: 0.15em;
  }
}
.c-accent {
  color: var(--accent-orange);
}
.c-section-title-group {
  display: flex;
  flex-direction: column;
  gap: var(--size-10);
}
.c-section-title-group.u-white {
  color: #fff;
}
.c-section-title-group.u-has-underline .c-section-title-title {
  position: relative;
  margin-bottom: var(--size-40);
}
.c-section-title-group.u-has-underline .c-section-title-title::after {
  content: "";
  display: block;
  width: var(--size-56);
  height: 4px;
  background: var(--accent-orange);
  margin-top: var(--size-40);
}
.c-section-title-group.u-has-underline.u-white .c-section-title-title::after {
  background: #fff;
}

@media (max-width: 768px) {
  .c-section-title-group {
    gap: var(--size-5);
  }
  .c-section-title-group.u-has-underline .c-section-title-title::after {
    margin-top: var(--size-20);
    width: var(--size-56);
  }
  .c-section-title-group.u-has-underline.u-white .c-section-title-title::after {
    margin-top: var(--size-20);
    width: var(--size-56);
  }
}

/* inner */
.c-outer {
  padding: 0 var(--size-50);
}
.c-inner {
  width: 100%;
  max-width: calc(var(--size-1920) + var(--size-100) * 2);
  margin: 0 auto;
  padding: 0 var(--size-100);
}
.c-inner-narrow {
  width: 100%;
  max-width: var(--size-1380);
  margin: 0 auto;
}
.c-inner-left {
  margin-left: max(0px, calc((100vw - var(--size-1920)) / 2 - var(--size-100)));
  padding-left: var(--size-100);
  max-width: 100%;
}
.c-inner-right {
  margin-right: max(0px, calc((100vw - var(--size-1920)) / 2 - var(--size-100)));
  padding-right: var(--size-100);
  max-width: 100%;
}

@media (max-width: 1240px) {
  .c-inner-left {
    padding-left: var(--size-80);
  }
  .c-inner-right {
    padding-right: var(--size-80);
  }
}

@media (max-width: 768px) {
  .c-outer {
    padding: 0 var(--size-20);
  }
  .c-inner {
    padding: 0 var(--size-20);
  }
  .c-inner-left {
    padding-left: var(--size-20);
  }
  .c-inner-right {
    padding-right: var(--size-20);
  }
}

/* text with contents */
.c-text-with-contents {
  display: flex;
  gap: var(--size-96);
}
.c-text-container {
  width: 100%;
  max-width: var(--size-540);
}
.c-contents-container {
  flex: 1;
}

@media (max-width: 1440px) {
  .c-text-with-contents {
    flex-direction: column;
  }
  .c-text-container {
    max-width: 100%;
  }
}

/* section */
.c-section {
  padding: var(--size-125) 0;
}

@media (max-width: 768px) {
  .c-section {
    padding: var(--size-50) 0;
  }
}

/* bg */
.c-bg-beige {
  background: var(--bg-beige);
}

/* swiper */
.c-swiper-pagination {
  display: flex;
  justify-content: flex-start;
  gap: var(--size-10);
  align-items: center;
  flex-wrap: nowrap;
}
.c-swiper-pagination .swiper-pagination-bullet {
  width: 100%;
  max-width: var(--size-35);
  height: var(--size-2);
  margin: 0!important;
  background: var(--border-gray1);
  border-radius: 0;
  opacity: 1;
  flex: 1;
}
.c-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
.c-swiper-controls {
  display: flex;
  align-items: center;
  gap: var(--size-28);
  max-width: var(--size-450);
}
/* .c-swiper-control__pagination:has(:nth-child(2)) {
  display: flex;
  flex: 1;
  border: solid 1px #D1D1D1;
  border-radius: 100vmax;
  background: #fff;
}
.c-swiper-controls .c-swiper-control__pagination .swiper-pagination-bullet {
  width: var(--size-50);
  height: var(--size-8);
  margin: 0;
  background: #fff;
  border-radius: 0;
  flex: 1;
}
.c-swiper-control__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #BABABA;
  border-radius: 100vmax;
} */
.c-swiper-control__navigation {
  display: flex;
  gap: var(--size-10);
}
.c-swiper-control__prev,
.c-swiper-control__next {
  position: unset;
  width: var(--size-51);
  height: var(--size-51);
  margin-top: 0;
  cursor: pointer;
}
.c-swiper-control__prev[aria-disabled="true"],
.c-swiper-control__next[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}
.c-swiper-control__prev::after,
.c-swiper-control__next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icon-slide-arrow-wh.png) no-repeat center center / contain;
}
.c-swiper-control__next::after {
  transform: scale(-1, 1);
}

@media (max-width: 768px) {
  .c-swiper-control__prev,
  .c-swiper-control__next {
    width: var(--size-40);
    height: var(--size-40);
  }
  .c-swiper-control__navigation {
    gap: var(--size-10);
  }
  .c-swiper-controls {
    gap: var(--size-21);
  }
  .c-swiper-controls .c-swiper-control__pagination .swiper-pagination-bullet {
    height: var(--size-3);
  }
}

/* チェックボックス */
.c-radio,
.c-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.c-radio__icon,
.c-check__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--size-17);
  height: var(--size-17);
  margin-right: var(--size-10);
  top: var(--size-5);
}
.c-radio__icon img,
.c-check__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--size-17);
  height: var(--size-17);
  transition: opacity 0.3s ease;
}
.c-radio__icon-checked,
.c-check__icon-check {
  opacity: 0;
}
.c-check__icon .c-check__icon-check {
  left: 4px;
  top: calc(50% - 1px);
  transform: translateY(-50%);
}
.c-radio:checked ~ .c-radio__icon .c-radio__icon-checked {
  opacity: 1;
}
.c-radio:checked ~ .c-radio__icon .c-radio__icon-default {
  opacity: 0;
}
.c-check:checked ~ .c-check__icon .c-check__icon-check {
  opacity: 1;
}
.c-sidebar__link {
  transition: opacity 0.3s ease;
}
.c-sidebar__link:hover {
  opacity: 0.5;
}

/* メインコンテンツ */
.l-main {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

/* instagram インスタグラム */
.l-instagram-swiper {
  padding-left: var(--size-7);
}
.l-instagram-gallery {
  width: 100%;
}
.l-instagram-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--size-20);
}
.l-instagram-filter {
  width: 100%;
}
.l-instagram-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-18);
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-modal-content {
  display: flex;
  margin: auto;
  color: #fff;
  max-width: var(--size-935);
  max-height: var(--size-828);
  /* height: 70vh; */
  height: 85vh;
  width: 90vw;
  position: relative;
  background: #000;
  border-radius: var(--size-20);
  overflow: hidden;
}
.l-modal-media-date {
  position: relative;
  width: 50%;
  padding: var(--size-15);
}
.l-modal-details {
  width: 50%;
  padding: var(--size-20);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Component */
.c-video-thumb,
.c-image-thumb {
  aspect-ratio: 362 / 627;
  object-fit: cover;
}
.c-instagram-tag-btn {
  display: block;
  padding: var(--size-2) var(--size-20);
  border-radius: 100vmax;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: var(--size-14);
  line-height: 1.4;
  box-shadow: inset 0 0 0 1px var(--border-gray2);
}
.c-instagram-tag-btn:hover {
  background: var(--accent-orange);
  color: #fff;
}
.c-instagram-tag-btn.is-active {
  background: var(--accent-orange);
  color: #fff;
}
.c-instagram-item {
  position: relative;
  cursor: pointer;
  width: var(--size-362);
  margin: var(--size-15) 0;
  border-radius: var(--size-25);
  overflow: hidden;
  border: 1px solid #efefef;
}
.c-instagram-item:last-child {
  margin-right: var(--size-50);
}
.c-item-stats {
  padding: var(--size-15) var(--size-20);
  background: #fff;
  display: flex;
  gap: var(--size-13);
  font-size: var(--size-10);
}
.c-item-stats__like,
.c-item-stats__comments {
  display: inline-flex;
  align-items: center;
  gap: var(--size-8);
}
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: var(--size-40);
  box-sizing: border-box;
}
.c-modal.is-hidden {
  display: none;
}
.c-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 10000;
}
.c-modal-close {
  position: fixed;
  top: var(--size-20);
  right: var(--size-20);
  font-size: var(--size-30);
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  width: var(--size-40);
  height: var(--size-40);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  transition: background-color 0.2s;
  line-height: 1;
}

/* safariとiosだけボタンの位置調整 */
@supports (-webkit-touch-callout: none) {
  .c-modal-close {
    padding-bottom: var(--size-2);
  }
}
.c-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.c-modal-media {
  width: 100%;
  height: 100%;
  max-height: 100%;
  /* object-fit: cover; */
}
.c-modal-date {
  display: block;
  margin-top: var(--size-5);
  font-size: var(--size-12);
  font-weight: 300;
  color: #fff;
}
.c-modal-caption {
  flex: 1;
  display: flex;
  gap: var(--size-30);
  margin-bottom: var(--size-20);
  white-space: pre-line;
  word-break: break-word;
  max-height: 70vh;
  overflow-y: auto;
  padding-bottom: var(--size-20);
  font-size: var(--size-14);
  line-height: 1.4;
}
.c-modal-caption__logo {
  width: var(--size-42);
  height: var(--size-42);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  padding: var(--size-2);
  object-fit: contain;
}
.c-modal-caption__text-name {
  font-weight: 700;
  color: #fff;
}
.c-modal-caption__text {
  flex: 1;
}
.c-modal-stats {
  border-top: var(--size-1) solid #191919;
  margin-bottom: var(--size-28);
  border-bottom: var(--size-1) solid #191919;
  padding-top: var(--size-20);
  padding-bottom: var(--size-20);
}
.c-modal-stats__like,
.c-modal-stats__comments {
  display: inline-flex;
  align-items: center;
  gap: var(--size-5);
}
.c-modal-link {
  display: flex;
  align-items: center;
  gap: var(--size-15);
  font-size: var(--size-14);
  color: #fff;
  text-decoration: none;
  padding: var(--size-14) var(--size-46);
  background: #E81425;
  border-radius: 100vmax;
  text-align: center;
  transition: opacity 0.3s ease;
  width: fit-content;
  margin: 0 auto;
}
.c-modal-link:hover {
  opacity: 0.8;
}
.c-mute-toggle {
  position: absolute;
  bottom: var(--size-20);
  right: var(--size-20);
  width: var(--size-40);
  height: var(--size-40);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background-color 0.2s;
}
.c-mute-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}
.c-mute-toggle__icon {
  width: var(--size-24);
  height: var(--size-24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-20);
}
.c-mute-toggle__icon::before {
  content: "";
  background: url(../img/common/icon-mute.svg) no-repeat center center / contain;
  width: var(--size-24);
  height: var(--size-24);
}
.c-mute-toggle.is-unmuted .c-mute-toggle__icon::before {
  content: "";
  background: url(../img/common/icon-volume.svg) no-repeat center center / contain;
  width: var(--size-24);
  height: var(--size-24);
}
.u-hidden {
  display: none;
}
.p-instagram-gallery__header-text {
  text-align: right;
  font-size: var(--size-16);
  font-weight: 300;
  margin-bottom: var(--size-28);
  margin-right: var(--size-50);
}
.p-instagram-gallery__inner {
  display: flex;
  gap: var(--size-96);
}
.p-instagram-gallery__title {
  width: var(--size-450);
}
.p-instagram-gallery__slider {
  flex: 1;
}
.p-instagram-gallery__controls {
  margin-top: var(--size-50);
  margin-left: auto;
  margin-right: var(--size-50);
  display: flex;
  align-items: center;
  gap: var(--size-20);
}
.p-instagram-gallery__title-text {
  display: flex;
  align-items: center;
  gap: var(--size-16);
  margin-bottom: var(--size-5);
}
.p-instagram-gallery__title-text-span {
  font-size: var(--size-18);
  font-weight: 300;
  line-height: 1.4;
  color: #EB3643;
}
.p-instagram-gallery__title {
  font-size: var(--size-36);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: var(--size-45);
}
.p-instagram-gallery__title-tag {
  font-size: var(--size-17);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: var(--size-30);
}
.modal-next {
  right: calc(50% - var(--size-935) / 2 - var(--size-50));
}
.modal-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/modal-slide-arrow.svg) no-repeat center center / contain;
}
.modal-prev {
  left: calc(50% - var(--size-935) / 2 - var(--size-50));
}
.modal-prev::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/modal-slide-arrow.svg) no-repeat center center / contain;
  transform: scaleX(-1);
}
.p-instagram-gallery__controls-pagination {
  gap: var(--size-5);
}

@media (max-width: 1240px) {
  .p-instagram-gallery__inner {
    gap: var(--size-80);
  }
}

@media (max-width: 1024px) {
  .p-instagram-gallery__inner {
    flex-direction: column;
    gap: var(--size-20);
  }
  .p-instagram-gallery__title {
    margin-bottom: 0;
    padding-bottom: var(--size-16);
  }
  .p-instagram-gallery__title {
    width: 100%;
  }
  .l-instagram-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: var(--size-8);
    padding-bottom: var(--size-16);
    padding-right: var(--size-20);
  }
  .l-instagram-tags li {
    flex: 0 0 auto;
    min-width: 0;
  }
  .c-instagram-tag-btn {
    display: block;
  }
}

@media (max-width: 768px) {
  .l-instagram-gallery {
    padding: var(--size-30) 0 var(--size-70);
  }
  .l-modal-slide {
    border-radius: var(--size-20);
    overflow: hidden;
  }
  .l-modal-content {
    height: 90vh;
    max-height: 90vh;
    width: 90vw;
    overflow-y: auto;
  }
  .l-modal-media-date {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 380 / 500;
  }
  .l-modal-media-date img,
  .l-modal-media-date video {
    width: fit-content;
    margin: 0 auto;
  }
  .c-modal-caption {
    overflow: visible;
    max-height: 100%;
    gap: var(--size-15);
  }
  .l-modal-content {
    flex-direction: column;
    max-height: 85vh;
  }
  .l-modal-media-date {
    padding: 10px;
  }
  .l-modal-media-date img,
  .l-modal-media-date video {
    max-height: 70vh;
  }
  .l-modal-details {
    min-width: 100%;
    max-width: none;
    padding: var(--size-15);
    overflow-y: visible;
  }
  .c-modal {
    padding: 20px;
  }
  .c-mute-toggle {
    bottom: var(--size-15);
    right: var(--size-15);
    width: var(--size-36);
    height: var(--size-36);
  }
  .c-mute-toggle__icon {
    width: var(--size-24);
    height: var(--size-24);
    font-size: var(--size-16);
  }
  .modal-prev {
    left: 0;
    width: var(--size-24);
  }
  .modal-next {
    right: 0;
    width: var(--size-24);
  }
  .c-modal-close {
    width: var(--size-30);
    height: var(--size-30);
    font-size: var(--size-21);
    top: var(--size-15);
    right: var(--size-15);
  }
  .p-instagram-title-read {
    font-size: var(--size-14);
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: var(--size-15);
    padding-right: var(--size-20);
    letter-spacing: 0;
  }
  .p-instagram-title-copy {
    font-size: var(--size-14);
    font-weight: 500;
    margin-bottom: var(--size-10);
    padding-right: var(--size-20);
    letter-spacing: 0;
  }
  .p-instagram-gallery__controls {
    margin: var(--size-15) var(--size-20) 0 0;
  }
  .p-instagram-gallery__inner {
    gap: 0;
  }
  .p-instagram-gallery__title {
    font-size: var(--size-24);
    padding-bottom: var(--size-10);
  }
  .p-instagram-gallery__title-text img {
    width: var(--size-27);
    height: var(--size-27);
  }
  .p-instagram-gallery__title-text-span {
    font-size: var(--size-14);
  }
}

/* HTML: <div class="loader"></div> */
.loader {
  width: var(--size-50);
  --b: var(--size-8); 
  aspect-ratio: 1;
  border-radius: 50%;
  padding: var(--size-1);
  background: conic-gradient(#0000 10%,var(--accent-orange)) content-box;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),
    radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
  animation:l4 1s infinite steps(10);
}
@keyframes l4 {to{transform: rotate(1turn)}}

@media (max-width: 1380px) {
  .c-instagram-item {
    width: var(--size-280);
  }
  .c-video-thumb,
  .c-image-thumb {
    aspect-ratio: 280 / 448;
  }
}

/* header */
.l-header {
  --header-radius: var(--size-20);
  position: fixed;
  top: var(--size-20);
  left: var(--size-20);
  width: calc(100% - var(--size-40));
  height: var(--size-67);
  z-index: 9999;
  background: #fff;
  border-radius: var(--size-20);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#hamburger {
  display: none;
}
.l-hamburger-menu {
  display: none;
}
.l-nav-logo {
  position: relative;
  align-items: center;
  display: flex;
  gap: var(--size-35);
  margin-left: var(--size-64);
}
.l-nav-logo:after {
  content: "";
  display: block;
  width: var(--size-1);
  height: 100%;
  background: var(--border-gray1);
  position: absolute;
  top: 50%;
  left: calc(var(--size-108) + var(--size-10));
  transform: translateY(-50%);
}
.l-nav-logo-link {
  transition: all 0.3s ease;
}
.l-nav-logo-link:hover {
  opacity: 0.5;
}
.l-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-nav-list {
  display: flex;
  align-items: center;
}
.l-nav-button .l-nav-link {
  padding: var(--size-20) var(--size-40);
  display: flex;
  align-items: center;
  gap: var(--size-8);
  color: #fff;
}
.l-nav-button.u-red .l-nav-link {
  background: var(--button-orange);
}
.l-nav-button.u-org .l-nav-link {
  background: var(--accent-orange);
  height: var(--size-67);
}
.l-nav-button.u-black .l-nav-link {
  background: transparent;
  height: var(--size-67);
  border-radius: 0 var(--header-radius) var(--header-radius) 0;
}
.l-nav-button.u-black {
  background: #000;
  border-radius: 0 var(--header-radius) var(--header-radius) 0;
  overflow: hidden;
}
.l-nav-link {
  transition: all 0.3s ease;
}
.l-nav-link img {
  max-height: var(--size-20);
}

.l-nav-link:hover {
  opacity: 0.5;
}
.l-nav-item {
  margin-right: var(--size-27);
}
.l-nav-item:not(:first-child) {
  border-left: 1px solid var(--border-gray1);
  padding-left: var(--size-27);
}
.l-nav-icon {
  margin-right: var(--size-20);
  img {
    width: var(--size-20);
    height: var(--size-20);
  }
}

/* keep dropdown out of layout on non-desktop widths */
.l-nav-dropdown {
  display: none;
}

@media (min-width: 1581px) {
  .l-header {
    overflow: visible;
  }

  .l-nav-button.u-org {
    position: relative;
  }

  .l-nav-button.u-org > .l-nav-link {
    position: relative;
    z-index: 2;
  }

  .l-nav-button.u-org:hover > .l-nav-link {
    opacity: 1;
  }

  .l-nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    z-index: 10000;
  }

  .l-nav-button.u-org:hover > .l-nav-dropdown,
  .l-nav-button.u-org:focus-within > .l-nav-dropdown {
    display: block;
  }

  .l-nav-dropdown-inner {
    display: flex;
    min-width: 420px;
    border: 1px solid var(--accent-orange);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  .l-nav-dropdown-pref-list,
  .l-nav-dropdown-shop-list {
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: #fff;
  }

  .l-nav-dropdown-pref-list {
    width: 38%;
  }

  .l-nav-dropdown-pref-link,
  .l-nav-dropdown-shop-list li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #1f1f1f;
    text-decoration: none;
    white-space: nowrap;
    background: #fff;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .l-nav-dropdown-shop-list {
    width: 62%;
  }

  .l-nav-dropdown-pref-link:hover,
  .l-nav-dropdown-pref-link:focus-visible,
  .l-nav-dropdown-shop-list li a:hover,
  .l-nav-dropdown-shop-list li a:focus-visible {
    color: var(--accent-orange);
  }

  .l-nav-dropdown-pref-list li:first-child .l-nav-dropdown-pref-link {
    border-top-left-radius: 16px;
  }

  .l-nav-dropdown-shop-list li:first-child a {
    border-top-right-radius: 16px;
  }

  .l-nav-dropdown-pref-list li:last-child .l-nav-dropdown-pref-link {
    border-bottom-left-radius: 16px;
  }

  .l-nav-dropdown-shop-list li:last-child a {
    border-bottom-right-radius: 16px;
  }

  .l-nav-dropdown-shop-list li a:hover {
    opacity: 1;
  }
}

@media (min-width: 769px) and (max-width: 1580px) {
  .l-header {
    overflow: visible;
  }

  .l-nav-button.u-org {
    position: relative;
  }

  .l-nav-button.u-org > .l-nav-link {
    position: relative;
    z-index: 2;
  }

  .l-nav-button.u-org:hover > .l-nav-link {
    opacity: 1;
  }

  .l-nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10000;
  }

  .l-nav-button.u-org:hover > .l-nav-dropdown,
  .l-nav-button.u-org:focus-within > .l-nav-dropdown {
    display: block;
  }

  .l-nav-dropdown-inner {
    display: flex;
    min-width: 420px;
    border: 1px solid var(--accent-orange);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  .l-nav-dropdown-pref-list,
  .l-nav-dropdown-shop-list {
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: #fff;
  }

  .l-nav-dropdown-pref-list {
    width: 38%;
  }

  .l-nav-dropdown-shop-list {
    width: 62%;
  }

  .l-nav-dropdown-pref-link,
  .l-nav-dropdown-shop-list li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #1f1f1f;
    text-decoration: none;
    white-space: nowrap;
    background: #fff;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .l-nav-dropdown-pref-link:hover,
  .l-nav-dropdown-pref-link:focus-visible,
  .l-nav-dropdown-shop-list li a:hover,
  .l-nav-dropdown-shop-list li a:focus-visible {
    color: var(--accent-orange);
  }

  .l-nav-dropdown-pref-list li:first-child .l-nav-dropdown-pref-link {
    border-top-left-radius: 16px;
  }

  .l-nav-dropdown-shop-list li:first-child a {
    border-top-right-radius: 16px;
  }

  .l-nav-dropdown-pref-list li:last-child .l-nav-dropdown-pref-link {
    border-bottom-left-radius: 16px;
  }

  .l-nav-dropdown-shop-list li:last-child a {
    border-bottom-right-radius: 16px;
  }

  .l-nav-button.u-black {
    background: #000;
    border-radius: 0 var(--header-radius) var(--header-radius) 0;
    overflow: hidden;
  }

  .l-nav-button.u-black .l-nav-link {
    background: transparent;
    border-radius: 0 var(--header-radius) var(--header-radius) 0;
  }

  .l-nav-item,
  .l-nav-icon {
    display: none;
  }

  #hamburger {
    display: block;
    width: var(--size-20);
    height: var(--size-10);
    margin-right: var(--size-20);
    margin-left: auto;
    position: relative;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .l-nav-hamburger-line {
    width: var(--size-20);
    height: var(--size-1);
    background: #000;
    border-radius: var(--size-1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .l-nav-hamburger-line:first-child {
    top: 0;
  }

  .l-nav-hamburger-line:last-child {
    top: 100%;
  }

  .l-hamburger-menu {
    position: fixed;
    top: var(--size-66);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--size-78));
    background: var(--accent-orange);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: var(--size-120) var(--size-10);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .l-hamburger-menu.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .l-overlay.is-active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-beige);
    z-index: 9998;
  }

  #hamburger.is-active .l-nav-hamburger-line,
  #hamburger .l-nav-hamburger-line {
    transition: all 0.3s;
  }

  #hamburger.is-active .l-nav-hamburger-line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
  }

  #hamburger.is-active .l-nav-hamburger-line:nth-child(2) {
    opacity: 0;
  }

  #hamburger.is-active .l-nav-hamburger-line:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
  }

  .l-hamburger-menu-item {
    margin-bottom: var(--size-30);
    text-align: center;
  }

  .l-hamburger-menu-login {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    margin-bottom: var(--size-30);
    font-size: var(--size-16);
    border: solid 1px #fff;
    padding: var(--size-8) var(--size-24);
    border-radius: var(--size-12);
    gap: var(--size-10);
    font-weight: 700;
  }

  .l-hamburger-menu-button-list {
    display: flex;
    align-items: center;
    border-radius: var(--size-12);
    border: solid 1px #fff;
    overflow: hidden;
    width: 100%;
    height: var(--size-50);
    max-width: var(--size-500);
    margin: 0 auto;
  }

  .l-hamburger-menu-button-item {
    flex: 1;
    text-align: center;
  }

  .l-hamburger-menu-button-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--size-5);
    padding: var(--size-6);
    font-size: var(--size-12);
    font-weight: 700;
  }

  .l-hamburger-menu-button-link:not(:last-child) {
    border-right: 1px solid #fff;
  }

  .l-hamburger-menu-button-link.u-red {
    background: var(--button-orange);
  }

  .l-hamburger-menu-button-link.u-black {
    background: #000;
  }

  .l-hamburger-menu-button-link.u-white {
    background: #fff;
    color: #000;
  }

  .l-hamburger-menu-instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: var(--size-25) auto;
    font-size: var(--size-24);
  }

  .l-hamburger-menu-privacy-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--size-24);
    margin-bottom: var(--size-25);
  }

  .l-footer__info {
    text-align: center;
  }

  .l-footer__info-logo {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .l-footer__info-logo:after {
    display: none;
  }

  .l-footer__info-text {
    text-align: center;
  }

  .l-footer__info-list {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .l-nav-button.u-black {
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .l-nav-button.u-black .l-nav-link {
    background: #000;
    border-radius: 0;
  }

  .l-nav-item,
  .l-nav-icon {
    display: none;
  }

  /* 1580px以下ではハンバーガーメニューを表示 */
  #hamburger {
    display: block;
    width: var(--size-20);
    height: var(--size-10);
    margin-right: var(--size-20);
    margin-left: auto;
    position: relative;
  }

  .l-nav-hamburger-line {
    width: var(--size-20);
    height: var(--size-1);
    background: #000;
    border-radius: var(--size-1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .l-nav-hamburger-line:first-child {
    top: 0;
  }

  .l-nav-hamburger-line:last-child {
    top: 100%;
  }


  .l-hamburger-menu {
    position: fixed;
    top: var(--size-100);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--size-78));
    background: var(--accent-orange);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: var(--size-120) var(--size-10);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .l-hamburger-menu.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .l-hamburger-menu-item {
    margin-bottom: var(--size-30);
    text-align: center;
  }

  .l-overlay.is-active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-beige);
    z-index: 9998;
  }

  #hamburger.is-active .l-nav-hamburger-line,
  #hamburger .l-nav-hamburger-line {
    transition: all 0.3s;
  }

  #hamburger.is-active .l-nav-hamburger-line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
  }

  #hamburger.is-active .l-nav-hamburger-line:nth-child(2) {
    opacity: 0;
  }

  #hamburger.is-active .l-nav-hamburger-line:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
  }

  .l-hamburger-menu-login {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    margin-bottom: var(--size-30);
    font-size: var(--size-16);
    border: solid 1px #fff;
    padding: var(--size-8) var(--size-24);
    border-radius: var(--size-12);
    gap: var(--size-10);
    font-weight: 700;
  }

  .l-hamburger-menu-button-list {
    display: flex;
    align-items: center;
    border-radius: var(--size-12);
    border: solid 1px #fff;
    overflow: hidden;
    width: 100%;
    height: var(--size-50);
    max-width: var(--size-500);
    margin: 0 auto;
  }

  .l-hamburger-menu-button-item {
    flex: 1;
    text-align: center;
  }

  .l-hamburger-menu-button-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--size-5);
    padding: var(--size-6);
    font-size: var(--size-12);
    font-weight: 700;
  }

  .l-hamburger-menu-button-link:not(:last-child) {
    border-right: 1px solid #fff;
  }

  .l-hamburger-menu-button-link.u-red {
    background: var(--button-orange);
  }

  .l-hamburger-menu-button-link.u-black {
    background: #000;
  }

  .l-hamburger-menu-button-link.u-white {
    background: #fff;
    color: #000;
  }

  .l-hamburger-menu-instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: var(--size-25) auto;
    font-size: var(--size-24);
  }

  .l-hamburger-menu-privacy-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--size-24);
    margin-bottom: var(--size-25);
  }
  .l-footer__info {
    text-align: center;
  }
  .l-footer__info-logo {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    &:after {
      display: none !important;
    }
  }
  .l-footer__info-text {
    text-align: center;
  }
  .l-footer__info-list {
    justify-content: center;
  }
  .l-footer__info-logo:after {
    display: none;
  }
}

@media (max-width: 980px) {
  .l-header {
    --header-radius: var(--size-12);
    top: var(--size-10);
    left: var(--size-10);
    width: calc(100% - var(--size-20));
    border-radius: var(--size-12);
    height: auto;
  }
  .l-nav-logo {
    margin-left: var(--size-10);
  }
  .l-nav-logo:after {
    display: none;
  }
  .l-nav-logo-text {
    font-size: var(--size-10);
    font-weight: 500;
  }
  .l-nav-logo-img {
    width: var(--size-91);
    height: var(--size-46);
  }
  #hamburger {
    display: block;
    width: var(--size-20);
    height: var(--size-10);
    margin-right: var(--size-10);
    position: relative;
  }

  /* 980px以下ではメニューを全幅にする */
  .l-hamburger-menu {
    left: auto;
    right: 0;
    width: 100vw;
    padding: var(--size-30) var(--size-10) var(--size-120);
  }
}

.l-hamburger-menu-icon-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-20);
  margin: var(--size-25) auto;
}
.l-hamburger-menu-button-list.is-two-items {
  max-width: var(--size-360);
}
.l-hamburger-menu-button-list.is-two-items .l-hamburger-menu-button-link {
  padding: var(--size-8) var(--size-10);
}
@media (max-width: 768px) {
  .l-nav-button {
    display: none;
  }
  .l-hamburger-menu-button-list.is-two-items {
    max-width: var(--size-340);
  }
}
/* footer */
.l-footer {
  background: var(--accent-orange);
  color: #fff;
  padding: var(--size-40) 0 var(--size-56);
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}
.l-footer__info-logo {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-bottom: var(--size-30);
}
.l-footer__info-logo-img {
  padding-right: var(--size-30);
  border-right: solid 1px #fff;
}
@media (max-width: 1580px) {
  .l-footer__info-logo-img {
    border-right: none;
    padding-right: 0;
  }
}
.l-footer__info-logo-text {
  padding-left: var(--size-30);
}
@media (max-width: 1580px) {
  .l-footer__info-logo-text {
    padding-left: 0;
    margin-top: var(--size-10);
  }
}
.l-footer__info-logo:hover {
  opacity: 0.5;
}
/*.l-footer__info-logo:after {
  content: "";
  display: block;
  width: var(--size-1);
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left:calc(var(--size-108) + var(--size-30));
  transform: translateY(-50%);
}
  */
.l-footer__info-text {
  line-height: 2;
}
.l-footer__info-list {
  display: flex;
  align-items: center;
  gap: var(--size-12);
  line-height: 1;
  padding: var(--size-8) 0;
}
.l-footer__info-list-item:not(:first-child) {
  border-left: 1px solid #fff;
  padding-left: var(--size-12);
}
.l-footer__info-list-item-link {
  transition: all 0.3s ease;
}
.l-footer__info-list-item-link:hover {
  opacity: 0.5;
}
.l-footer__links-list {
  display: flex;
  align-items: center;
  /* border: solid 1px #fff; */
  width: fit-content;
  margin-left: auto;
}
.l-footer__links-list-item-link {
  padding: var(--size-12) var(--size-32);
  display: flex;
  gap: var(--size-8);
  transition: all 0.3s ease;
}
.l-footer__links-list-item:first-child {
  margin: 0 var(--size-30);
}
.l-footer__links-list-item:nth-child(2) {
  margin: 0 var(--size-30) 0 0;
}
@media (max-width: 1024px) {
  .l-footer__links-list .l-footer__links-list-item:first-child,
  .l-footer__links-list .l-footer__links-list-item:nth-child(2) {
    display: none;
  }
  .l-footer__links {
    width: 100%;
  }
  .l-footer__links-list-item:first-child,
  .l-footer__links-list-item:nth-child(2) {
    margin: 0;
  }
}
.l-footer__links-list-item:nth-child(3) {
  border-left: 1px solid #fff;
}
.l-footer__links-list-item:not(:first-child) .l-footer__links-list-item-link {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  height: var(--size-40);
}
.l-footer__links-list-item:nth-child(2) .l-footer__links-list-item-link {
  border: none !important;
}
.l-footer__links-list-item:nth-child(2) .l-footer__links-list-item-link img {
  width: var(--size-20);
  height: var(--size-20);
}
@media (max-width: 1024px) {
  .l-footer__links-list-item:not(:first-child) .l-footer__links-list-item-link {
    height: var(--size-40);
  }
}
@media (max-width: 768px) {
  .l-footer__links-list-item:not(:first-child) .l-footer__links-list-item-link {
    height: var(--size-55);
  }
}
.l-footer__links-list-item-link:hover {
  opacity: 0.5;
}
.l-admission-nav {
  width: 100%;
  max-width: var(--size-500);
  margin: var(--size-20) auto var(--size-24);
}
.l-admission-nav-title {
  font-weight: 700;
  font-size: var(--size-14);
  margin-bottom: var(--size-12);
  text-align: center;
}
.l-admission-nav-toggle {
  display: none;
}
.l-admission-nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--size-8) var(--size-10);
}
.l-admission-nav-list a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: var(--size-12);
  line-height: 1.4;
  padding: var(--size-8) var(--size-10);
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}
.l-admission-nav-list a:hover {
  opacity: 0.75;
}
.l-admission-nav-footer {
  max-width: var(--size-420);
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 1081px) {
  .l-admission-nav-footer .l-admission-nav-title {
    display: none;
  }
  .l-admission-nav-footer .l-admission-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--size-12);
    border: 1px solid #fff;
    padding: var(--size-8) var(--size-12);
    height: var(--size-40);
    font-size: var(--size-11);
    font-weight: 700;
  }
  .l-admission-nav-footer .l-admission-nav-toggle-content {
    display: flex;
    align-items: center;
    gap: var(--size-6);
  }
  .l-admission-nav-footer .l-admission-nav-toggle-content .l-footer__links-list-item-link-icon {
    width: var(--size-14);
    height: var(--size-14);
  }
  .l-admission-nav-footer .l-admission-nav-toggle-icon {
    width: var(--size-10);
    height: var(--size-10);
    position: relative;
    display: block;
  }
  .l-admission-nav-footer .l-admission-nav-toggle-icon::before,
  .l-admission-nav-footer .l-admission-nav-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform 0.2s ease;
  }
  .l-admission-nav-footer .l-admission-nav-toggle-icon::before {
    transform: translate(-50%, -50%);
  }
  .l-admission-nav-footer .l-admission-nav-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .l-admission-nav-footer .l-admission-nav-list {
    display: none;
    margin-top: var(--size-8);
    gap: var(--size-6) var(--size-8);
  }
  .l-admission-nav-footer.is-open .l-admission-nav-list {
    display: grid;
  }
  .l-admission-nav-footer.is-open .l-admission-nav-toggle-icon::before {
    transform: translate(-50%, -50%);
  }
  .l-admission-nav-footer.is-open .l-admission-nav-toggle-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
  }
  .l-admission-nav-footer .l-admission-nav-list a {
    font-size: var(--size-11);
    padding: var(--size-6) var(--size-8);
  }
}
@media (max-width: 1360px) {
  .l-admission-nav-footer {
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer__links-page {
  display: flex;
  align-items: center;
  gap: var(--size-24);
}
.l-footer__links-page.u-sp {
  display: none;
}
.l-footer__links-page-item-link {
  transition: all 0.3s ease;
}
.l-footer__links-page-item-link:hover {
  opacity: 0.5;
}
.l-footer__links-page-item:not(:first-child) {
  border-left: 1px solid #fff;
  padding-left: var(--size-24);
}
/*.l-footer__links-page-item:last-child {
  border-left: none;
  padding-left: 0;
}*/
.l-footer__aside-inner {
  display: flex;
  align-items: flex-start;
}
.l-footer__aside-content {
  position: relative;
  flex: 1;
  min-height: var(--size-440);
  overflow: hidden;
}
.l-footer__aside-content:hover .l-footer__aside-content-image {
  scale: 1.1;
}
.l-footer__aside-content-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  filter: brightness(64%);
  transition: scale 0.3s ease;
}
.l-footer__aside-content-inner-text {
  max-width: calc(var(--size-640) + var(--size-20) * 2);
  padding: var(--size-120) var(--size-20) 0;
  margin: 0 auto;
}
.l-footer__info-list.u-sp {
  display: none;
}

@media (max-width: 1360px) {
  .l-footer__inner {
    flex-direction: column;
  }
  .l-footer__links-list {
    margin: 0 auto;
  }
  .l-footer__links-page,
  .l-footer__info-logo {
    justify-content: center;
  }
  .l-footer__info-logo {
    flex-direction: column;
    align-items: center;
    gap: var(--size-20);
    margin-bottom: var(--size-24);
  }
  .l-footer__info-text {
    text-align: center;
  }
  .l-footer__info-list {
    justify-content: center;
  }
  .l-footer__info-logo:after {
    display: none;
  }
}

@media (max-width: 1080px) {
  .l-footer__info-list.u-pc {
    display: none;
  }
  .l-footer__links-page.u-pc {
    display: none;
  }
  .l-footer__info-list.u-sp {
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer__links-page.u-sp {
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer__links-page-item:last-child {
    border-left: solid 1px #fff;
    padding-left: var(--size-24);
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .l-footer__aside-inner {
    flex-direction: column;
  }
  .l-footer__aside-content {
    min-height: var(--size-375);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .l-footer__aside-content-inner-text {
    padding: 0 var(--size-20);
    margin: 0;
  }
  .l-footer__links-list {
    width: 100%;
  }
  .l-footer__links-list-item {
    flex: 1;
    justify-content: center;
    display: flex;
  }
  .l-footer__links-list-item-link {
    display: flex;
    flex-direction: column;
    gap: var(--size-4);
    padding: var(--size-10);
    font-size: var(--size-12);
    flex: 1;
    justify-content: center;
    align-items: center;
  }
  .l-footer__links-list-item-link-icon {
    width: var(--size-18);
    height: var(--size-18);
  }
  .l-admission-nav-list a {
    font-size: var(--size-11);
    padding: var(--size-8);
  }
  .l-footer__links-page {
    gap: var(--size-10);
  }
  .l-footer__links-page:first-child {
    gap: var(--size-20);
  }
  .l-footer__links-page-item:not(:first-child) {
    padding-left: var(--size-10);
  }
  .l-footer__links-page .l-footer__links-list-item {
    flex: unset;
  }
}

/* --- wave animation start --- */
.maskGrow{
    transform-box: fill-box;
    transform-origin: left center;
    transform: scaleX(0);
    animation: grow-x 1.75s ease-out forwards;
  }
  @keyframes grow-x{ to{ transform: scaleX(1); } }
  @media (prefers-reduced-motion: reduce){
    .maskGrow{ animation:none; transform:scaleX(1); }
  }
/* --- wave animation end --- */

/* mv */
.l-mv {
  background: var(--bg-beige);
}
.p-mv__inner {
  position: relative;
  display: flex;
  padding-bottom: var(--size-40);
}
.mv-content_bg {
  content: "";
  display: block;
  width: var(--size-275);
  height: var(--size-325);
  background: var(--bg-beige);
  position: absolute;
  bottom: var(--size-40);
  left: var(--size-740);
  border-radius: 0 var(--size-24) 0 0;
}
.mv-content_bg::after {
  content: "";
  display: block;
  width: var(--size-24);
  height: var(--size-24);
  background: url(../img/common/mv-content-bg-symbol-removebg.png) no-repeat center center / contain;
  position: absolute;
  bottom: 100%;
  left: 0;
}
.mv-content_bg::before {
  content: "";
  display: block;
  width: var(--size-24);
  height: var(--size-24);
  background: url(../img/common/mv-content-bg-symbol-removebg.png) no-repeat center center / contain;
  position: absolute;
  bottom: 0;
  left: 100%;
}
.p-mv__content {
  width: var(--size-740);
  padding: var(--size-160) 0 var(--size-40);
  position: relative;
  z-index: 2;
}
.p-mv__content-inner {
  padding: 0 var(--size-100);
}
.p-mv__swiper {
  flex: 1;
  position: relative;
  z-index: 0;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.p-mv__swiper .swiper-wrapper {
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.p-mv__swiper .swiper-slide {
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.p-mv__swiper-pagination {
  position: absolute;
  bottom: var(--size-30)!important;
  right: var(--size-25)!important;
  left: unset!important;
  top: unset!important;
  width: fit-content!important;
  z-index: 1;
}
.p-mv__content-title {
  text-decoration: underline;
  text-underline-offset: var(--size-10);
  text-decoration-thickness: var(--size-1);
  text-decoration-color: var(--accent-orange);
}
.p-mv__symbol {
  width: 100vw;
  position: absolute;
  bottom: var(--size-60);
  left: 0;
  z-index: 1;
}
.p-mv__slide-image {
  height: 100%;
}
.p-mv__slide-image-img {
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}
.is-safari .p-mv__slide-image-img {
  max-height: 100vh !important;
}
.p-mv__swiper-wrapper.swiper-wrapper {
  height: 100%;
}
.p-mv__content-news {
  position: relative;
  padding: 0 var(--size-100);
  margin-right: calc(var(--size-175) * -1);
}
.p-mv__content-news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-mv__content-news-link {
  display: flex;
  align-items: center;
  gap: var(--size-5);
  transition: all 0.3s ease;
}
.p-mv__content-news-link:hover {
  opacity: 0.5;
}
.p-mv__content-news-items {
  display: flex;
  flex-direction: column;
  gap: var(--size-24);
  padding: var(--size-36) var(--size-50);
  background: #fff;
  border-radius: var(--size-12);
}
.p-mv__content-news-item-link {
  display: flex;
  align-items: center;
  gap: var(--size-40);
  transition: all 0.3s ease;
}
.p-mv__content-news-item-link:hover {
  opacity: 0.5;
}
.p-mv__content-news-item-title {
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.p-mv__content-text-br {
  display: none;
}

@media (max-width: 1024px) {
  .p-mv__inner {
    flex-direction: column;
  }
  .mv-content_bg {
    display: none;
  }
  .p-mv__content {
    width: 100%;
    order: 1;
    padding: var(--size-20) var(--size-10) 0;
  }
  .p-mv__content-inner {
    padding: 0 var(--size-10);
  }
  .p-mv__swiper {
    width: 100%;
    padding: 0 var(--size-10);
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }
  
  .p-mv__swiper .swiper-wrapper {
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }
  
  .p-mv__swiper .swiper-slide {
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .p-mv__content-news {
    margin-right: 0;
  }
  .p-mv__swiper-pagination {
    position: unset;
    justify-content: center;
    margin: var(--size-20) auto 0;
    width: 100%!important;
  }
  .p-mv__content-read {
    width: fit-content;
    margin: 0 auto;
  }
  .p-mv__content-title {
    width: fit-content;
    margin: 0 auto;
  }
  .p-mv__content-text-br {
    display: block;
  }
  .p-mv__content-text {
    width: fit-content;
    margin: 0 auto;
  }
  .p-mv__content-news {
    padding: 0 var(--size-10);
  }
}

@media (max-width: 768px) {
  .l-mv {
    padding-top: var(--size-66);
  }
  .p-mv__slide-image {
    border-radius: var(--size-24);
    overflow: hidden;
  }
  .p-mv__content-read {
    font-size: var(--size-10);
    font-weight: 500;
  }
  .p-mv__content-title {
    font-size: var(--size-32);
  }
  .p-mv__content-news-link.c-only-sp {
    display: none;
  }
  .p-mv__content-news-items {
    padding: var(--size-15);
    gap: var(--size-20);
  }
  .p-mv__content-news-item-link {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size-14);
  }
  .p-mv__content-news-item-date {
    font-size: var(--size-12);
  }
  .p-mv__content-news-item-title {
    font-size: var(--size-14);
    width: 100%;
  }
  .p-mv__slide-image-img {
    aspect-ratio: 355 / 260;
    height: auto;
  }
}
@media (max-width: 499px) {
  .p-mv__content-title {
    width: 100%;
  }
  .p-mv__content-text-br {
    display: none;
  }
  .p-mv__symbol {
    min-width: var(--size-600);
    bottom: var(--size-320);
  }
}

/* instagram */
.p-instagram-gallery__account-link {
  display: flex;
  align-items: center;
  gap: var(--size-16);
  transition: all 0.3s ease;
}
.p-instagram-gallery__account-link:hover {
  opacity: 0.5;
}
.p-instagram-gallery__account-text-icon {
  width: var(--size-48);
  height: var(--size-48);
}
.p-instagram-gallery__account-text-text {
  color: var(--link);
}

@media (max-width: 768px) {
  .p-instagram-gallery__account-text-icon {
    width: var(--size-30);
    height: var(--size-30);
  }

}

/* whats */
.p-whats__inner-contents-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--size-24);
  row-gap: var(--size-40);
}
.p-whats__inner-contents-list-item {
  width: calc(33.333% - var(--size-24) * 2 / 3);
}
.p-whats__inner-contents-list-item-image {
  width: 100%;
  object-fit: cover;
}
.p-whats__inner-contents-list-item-title {
  margin-top: var(--size-12);
}

@media (max-width: 1440px) {
  .p-whats__inner-contents-list-item {
    width: calc(50% - var(--size-24) / 2);
  }
}

@media (max-width: 768px) {
  .p-whats__inner-contents-list {
    flex-wrap: nowrap;
    gap: 0;
  }
}

/* location */
.p-location__inner-contents-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-12);
}
.p-location__inner-contents-list-item {
  width: calc(50% - var(--size-12) / 2);
}
.p-location__inner-contents-list-item-text {
  margin-top: var(--size-8);
}
.p-location__container-contents-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-16);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: relative;
  transform: translateY(var(--size-20));
  height: 0;
}
.p-location__container-contents-list.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: auto;
}
.p-location__container-contents-list-item-image {
  width: 100%;
  object-fit: cover;
}
.p-location__container-contents-list-item-title {
  margin-top: var(--size-8);
}
.p-location__container-contents-list-item {
  position: relative;
}
.u-ss .p-location__container-contents-list-item-link:before {
  content: "SPA & SPORTS";
  display: block;
  background: var(--accent-red);
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--size-8) var(--size-20);
  color: #fff;
  font-size: var(--size-12);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.u-ys .p-location__container-contents-list-item-link:before {
  content: "YOUR SPORTS";
  display: block;
  background: var(--accent-blue);
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--size-8) var(--size-20);
  color: #fff;
  font-size: var(--size-12);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.u-bf .p-location__container-contents-list-item-link:before {
  content: "BEAUTY & FITNESS";
  display: block;
  background: var(--accent-purple);
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--size-8) var(--size-20);
  color: #fff;
  font-size: var(--size-12);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.u-yg .p-location__container-contents-list-item-link:before {
  content: "YOUR GYM 24";
  display: block;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--size-8) var(--size-20);
  color: #fff;
  font-size: var(--size-12);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-location__container-contents-list-item {
  width: calc(33.333% - var(--size-16) * 2 / 3);
}
.p-location__container-contents-list-item-link {
  transition: opacity 0.3s ease;
}
.p-location__container-contents-list-item-link:hover {
  opacity: 0.5;
}

@media (max-width: 1440px) {
  .p-location__container-contents-list-item {
    width: calc(50% - var(--size-16) / 2);
  }
}

@media (max-width: 768px) {
  .p-location__container-contents-list-sp {
    opacity: 0;
    visibility: hidden;
    transform: translateY(var(--size-20));
    height: 0;
    transition: all 0.3s ease;
  }
  .p-location__container-contents-list-sp.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: auto;
  }
}

/* location list */
.l-location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-30);
}

@media (max-width: 1080px) {
  .l-location-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .l-location-list {
    gap: var(--size-20);
  }
}

.l-location-list__item {
  background-color: transparent;
  transition: transform 0.3s ease;
}

.l-location-list__item:hover {
  transform: translateY(-4px);
}

.l-location-list__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.l-location-list__image {
  width: 100%;
  aspect-ratio: 346/186;
  overflow: hidden;
  position: relative;
}

.l-location-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.l-location-list__term-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-8);
  z-index: 1;
}

.l-location-list__term-overlay-item {
  font-size: var(--size-12);
  font-weight: 700;
  color: #fff;
  padding: var(--size-4) var(--size-12);
  background-color: rgba(0, 0, 0, 0.6);
}

.l-location-list__term-overlay-item--spa-sports {
  background-color: #DD080C;
}

.l-location-list__term-overlay-item--your-sports {
  background-color: #085DDD;
}

.l-location-list__term-overlay-item--beauty-fitness {
  background-color: #F07191;
}

.l-location-list__term-overlay-item--your-gym-24 {
  background-color: #64CB61;
}

.l-location-list__title {
  font-size: var(--size-16);
  font-weight: 700;
  color: #000;
  margin: var(--size-10) 0 0;
  line-height: 1.5;
  background-color: transparent;
}

.l-location-list__no-posts {
  text-align: center;
  padding: var(--size-40);
  color: #666;
}

/* swiper用のスタイル */
.p-location__container-contents-list-sp-swiper-front {
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  overflow: visible;
}

.p-location__container-contents-list-sp-swiper-front .swiper-wrapper {
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.p-location__container-contents-list-sp-swiper-front .swiper-slide {
  width: 100%;
  height: auto;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.p-location__container-contents-list-sp-swiper-front .l-location-list {
  display: flex;
  grid-template-columns: none;
  gap: 0;
}

.p-location__container-contents-list-sp-swiper-front .l-location-list__item {
  width: 100%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .p-location__container-contents-list-sp-swiper-front {
    touch-action: pan-y pinch-zoom;
    overflow: visible;
  }
  
  .p-location__container-contents-list-sp-swiper-front .swiper-wrapper {
    touch-action: pan-x pan-y;
  }
  
  .p-location__container-contents-list-sp-swiper-front .swiper-slide {
    touch-action: pan-x pan-y;
  }
  
  /* ページ全体のスクロールを確実に有効化 */
  html, body {
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y pinch-zoom !important;
    height: auto !important;
  }
  
  /* MVスライダーがスクロールをブロックしないように */
  .l-mv {
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }
  
  .p-mv__swiper {
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }
  
  .p-mv__swiper .swiper-wrapper {
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }
  
  .p-mv__swiper .swiper-slide {
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }
}
.p-mv__content-news-link-arrow {
  width: 1em;
  aspect-ratio: 1/1;
}

.l-floating-login {
  position: fixed;
  right: 0;
  top: 350px;
  z-index: 1000;
  background-color: var(--accent-orange);
  padding: var(--size-32);
  text-decoration: none;
  color: #fff;
  font-size: var(--size-16);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--size-16);
  border-top-left-radius: var(--size-12);
  border-bottom-left-radius: var(--size-12);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-floating-login:hover {
  opacity: 0.8;
}
.l-floating-login__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-floating-login__icon img {
  display: block;
}
.l-floating-login__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  display: block;
  letter-spacing: 0.5em;
}

@media (max-width: 480px) {
  .l-floating-login {
    top: auto;
    right: unset;
    bottom: 0;
    width: 100%;
    height: var(--size-51);
    border-radius: 0;
    padding: 0;
    font-weight: bold;
    flex-direction: row;
    justify-content: center;
  }
  .l-floating-login__text {
    writing-mode: unset;
    text-orientation: unset;
    letter-spacing: 0.1em;
  }
}
.l-floating-login-group {
  position: fixed;
  right: 0;
  top: 165px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--size-10, 10px);
}
.l-floating-login-group .l-floating-login {
  position: static;
  top: auto;
  right: auto;
}
.l-floating-login--beginer {
  background-color: #FFA012;
}
.l-floating-login--trial {
  background-color: var(--accent-orange);
}
@media (max-width: 768px) {
  .l-floating-login-group {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .l-floating-login-group .l-floating-login {
    width: 50%;
    height: var(--size-51, 51px);
    border-radius: 0;
    padding: 0 var(--size-15);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--size-10);
  }
  .l-floating-login-group .l-floating-login__text {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    text-orientation: unset;
  }
}

.l-hamburger-menu-login-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: var(--size-10);
  width: 100%;
  max-width: var(--size-500);
  margin: 0 auto var(--size-30);
}
.l-hamburger-menu-login-group .l-hamburger-menu-login {
  margin: 0;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0;
          flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--size-10);
  white-space: nowrap;
}
.l-hamburger-menu-login-group .l-hamburger-menu-login img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sns-icon {
  width: var(--size-20);
  height: var(--size-20);
}
@media (max-width: 768px) {
  .sns-icon {
    width: var(--size-40);
    height: var(--size-40);
  }
}

.u-pt60 {
  padding-top: var(--size-60);
}
@media (max-width: 768px) {
  .u-pt30-sm {
    padding-top: var(--size-30);
  }
}