@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: calc(100vw / 39);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 2.125;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #222;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

dl,
dd,
figure {
  margin: 0;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.inner {
  width: 100%;
  padding-inline: 4rem;
}
@media (max-width: 768px) {
  .inner {
    padding-inline: 2rem;
  }
}

.inner-box {
  max-width: 108rem;
  margin-inline: auto;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 20rem;
  height: 4rem;
  padding-inline: 2rem;
  border: 1px solid #222;
  border-radius: 4rem;
  background: #222;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s;
}
.btn:hover {
  background: #fff;
  color: #222;
  text-decoration: none;
}
.btn:hover .btn__arrow svg {
  transform: translate(0.6rem, 0.3rem);
}
.btn__arrow {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.btn__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(0.3rem);
  transition: transform 0.3s;
}
.btn--en {
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
}
.btn--outline {
  border-color: #fff;
  background: transparent;
  color: #fff;
}
.btn--outline:hover {
  background: #fff;
  color: #222;
}
.btn--sm {
  width: 12rem;
  height: 3.2rem;
  padding-inline: 1.5rem;
  font-size: 1.4rem;
}

.media {
  display: flex;
  gap: 6rem;
  max-width: 128rem;
  margin-inline: auto;
  padding-right: 10rem;
}
.media--rev {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 10rem;
}
@media (max-width: 1024px) {
  .media {
    gap: 4rem;
    padding-right: 4rem;
  }
  .media--rev {
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 768px) {
  .media, .media--rev {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.media__img {
  position: relative;
  flex: 0 1 80rem;
  min-width: 0;
  margin: 0;
}
.media__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.media__img video {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .media__img {
    flex: none;
  }
}
.media__credit {
  position: relative;
  margin-top: 1rem;
  color: #ababab;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  text-align: right;
}
@media (max-width: 768px) {
  .media__credit {
    margin-top: 0.8rem;
    padding-inline: 2rem;
  }
}
.media__credit--left {
  text-align: left;
}
@media (max-width: 768px) {
  .media__credit--left {
    text-align: right;
  }
}
.media__credit:has(.media__credit-logo) {
  padding-left: 13rem;
}
@media (max-width: 768px) {
  .media__credit:has(.media__credit-logo) {
    padding-left: 2rem;
  }
}
.media__credit-logo {
  position: absolute;
  top: 0;
  left: 3rem;
}
.media__credit-logo img {
  display: block;
  width: 9.4rem;
  height: 1.6rem;
}
@media (max-width: 768px) {
  .media__credit-logo {
    position: static;
    display: block;
    margin-bottom: 0.4rem;
  }
  .media__credit-logo img {
    margin-inline: auto 0;
  }
}
.media__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  width: 32rem;
}
@media (max-width: 768px) {
  .media__body {
    width: 100%;
    margin-top: 2.4rem;
    padding-inline: 2rem;
  }
}
.media__title {
  color: #000;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .media__title {
    font-size: 2.8rem;
  }
}
.media__text {
  margin-top: 4rem;
  font-weight: 500;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .media__text {
    margin-top: 1.6rem;
    line-height: 2.125;
  }
}
.media__btn {
  margin-top: 4.5rem;
}
@media (max-width: 768px) {
  .media__btn {
    margin-top: 2.4rem;
  }
}

.cta {
  display: flex;
}
@media (max-width: 768px) {
  .cta {
    flex-direction: column;
  }
}
.cta__item {
  flex: 1;
  display: flex;
  color: #fff;
}
.cta__item:hover {
  text-decoration: none;
}
.cta__item:hover .cta__btn {
  background: #fff;
  color: #222;
}
.cta__item:hover .btn__arrow svg {
  transform: translate(0.6rem, 0.3rem);
}
.cta__item--recruit {
  justify-content: flex-end;
  background: #222;
}
.cta__item--contact {
  justify-content: flex-start;
  background: #000;
}
.cta__item-in {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 64rem;
  min-height: 68.3rem;
  padding: 16rem 8rem;
  text-align: center;
}
@media (max-width: 768px) {
  .cta__item-in {
    min-height: 0;
    padding: 6.4rem 2rem;
  }
}
.cta__head-en {
  color: #fff;
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cta__head-en {
    font-size: 3.6rem;
  }
}
.cta__title {
  display: block;
  margin-top: 4.8rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.42;
}
@media (max-width: 768px) {
  .cta__title {
    margin-top: 2.4rem;
    font-size: 2rem;
  }
}
.cta__text {
  display: block;
  margin-top: 2rem;
  font-weight: 500;
  line-height: 2.125;
  text-align: justify;
}
@media (max-width: 768px) {
  .cta__text {
    margin-top: 1.6rem;
  }
}
.cta__btn {
  margin-top: auto;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .cta__btn {
    margin-top: 3.2rem;
  }
}

.hamburger {
  display: block;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.hamburger svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header {
  position: relative;
  z-index: 1000;
  height: 8rem;
  background: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 4rem;
}
@media (max-width: 768px) {
  .header__inner {
    padding-inline: 2rem;
  }
}
.header__logo a {
  display: block;
  background: #fff;
}
.header__logo a img {
  display: block;
  width: 21.9rem;
  height: 4.3rem;
}
@media (max-width: 768px) {
  .header__logo a img {
    width: 16.4rem;
    height: 3.2rem;
  }
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__hamburger {
  display: none;
  color: #222;
}
@media (max-width: 1024px) {
  .header__hamburger {
    display: block;
  }
}
.header--hero {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
}
.header--hero .gnav__link {
  color: #fff;
}
.header--hero .header__hamburger {
  color: #fff;
}

.header__nav .gnav__list {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.gnav__link {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
.gnav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  width: 100%;
  height: 0.2rem;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}
.gnav__link:hover {
  text-decoration: none;
}
.gnav__link:hover::after {
  transform: scaleX(1);
}

.header-fixed {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  height: 5.9rem;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.3s, visibility 0.3s;
}
.header-fixed.is-visible {
  transform: translateY(0);
  visibility: visible;
}
.header-fixed__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 9.6rem 0 9rem;
}
@media (max-width: 768px) {
  .header-fixed__inner {
    padding-inline: 2rem;
  }
}
.header-fixed__logo a {
  display: block;
}
.header-fixed__logo a img {
  display: block;
  width: 20.5rem;
  height: 4rem;
}
@media (max-width: 768px) {
  .header-fixed__logo a img {
    width: 16.4rem;
    height: 3.2rem;
  }
}
.header-fixed .hamburger {
  color: #222;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.drawer .gnav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
}
.drawer .gnav__link {
  color: #fff;
  font-size: 2rem;
}
.drawer .gnav__link::after {
  bottom: -1.2rem;
  height: 0.3rem;
}
.drawer__close {
  position: absolute;
  top: 1.5rem;
  right: 9.6rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .drawer__close {
    right: 2rem;
  }
}
.drawer__close span {
  position: absolute;
  inset: 0;
}
.drawer__close span::before, .drawer__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.drawer__close span::before {
  transform: rotate(45deg);
}
.drawer__close span::after {
  transform: rotate(-45deg);
}

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

.footer {
  padding-top: 10rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
}
.footer__logo img {
  display: block;
  width: 32.3rem;
  height: 4.7rem;
}
@media (max-width: 768px) {
  .footer__logo img {
    width: 22rem;
    height: 3.2rem;
  }
}
.footer__address {
  margin-top: 0.9rem;
  color: #222;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
.footer__banners {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer__banners img {
  display: block;
  height: auto;
}
.footer__banners img:first-child {
  width: 24.2rem;
}
@media (max-width: 768px) {
  .footer__banners img:first-child {
    width: 20rem;
  }
}
.footer__banners img:last-child {
  width: 12.5rem;
}
@media (max-width: 768px) {
  .footer__banners img:last-child {
    width: 10.4rem;
  }
}
.footer__copyright {
  margin-top: 9.2rem;
  padding-block: 2rem;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__copyright {
    margin-top: 4.8rem;
  }
}
.footer__copyright small {
  font-size: inherit;
}

.fv {
  position: relative;
  height: 100vh;
  height: 100svh;
}
@media (max-width: 768px) {
  .fv {
    height: auto;
  }
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
@media (max-width: 768px) {
  .fv::before {
    inset: 0 0 auto;
    height: 100vh;
    height: 100svh;
  }
}
.fv__movie {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  animation: fv-fadein 1.2s ease-out 0.1s forwards;
}
@media (max-width: 768px) {
  .fv__movie {
    position: relative;
    inset: auto;
    height: 100vh;
    height: 100svh;
  }
}
.fv__movie video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv__copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  transform: translateY(2rem);
  animation: fv-fadein-up 1.2s ease-out 0.9s forwards;
}
@media (max-width: 768px) {
  .fv__copy {
    inset: 0 0 auto;
    height: 100vh;
    height: 100svh;
  }
}
.fv__en {
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 2.6rem;
  line-height: normal;
}
@media (max-width: 1024px) {
  .fv__en {
    font-size: 2.03125vw;
  }
}
@media (max-width: 768px) {
  .fv__en {
    font-size: 1.6rem;
  }
}
.fv__title {
  margin-top: 0.9rem;
  color: #fff;
  font-size: 8rem;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 1024px) {
  .fv__title {
    font-size: 6.25vw;
  }
}
@media (max-width: 768px) {
  .fv__title {
    font-size: 3.4rem;
  }
}
.fv__sub {
  margin-top: 1rem;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 1024px) {
  .fv__sub {
    font-size: 2.109375vw;
  }
}
@media (max-width: 768px) {
  .fv__sub {
    margin-top: 1.2rem;
    font-size: 1.4rem;
  }
}
.fv__credit {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  max-width: calc(100% - 43rem);
  padding: 1rem 2rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  opacity: 0;
  animation: fv-fadein 1.2s ease-out 0.9s forwards;
}
@media (max-width: 768px) {
  .fv__credit {
    top: 100svh;
    bottom: auto;
    max-width: none;
    width: 100%;
    transform: translateY(-100%);
    gap: 1rem;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    line-height: 1.8;
  }
}
.fv__credit-logo {
  flex: none;
  padding: 0.6rem 1rem;
  background: #fff;
}
.fv__credit-logo img {
  display: block;
  width: 9.4rem;
  height: 1.6rem;
}
@media (max-width: 768px) {
  .fv__credit-logo img {
    width: 7.4rem;
    height: 1.3rem;
  }
}
.fv__pickup {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  gap: 2rem;
  width: 41rem;
  height: 12rem;
  padding: 2rem;
  border-top-left-radius: 2rem;
  background: #fff;
  opacity: 0;
  animation: fv-fadein 1.2s ease-out 0.9s forwards;
}
@media (max-width: 768px) {
  .fv__pickup {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}
.fv__pickup .news-thumb {
  width: 14.2rem;
}
@media (max-width: 768px) {
  .fv__pickup .news-thumb {
    width: 11rem;
  }
}
.fv__pickup:hover {
  text-decoration: none;
}
.fv__pickup:hover .fv__pickup-title {
  text-decoration: underline;
}
.fv__pickup:hover .news-thumb img {
  transform: scale(1.05);
}
.fv__pickup-body {
  display: block;
  min-width: 0;
  padding-top: 1rem;
}
.fv__pickup-date {
  display: block;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
.fv__pickup-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #222;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.71;
}

.philosophy {
  position: relative;
  overflow: hidden;
  padding: 20rem 0 16rem;
  background: #fff;
}
@media (max-width: 768px) {
  .philosophy {
    padding: 8rem 0 6.4rem;
  }
}
.philosophy__mark {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -21.4rem;
  width: 92.7rem;
  height: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .philosophy__mark {
    width: 32rem;
    margin-left: -7.4rem;
  }
}
.philosophy__inner {
  position: relative;
}
.philosophy__title {
  color: #222;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1.45;
}
@media (max-width: 768px) {
  .philosophy__title {
    font-size: 3.6rem;
  }
}
.philosophy__text {
  width: 54rem;
  max-width: 100%;
  margin-top: 4rem;
  color: #222;
  font-weight: 500;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .philosophy__text {
    width: 100%;
    margin-top: 2.4rem;
    line-height: 2.125;
  }
}
.philosophy__btn {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .philosophy__btn {
    margin-top: 3.2rem;
  }
}

.technology {
  position: relative;
  overflow: hidden;
  padding: 16rem 0 0;
  background: #fbfbfb;
}
@media (max-width: 768px) {
  .technology {
    padding: 8rem 0 0;
  }
}
.technology__globe {
  position: absolute;
  top: 12rem;
  left: 50%;
  margin-left: -82rem;
  width: 60rem;
  height: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .technology__globe {
    top: 4rem;
    width: 30rem;
    margin-left: -26rem;
  }
}
.technology__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 128rem;
  margin-inline: auto;
  padding-inline: 10rem;
}
@media (max-width: 768px) {
  .technology__head {
    padding-inline: 2rem;
  }
}
.technology__head-en {
  color: #222;
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .technology__head-en {
    font-size: 7.8125vw;
  }
}
@media (max-width: 768px) {
  .technology__head-en {
    font-size: 4.4rem;
  }
}
.technology .media {
  position: relative;
  margin-top: 18rem;
}
.technology .media:first-of-type {
  margin-top: 16rem;
}
@media (max-width: 1024px) {
  .technology .media {
    margin-top: 12rem;
  }
  .technology .media:first-of-type {
    margin-top: 10rem;
  }
}
@media (max-width: 768px) {
  .technology .media {
    margin-top: 8rem;
  }
  .technology .media:first-of-type {
    margin-top: 5.6rem;
  }
}

.tech-slider {
  margin-top: 20rem;
}
@media (max-width: 1024px) {
  .tech-slider {
    margin-top: 12rem;
  }
}
@media (max-width: 768px) {
  .tech-slider {
    margin-top: 6.4rem;
  }
}
.tech-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.tech-slider__item {
  position: relative;
  width: 44rem;
  aspect-ratio: 440/310;
}
@media (max-width: 1024px) {
  .tech-slider__item {
    width: 36rem;
  }
}
@media (max-width: 768px) {
  .tech-slider__item {
    width: 24rem;
  }
}
.tech-slider__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tech-slider__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.tech-slider__label {
  position: absolute;
  left: 2rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.78;
}
@media (max-width: 768px) {
  .tech-slider__label {
    left: 1.2rem;
    bottom: 0.6rem;
    font-size: 1.4rem;
  }
}

.service {
  position: relative;
  overflow: hidden;
  padding: 20rem 0;
  background: #000;
}
@media (max-width: 768px) {
  .service {
    padding: 8rem 0;
  }
}
.service__bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}
.service__bg canvas {
  display: block;
}
.service__inner {
  position: relative;
}
.service__head-en {
  color: #fff;
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .service__head-en {
    font-size: 7.8125vw;
  }
}
@media (max-width: 768px) {
  .service__head-en {
    font-size: 4.4rem;
  }
}
.service__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .service__cards {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 4rem;
  }
}
.service__card img {
  width: 100%;
  aspect-ratio: 510/287;
  object-fit: cover;
}
.service__card-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .service__card-foot {
    margin-top: 1.2rem;
  }
}
.service__card-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.33;
}
@media (max-width: 768px) {
  .service__card-title {
    font-size: 2rem;
  }
}

.news {
  padding: 20rem 0;
}
@media (max-width: 768px) {
  .news {
    padding: 8rem 0;
  }
}
.news__grid {
  display: grid;
  grid-template-areas: "head btn" "cols cols";
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (max-width: 768px) {
  .news__grid {
    grid-template-areas: "head" "cols" "btn";
    grid-template-columns: 1fr;
  }
}
.news__head-en {
  grid-area: head;
  color: #222;
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .news__head-en {
    font-size: 7.8125vw;
  }
}
@media (max-width: 768px) {
  .news__head-en {
    font-size: 4.4rem;
  }
}
.news__btn {
  grid-area: btn;
}
@media (max-width: 768px) {
  .news__btn {
    justify-self: center;
    margin-top: 4rem;
  }
}
.news__cols {
  position: relative;
  grid-area: cols;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 13.6rem;
}
.news__cols::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid #dfdfdf;
}
@media (max-width: 1024px) {
  .news__cols {
    margin-top: 8rem;
  }
}
@media (max-width: 768px) {
  .news__cols {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    margin-top: 4rem;
  }
  .news__cols::before {
    content: none;
  }
}
.news__main {
  display: block;
}
.news__main:hover {
  text-decoration: none;
}
.news__main:hover .news__main-text {
  text-decoration: underline;
}
.news__main:hover .news__main-img img {
  transform: scale(1.05);
}
.news__main-img {
  display: block;
  overflow: hidden;
}
.news__main-img img {
  width: 100%;
  aspect-ratio: 510/287;
  object-fit: cover;
  transition: transform 0.4s;
}
.news__empty {
  grid-area: cols;
  margin-top: 8rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .news__empty {
    margin-top: 4rem;
  }
}
.news__date {
  display: block;
  color: #bcbcbc;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.news__date--right {
  margin-top: 3rem;
  text-align: right;
}
@media (max-width: 768px) {
  .news__date--right {
    margin-top: 1.6rem;
  }
}
.news__main-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 1rem;
  font-weight: 500;
  line-height: 2.125;
  text-align: justify;
}
.news__list {
  border-top: 1px dashed #ababab;
}
.news__item {
  display: flex;
  gap: 2rem;
  padding-block: 3rem;
  border-bottom: 1px dashed #ababab;
}
@media (max-width: 768px) {
  .news__item {
    padding-block: 2rem;
  }
}
.news__item:hover {
  text-decoration: none;
}
.news__item:hover .news__item-text {
  text-decoration: underline;
}
.news__item:hover .news-thumb img {
  transform: scale(1.05);
}
.news__item .news-thumb {
  width: 34.9%;
}
.news__item-body {
  display: block;
  flex: 1;
  min-width: 0;
}
.news__item-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 1rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}

