:root {
  --ht-red: #811C21;
  --ht-red-dark: #7f171e;
  --ht-cream: #FFF4D0;
  --ht-paper: #f7f3ee;
  --ht-ink: #2c1718;
  --ht-muted: rgba(255, 255, 255, 0.72);
  --ht-green: #33bb67;
  --ht-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.hataraku-front {
  margin: 0;
  background: #efe8df;
  color: var(--ht-ink);
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

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

body.hataraku-front img {
  display: block;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hataraku-site {
  margin: 0 auto;
  background: var(--ht-red);
  overflow: hidden;
  box-shadow: 0 0 48px rgba(44, 23, 24, 0.16);
}

.hero {
  position: relative;
  left: 50%;
  width: 100vw;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
  background: #111;
  transform: translateX(-50%);
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(88, 16, 19, 0.18), rgba(120, 18, 22, 0.5)),
    rgba(124, 18, 22, 0.34);
  mix-blend-mode: multiply;
}

.hero__brand {
  position: relative;
  z-index: 1;
  width: min(260px, 38vw);
  text-align: center;
}

.hero__logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(64, 10, 12, 0.22));
}

.message__side-image {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: clamp(34px, 4.2vw, 62px);
  height: auto;
  transform: translateY(-50%);
}

.message {
    position: relative;
    /* min-height: 780px; */
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 24px;
    padding: 120px 40px 120px;
    background: var(--ht-red);
    color: #fff;
    margin: 0 auto;
}

.vertical-copy {


}

.vertical-copy p {
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    line-height: 2.80;
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin: 0;
    letter-spacing: 12px;
}

.movie-card {
    position: relative;
    width: min(780px, 72vw);
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    color: #fff;
    background: #111;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 40px 40px 0 rgba(68, 0, 5, 0.4);
}

.movie-card__poster {
  display: block;
  width: 100%;
  aspect-ratio: 780 / 430;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .movie-card__poster,
.movie-card:focus-visible .movie-card__poster {
  filter: brightness(0.84);
  transform: scale(1.025);
}

.movie-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 90px solid rgb(255 255 255 / 53%);
    transform: translate(-38%, -50%);
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.movie-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 64px 24px;
  background: rgba(31, 6, 8, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.movie-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.movie-modal__inner {
  position: relative;
  width: min(1200px, 92vw);
  max-height: 80vh;
}

.movie-modal__video {
  display: block;
  width: 100%;
  max-height: 80vh;
  background: #111;
  box-shadow: 32px 32px 0 rgba(0, 0, 0, 0.4);
}

.movie-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(129, 28, 33, 0.72);
  color: #fff;
  cursor: pointer;
}

.movie-modal__close::before,
.movie-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.movie-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.movie-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.interview {
  position: relative;
  padding: 0 0 92px;
  background: var(--ht-red);
  color: #fff;
  overflow: hidden;
}

.interview__stage {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.interview__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.interview__slide {
  flex: 0 0 min(1080px, 75vw);
  display: grid;
  grid-template-rows: clamp(420px, 51vw, 735px) auto;
  overflow: hidden;
  opacity: 0.56;
  transition: opacity 0.95s ease;
}

.interview__slide.is-active {
  opacity: 1;
}

.interview__image {
  overflow: hidden;
  cursor: pointer;
}

.interview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1);
  will-change: opacity;
}

.interview__arrows {
  position: absolute;
  right: calc(50vw - min(540px, 37.5vw));
  bottom: -54px;
  z-index: 2;
  display: flex;
  gap: 32px;
}

.interview__arrow {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.interview__arrow::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(-45deg);
}

.interview__arrow--next::before {
  transform: rotate(135deg);
}

.interview__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: 92px 0 0;
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
  will-change: opacity;
}

.interview__slide.is-active.is-preparing .interview__image img {
  opacity: 0;
  transform: scale(1);
}

.interview__slide.is-active.is-preparing .interview__body {
  opacity: 0;
  transform: translateY(0);
}

