@charset "UTF-8";
/* A Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.8;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  width: 100%;
}

body {
  font-family: YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  position: relative;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.grecaptcha-badge {
  display: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 54px;
  background-color: rgba(18, 8, 8, 0.8);
}
@media (max-width: 1024px) {
  .l-header {
    height: 65px;
  }
}
.l-header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 50px;
}
@media (max-width: 1024px) {
  .l-header__inner {
    padding: 0 24px;
  }
}
.l-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.875rem, -9.034rem + 17.045vw, 3.75rem);
}
@media (max-width: 1024px) {
  .l-header__right {
    gap: 24px;
  }
}

/* ===== Logo ===== */
.c-logo {
  display: block;
}
.c-logo__img {
  display: block;
  width: auto;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .c-logo__img {
    height: 16px;
  }
}

/* ===== Nav ===== */
@media (max-width: 1024px) {
  .c-nav {
    display: none;
  }
}
.c-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.875rem, -9.034rem + 17.045vw, 3.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-nav__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 54px;
}
.c-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  position: relative;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-nav__label {
  position: relative;
  display: inline-block;
}
.c-nav__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-nav__link:hover .c-nav__label::after {
  -webkit-animation: nav-underline 0.8s linear infinite;
          animation: nav-underline 0.8s linear infinite;
}
.c-nav__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-nav__icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.c-nav__panel {
  position: absolute;
  top: 54px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  max-height: 0;
  background-color: rgba(18, 8, 8, 0.6);
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.c-nav__item--accordion:hover .c-nav__panel {
  max-height: 600px;
}
.c-nav__item--accordion:hover .c-nav__icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

@-webkit-keyframes nav-underline {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  40% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}

@keyframes nav-underline {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  40% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}
/* ===== Subnav (BRAND子要素) ===== */
.c-subnav {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  white-space: nowrap;
}
.c-subnav__item + .c-subnav__item {
  margin-top: 4px;
}
.c-subnav__link {
  display: block;
  padding: 5px 24px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  line-height: 1.2;
}
.c-subnav__label {
  position: relative;
  display: inline-block;
}
.c-subnav__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-subnav__link:hover .c-subnav__label::after {
  -webkit-animation: nav-underline 0.8s linear infinite;
          animation: nav-underline 0.8s linear infinite;
}

/* ===== Lang ===== */
.c-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
}
.c-lang__link {
  color: #fff;
  text-decoration: none;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-lang__link.is-current {
  opacity: 1;
}
.c-lang__sep {
  opacity: 0.5;
}

/* ===== ハンバーガー（SPのみ表示）===== */
.c-hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .c-hamburger {
    position: relative;
    display: block;
    width: 28px;
    height: 14px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    z-index: 1100;
  }
}
.c-hamburger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.c-hamburger__bar:nth-child(1) {
  top: 0;
}
.c-hamburger__bar:nth-child(2) {
  bottom: 0;
}

/* ===== ドロワーメニュー（SP）===== */
.c-drawer {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: rgba(18, 8, 8, 0.97);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media (min-width: 1025px) {
  .c-drawer {
    display: none;
  }
}
.c-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.c-drawer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 65px;
  padding: 0 24px;
}
.c-drawer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.c-drawer__close {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-drawer__close-bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.c-drawer__close-bar:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-drawer__close-bar:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-drawer__nav {
  padding: 20px 50px 60px;
}
.c-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-drawer__item {
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.c-drawer__item + .c-drawer__item {
  margin-top: 28px;
}
.c-drawer.is-open .c-drawer__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-drawer.is-open .c-drawer__item:nth-child(1) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.c-drawer.is-open .c-drawer__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.c-drawer.is-open .c-drawer__item:nth-child(3) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.c-drawer.is-open .c-drawer__item:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.c-drawer.is-open .c-drawer__item:nth-child(5) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.c-drawer.is-open .c-drawer__item:nth-child(6) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.c-drawer.is-open .c-drawer__item:nth-child(7) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.c-drawer.is-open .c-drawer__item:nth-child(8) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.c-drawer__link {
  display: block;
  width: 100%;
  padding: 6px 0;
  border: none;
  background: none;
  text-align: left;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-drawer__en {
  display: block;
  font-size: 14px;
  line-height: 1;
}
.c-drawer__link--toggle {
  position: relative;
}
.c-drawer__acc-icon {
  position: absolute;
  top: 9px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translateY(-5px) rotate(45deg);
          transform: translateY(-5px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-drawer__item--accordion.is-open .c-drawer__acc-icon {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.c-drawer__jp {
  display: block;
  margin-top: 5px;
  padding-top: 8px;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  border-top: 1px solid #999999;
}
.c-drawer__panel {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.c-drawer__item--accordion.is-open .c-drawer__panel {
  max-height: 600px;
}
.c-drawer__subnav {
  margin: 0;
  padding-top: 20px;
  padding-left: 1.5em;
  list-style: none;
}
.c-drawer__subnav li + li {
  margin-top: 20px;
}
.c-drawer__sublink {
  display: block;
  padding: 0;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

body.is-drawer-open {
  overflow: hidden;
}

body.is-drawer-open .c-hamburger {
  opacity: 0;
  visibility: hidden;
}

.p-top-fv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background-color: #120808;
}
.p-top-fv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-fv__scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  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: 16px;
  z-index: 2;
}
@media (max-width: 768px) {
  .p-top-fv__scroll {
    right: clamp(1.25rem, -0.04rem + 5.291vw, 2.5rem);
    bottom: clamp(1.25rem, -0.04rem + 5.291vw, 2.5rem);
  }
}
.p-top-fv__scroll-text {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.15em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.p-top-fv__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 80px;
  overflow: hidden;
}
.p-top-fv__scroll-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation: fv-scroll 1.8s ease-in-out infinite;
          animation: fv-scroll 1.8s ease-in-out infinite;
}

@-webkit-keyframes fv-scroll {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes fv-scroll {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
/* ===== 共通テキストリンク（ホバーで罫線が左→右） パターンB ===== */
/* ===== 共通テキストリンク（通常時は罫線表示、ホバーで罫線が左→右リピート） ===== */
.c-textlink {
  display: inline-block;
  text-decoration: none;
  color: #222222;
}
@media (max-width: 768px) {
  .c-textlink {
    display: block;
    text-align: center;
  }
}
.c-textlink.c-textlink-white {
  color: #fff;
}
.c-textlink__label {
  position: relative;
  display: inline-block;
  color: inherit;
  font-size: 14px;
  line-height: 1.2;
  padding-bottom: 4px;
}
.c-textlink__label::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.c-textlink__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-textlink:hover .c-textlink__label::before {
  opacity: 0;
}
.c-textlink:hover .c-textlink__label::after {
  -webkit-animation: nav-underline 1.2s linear infinite;
          animation: nav-underline 1.2s linear infinite;
}

.p-top-about {
  position: relative;
  width: 100%;
  background-color: #120808;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .p-top-about {
    padding-bottom: clamp(5rem, 3.71rem + 5.291vw, 6.25rem);
  }
}
.p-top-about__logo {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  text-align: center;
  z-index: 2;
  line-height: 0;
  width: 100%;
}
.p-top-about__logo-link {
  position: relative;
  display: inline-block;
}
.p-top-about__logo-img {
  display: block;
  width: 400px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-top-about__logo-img {
    width: 262px;
  }
}
.p-top-about__logo-text {
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
  font-size: 64px;
  letter-spacing: 0.5em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}
.p-top-about__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 80px;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .p-top-about__inner {
    padding-top: clamp(5.4375rem, 2.665rem + 11.376vw, 8.125rem);
    padding-bottom: clamp(3.75rem, 2.46rem + 5.291vw, 5rem);
  }
}
.p-top-about__lead {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-top-about__lead {
    text-align: left;
  }
}
.p-top-about__concept {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .p-top-about__concept {
    margin: clamp(1.25rem, -0.04rem + 5.291vw, 2.5rem) 0 40px;
  }
}
.p-top-about__concept-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 62px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .p-top-about__concept-img {
    height: clamp(2.875rem, 1.843rem + 4.233vw, 3.875rem);
  }
}
.p-top-about__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-top-about__text {
    text-align: left;
  }
}
.p-top-about__slider {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.p-top-about__slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: about-slide 90s linear infinite;
          animation: about-slide 90s linear infinite;
}
.p-top-about__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 450px;
  height: 300px;
}
@media (max-width: 640px) {
  .p-top-about__slide {
    width: 271px;
    height: 180px;
  }
}
.p-top-about__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-about__more {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-about__more {
    margin-top: clamp(2.5rem, 1.21rem + 5.291vw, 3.75rem);
  }
}
.p-top-about__more-link {
  display: inline-block;
  text-decoration: none;
}
.p-top-about__more-label {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  color: #fff;
  font-size: 14px;
}
.p-top-about__more-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

@-webkit-keyframes about-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-3672px);
            transform: translateX(-3672px);
  }
}