.about__link {
  position: relative;
  display: block;
  height: 50rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about__link {
    height: 22rem;
  }
}
.about__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.about__link:hover {
  text-decoration: none;
}
.about__link:hover .about__bg img {
  transform: scale(1.03);
}
.about__link:hover .about__btn {
  background: #fff;
  color: #222;
}
.about__link:hover .btn__arrow svg {
  transform: translate(0.6rem, 0.3rem);
}
.about__bg {
  position: absolute;
  inset: 0;
}
.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.about__head-en {
  position: absolute;
  left: 4rem;
  bottom: 1.6rem;
  z-index: 1;
  color: #fff;
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .about__head-en {
    font-size: 7.8125vw;
  }
}
@media (max-width: 768px) {
  .about__head-en {
    left: 2rem;
    bottom: 1.2rem;
    font-size: 4.4rem;
  }
}
.about__btn {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .about__btn {
    right: 2rem;
    bottom: 2.1rem;
    width: 12rem;
    height: 3.2rem;
    padding-inline: 1.5rem;
    font-size: 1.4rem;
  }
}

@keyframes fv-fadein {
  to {
    opacity: 1;
  }
}
@keyframes fv-fadein-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fv__movie,
  .fv__copy,
  .fv__pickup {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.page-head {
  position: relative;
  overflow: hidden;
  height: 20rem;
  background: #000;
}
@media (max-width: 768px) {
  .page-head {
    height: 12rem;
  }
}
.page-head__inner {
  position: relative;
  max-width: 128rem;
  height: 100%;
  margin-inline: auto;
}
.page-head__title {
  position: absolute;
  right: 4rem;
  bottom: -2.3rem;
  color: #333;
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .page-head__title {
    font-size: 7.8125vw;
    bottom: -1.796875vw;
  }
}
@media (max-width: 768px) {
  .page-head__title {
    right: 2rem;
    bottom: -1rem;
    font-size: 4.4rem;
  }
}
.page-head__title span {
  display: block;
  transform: translateY(100%);
  animation: page-head-in 0.8s ease 0.3s forwards;
}

@keyframes page-head-in {
  to {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-head__title span {
    animation: none;
    transform: none;
  }
}
.news-thumb {
  display: block;
  align-self: flex-start;
  flex-shrink: 0;
  aspect-ratio: 178/100;
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-cat-pill {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding-inline: 2rem;
  border: 0.5px solid #000;
  border-radius: 4rem;
  background: #fff;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.page-media {
  padding: 20rem 0;
}
@media (max-width: 768px) {
  .page-media {
    padding: 8rem 0;
  }
}
.page-media .media + .media {
  margin-top: 18rem;
}
@media (max-width: 1024px) {
  .page-media .media + .media {
    margin-top: 12rem;
  }
}
@media (max-width: 768px) {
  .page-media .media + .media {
    margin-top: 8rem;
  }
}

.media--flat .media__title {
  font-size: 4rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .media--flat .media__title {
    font-size: 2.6rem;
  }
}

.media--wide .media__img {
  flex: 0 1 68rem;
}
.media--wide .media__img img {
  aspect-ratio: 680/530;
}
.media--wide .media__body {
  width: 44rem;
}
@media (max-width: 768px) {
  .media--wide .media__body {
    width: 100%;
  }
}

.media__note {
  display: block;
  margin-top: 2rem;
  color: #777;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.33;
}

.sec-head-en {
  color: #222;
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .sec-head-en {
    font-size: 3.2rem;
  }
}

.about-intro {
  padding-top: 20rem;
}
@media (max-width: 768px) {
  .about-intro {
    padding-top: 8rem;
  }
}
.about-intro__title {
  margin-bottom: 8rem;
  color: #222;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1024px) {
  .about-intro__title {
    font-size: 5.46875vw;
  }
}
@media (max-width: 768px) {
  .about-intro__title {
    margin-bottom: 4rem;
    font-size: 3rem;
  }
}
.about-intro__img {
  max-width: calc(108rem + 4rem * 2);
  margin-inline: auto;
  padding-inline: 4rem;
}
@media (max-width: 768px) {
  .about-intro__img {
    padding-inline: 2rem;
  }
}
.about-intro__img img {
  width: 100%;
  height: auto;
}
.about-intro__text {
  max-width: 108rem;
  margin: 6rem auto 0;
  font-weight: 500;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .about-intro__text {
    margin-top: 3.2rem;
    line-height: 2.125;
  }
}

.members {
  margin-top: 20rem;
  padding: 20rem 0;
  background: #fbfbfb;
}
@media (max-width: 768px) {
  .members {
    margin-top: 8rem;
    padding: 8rem 0;
  }
}
.members__list {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .members__list {
    margin-top: 4rem;
  }
}
.members__item {
  display: flex;
  gap: 6rem;
  padding-block: 10rem;
}
@media (max-width: 768px) {
  .members__item {
    flex-direction: column;
    gap: 2.4rem;
    padding-block: 4.8rem;
  }
}
.members__item:first-child {
  padding-top: 0;
}
.members__item:last-child {
  padding-bottom: 0;
}
.members__item + .members__item {
  border-top: 1px dashed #ababab;
}
.members__photo {
  flex-shrink: 0;
  width: 22.5rem;
}
.members__photo img {
  width: 100%;
  aspect-ratio: 225/300;
  object-fit: cover;
}
.members__name {
  color: #000;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.42;
}
.members__role {
  margin-top: 2rem;
  font-weight: 500;
  line-height: 2.125;
}
.members__bio {
  margin-top: 4rem;
  font-weight: 500;
  line-height: 2.125;
}
@media (max-width: 768px) {
  .members__bio {
    margin-top: 2rem;
  }
}

.profile {
  padding: 20rem 0;
}
@media (max-width: 768px) {
  .profile {
    padding: 8rem 0;
  }
}
.profile__table {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .profile__table {
    margin-top: 4rem;
  }
}
.profile__row {
  position: relative;
  display: flex;
  padding-block: 3rem;
  border-top: 1px dashed #ababab;
}
@media (max-width: 768px) {
  .profile__row {
    flex-direction: column;
    gap: 0.4rem;
    padding-block: 2rem;
  }
}
.profile__row:last-child {
  border-bottom: 1px dashed #ababab;
}
.profile__row dt {
  display: flex;
  justify-content: space-between;
  flex: 0 0 19.4rem;
  padding-left: 3rem;
  font-weight: 500;
  line-height: 2.125;
}
.profile__row dt::after {
  content: "：";
}
@media (max-width: 768px) {
  .profile__row dt {
    flex: none;
    justify-content: flex-start;
    padding-left: 0;
  }
}
.profile__row dd {
  flex: 1;
  padding-left: 4.2rem;
  font-weight: 500;
  line-height: 2.125;
}
@media (max-width: 768px) {
  .profile__row dd {
    padding-left: 0;
  }
}
.profile__map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  width: 14.4rem;
  height: 3.4rem;
  margin-left: 2.4rem;
  border-radius: 4rem;
  background: #222;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  transition: opacity 0.3s;
}
.profile__map:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .profile__map {
    align-self: flex-start;
    margin-left: 0;
    margin-top: 0.8rem;
  }
}
.profile__partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 4rem;
}
.profile__partners img {
  display: block;
  width: auto;
}

