@charset "utf-8";
:root {
  /* color */
  --white: #fff;
  --black1: #000000;
  --black2: #333333;
  --black3: #555454;
  --gray1: #929292;
  --gray2: #edecec;
  --gray3: #d5d4d4;
  --gray4: #e2e2e2;
  --gray5: #d7d7d7;
  --gray6: #e1e1e1;
  --gray7: #f0f0f0;
  --gray8: #8b8b8b;
  --gray9: #bfbfbf;
  --gray10: #b2b2b2;
  --gray11: #dcdcdc;
  --gray12: #f4f4f4;
  --gray13: #f6f6f6;
  --gray14: #fafafa;
  --gray15: #f6f6f6;
  --red1: #c92b2f;
  --red2: #ec3947;
  --red3: #fff2f2;
  --brown1: #ac7c7d;
  /* content */
  --content-width-large: 1360px;
  --content-width-small: 1024px;
}

html {
  font-size: 100%;
}

body {
  color: var(--black);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: initial;
  line-height: 1;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

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

li {
  list-style: none;
}

/* 共通パーツ
------------------------------------------------------- */
.section-title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
  color: var(--white);
}

.section-title.section-title__gray {
  color: var(--black1);
}

.section-title__ja {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.section-title__red-highlight::after {
  content: "";
  display: block;
  width: calc(clamp(7rem, -4.033rem + 33.43vw, 13.938rem));
  aspect-ratio: 223/32;
  background: url(../img/calligraphy.webp) no-repeat center center/contain;
  position: absolute;
  z-index: -1;
  right: 0;
  left: 0;
  top: 18px;
  margin-inline: auto;
}

.section-title__gray-highlight::after {
  content: "";
  display: block;
  width: calc(clamp(7rem, -4.033rem + 33.43vw, 13.938rem));
  aspect-ratio: 223/32;
  background: url(../img/calligraphy-gray.webp) no-repeat center center/contain;
  position: absolute;
  z-index: -1;
  right: 0;
  left: 0;
  top: 18px;
  margin-inline: auto;
}

.section-title__en {
  font-size: 1rem;
  font-family: "Cinzel", serif;
  letter-spacing: 0.65em;
}

.no-scroll {
  overflow: hidden;
  width: 100%;
}

.for-sp,
.for-tab {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 860px) {
  .section-title {
    gap: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
  }

  .section-title__ja {
    font-size: calc(clamp(1.438rem, -0.849rem + 6.93vw, 2.875rem));
  }

  .section-title__en {
    font-size: calc(clamp(0.625rem, -0.369rem + 3.01vw, 1.25rem));
  }

  .for-pc {
    display: none;
  }
}

@media screen and (max-width: 528px) {
  .for-pc {
    display: none;
  }

  .for-tab {
    display: none;
  }

  .for-sp {
    display: block;
  }
}

/* header
----------------------------------------------------- */

.header {
  height: 70px;
  width: 100%;
  display: grid;
  align-items: center;
  position: fixed;
  z-index: 60;
  transition: all 0.4s ease-out;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 1);
}

.single .header {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 200%);
}

.single .header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 29px 0;
}

.header__logo {
  width: 237px;
  height: auto;
  z-index: 90;
  transition: all 0.4s ease-out;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__logo-link--scrolled {
  display: none;
}

.header.is-scrolled .header__logo-link > img:first-of-type {
  display: none;
}

.header.is-scrolled .header__logo-link--scrolled {
  display: block;
}

.header__nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: calc(clamp(1.75rem, -2.835rem + 8.53vw, 3.563rem));
}

.header__nav-list {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: center;
  gap: 52px;
}

.header__nav-link {
  color: var(--white);
  font-size: 1rem;
  transition: all 0.4s ease-out;
  position: relative;
  z-index: 3;
  display: inline-block;
}

.header.is-scrolled .header__nav-link {
  color: var(--black1);
}

.header__nav-link::before {
  content: "";
  display: block;
  background-color: var(--red1);
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -8px;
  transform: scale(0, 1);
  transition: all 0.4s ease-out;
}

.header__nav-item.is-current > .header__nav-link::before {
  transform: scale(1, 1);
}

.header__nav-link:hover::before {
  transform: scale(1, 1);
}

.header__nav-item--has-submenu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__nav-item--has-submenu::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(135deg);
  transition: all 0.4s ease-out;
  translate: 0 -2px;
}

.header.is-scrolled .header__nav-item--has-submenu::after {
  border-top-color: var(--black1);
  border-right-color: var(--black1);
}

.header__submenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43px, rgba(0, 0, 0, 1) 43px, rgba(0, 0, 0, 1) 100%);
  z-index: 2; /* 他の要素より手前に表示 */
  padding: 40px 10px 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
}

.header.is-scrolled .header__submenu {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43px, rgba(255, 255, 255, 1) 43px, rgba(255, 255, 255, 1) 100%);
}

.header__nav-item--has-submenu:hover > .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__submenu-link {
  color: var(--white);
  font-size: 1rem;
  transition: all 0.4s ease-out;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  translate: 0 -20px;
}

.header.is-scrolled .header__submenu-link {
  color: var(--black1);
}

.header__submenu-link::before {
  content: "";
  display: block;
  background-color: var(--red1);
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -8px;
  transform: scale(0, 1);
  transition: all 0.4s ease-out;
}

.header__submenu-link:hover::before {
  transform: scale(1, 1);
}

.header__nav-sp {
  display: none;
}

.header__nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  font-size: 1rem;
  width: 160px;
  height: 70px;
  margin-inline: auto;
  border: solid 1px var(--red1);
  background-color: var(--red1);
  transition: all 0.4s ease-out;
  position: relative;
}

.header__nav-button-arrow {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: 10px;
  transition: all 0.4s ease-out;
}

.header__nav-button:hover {
  background-color: var(--white);
  color: var(--red1);
}

.header__nav-button:hover .header__nav-button-arrow {
  right: 5px;
  border-color: var(--red1);
}

.burger {
  display: none;
}

@media screen and (max-width: 1150px) {
  .header__nav-list {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 12px 20px;
  }

  .header__submenu {
    top: 0px;
    padding-top: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 29px, rgba(255, 255, 255, 1) 29px, rgba(255, 255, 255, 1) 100%);
  }

  .header__nav-submenu-link {
    translate: 0 -10px;
  }
}

@media screen and (max-width: 860px) {
  .header {
    height: 90px;
  }

  .header__inner {
    padding-inline: calc(clamp(0.5rem, 0.113rem + 1.65vw, 1rem));
  }

  .header__submenu-link::before,
  .header__submenu,
  .header__nav-item--has-submenu::after {
    display: none;
  }

  .header.is-scrolled.is-active .header__logo-link > img:first-of-type {
    display: block;
  }

  .header.is-scrolled.is-active .header__logo-link--scrolled {
    display: none;
  }

  .burger {
    width: 100px;
    height: 97px;
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: column;
    gap: 18px;
    position: fixed;
    z-index: 99;
    top: 0px;
    right: 20px;
    font-size: 1.125rem;
    color: var(--white);
    transition: all 0.4s ease-out;
  }

  .header.is-scrolled .burger {
    color: var(--black1);
  }

  .burger__line {
    display: block;
    width: 80px;
    height: 1px;
    background-color: var(--white);
    transition: all 0.6s ease;
  }

  .header.is-scrolled .burger__line {
    background-color: var(--black1);
  }

  .burger__line:nth-of-type(2) {
    width: 60px;
  }

  .burger__line:nth-of-type(3) {
    width: 40px;
  }

  .header.is-scrolled.is-active .burger {
    align-items: center;
    color: var(--white);
  }

  .is-active .burger__line:nth-of-type(1) {
    transform: translateY(24px) rotate(45deg);
    width: 56px;
    background-color: var(--white);
  }

  .is-active .burger__line:nth-of-type(2) {
    opacity: 0;
  }

  .is-active .burger__line:nth-of-type(3) {
    transform: translateY(-13px) rotate(-45deg);
    width: 56px;
    background-color: var(--white);
  }

  .header__nav-button {
    max-width: 600px;
    width: 90%;
    height: 80px;
    border-radius: 40px;
    font-size: 1.625rem;
    grid-column: 1/3;
    grid-row: 2/3;
  }

  .header__nav-button-arrow {
    right: 38px;
    border-top: 1px solid var(--red1);
    border-right: 1px solid var(--red1);
    z-index: 5;
  }

  .header__nav-button::before {
    content: "";
    display: block;
    width: 33px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    right: 26px;
    top: 24px;
    z-index: 1;
    transition: all 0.4s ease-out;
  }

  .header__nav-button:hover .header__nav-button-arrow {
    right: 30px;
    border-top: 1px solid var(--red1);
    border-right: 1px solid var(--red1);
  }

  .header__nav-button:hover::before {
    right: 18px;
  }

  .header__nav {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr;
    align-items: start;
    gap: 100px 0;
    width: 100%;
    height: 100dvh;
    padding-top: 156px;
    padding-inline: 67px;
    translate: 100% 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
  }

  .header__nav-list {
    grid-template-columns: 1fr;
    justify-content: space-between;
    gap: 100px;
  }

  .header__nav-link {
    font-size: 2rem;
  }

  .header.is-scrolled .header__nav-link {
    color: var(--white);
  }

  .header__nav-sp {
    display: grid;
    grid-template-columns: 1fr;
    grid-column: 2/3;
  }

  .header__nav-sp-heading {
    color: var(--white);
    font-size: 2rem;
  }

  .header__nav-sp-list {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .header__nav-sp-link {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    gap: 1.5em;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.4s ease-out;
    position: relative;
  }

  .header__nav-sp-link::before {
    content: "";
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--red1);
    border-right: 2px solid var(--red1);
    transform: rotate(45deg);
  }

  .header__nav-sp-link::after {
    content: "";
    background-color: var(--red1);
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -8px;
    transform: scale(0, 1);
    transition: all 0.4s ease-out;
  }

  .header__nav-sp-link:hover::after {
    transform: scale(1, 1);
  }

  .is-active .header__nav {
    visibility: visible;
    opacity: 1;
    translate: 0 0;
    overflow: auto;
  }

  .is-active .header__nav-link--single {
    color: var(--white);
  }
}

@media screen and (max-width: 528px) {
  .header {
    height: 55px;
  }

  .header__logo {
    width: 166px;
  }

  .header__nav {
    padding-top: 116px;
    padding-inline: 34px;
    gap: 78px 0;
  }

  .header__nav-list {
    gap: 63px;
  }

  .header__nav-link,
  .header__nav-sp-link,
  .header__nav-sp-heading {
    font-size: 1rem;
  }

  .header__nav-sp-list {
    margin-top: 45px;
    gap: 45px;
  }

  .header__nav-sp-link::before {
    width: 10px;
    height: 10px;
  }

  .burger {
    width: 50px;
    height: 49px;
    gap: 7px;
    top: 5px;
    right: 10px;
    font-size: 0.5625rem;
  }

  .burger__line {
    width: 40px;
  }

  .burger__line:nth-of-type(2) {
    width: 30px;
  }

  .burger__line:nth-of-type(3) {
    width: 20px;
  }

  .is-active .burger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(45deg);
    width: 27px;
  }

  .is-active .burger__line:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 27px;
  }

  .header__nav-button {
    max-width: 300px;
    height: 40px;
    font-size: 0.8125rem;
  }

  .header__nav-button-arrow {
    width: 6px;
    height: 6px;
    right: 19px;
    top: calc(50% - 3px);
  }

  .header__nav-button::before {
    width: 17px;
    right: 13px;
    top: 12px;
  }

  .header__nav-button:hover .header__nav-button-arrow {
    right: 15px;
  }

  .header__nav-button:hover::before {
    right: 8px;
  }
}