@keyframes about-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-3672px);
            transform: translateX(-3672px);
  }
}
.p-top-services {
  padding: 120px 0 100px;
  background-color: #fff;
  color: #222222;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .p-top-services {
    padding: clamp(5rem, 2.421rem + 10.582vw, 7.5rem) 0;
  }
}
.p-top-services__inner {
  position: relative;
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 834px;
  margin: 0 auto;
}
@media (max-width: 928px) {
  .p-top-services__inner {
    height: auto;
  }
}
.p-top-services__head {
  position: relative;
  z-index: 2;
  max-width: 400px;
}
@media (max-width: 928px) {
  .p-top-services__head {
    margin: 0 auto;
    max-width: 430px;
  }
}
.p-top-services__title {
  margin: 0;
}
.p-top-services__title-img {
  display: block;
  width: auto;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 928px) {
  .p-top-services__title-img {
    height: clamp(2.125rem, 1.48rem + 2.646vw, 2.75rem);
    margin: 0 auto;
  }
}
.p-top-services__title-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  color: transparent;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
.p-top-services__subtitle {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 928px) {
  .p-top-services__subtitle {
    text-align: center;
  }
}
.p-top-services__text {
  margin: 50px 0 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-top-services__text {
    margin: 40px 0 0;
    text-align: left;
  }
}
.p-top-services__link {
  margin-top: 50px;
}
@media (max-width: 928px) {
  .p-top-services__link {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
}
.p-top-services__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
}
@media (max-width: 928px) {
  .p-top-services__images {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-top: 40px;
    display: block;
  }
}
.p-top-services__img {
  position: absolute;
  margin: 0;
  overflow: hidden;
}
.p-top-services__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-services__img--01 {
  top: -14px;
  right: -120px;
  width: clamp(35rem, -11.2rem + 80vw, 40rem);
  height: clamp(23.125rem, -11.525rem + 60vw, 26.875rem);
}
.p-top-services__img--03 {
  top: 476px;
  right: clamp(1.25rem, -21.85rem + 40vw, 3.75rem);
  width: 520px;
  height: 346px;
}
.p-top-services__img--02 {
  bottom: 130px;
  left: -40px;
  width: clamp(23.75rem, -10.9rem + 60vw, 27.5rem);
  height: clamp(16.5rem, 0.33rem + 28vw, 18.25rem);
}
@media (max-width: 928px) {
  .p-top-services__img {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 928px) {
  .p-top-services__img--01 {
    width: 86%;
    margin-right: calc(50% - 50vw);
    margin-left: auto;
    aspect-ratio: 640/430;
  }
}
@media (max-width: 928px) {
  .p-top-services__img--02 {
    width: 40%;
    margin-top: 20px;
    margin-left: calc(50% - 50vw);
    aspect-ratio: 440/292;
  }
}
@media (max-width: 928px) {
  .p-top-services__img--03 {
    width: 58%;
    margin-top: calc(-1 * clamp(3.125rem, 1.616rem + 6.179vw, 6.25rem));
    margin-left: auto;
    aspect-ratio: 520/346;
    position: relative;
    z-index: 1;
  }
}

.p-top-brand {
  padding: 120px 0 100px;
  background-color: #f2f2f2;
  color: #222;
}
@media (max-width: 768px) {
  .p-top-brand {
    padding: clamp(5rem, 2.421rem + 10.582vw, 7.5rem) 0;
  }
}
.p-top-brand__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
@media (max-width: 928px) {
  .p-top-brand__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-brand__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 400px;
}
@media (max-width: 768px) {
  .p-top-brand__head {
    margin: 0 auto;
    max-width: 430px;
  }
}
.p-top-brand__title {
  margin: 0;
}
.p-top-brand__title-img {
  display: block;
  width: auto;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .p-top-brand__title-img {
    height: clamp(2.125rem, 1.48rem + 2.646vw, 2.75rem);
    margin: 0 auto;
  }
}
.p-top-brand__title-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  color: transparent;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
.p-top-brand__subtitle {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-top-brand__subtitle {
    text-align: center;
  }
}
.p-top-brand__text {
  margin: 50px 0 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-top-brand__text {
    margin: 40px 0 0;
  }
}
.p-top-brand__link {
  margin-top: 50px;
}
.p-top-brand__grid {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 600px;
  max-width: 600px;
  text-decoration: none;
  margin-right: calc(-1 * clamp(0rem, -26.842rem + 39.474vw, 3.75rem));
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .p-top-brand__grid {
    width: auto;
    margin-right: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .p-top-brand__grid {
    width: 100%;
  }
}
.p-top-brand__grid:hover {
  opacity: 0.8;
}
.p-top-brand__item {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.p-top-brand__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-projects {
  padding: 100px 0 80px;
  background-color: #fff;
  color: #222;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-projects {
    padding: clamp(5rem, 2.421rem + 10.582vw, 7.5rem) 0;
  }
}
.p-top-projects__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-top-projects__head {
  max-width: 100%;
}
@media (max-width: 768px) {
  .p-top-projects__head {
    margin: 0 auto;
    max-width: 430px;
  }
}
.p-top-projects__title {
  margin: 0;
}
.p-top-projects__title-img {
  display: block;
  width: auto;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .p-top-projects__title-img {
    height: clamp(2.125rem, 1.48rem + 2.646vw, 2.75rem);
    margin: 0 auto;
  }
}
.p-top-projects__title-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  color: transparent;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
.p-top-projects__subtitle {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-top-projects__subtitle {
    text-align: center;
  }
}
.p-top-projects__text {
  margin: 32px 0 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-top-projects__text {
    margin-top: 40px;
  }
}
.p-top-projects__slider {
  --pj-scale: 1;
  width: 100%;
  max-width: 100%;
  margin-top: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-projects__slider {
    --pj-scale: 0.52;
    margin-top: 40px;
  }
}
.p-top-projects__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  --track-move: calc(1432px * var(--pj-scale));
  -webkit-animation: pj-marquee 30s linear infinite;
          animation: pj-marquee 30s linear infinite;
}
.p-top-projects__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(8px * var(--pj-scale));
  margin-right: calc(8px * var(--pj-scale));
}
.p-top-projects__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(8px * var(--pj-scale));
}
.p-top-projects__block--w484 {
  width: calc(484px * var(--pj-scale));
}
.p-top-projects__block--w320 {
  width: calc(320px * var(--pj-scale));
}
.p-top-projects__block--w196 {
  width: calc(196px * var(--pj-scale));
}
.p-top-projects__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(8px * var(--pj-scale));
}
.p-top-projects__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(8px * var(--pj-scale));
  width: calc(196px * var(--pj-scale));
}
.p-top-projects__cell {
  margin: 0;
  overflow: hidden;
}
.p-top-projects__cell img,
.p-top-projects__cell .p-top-projects__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-projects__cell--h280 {
  width: calc(484px * var(--pj-scale));
  height: calc(280px * var(--pj-scale));
}
.p-top-projects__cell--sq {
  width: calc(280px * var(--pj-scale));
  height: calc(280px * var(--pj-scale));
}
.p-top-projects__cell--sm {
  width: calc(196px * var(--pj-scale));
  height: calc(136px * var(--pj-scale));
}
.p-top-projects__cell--tall {
  width: calc(196px * var(--pj-scale));
  height: calc(280px * var(--pj-scale));
}
.p-top-projects__cell--big {
  width: calc(320px * var(--pj-scale));
  height: calc(568px * var(--pj-scale));
}
.p-top-projects__video {
  pointer-events: none;
}
.p-top-projects__more {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-projects__more {
    margin-top: 40px;
  }
}

