@charset "UTF-8";
/* ----------------------------------------
  初期設定
---------------------------------------- */
/* ---------------------------
  フォント
--------------------------- */
/* 日本語フォント */
/* 英字フォント */
.en {
  font-family: "Playfair Display", serif;
}

/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  レスポンシブ
--------------------------- */
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none !important;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}

.is-fixed {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------
  共通設定
---------------------------------------- */
html {
  font-size: 62.5%;
  overflow-x: clip;
}

body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1.6rem;
  background: #131313;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.04em;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
ol,
th,
td {
  padding: 0;
  margin: 0;
  font-size: initial;
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-out;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ----------------------------------------
  コンポーネント
---------------------------------------- */
/* ---------------------------
  セクションタイトル
--------------------------- */
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 16rem;
  line-height: 0.8125;
  letter-spacing: -0.025em;
  padding-left: 60px;
}
@media screen and (max-width: 1400px) {
  .section-title {
    font-size: 11.4285714286vw;
    padding-left: 4.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 20.5128205128vw;
    line-height: 0.8125;
    padding-left: 5.1282051282vw;
    margin-bottom: 2.5641025641vw;
  }
}

/* ---------------------------
  ボタン
--------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  border: 1px solid #c8102e;
  border-radius: 999px;
  padding: 1.6rem 3rem 1.6rem 8rem;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  /* スライドする背景をクリップ */
  text-decoration: none;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  color: #c8102e;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.3333333333;
  letter-spacing: 0.04em;
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 1400px) {
  .btn {
    gap: 3.5714285714vw;
    padding: 1.1428571429vw 2.1428571429vw 1.1428571429vw 5.7142857143vw;
    font-size: 1.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 3.5897435897vw;
    line-height: 0.7142857143;
    padding: 5.8974358974vw 7.6923076923vw 5.8974358974vw 20.5128205128vw;
    gap: 14.358974359vw;
  }
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #c8102e;
  /* 初期状態: 左外に隠す */
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.btn:hover {
  color: #ffffff;
  opacity: 1;
}
.btn:hover::before {
  transform: translateX(0);
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn .arrow {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .btn .arrow {
    font-size: 1.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .btn .arrow {
    font-size: 3.5897435897vw;
  }
}
.btn .arrow:hover {
  transform: translateX(5px);
}
.btn__wrapper {
  display: flex;
}
.btn__wrapper.center {
  justify-content: center;
}
.btn__wrapper.right {
  justify-content: flex-end;
}

/* ---------------------------
  ハンバーガー・SPナビ (PC非表示)
--------------------------- */
.hamburger {
  display: none;
}

.sp-nav {
  display: none;
}

/* ---------------------------
  ヘッダー
--------------------------- */
.header__ttl a {
  position: absolute;
  top: 31.64px;
  left: 80px;
  z-index: 100;
  width: 366.54px;
  height: 45.36px;
  text-decoration: none;
  transition: filter 0.6s ease, opacity 0.6s ease;
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .header__ttl a {
    top: 2.26vw;
    left: 5.7142857143vw;
    width: 26.1814285714vw;
    height: 3.24vw;
  }
}
@media screen and (max-width: 768px) {
  .header__ttl a {
    top: 6.1538461538vw;
    left: 5.1282051282vw;
    width: 69.2307692308vw;
    height: auto;
    z-index: 300;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 6.4rem;
  height: 100vh;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 6rem;
  gap: 2.8rem;
  background: #141414;
}
@media screen and (max-width: 1400px) {
  .header__nav {
    width: 4.5714285714vw;
    padding-top: 4.2857142857vw;
    gap: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: "Amiri", serif;
  transition: color 0.3s;
  padding: 1rem 0;
}
@media screen and (max-width: 1400px) {
  .header__menu {
    font-size: 1.1428571429vw;
    padding: 0.7142857143vw 0;
  }
}
.header__menu:hover, .header__menu.is-active {
  color: #ffffff;
  opacity: 1;
}

/* ---------------------------
  ブランド背景テキスト
--------------------------- */
.brand-bg-text {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  padding-right: 6.4rem;
}
@media screen and (max-width: 1400px) {
  .brand-bg-text {
    padding-right: 4.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .brand-bg-text {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 79.4871794872vw;
    padding-right: 0;
  }
}
.brand-bg-text img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---------------------------
  メインビジュアル
--------------------------- */
.mv {
  height: 100vh;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    max-height: 100vh;
    aspect-ratio: 2/3;
  }
}
.mv__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/kv.jpg) no-repeat center center/cover;
  z-index: 1;
}
.mv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .mv__video {
    height: auto;
    max-height: 100vh;
    aspect-ratio: 2/3;
  }
}
.mv__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7.2rem 2rem;
}
@media screen and (max-width: 1400px) {
  .mv__content {
    padding: 0 5.1428571429vw 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__content {
    justify-content: center;
    padding: 0 5.1282051282vw;
  }
}
.mv__title {
  display: block;
}
.mv__title-img {
  width: 594.77px;
  height: 275.1px;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1400px) {
  .mv__title-img {
    width: 42.4835714286vw;
    height: 19.65vw;
    margin-bottom: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__title-img {
    width: 82.0512820513vw;
    height: auto;
    margin-bottom: 10.2564102564vw;
  }
}
.mv__catch {
  font-size: 6.2rem;
  font-weight: 400;
  line-height: 0.7741935484;
  letter-spacing: 0.04em;
  padding-bottom: 5rem;
}
@media screen and (max-width: 1400px) {
  .mv__catch {
    font-size: 4.4285714286vw;
    padding-bottom: 3.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__catch {
    font-size: 9.4871794872vw;
    line-height: 0.7837837838;
    padding-bottom: 7.6923076923vw;
  }
}
.mv__sub {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 1400px) {
  .mv__sub {
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__sub {
    font-size: 4.1025641026vw;
    line-height: 1.25;
  }
}
.mv {
  /* scroll down */
}
.mv__scroll {
  position: absolute;
  bottom: 4rem;
  right: 12rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 1400px) {
  .mv__scroll {
    bottom: 2.8571428571vw;
    gap: 3.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__scroll {
    bottom: 10.2564102564vw;
    gap: 4.1025641026vw;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}
.mv__scrolldown {
  width: 101.2px;
  height: 14.36px;
}
@media screen and (max-width: 1400px) {
  .mv__scrolldown {
    width: 7.2285714286vw;
    height: 1.0257142857vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__scrolldown {
    width: 20.5128205128vw;
    height: auto;
  }
}
.mv__chevron {
  width: 19.68px;
  height: 18.75px;
  animation: bounce 1.8s ease-in-out infinite;
}
@media screen and (max-width: 1400px) {
  .mv__chevron {
    width: 1.4057142857vw;
    height: 1.3392857143vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__chevron {
    width: 4.1025641026vw;
    height: auto;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ---------------------------
  MVオーバーレイ
--------------------------- */
.mv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* ---------------------------
  about
--------------------------- */
.about {
  position: relative;
  z-index: 2;
  background-color: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(8px);
  min-height: 100vh;
  padding-top: 9rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .about {
    padding-top: 6.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .about {
    min-height: auto;
    padding-top: 25.641025641vw;
  }
}
.about__container {
  display: flex;
  position: relative;
  height: 100rem;
}
@media screen and (max-width: 1400px) {
  .about__container {
    height: 71.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .about__container {
    flex-direction: column;
    height: auto;
    padding-top: 12.8205128205vw;
  }
}
.about__left {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 10.5rem 3rem 0 0;
}
@media screen and (max-width: 1400px) {
  .about__left {
    padding: 7.5vw 2.1428571429vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .about__left {
    width: 100%;
    padding: 0 5.1282051282vw 5.1282051282vw 0;
  }
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 4rem;
}
@media screen and (max-width: 1400px) {
  .about__text {
    padding: 0 0 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .about__text {
    padding: 0 0 10.7692307692vw;
    font-size: 4.8717948718vw;
  }
}
.about__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 47.8448275862%;
  height: 100rem;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .about__right {
    height: 71.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .about__right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    overflow: visible;
  }
}
.about__right-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 88.8rem;
  height: 100rem;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .about__right-img {
    width: 63.4285714286vw;
    height: 71.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .about__right-img {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .about__right-img img {
    width: 100%;
    height: auto;
    -o-object-fit: initial;
       object-fit: initial;
  }
}
.about__space {
  height: 53rem;
}
@media screen and (max-width: 1400px) {
  .about__space {
    height: 37.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .about__space {
    height: 135.8974358974vw;
  }
}
@media screen and (max-width: 768px) {
  .about__btn-sp {
    padding: 15.3846153846vw 5.1282051282vw;
  }
}

/* ---------------------------
  スライドインテキスト
--------------------------- */
.slide-line {
  display: inline-block;
}
.slide-line:nth-child(1) {
  --slide-delay: 0s;
}
.slide-line:nth-child(2) {
  --slide-delay: 0.1s;
}
.slide-line:nth-child(3) {
  --slide-delay: 0.2s;
}
.slide-line:nth-child(4) {
  --slide-delay: 0.3s;
}
.slide-line:nth-child(5) {
  --slide-delay: 0.4s;
}
.slide-line:nth-child(6) {
  --slide-delay: 0.5s;
}
.slide-line:nth-child(7) {
  --slide-delay: 0.6s;
}
.slide-line:nth-child(8) {
  --slide-delay: 0.7s;
}
.slide-line.is-visible span {
  animation: clip-to-right 1s cubic-bezier(0.81, 0.1, 0.2, 0.97) forwards;
  animation-delay: var(--slide-delay, 0s);
}

/* inner span: red bg + white text */
.slide-line span {
  display: inline-block;
  background: #c8102e;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1rem 2rem 1rem 6rem;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-20px);
}
@media screen and (max-width: 1400px) {
  .slide-line span {
    font-size: 2.2857142857vw;
    padding: 0.7142857143vw 1.4285714286vw 0.7142857143vw 4.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .slide-line span {
    font-size: 4.358974359vw;
    padding: 2.5641025641vw 6.6666666667vw;
    white-space: normal;
  }
}

@keyframes clip-to-right {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateX(-20px);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}
/* ---------------------------
  service
--------------------------- */
.service {
  position: relative;
  z-index: 2;
  padding: 7rem 0 2rem;
  width: 100%;
  background: #141414;
}
@media screen and (max-width: 1400px) {
  .service {
    padding: 5vw 0 10vw;
  }
}
.service__inner {
  padding: 0 10.4rem 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .service__inner {
    padding: 0 7.4285714286vw 0 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding: 0 5.1282051282vw;
  }
}
.service__heading {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #141414;
  padding: 1rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .service__heading {
    padding: 0.7142857143vw 1.4285714286vw;
    gap: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .service__heading {
    align-items: flex-start;
    flex-direction: column;
    top: 0;
    padding: 15.3846153846vw 5.1282051282vw 0;
    gap: 5.8974358974vw;
  }
}
.service__title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1;
  font-size: 8rem;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1400px) {
  .service__title {
    font-size: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .service__title {
    font-size: 20.5128205128vw;
    line-height: 0.8125;
    margin-bottom: 2.5641025641vw;
  }
}
.service__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (max-width: 1400px) {
  .service__lead {
    font-size: 1.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .service__lead {
    font-size: 3.7435897436vw;
    line-height: 1.75;
    white-space: nowrap;
  }
}
.service__cards {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 6rem;
  max-width: 160rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .service__cards {
    padding-top: 4.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .service__cards {
    padding: 9.4871794872vw 5.1282051282vw 0;
  }
}
.service__card-sticky {
  position: sticky;
  top: 12rem;
  width: 100%;
  height: 68rem;
  margin-bottom: 16rem;
}
@media screen and (max-width: 1400px) {
  .service__card-sticky {
    top: 8.5714285714vw;
    height: 48.5714285714vw;
    margin-bottom: 11.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .service__card-sticky {
    height: 128.2051282051vw;
    top: 64.1025641026vw;
    margin-bottom: 25.641025641vw;
  }
}
.service__card-sticky:nth-child(1) {
  z-index: 1;
}
.service__card-sticky:nth-child(1) .service__card {
  background: url(../img/top/service-1_bg.jpg) no-repeat center center/cover;
}
.service__card-sticky:nth-child(2) {
  z-index: 2;
}
.service__card-sticky:nth-child(2) .service__card {
  background: url(../img/top/service-2_bg.jpg) no-repeat center center/cover;
}
.service__card-sticky:nth-child(3) {
  z-index: 3;
}
.service__card-sticky:nth-child(3) .service__card {
  background: url(../img/top/service-3_bg.jpg) no-repeat center center/cover;
}
.service__card-sticky:nth-child(4) {
  z-index: 4;
}
.service__card-sticky:nth-child(4) .service__card {
  background: url(../img/top/service-4_bg.jpg) no-repeat center center/cover;
}
.service__card {
  position: relative;
  width: 100%;
  height: 68rem;
  border-radius: 20px;
  border: 1px solid #ffffff;
  padding: 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1400px) {
  .service__card {
    height: 48.5714285714vw;
    padding: 2.8571428571vw;
    gap: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .service__card {
    height: 112.8205128205vw;
    padding: 7.6282051282vw 7.9487179487vw 4.6153846154vw;
    justify-content: flex-start;
    gap: 4.1025641026vw;
  }
}
.service__card-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 20px;
  gap: 8px;
}
@media screen and (max-width: 1400px) {
  .service__card-number {
    margin-bottom: 1.4285714286vw;
    gap: 0.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  .service__card-number {
    gap: 3.0769230769vw;
  }
}
.service__card-number .en {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  line-height: 1.3333333333;
  font-weight: 400;
}
@media screen and (max-width: 1400px) {
  .service__card-number .en {
    font-size: 2.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .service__card-number .en {
    font-size: 7.1794871795vw;
    line-height: 0.9444444444;
  }
}
.service__card-number .no {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1.3333333333;
}
@media screen and (max-width: 1400px) {
  .service__card-number .no {
    font-size: 3.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .service__card-number .no {
    font-size: 12.3076923077vw;
    line-height: 0.7083333333;
  }
}
.service__card-icon {
  width: 10rem;
  height: 10rem;
  padding: 2rem;
}
@media screen and (max-width: 1400px) {
  .service__card-icon {
    width: 7.1428571429vw;
    height: 7.1428571429vw;
    padding: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .service__card-icon {
    width: 25.641025641vw;
    height: 25.641025641vw;
    padding: 5.1282051282vw;
  }
}
.service__card-title {
  font-weight: 400;
  color: #000000;
  font-size: 4rem;
  line-height: 0.775;
  padding: 1.2rem 2rem;
  background: #ffffff;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .service__card-title {
    font-size: 2.8571428571vw;
    padding: 0.8571428571vw 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .service__card-title {
    font-size: 5.3846153846vw;
    padding: 3.0769230769vw 2.5641025641vw;
    line-height: 1.1;
  }
}
.service__card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
.service__card-desc > span {
  display: inline-block;
}
@media screen and (max-width: 1400px) {
  .service__card-desc {
    font-size: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .service__card-desc {
    text-align: center;
    font-size: 3.5897435897vw;
    width: 100%;
  }
}

/* ---------------------------
  labels
--------------------------- */
.labels {
  position: relative;
  z-index: 2;
  background: #1a1a1a;
  padding: 6rem 0 8rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .labels {
    padding: 4.2857142857vw 0 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .labels {
    padding: 15.3846153846vw 0;
  }
}
.labels__inner {
  padding: 0 6.4rem 0 0;
}
@media screen and (max-width: 1400px) {
  .labels__inner {
    padding: 0 4.5714285714vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .labels__inner {
    padding: 0 5.1282051282vw;
  }
}
.labels__wrapper {
  padding: 6rem 0;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1400px) {
  .labels__wrapper {
    padding: 4.2857142857vw 0;
  }
}
@media screen and (max-width: 768px) {
  .labels__wrapper {
    flex-direction: column;
  }
}
.labels__left {
  position: sticky;
  top: 12rem;
  display: flex;
  flex-direction: column;
  padding: 4rem 6rem 0;
  width: 40.4094827586%;
  flex-shrink: 0;
  align-self: flex-start;
}
@media screen and (max-width: 1400px) {
  .labels__left {
    width: 48.6918604651%;
    top: 8.5714285714vw;
    padding: 2.8571428571vw 4.2857142857vw 0;
  }
}
@media screen and (max-width: 768px) {
  .labels__left {
    width: 100%;
    padding: 0 5.1282051282vw;
    position: inherit;
  }
}
.labels__left .section-title {
  padding-left: 0;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1400px) {
  .labels__left .section-title {
    margin-bottom: 5.7142857143vw;
  }
}
.labels__text {
  margin-bottom: 5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.3333333333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1400px) {
  .labels__text {
    margin-bottom: 3.5714285714vw;
    font-size: 1.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__text {
    font-size: 4.1025641026vw;
    line-height: 1.75;
    margin-bottom: 0;
  }
}
.labels__right {
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: calc(1856px - 37.1767241379%);
}
@media screen and (max-width: 1400px) {
  .labels__right {
    padding: 0 2.8571428571vw;
    gap: 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__right {
    padding: 11.7948717949vw 0 10.2564102564vw;
    width: 100%;
    gap: 10.2564102564vw;
  }
}
.labels__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 30rem;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: 1px solid #373737;
}
@media screen and (max-width: 1400px) {
  .labels__card {
    height: 21.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__card {
    height: auto;
  }
}
.labels__card:hover .labels__card-arrow-img {
  transform: translateX(5px);
}
.labels__card:hover .labels__card-bg {
  transform: scale(1.05);
}
.labels__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.labels__card01 .labels__card-bg {
  background: url(../img/top/labels-1_bg.webp) no-repeat center right/cover;
}
.labels__card01 .labels__card-content {
  color: #000000;
}
.labels__card01 .labels__card-name .en {
  color: #BA9146;
}
.labels__card02 .labels__card-bg {
  background: url(../img/top/labels-2_bg.jpg) no-repeat center center/cover;
}
.labels__card03 .labels__card-bg {
  background: url(../img/top/labels-3_bg.jpg) no-repeat center center/cover;
}
.labels__card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  gap: 4.5rem;
  color: #777;
}
@media screen and (max-width: 1400px) {
  .labels__card-content {
    padding: 1.4285714286vw;
    gap: 3.2142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__card-content {
    padding: 2.5641025641vw 2.5641025641vw 2.5641025641vw 5.1282051282vw;
    gap: 5.1282051282vw;
  }
}
.labels__card-name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 37.037037037%;
  min-width: 26.4rem;
  gap: 3rem;
  padding: 2rem 0;
}
@media screen and (max-width: 1400px) {
  .labels__card-name {
    gap: 2.1428571429vw;
    padding: 1.4285714286vw 0;
    width: 18.8571428571vw;
    min-width: initial;
  }
}
@media screen and (max-width: 768px) {
  .labels__card-name {
    width: 30.7692307692vw;
    padding: 5.1282051282vw 0;
    gap: 4.1025641026vw;
  }
}
.labels__card-name .ja {
  font-size: 3rem;
  line-height: 1.6;
}
@media screen and (max-width: 1400px) {
  .labels__card-name .ja {
    font-size: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__card-name .ja {
    font-size: 3.5897435897vw;
  }
}
.labels__card-name .en {
  font-size: 7rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .labels__card-name .en {
    font-size: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__card-name .en {
    font-size: 7.6923076923vw;
    line-height: 1.3333333333;
  }
}
.labels__card-desc {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.labels__card-desc > span {
  display: inline-block;
}
@media screen and (max-width: 1400px) {
  .labels__card-desc {
    font-size: 1.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__card-desc {
    font-size: 3.5897435897vw;
  }
}
.labels__card-arrow {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 2;
  width: 6.6rem;
  height: 4.8rem;
  border-radius: 50px;
  background: #c8102e;
  border: 1px solid #5a5a5a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s;
}
@media screen and (max-width: 1400px) {
  .labels__card-arrow {
    bottom: 1.4285714286vw;
    right: 2.1428571429vw;
    width: 4.7142857143vw;
    height: 3.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__card-arrow {
    bottom: 2.5641025641vw;
    right: 2.5641025641vw;
    width: 11.0256410256vw;
    height: 8.2051282051vw;
  }
}
.labels__card-arrow-img {
  width: 2.9rem;
  height: 2.3rem;
  transition: transform 0.3s;
}
@media screen and (max-width: 1400px) {
  .labels__card-arrow-img {
    width: 2.0714285714vw;
    height: 1.6428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__card-arrow-img {
    width: 3.8461538462vw;
    height: 3.0769230769vw;
  }
}
@media screen and (max-width: 768px) {
  .labels__btn-sp {
    padding: 10.2564102564vw 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .labels__btn-sp .btn__wrapper {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .labels__btn-sp .btn {
    padding: 5.8974358974vw 4.1025641026vw 5.8974358974vw 7.4358974359vw;
    gap: 7.1794871795vw;
  }
}

/* ---------------------------
  livers
--------------------------- */
.livers {
  position: relative;
  z-index: 2;
  background: #141414;
  padding: 6rem 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .livers {
    padding: 4.2857142857vw 0;
  }
}
@media screen and (max-width: 768px) {
  .livers {
    padding: 15.3846153846vw 0;
  }
}
.livers__inner {
  padding-right: 6.4rem;
}
@media screen and (max-width: 1400px) {
  .livers__inner {
    padding-right: 4.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .livers__inner {
    padding: 0;
  }
}
.livers__heading {
  padding: 4rem 0 6rem 6rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8rem;
}
@media screen and (max-width: 1400px) {
  .livers__heading {
    padding: 2.8571428571vw 0 4.2857142857vw 4.2857142857vw;
    gap: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .livers__heading {
    padding: 0 5.1282051282vw 10.2564102564vw;
    gap: 5.1282051282vw;
  }
}
.livers .section-title {
  padding-left: 0;
}
.livers__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1400px) {
  .livers__lead {
    font-size: 1.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .livers__lead {
    font-size: 4.6153846154vw;
    line-height: 2.3333333333;
  }
}
.livers__swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 8rem;
}
@media screen and (max-width: 1400px) {
  .livers__swiper {
    padding-bottom: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .livers__swiper {
    padding-bottom: 15.3846153846vw;
  }
}
.livers__swiper-wrapper {
  transition-timing-function: linear !important;
}
.livers__card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: auto;
}
@media screen and (max-width: 768px) {
  .livers__card {
    width: 78.4615384615vw;
  }
}
@media screen and (max-width: 768px) {
  .livers__img-wrap {
    height: 98.4615384615vw;
  }
}
.livers__img-wrap img {
  width: 100%;
  aspect-ratio: 560/660;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.livers__info {
  padding: 1.6rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .livers__info {
    padding: 1.1428571429vw 0 0.7142857143vw;
    gap: 0.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .livers__info {
    padding: 1.4rem 0 1rem;
    gap: 1rem;
  }
}
.livers__genre {
  font-size: 1.8rem;
  line-height: 0.7777777778;
  letter-spacing: 0.04em;
  padding: 1rem;
}
@media screen and (max-width: 1400px) {
  .livers__genre {
    font-size: 1.2857142857vw;
    padding: 0.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .livers__genre {
    font-size: 1.4rem;
    line-height: 0.7857142857;
    padding: 1rem;
  }
}
.livers__name {
  font-size: 5rem;
  line-height: 0.76;
  font-weight: 700;
  padding: 0.4rem 1rem;
}
@media screen and (max-width: 1400px) {
  .livers__name {
    font-size: 3.5714285714vw;
    padding: 0.2857142857vw 0.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .livers__name {
    font-size: 3rem;
    padding: 0.4rem 1rem;
  }
}

/* ---------------------------
  events
--------------------------- */
.events {
  position: relative;
  z-index: 2;
  background: #141414;
  padding: 9rem 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .events {
    padding: 6.4285714286vw 0;
  }
}
@media screen and (max-width: 768px) {
  .events {
    padding-top: 35.8974358974vw;
    padding-bottom: 23.0769230769vw;
  }
}
.events__heading {
  padding: 4rem 0 5rem;
}
@media screen and (max-width: 1400px) {
  .events__heading {
    padding: 2.8571428571vw 0 3.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .events__heading {
    padding-top: 2.5641025641vw;
    padding-bottom: 8.2051282051vw;
  }
}
.events .section-title {
  line-height: 0.9;
}
.events__inner {
  padding: 0 6.4rem 0 0;
}
@media screen and (max-width: 1400px) {
  .events__inner {
    padding: 0 4.5714285714vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .events__inner {
    padding: 0;
  }
}
.events__swiper {
  overflow: hidden;
  padding-bottom: 8rem;
}
@media screen and (max-width: 1400px) {
  .events__swiper {
    padding-bottom: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .events__swiper {
    padding-bottom: 20.5128205128vw;
  }
}
.events__card {
  width: 32.2916666667vw;
}
@media screen and (max-width: 768px) {
  .events__card {
    width: 84.6153846154vw;
  }
}
.events__card img {
  width: 100%;
  aspect-ratio: 620/349;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.events__btn-wrapper {
  max-width: 79rem;
  max-width: 42.5646551724%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .events__btn-wrapper {
    max-width: 96.4102564103vw;
  }
}
.events__btn-prev, .events__btn-next {
  position: initial;
  background: #c8102e;
  border: 1px solid #ffffff;
  width: 66px;
  height: 48px;
  border-radius: 50px;
}
@media screen and (max-width: 1400px) {
  .events__btn-prev, .events__btn-next {
    width: 3.4285714286vw;
    height: 3.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .events__btn-prev, .events__btn-next {
    width: 14.1025641026vw;
    height: 12.3076923077vw;
  }
}
.events__btn-prev::after, .events__btn-next::after {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .events__btn-prev::after, .events__btn-next::after {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .events__btn-prev::after, .events__btn-next::after {
    font-size: 4.1025641026vw;
  }
}
.events__btn-prev {
  transform: rotate(180deg);
}
.events__arrow {
  width: 2.9rem;
  height: 2.3rem;
  transition: transform 0.3s;
}
@media screen and (max-width: 1400px) {
  .events__arrow {
    width: 2.0714285714vw;
    height: 1.6428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .events__arrow {
    width: 3.8461538462vw;
    height: 3.0769230769vw;
  }
}

/* ---------------------------
  News
--------------------------- */
.news {
  position: relative;
  z-index: 2;
  background: #131313;
  padding: 7.5rem 0 8rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .news {
    padding: 5.3571428571vw 0 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .news {
    padding: 14.8717948718vw 0;
  }
}
.news__inner {
  padding: 0 6.4rem 0 0;
}
@media screen and (max-width: 1400px) {
  .news__inner {
    padding: 0 4.5714285714vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .news__inner {
    padding: 0 5.1282051282vw;
  }
}
.news__wrapper {
  padding: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8rem;
}
@media screen and (max-width: 1400px) {
  .news__wrapper {
    padding: 2.8571428571vw;
    gap: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .news__wrapper {
    flex-direction: column;
    padding: 0;
    gap: 5.641025641vw;
  }
}
.news__left {
  position: sticky;
  top: 12rem;
  display: flex;
  flex-direction: column;
  width: 44rem;
  flex-shrink: 0;
  align-self: flex-start;
}
@media screen and (max-width: 1400px) {
  .news__left {
    top: 8.5714285714vw;
    width: 31.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .news__left {
    position: initial;
    width: 100%;
    top: initial;
  }
}
.news__left .section-title {
  padding-left: 0;
  margin-bottom: 10rem;
}
@media screen and (max-width: 1400px) {
  .news__left .section-title {
    margin-bottom: 7.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .news__left .section-title {
    margin-bottom: 5.1282051282vw;
  }
}
.news__right {
  display: flex;
  flex-direction: column;
  width: 56.3063063063%;
}
@media screen and (max-width: 768px) {
  .news__right {
    width: 100%;
  }
}
.news__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid #ffffff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1400px) {
  .news__item {
    gap: 1.4285714286vw;
    padding: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .news__item {
    gap: 2.5641025641vw;
    padding: 7.6923076923vw 0;
  }
}
.news__item:hover {
  opacity: 0.7;
}
.news__item-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 70%;
  padding: 2rem 0 4rem;
}
@media screen and (max-width: 1400px) {
  .news__item-body {
    gap: 0.7142857143vw;
    padding: 1.4285714286vw 0 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .news__item-body {
    padding: 0;
    gap: 2.5641025641vw;
    width: 43.5897435897vw;
  }
}
.news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.3333333333;
  letter-spacing: 0.04em;
  color: #c8102e;
}
@media screen and (max-width: 1400px) {
  .news__date {
    font-size: 1.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 3.5897435897vw;
  }
}
.news__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.3333333333;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .news__title {
    font-size: 1.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 3.5897435897vw;
    -webkit-line-clamp: 5;
  }
}
.news__img {
  width: 28rem;
  margin-top: 0 !important;
}
@media screen and (max-width: 1400px) {
  .news__img {
    width: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .news__img {
    width: 43.5897435897vw;
  }
}
.news__img img {
  aspect-ratio: 280/196;
}

/* ---------------------------
  contact
--------------------------- */
.contact {
  position: relative;
  z-index: 2;
  background: #000000;
  padding: 8rem 0;
  width: 100%;
  border-top: 1px solid #141414;
  z-index: 200;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .contact {
    padding: 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 15.3846153846vw 0;
  }
}
.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 4rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .contact__inner {
    padding: 0 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 0 3.5897435897vw;
  }
}
.contact .section-title {
  padding-left: 0;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1400px) {
  .contact .section-title {
    margin-bottom: 4.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .contact .section-title {
    margin-bottom: 15.3846153846vw;
  }
}
.contact .slide-line span {
  background: #ffffff;
  color: #000000;
  padding: 0 2rem;
}
@media screen and (max-width: 1400px) {
  .contact .slide-line span {
    padding: 0 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .contact .slide-line span {
    font-size: 4.6153846154vw;
  }
}
.contact__text {
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5px;
}
@media screen and (max-width: 1400px) {
  .contact__text {
    margin-bottom: 5.7142857143vw;
    gap: 0.3571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__text {
    margin-bottom: 13.3333333333vw;
    gap: 1.2820512821vw;
  }
}
.contact__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7.3rem;
  background: #06c755;
  color: #ffffff;
  text-decoration: none;
  padding: 3rem 3rem 3rem 9.4rem;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1400px) {
  .contact__btn {
    gap: 5.2142857143vw;
    padding: 2.1428571429vw w(1440, 30) w(1440, 30) w(1440, 94);
  }
}
@media screen and (max-width: 768px) {
  .contact__btn {
    padding: 6.1538461538vw 7.6923076923vw 6.1538461538vw 20.5128205128vw;
    font-weight: 700;
    line-height: 0.7222222222;
    gap: 15.3846153846vw;
  }
}
.contact__btn:hover {
  opacity: 0.85;
}
.contact__btn:hover .arrow {
  transform: translateX(5px);
}
.contact__btn .line {
  font-size: 3.1rem;
  line-height: 0.7096774194;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .contact__btn .line {
    font-size: 2.2142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn .line {
    font-size: 5.1282051282vw;
  }
}
.contact__btn .ja {
  font-size: 2.6rem;
  line-height: 0.7096774194;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .contact__btn .ja {
    font-size: 1.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn .ja {
    font-size: 4.6153846154vw;
  }
}
.contact__btn .arrow {
  font-size: 2.6rem;
}
@media screen and (max-width: 1400px) {
  .contact__btn .arrow {
    font-size: 1.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn .arrow {
    font-size: 5.1282051282vw;
  }
}

/* ---------------------------
  footer
--------------------------- */
.footer {
  border-top: 1px solid #ffffff;
  background: #000000;
  z-index: 200;
  position: relative;
  padding-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .footer {
    padding-top: 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 5.1282051282vw 0;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 11rem;
}
@media screen and (max-width: 1400px) {
  .footer__left {
    margin-bottom: 7.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__left {
    margin-bottom: 0;
  }
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 8rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .footer__top {
    padding: 1.4285714286vw 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    padding: 0 5.1282051282vw 5.1282051282vw;
  }
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
  .footer__nav {
    gap: 0.0714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-bottom: 10.2564102564vw;
  }
}
.footer__nav-link {
  width: 16rem;
  padding: 1rem 2rem;
  font-family: "Amiri", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.75;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1400px) {
  .footer__nav-link {
    width: 15.4rem;
    width: 11vw;
    padding: 0.7142857143vw 1.4285714286vw;
    font-size: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-link {
    width: 100%;
    font-size: 4.6153846154vw;
    line-height: 1.9444444444;
    padding: 5.1282051282vw 2.5641025641vw;
    border-bottom: 1px solid #5a5a5a;
  }
}
.footer__nav-link:hover {
  opacity: 0.5;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0 2rem 2rem;
}
@media screen and (max-width: 1400px) {
  .footer__links {
    gap: 2.1428571429vw;
    padding: 2.8571428571vw 0 1.4285714286vw 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__links {
    justify-content: center;
    gap: 10.2564102564vw;
    padding: 10.2564102564vw 5.1282051282vw 5.1282051282vw;
  }
}
.footer__link {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  .footer__link {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__link {
    font-size: 4.1025641026vw;
  }
}
.footer__policy {
  font-family: "Amiri", serif;
  line-height: 1.75;
  padding: 0 2rem;
}
@media screen and (max-width: 1400px) {
  .footer__policy {
    padding: 0 1.4285714286vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__policy {
    font-size: 4.1025641026vw;
    text-align: center;
    padding-bottom: 5.1282051282vw;
  }
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
@media screen and (max-width: 1400px) {
  .footer__right {
    gap: 0.0714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__right {
    gap: 2.5641025641vw;
    align-items: center;
  }
}
.footer__pagetop {
  font-family: "Amiri", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.6666666667;
  color: #c8102e;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
  gap: 0.5rem;
  padding: 1rem 0 2rem 2rem;
}
@media screen and (max-width: 1400px) {
  .footer__pagetop {
    font-size: 1.4285714286vw;
    gap: 0.3571428571vw;
    padding: 0.7142857143vw 0 1.4285714286vw 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__pagetop {
    line-height: 1.75;
    font-size: 4.6153846154vw;
    gap: 5.1282051282vw;
    padding: 2.5641025641vw 0 4.6153846154vw;
  }
}
.footer__pagetop:hover {
  opacity: 0.7;
}
.footer__pagetop .arrow {
  font-size: 2.4rem;
  color: #c8102e;
}
@media screen and (max-width: 1400px) {
  .footer__pagetop .arrow {
    font-size: 1.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__pagetop .arrow {
    font-size: 5.1282051282vw;
  }
}
.footer__copy {
  font-family: "Amiri", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #8c7e7e;
  letter-spacing: 0.04em;
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .footer__copy {
    font-size: 0.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 3.5897435897vw;
    line-height: 1.7857142857;
  }
}
.footer__logo {
  width: 100%;
  opacity: 0.2;
}

/* ---------------------------
  パンくずリスト
--------------------------- */
.breadcrumbs {
  margin-top: 10.864rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .breadcrumbs {
    margin-top: 7.76vw;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-top: 20.5128205128vw;
  }
}
.breadcrumbs__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1rem 15.4rem 1rem 8rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .breadcrumbs__inner {
    padding: 0.7142857143vw 10.7428571429vw 0.7142857143vw 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs__inner {
    padding: 2.5641025641vw 5.1282051282vw 2.5641025641vw 20.5128205128vw;
    padding: 1rem 2rem;
  }
}
.breadcrumbs__inner > span:last-of-type {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.breadcrumbs__wrapper {
  width: 100%;
  max-width: 140rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media screen and (max-width: 1400px) {
  .breadcrumbs__wrapper {
    gap: 0.3571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs__wrapper {
    gap: 1.2820512821vw;
  }
}
.breadcrumbs .home,
.breadcrumbs .post,
.breadcrumbs .category {
  text-decoration: underline;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 0.7142857143;
  letter-spacing: 0.04em;
  text-decoration: underline;
  color: #ffffff;
}
@media screen and (max-width: 1400px) {
  .breadcrumbs .home,
  .breadcrumbs .post,
  .breadcrumbs .category {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs .home,
  .breadcrumbs .post,
  .breadcrumbs .category {
    font-size: 3.0769230769vw;
  }
}
.breadcrumbs__separator {
  background: #373737;
  width: 2rem;
  height: 1px;
}
.breadcrumbs .current-item {
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media screen and (max-width: 1400px) {
  .breadcrumbs .current-item {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs .current-item {
    font-size: 3.0769230769vw;
  }
}
.breadcrumbs .post {
  border-bottom: none;
  padding: 0;
}

/* ----------------------------------------
  下層ページ
---------------------------------------- */
.inner {
  width: 100%;
  padding: 0 10.4rem 0 4rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .inner {
    padding: 0 7.4285714286vw 0 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 5.1282051282vw;
  }
}

/* ---------------------------
  下層ページタイトル
--------------------------- */
.page-mv {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.page-mv__inner {
  width: 100%;
  padding: 3rem 14.4rem 6rem 8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .page-mv__inner {
    padding: 2.1428571429vw 10.0285714286vw 4.2857142857vw 5.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .page-mv__inner {
    padding: 7.6923076923vw 5.1282051282vw 15.3846153846vw;
  }
}
.page-mv__wrapper {
  width: 100%;
  max-width: 140rem;
}
.page-mv__ttl {
  font-family: "Playfair Display", serif;
  font-size: 16rem;
  letter-spacing: -0.04em;
  font-weight: 400;
  line-height: 0.6;
}
@media screen and (max-width: 1400px) {
  .page-mv__ttl {
    font-size: 11.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .page-mv__ttl {
    font-size: 20.5128205128vw;
  }
}

/* ----------------------------------------
  お知らせページ
---------------------------------------- */
.container {
  position: relative;
  padding: 6rem 0 10rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .container {
    padding: 4.2857142857vw 0 7.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 10.2564102564vw 0 15.3846153846vw;
  }
}
.container__inner {
  padding: 0 4rem;
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .container__inner {
    padding: 0 2.8571428571vw;
    gap: 4.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .container__inner {
    padding: 0;
    gap: 10.2564102564vw;
    flex-direction: column;
  }
}

.sidebar {
  position: sticky;
  top: 12rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 1400px) {
  .sidebar {
    top: 8.5714285714vw;
    gap: 0.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .sidebar {
    position: initial;
    top: initial;
    gap: 2.5641025641vw;
    width: 100%;
  }
}
.sidebar__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.7;
  letter-spacing: 0.04em;
  padding: 3rem 1rem;
}
@media screen and (max-width: 1400px) {
  .sidebar__ttl {
    font-size: 1.4285714286vw;
    padding: 2.1428571429vw 0.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .sidebar__ttl {
    font-size: 4.6153846154vw;
    padding: 7.6923076923vw 2.5641025641vw;
  }
}

.category-lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0.5rem;
  width: 27rem;
}
@media screen and (max-width: 1400px) {
  .category-lists {
    gap: 0.7142857143vw;
    padding: 0 0.3571428571vw;
    width: 19.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .category-lists {
    width: 100%;
    padding: 0 1.2820512821vw;
    gap: 2.5641025641vw;
  }
}
.category-lists__btn {
  border-radius: 4rem;
  padding: 1rem;
  color: #c8102e;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  border: 1px solid #c8102e;
  line-height: 0.6875;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1400px) {
  .category-lists__btn {
    padding: 0.7142857143vw;
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .category-lists__btn {
    padding: 2.5641025641vw;
    font-size: 4.1025641026vw;
  }
}
.category-lists__btn.is-active {
  border: 1px solid #ffffff;
  background: #ffffff;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 4rem;
}
@media screen and (max-width: 1400px) {
  .content {
    gap: 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .content {
    gap: 10.2564102564vw;
  }
}

.posts {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.post {
  display: flex;
  justify-content: space-between;
  padding: 2rem 1rem;
  gap: 2rem;
  border-bottom: 1px solid #373737;
  transition: 0.3s ease-out !important;
}
@media screen and (max-width: 1400px) {
  .post {
    padding: 1.4285714286vw 0.7142857143vw;
    gap: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .post {
    align-items: center;
    padding: 5.1282051282vw 0;
    gap: 2.5641025641vw;
  }
}
.post:hover {
  opacity: 0.7 !important;
}
.post__left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  width: 76.5739385066%;
}
@media screen and (max-width: 1400px) {
  .post__left {
    gap: 0.7142857143vw;
    padding-top: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .post__left {
    padding-top: 5.1282051282vw;
    gap: 2.5641025641vw;
    width: 43.5897435897vw;
  }
}
.post__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 1400px) {
  .post__top {
    gap: 0.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .post__top {
    gap: 2.5641025641vw;
  }
}
.post__heading {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.6rem 0;
}
@media screen and (max-width: 1400px) {
  .post__heading {
    gap: 1.4285714286vw;
    padding: 0.4285714286vw 0;
  }
}
@media screen and (max-width: 768px) {
  .post__heading {
    gap: 2.5641025641vw;
    padding: 1.5384615385vw 0;
  }
}
.post__time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 0.6875;
}
@media screen and (max-width: 1400px) {
  .post__time {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .post__time {
    font-size: 3.5897435897vw;
  }
}
.post__category {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.3125;
}
@media screen and (max-width: 1400px) {
  .post__category {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .post__category {
    font-size: 3.5897435897vw;
  }
}
.post__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.3333333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .post__ttl {
    font-size: 1.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .post__ttl {
    font-size: 3.5897435897vw;
    -webkit-line-clamp: 5;
  }
}
.post__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 1rem;
  color: #c8102e;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 0.6875;
}
@media screen and (max-width: 1400px) {
  .post__bottom {
    gap: 0.7142857143vw;
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .post__bottom {
    gap: 2.5641025641vw;
    font-size: 3.5897435897vw;
  }
}
.post__arrow {
  width: 7.74px;
  height: 7.74px;
  display: block;
}
@media screen and (max-width: 1400px) {
  .post__arrow {
    width: 0.5528571429vw;
    height: 0.5528571429vw;
  }
}
@media screen and (max-width: 768px) {
  .post__arrow {
    width: 2.0512820513vw;
    height: 2.0512820513vw;
  }
}
.post__thumbnail {
  width: 28rem;
  height: auto;
}
@media screen and (max-width: 1400px) {
  .post__thumbnail {
    width: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .post__thumbnail {
    width: 43.5897435897vw;
    height: 100%;
  }
}
.post__thumbnail img {
  aspect-ratio: 14/9;
}
@media screen and (max-width: 768px) {
  .post__thumbnail img {
    aspect-ratio: 170/120;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100rem;
  padding: 3rem 8rem 4rem;
}
@media screen and (max-width: 1400px) {
  .pagination {
    padding: 2.1428571429vw 5.7142857143vw 2.8571428571vw;
  }
}
@media screen and (max-width: 768px) {
  .pagination {
    padding: 7.6923076923vw 0;
  }
}
.pagination__arrow {
  width: 56.97px;
  height: 56.97px;
  flex-shrink: 0;
}
@media screen and (max-width: 1400px) {
  .pagination__arrow {
    width: 4.0692857143vw;
    height: 4.0692857143vw;
  }
}
@media screen and (max-width: 768px) {
  .pagination__arrow {
    width: 14.358974359vw;
    height: 14.358974359vw;
  }
}
.pagination__numbers {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 1400px) {
  .pagination__numbers {
    gap: 2.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .pagination__numbers {
    gap: 2.5641025641vw;
  }
}
.pagination .page-numbers {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.7083333333;
  color: #c8102e;
  width: 3.4rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1400px) {
  .pagination .page-numbers {
    font-size: 1.7142857143vw;
    width: 2.4285714286vw;
    height: 2.6428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .pagination .page-numbers {
    font-size: 5.1282051282vw;
    width: 7.6923076923vw;
    height: 9.4871794872vw;
  }
}
.pagination .page-numbers.current {
  color: #ffffff;
}
.pagination .page-numbers.dots {
  color: #ffffff;
}
.pagination .prev,
.pagination .next {
  border: 1px solid #c8102e;
  padding: 2rem;
  width: 56.97px;
  height: 56.97px;
  border-radius: 50%;
}
@media screen and (max-width: 1400px) {
  .pagination .prev,
  .pagination .next {
    padding: 1.4285714286vw;
    width: 4.0692857143vw;
    height: 4.0692857143vw;
  }
}
@media screen and (max-width: 768px) {
  .pagination .prev,
  .pagination .next {
    padding: 2.5641025641vw;
    width: 12.8205128205vw;
    height: 12.8205128205vw;
  }
}

/* ----------------------------------------
  お知らせ記事ページ
---------------------------------------- */
#single .container {
  padding-bottom: 14rem;
}
@media screen and (max-width: 1400px) {
  #single .container {
    padding-bottom: 10vw;
  }
}
@media screen and (max-width: 768px) {
  #single .container {
    padding-bottom: 15.3846153846vw;
  }
}
#single .container__inner {
  gap: 0;
}
@media screen and (max-width: 768px) {
  #single .container__inner {
    gap: 10.2564102564vw;
  }
}
#single .sidebar {
  padding-inline: 2rem;
  width: 58rem;
  min-width: 58rem;
}
@media screen and (max-width: 1400px) {
  #single .sidebar {
    padding-inline: 1.4285714286vw;
    width: 41.4285714286vw;
    min-width: 41.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  #single .sidebar {
    padding: 0;
    width: 100%;
    min-width: 100%;
  }
}
#single .content {
  padding-inline: 2rem;
  width: 58.125vw;
}
@media screen and (max-width: 1400px) {
  #single .content {
    padding-inline: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  #single .content {
    padding: 0;
    width: 100%;
  }
}

.single {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.single__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3333333333;
  clip-path: inset(0 100% 0 0);
  animation: titleReveal 0.8s forwards;
}
@media screen and (max-width: 1400px) {
  .single__ttl {
    font-size: 2.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .single__ttl {
    font-size: 6.1538461538vw;
  }
}
.single__thumbnail {
  max-width: 80rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .single__thumbnail {
    max-width: 57.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .single__thumbnail {
    max-width: 89.7435897436vw;
  }
}
.single__thumbnail img {
  width: 100%;
  height: auto;
}
.single__heading {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1400px) {
  .single__heading {
    gap: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .single__heading {
    gap: 5.1282051282vw;
  }
}
.single__body {
  line-height: 2.625;
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  padding: 2.4rem 0 6.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .single__body {
    gap: 3vw;
    padding: 1.7142857143vw 0 4.7142857143vw;
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .single__body {
    gap: 10.7692307692vw;
    padding: 6.1538461538vw 0 16.9230769231vw;
    font-size: 4.1025641026vw;
  }
}
.single__body img {
  width: initial;
  height: auto;
  max-width: 100%;
}
.single__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0;
}
@media screen and (max-width: 1400px) {
  .single__bottom {
    padding: 2.8571428571vw 0;
  }
}
@media screen and (max-width: 768px) {
  .single__bottom {
    padding: 10.2564102564vw 0;
    flex-direction: column;
    gap: 5.1282051282vw;
  }
}
.single__btn-back a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 0.6875;
}
@media screen and (max-width: 1400px) {
  .single__btn-back a {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  .single__btn-back a {
    font-size: 4.1025641026vw;
  }
}
.single__btn-link {
  display: flex;
  align-items: center;
  width: 56rem;
  padding: 1.6rem 3rem;
  gap: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1400px) {
  .single__btn-link {
    padding: 1.1428571429vw 2.1428571429vw;
    gap: 0.7142857143vw;
    font-size: 1.1428571429vw;
    width: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .single__btn-link {
    padding: 4.1025641026vw 7.6923076923vw;
    gap: 2.5641025641vw;
    font-size: 4.1025641026vw;
    width: 76.9230769231vw;
  }
}
.single__btn-txt {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .single__btn-txt {
    -webkit-line-clamp: 2;
  }
}
.single__btn-link--icon {
  width: 1.6rem;
  min-width: 1.6rem;
  height: 0.8rem;
  display: block;
}
@media screen and (max-width: 1400px) {
  .single__btn-link--icon {
    width: 1.1428571429vw;
    height: 0.5714285714vw;
  }
}
@media screen and (max-width: 768px) {
  .single__btn-link--icon {
    width: 4.1025641026vw;
    height: 2.0512820513vw;
    min-width: 4.1025641026vw;
  }
}

.share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 6rem 0 14rem;
  border-top: 1px solid #373737;
}
@media screen and (max-width: 1400px) {
  .share {
    gap: 1.4285714286vw;
    padding: 4.2857142857vw 0 10vw;
  }
}
@media screen and (max-width: 768px) {
  .share {
    gap: 5.1282051282vw;
    padding: 15.3846153846vw 0;
  }
}
.share__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 0.7222222222;
}
@media screen and (max-width: 1400px) {
  .share__ttl {
    font-size: 1.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .share__ttl {
    font-size: 4.6153846154vw;
  }
}
.share__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 1400px) {
  .share__links {
    gap: 1.4285714286vw;
  }
}
@media screen and (max-width: 768px) {
  .share__links {
    gap: 5.1282051282vw;
  }
}
.share__link {
  width: 3.2rem;
  height: 3.2rem;
}
@media screen and (max-width: 1400px) {
  .share__link {
    width: 2.2857142857vw;
    height: 2.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .share__link {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
  }
}
.share__link img {
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes titleReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
/* ========================================
  404
======================================== */
.page-404 .inner {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 1.875rem;
  row-gap: 4.25rem;
}

.page-404 .inner h2 {
  font-size: 7.1875rem;
  font-family: "Amiri", serif;
  font-weight: normal;
  line-height: 0.5;
}

.page-404 .inner p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .page-404 .inner {
    min-height: 74vh;
    padding-top: 10.2564102564vw;
  }
  .page-404 .inner h2 {
    font-size: 11.5384615385vw;
  }
  .page-404 .inner p {
    font-size: 4.1025641026vw;
  }
}
/* ========================================
  スマートフォン (768px以下)
======================================== */
body.is-nav-open {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  /* ハンバーガーボタン */
  .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 550;
    width: 16.4102564103vw;
    height: 21.5384615385vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5384615385vw;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .hamburger__line {
    display: block;
    width: 6.4102564103vw;
    height: 2px;
    background: #ffffff;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  }
  .hamburger.is-open .hamburger__line:nth-child(1) {
    width: 8.2051282051vw;
    transform: translateY(2.5641025641vw) rotate(45deg);
  }
  .hamburger.is-open .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: translateX(2.0512820513vw);
  }
  .hamburger.is-open .hamburger__line:nth-child(3) {
    width: 8.2051282051vw;
    transform: translateY(-1.5384615385vw) rotate(-45deg);
  }
  /* SPナビゲーション */
  .sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 82.0512820513vw;
    height: 100dvh;
    z-index: 500;
    background: #000000;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.45s;
  }
  .sp-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
  }
  .sp-nav__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: 21.0256410256vw;
  }
  .sp-nav__head {
    padding: 0 7.6923076923vw 3.5897435897vw;
  }
  .sp-nav__label {
    font-family: "Amiri", serif;
    font-size: 6.1538461538vw;
    color: #7f7f7f;
    line-height: 1.75;
    letter-spacing: 0.04em;
    display: block;
  }
  .sp-nav__list {
    flex: 1;
  }
  .sp-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5897435897vw 2.5641025641vw;
    border-top: 1px solid #5a5a5a;
    font-family: "Amiri", serif;
    font-size: 5.1282051282vw;
    color: #ffffff;
    line-height: 1.75;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-inline: 5.1282051282vw;
  }
  .sp-nav__link:hover {
    opacity: 1;
  }
  .sp-nav__link-text {
    display: block;
  }
  .sp-nav__arrow {
    width: 1.7948717949vw;
    height: 2.8205128205vw;
    flex-shrink: 0;
  }
  .sp-nav__arrow img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .sp-nav__contact {
    padding: 10.2564102564vw 5.1282051282vw;
    margin-top: auto;
    border-top: 1px solid #484848;
  }
  .sp-nav__contact-ttl {
    font-family: "Playfair Display", serif;
    font-size: 7.6923076923vw;
    font-weight: 400;
    line-height: 1.3333333333;
    letter-spacing: -0.04em;
    margin-bottom: 2.5641025641vw;
  }
  .sp-nav__contact-txt {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4.1025641026vw;
    font-weight: 400;
    line-height: 1.375;
    letter-spacing: 0;
    color: #ffffff;
    padding: 1.2820512821vw 0;
    padding-bottom: 5.1282051282vw;
  }
  .sp-nav__contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #06c755;
    color: #ffffff;
    padding: 5.1282051282vw 5.1282051282vw 5.1282051282vw 20.5128205128vw;
    border-radius: 999px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4.6153846154vw;
    font-weight: 700;
    line-height: 0.7222222222;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .sp-nav__contact-btn .arrow {
    font-size: 5.1282051282vw;
  }
  .sp-nav__contact-btn:hover {
    opacity: 0.9;
  }
}/*# sourceMappingURL=style.css.map */