/* =========================================
   MV Section (Sticky Layout)
   ========================================= */
.mv {
  display: flex;
  width: 100%;
  position: relative;
  background-color: var(--black1);
}

.mv__left {
  width: 65%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.mv__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__left-content {
  position: absolute;
  bottom: 127px;
  left: 54px;
  color: var(--white);
  z-index: 1;
}

.mv__catch-copy {
  font-size: calc(clamp(3.25rem, 1.237rem + 3.01vw, 5rem));
  font-weight: 600;
  line-height: 1.37;
  letter-spacing: 0.65em;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.mv__highlight {
  display: inline-block;
  background: url(../img/calligraphy.webp) no-repeat center bottom/contain;
}

.mv__lead {
  font-size: calc(clamp(1rem, 0.425rem + 0.86vw, 1.5rem));
  line-height: 1.47;
  margin-top: 29px;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.mv__right {
  width: 35%;
  background-color: var(--black1);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 35svh auto;
  position: relative;
  z-index: 1;
}

.mv__right-header {
  text-align: center;
  display: grid;
  place-content: center;
  padding-top: 70px;
}

.mv__right-title--ja {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  width: 100%;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.mv__right-title--ja::after {
  content: "";
  display: block;
  width: 223px;
  aspect-ratio: 223/32;
  background: url(../img/calligraphy.webp) no-repeat center center/contain;
  position: absolute;
  z-index: -1;
  right: 0;
  left: 0;
  bottom: -10px;
  margin-inline: auto;
}

.mv__right-title--en {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  letter-spacing: 0.65em;
  margin-top: 21px;
  font-weight: 400;
}

.mv__right-desc {
  font-size: 0.875rem;
  line-height: 1.71;
  margin-top: 31px;
}

.mv__interview-list {
  display: flex;
  flex-direction: column;
}

.mv__interview-item {
  display: block;
  color: var(--white);
  position: relative;
}

.mv__interview-img-wrapper {
  position: relative;
  width: 100%;
  height: calc(65svh + 16px);
  overflow: hidden;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.mv__interview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: all 0.4s ease-out;
}

.mv__interview-item:hover .mv__interview-img {
  filter: grayscale(0%);
  scale: 1.1;
}

.mv__interview-number-wrapper {
  position: absolute;
  z-index: -1;
  top: 20px;
  left: 41px;
  height: 100%;
  pointer-events: none;
}

.mv__interview-number {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 2.875rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  height: 100%;
  transition: all 0.4s ease-out;
}

.mv__interview-item:hover .mv__interview-number {
  color: var(--red1);
}

.mv__interview-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  padding-inline: 52px;
  position: absolute;
  z-index: 2;
  bottom: 46px;
  left: 0;
  right: 0;
  margin-inline: auto;
}

.mv__interview-text-wrapper {
  background-color: var(--black1);
  padding-bottom: 60px;
  padding-inline: 52px;
  margin-top: -16px;
  position: relative;
  z-index: 1;
}

.mv__interview-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0em;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mv__interview-button {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  position: relative;
  transition: all 0.4s ease-out;
}

.mv__interview-item:hover .mv__interview-button {
  translate: 8px 0;
}

.mv__interview-button--arrow {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-out;
}

.mv__interview-button::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--red1);
  position: absolute;
  right: -9px;
  top: 0;
  bottom: 0;
  margin-block: auto;
  z-index: -1;
  transition: all 0.4s ease-out;
}

.mv__interview-button:hover {
  translate: 7px 0;
}

.mv__business > .mv__right-header {
  padding-top: 0;
}

.mv__business-video {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 512/342;
  background-color: gray;
}

.mv__business-video iframe {
  width: 100%;
  height: 100%;
}

.mv__slider-nav,
.mv__indicators {
  display: none;
}

@media screen and (max-width: 1070px) {
  .mv__left {
    width: 60%;
  }

  .mv__catch-copy {
    font-size: 2.5rem;
  }

  .mv__right {
    width: 40%;
  }

  .mv__right-title--ja {
    font-size: 1.75rem;
  }

  .mv__right-desc--break {
    display: none;
  }

  .mv__interview-number-wrapper {
    left: 30px;
  }

  .mv__interview-title {
    padding-inline: 30px;
    font-size: 1.25rem;
  }

  .mv__interview-text-wrapper {
    padding-inline: 30px;
  }
}

@media screen and (max-width: 860px) {
  .mv {
    flex-direction: column;
    background-color: transparent;
  }

  .mv__left {
    width: 100%;
    height: 100vh;
    position: relative; /* 固定解除 */
    top: auto;
    overflow: hidden;
  }

  .mv__left-content {
    left: calc(clamp(1.25rem, 0.073rem + 4.4vw, 2.438rem));
    bottom: calc(clamp(1.688rem, 0.016rem + 6.25vw, 3.375rem));
  }

  .mv__catch-copy {
    width: 110%;
    font-size: calc(clamp(2.438rem, 0.023rem + 9.03vw, 4.875rem));
  }

  .mv__lead {
    font-size: calc(clamp(0.813rem, 0.008rem + 3.01vw, 1.625rem));
    letter-spacing: 0.3em;
    line-height: 1.38;
    margin-top: calc(clamp(0.875rem, 0.008rem + 3.24vw, 1.75rem));
  }

  .mv__lead-break {
    display: none;
  }

  .mv__right {
    width: 100%;
    grid-template-rows: auto auto;
  }

  .mv__right-header {
    padding-top: calc(clamp(3.438rem, 0.032rem + 12.73vw, 6.875rem));
  }

  .mv__right-title--ja {
    font-size: calc(clamp(1.438rem, 0.013rem + 5.32vw, 2.875rem));
  }

  .mv__right-title--ja::after {
    width: calc(clamp(10.188rem, 0.094rem + 37.73vw, 20.375rem));
  }

  .mv__right-title--en {
    font-size: calc(clamp(0.813rem, 0.008rem + 3.01vw, 1.625rem));
    margin-top: calc(clamp(0.875rem, 0.008rem + 3.24vw, 1.75rem));
  }

  .mv__right-desc {
    font-size: calc(clamp(0.813rem, 0.008rem + 3.01vw, 1.625rem));
    margin-top: calc(clamp(1.75rem, 0.078rem + 6.25vw, 3.438rem));
  }

  .mv__right-desc--break {
    display: block;
  }

  .mv__interview-slider {
    display: block;
    width: 100%;
    overflow: hidden; /* はみ出しを隠す */
    position: relative;
  }

  .mv__interview-list {
    height: 900px;
    position: relative;
    margin-top: calc(clamp(2.188rem, 0.02rem + 8.1vw, 4.375rem));
    flex-direction: row;
    transition: all 0.4s ease-in-out;
  }

  .mv__interview-item {
    flex-shrink: 0;
    width: 100%;
  }

  .mv__interview-img-wrapper {
    height: calc(clamp(27.438rem, 5.084rem + 83.56vw, 50rem));
  }

  .mv__interview-number-wrapper {
    left: auto;
    right: calc(clamp(0.875rem, 0.008rem + 3.24vw, 1.75rem));
    top: calc(clamp(0.875rem, 0.008rem + 3.24vw, 1.75rem));
  }

  .mv__interview-number {
    font-size: calc(clamp(1.625rem, 0.015rem + 6.02vw, 3.25rem));
    letter-spacing: 0.5em;
  }

  .mv__interview-title {
    bottom: -220px; /* 矢印の上に配置 */
    font-size: calc(clamp(1.188rem, 0.012rem + 4.4vw, 2.375rem));
    line-height: 1.4;
    padding-inline: calc(clamp(2.063rem, 0.081rem + 7.41vw, 4.063rem));
  }

  .mv__interview-text-wrapper {
    padding-block: calc(clamp(8.688rem, 0.08rem + 32.18vw, 17.375rem)) calc(clamp(5.25rem, 0.111rem + 19.21vw, 10.438rem));
    padding-inline: calc(clamp(2.063rem, 0.081rem + 7.41vw, 4.063rem));
  }

  .mv__interview-text {
    font-size: calc(clamp(0.813rem, 0.008rem + 3.01vw, 1.625rem));
    line-height: 1.46;
    letter-spacing: 0em;
  }

  .mv__interview-button {
    font-size: calc(clamp(1.063rem, 0.01rem + 3.94vw, 2.125rem));
    gap: 36px;
    margin-top: calc(clamp(2.188rem, 0.02rem + 8.1vw, 4.375rem));
  }

  .mv__interview-button--arrow {
    width: 10px;
    height: 10px;
  }

  .mv__interview-button::after {
    width: 42px;
    height: 42px;
    right: -19px;
  }

  /* ナビゲーション表示 */
  .mv__slider-nav {
    display: flex;
    position: absolute;
    top: calc(clamp(26.25rem, -8.937rem + 106.63vw, 48.375rem));
    left: calc(clamp(1.75rem, 0.016rem + 6.48vw, 3.5rem));
    z-index: 10;
  }

  .mv__slider-btn {
    width: calc(clamp(4.75rem, 0.044rem + 17.59vw, 9.5rem));
    aspect-ratio: 1/1;
    border: solid 1px var(--white);
    cursor: pointer;
    position: relative;
  }

  /* 左矢印（白背景） */
  .mv__slider-btn--prev {
    background-color: var(--white);
  }
  .mv__slider-btn--prev::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%) rotate(-135deg); /* 左向き */
    width: calc(clamp(0.938rem, 0.009rem + 3.47vw, 1.875rem));
    height: calc(clamp(0.938rem, 0.009rem + 3.47vw, 1.875rem));
    border-top: 2px solid var(--black1);
    border-right: 2px solid var(--black1);
  }

  /* 右矢印（黒背景） */
  .mv__slider-btn--next {
    background-color: var(--black1);
  }
  .mv__slider-btn--next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -50%) rotate(45deg); /* 右向き */
    width: calc(clamp(0.938rem, 0.009rem + 3.47vw, 1.875rem));
    height: calc(clamp(0.938rem, 0.009rem + 3.47vw, 1.875rem));
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
  }

  .mv__indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(clamp(1.25rem, 0.012rem + 4.63vw, 2.5rem));
    position: absolute;
    z-index: 2;
    top: calc(clamp(17.5rem, -4.765rem + 67.47vw, 31.5rem));
    left: calc(clamp(1.75rem, 0.016rem + 6.48vw, 3.5rem));
  }

  .mv__indicator {
    font-family: "Cinzel", serif;
    font-size: calc(clamp(1.438rem, 0.013rem + 5.32vw, 2.875rem));
    color: var(--gray1);
    transition: all 0.4s ease-out;
  }

  .mv__indicator.is-active {
    color: var(--white);
  }
}

@media screen and (max-width: 528px) {
  .mv__catch-copy {
    letter-spacing: 0.55em;
  }

  .mv__left {
    height: 511px;
  }

  .mv__right {
    display: none;
  }

  .mv__interview-list {
    height: 600px;
  }

  .mv__interview-title {
    bottom: -110px;
  }

  .mv__interview-button {
    gap: 18px;
  }

  .mv__interview-button--arrow {
    width: 7px;
    height: 7px;
  }

  .mv__interview-button::after {
    width: 20px;
    height: 20px;
    right: -8px;
  }
}

/* =========================================
   About Section
   ========================================= */
.about {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-block: 84px 789px;
  color: var(--white);
}