.interview__slide.is-active.is-entering .interview__image img {
  animation: interviewImageFadeUp 1.75s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.interview__slide.is-active.is-entering .interview__body {
  animation: interviewBodyFadeUp 1.55s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
  pointer-events: auto;
}

.interview__slide.is-active:not(.is-entering) .interview__image img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.interview__slide.is-active:not(.is-entering) .interview__body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.interview__track.is-jumping .interview__image img,
.interview__track.is-jumping .interview__body {
  animation: none;
  transition: none;
  transition-delay: 0s;
}

@keyframes interviewImageFadeUp {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes interviewBodyFadeUp {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  48% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-kicker {
  margin: 0 0 28px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.28em;
}

.interview__roman {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: 0.25em;
}

.interview__name-ja {
  margin: 6px 0 28px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.interview__meta {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.interview__more {
  width: min(312px, 28vw);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.interview__more img {
  width: 100%;
}

.interview-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(31, 6, 8, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  overflow: hidden;
}

.interview-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.interview-modal__panel {
    position: relative;
    isolation: isolate;
    width: min(1320px, calc(100vw - 64px));
    max-height: calc(100vh - 64px);
    padding: clamp(48px, 5vw, 90px) clamp(40px, 10vw, 120px) 0;
    overflow: auto;
    background: #ffffff;
    color: #241616;

}

/* .interview-modal__panel::before {
  content: "";
  position: absolute;
  left: 33%;
  top: 27%;
  z-index: 0;
  width: min(720px, 52vw);
  aspect-ratio: 1;
  background-image: var(--interview-heart-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.92;
  pointer-events: none;
} */

.interview-modal--even .interview-modal__panel {
  background: var(--ht-red);
  color: #fff;
}

.interview-modal__heart {
    position: absolute;
    left: 16%;
    top: 27%;
    z-index: 0;
    width: 70%;
    opacity: 0.92;
    pointer-events: none;
    user-select: none;
  display: none;
}

.interview-modal__header,
.interview-modal__content,
.interview-modal__nav {
  position: relative;
  z-index: 1;
}

.interview-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 3vw, 116px);
}

.interview-modal__number {
    display: flex;
    align-items: center;
    gap: 48px;
    margin: 0;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1;
    letter-spacing: 0.12em;
}

.interview-modal__number span:first-child {
  font-size: clamp(18px, 2vw, 32px);
  letter-spacing: 0.32em;
}

.interview-modal__close {
  position: relative;
  width: 80px;
  height: 80px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.interview-modal__close::before,
.interview-modal__close::after {
  content: "";
  position: absolute;
  top: 29px;
  left: 5px;
  width: 74px;
  height: 1px;
  background: currentColor;
}

.interview-modal__close::before {
  transform: rotate(45deg);
}

.interview-modal__close::after {
  transform: rotate(-45deg);
}

.interview-modal__close span {
  position: absolute;
  left: 50%;
  bottom: 0;
  font-size: 15px;
  letter-spacing: 0.32em;
  transform: translateX(-50%);
}

.interview-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(320px, 46%);
      align-items: self-start;
  min-height: 620px;
}

.interview-modal__article {
  position: relative;
  z-index: 2;
  padding-bottom: 54px;
}
.interview-modal__ttl{
   position: relative;
   white-space: pre-line;
}
.interview-modal__ttl h2 {
  max-width: 980px;
  margin: 0 0 54px;
  font-size: clamp(22px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 0.32em;
}

.interview-modal__article h2 {
  max-width: 980px;
  margin: 0 0 78px;
  font-size: clamp(32px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 0.22em;
}

.interview-modal__text {
    margin: 0 0 92px;
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 2;
    letter-spacing: 0em;
    white-space: pre-line;
}

.interview-modal__profile {
  max-width: 760px;
}

.interview-modal__roman {
  margin: 0 0 8px;
  font-size: clamp(34px, 4.2vw, 45px);
  line-height: 1.2;
  letter-spacing: 0.28em;
}

.interview-modal__jp {
  margin: 0 0 40px;
  font-size: 22px;
  letter-spacing: 0.2em;
}

.interview-modal__meta {
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid currentColor;
  font-size: 21px;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.interview-modal__media {
    position: relative;
    z-index: 2;
    align-self: start;
    margin-left: 0%;
}

.interview-modal__media img {
  width: min(520px, 36vw);
  max-height: 74vh;
  object-fit: contain;
  object-position: bottom center;
      margin-left: 10%;
}

.interview-modal__nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.interview-modal__arrow {
  position: absolute;
  top: 50%;
  left: 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  pointer-events: auto;
}

.interview-modal__arrow--next {
  left: auto;
  right: 48px;
}

.interview-modal__arrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(-45deg);
}

.interview-modal__arrow--next::before {
  transform: rotate(135deg);
}

.office {
  position: relative;
  padding: 160px 0 120px;
  background: transparent;
}

.office::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: var(--ht-cream);
  pointer-events: none;
}

.office__curve {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 96px;
  background: var(--ht-red);
  border-radius: 0 0 48px 48px;
}

.company-gallery {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 150px 0px 500px;
    background: #f7f5f5;
    border-radius: 72px;
    overflow: hidden;
}

.company-gallery__hero,
.company-gallery__item {
  margin: 0;
}

.company-gallery__item {
  position: relative;
  opacity: 0;
  transform: translateY(72px);
  transition:
    opacity 1.6s ease,
    transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.company-gallery__item.is-visible,
.company-gallery__side.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.company-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

.company-gallery__hero {
  width: 100%;
 z-index: 3;
}

.company-gallery__side {
    position: absolute;
    width: clamp(96px, 20vw, 250px) !important;
    height: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateY(72px);
    transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.company-gallery__side--hero {
    right: 0;
    bottom: -14%;
    z-index: 3;
}

.company-gallery__item--side-front {
  overflow: visible;
}

.company-gallery__side--front {
    left: -13px;
    bottom: -30%;
    z-index: 4;
    width: clamp(170px, 40vw, 680px) !important;
}

.company-gallery__item--side-back {
  overflow: visible;
  z-index: 1;
}

.company-gallery__item--side-back > img:first-child {
  position: relative;
  z-index: 2;
}

.company-gallery__side--back {
  left: 50%;
  bottom: -24%;
  z-index: 1;
  width: clamp(76px, 9vw, 140px);
  transform: translate(-50%, 72px);
}

.company-gallery__side--back.is-visible {
  transform: translate(-50%, 0);
}

.company-gallery__side-sp {
  display: none;
}

.company-gallery__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.company-gallery__grid .company-gallery__item {
  width: 100%;
  /*overflow: hidden;*/
}

.company-gallery__grid .company-gallery__item--side-front,
.company-gallery__grid .company-gallery__item--side-back {
  overflow: visible;
}
.recruit_btn{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: min(1200px, calc(100% - 80px));
    margin: -60px auto 0;
}

.recruit-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 20px 22px 30px;
    background: #fff;
    border: 1px solid var(--ht-red);
    border-radius: 100px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.recruit-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 28, 33, 0.14);
}

.recruit-pill__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recruit-pill__en {
    font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--ht-red);
}

.recruit-pill__ja {
    font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック", sans-serif;
    font-weight: 700;
    font-size: clamp(19px, 1.55vw, 20px);
    line-height: 1.2;
    white-space: nowrap;
    color: #000;
}

.recruit-pill__arrow {
    flex: 0 0 40px;
    width: 40px;
    height: 11px;
    background: url("../images/common/link_arrow.svg") no-repeat center / contain;
}
.outline-link {
    position: relative;
    width: min(830px, calc(100% - 80px));
    /* min-height: 92px; */
    /* margin: 96px auto 0; */
    /* border-color: rgba(152, 29, 36, 0.36); */
    background: #fff;
    color: var(--ht-red);
    font-size: 32px;
    font-weight: 300;
    padding: 90px 0;
    margin: -100px auto;
}

.outline-link__icon {
    position: absolute;
    right: clamp(42px, 7vw, 120px);
    top: 50%;
    width: clamp(22px, 2.8vw, 46px);
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
}

.entry {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 740px;
  padding: 110px 40px 96px;
  background: var(--ht-cream);
  text-align: center;
}

.entry-button {
  position: relative;
  display: block;
  width: min(740px, 72vw);
  text-decoration: none;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.entry-button:hover {
  filter: drop-shadow(0 18px 34px rgba(129, 28, 33, 0.22));
  transform: translateY(-6px);
}

.entry-button__image {
  display: block;
  width: 100%;
  height: auto;
}

.entry-button__text {
  position: absolute;
  left: 50%;
  top: 47%;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.36em;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.entry-button__icon {
  position: absolute;
  left: 50%;
  top: 58%;
  width: clamp(18px, 2vw, 28px);
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.message-section {
  padding: 10px 40px 148px;
  background: var(--ht-cream);
}

.message-section__inner {
    position: relative;
    width: min(1000px, 98%);
    margin: 0 auto;
}

.message-pair {
    position: relative;
    min-height: 270px;
    margin: 0;
}

.message-pair + .message-pair {
  margin-top: 54px;
}

.message-pair__character,
.message-pair__text {
  display: block;
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 1.8s ease,
    transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.message-pair__character.is-visible,
.message-pair__text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.message-pair__character {
    position: absolute;
    width: clamp(78px, 13vw, 150px);
    height: auto;
}

.message-pair__text {
  width: min(610px, 72%);
  height: auto;
}

.message-pair--01 .message-pair__character {
  left: 6%;
  top: 60%;
}

.message-pair--01 .message-pair__text {
  margin-left: 27%;
}

.message-pair--02 .message-pair__character {
    right: -4%;
    top: 40%;
}

.message-pair--02 .message-pair__text {
  margin-left: 27%;
}

.message-pair--03 .message-pair__character {
  left: 5%;
  top: 50%;
  width: clamp(66px, 12vw, 150px);
}

.message-pair--03 .message-pair__text {
  margin-left: 27%;
}

.message-pair--04 .message-pair__character {
  right: 0%;
  top: 4px;
  width: clamp(66px, 11vw, 140px);
}

.message-pair--04 .message-pair__text {
  margin-left: 27%;
  width: min(520px, 62%);
}

.message-pair--05 .message-pair__character {
  left: 6%;
  top: 50%;
  width: clamp(66px, 11vw, 138px);
}

.message-pair--05 .message-pair__text {
  margin-left: 27%;
	    margin-top: -5%;
}

.map-section {
  background: var(--ht-cream);
}

.map-section img,
.line-stamp img {
  width: 100%;
}

.line-stamp {
  position: relative;
  background: var(--ht-green);
}

.line-stamp__link {
  display: block;
}

.site-footer {
  background: var(--ht-red);
  color: #fff;
}

.site-footer__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 54px 0 42px;
}

.site-footer__brand {
  display: inline-block;
  width: min(120px, 32vw);
  line-height: 0;
  text-decoration: none;
}

.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  margin-top: 34px;
}

.site-footer__nav a,
.site-footer__bottom a {
  color: #fff;
  text-decoration: none;
}

.site-footer__brand:visited,
.site-footer__brand:hover,
.site-footer__brand:focus,
.site-footer__nav a:visited,
.site-footer__nav a:hover,
.site-footer__nav a:focus,
.site-footer__bottom a:visited,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus {
  color: #fff;
}

.site-footer__nav a {
  font-size: 15px;
  letter-spacing: 0.12em;
}

.site-footer__nav .site-footer__corporate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-footer__bottom small {
  font-size: inherit;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 70svh;
  }

  .hero__brand {
    width: min(260px, 56vw);
  }

  .message {
    min-height: 660px;
    padding: 92px 22px;
  }

  .vertical-copy {
    width: min(590px, calc(100vw - 48px));
    height: auto;
    min-height: 355px;
  }

  .vertical-copy p {
    font-size: clamp(24px, 5vw, 32px);
  }
.movie-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 3cap solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 40px solid rgba(255, 255, 255, 0.92);
    transform: translate(-38%, -50%);
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}
  .movie-card {
    width: min(680px, 86vw);
        box-shadow: 20px 20px 0 rgba(68, 0, 5, 0.4);
  }

  .interview {
    padding-bottom: 88px;
  }

  .interview__track {
    gap: 12px;
  }

  .interview__slide {
    flex-basis: 82vw;
    grid-template-rows: 560px auto;
  }

  .interview__arrows {
    right: 32px;
    bottom: -48px;
  }

  .interview__body {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 82px;
  }

  .interview__more {
   width: min(190px, 72vw);
        margin: 0 auto;
  }

  .interview-modal__panel {
    width: min(820px, calc(100vw - 40px));
    max-height: calc(100vh - 40px);
    padding: 54px 8vw 0;
  }

  .interview-modal__content {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .interview-modal__media {
    margin: 48px auto 0;
  }

  .interview-modal__media img {
    width: min(440px, 72vw);
    max-height: none;
  }
.interview-modal__ttl h2 {
  line-height: 1.8;
      margin: 0 0 38px;
}
  .office {
         padding-top: 112px;
        padding-bottom: 0px;
  }

  .company-gallery {
    width: 100%;
    padding: 74px 14px 54px;
    border-radius: 42px;
  }

  .company-gallery__side--hero {
    width: clamp(86px, 22vw, 150px);
    bottom: -6%;
  }

  .company-gallery__side--front {
    left: -14px;
    bottom: -12%;
    width: clamp(120px, 34vw, 220px);
  }

  .company-gallery__side--back {
    bottom: -14%;
    width: clamp(64px, 18vw, 110px);
  }

  .company-gallery__side {
    display: none !important;  }

  .company-gallery__side-sp {
    position: absolute;
    display: block;
    width: clamp(78px, 24vw, 132px);
    height: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateY(72px);
    transition:
      opacity 1.6s ease,
      transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .company-gallery__side-sp.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .company-gallery__side-sp--hero {
        right: 25px;
        /* bottom: -18%; */
        z-index: 4;
        width: clamp(50px, 10vw, 80px) !important;
        top: -18px;
  }

  .company-gallery__side-sp--middle {
    left: -8px;
    top: 57%;
    z-index: 4;
    width: clamp(96px, 32vw, 170px);
    transform: translateY(72px) rotate(-8deg);
  }

  .company-gallery__side-sp--middle.is-visible {
    transform: translateY(0) rotate(-8deg);
  }

  .company-gallery__side-sp--bottom {
    right: 4px;
    bottom: -18%;
    z-index: 4;
    width: clamp(72px, 23vw, 126px);
    transform: translateY(72px) rotate(12deg);
  }

  .company-gallery__side-sp--bottom.is-visible {
    transform: translateY(0) rotate(12deg);
  }

  .company-gallery__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .entry {
    min-height: 560px;
    padding: 86px 24px 72px;
  }

  .entry-button {
    width: min(520px, 82vw);
  }

  .message-section {
    padding: 0 24px 116px;
  }

  .message-section__inner {
    width: min(680px, 100%);
  }

  .message-pair {
    min-height: 200px;
  }

  .message-pair + .message-pair {
    margin-top: 42px;
  }

  .message-pair__text {
    width: min(470px, 68%);
  }

  .message-pair__character {
    width: clamp(64px, 15vw, 110px);
  }

}

@media (max-width: 1024px) {
  .hataraku-site {
    box-shadow: none;
  }

  .hero {
    min-height: 50svh;
  }

  .hero__brand {
    width: min(260px, 62vw);
  }

  .message__side-image {
    width: 34px;
  }

  .message {
    gap: 52px;
  }

  .vertical-copy {
    min-height: 300px;
  }

  .vertical-copy p {
        font-size: 22px;
        line-height: 2.5;
        margin: 0 auto;
  }



  .section-kicker {
    font-size: 13px;
  }

  .interview__body {
    padding-top: 27px;
  }

  .interview__roman {
    font-size: 26px;
  }

  .interview__name-ja {
    font-size: 15px;
  }

  .interview__meta {
    font-size: 13px;
  }

  .interview-modal {
    overflow-x: hidden;
    padding: 14px;
  }

  .interview-modal__panel {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    min-height: auto;
    padding: 48px 9vw 0;
  }

  .interview-modal__header {
    margin-bottom: 8px;
  }

  .interview-modal__number {
    gap: 24px;
    font-size: 26px;
  }

  .interview-modal__number span:first-child {
    font-size: 16px;
  }

  .interview-modal__close {
        width: 42px;
        height: 52px;
        transform: translate(18px, -28px);
  }

  .interview-modal__close::before,
  .interview-modal__close::after {
    top: 24px;
    left: 6px;
    width: 30px;
  }

  .interview-modal__close span {
    bottom: -2px;
    font-size: 10px;
    color: var(--ht-red);
  }

  .interview-modal--even .interview-modal__close span {
    color: #fff;
  }

  .interview-modal__article {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

  .interview-modal__article h2 {
    order: 1;
    margin: 0 0 48px;
    font-size: clamp(27px, 7.5vw, 40px);
    line-height: 2.15;
    letter-spacing: 0.22em;
    text-align: center;
  }

  .interview-modal__text {
    order: 2;
    max-width: none;
    margin: 0 0 54px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.08em;
  }

  .interview-modal__profile {
    order: 3;
    max-width: none;
    text-align: center;
  }

  .interview-modal__roman {
    margin-bottom: 6px;
    font-size: 30px;
    letter-spacing: 0.16em;
  }

  .interview-modal__jp {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .interview-modal__meta {
    padding-top: 16px;
    font-size: 13px;
  }

  .interview-modal__heart {
    left: 50%;
    top: 43%;
    width: 84vw;
    max-width: 560px;
    transform: translateX(-50%);
  }

  .interview-modal__panel::before {
    left: 50%;
    top: 43%;
    width: 84vw;
    max-width: 560px;
    transform: translateX(-50%);
  }

  .interview-modal__media {
    order: 4;
    width: 100%;
    margin: 50px auto 0;
    text-align: center;
  }

  .interview-modal__media img {
    width: min(430px, 78vw);
    margin: 0 auto;
  }

  .interview-modal__arrow {
    top: 50%;
    left: 8px;
    width: 36px;
    height: 36px;
  }

  .interview-modal__arrow--next {
    left: auto;
    right: 0px;
  }

  .interview-modal__arrow::before {
    width: 22px;
    height: 22px;
  }

  .office__curve {
    height: 66px;
    border-radius: 0 0 28px 28px;
  }

  .company-gallery {
        width: 100%;
        padding: 54px 0px 130px;
        border-radius: 32px;
  }

  .company-gallery__side {
    display: none;
  }

  .company-gallery__side-sp {
    position: absolute;
    display: block;
    width: clamp(78px, 24vw, 132px);
    height: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateY(72px);
    transition:
      opacity 1.6s ease,
      transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .company-gallery__side-sp.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .company-gallery__side-sp--hero {
    right: -10px;
    bottom: -18%;
    z-index: 4;
    width: clamp(86px, 28vw, 145px);
  }

  .company-gallery__side-sp--middle {
    left: -8px;
    top: 57%;
    z-index: 4;
    width: clamp(96px, 32vw, 170px);
    transform: translateY(72px) rotate(-8deg);
  }

  .company-gallery__side-sp--middle.is-visible {
        transform: translateY(0);
        top: 14%;
        left: -13%;

  }

  .company-gallery__side-sp--bottom {
    right: 4px;
    bottom: -18%;
    z-index: 4;
    width: clamp(72px, 23vw, 126px);
    transform: translateY(72px) rotate(12deg);
  }

  .company-gallery__side-sp--bottom.is-visible {
        transform: translateY(0);
        top: -40px;
       width: clamp(86px, 23vw, 160px);
        right: -38px;
  }

  .company-gallery__side-sp--last {
    right: 64%;
    bottom: 80%;
    z-index: 4;
     width: clamp(30px, 8vw, 60px) !important;
    transform: translateY(0) !important;
  }

  .company-gallery__side-sp--last.is-visible {
    transform: translateY(0) !important;
  }

  .outline-link {
        width: calc(100% - 48px);
        min-height: 72px;
        padding: 40px;
        font-size: 22px;
        margin: -20% auto 0;
  }

  .outline-link__icon {
    right: 30px;
    width: 24px;
  }

  .recruit_btn {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: calc(100% - 48px);
    margin-top: 0;
  }

  .recruit-pill {
    padding: 20px 22px 20px 30px;
  }

  .recruit-pill__en {
    font-size: 17px;
  }

  .recruit-pill__ja {
    font-size: 20px;
  }

  .entry {
    min-height: 430px;
    padding: 72px 20px 62px;
  }

  .entry-button {
    width: min(360px, 86vw);
  }

  .entry-button__icon {
    width: 16px;
  }

  .message-section {
    padding: 0 20px 86px;
  }

 

}
@media (max-width: 768px) {
  .recruit-pill {
    padding: 16px 22px 16px 30px;
  }

  .recruit-pill__en {
    font-size: 13px;
  }

  .recruit-pill__ja {
    font-size: 16px;
  }
}
@media (min-width: 1025px) {
  .company-gallery__side-sp,
  .company-gallery__side-sp.is-visible {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .company-gallery__side,
  .company-gallery__side.is-visible {
    display: none !important;
  }

  .company-gallery__side-sp,
  .company-gallery__side-sp.is-visible {
    display: block !important;
  }
}

@media (max-width: 900px) {
  .site-footer__inner {
    width: min(100% - 48px, 720px);
    padding: 44px 0 34px;
  }

  .site-footer__nav {
    gap: 14px 26px;
    margin-top: 28px;
  }
}

@media (max-width: 600px) {
  .recruit_btn {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    width: calc(100% - 40px);
    padding: 38px 0 30px;
  }

  .site-footer__nav,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    gap: 14px;
  }

  .site-footer__nav .site-footer__corporate {
    margin-left: 0;
  }

  .site-footer__bottom {
    gap: 12px;
    margin-top: 38px;
  }
	 .message-pair {
    min-height: 132px;
  }

  .message-pair + .message-pair {
    margin-top: 28px;
  }

  .message-pair__text {
    width: 76%;
  }

  .message-pair__character {
           width: clamp(50px, 13vw, 82px);
  }

  .message-pair--01 .message-pair__character,
  .message-pair--03 .message-pair__character,
  .message-pair--05 .message-pair__character {
    left: 0;
  }

  .message-pair--02 .message-pair__character,
  .message-pair--04 .message-pair__character {
    right: 0;
  }

  .message-pair--01 .message-pair__text,
  .message-pair--02 .message-pair__text,
  .message-pair--03 .message-pair__text,
  .message-pair--04 .message-pair__text,
  .message-pair--05 .message-pair__text {
    margin-left: 20%;
  }

  .message-pair--04 .message-pair__text {
    width: 66%;
  }
	  .interview__slide {
    flex-basis: 86vw;
    grid-template-rows: 240px auto;
  }
}