@-webkit-keyframes pj-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(var(--track-move) * -1));
            transform: translateX(calc(var(--track-move) * -1));
  }
}

@keyframes pj-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(var(--track-move) * -1));
            transform: translateX(calc(var(--track-move) * -1));
  }
}
.p-top-news {
  padding: 100px 0;
  background-color: #f2f2f2;
  color: #222;
}
@media (max-width: 768px) {
  .p-top-news {
    padding: clamp(5rem, 3.71rem + 5.291vw, 6.25rem) 0;
  }
}
.p-top-news__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-top-news__head {
  max-width: 100%;
}
@media (max-width: 768px) {
  .p-top-news__head {
    margin: 0 auto;
    max-width: 430px;
  }
}
.p-top-news__title {
  margin: 0;
}
.p-top-news__title-img {
  display: block;
  width: auto;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .p-top-news__title-img {
    height: clamp(2.125rem, 1.48rem + 2.646vw, 2.75rem);
    margin: 0 auto;
  }
}
.p-top-news__title-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  color: transparent;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
.p-top-news__subtitle {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-top-news__subtitle {
    text-align: center;
  }
}
.p-top-news__text {
  margin: 32px 0 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-top-news__text {
    margin-top: 40px;
  }
}
.p-top-news__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 928px) {
  .p-top-news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top-news__more {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-news__more {
    margin-top: 40px;
  }
}

/* ===== 共通：NEWSカード（パターンA：画像拡大＋タイトル下線 右→左）===== */
.c-newscard {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-newscard__img {
  display: block;
  overflow: hidden;
  aspect-ratio: 238/159;
}
.c-newscard__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.c-newscard:hover .c-newscard__img img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.c-newscard__date {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1;
}
.c-newscard__titlewrap {
  display: block;
  margin-top: 12px;
  line-height: 1.5;
}
.c-newscard__title {
  position: relative;
  display: inline;
  font-size: 14px;
  line-height: 1.4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1px;
  -webkit-transition: background-size 0.4s ease;
  transition: background-size 0.4s ease;
  padding-bottom: 2px;
}
.c-newscard:hover .c-newscard__title {
  background-size: 100% 1px;
}

/* ===== 下層共通：上部ビジュアル（高さ500px・パララックス）===== */
.c-lower-visual {
  position: relative;
  width: 100%;
  height: clamp(27.5rem, 20.833rem + 13.889vw, 31.25rem);
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-lower-visual {
    height: clamp(15.625rem, 3.373rem + 50.265vw, 27.5rem);
  }
}
.c-lower-visual__img {
  display: block;
  width: 100%;
  height: 130%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: -15%;
  left: 0;
  will-change: transform;
}
@media (max-width: 768px) {
  .c-lower-visual__img {
    height: 120%;
    top: -10%;
  }
}

/* ===== 下層共通：中央見出し ===== */
.c-lower-intro {
  text-align: center;
}
.c-lower-intro__title {
  margin: 0;
  line-height: 1;
}
.c-lower-intro__title-img {
  display: inline-block;
  width: auto;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .c-lower-intro__title-img {
    height: clamp(2.125rem, 1.48rem + 2.646vw, 2.75rem);
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .c-lower-intro__title-img.sp-about {
    height: clamp(5.5rem, 3.952rem + 6.349vw, 7rem);
  }
}
.c-lower-intro__title-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  color: transparent;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
.c-lower-intro__subtitle {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1;
  color: #222;
}

/* ===== aboutページ ===== */
.p-about {
  padding: 100px 0;
  background-color: #f2f2f2;
  color: #222;
}
.p-about__inner {
  max-width: 1040px;
  margin: 0 auto;
}
.p-about__lead {
  margin-top: 60px;
  text-align: center;
}
.p-about__lead-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}
.p-about__concept {
  margin: 50px 0;
}
@media (max-width: 768px) {
  .p-about__concept {
    margin: clamp(1.25rem, -0.685rem + 7.937vw, 3.125rem) 0 clamp(2.5rem, 1.855rem + 2.646vw, 3.125rem);
  }
}
.p-about__concept-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 62px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .p-about__concept-img {
    height: clamp(2.875rem, 1.843rem + 4.233vw, 3.875rem);
  }
}
.p-about__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.p-philosophy {
  padding: 120px 0 100px;
  background-color: #fff;
  color: #222;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .p-philosophy {
    padding: clamp(4.375rem, 2.44rem + 7.937vw, 6.25rem) 0 clamp(5rem, 3.71rem + 5.291vw, 6.25rem);
  }
}
.p-philosophy__head {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
  text-align: center;
}
.p-philosophy__heading {
  margin: 0;
  font-size: 28px;
  line-height: 1.75;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-philosophy__heading {
    font-size: 24px;
  }
}
.p-philosophy__list {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 80px auto 0;
}
@media (max-width: 768px) {
  .p-philosophy__list {
    margin-top: clamp(3.75rem, 2.46rem + 5.291vw, 5rem);
  }
}
.p-philosophy__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 768px) {
  .p-philosophy__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-philosophy__block + .p-philosophy__block {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .p-philosophy__block + .p-philosophy__block {
    margin-top: 60px;
  }
}
.p-philosophy__block--bleed + .p-philosophy__block--bleed {
  margin-top: 60px;
}
.p-philosophy__block--01 {
  gap: clamp(3.125rem, -2.875rem + 12.5vw, 5.625rem);
}
@media (max-width: 768px) {
  .p-philosophy__block--01 {
    gap: 0;
  }
}
.p-philosophy__block--01 .p-philosophy__body {
  width: clamp(20rem, 8rem + 25vw, 25rem);
}
.p-philosophy__block--02 {
  gap: clamp(3.125rem, 1.625rem + 3.125vw, 3.75rem);
}
@media (max-width: 768px) {
  .p-philosophy__block--02 {
    gap: 0;
  }
}
.p-philosophy__block--02 .p-philosophy__body {
  width: clamp(20rem, 8rem + 25vw, 25rem);
}
.p-philosophy__block--03 {
  gap: clamp(3.125rem, 1.625rem + 3.125vw, 3.75rem);
}
@media (max-width: 768px) {
  .p-philosophy__block--03 {
    gap: 0;
  }
}
.p-philosophy__block--03 .p-philosophy__body {
  width: clamp(20rem, 8rem + 25vw, 25rem);
}
.p-philosophy__block--04 {
  gap: clamp(3.125rem, -2.875rem + 12.5vw, 5.625rem);
}
@media (max-width: 768px) {
  .p-philosophy__block--04 {
    gap: 0;
  }
}
.p-philosophy__block--04 .p-philosophy__body {
  width: clamp(20rem, 8rem + 25vw, 25rem);
}
.p-philosophy__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(20rem, 8rem + 25vw, 25rem);
}
@media (max-width: 768px) {
  .p-philosophy__body {
    display: contents;
  }
}
.p-philosophy__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.75;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-philosophy__title {
    margin-top: 1.5rem;
    font-size: 24px;
    text-align: left;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-philosophy__text {
  margin: 34px 0 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-philosophy__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0.8rem;
  }
}
.p-philosophy__img {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  height: clamp(20rem, 6.95rem + 27.187vw, 25.4375rem);
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-philosophy__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 342/214;
  }
}
.p-philosophy__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-philosophy__img--bleedleft {
  margin-left: calc((100vw - 1040px) / -2);
}
@media (max-width: 1024px) {
  .p-philosophy__img--bleedleft {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .p-philosophy__img--bleedleft {
    width: 100vw;
    margin-left: calc(50% - 50vw - 24px);
  }
}
.p-philosophy__img--bleedright {
  margin-right: -80px;
}

/* ===== 全下層共通：関連ページバナー ===== */
.c-pagelink {
  padding: 80px 0;
  background-color: #d5d5d5;
  color: #222;
}
@media (max-width: 768px) {
  .c-pagelink {
    padding: 50px 0 40px;
  }
}
.c-pagelink__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.c-pagelink__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .c-pagelink__list {
    gap: 20px;
  }
}
.c-pagelink__list:has(.c-pagelink__item:nth-child(2):last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagelink__list:has(.c-pagelink__item:nth-child(2):last-child) .c-pagelink__item {
  width: calc((100% - 80px) / 3);
}
@media (max-width: 768px) {
  .c-pagelink__list:has(.c-pagelink__item:nth-child(2):last-child) .c-pagelink__item {
    width: calc((66% - 20px) / 2);
  }
}
.c-pagelink__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-pagelink__img {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}
@media (max-width: 768px) {
  .c-pagelink__img {
    aspect-ratio: 1/1;
  }
}
.c-pagelink__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.c-pagelink__link:hover .c-pagelink__img > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-pagelink__label {
  position: absolute;
  inset: 0;
  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;
  pointer-events: none;
}
.c-pagelink__label img {
  width: auto;
  height: 26px;
  -webkit-transition: none;
  transition: none;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .c-pagelink__label img {
    height: 13px;
  }
}
.c-pagelink__text {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .c-pagelink__text {
    margin-top: 0.9em;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .c-pagelink__text {
    font-size: 11px;
  }
}

.p-lower-head {
  padding: 100px 0;
  background-color: #f2f2f2;
  color: #222;
}
@media (max-width: 768px) {
  .p-lower-head {
    padding: clamp(4.375rem, 2.44rem + 7.937vw, 6.25rem) 0 clamp(3.75rem, 1.171rem + 10.582vw, 6.25rem);
  }
}
.p-lower-head__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-lower-head__lead {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-lower-head__lead {
    margin-top: 50px;
  }
}
.p-lower-head__lead-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-lower-head__lead-text {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .p-lower-head__text {
    text-align: left;
  }
}

.p-services {
  padding: 100px 0;
  background-color: #f2f2f2;
  color: #222;
}
@media (max-width: 768px) {
  .p-services {
    padding: clamp(3.75rem, 1.171rem + 10.582vw, 6.25rem) 0;
  }
}
.p-services__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-services__lead {
  margin-top: 60px;
  text-align: center;
}
.p-services__lead-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.p-services-intro {
  padding: 100px 0;
  background-color: #fff;
  color: #222;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-services-intro {
    padding: clamp(4.375rem, 2.44rem + 7.937vw, 6.25rem) 0 clamp(5rem, 3.71rem + 5.291vw, 6.25rem);
  }
}
.p-services-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(2.5rem, -0.5rem + 6.25vw, 3.75rem);
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-services-intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-services-intro__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(21.25rem, -1.25rem + 46.875vw, 30.625rem);
}
@media (max-width: 768px) {
  .p-services-intro__body {
    width: 100%;
  }
}
.p-services-intro__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-services-intro__title {
    font-size: 24px;
  }
}
.p-services-intro__text {
  margin: 40px 0 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-services-intro__text {
    margin: 30px 0 0;
  }
}
.p-services-intro__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-services-intro__links {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 8px;
    margin-top: 30px;
  }
}
.p-services-intro__images {
  position: relative;
  top: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: clamp(30rem, 10.5rem + 40.625vw, 38.125rem);
  margin-right: -120px;
}
@media (max-width: 768px) {
  .p-services-intro__images {
    top: 0;
    gap: 4px;
    width: 100vw;
    margin-right: calc(50% - 50vw);
  }
}
.p-services-intro__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .p-services-intro__row {
    gap: 4px;
  }
}
.p-services-intro__img {
  margin: 0;
  overflow: hidden;
}
.p-services-intro__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-services-intro__img--main {
  width: 100%;
  aspect-ratio: 610/407;
}
@media (max-width: 768px) {
  .p-services-intro__img--main {
    aspect-ratio: 366/244;
  }
}
.p-services-intro__img--sub {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  aspect-ratio: 610/407;
}
@media (max-width: 768px) {
  .p-services-intro__img--sub {
    aspect-ratio: 366/244;
  }
}