.about__background {
  content: "";
  background: url(../img/about-bg.webp) no-repeat center bottom/cover;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.about__content {
  max-width: 833px;
  padding-inline: calc(clamp(0.875rem, 0.008rem + 3.24vw, 1.75rem));
  margin-inline: auto;
  position: relative;
  z-index: 5;
}

.about__text-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  margin-top: 42px;
}

.about__text {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: justify;
}

@media screen and (max-width: 860px) {
  .about {
    padding-block: calc(clamp(3.375rem, -1.893rem + 15.96vw, 6.688rem)) calc(clamp(24.875rem, -4.646rem + 89.46vw, 43.438rem));
  }

  .about__background {
    background-image: url(../img/about-bg-sp.webp);
  }

  .about__text-wrapper {
    margin-top: calc(clamp(2.188rem, -1.192rem + 10.24vw, 4.313rem));
    gap: calc(clamp(1.75rem, -1.033rem + 8.43vw, 3.5rem));
  }

  .about__text {
    font-size: calc(clamp(0.813rem, -0.181rem + 3.01vw, 1.438rem));
  }

  .about__text-break {
    display: none;
  }
}

/* =========================================
   Awards Section (Infinite Slider)
   ========================================= */
.awards {
  height: 370px;
  display: grid;
  align-items: center;
  background-color: #f5f5f5;
  overflow: hidden;
}

.awards__slider-wrap {
  width: 100%;
}

.awards__slider-track {
  display: flex;
  align-items: center;
  gap: 22px;
  animation: scrollAwards 20s linear infinite;
  width: max-content;
  will-change: transform;
}

@keyframes scrollAwards {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 3));
  }
}

.awards__item {
  flex-shrink: 0;
}

.awards__img {
  display: block;
  width: auto;
  height: auto;
}

@media screen and (max-width: 528px) {
  .awards {
    height: 200px;
  }

  .awards__img {
    height: 150px;
  }
}

/* =========================================
   Business Section (Common)
   ========================================= */
.business {
  padding-block: 71px 284px; /* 100px */
  background-color: var(--gray2);
  position: relative;
}

.business__pc-container {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: calc(clamp(2.5rem, -1.8rem + 8vw, 5rem));
  max-width: var(--content-width-large);
  box-sizing: content-box;
  margin-inline: auto;
  margin-top: 44px;
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  position: relative;
}

/* 左側：画像エリア */
.business__pc-visual {
  aspect-ratio: 635/675;
  position: sticky;
  top: 80px;
}

.business__pc-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0; /* デフォルトは非表示 */
  transition: opacity 0.4s ease-out;
  z-index: 0;
}

.business__pc-img.is-active {
  opacity: 1;
  z-index: 1;
}

.business__pc-list {
  display: flex;
  flex-direction: column;
}

.business__pc-item {
  padding: 40px calc(clamp(1.375rem, -0.99rem + 4.4vw, 2.75rem)) 16px calc(clamp(2.25rem, -1.513rem + 7vw, 4.438rem));
  transition: all 0.4s ease-out;
  cursor: pointer;
  border-top: solid 1px var(--gray3);
}

.business__pc-item:hover,
.business__pc-item.is-active {
  background-color: var(--black1);
  color: var(--white);
}

.business__pc-item-title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.business__pc-item-title--break {
  display: none;
}

.business__pc-item-desc,
.business__pc-item-list {
  font-size: 1rem;
  line-height: 1.625;
  margin-top: 19px;
  color: var(--black2);
}

.business__pc-item-list {
  padding-left: 1.5em;
}

.business__pc-item-list li {
  list-style: initial;
}

.business__pc-item.is-active .business__pc-item-desc,
.business__pc-item.is-active .business__pc-item-list,
.business__pc-item.is-active .business__pc-link {
  color: var(--white); 
}

.business__pc-item.is-active .business__pc-link-arrow {
  color: var(--white);
}

.business__pc-item.is-active .business__pc-link-arrow::after {
  border-top-color: var(--red1);
  border-right-color: var(--red1);
}

.business__pc-link-wrap {
  text-align: right;
  margin-top: 1.875rem; 
}

.business__pc-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  color: var(--red1);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s ease-out;
}

.business__pc-link-arrow {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  border-radius: 50%;
  position: relative;
}

.business__pc-link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: translate(-50%, -50%) rotate(45deg);
}

.business__pc-item:hover .business__pc-link {
  translate: 8px 0;
}

/* スマホ用スライダーはPCでは非表示 */
.business__sp-slider {
  display: none;
}

.business__sp-fixed-nav {
  display: none;
}

.business__marquee {
  overflow: hidden;
  position: absolute;
  bottom: -36px;
  width: 100%;
}

.business__marquee::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}

.business__marquee-inner {
  display: flex;
  width: fit-content;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.business__marquee-text {
  font-size: 22.5rem;
  font-family: "Cinzel", serif;
  font-weight: 400;
  line-height: 0.9;
  color: var(--gray4);
  white-space: nowrap;
  padding-right: 300px;
}

.business__cta-wrapper {
  max-width: var(--content-width-small);
  width: 95%;
  height: 400px;
  border-radius: 170px;
  margin-inline: auto;
  position: absolute;
  bottom: -200px;
  right: 0;
  left: 0;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.business__cta-wrapper::-webkit-scrollbar {
  display: none;
}

.business__cta {
  background: url(../img/cta-bg.webp) no-repeat -60px top/cover;
  max-width: var(--content-width-small);
  width: 100%;
  height: 330px;
  padding-left: 72px;
  margin-top: 65px;
  border-radius: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.business__cta-bg {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(201, 43, 47, 0.95);
  border-radius: 200px;
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: all 0.4s ease-out;
}

.business__cta:hover .business__cta-bg {
  background: var(--black1);
}

.business__cta-message {
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1.1;
}

.business__cta-button {
  color: var(--red1);
  background-color: var(--white);
  max-width: 360px;
  height: 58px;
  border-radius: 30px;
  display: grid;
  place-content: center;
  position: relative;
  transition: all 0.4s ease-out;
}

.business__cta:hover .business__cta-button {
  color: var(--white);
  background-color: var(--red1);
}

.business__cta-button--arrow {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  border-radius: 50%;
  position: absolute;
  right: 29px;
  top: 0;
  bottom: 0;
  margin-block: auto;
  transition: all 0.4s ease-out;
}

.business__cta-button--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.4s ease-out;
}

.business__cta:hover .business__cta-button--arrow::after {
  border-top-color: var(--red1);
  border-right-color: var(--red1);
}

.business__cta-img {
  position: absolute;
  bottom: 0;
  right: -5%;
  z-index: -1;
  filter: brightness(150%);
}

.business__cta-message--break {
  display: none;
}

.business__sp-video {
  display: none;
}

/* Business Section (SP Layout - Slider) */
@media screen and (max-width: 860px) {
  .business {
    padding-block: calc(clamp(3rem, -1.672rem + 14.16vw, 5.938rem)) calc(clamp(9.25rem, -5.66rem + 45.18vw, 18.625rem));
  }

  .business__pc-container {
    display: none;
  }

  .business__sp-video .mv__right-header {
    padding-top: 0px;
  }

  .business__sp-slider {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
  }

  /* スライドのトラック（横移動する部分） */
  .business__sp-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    margin-top: calc(clamp(1.063rem, -0.528rem + 4.82vw, 2.063rem));
  }

  /* 各スライド */
  .business__sp-slide {
    flex-shrink: 0;
    width: 100%;
  }

  /* 画像エリア（インタビューセクション踏襲） */
  .business__sp-visual {
    position: relative;
    width: 100%;
    padding-inline: calc(clamp(2.938rem, -1.237rem + 12.65vw, 5.563rem)) calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
  }

  .business__sp-img {
    max-width: 676px;
    width: 100%;
    height: auto;
    aspect-ratio: 635 / 676;
    margin-inline: auto;
    object-fit: cover;
  }

  /* 矢印ナビゲーション */
  .business__sp-fixed-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(clamp(1.063rem, -0.528rem + 4.82vw, 2.063rem));
    position: absolute;
    top: calc(clamp(10rem, -0.148rem + 43.3vw, 23.125rem));
    left: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
    z-index: 2;
  }

  .business__sp-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(clamp(1.25rem, -0.738rem + 6.02vw, 2.5rem));
  }

  .business__sp-indicator {
    font-family: "Cinzel", serif;
    font-size: calc(clamp(1.438rem, 0.013rem + 5.32vw, 2.875rem));
    color: var(--gray1);
    transition: all 0.4s ease-out;
  }

  .business__sp-indicator.is-active {
    color: var(--white);
  }

  .business__sp-nav {
    display: flex;
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 2;
  }

  .business__sp-nav-buttons {
    display: flex;
  }

  .business__sp-btn {
    width: calc(clamp(4.75rem, 0.044rem + 17.59vw, 9.5rem));
    aspect-ratio: 1/1;
    border: solid 1px var(--white);
    cursor: pointer;
    position: relative;
  }

  .business__sp-btn--prev {
    background-color: var(--white);
  }
  .business__sp-btn--prev::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%) rotate(-135deg); /* 左向き */
    width: calc(clamp(0.938rem, 0.009rem + 3.47vw, 1.875rem));
    height: calc(clamp(0.938rem, 0.009rem + 3.47vw, 1.875rem));
    border-top: 2px solid var(--black1);
    border-right: 2px solid var(--black1);
  }

  .business__sp-btn--next {
    background-color: var(--black1);
  }
  .business__sp-btn--next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -50%) rotate(45deg); /* 右向き */
    width: calc(clamp(0.938rem, 0.009rem + 3.47vw, 1.875rem));
    height: calc(clamp(0.938rem, 0.009rem + 3.47vw, 1.875rem));
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
  }

  /* コンテンツエリア */
  .business__sp-content {
    margin-top: calc(clamp(4.313rem, -2.447rem + 20.48vw, 8.563rem));
    padding-inline: calc(clamp(2.813rem, -1.561rem + 13.25vw, 5.563rem));
  }

  .business__sp-title {
    font-size: calc(clamp(1.125rem, -0.664rem + 5.42vw, 2.25rem));
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
  }

  .business__sp-desc,
  .business__sp-list {
    font-size: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
    color: var(--black1);
    line-height: 1.625;
    margin-top: calc(clamp(1.188rem, -0.701rem + 5.72vw, 2.375rem));
  }

  .business__sp-list {
    padding-left: 1.5em;
  }
  .business__sp-list li {
    margin-top: 0.5rem;
    list-style: initial;
  }

  .business__sp-link-wrap {
    text-align: right;
    margin-top: calc(clamp(1.438rem, -0.849rem + 6.93vw, 2.875rem));
    padding-inline: 14px;
  }

  .business__sp-link {
    display: inline-flex;
    align-items: center;
    gap: calc(clamp(1rem, -1.088rem + 9.36vw, 2rem));
    color: var(--red1);
    font-weight: 500;
    font-size: calc(clamp(1.125rem, -0.664rem + 5.42vw, 2.25rem));
  }
  .business__sp-link-arrow {
    display: inline-block;
    width: 44px;
    height: 44px;
    background-color: currentColor;
    border-radius: 50%;
    position: relative;
    transition: all 0.4s ease-out;
  }
  .business__sp-link-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    width: 12px;
    height: 12px;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .business__cta {
    padding-left: calc(clamp(2.563rem, -1.413rem + 12.05vw, 5.063rem));
    gap: calc(clamp(0.938rem, -0.553rem + 4.52vw, 1.875rem));
  }

  .business__cta-message {
    font-size: calc(clamp(1.125rem, -0.664rem + 5.42vw, 2.25rem));
  }

  .business__cta-button {
    width: calc(clamp(11.875rem, -7.011rem + 57.23vw, 23.75rem));
    height: calc(clamp(1.813rem, -1.07rem + 8.73vw, 3.625rem));
    font-size: calc(clamp(0.688rem, -0.406rem + 3.31vw, 1.375rem));
  }

  .business__cta-message--break {
    display: block;
  }

  .business__cta-img {
    width: 65%;
    min-width: 270px;
    height: auto;
  }
}