.recruit-intro {
  position: relative;
  overflow: hidden;
  padding: 20rem 0;
}
@media (max-width: 768px) {
  .recruit-intro {
    padding: 8rem 0;
  }
}
.recruit-intro__mark {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -3.2rem;
  width: 92.7rem;
  height: auto;
  pointer-events: none;
}
@media (max-width: 768px) {
  .recruit-intro__mark {
    width: 36rem;
    margin-left: -2rem;
  }
}
.recruit-intro__in {
  position: relative;
}
.recruit-intro__title {
  color: #222;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1.45;
}
@media (max-width: 768px) {
  .recruit-intro__title {
    font-size: 2.8rem;
  }
}
.recruit-intro__text {
  max-width: 91.6rem;
  margin-top: 6rem;
  font-weight: 500;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .recruit-intro__text {
    margin-top: 2.4rem;
    line-height: 2.125;
  }
}
.recruit-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .recruit-intro__tags {
    gap: 1rem;
    margin-top: 2.4rem;
  }
}
.recruit-intro__tags li {
  display: flex;
  align-items: center;
  height: 4rem;
  padding-inline: 2rem;
  border: 1px solid #222;
  background: #fff;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .recruit-intro__tags li {
    height: 3.2rem;
    padding-inline: 1.2rem;
    font-size: 1.3rem;
  }
}