.p-services-shop {
  padding: 100px 0;
  background-color: #f2f2f2;
  color: #222;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-services-shop {
    padding: clamp(4.375rem, 2.44rem + 7.937vw, 6.25rem) 0 clamp(5rem, 3.71rem + 5.291vw, 6.25rem);
  }
}
.p-services-shop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(2.5rem, -0.5rem + 6.25vw, 3.75rem);
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-services-shop__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
  }
}
.p-services-shop__images {
  position: relative;
  top: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: clamp(30rem, 10.5rem + 40.625vw, 38.125rem);
  margin-left: -120px;
}
@media (max-width: 768px) {
  .p-services-shop__images {
    top: 0;
    gap: 4px;
    width: 100vw;
    margin-right: 0;
    margin-left: calc(50% - 50vw - 24px);
  }
}
.p-services-shop__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .p-services-shop__row {
    gap: 4px;
  }
}
.p-services-shop__img {
  margin: 0;
  overflow: hidden;
}
.p-services-shop__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-services-shop__img--main {
  width: 100%;
  aspect-ratio: 610/407;
}
@media (max-width: 768px) {
  .p-services-shop__img--main {
    aspect-ratio: 366/244;
  }
}
.p-services-shop__img--sub {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  aspect-ratio: 610/407;
}
@media (max-width: 768px) {
  .p-services-shop__img--sub {
    aspect-ratio: 366/244;
  }
}
.p-services-shop__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.p-services-shop__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-services-shop__title {
    font-size: 24px;
  }
}
.p-services-shop__text {
  margin: 40px 0 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-services-shop__text {
    margin-top: 30px;
  }
}
.p-services-shop__shops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .p-services-shop__shops {
    gap: 20px;
  }
}