@media screen and (max-width: 528px) {
  .business__sp-video {
    display: block;
    padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
    margin-inline: auto;
  }

  .business__sp-fixed-nav {
    top: calc(clamp(10rem, -11.446rem + 91.5vw, 18.75rem));
  }

  .business__sp-link {
    font-size: calc(clamp(0.912rem, 0.469rem + 1.99vw, 1.125rem));
  }

  .business__sp-link-arrow {
    width: 22px;
    height: 22px;
  }

  .business__sp-link-arrow::after {
    width: 6px;
    height: 6px;
  }

  .business__marquee {
    bottom: -18px;
  }

  .business__marquee-text {
    font-size: 11.25rem;
  }

  .business__cta-wrapper {
    height: 200px;
    bottom: -110px;
    border-radius: 80px;
  }

  .business__cta {
    height: 160px;
    margin-top: 35px;
  }

  .business__cta-button--arrow {
    width: 11px;
    height: 11px;
    right: 11px;
  }

  .business__cta-button--arrow::after {
    width: 3px;
    height: 3px;
  }
}

/* =========================================
middle message Section
========================================= */
.message-middle {
  padding-block: 271px 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 19px;
  text-align: center;
}

.message-middle__text {
  font-size: 1.875rem;
  font-weight: 600;
}

.message-middle__text-small {
  font-size: 1rem;
  line-height: 1.75;
}

@media screen and (max-width: 860px) {
  .message-middle {
    padding-top: calc(clamp(8.938rem, -5.177rem + 42.77vw, 17.813rem));
    padding-bottom: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
    gap: calc(clamp(1rem, -0.491rem + 4.52vw, 1.938rem));
  }

  .message-middle__text {
    font-size: calc(clamp(1.438rem, -0.849rem + 6.93vw, 2.875rem));
    line-height: 1.2;
  }

  .message-middle__text-small {
    font-size: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
    line-height: 1.1;
  }
}

/* =========================================
company interview Section
========================================= */
.company-interview-wrapper {
  max-width: var(--content-width-large);
  box-sizing: content-box;
  margin-inline: auto;
  padding-bottom: 51px;
  padding-inline: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
}

.interview,
.company {
  width: 100%;
  aspect-ratio: 637/561;
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
}

.interview-bg {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: url(../img/interview-bg.webp) no-repeat center top/cover;
  filter: grayscale(100%);
  transition: all 0.4s ease-out;
}

.interview:has(.button:hover) .interview-bg {
  filter: grayscale(0%);
  scale: 1.1;
}

.company-bg {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: url(../img/company-bg.webp) no-repeat center top/cover;
  filter: grayscale(100%);
  transition: all 0.4s ease-out;
}

.company:has(.button:hover) .company-bg {
  filter: grayscale(0%);
  scale: 1.1;
}

.company-interview__text {
  font-size: 0.875rem;
  margin-top: 27px;
  text-align: center;
}

.button {
  color: var(--white);
  background-color: var(--red1);
  width: 360px;
  height: 58px;
  border-radius: 30px;
  display: grid;
  place-content: center;
  position: relative;
  margin-top: 53px;
  transition: all 0.4s ease-out;
}

.button__arrow {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  border-radius: 50%;
  position: absolute;
  right: 29px;
  top: 0;
  bottom: 0;
  margin-block: auto;
  transition: all 0.4s ease-out;
}

.button__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--red1);
  border-right: 1px solid var(--red1);
  transform: translate(-50%, -50%) rotate(45deg);
}

.button:hover {
  background-color: var(--black1);
  color: var(--white);
}

@media screen and (max-width: 860px) {
  .company-interview-wrapper {
    padding-bottom: calc(clamp(2.938rem, -1.734rem + 14.16vw, 5.875rem));
    grid-template-columns: 1fr;
    gap: calc(clamp(1.25rem, -0.738rem + 6.02vw, 2.5rem));
  }

  .interview,
  .company {
    aspect-ratio: 700/561;
  }

  .company-interview__text {
    font-size: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
    margin-top: calc(clamp(1.438rem, -0.849rem + 6.93vw, 2.875rem));
  }

  .button {
    width: calc(clamp(18.75rem, -11.069rem + 90.36vw, 37.5rem));
    height: auto;
    aspect-ratio: 600/80;
    margin-top: calc(clamp(0.75rem, -0.443rem + 3.61vw, 1.5rem));
    font-size: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
  }
}

@media screen and (max-width: 528px) {
  .company .section-title__en,
  .interview .section-title__en {
    font-size: 0.625rem;
  }

  .button__arrow {
    width: 18px;
    height: 18px;
    right: 22px;
  }

  .button__arrow::after {
    width: 5px;
    height: 5px;
  }
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
  position: relative;
  width: 100%;
  height: calc(clamp(19.813rem, -11.697rem + 95.48vw, 39.625rem));
}

.contact__bg-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card {
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  max-width: var(--content-width-small);
  width: 95%;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 5;
  padding: 64px 36px 64px 79px;
  border-radius: 20px;
}

.contact-card__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-card__content {
  flex: 1;
}

.contact-card__header {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.contact .section-title {
  display: inline-grid;
  text-align: start;
  transition: all 0.4s ease-out;
}

.contact-card__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625;
  margin-top: 28px;
  transition: all 0.4s ease-out;
}

.contact-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(clamp(2.5rem, -1.476rem + 12.05vw, 5rem));
  aspect-ratio: 1/1;
  background-color: var(--red1);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s ease-out;
}

.contact-card__arrow {
  width: calc(clamp(0.5rem, -0.196rem + 2.11vw, 0.938rem));
  aspect-ratio: 1/1;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  margin-left: -2px;
  transition: all 0.4s ease-out;
}

.contact-card:hover {
  background-color: var(--red1);
}

.contact-card:hover .section-title,
.contact-card:hover .contact-card__text {
  color: var(--white);
}

.contact-card:hover .section-title__gray-highlight::after {
  background: url(../img/calligraphy-red-hover.webp) no-repeat center center/contain;
}

.contact-card:hover .contact-card__btn {
  background-color: var(--white);
}

.contact-card:hover .contact-card__arrow {
  border-top-color: var(--black1);
  border-right-color: var(--black1);
}

@media screen and (max-width: 860px) {
  .contact-card {
    padding-block: calc(clamp(2.375rem, -1.402rem + 11.45vw, 4.75rem)) calc(clamp(1.438rem, -0.849rem + 6.93vw, 2.875rem));
    padding-inline: calc(clamp(1.938rem, -1.144rem + 9.34vw, 3.875rem));
  }

  .contact-card__inner {
    flex-direction: column;
    text-align: center;
    gap: calc(clamp(1.125rem, -0.664rem + 5.42vw, 2.25rem));
  }

  .contact-card__text {
    font-size: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
    margin-top: calc(clamp(1.5rem, -0.886rem + 7.23vw, 3rem));
    text-align: left;
  }

  .contact .section-title {
    text-align: center;
  }
}

/* =========================================
   Footer
   ========================================= */
.footer {
  padding-block: 288px 43px;
  width: 100%;
  position: relative;
}

.footer__container {
  max-width: var(--content-width-large);
  box-sizing: content-box;
  margin-inline: auto;
  padding-inline: calc(clamp(1.563rem, -0.823rem + 7.23vw, 3.063rem));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__info {
  width: 40%;
}

.footer__logo {
  width: 360px;
  aspect-ratio: 360/64;
}

.footer__logo-img {
  width: 100%;
  height: 100%;
}

.footer__company-name {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 32px;
}

.footer__address {
  font-size: 1.25rem;
  line-height: 1.5;
}

.footer__contact-detail {
  font-size: 1.625rem;
  line-height: 1.5;
  margin-top: 26px;
}

.footer__tel,
.footer__fax {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1em;
}

.footer__nav {
  display: flex;
  gap: 80px;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 68px;
}

.footer__nav-item a {
  font-size: 1.25rem;
  transition: all 0.4s ease-out;
  position: relative;
  display: inline-block;
}

.footer__nav-item a::before {
  content: "";
  background-color: var(--red1);
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scale(0, 1);
  transition: all 0.4s ease-out;
}

.footer__nav-item a:hover::before {
  transform: scale(1, 1);
}

.footer__nav-heading {
  font-size: 1.25rem;
  transition: all 0.4s ease-out;
  position: relative;
}

.footer__nav-heading::after {
  content: "";
  background-color: var(--red1);
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scale(0, 1);
  transition: all 0.4s ease-out;
}

.footer__nav-heading:hover::after {
  transform: scale(1, 1);
}

.footer__nav-sub-list {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 58px;
}

.footer__nav-sub-item a {
  display: inline-flex;
  justify-content: start;
  align-items: center;
  gap: 1.5em;
  font-size: 1.25rem;
  transition: all 0.4s ease-out;
  position: relative;
}

.footer__nav-sub-item a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--red1);
  border-right: 1px solid var(--red1);
  transform: rotate(45deg);
}

.footer__nav-sub-item a::after {
  content: "";
  background-color: var(--red1);
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scale(0, 1);
  transition: all 0.4s ease-out;
}

.footer__nav-sub-item a:hover::after {
  transform: scale(1, 1);
}

.footer__copyright {
  max-width: var(--content-width-large);
  box-sizing: content-box;
  margin-inline: auto;
  padding-inline: calc(clamp(1.563rem, -0.823rem + 7.23vw, 3.063rem));
  margin-top: 106px;
}

.footer__copyright-text {
  text-align: center;
  border-top: 1px solid var(--gray5);
  padding-top: 43px;
}

@media screen and (max-width: 860px) {
  .footer {
    padding-top: calc(clamp(13.938rem, -8.228rem + 67.17vw, 27.875rem));
    padding-bottom: calc(clamp(1.688rem, -0.996rem + 8.13vw, 3.375rem));
  }

  .footer__container {
    flex-direction: column;
    gap: calc(clamp(2.938rem, -1.635rem + 13.86vw, 5.813rem));
  }

  .footer__info {
    width: 100%;
  }

  .footer__logo {
    width: calc(clamp(13.188rem, -7.686rem + 63.25vw, 26.313rem));
  }

  .footer__company-name {
    font-size: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
    margin-top: calc(clamp(0.75rem, -0.443rem + 3.61vw, 1.5rem));
  }

  .footer__address,
  .footer__contact-detail {
    font-size: calc(clamp(0.813rem, -0.48rem + 3.92vw, 1.625rem));
  }

  .footer__nav {
    width: 100%;
    gap: initial;
    justify-content: space-between;
  }

  .footer__nav-list {
    gap: calc(clamp(3.125rem, -1.845rem + 15.06vw, 6.25rem));
  }

  .footer__nav-heading,
  .footer__nav-item a,
  .footer__nav-sub-item a {
    font-size: calc(clamp(0.938rem, -0.553rem + 4.52vw, 1.875rem));
  }

  .footer__nav-sub-list {
    margin-top: calc(clamp(2.625rem, -1.252rem + 11.75vw, 5.063rem));
    gap: calc(clamp(2.625rem, -1.252rem + 11.75vw, 5.063rem));
  }

  .footer__copyright {
    margin-top: calc(clamp(7.25rem, -4.181rem + 34.64vw, 14.438rem));
    padding-top: calc(clamp(1.688rem, -0.996rem + 8.13vw, 3.375rem));
    font-size: calc(clamp(0.625rem, -0.369rem + 3.01vw, 1.25rem));
  }
}