.jobs {
  padding: 20rem 0;
  background: #fbfbfb;
}
@media (max-width: 768px) {
  .jobs {
    padding: 8rem 0;
  }
}
.jobs__empty {
  padding: 3rem 0 3rem 3rem;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  font-weight: 500;
  line-height: 2.125;
}
@media (max-width: 768px) {
  .jobs__empty {
    padding-left: 0;
  }
}
.jobs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .jobs__nav {
    gap: 1rem;
  }
}
.jobs__nav a {
  display: flex;
  align-items: center;
  height: 4rem;
  padding-inline: 2rem;
  border-radius: 4rem;
  background: #222;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.3s;
}
.jobs__nav a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .jobs__nav a {
    height: 3.2rem;
    padding-inline: 1.2rem;
    font-size: 1.3rem;
  }
}

.job-card {
  margin-top: 10rem;
  padding: 6rem;
  background: #fff;
}
@media (max-width: 768px) {
  .job-card {
    margin-top: 4.8rem;
    padding: 2.4rem 2rem;
  }
}
.job-card__title {
  color: #000;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.42;
}
.job-card__lead {
  margin-top: 2.4rem;
  font-weight: 500;
  line-height: 2.125;
}
.job-card__table {
  margin-top: 4rem;
}
.job-card__row {
  display: flex;
  padding-block: 3rem;
  border-top: 1px solid #dfdfdf;
}
@media (max-width: 768px) {
  .job-card__row {
    flex-direction: column;
    gap: 0.4rem;
    padding-block: 1.6rem;
  }
}
.job-card__row:last-of-type {
  border-bottom: 1px solid #dfdfdf;
}
.job-card__row dt {
  display: flex;
  justify-content: space-between;
  flex: 0 0 24rem;
  padding-left: 3rem;
  font-weight: 500;
  line-height: 2.125;
}
.job-card__row dt::after {
  content: "：";
}
@media (max-width: 768px) {
  .job-card__row dt {
    flex: none;
    justify-content: flex-start;
    padding-left: 0;
  }
}
.job-card__row dd {
  flex: 1;
  padding-left: 2.4rem;
  font-weight: 500;
  line-height: 2.125;
}
@media (max-width: 768px) {
  .job-card__row dd {
    padding-left: 0;
  }
}
.job-card__apply {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .job-card__apply {
    margin-top: 4rem;
  }
}