/* ===== 共通：店舗カード（ホバーで画像拡大）===== */
.c-shopcard {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-shopcard__img {
  display: block;
  overflow: hidden;
  aspect-ratio: 211/140;
}
.c-shopcard__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.c-shopcard:hover .c-shopcard__img > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-shopcard__name {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1;
}

.p-services-gift {
  padding: 100px 0;
  background-color: #fff;
  color: #222;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-services-gift {
    padding: clamp(4.375rem, 2.44rem + 7.937vw, 6.25rem) 0 clamp(5rem, 3.71rem + 5.291vw, 6.25rem);
  }
}
.p-services-gift__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(2.5rem, -0.5rem + 6.25vw, 3.75rem);
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-services-gift__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-services-gift__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(21.25rem, -1.25rem + 46.875vw, 30.625rem);
}
@media (max-width: 768px) {
  .p-services-gift__body {
    width: 100%;
  }
}
.p-services-gift__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-services-gift__title {
    font-size: 24px;
  }
}
.p-services-gift__text {
  margin: 40px 0 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-services-gift__text {
    margin-top: 30px;
  }
}
.p-services-gift__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  width: clamp(30rem, 10.5rem + 40.625vw, 38.125rem);
  margin-right: -120px;
  aspect-ratio: 610/407;
}
@media (max-width: 768px) {
  .p-services-gift__img {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    aspect-ratio: 366/244;
  }
}
.p-services-gift__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-services-future {
  padding: 100px 0;
  background-color: #f2f2f2;
  color: #222;
}
@media (max-width: 768px) {
  .p-services-future {
    padding: clamp(4.375rem, 2.44rem + 7.937vw, 6.25rem) 0 clamp(5rem, 3.71rem + 5.291vw, 6.25rem);
  }
}
.p-services-future__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-services-future__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-services-future__title {
    font-size: 24px;
  }
}
.p-services-future__text {
  margin: 34px 0 0;
  width: 700px;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-services-future__text {
    margin-top: 30px;
  }
}
.p-services-future__img {
  margin: 60px 0 0;
}
@media (max-width: 768px) {
  .p-services-future__img {
    margin-top: 40px;
  }
}
.p-services-future__img img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .p-services-future__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 342/214;
  }
}

.p-brand__list {
  max-width: 1040px;
  margin: 60px auto 0;
}
@media (max-width: 768px) {
  .p-brand__list {
    width: 100%;
    margin-top: 50px;
  }
}
.p-brand__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .p-brand__grid {
    gap: 20px 4px;
  }
}

/* ===== 共通：ブランドカード（画像上にロゴ＋下に名前／ホバー拡大）===== */
.c-brandcard {
  display: block;
  text-decoration: none;
  color: inherit;
}
.c-brandcard__img {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.c-brandcard__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.c-brandcard:hover .c-brandcard__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-brandcard__name {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 768px) {
  .c-brandcard__name {
    margin-top: 8px;
    font-size: 12px;
  }
}

.p-brand-detail {
  position: relative;
  padding: 120px 0 100px;
  background-color: #fff;
  color: #222;
}
@media (max-width: 768px) {
  .p-brand-detail {
    padding: 80px 0;
  }
}
.p-brand-detail + .p-brand-detail::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  top: 0;
  width: 100%;
  height: 1px;
  max-width: 1040px;
  margin: 0 auto;
  border-top: solid 1px #999999;
}
@media (max-width: 768px) {
  .p-brand-detail + .p-brand-detail::before {
    width: calc(100% - 48px);
  }
}
.p-brand-detail__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-brand-detail__logo {
  margin: 0;
  text-align: center;
  line-height: 1;
}
.p-brand-detail__logo-img {
  display: inline-block;
  width: auto;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-brand-detail__logo-img.u-amahare {
  height: 76px;
}
@media (max-width: 768px) {
  .p-brand-detail__logo-img.u-amahare {
    height: 64px;
  }
}
.p-brand-detail__logo-img.u-amart {
  height: 100px;
}
@media (max-width: 768px) {
  .p-brand-detail__logo-img.u-amart {
    height: 80px;
  }
}
.p-brand-detail__logo-img.u-amenoie {
  height: 50px;
}
@media (max-width: 768px) {
  .p-brand-detail__logo-img.u-amenoie {
    height: 38px;
  }
}
.p-brand-detail__logo-img.u-baxter {
  height: 120px;
}
@media (max-width: 768px) {
  .p-brand-detail__logo-img.u-baxter {
    height: 105px;
  }
}
.p-brand-detail__logo-img.u-meridiani {
  height: 40px;
}
@media (max-width: 768px) {
  .p-brand-detail__logo-img.u-meridiani {
    height: 31px;
  }
}
.p-brand-detail__logo-img.u-gervasoni {
  height: 73px;
}
@media (max-width: 768px) {
  .p-brand-detail__logo-img.u-gervasoni {
    height: 55px;
  }
}
.p-brand-detail__logo-img.u-draga {
  height: 97px;
}
@media (max-width: 768px) {
  .p-brand-detail__logo-img.u-draga {
    height: 69px;
  }
}
.p-brand-detail__logo-img.u-mohebban {
  height: 63px;
}
@media (max-width: 768px) {
  .p-brand-detail__logo-img.u-mohebban {
    height: 49px;
  }
}
.p-brand-detail__logo-img.u-verywood {
  height: 132px;
}
@media (max-width: 768px) {
  .p-brand-detail__logo-img.u-verywood {
    height: 91px;
  }
}
.p-brand-detail__logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  color: transparent;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
.p-brand-detail__gallery {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .p-brand-detail__gallery {
    margin-top: 50px;
  }
}
.p-brand-detail__main {
  margin: 0;
  width: 100%;
  height: 590px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-brand-detail__main {
    height: clamp(12.125rem, 0rem + 49.744vw, 24.25rem);
  }
}
.p-brand-detail__main img {
  display: block;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  top: -15%;
  will-change: transform;
}
.p-brand-detail__subs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .p-brand-detail__subs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-top: 4px;
    width: 100%;
  }
}
.p-brand-detail__sub {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 254/190;
}
@media (max-width: 768px) {
  .p-brand-detail__sub {
    width: 100%;
    height: auto;
  }
}
.p-brand-detail__sub img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-brand-detail__body {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-brand-detail__body {
    margin-top: 50px;
  }
}
.p-brand-detail__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .p-brand-detail__text {
    font-size: 14px;
  }
}
.p-brand-detail__text + .p-brand-detail__text {
  margin-top: 28px;
}
.p-brand-detail__shops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .p-brand-detail__shops {
    grid-template-columns: auto;
    max-width: 220px;
    margin: 60px auto 0;
  }
}
.p-brand-detail__links {
  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: 24px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .p-brand-detail__links {
    gap: 15px;
    margin-top: 60px;
  }
}
.p-brand-detail__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.p-brand-detail__link-icon {
  position: relative;
  top: -2px;
  width: 14px;
  height: 14px;
}