/* =================================================================
固定ページ
================================================================= */
.page-mainvisual {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  background: url(../img/page-mainvisual.webp) no-repeat center center/cover;
  padding-inline: calc(clamp(1.563rem, -0.823rem + 7.23vw, 3.063rem));
}

.page-mainvisual__inner {
  width: 100%;
  max-width: var(--content-width-small);
  height: 100%;
  margin-inline: auto;
  position: relative;
  display: flex;
  align-items: center;
}

.page__title {
  position: relative;
}

.page__title-ja {
  color: var(--white);
  font-size: 1.625rem;
  letter-spacing: 0.3em;
}

.page__title-en {
  color: var(--black3);
  font-size: 7.875rem;
  letter-spacing: 0.15em;
  font-family: "Cinzel", serif;
  position: absolute;
  top: -45px;
  left: -7px;
  z-index: -1;
}

.breadcrumbs {
  position: absolute;
  z-index: 60;
  bottom: 16px;
  left: 12px;
  color: var(--white);
  font-size: 0.75rem;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.breadcrumbs > a,
.breadcrumbs > li {
  color: currentColor;
}

.breadcrumbs > .white {
  color: var(--white);
}

@media screen and (max-width: 860px) {
  .page-mainvisual {
    background-position: right center;
    height: 80vw;
  }
  .page__title-ja {
    color: var(--white);
    font-size: 1.45rem;
    letter-spacing: 0.3em;
  }

  .page__title-en {
    font-size: 5.5rem;
    top: -35px;
    left: -7px;
  }
}

@media screen and (max-width: 528px) {
  .page__title-ja {
    color: var(--white);
    font-size: 1.25rem;
    letter-spacing: 0.3em;
  }

  .page__title-en {
    font-size: 3.5rem;
    top: -15px;
    left: -7px;
  }
}

/* =================================================================
contact
================================================================= */
.contact-form {
  padding-top: 56px;
}

.contact-form__inner {
  max-width: var(--content-width-small);
  box-sizing: content-box;
  margin-inline: auto;
  padding-inline: calc(clamp(1.125rem, 4.8vw, 2.25rem));
}

.contact-form__content form {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0px 50px;
}

/* トラッカー */
.smf-progress-tracker {
  grid-column: 1/2;
  grid-row: 1/3;
  flex-direction: column;
  grid-template-columns: 1fr;
  gap: 46px;
  height: 140px;
  position: relative;
}

.smf-progress-tracker__item {
  font-size: 1rem;
  width: 100% !important;
  flex-direction: row !important;
}

.smf-progress-tracker__item__text {
  margin-top: 0 !important;
  color: var(--black2) !important;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding-left: 19px;
  position: relative;
}

.smf-progress-tracker__item::after,
.smf-progress-tracker__item::before {
  display: none !important;
}

.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__text::before {
  content: "";
  display: block;
  width: 8px !important;
  height: 8px !important;
  background-color: var(--red1) !important;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 4px);
}

.smf-progress-tracker__item__number {
  display: none !important;
}

/* トラッカー終了 */

/* form入力欄 */
.smf-form {
  grid-column: 2/3;
  grid-row: 1/2;
}

.smf-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding-block: 32px !important;
  border-top: solid 1px var(--gray6);
}

.smf-item:first-of-type {
  border-top: none;
}

.has-inline-color {
  background-color: var(--red2) !important;
}

.smf-item__col--label {
  max-width: 100% !important;
  padding: 0 !important;
  flex-basis: auto !important;
  width: 30%;
}

/* 住所の欄だけラベル幅大きく */
.wp-block-group .smf-item__col--label {
  width: 85px;
}
.wp-block-group .smf-item__col--controls {
  width: 100%;
}

.smf-item__label__text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black1);
}

.smf-item__label .has-inline-color {
  color: var(--white);
  font-size: 0.8em;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  padding: 6px 10px;
}

.smf-item__col--controls {
  width: 70%;
}

.smf-select-control {
  width: 100%;
}

.smf-text-control__control,
.smf-select-control__control,
.smf-textarea-control__control {
  display: block;
  width: 100%;
  padding: 24px 19px 24px 42px !important;
  box-sizing: border-box;
  color: var(--black1);
  background-color: var(--gray7) !important;
  border: none !important;
  border-radius: 0px !important;
  font-size: 1rem;
}

.smf-select-control__control {
  background-color: transparent !important;
  color: var(--black1) !important;
}

.smf-form .smf-select-control__toggle {
  background-color: var(--gray7) !important;
  border-radius: 5px;
}

.smf-textarea-control > textarea {
  height: 247px;
  padding: 24px 19px;
  resize: none;
  overflow-y: auto;
}

.wp-block-columns.are-vertically-aligned-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 !important;
}

.smf-action {
  grid-column: 1/3;
  grid-row: 2/3;
}

.smf-system-error-content-ready {
  grid-column: 1/3;
  grid-row: 3/4;
}

.smf-button-control {
  position: relative;
}

.smf-button-control__control {
  width: 90%;
  max-width: 360px;
  height: 58px;
  background-image: none !important;
  background: var(--red1) !important;
  color: var(--white) !important;
  border: solid 1px var(--red1) !important;
  place-items: center;
  font-size: 1rem;
  border-radius: 30px !important;
  margin-top: 69px;
  transition: all 0.4s ease-out !important;
  position: relative;
  z-index: 10;
}

.smf-button-control__control::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  right: 17px;
  top: calc(50% - 11px);
  transition: all 0.4s ease-out;
}

.smf-button-control__control::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--red1);
  border-right: 1px solid var(--red1);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 26px;
  transition: all 0.4s ease-out;
}

.smf-button-control__control[data-action="back"] {
  background: none !important;
  color: var(--red1) !important;
}

.smf-button-control__control[data-action="back"]:hover {
  color: var(--white) !important;
}

.smf-button-control__control[data-action="back"]::before,
.smf-button-control__control[data-action="back"]::after {
  display: none;
}
.smf-button-control:has(.smf-button-control__control[data-action="back"])::before {
  display: none;
}

.smf-button-control__control:hover {
  background: var(--black1) !important;
  border-color: var(--black1) !important;
}

.smf-action .smf-button-control + .smf-button-control {
  margin-left: 0 !important;
}

.smf-complete-content {
  width: 100%;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.8;
}

@media screen and (max-width: 880px) {
  .contact-form__content form {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .smf-progress-tracker {
    display: inline-block;
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .smf-form {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  .smf-action {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .smf-system-error-content-ready {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}

@media screen and (max-width: 624px) {
  .smf-item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .smf-item__col--controls {
    width: 100%;
    margin-top: 20px;
  }

  .smf-item,
  .smf-item__col--label {
    width: 100%;
  }

  .smf-item,
  .smf-item__label__text {
    display: block;
    line-height: 1.6;
  }

  .smf-item__label .has-inline-color {
    margin-left: 22px;
  }

  .smf-complete-content,
  .contact-form__description-text {
    font-size: 1rem;
  }

  .contact-form__description-small {
    font-size: 0.75rem;
  }

  .contact-form__description-tell {
    font-size: 2rem;
  }

  .contact-form__description-mail {
    font-size: 1rem;
  }

  .smf-button-control__control {
    width: 90%;
    max-width: 400px;
  }

  .wp-block-group .smf-item__col--label {
    width: 100%;
  }
}

/* ----------------------------------------------------------
 Company Page Common Styles
----------------------------------------------------------*/
.company-page__mainvisual {
  width: 100%;
  height: 35vw;
  min-height: 599px;
  background: url(../img/company-mainvisual.webp) no-repeat center top/cover;
}
.company-container {
  display: grid;
  grid-template-columns: 170px 1fr;
  width: 100%;
  max-width: calc(var(--content-width-large) + 1.75rem * 2);
  margin-inline: auto;
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
}

/* 左サイドバー (固定) */
.side-nav {
  width: 170px;
  height: 100vh;
  position: sticky;
  top: 0;
  flex-shrink: 0;
  padding-top: 104px;
}

.side-nav__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ナビゲーションリンクの基本スタイル */
.side-nav__link {
  color: var(--black2);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.4s ease-out;
  padding-left: 20px;
}

/* 赤い丸のスタイル (擬似要素で作成) */
.side-nav__link::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--red1);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: all 0.4s ease-out;
}

.side-nav__link.is-active::before {
  transform: translateY(-50%) scale(1);
}

.company-page__title-en {
  color: var(--black2);
  font-family: "Cinzel", serif;
  font-weight: 400;
  line-height: 0.7;
  font-size: 6rem;
  letter-spacing: 0.1em;
}

.company-page__title-ja {
  display: block;
  font-size: 1.125rem;
  color: var(--black2);
  font-weight: 500;
  margin-top: 14px;
}

@media screen and (max-width: 1024px) {
  .company-page__title-en {
    font-size: 4rem;
  }
}

@media screen and (max-width: 860px) {
  .company-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-inline: 0;
  }

  .side-nav {
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 16px;
    padding-inline: 0.875rem;
    margin-inline: calc(50% - 50vw);
    background-color: var(--white);
    top: 10px;
    z-index: 10;
  }

  .side-nav__list {
    flex-direction: row;
  }

  .company-page__title-en {
    font-size: 3rem;
  }

  .company-page__title-ja {
    font-size: 1rem;
    margin-top: 7px;
  }
}

@media screen and (max-width: 528px) {
  .company-page__mainvisual {
    min-height: 200px;
  }

  .side-nav {
    padding-top: 65px;
    top: 10px;
    z-index: 10;
  }

  .side-nav__list {
    flex-direction: row;
  }

  .company-page__title-en {
    font-size: 2.5rem;
  }
}

/* ----------------------------------------------------------
GREETING Section
----------------------------------------------------------*/
.section--greeting {
  padding-block: 101px;
}

.greeting__body {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 6%;
  margin-top: 42px;
}

.greeting__figure {
  max-width: 360px;
  aspect-ratio: 360/449;
  flex-shrink: 0;
}

.greeting__figure img {
  width: 100%;
  height: 100%;
}

.greeting__text {
  font-size: 1.125rem;
  line-height: 2.1;
  text-align: justify;
}

.greeting__text p:not(:first-of-type) {
  margin-top: 2em;
}

.greeting__signature {
  margin-top: 59px;
  font-size: 1.1rem;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 22px;
}

.greeting__signature img {
  width: 130px;
  aspect-ratio: 130/24;
  object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .greeting__body {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
  }

  .greeting__figure {
    max-width: 80%;
    margin-inline: auto;
  }
}

@media screen and (max-width: 860px) {
  .section--greeting {
    padding-block: 250px 50px;
    padding-inline: 14px;
    margin-top: -200px;
  }
}

@media screen and (max-width: 528px) {
  .section--greeting {
    padding-top: 200px;
    margin-top: -150px;
  }

  .greeting__text {
    font-size: 0.875rem;
  }

  .greeting__signature {
    font-size: 1rem;
  }

  .greeting__signature img {
    width: 100px;
    height: auto;
  }
}

/* ----------------------------------------------------------
PHILOSOPHY Section
----------------------------------------------------------*/
.section--philosophy {
  position: relative;
  z-index: -1;
  width: 100dvw;
  height: 790px;
  background: url(../img/company-philosophy-bg.webp) no-repeat center top/cover;
  margin-left: calc((100% + 170px) / 2 - 50vw - 170px);
}

.section--philosophy .company-page__title-en {
  line-height: 1;
}

.philosophy__inner {
  max-width: var(--content-width-small);
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  margin-inline: auto;
  box-sizing: content-box;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 100px;
}

.philosophy__message p {
  color: var(--black2);
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.3em;
  font-weight: 500;
}

@media screen and (max-width: 1300px) {
  .philosophy__inner {
    padding-left: 175px;
  }

  .philosophy__message p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 860px) {
  .section--philosophy {
    width: 100%;
    margin-inline: auto;
  }

  .philosophy__inner {
    padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
    gap: 50px;
  }

  .philosophy__message p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 528px) {
  .section--philosophy {
    height: 600px;
  }

  .philosophy__inner {
    gap: 50px;
  }

  .philosophy__message p {
    font-size: 0.875rem;
  }
}

/* ----------------------------------------------------------
INFORMATION Section
----------------------------------------------------------*/
.section--information {
  padding-block: 103px 126px;
}

.info-block {
  margin-top: 60px;
}

.info-block:nth-last-of-type(1),
.info-block:nth-last-of-type(2) {
  margin-top: 120px;
}

.info-block__title {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.info-list {
  margin-top: 19px;
}

.info-list--company-name {
  margin-top: 42px;
}

.info-list__row {
  display: grid;
  grid-template-columns: 195px 1fr;
}

.info-list__row:last-child dt {
  border-bottom: solid 1px var(--black1);
}

.info-list__row:last-child dd {
  border-bottom: solid 1px var(--gray9);
}

.info-list dt {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black2);
  border-top: solid 1px var(--black1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-list dd {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black2);
  border-top: 1px solid var(--gray9);
  padding-block: 29px;
  padding-left: 21px;
}

.info-list__map {
  margin-top: 23px;
  max-width: 100%;
  aspect-ratio: 802/460;
}

.info-list__map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 860px) {
  .section--information {
    padding-block: 250px 63px;
    padding-inline: 14px;
    margin-top: -200px;
  }
}

@media screen and (max-width: 528px) {
  .section--information {
    padding-block: 200px 63px;
    margin-top: -150px;
  }

  .info-block {
    margin-top: 30px;
  }

  .info-block:nth-last-of-type(1),
  .info-block:nth-last-of-type(2) {
    margin-top: 60px;
  }

  .info-block__title {
    font-size: 1.125rem;
  }

  .info-list__row {
    grid-template-columns: 100px 1fr;
  }

  .info-list dt {
    font-size: 0.875rem;
  }

  .info-list dd {
    font-size: 0.875rem;
    padding-block: 16px;
    padding-left: 12px;
  }
}

/* =================================================================
interviewアーカイブ
================================================================= */
.interview-archive__mainvisual {
  background: url(../img/interview-mainvisual.webp) no-repeat center top/cover;
}

.interview-archive-container {
  display: grid;
  grid-template-columns: 150px 1fr;
  width: 100%;
  max-width: calc(var(--content-width-large) + 1.75rem * 2);
  margin-inline: auto;
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
}

.interview-archive__side-nav {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  flex-shrink: 0;
  padding-top: 104px;
}

.interview-archive__side-nav .side-nav__link {
  font-size: calc(clamp(0.875rem, 0.809rem + 0.28vw, 1rem));
}

.interview-archive-main-content {
  padding-block: 17px 133px;
}

.interview-archive__item {
  padding-top: 84px;
}

.interview-archive__item-title {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.interview-archive__card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: calc(clamp(2rem, 0.405rem + 6.81vw, 4.063rem));
  margin-top: 16px;
}

.interview-archive__item-representative .interview-archive__card-wrapper {
  grid-template-columns: 1fr;
}

.interview-archive__image-wrapper {
  width: 100%;
  aspect-ratio: 460/562;
  position: relative;
  overflow: hidden;
}

.interview-archive__item-representative .interview-archive__image-wrapper {
  width: 100%;
  height: 460px;
  aspect-ratio: initial;
}

.interview-archive__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
  transition: all 0.4s ease-out;
}

.interview-archive__card:hover .interview-archive__image {
  scale: 1.1;
  filter: grayscale(0%);
}

.interview-archive__number {
  position: absolute;
  top: 22px;
  left: 41px;
  font-family: "Cinzel", serif;
  font-size: 2.875rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  color: var(--white);
  z-index: 2;
  transition: all 0.4s ease-out;
}

.interview-archive__card:hover .interview-archive__number {
  color: var(--red1);
}

.interview-archive__text {
  margin-top: 29px;
}

.interview-archive__text-title {
  font-size: 1.625rem;
  font-weight: 500;
  min-height: 3.2em; /* 2行分確保 */
  line-height: 1.4;
}

.interview-archive__button {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  transition: all 0.4s ease-out;
  margin-top: 19px;
}

.interview-archive__button-arrow {
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--red1);
  border-radius: 50%;
  position: relative;
}