.contact {
  padding: 20rem 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 8rem 0;
  }
}
.contact__inner {
  max-width: 90rem;
  margin-inline: auto;
  padding-block: 8rem;
  border-top: 1px dashed #ababab;
  border-bottom: 1px dashed #ababab;
}
@media (max-width: 768px) {
  .contact__inner {
    padding-block: 4rem;
  }
}

.cform {
  max-width: 84rem;
  margin-inline: auto;
}
.cform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem 3rem;
}
@media (max-width: 768px) {
  .cform__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.cform__field {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
.cform__field--full {
  grid-column: 1/-1;
}
.cform__field input[type=text],
.cform__field input[type=email],
.cform__field input[type=tel],
.cform__field textarea {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.6rem 2rem;
  border: 1px solid #bfbfbf;
  border-radius: 2rem;
  background: #fff;
  font-family: inherit;
  font-size: 1.6rem;
}
.cform__field input[type=text]::placeholder,
.cform__field input[type=email]::placeholder,
.cform__field input[type=tel]::placeholder,
.cform__field textarea::placeholder {
  color: #828282;
  font-size: 1.4rem;
}
.cform__field input[type=text]:focus,
.cform__field input[type=email]:focus,
.cform__field input[type=tel]:focus,
.cform__field textarea:focus {
  border-color: #222;
  outline: none;
}
.cform__field input {
  height: 4rem;
}
.cform__field textarea {
  height: 20rem;
  padding-block: 1.6rem;
  resize: vertical;
}
.cform__req {
  color: #e40000;
}
.cform__submit {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .cform__submit {
    margin-top: 4rem;
  }
}
.cform__submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: calc(50% + 11rem);
  margin: 0;
  transform: translateY(-50%);
}
.cform__submit input[type=submit] {
  width: 20rem;
  height: 4rem;
  padding-right: 4rem;
  border: 1px solid #222;
  border-radius: 4rem;
  background: #222;
  color: #fff;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.cform__submit input[type=submit]:hover {
  background: #fff;
  color: #222;
}
.cform__submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(50% - 8rem);
  width: 2.4rem;
  height: 2.4rem;
  transform: translateY(-38%);
  background: #fff;
  mask: url("../img/common/icon-arrow.svg") center/contain no-repeat;
  pointer-events: none;
  transition: transform 0.3s, background-color 0.3s;
}
.cform__submit:has(input[type=submit]:hover)::after {
  transform: translate(0.6rem, -38%);
  background: #222;
}
.cform .wpcf7-not-valid-tip {
  margin-top: 0.4rem;
  color: #c00;
  font-size: 1.2rem;
}