/* ===== 共通：店舗情報（アコーディオン付き）===== */
.c-shopinfo__img {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 324/216;
}
.c-shopinfo__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.c-shopinfo:hover .c-shopinfo__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-shopinfo__name {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.4;
}
.c-shopinfo__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.c-shopinfo__sns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
}
.c-shopinfo__sns-icon {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-shopinfo__sns-label {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  padding-bottom: 2px;
  white-space: nowrap;
}
.c-shopinfo__sns-label::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.c-shopinfo__sns-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-shopinfo__sns:hover .c-shopinfo__sns-label::before {
  opacity: 0;
}
.c-shopinfo__sns:hover .c-shopinfo__sns-label::after {
  -webkit-animation: nav-underline 1.2s linear infinite;
          animation: nav-underline 1.2s linear infinite;
}
.c-shopinfo__accordion {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .c-shopinfo__accordion {
    margin-top: 14px;
  }
}
.c-shopinfo__toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-shopinfo__toggle-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .c-shopinfo__toggle-icon {
    -webkit-transform: translateY(-2px) rotate(45deg);
            transform: translateY(-2px) rotate(45deg);
  }
}
.c-shopinfo__panel {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.c-shopinfo__detail {
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .c-shopinfo__detail {
    padding-top: 12px;
  }
}
.c-shopinfo__detail p + p {
  margin-top: 15px;
}
.c-shopinfo__detail--note {
  font-size: 12px;
}
.c-shopinfo.is-open .c-shopinfo__toggle-icon {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media (max-width: 768px) {
  .c-shopinfo.is-open .c-shopinfo__toggle-icon {
    -webkit-transform: translateY(1px) rotate(-135deg);
            transform: translateY(1px) rotate(-135deg);
  }
}
.c-shopinfo.is-open .c-shopinfo__panel {
  max-height: 600px;
}

.p-company {
  padding: 100px 0 80px;
  background-color: #fff;
  color: #222;
}
@media (max-width: 768px) {
  .p-company {
    padding: clamp(5rem, 3.71rem + 5.291vw, 6.25rem) 0;
  }
}
.p-company__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-company__list {
  margin: 0;
}
.p-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 70px;
  padding: 36px 0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .p-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding: 26px 0;
  }
}
.p-company__row:last-child {
  border-bottom: none;
}
.p-company__term {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 190px;
  font-size: 16px;
  line-height: 1.75;
}
.p-company__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}
.p-company__map {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.p-company__map-icon {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.p-company__group-logo {
  display: block;
  width: auto;
  height: 42px;
  margin-bottom: 20px;
}
.p-company__group-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-company__group-list li {
  font-size: 16px;
  line-height: 1.8;
}

.p-contact {
  padding: 100px 0 80px;
  background-color: #fff;
  color: #222;
}
@media (max-width: 768px) {
  .p-contact {
    padding: clamp(3.75rem, 1.171rem + 10.582vw, 6.25rem) 0;
  }
}
.p-contact__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-contact__tabs {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-contact__tabs {
    margin-bottom: 60px;
  }
}
.p-contact__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(2.5rem, -0.5rem + 6.25vw, 3.75rem);
}
@media (max-width: 768px) {
  .p-contact__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.p-contact__lead {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(20rem, -5.5rem + 53.125vw, 30.625rem);
}
@media (max-width: 768px) {
  .p-contact__lead {
    width: 100%;
  }
}
.p-contact__lead-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}
.p-contact__form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

/* ===== タブ（パターンA：ホバー＆選択中で罫線）===== */
.c-tab {
  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;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-tab__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-tab__item::before {
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 28px;
  background-color: #ccc;
}
@media (max-width: 768px) {
  .c-tab__item::before {
    margin: 0 12px;
  }
}
.c-tab__item:last-child::after {
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 28px;
  background-color: #ccc;
}
@media (max-width: 768px) {
  .c-tab__item:last-child::after {
    margin: 0 12px;
  }
}
.c-tab__link, .c-tab__btn {
  padding: 0;
  border: none;
  background: none;
  font-size: 16px;
  color: #222;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 768px) {
  .c-tab__link, .c-tab__btn {
    font-size: 15px;
  }
}
.c-tab__label {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  line-height: 1.1;
}
.c-tab__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-tab__link.is-active .c-tab__label::after, .c-tab__btn.is-active .c-tab__label::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-tab__link:hover .c-tab__label::after, .c-tab__btn:hover .c-tab__label::after {
  -webkit-animation: nav-underline 1s linear infinite;
          animation: nav-underline 1s linear infinite;
}

/* ===== フォーム ===== */
.c-form__row + .c-form__row {
  margin-top: 24px;
}
.c-form__label {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1;
}
.c-form__input, .c-form__textarea {
  width: 100%;
  padding: 4px 14px;
  border: none;
  background-color: #f0f0f0;
  font-size: 16px;
  font-family: inherit;
  color: #222;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-form__input::-webkit-input-placeholder, .c-form__textarea::-webkit-input-placeholder {
  color: #999;
}
.c-form__input::-moz-placeholder, .c-form__textarea::-moz-placeholder {
  color: #999;
}
.c-form__input:-ms-input-placeholder, .c-form__textarea:-ms-input-placeholder {
  color: #999;
}
.c-form__input::-ms-input-placeholder, .c-form__textarea::-ms-input-placeholder {
  color: #999;
}
.c-form__input::placeholder, .c-form__textarea::placeholder {
  color: #999;
}
.c-form__textarea {
  resize: vertical;
  min-height: 320px;
}
.c-form__agree {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .c-form__agree {
    margin-top: 24px;
  }
}
.c-form__check {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.c-form__checkbox {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
}
.c-form__check-mark {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #888;
  background-color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-form__checkbox:checked + .c-form__check-mark {
  background-color: #222;
  border-color: #222;
}
.c-form__checkbox:checked + .c-form__check-mark::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-form__check-text {
  font-size: 14px;
}
.c-form__submit {
  position: relative;
  margin-top: 24px;
  text-align: center;
}
.c-form__submit .wpcf7-spinner {
  position: absolute;
}
.c-form__button {
  padding: 14px 40px;
  border: none;
  background-color: rgba(18, 8, 8, 0.9);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  letter-spacing: 0.05em;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-form__button:hover {
  opacity: 0.8;
}
.c-form__privacy {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.p-privacy {
  position: relative;
  padding: 80px 0 120px;
  background-color: #fff;
  color: #222;
}
@media (max-width: 768px) {
  .p-privacy {
    padding: clamp(3.75rem, 2.46rem + 5.291vw, 5rem) 0 clamp(5rem, 2.421rem + 10.582vw, 7.5rem);
  }
}
.p-privacy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 1px;
  background-color: #d5d5d5;
}
@media (max-width: 768px) {
  .p-privacy::before {
    width: calc(100% - 48px);
  }
}
.p-privacy__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-privacy__title {
  margin: 0 0 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.p-privacy__block {
  margin-top: 1.5rem;
}
.p-privacy__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.p-privacy__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}
.p-privacy__list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: privacy;
}
.p-privacy__list li {
  font-size: 14px;
  line-height: 1.9;
  counter-increment: privacy;
}
.p-privacy__list li::before {
  content: counter(privacy) ". ";
}

.p-recruit {
  padding: 100px 0;
  background-color: #fff;
  color: #222;
}
@media (max-width: 768px) {
  .p-recruit {
    padding: clamp(3.75rem, 1.171rem + 10.582vw, 6.25rem) 0 clamp(5rem, 3.71rem + 5.291vw, 6.25rem);
  }
}
.p-recruit__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-recruit__tabs {
  margin-bottom: 120px;
}
.p-recruit__panel {
  display: none;
}
.p-recruit__panel.is-active {
  display: block;
}
.p-recruit__title {
  margin: 0;
  font-size: clamp(1.75rem, 0.55rem + 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-recruit__title {
    font-size: 24px;
  }
}
.p-recruit__lead {
  margin-top: 40px;
}
.p-recruit__lead-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}
.p-recruit__lead-text + .p-recruit__lead-text {
  margin-top: 24px;
}
.p-recruit__list {
  margin: 80px 0 0;
}
@media (max-width: 768px) {
  .p-recruit__list {
    margin-top: 40px;
  }
}
.p-recruit__list + .p-recruit__title {
  margin-top: 100px;
  padding-top: 100px;
  border-top: solid 1px #999999;
}
@media (max-width: 768px) {
  .p-recruit__list + .p-recruit__title {
    margin-top: 80px;
    padding-top: 80px;
  }
}
.p-recruit__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .p-recruit__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    border-top: solid 1px #d5d5d5;
  }
}
.p-recruit__term {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 200px;
  font-size: 16px;
  line-height: 1.8;
}
.p-recruit__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}
.p-recruit__points {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-recruit__points li {
  line-height: 1.8;
}
.p-recruit__points li::before {
  content: "・";
}

.p-projects {
  padding: 100px 0;
  background-color: #fff;
  color: #222;
}
@media (max-width: 768px) {
  .p-projects {
    padding: clamp(3.75rem, 1.171rem + 10.582vw, 6.25rem) 0 clamp(5rem, 3.71rem + 5.291vw, 6.25rem);
  }
}
.p-projects__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-projects__sort {
  margin-bottom: 60px;
}
.p-projects__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 60px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 640px) {
  .p-projects__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
.p-projects__pager {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-projects__pager {
    margin-top: 50px;
  }
}
.p-projects__next {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
}

/* ===== ソートタブ（パターンA：ホバー＆選択中で罫線）===== */
.c-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  row-gap: 12px;
}
@media (max-width: 768px) {
  .c-sort {
    row-gap: 10px;
  }
}
.c-sort--brand {
  margin-top: 14px;
}
.c-sort__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-sort__item::before {
  content: "";
  width: 1px;
  height: 14px;
  margin: 0 22px;
  background-color: #ccc;
}
@media (max-width: 768px) {
  .c-sort__item::before {
    margin: 0 12px;
  }
}
.c-sort__item.is-row-last::after {
  content: "";
  width: 1px;
  height: 14px;
  margin: 0 22px;
  background-color: #ccc;
}
@media (max-width: 768px) {
  .c-sort__item.is-row-last::after {
    margin: 0 12px;
  }
}
.c-sort__btn {
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 768px) {
  .c-sort__btn {
    font-size: 13px;
  }
}
.c-sort__label {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  line-height: 1.1;
}
.c-sort__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-sort__btn.is-active .c-sort__label::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-sort__btn:hover .c-sort__label::after {
  -webkit-animation: nav-underline 0.8s linear infinite;
          animation: nav-underline 0.8s linear infinite;
}

/* ===== 実績カード ===== */
.c-project {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
}
.c-project__img {
  display: block;
  width: 100%;
  aspect-ratio: 324/216;
  overflow: hidden;
}
.c-project__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.c-project:hover .c-project__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-project__title {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.c-pager {
  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;
}
.c-pager__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}
.c-pager__prev, .c-pager__next {
  text-decoration: none;
  color: inherit;
}
.c-pager__nav-label {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 1.2;
}
.c-pager__nav-label::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.c-pager__nav-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-pager__prev:hover .c-pager__nav-label::before, .c-pager__next:hover .c-pager__nav-label::before {
  opacity: 0;
}
.c-pager__prev:hover .c-pager__nav-label::after, .c-pager__next:hover .c-pager__nav-label::after {
  -webkit-animation: nav-underline 1.2s linear infinite;
          animation: nav-underline 1.2s linear infinite;
}
.c-pager__nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-pager__current {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.c-pager__link {
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.c-pager__link:hover {
  color: #222;
}
.c-pager__dots {
  font-size: 14px;
  color: #aaa;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}
.c-modal.is-open {
  display: block;
}
.c-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  -webkit-transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}
.c-modal.is-shown .c-modal__overlay {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.c-modal__logo {
  position: fixed;
  top: 17px;
  left: 50px;
  z-index: 3;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease 0.15s;
  transition: opacity 0.4s ease 0.15s;
}
@media (max-width: 1024px) {
  .c-modal__logo {
    top: 32.5px;
    left: 24px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.c-modal__logo img {
  display: block;
  width: auto;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .c-modal__logo img {
    height: 16px;
  }
}
.c-modal.is-shown .c-modal__logo {
  opacity: 1;
}
.c-modal__close {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 3;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease 0.15s;
  transition: opacity 0.4s ease 0.15s;
}
@media (max-width: 768px) {
  .c-modal__close {
    top: 16px;
    right: 0px;
    width: 20px;
    height: 20px;
  }
}
.c-modal__close-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 1.5px;
  background-color: #222;
}
.c-modal__close-bar:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
          transform: translate(-50%, -50%) rotate(30deg);
}
.c-modal__close-bar:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
          transform: translate(-50%, -50%) rotate(-30deg);
}
@media (max-width: 768px) {
  .c-modal__close-bar {
    width: 24px;
  }
}
.c-modal.is-shown .c-modal__close {
  opacity: 1;
}
.c-modal__container {
  position: relative;
  z-index: 1;
  width: calc(100% - 80px);
  max-width: 1180px;
  max-height: calc(100vh - 80px);
  margin: 40px auto;
  overflow-y: auto;
  opacity: 0;
  -webkit-transform: scale3d(0.95, 0.95, 0.95);
          transform: scale3d(0.95, 0.95, 0.95);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 768px) {
  .c-modal__container {
    width: 100%;
    margin: 0 auto;
    max-height: 100vh;
    padding-top: 60px;
    mask-image: linear-gradient(to bottom, transparent 0px, rgb(255, 255, 255) 100px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0px, rgb(255, 255, 255) 100px);
  }
}
.c-modal__container::-webkit-scrollbar {
  display: none;
}
.c-modal.is-shown .c-modal__container {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.c-modal__close {
  position: fixed;
  top: 17px;
  right: 50px;
  z-index: 3;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease 0.15s;
  transition: opacity 0.4s ease 0.15s;
}
@media (max-width: 1024px) {
  .c-modal__close {
    top: 32.5px;
    right: 24px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .c-modal__close {
    top: 32.5px;
    right: 24px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.c-modal__close-bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222;
}
.c-modal__close-bar:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal__close-bar:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .c-modal__close-bar {
    width: 100%;
  }
}
.c-modal.is-shown .c-modal__close {
  opacity: 1;
}
.c-modal__arrow {
  position: fixed;
  top: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease 0.15s;
  transition: opacity 0.4s ease 0.15s;
}
@media (max-width: 768px) {
  .c-modal__arrow {
    width: 20px;
    height: 30px;
  }
}
.c-modal__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
}
@media (max-width: 768px) {
  .c-modal__arrow::before {
    width: 16px;
    height: 16px;
  }
}
.c-modal__arrow--prev {
  left: 20px;
}
@media (max-width: 768px) {
  .c-modal__arrow--prev {
    left: 10px;
  }
}
.c-modal__arrow--prev::before {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.c-modal__arrow--next {
  right: 20px;
}
@media (max-width: 768px) {
  .c-modal__arrow--next {
    right: 10px;
  }
}
.c-modal__arrow--next::before {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
.c-modal.is-shown .c-modal__arrow {
  opacity: 1;
}
.c-modal__body {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 0 80px;
}
@media (max-width: 768px) {
  .c-modal__body {
    padding-top: 60px;
    padding-inline: 46px;
  }
}
.c-modal__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .c-modal__title {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .c-modal__title {
    font-size: 16px;
  }
}
.c-modal__cat {
  margin: 10px 0 0;
  font-size: 14px;
  color: #666;
}
.c-modal__place {
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 1.8;
}
.c-modal__text {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.9;
}
.c-modal__text a {
  color: #222222;
}
.c-modal__credit {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.9;
}
.c-modal__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-modal__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}
.c-modal__main {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 490px;
  height: 327px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-modal__main {
    width: 100%;
    height: auto;
    aspect-ratio: 490/327;
  }
}
.c-modal__main img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-modal__subs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 235px);
  grid-template-rows: repeat(2, 156px);
  gap: 15px 20px;
  -ms-flex-line-pack: start;
      align-content: start;
}
@media (max-width: 768px) {
  .c-modal__subs {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 4px;
  }
}
.c-modal__sub {
  margin: 0;
  width: 235px;
  height: 156px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-modal__sub {
    width: 100%;
    height: auto;
    aspect-ratio: 139/92;
  }
}
.c-modal__sub img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-modal__sub--tall {
  width: 235px;
  height: auto;
  grid-row: 1/span 2;
  grid-column: 2;
}
@media (max-width: 768px) {
  .c-modal__sub--tall {
    width: 100%;
    aspect-ratio: 139/188;
  }
}

body.is-modal-open {
  overflow: hidden;
}

.p-news {
  padding: 100px 0;
  background-color: #fff;
  color: #222;
}
@media (max-width: 768px) {
  .p-news {
    padding: clamp(5rem, 3.71rem + 5.291vw, 6.25rem) 0;
  }
}
.p-news__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  margin: 0 auto;
}
.p-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.5rem, -0.5rem + 6.25vw, 3.75rem);
  padding-bottom: 100px;
  margin-bottom: 120px;
  border-bottom: 1px solid #999999;
  scroll-margin-top: 84px;
}
@media (max-width: 1024px) {
  .p-news__item {
    scroll-margin-top: 95px;
  }
}
@media (max-width: 768px) {
  .p-news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}