.interview-archive__button-arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.interview-archive__card:hover .interview-archive__button {
  translate: 8px 0;
}

@media screen and (max-width: 1080px) {
  .interview-archive__number {
    font-size: calc(clamp(1.875rem, 1.809rem + 0.28vw, 2rem));
    left: 10px;
  }
}

@media screen and (max-width: 860px) {
  .interview-archive-container {
    grid-template-columns: 150px 1fr;
    gap: 20px;
  }

  .interview-archive__card-wrapper {
    grid-template-columns: 1fr;
  }

  .interview-archive__number {
    font-size: calc(clamp(2rem, 0.454rem + 6.6vw, 4rem));
  }
}

@media screen and (max-width: 528px) {
  .interview-archive-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .interview-archive__side-nav {
    padding-block: 52px 20px;
    height: auto;
    top: 25px;
    z-index: 2;
    background-color: var(--white);
  }

  .interview-archive__side-nav .side-nav__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .interview-archive__item-title {
    font-size: 1.5rem;
  }

  .interview-archive__item {
    padding-top: 140px;
    margin-top: -60px;
    box-sizing: content-box;
  }

  .interview-archive__item:first-of-type {
    margin-top: -130px;
  }

  .interview-archive__text-title {
    font-size: 1.125rem;
  }

  .interview-archive__button {
    font-size: 1rem;
  }
}

/* =================================================================
interview個別
================================================================= */
.page-interview {
  position: relative;
  height: 785px;
  overflow: hidden;
}

.page-interview__mainvisual {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.page-interview__mainvisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-interview__mainvisual-black {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}

.page-interview__mainvisual-k {
  content: "";
  display: block;
  height: 700px;
  aspect-ratio: 1119/1432;
  position: absolute;
  top: 32px;
  right: 0;
  background: url(../img/K-bg.webp) no-repeat center top/contain;
}

.page-interview__inner {
  width: 100%;
  max-width: calc(var(--content-width-small) + 1.563rem);
  padding-inline: calc(clamp(1.563rem, -0.823rem + 7.23vw, 3.063rem));
  height: 100%;
  margin-inline: auto;
  position: relative;
  display: flex;
  align-items: center;
}

.page-interview__number {
  color: var(--white);
  font-size: 6.625rem;
  font-weight: 400;
  font-family: "Cinzel", serif;
  position: absolute;
  bottom: 146px;
  left: 12px;
}

.page-interview__type {
  color: var(--white);
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  position: absolute;
  bottom: 104px;
  left: 12px;
}

.page-interview__title-wrapper {
  background-color: var(--black1);
  width: 100%;
  height: 217px;
  padding-inline: calc(clamp(1.563rem, -0.823rem + 7.23vw, 3.063rem));
  transform: translateY(-1px);
  position: relative;
  z-index: 2;
}

.page-interview__title {
  max-width: var(--content-width-small);
  margin-inline: auto;
  translate: 0 70px;
  text-align: justify;
}

.page-interview__title-text {
  color: var(--white);
  font-size: 4.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  padding: 0px 31px 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-color: var(--red1);
  position: relative;
}

.page-interview__content {
  position: relative;
}

.page-interview__content > .wp-block-group:first-of-type {
  background: url(../img/page-interview-bg.webp) repeat left top/contain;
  padding-block: 151px 0px;
  padding-inline: calc(clamp(1.563rem, -0.823rem + 7.23vw, 3.063rem));
  overflow: clip;
}

.page-interview__content > .wp-block-group:nth-of-type(2) {
  background: url(../img/page-interview-bg.webp) repeat left top/contain;
  padding-block: 0px 84px;
  padding-inline: calc(clamp(1.563rem, -0.823rem + 7.23vw, 3.063rem));
  overflow: clip;
}

.interview-sticky-wrapper {
  position: relative;
  width: 100%;
  max-width: var(--content-width-large);
  margin-inline: auto;
}

.interview-sticky-container {
  display: flex;
  align-items: flex-start !important;
  justify-content: center;
  margin-inline: auto;
  overflow: visible; 
  border-top: solid 1px var(--brown1);
  padding-block: 84px;
}

.page-interview__representative .interview-sticky-container {
  border: none;
  padding-top: 0;
}
.page-interview__representative .page-interview__theme::after {
  display: none;
}

.interview-sticky-image-box {
  width: 55%;
  position: sticky;
  top: 100px;
  translate: 50px 0;
  flex-shrink: 0;
  aspect-ratio: 667/471;
}

.page-interview__theme-2 .interview-sticky-image-box {
  translate: -50px 0;
}

.page-interview__theme::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 0;
  border-top: solid 1px var(--brown1);
}

.interview-sticky-text-window {
  width: 45%;
  position: relative;
}

.interview-sticky-text-inner {
  will-change: transform;
  transition: transform 0.1s linear;
}

.text-moving-inner {
  will-change: transform;
  padding-inline: 20px;
}

.page-interview__theme > .wp-block-group::-webkit-scrollbar {
  display: none;
}

.page-interview__theme-2 > .wp-block-group p:first-of-type,
.page-interview__theme-4 > .wp-block-group p:first-of-type {
  padding-bottom: 82px;
  margin-bottom: 82px;
  border-bottom: solid 1px var(--brown1);
  position: relative;
  z-index: 2;
}

.page-interview__theme-2 > .wp-block-group p:first-of-type::after,
.page-interview__theme-4 > .wp-block-group p:first-of-type::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: 1;
  border-bottom: solid 1px var(--brown1);
}

.page-interview__theme-2 > .wp-block-group .interview-text__no-line:first-of-type {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.page-interview__theme-2 .interview-text__no-line::after {
  display: none;
}

.interview-sticky-image-box figure,
.interview-sticky-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.page-interview__theme .wp-block-heading {
  color: var(--gray10);
  font-size: 5.375rem;
  font-family: "Cinzel", serif;
  font-weight: 400;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.page-interview__theme .wp-block-heading::before {
  content: "";
  width: 100%;
  aspect-ratio: 411/31;
  background: url(../img/calligraphy-white.webp) no-repeat center top/cover;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: -1;
}

.page-interview__theme .wp-block-list {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 29px;
}

.page-interview__theme .wp-block-list li {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0;
}

.page-interview__theme .wp-block-list::before {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--red1);
}

.page-interview__theme .wp-block-group p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  margin-top: 28px;
}

.page-interview-footer {
  width: 100%;
  height: 705px;
}

.page-interview-footer img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.page-interview__content .business__marquee {
  bottom: -52px;
}