.wpcf7 form .wpcf7-response-output {
  margin: 4rem 0 0;
  padding: 1.6rem 2rem;
  border: 1px solid #222;
  font-size: 1.4rem;
}

.news-archive {
  padding: 20rem 0;
}
@media (max-width: 768px) {
  .news-archive {
    padding: 8rem 0 9.6rem;
  }
}
.news-archive__inner {
  max-width: 90rem;
  margin-inline: auto;
}
.news-archive__list {
  border-top: 1px dashed #ababab;
}
.news-archive__item {
  display: flex;
  gap: 2rem;
  padding-block: 6rem;
  border-bottom: 1px dashed #ababab;
}
@media (max-width: 768px) {
  .news-archive__item {
    gap: 1.6rem;
    padding-block: 2.4rem;
  }
}
.news-archive__item .news-thumb {
  width: 17.8rem;
}
@media (max-width: 768px) {
  .news-archive__item .news-thumb {
    width: 12rem;
  }
}
.news-archive__item:hover {
  text-decoration: none;
}
.news-archive__item:hover .news-archive__title {
  text-decoration: underline;
}
.news-archive__item:hover .news-thumb img {
  transform: scale(1.05);
}
.news-archive__body {
  display: block;
  flex: 1;
  min-width: 0;
}
.news-archive__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .news-archive__meta {
    gap: 1rem;
  }
}
.news-archive__date {
  color: #bcbcbc;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.news-archive__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 1rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
.news-archive__empty {
  font-weight: 500;
}
.news-archive .pagination {
  margin-top: 6rem;
}
.news-archive .pagination .nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.news-archive .pagination .page-numbers {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid #222;
  background: #fff;
  color: #000;
  font-family: "Roboto Condensed", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s;
}
.news-archive .pagination .page-numbers:hover {
  text-decoration: none;
  background: #222;
  color: #fff;
}
.news-archive .pagination .page-numbers.current {
  background: #222;
  color: #fff;
}

.entry {
  padding: 20rem 0;
}
@media (max-width: 768px) {
  .entry {
    padding: 8rem 0;
  }
}
.entry__inner {
  max-width: 90.4rem;
  margin-inline: auto;
}
.entry__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.entry__title {
  margin-top: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px dashed #ababab;
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.8;
}
.entry__eyecatch {
  margin-top: 6rem;
}
.entry__eyecatch img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.entry__foot {
  margin-top: 8rem;
  padding-top: 8rem;
  border-top: 1px dashed #ababab;
}
@media (max-width: 768px) {
  .entry__foot {
    margin-top: 4.8rem;
    padding-top: 4.8rem;
  }
}
.entry__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 3rem;
  background: #222;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  transition: opacity 0.3s;
}
.entry__back:hover {
  text-decoration: none;
  opacity: 0.7;
}

.entry-content {
  margin-top: 6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
.entry-content > * + * {
  margin-top: 4rem;
}
.entry-content p + p {
  margin-top: 2.8rem;
}
.entry-content h2 {
  margin-top: 6rem;
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.78;
}
.entry-content h2 + * {
  margin-top: 2rem;
}
.entry-content strong {
  padding: 0.1rem 0.6rem;
  background: #000;
  color: #fff;
  font-weight: 500;
  box-decoration-break: clone;
}
.entry-content a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.entry-content a:hover {
  opacity: 0.7;
}
.entry-content small {
  color: #777;
  font-size: 1.2rem;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .wp-block-columns,
.entry-content .wp-block-gallery {
  gap: 4rem;
}

@keyframes dw-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dw-fade-up {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  [data-anim] {
    opacity: 0;
  }
  [data-anim=fade-up] {
    transform: translateY(3rem);
  }
  [data-anim].is-inview {
    animation: dw-fade-in 1.2s ease var(--anim-delay, 0s) both;
  }
  [data-anim=fade-up].is-inview {
    animation-name: dw-fade-up;
  }
}