.p-news__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(21.25rem, -1.4rem + 47.188vw, 30.6875rem);
  margin: 0;
}
@media (max-width: 768px) {
  .p-news__img {
    width: 100%;
  }
}
.p-news__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-news__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.p-news__date {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.p-news__title {
  margin: 30px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
}
.p-news__text {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .p-news__text {
    margin-top: 40px;
  }
}
.p-news__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}
.p-news__text p + p {
  margin-top: 20px;
}
.p-news__text a {
  color: #222222;
}
.p-news__detail {
  margin-top: 50px;
}
.p-news__detail + p {
  margin-top: 20px;
}
.p-news__divider {
  display: block;
  width: 140px;
  height: 1px;
  background-color: #222222;
  margin: 10px 0;
}
.p-news__info {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.9;
}
.p-news__info dt {
  margin: 0;
}
.p-news__info dd {
  margin: 0;
}
.p-news__pager {
  margin-top: 60px;
  text-align: center;
}
.p-news__archive {
  margin-top: 60px;
  text-align: center;
}
.p-news__archive-title {
  margin: 0 0 18px;
  font-size: 14px;
}

@keyframes nav-underline {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  40% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}
.l-footer {
  background-color: #120808;
}
.l-footer__inner {
  width: 100%;
  max-width: 1088px;
  margin-inline: auto;
  padding-inline: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

/* ===== Footer nav ===== */
.c-fnav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: clamp(1.25rem, -1.75rem + 6.25vw, 2.5rem);
     -moz-column-gap: clamp(1.25rem, -1.75rem + 6.25vw, 2.5rem);
          column-gap: clamp(1.25rem, -1.75rem + 6.25vw, 2.5rem);
  row-gap: clamp(1.25rem, -1.75rem + 6.25vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .c-fnav__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 40px;
  }
}
.c-fnav__link {
  display: block;
  text-decoration: none;
}
.c-fnav__en {
  position: relative;
  display: block;
  padding-bottom: 5px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1;
}
.c-fnav__en::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
.c-fnav__en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.c-fnav__link:hover .c-fnav__en::after {
  -webkit-animation: nav-underline 1s linear infinite;
          animation: nav-underline 1s linear infinite;
}
.c-fnav__jp {
  display: block;
  margin: 8px 0 0;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

/* ===== Footer brand ===== */
.c-fbrand {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
@media (max-width: 768px) {
  .c-fbrand {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-top: 100px;
  }
}
.c-fbrand__logo {
  margin: 0;
}
.c-fbrand__link {
  position: relative;
  display: block;
}
.c-fbrand__img {
  display: block;
  width: clamp(13.125rem, 7.875rem + 10.938vw, 15.3125rem);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .c-fbrand__img {
    width: auto;
    height: 33px;
  }
}
.c-fbrand__text {
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
  font-size: 40px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}
.c-fbrand__copy {
  margin-top: auto;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media (max-width: 768px) {
  .c-fbrand__copy {
    margin-top: 24px;
  }
}

/*
 * 汎用
 * -------------------------------------------------------------------
 */
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768.1px) {
  .sp {
    display: none !important;
  }
}
.tx_c {
  text-align: center;
}

.tx_l {
  text-align: left;
}

.tx_r {
  text-align: right;
}

/* 余白 */
.ma-0 {
  margin: 0rem !important;
}
.mb-0 {
  margin-bottom: 0rem !important;
}
.mt-0 {
  margin-top: 0rem !important;
}
.ml-0 {
  margin-left: 0rem !important;
}
.mr-0 {
  margin-right: 0rem !important;
}

.pa-0 {
  padding: 0rem !important;
}
.pb-0 {
  padding-bottom: 0rem !important;
}
.pt-0 {
  padding-top: 0rem !important;
}
.pl-0 {
  padding-left: 0rem !important;
}
.pr-0 {
  padding-right: 0rem !important;
}

.ma-1 {
  margin: 1rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mt-1 {
  margin-top: 1rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}

.pa-1 {
  padding: 1rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pl-1 {
  padding-left: 1rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}

.ma-2 {
  margin: 2rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}

.pa-2 {
  padding: 2rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pl-2 {
  padding-left: 2rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}

.ma-3 {
  margin: 3rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}

.pa-3 {
  padding: 3rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pl-3 {
  padding-left: 3rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}

.ma-4 {
  margin: 4rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}

.pa-4 {
  padding: 4rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pl-4 {
  padding-left: 4rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}

.ma-5 {
  margin: 5rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}

.pa-5 {
  padding: 5rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pl-5 {
  padding-left: 5rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}

.ma-6 {
  margin: 6rem !important;
}
.mb-6 {
  margin-bottom: 6rem !important;
}
.mt-6 {
  margin-top: 6rem !important;
}
.ml-6 {
  margin-left: 6rem !important;
}
.mr-6 {
  margin-right: 6rem !important;
}

.pa-6 {
  padding: 6rem !important;
}
.pb-6 {
  padding-bottom: 6rem !important;
}
.pt-6 {
  padding-top: 6rem !important;
}
.pl-6 {
  padding-left: 6rem !important;
}
.pr-6 {
  padding-right: 6rem !important;
}

.ma-7 {
  margin: 7rem !important;
}
.mb-7 {
  margin-bottom: 7rem !important;
}
.mt-7 {
  margin-top: 7rem !important;
}
.ml-7 {
  margin-left: 7rem !important;
}
.mr-7 {
  margin-right: 7rem !important;
}

.pa-7 {
  padding: 7rem !important;
}
.pb-7 {
  padding-bottom: 7rem !important;
}
.pt-7 {
  padding-top: 7rem !important;
}
.pl-7 {
  padding-left: 7rem !important;
}
.pr-7 {
  padding-right: 7rem !important;
}

.ma-8 {
  margin: 8rem !important;
}
.mb-8 {
  margin-bottom: 8rem !important;
}
.mt-8 {
  margin-top: 8rem !important;
}
.ml-8 {
  margin-left: 8rem !important;
}
.mr-8 {
  margin-right: 8rem !important;
}

.pa-8 {
  padding: 8rem !important;
}
.pb-8 {
  padding-bottom: 8rem !important;
}
.pt-8 {
  padding-top: 8rem !important;
}
.pl-8 {
  padding-left: 8rem !important;
}
.pr-8 {
  padding-right: 8rem !important;
}

.ma-9 {
  margin: 9rem !important;
}
.mb-9 {
  margin-bottom: 9rem !important;
}
.mt-9 {
  margin-top: 9rem !important;
}
.ml-9 {
  margin-left: 9rem !important;
}
.mr-9 {
  margin-right: 9rem !important;
}

.pa-9 {
  padding: 9rem !important;
}
.pb-9 {
  padding-bottom: 9rem !important;
}
.pt-9 {
  padding-top: 9rem !important;
}
.pl-9 {
  padding-left: 9rem !important;
}
.pr-9 {
  padding-right: 9rem !important;
}

.ma-10 {
  margin: 10rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}

.pa-10 {
  padding: 10rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pl-10 {
  padding-left: 10rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}