.page-interview__content .business__marquee-text {
  color: #9e0709;
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .interview-sticky-wrapper {
    height: auto !important;
  }

  .interview-sticky-container {
    position: relative !important;
    top: 0 !important;
    height: auto !important; 
    flex-direction: column;
    overflow: visible !important;
  }

  /* 画像エリア */
  .interview-sticky-image-box {
    width: 100% !important; 
    height: auto !important;
    position: relative;
    top: auto;
    translate: 0 0;
    aspect-ratio: 3 / 2;
  }

  .page-interview__theme-2 .interview-sticky-image-box {
    translate: 0 0;
  }

  /* テキストの窓 */
  .interview-sticky-text-window {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important; 
  }

  /* 動かしていた中身 */
  .interview-sticky-text-inner {
    transform: none !important;
    padding-bottom: 0 !important;
  }

  .page-interview__title-text {
    font-size: 3.75rem;
  }

  .page-interview__theme {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .page-interview__theme-2 {
    flex-direction: column;
  }
}

@media screen and (max-width: 860px) {
  .page-interview__mainvisual-k {
    height: 450px;
    right: -200px;
    top: 90px;
  }

  .page-interview__title-wrapper {
    height: 150px;
  }

  .page-interview__title {
    translate: 0 35px;
  }

  .page-interview__title-text {
    font-size: 3rem;
    padding-bottom: 0;
    padding-inline: calc(clamp(0.938rem, 0.213rem + 3.09vw, 1.875rem));
  }
}

@media screen and (max-width: 528px) {
  .page-interview__mainvisual-k {
    height: 300px;
    right: -60px;
    top: 300px;
  }

  .page-interview__number {
    font-size: 3rem;
  }

  .page-interview__type {
    font-size: 1rem;
    bottom: 124px;
  }

  .page-interview__title-wrapper {
    height: 100px;
    padding-inline: 18px;
  }

  .page-interview__title-text {
    font-size: 1.5rem;
  }

  .page-interview__content > .wp-block-group:first-of-type {
    padding-block: 70px 0px;
  }

  .page-interview__theme {
    padding-block: 40px;
  }

  .page-interview__content > .wp-block-group:nth-of-type(2) {
    padding-block: 40px;
  }

  .page-interview__theme-2 > .wp-block-group p:first-of-type,
  .page-interview__theme-4 > .wp-block-group p:first-of-type {
    padding-bottom: 38px;
    margin-bottom: 38px;
  }

  .page-interview__theme .wp-block-heading {
    font-size: 2.5rem;
  }

  .page-interview__theme .wp-block-list {
    gap: 9px;
    margin-top: 15px;
    align-items: start;
  }

  .page-interview__theme .wp-block-list li {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .page-interview__theme .wp-block-list::before {
    width: 8px;
    translate: 0 0.5em;
  }

  .page-interview__theme .wp-block-group p {
    font-size: 0.875rem;
    margin-top: 14px;
  }

  .page-interview-footer {
    height: 350px;
  }
  .page-interview__content .business__marquee {
    bottom: -25px;
  }
}

/* ----------------------------------------------------------
インタビューページ　next interviewセクション
----------------------------------------------------------*/
.next-interview-wrapper {
  height: 400vh;
  position: relative;
  background-color: var(--black1);
}
.next-interview {
  background-color: var(--black1);
  color: var(--white);
  padding-block: 56px 106px;

  position: sticky;
  top: 0;
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  overflow: hidden;
}

.next-interview__container {
  width: 100%;
  max-width: var(--content-width-large);
  padding-inline: calc(clamp(1rem, -0.59rem + 4.82vw, 2rem));
  margin-inline: auto;
}

/* ヘッダー周り */
.next-interview__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.next-interview__title {
  color: var(--gray1);
  font-family: "Cinzel", serif;
  font-size: calc(clamp(2.375rem, 0.642rem + 7.4vw, 5.375rem));
  font-weight: 400;
  letter-spacing: 0;
}

.next-interview__view-more {
  color: var(--gray1);
  font-size: calc(clamp(0.875rem, 0.731rem + 0.62vw, 1.125rem));
  letter-spacing: 0;
  transition: all 0.4s ease-out;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}

.next-interview__view-more--arrow {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg);
  transition: all 0.4s ease-out;
}

.next-interview__view-more:hover {
  translate: 8px 0;
}

/* 横スクロールエリア */
.next-interview__scroller {
  width: 100%;
  overflow-x: hidden;
  padding-left: calc((100vw - var(--content-width-large)) / 2 + calc(clamp(1.125rem, 4.8vw, 2.25rem)));
  margin-top: 52px;
  -webkit-overflow-scrolling: touch; 
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.next-interview__scroller::-webkit-scrollbar {
  display: none;
}

.next-interview__list {
  display: flex;
  gap: 62px;
  /* 右端に余白を持たせて、最後のカードが見切れずに表示されるようにする */
  padding-right: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  width: max-content; 
  will-change: transform;
}

/* ----------------------------------------------------------
 Interview Card
----------------------------------------------------------*/
.interview-card {
  width: 480px;
  flex-shrink: 0;
}

.interview-card__link {
  color: var(--white);
  display: block;
}

.interview-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 480 / 562;
  overflow: hidden;
}

.interview-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.4s ease-out;
}

.interview-card__link:hover .interview-card__image {
  scale: 1.1;
  filter: grayscale(0%);
}

.interview-card__link:hover .interview-card__number {
  color: var(--red1);
}

.interview-card__number {
  position: absolute;
  top: 22px;
  left: 41px;
  font-family: "Cinzel", serif;
  font-size: 2.875rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  color: var(--white);
  z-index: 2;
  transition: all 0.4s ease-out;
}

.interview-card__title {
  font-size: 1.625rem;
  margin-top: 28px;
  font-weight: 500;
  min-height: 3.2em; /* 2行分確保 */
}

.interview-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  transition: all 0.4s ease-out;
}

.interview-card__detail-text {
  font-size: 1.25rem;
  color: var(--white);
}

.interview-card__arrow-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--red1);
  border-radius: 50%;
  position: relative;
}

.interview-card__arrow-icon::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.interview-card__link:hover .interview-card__footer {
  translate: 8px 0;
}
@media screen and (max-width: 1024px) {
  .next-interview__scroller {
    padding-left: calc(clamp(1.125rem, 4.8vw, 2.25rem));
  }

  .next-interview__header {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 18px;
  }
}

@media screen and (max-width: 860px) {
  .next-interview-wrapper {
    height: 3200px;
    position: relative;
  }

  .next-interview {
    padding-block: 50px;
    height: calc(clamp(44.938rem, 31.358rem + 57.94vw, 62.5rem));
    min-height: initial;
  }

  .next-interview__list {
    gap: 28px;
  }

  .interview-card {
    width: calc(clamp(20rem, 12.268rem + 32.99vw, 30rem));
  }

  .interview-card__number {
    font-size: calc(clamp(1.875rem, 1.102rem + 3.3vw, 2.875rem));
    top: 10px;
    left: 10px;
  }

  .interview-card__title {
    font-size: calc(clamp(1.375rem, 1.182rem + 0.82vw, 1.625rem));
  }

  .interview-card__detail-text {
    font-size: calc(clamp(1rem, 0.807rem + 0.82vw, 1.25rem));
  }
}

/* =================================================================
インタビューページ　next interviewセクション
================================================================= */
.slag-page__mainvisual {
  background: url(../img/slag-mainvisual.webp) no-repeat center center/cover;
  background-blend-mode: lighten;
  display: grid;
  place-content: center;
}

.slag-page__main-message {
  color: var(--white);
  font-size: calc(clamp(1.5rem, 0.706rem + 3.39vw, 2.875rem));
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-align: center;
}

.slag-page__container {
  max-width: var(--content-width-small);
  margin-inline: auto;
}

.slag-page__section-title {
  font-size: calc(clamp(1.25rem, 0.817rem + 1.85vw, 2rem));
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.4;
}

.slag-page__section-subtitle {
  font-size: calc(clamp(1rem, 0.856rem + 0.62vw, 1.25rem));
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.3em;
  margin-top: 24px;
}

/* ----------------------------------------------------------
Intro Section 
----------------------------------------------------------*/
.slag-intro__content-wrapper {
  background: url(../img/slag-intro-bg.webp) no-repeat center top/cover;
  padding-block: 117px 104px;
}

.slag-intro__content {
  max-width: var(--content-width-small);
  margin-inline: auto;
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
  position: relative;
}

.slag-intro__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.9;
  margin-top: 38px;
}

.slag-intro__text-main {
  font-size: 2em;
  line-height: 1.5;
}

.slag-intro__content-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.slag-intro__inner {
  max-width: var(--content-width-small);
  margin-inline: auto;
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  padding-block: 96px 80px;
}

.slag-merit-flow__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.4;
}

.slag-merit-flow__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 41px;
}

.slag-merit-item {
  display: grid;
  grid-template-columns: 1fr 31px 1fr;
  align-items: center;
  gap: 35px;
}

.slag-merit-item__box {
  width: 100%;
  padding: 23px 44px;
  border: 1px solid var(--gray11);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.slag-merit-item__box--pink {
  background-color: var(--red3);
  border: none;
}

.slag-merit-item__arrow {
  font-size: 30px;
  color: var(--red1);
  font-weight: bold;
}

.slag-merit-item__arrow-sp {
  display: none;
  font-size: 20px;
  color: var(--red1);
  font-weight: bold;
}

.slag-merit-flow__footer {
  background-color: var(--gray12);
  padding-block: 32px;
  width: 100%;
  margin-top: 49px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 860px) {
  .slag-intro__text {
    font-size: calc(clamp(1rem, 0.856rem + 0.62vw, 1.25rem));
  }

  .slag-intro__text-main {
    font-size: calc(clamp(1.25rem, 0.921rem + 1.75vw, 1.5rem));
  }

  .slag-intro__content-text {
    position: relative;
    z-index: 2;
  }

  .slag-intro__content-img {
    width: 40%;
    min-width: 300px;
    position: absolute;
    z-index: 1;
    right: 18px;
    opacity: 0.9;
  }

  .slag-merit-flow__title {
    font-size: calc(clamp(1.125rem, 0.448rem + 2.89vw, 2rem));
    letter-spacing: 0.1em;
  }

  .slag-merit-flow__list {
    margin-top: 20px;
  }

  .slag-merit-item {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 6px;
    margin-top: 36px;
  }

  .slag-merit-item__box {
    padding-inline: calc(clamp(1.375rem, 0.312rem + 4.54vw, 2.75rem));
    font-size: calc(clamp(1rem, 0.807rem + 0.82vw, 1.25rem));
  }

  .slag-merit-item__arrow {
    display: none;
  }

  .slag-merit-item__arrow-sp {
    display: block;
  }

  .slag-merit-flow__footer {
    font-size: calc(clamp(1.25rem, 1.057rem + 0.82vw, 1.5rem));
  }
}

@media screen and (max-width: 667px) {
  .slag-intro__content-img {
    opacity: 0.3;
  }
}
@media screen and (max-width: 528px) {
  .slag-intro__content-wrapper {
    padding-block: 58px 52px;
  }

  .slag-intro__content {
    grid-template-columns: 1fr;
  }

  .slag-intro__text {
    font-size: 0.75rem;
  }

  .slag-intro__text-main {
    font-size: calc(clamp(1.25rem, 0.637rem + 2.61vw, 1.5rem));
  }
}

/* ----------------------------------------------------------
Lineup Section 
----------------------------------------------------------*/
.slag-lineup {
  padding-top: 78px;
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  background-color: var(--gray13);
}

.lineup-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.lineup-table th {
  width: calc(100% / 3);
  background-color: var(--gray11);
  padding: 25px 22px;
  border: 1px solid var(--gray10);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.lineup-table td {
  width: calc(100% / 3);
  background-color: var(--white);
  padding: 25px 22px;
  border: 1px solid var(--gray10);
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
}

.slag-lineup__image {
  margin-top: 72px;
  width: 100vw;
  height: 485px;
  margin-inline: calc(50% - 50vw);
}

.slag-lineup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 860px) {
  .slag-lineup__image {
    height: 250px;
  }
}

@media screen and (max-width: 528px) {
  .slag-lineup {
    padding-top: 39px;
  }

  .lineup-table th,
  .lineup-table td {
    padding: 18px 10px;
    font-size: 0.875rem;
  }

  .slag-lineup__image {
    height: 200px;
  }
}

/* ----------------------------------------------------------
Supply Section
----------------------------------------------------------*/
.slag-supply {
  padding-block: 86px 75px;
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 29px;
}

.supply-card {
  text-align: center;
}

.supply-card__img {
  background-color: var(--gray14);
  height: 200px;
  display: grid;
  place-content: center;
}

.supply-card:nth-of-type(2) .supply-card__img {
  background-color: var(--gray15);
}

.supply-card__img-icon {
  width: 113px;
  height: auto;
}

.supply-card__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 23px;
}

.supply-message {
  margin-top: 92px;
}

.supply-message__main {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.supply-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(clamp(1.25rem, 0.139rem + 4.74vw, 2.688rem));
  margin-top: 40px;
}

.supply-check-list li {
  font-size: 1.25rem;
  font-weight: 500;
  background-color: var(--red3);
  padding: 23px 16px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 51px;
}

.supply-check-list li::before {
  content: "";
  display: block;
  background: url(../img/checked-logo.webp) no-repeat center top/contain;
  width: 26px;
  aspect-ratio: 1/1;
}

.supply-message__footer {
  background-color: var(--gray12);
  margin-top: 43px;
  padding-block: 34px;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  line-height: 1.4;
}

@media screen and (max-width: 860px) {
  .supply-message__main {
    font-size: calc(clamp(1.25rem, 0.67rem + 2.47vw, 2rem));
  }

  .supply-check-list li {
    gap: calc(clamp(1.125rem, -0.47rem + 6.8vw, 3.188rem));
    font-size: calc(clamp(1rem, 0.807rem + 0.82vw, 1.25rem));
  }

  .supply-message__footer {
    font-size: calc(clamp(1rem, 0.807rem + 0.82vw, 1.25rem));
  }
}

@media screen and (max-width: 528px) {
  .supply-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .supply-card__text {
    font-size: 1rem;
  }

  .supply-check-list {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .supply-message__footer {
    letter-spacing: 0.2em;
  }
}

/* ----------------------------------------------------------
slag-flow Section
----------------------------------------------------------*/
.slag-flow {
  background-color: var(--gray14);
  padding-block: 78px 42px;
  overflow: hidden;
}

.slag-flow__inner {
  width: 100%;
  padding-inline: 50px;
  box-sizing: border-box;
}

.slag-flow__inner .slag-page__section-title {
  max-width: var(--content-width-small);
  margin-inline: auto;
}

.slag-flow__scroller {
  max-width: var(--content-width-small);
  overflow-x: scroll;
  margin-inline: auto;
  padding-bottom: 36px;
  -webkit-overflow-scrolling: touch;
  margin-top: 28px;
}
@media screen and (min-width: 2724px) {
  .slag-flow__scroller {
    margin-inline: auto;
    max-width: max-content;
  }
}
@media screen and (max-width: 2000px) {
  .slag-flow__scroller {
    width: 90%;
  }
}
@media screen and (max-width: 1400px) {
  .slag-flow__scroller {
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1100px) {
  .slag-flow__inner {
    padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  }
}

.slag-flow__scroller::-webkit-scrollbar {
  width: 600px;
  height: 10px;
}

.slag-flow__scroller::-webkit-scrollbar-track {
  background-color: var(--gray6);
}

.slag-flow__scroller::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: var(--gray8);
  --bg-opacity: 1;
  border: 2px solid transparent;
  border-left: 4px solid transparent;
  background-clip: padding-box;
}

.slag-flow__list {
  display: flex;
  gap: 20px;
  padding-right: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  width: max-content;
}

.slag-flow__item {
  width: 328px;
  flex-shrink: 0;
}

.slag-flow__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 328/200;
  overflow: hidden;
}

.slag-flow__number {
  position: absolute;
  top: 11px;
  left: 10px;
  color: var(--white);
  font-size: 1.875rem;
  z-index: 2;
}

.slag-flow__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slag-flow__heading {
  font-size: 1.375rem;
  font-weight: 500;
  margin-top: 20px;
}

.slag-flow__text {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 17px;
}

@media screen and (max-width: 1080px) {
  .slag-flow__inner {
    padding-left: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  }
}

@media (max-width: 768px) {
  .slag-flow {
    padding: 60px 0;
  }
  .slag-flow__inner {
    padding-left: 20px;
  }
  .slag-flow__item {
    width: 280px;
  }
  .slag-flow__list {
    gap: 20px;
    padding-right: 20px;
  }
}

/* ----------------------------------------------------------
Examples Section
----------------------------------------------------------*/
.slag-examples {
  padding-block: 87px 125px;
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  background: url(../img/slag-example-bg.webp) no-repeat center bottom/cover;
}

.slag-example__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 33px calc(clamp(1.25rem, -1.649rem + 12.37vw, 5rem));
  margin-top: 29px;
}

.slag-example__grid-img {
  width: 100%;
  aspect-ratio: 463 / 323;
  object-fit: cover;
}

.slag-example__grid-item p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 16px;
}

.slag-cta {
  background: var(--white);
  padding: 25px;
  text-align: start;
  margin-top: 64px;
}

.slag-cta__text {
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (max-width: 528px) {
  .slag-example__grid {
    grid-template-columns: 1fr;
  }

  .slag-cta {
    padding: 14px calc(clamp(0.875rem, -2.25rem + 12.5vw, 1.875rem));
  }

  .slag-cta__text {
    font-size: calc(clamp(0.875rem, 0.484rem + 1.56vw, 1rem));
    letter-spacing: 0.1em;
  }
}

/* =================================================================
businessアーカイブ
================================================================= */
.business-archive__mainvisual {
  background: url(../img/business-mainvisual.webp) no-repeat center top/cover;
}

.business-archive__wrapper {
  width: 100%;
}

.business-item {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
}

.business-item__inner {
  max-width: var(--content-width-small);
  margin-inline: auto;
  padding-inline: calc(clamp(0.875rem, -0.517rem + 4.22vw, 1.75rem));
  box-sizing: content-box;
  position: relative;
  display: flex;
  z-index: 2;
}

.business-item__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.08;
  z-index: 1;
}

.business-item__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 26px;
}

/* --- レイアウト：左右 (Side) --- */
.business-item--side .business-item__inner {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  gap: calc(clamp(1.25rem, -2.441rem + 11.19vw, 4.375rem));
}
.business-item--side .business-item__text-content {
  width: 45%;
}
.business-item--side .business-item__video-area {
  width: 50%;
}
.business-item--side .business-item__grid {
  display: block;
}

.business-item--side.business-item--reverse .business-item__inner {
  flex-direction: row-reverse;
}

/* --- レイアウト：上下 (Stack) ※テキストが上、動画が下 --- */
.business-item--stack .business-item__inner {
  flex-direction: column;
  align-items: flex-start;
  gap: calc(clamp(1.25rem, -0.965rem + 6.71vw, 3.125rem));
}
.business-item--stack .business-item__text-content {
  width: 100%;
}
.business-item--stack .business-item__video-area {
  width: 100%;
  display: flex;
  gap: 20px;
}

/* --- パーツ詳細 --- */
.business-item__header {
  margin-bottom: 30px;
}

.business-item__num {
  color: var(--gray10);
  font-family: "Cinzel", serif;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
}

.business-item__num-line {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: relative;
}

.business-item__num-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  top: 3px;
}

.business-item__title {
  color: var(--black2);
  font-size: 2rem;
  letter-spacing: 0.3em;
  line-height: 1.2;
}

.business-item__title-small {
  color: var(--black2);
  font-size: 0.5em;
  letter-spacing: 0.2em;
}

.business-item__body {
  color: var(--black2);
  line-height: 2;
  font-size: 1rem;
}

.business-item__business-name {
  color: var(--black2);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 30px;
}

.business-item__business-desc {
  color: var(--black2);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 30px;
}

.business-item__thumb-wrapper {
  height: 500px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-color: #000;
}

.business-item__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.business-item__thumb-wrapper--no-link {
  cursor: default;
}
/* リンクがある時のみホバーで拡大 */
.business-item__thumb-wrapper.js-modal-open:hover .business-item__thumb {
  transform: scale(1.05);
}

.business-item__body li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.business-item__body li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--red1);
}

.business-item__body a {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  color: var(--red1);
  font-size: 1rem;
  margin-top: 50px;
  position: relative;
  transition: all 0.4s ease-out;
}

.business-item__body a::after {
  content: "";
  display: block;
  width: 1.2em;
  aspect-ratio: 1/1;
  background-color: var(--red1);
  border-radius: 50%;
}

.business-item__body a::before {
  content: "";
  display: block;
  width: 0.4em;
  aspect-ratio: 1/1;
  border-top: solid 1px var(--white);
  border-right: solid 1px var(--white);
  rotate: 45deg;
  position: absolute;
  right: 8px;
}

.business-item__body a:hover {
  gap: 1.5em;
}

.business-item__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 3;
}

.business-item__play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 14px solid #cc0000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* モーダル基本スタイル（4枚目用） */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  place-items: center;
}

.video-modal.is-open {
  display: grid;
}

.video-modal__content {
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.video-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

@media screen and (max-width: 860px) {
  .business-item__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  /* --- レイアウト：左右 (Side) --- */
  .business-item--side .business-item__inner {
    flex-direction: column;
  }
  .business-item--side .business-item__text-content {
    width: 100%;
  }
  .business-item--side .business-item__video-area {
    width: 100%;
  }
  .business-item--side .business-item__thumb-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .business-item--side.business-item--reverse .business-item__inner {
    flex-direction: column;
  }

  /* --- レイアウト：上下 (Stack) ※テキストが上、動画が下 --- */
  .business-item--stack .business-item__inner {
    flex-direction: column;
  }
  .business-item--stack .business-item__text-content {
    width: 100%;
  }
  .business-item--stack .business-item__video-area {
    flex-direction: column;
  }
  .business-item--stack .business-item__thumb-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .business-item__body a {
    margin-top: 25px;
  }
  
}

@media screen and (max-width: 528px) {
  .business-item__num {
    font-size: 1.125rem;
  }

  .business-item__title {
    font-size: 1.25rem;
  }

  .business-item__body {
    font-size: 0.875rem;
  }

  .business-item__business-name {
    font-size: 1.125rem;
    margin-top: 16px;
  }
  
  .business-item__business-desc {
    font-size: 0.875rem;
    margin-top: 16px;
  }
  .business-item__body a {
    font-size: 0.875rem;
  }
  
  .business-item__body a::before {
    right: 6px;
  }
}

/* =================================================================
  404ページ
================================================================= */
.error__wrapper {
  max-width: var(--content-width-small);
  padding: 100px 20px 100px;
  margin-inline: auto;
}

.error__title {
  font-size: 2rem;
  text-align: center;
}

.error__content {
  color: var(--black1);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 36px;
}

.error__content-link {
  display: inline-block;
  font-weight: bold;
  color: var(--red1);
  border-bottom: solid 1px var(--red1);
}

.error__content-link:hover {
  opacity: 0.6;
}
