@charset "UTF-8";
:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

/* ---------------------------------------------
   CSS Reset（normalize.cssベース簡易版）
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

html {
  font-size: 100%;
  box-sizing: border-box;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #343a40;
  background: #ffffff;
  min-height: 100vh;
  margin: 0;
}

.is-loading {
  overflow: hidden;
}

.is-loading .main-container,
.is-loading .logo,
.is-loading .menu-btn,
.is-loading .menu-board {
  opacity: 0;
}

.is-loading .logo {
  transform: translateY(-40px);
}

.is-loaded .main-container,
.is-loaded .menu-board {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.is-loaded .logo {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.8s ease-out;
}

a {
  color: #000000;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.logo {
  position: fixed;
  top: 1.875rem;
  left: 2.5rem;
  z-index: 1000;
  mix-blend-mode: difference;
}
@media (max-width: 767px) {
  .logo {
    top: 1.25rem;
    left: 1.25rem;
    mix-blend-mode: normal;
  }
}

.logo-link {
  display: block;
  text-decoration: none;
}

.logo-image {
  width: auto;
  height: 1.25rem;
  display: block;
}
@media (max-width: 767px) {
  .logo-image {
    height: 1.125rem;
    filter: brightness(0);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1000;
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(52, 58, 64, 0.1);
}
.site-header__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__logo {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .site-header__logo {
    top: 20px;
    position: relative;
  }
}
.site-header__logo-link {
  color: #343a40;
  text-decoration: none;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .site-header__logo-link:hover {
    opacity: 0.7;
  }
}

.menu-btn {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border: none;
  cursor: pointer;
  padding: 0.3125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 5.25rem;
  height: 5.25rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menu-btn.is-active .menu-line {
  background-color: rgba(255, 255, 255, 0.9);
}
.menu-btn.is-active .menu-line:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
}
.menu-btn.is-active .menu-line:nth-child(2) {
  transform: rotate(-45deg);
  position: absolute;
}
@media (max-width: 767px) {
  .menu-btn {
    top: 0;
    right: 0.625rem;
    left: auto;
    transform: none;
    width: 3.125rem;
    height: 3.125rem;
  }
}

.menu-line {
  width: 1.875rem;
  height: 0.0625rem;
  background-color: #343a40;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
@media (max-width: 767px) {
  .menu-line {
    width: 1.5rem;
  }
}

.menu-board {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  height: auto;
  background-color: rgba(34, 34, 34, 0.9);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: auto;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
@media (max-width: 767px) {
  .menu-board {
    width: 96%;
    height: auto;
  }
}
.menu-board__logo {
  position: absolute;
  top: 7%;
  left: 7.5%;
  z-index: 10;
}
@media (max-width: 767px) {
  .menu-board__logo {
    top: 4%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: auto;
    height: auto;
  }
}
.menu-board__logo-link {
  display: block;
  text-decoration: none;
}
.menu-board__logo-image {
  width: auto;
  height: 1.25rem;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .menu-board__logo-image {
    height: 1.125rem;
    margin: 0 auto;
  }
}
.menu-board.is-active {
  opacity: 1;
  visibility: visible;
}
.menu-board__nav {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 80%;
  margin: 0 auto;
  flex: 1;
  align-items: start;
  justify-items: start;
  padding-top: 170px;
}
@media (max-width: 767px) {
  .menu-board__nav {
    display: block;
    width: 85%;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    justify-items: center;
    padding-top: 100px;
  }
}
.menu-board__nav-column {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 767px) {
  .menu-board__nav-column {
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 1.25rem;
  }
}
.menu-board__nav-item {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .menu-board__nav-item {
    padding: 0 25px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__nav-item:hover {
    opacity: 0.7;
  }
}
.menu-board__nav-number {
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 300;
  color: #AAAAAA;
  font-family: "Red Hat Display", sans-serif;
  line-height: 1;
  flex-shrink: 0;
  min-width: 1.875rem;
  position: absolute;
  top: -20px;
  left: -30px;
}
@media (max-width: 767px) {
  .menu-board__nav-number {
    top: 3px;
    left: 0px;
  }
}
.menu-board__nav-text {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: #ffffff;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
  flex: 1;
}
@media (max-width: 767px) {
  .menu-board__nav-text {
    font-size: 22px;
  }
}
.menu-board__nav-item[href*=value-proposition] .menu-board__nav-text {
  text-transform: none;
}
.menu-board__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  margin-top: 5rem;
  padding-bottom: 3.75rem;
  width: 100%;
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .menu-board__footer {
    margin-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.menu-board__privacy-link {
  font-size: 0.75rem;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 400;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__privacy-link:hover {
    opacity: 0.7;
  }
}
.menu-board__copyright {
  font-size: 0.75rem;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  font-weight: 400;
}

.footer {
  background-color: #222222;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 100;
}
.footer__page-top {
  width: 200px;
  height: 50px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -35px;
  background: #222222;
  margin: auto;
}
@media (max-width: 767px) {
  .footer__page-top {
    width: 150px;
    height: 40px;
    top: -30px;
  }
}
.footer__page-top-btn {
  background-color: transparent;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Red Hat Display", sans-serif;
  cursor: pointer;
  padding: 0.625rem 1.875rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 0.25rem;
  font-weight: 400;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
}
@media (max-width: 767px) {
  .footer__page-top-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer__page-top-btn:hover {
    opacity: 0.9;
  }
}
.footer__main {
  padding: 3.75rem 1.25rem 2.5rem;
}
@media (max-width: 767px) {
  .footer__main {
    padding: 3.125rem 1.25rem 1.875rem;
  }
}
.footer__separator {
  width: 90%;
  height: 0.0625rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 auto 2.5rem;
}
@media (max-width: 767px) {
  .footer__separator {
    margin-bottom: 1.875rem;
  }
}
.footer__container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 5rem;
}
@media (max-width: 767px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.footer__map-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  order: 2;
}
@media (max-width: 767px) {
  .footer__map-section {
    gap: 0.9375rem;
    order: 1;
  }
}
.footer__map-title {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Red Hat Display", sans-serif;
  margin: 0;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer__map-title {
    text-align: center;
    font-size: 1rem;
  }
}
.footer__map {
  width: 100%;
  height: 25rem;
  background-color: #afafaf;
  position: relative;
  filter: grayscale(100%);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .footer__map {
    height: 15.625rem;
    width: 100%;
  }
}
.footer__map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
}
.footer__map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.footer__info-section {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  order: 1;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__info-section {
    gap: 1.25rem;
    order: 2;
  }
}
.footer__logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0.625rem;
}
@media (max-width: 767px) {
  .footer__logo {
    margin-bottom: 0.9375rem;
  }
}
.footer__logo-image {
  height: 1.875rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .footer__logo-image {
    height: 1.5rem;
  }
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  font-style: normal;
}
@media (max-width: 767px) {
  .footer__address {
    gap: 0.1875rem;
  }
}
.footer__address-text {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer__address-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.footer__bottom {
  padding: 0 1.25rem 1.875rem;
  position: relative;
}
@media (max-width: 767px) {
  .footer__bottom {
    padding: 0 1.25rem 1.25rem;
  }
}
.footer__bottom-separator {
  width: 90%;
  height: 0.0625rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 auto 1.875rem;
}
@media (max-width: 767px) {
  .footer__bottom-separator {
    margin-bottom: 1.25rem;
  }
}
.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0.625rem 0;
}
@media (max-width: 767px) {
  .footer__bottom-content {
    flex-direction: column;
    gap: 0;
    text-align: center;
    padding: 0;
  }
}
.footer__copyright-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer__copyright-text {
    font-size: 0.6875rem;
  }
}
.footer__privacy-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  right: 0;
  top: 0.625rem;
}
@media (max-width: 767px) {
  .footer__privacy-link {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer__privacy-link:hover {
    opacity: 0.7;
  }
}

.main-container {
  width: 100%;
  min-height: 100vh;
}

/**
 * ローディング画面コンポーネント
 *
 * @package [Project-Name]
 * @version 1.0.0
 */
.loading-screen {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 999999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../../dist/images/hero__bg-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-screen--animate-logo .loading-screen__logo {
  animation: loading-logo-motion 2.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.loading-screen--hidden {
  opacity: 0;
  visibility: hidden;
}
.loading-screen__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-screen__logo {
  width: 220px;
  max-width: 60vw;
  height: auto;
  mix-blend-mode: difference;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

@keyframes loading-logo-motion {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section-heading__number {
  font-size: calc(20 / var(--base-vw) * 100vw);
  font-weight: 400;
  font-family: "Red Hat Display", sans-serif;
  margin-bottom: 0.625rem;
  position: relative;
}
.section-heading__number--absolute {
  position: absolute;
  left: -1.5625rem;
  top: -0.9375rem;
}
@media (max-width: 767px) {
  .section-heading__number--absolute {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 0.3125rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .section-heading__number {
    font-size: 20px;
    margin-bottom: 0.3125rem;
  }
}
.section-heading__title {
  font-size: calc(60 / var(--base-vw) * 100vw);
  font-weight: 300;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: -0.6px;
  line-height: normal;
  margin-bottom: 0.125rem;
}
@media (max-width: 767px) {
  .section-heading__title {
    font-size: 40px;
    margin-bottom: 5px;
  }
}
.section-heading__subtitle {
  font-size: calc(15 / var(--base-vw) * 100vw);
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  position: relative;
  padding-left: 3.125rem;
}
.section-heading__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 0.0625rem;
  background-color: currentColor;
}
@media (max-width: 767px) {
  .section-heading__subtitle::before {
    width: 1.875rem;
  }
}
@media (max-width: 767px) {
  .section-heading__subtitle {
    font-size: 15px;
    padding-left: 2.5rem;
  }
}
.section-heading__subtitle--with-lines {
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  display: inline-block;
}
.section-heading__subtitle--with-lines::before {
  left: 0;
  width: 2.5rem;
}
.section-heading__subtitle--with-lines::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 0.0625rem;
  background-color: currentColor;
}
.section-heading__subtitle-with-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 767px) {
  .section-heading__subtitle-with-divider {
    gap: 0.9375rem;
    margin-bottom: 1.25rem;
  }
}
.section-heading__divider-line {
  width: 2.5rem;
  height: 0.0625rem;
  background-color: currentColor;
}
@media (max-width: 767px) {
  .section-heading__divider-line {
    width: 1.875rem;
  }
}
.section-heading__divider-text {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 767px) {
  .section-heading__divider-text {
    font-size: 0.875rem;
  }
}
.section-heading--centered {
  text-align: center;
  align-items: center;
}
.section-heading--inverted .section-heading__number {
  color: #26435E;
}
.section-heading--inverted .section-heading__title {
  color: #26435E;
}
.section-heading--inverted .section-heading__subtitle {
  color: #343a40;
}
.section-heading--inverted .section-heading__subtitle-with-divider {
  color: #26435E;
}
.section-heading--inverted .section-heading__divider-line {
  background-color: #26435E;
}
.section-heading--white .section-heading__number {
  color: #ffffff;
}
.section-heading--white .section-heading__title {
  color: #ffffff;
}
.section-heading--white .section-heading__subtitle {
  color: #ffffff;
}
.section-heading--white .section-heading__subtitle-with-divider {
  color: #ffffff;
}
.section-heading--white .section-heading__divider-line {
  background-color: #ffffff;
}

/**
 * 共通テキストアニメーション（1文字ずつマスク＆スライドイン）
 */
.text-reveal__line {
  display: block;
  line-height: 1;
}
.text-reveal__line-mask {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.text-reveal__line-inner {
  display: inline-block;
}
.text-reveal__char-mask {
  display: inline-block;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 0 0 0);
}
.text-reveal__char-inner {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.text-reveal.is-inview .text-reveal__char-inner {
  animation: text-reveal-char-up 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: calc(0.2s + 0.03s * var(--char-index));
}

@keyframes text-reveal-char-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    min-height: 80lvh !important;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
  }
}
.hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__bg-image {
  width: 100%;
  height: 100%;
  background-color: #F5F5F0;
  background-image: url("../../dist/images/hero__bg-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .hero__bg-image {
    background-image: url("../../dist/images/hero__bg-image-sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.hero__copyright {
  position: absolute;
  left: -5.625rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: 0.75rem;
  color: #BCBCBC;
  font-family: "Red Hat Display", sans-serif;
  z-index: 100;
  white-space: nowrap;
  writing-mode: horizontal-tb;
}
@media (max-width: 767px) {
  .hero__copyright {
    display: none;
  }
}
.hero__scroll-bar {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) translateX(40px);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media (max-width: 767px) {
  .hero__scroll-bar {
    right: 0.9375rem;
    top: auto;
    bottom: 0;
  }
}
.hero__scroll-indicator {
  position: relative;
  width: 0.0625rem;
  height: 12.5rem;
  background-color: rgba(52, 58, 64, 0.2);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero__scroll-indicator {
    height: 9.375rem;
  }
}
.hero__scroll-progress {
  position: absolute;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: #1a1f3a;
  animation: scroll-progress-animation 2s ease-out infinite;
  will-change: top;
}
@keyframes scroll-progress-animation {
  0% {
    top: -20%;
  }
  10% {
    top: 0;
  }
  70% {
    top: 80%;
  }
  100% {
    top: 100%;
  }
}
.hero__scroll-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: #1a1f3a;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .hero__scroll-text {
    font-size: 0.625rem;
  }
}
.hero__container {
  position: absolute;
  left: 8%;
  bottom: 20%;
  width: auto;
  max-width: 60%;
  padding: 0;
  text-align: left;
  z-index: 10;
}
@media (max-width: 767px) {
  .hero__container {
    left: 1.25rem;
    bottom: auto;
    top: 30%;
    max-width: calc(100% - 2.5rem);
  }
}
@media (max-width: 430px) {
  .hero__container {
    left: 1.25rem;
    top: 25%;
    max-width: calc(100% - 2.5rem);
  }
}
.hero__tagline {
  position: relative;
  font-size: 0.875rem;
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 1.875rem;
  padding-left: 1.25rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(16px);
}
.hero__tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9375rem;
  height: 0.0625rem;
  background-color: #343a40;
}
@media (max-width: 767px) {
  .hero__tagline::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero__tagline {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
    padding-left: 0;
    line-height: 1.8;
  }
  .hero__tagline::before {
    width: 0.75rem;
  }
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
.hero__title-line {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: #1a1f3a;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  overflow: hidden;
  display: block;
}
.hero__title-line--bold {
  font-weight: 700;
}
@media (max-width: 767px) {
  .hero__title-line {
    font-size: 40px;
  }
}
.hero__title-line-mask {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.hero__title-line-inner {
  display: inline-block;
  line-height: 1;
}
.hero__title-char-mask {
  display: inline-block;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 0 0 0);
}
.hero__title-char-inner {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}
.hero__news-notice {
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  background-color: #EBE9E4;
  padding: 0.9375rem 1.25rem;
  z-index: 100;
  min-width: 25rem;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 5px 0 0 5px;
  opacity: 0;
  transform: translateY(40px);
}
.hero__news-notice::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.0625rem;
  height: 1.25rem;
  background-color: #1a1f3a;
}
@media (hover: hover) and (pointer: fine) {
  .hero__news-notice:hover {
    background-color: #1a1f3a;
    color: #ffffff;
  }
  .hero__news-notice:hover .hero__news-label,
  .hero__news-notice:hover .hero__news-text {
    color: #ffffff;
  }
}
@media (max-width: 767px) {
  .hero__news-notice {
    position: absolute;
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    min-width: auto;
    width: calc(100% - 2.5rem);
    padding: 0.75rem 0.9375rem;
    border-radius: 5px;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
  .hero__news-notice::before {
    left: 13px;
    top: 0px;
    height: 1rem;
  }
}
.hero__news-label {
  font-size: 0.875rem;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  margin-left: 0.9375rem;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .hero__news-label {
    font-size: 0.75rem;
    margin-left: 0.625rem;
    position: absolute;
    left: 15px;
    top: -10px;
  }
}
.hero__news-text {
  font-size: 0.875rem;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  flex: 1;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .hero__news-text {
    font-size: 0.75rem;
    line-height: 1.4;
    width: 100%;
    order: 1;
  }
}
.hero__news-arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero__news-arrow {
    width: 1.125rem;
    height: 1.125rem;
    order: 2;
    margin-left: auto;
  }
}
.hero__news-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.hero__news-arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.hero__news-arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .hero__news-notice:hover .hero__news-arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .hero__news-notice:hover .hero__news-arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    padding-bottom: 7.5rem;
  }
}

.is-loaded .hero__tagline {
  animation: hero-tagline-fade-in 0.8s ease-out 0.3s forwards;
}
.is-loaded .hero__title-line:nth-child(1) .hero__title-char-inner {
  animation: hero-title-char-up 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: calc(0.4s + 0.03s * var(--char-index));
}
.is-loaded .hero__title-line:nth-child(2) .hero__title-char-inner {
  animation: hero-title-char-up 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: calc(0.6s + 0.03s * var(--char-index));
}
.is-loaded .hero__title-line:nth-child(3) .hero__title-char-inner {
  animation: hero-title-char-up 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: calc(0.8s + 0.03s * var(--char-index));
}
.is-loaded .hero__copyright {
  animation: hero-copyright-in 0.9s ease-out 0.9s forwards;
}
.is-loaded .hero__scroll-bar {
  animation: hero-scrollbar-in 0.9s ease-out 1s forwards;
}
.is-loaded .hero__news-notice {
  animation: hero-news-in 0.9s ease-out 1.1s forwards;
}

.mission__right-content-inner.is-inview {
  animation: mission-right-fade-up 0.9s ease-out forwards;
}

@keyframes mission-right-fade-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .service-card.is-inview:nth-child(odd) {
    animation: service-card-up 0.9s ease-out forwards;
  }
  .service-card.is-inview:nth-child(even) {
    transform: translateY(-40px);
    animation: service-card-down 0.9s ease-out forwards;
  }
}
@media (max-width: 767px) {
  .service-card {
    transform: translateY(40px);
  }
  .service-card.is-inview {
    animation: service-card-up 0.9s ease-out forwards;
  }
}
@keyframes service-card-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes service-card-down {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-tagline-fade-in {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-title-char-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes hero-copyright-in {
  0% {
    opacity: 0;
    left: -5.625rem;
  }
  100% {
    opacity: 1;
    left: -3.125rem;
  }
}
@keyframes hero-scrollbar-in {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
@keyframes hero-news-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mission {
  position: relative;
  min-height: auto;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.mission__container {
  display: grid;
  grid-template-columns: 35% 65%;
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 767px) {
  .mission__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    min-height: 100vh;
  }
}
.mission__left {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mission__left {
    order: 1;
  }
}
.mission__left-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 35%;
  height: 100vh;
  z-index: 1;
}
@media (max-width: 767px) {
  .mission__left-bg {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
.mission__left-bg-image {
  width: 100%;
  height: 120%;
  background-image: url("../../dist/images/mission__left_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mission__left-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  margin: calc(100 / var(--base-vw) * 100vw) calc(80 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .mission__left-content {
    padding: 2.5rem 1.25rem;
    min-height: auto;
    margin: 0;
  }
}
.mission__right {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .mission__right {
    order: 2;
  }
}
.mission__right-content {
  position: relative;
  z-index: 10;
  padding: calc(80 / var(--base-vw) * 100vw) calc(120 / var(--base-vw) * 100vw);
  background-color: #26435E;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .mission__right-content {
    padding: 3.75rem 1.25rem;
    background-color: #26435E;
  }
}
.mission__right-content-inner {
  opacity: 0;
  transform: translateY(40px);
}
.mission__title-ja {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .mission__title-ja {
    font-size: 35px;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
}
.mission__subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .mission__subtitle {
    gap: 0.3125rem;
    margin-bottom: 0.9375rem;
  }
}
.mission__subtitle-en {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 300;
  color: #ffffff;
  font-family: "Red Hat Display", sans-serif;
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0.8px;
  margin: 0;
}
@media (max-width: 767px) {
  .mission__subtitle-en {
    font-size: 16px;
    line-height: 1.5;
  }
}
.mission__separator {
  width: 2.5rem;
  height: 0.0625rem;
  background-color: #ffffff;
  margin: 1.25rem 0;
}
@media (max-width: 767px) {
  .mission__separator {
    width: 86px;
    margin: 0.9375rem 0;
  }
}
.mission__description {
  width: 80%;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 240%; /* 36px */
  letter-spacing: 0.75px;
}
@media (max-width: 767px) {
  .mission__description {
    width: 100%;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.5px;
  }
}
.mission__right-bg {
  position: relative;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 45%;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 767px) {
  .mission__right-bg {
    position: relative;
    height: 30vh;
    min-height: 12.5rem;
    margin-top: 0;
  }
}
.mission__right-bg-image {
  width: 100%;
  height: 120%;
  background-image: url("../../dist/images/mission__right_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .mission__right-bg-image {
    height: 100%;
  }
}

.service {
  background-repeat: no-repeat;
  position: relative;
  padding: 7.5rem 1.25rem;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .service {
    padding: 3.75rem 0;
  }
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../dist/images/service__bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .service::before {
    background-image: url("../../dist/images/service__bg-sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.service::after {
  width: 100%;
  height: 20%;
  background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}
.service__header {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .service__header {
    padding-bottom: 2.5rem;
  }
}
.service__header-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.service__intro {
  font-size: 0.875rem;
  font-weight: 400;
  color: #26435E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .service__intro {
    font-size: 18px;
    max-width: 100%;
    padding: 0 1.25rem;
  }
}
.service__cards {
  position: relative;
  z-index: 15;
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .service__cards {
    padding-top: 1.25rem;
  }
}
.service__cards-container {
  max-width: 95%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}
@media (max-width: 767px) {
  .service__cards-container {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 1.25rem;
  }
}

.service-card {
  background-color: #EBE9E4;
  padding: 100px 25px 40px 25px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}
@media (max-width: 767px) {
  .service-card {
    padding: 3.125rem 1.5625rem 1.875rem 1.5625rem;
  }
}
.service-card:nth-child(odd) {
  margin-bottom: 2.5rem;
}
@media (max-width: 1366px) {
  .service-card:nth-child(odd) {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .service-card:nth-child(odd) {
    margin-bottom: 0;
  }
}
.service-card:nth-child(even) {
  margin-top: 2.5rem;
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .service-card:nth-child(even) {
    margin-top: 2.5rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .service-card:nth-child(even) {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.service-card::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.875rem;
  width: 1.875rem;
  height: 0.1875rem;
  background-color: #26435E;
}
@media (max-width: 767px) {
  .service-card::before {
    top: 1.25rem;
    right: 1.5625rem;
    width: 1.5625rem;
    height: 0.125rem;
  }
}
.service-card::after {
  content: "";
  position: absolute;
  top: 1.875rem;
  right: 1.25rem;
  width: 0.1875rem;
  height: 1.875rem;
  background-color: #26435E;
}
@media (max-width: 767px) {
  .service-card::after {
    top: 1.75rem;
    right: 1.25rem;
    width: 0.125rem;
    height: 1.5625rem;
  }
}
.service-card__number {
  font-size: calc(30 / var(--base-vw) * 100vw);
  font-weight: 300;
  color: #26435E;
  font-family: "Red Hat Display", sans-serif;
  margin-bottom: 1.5625rem;
}
@media (max-width: 767px) {
  .service-card__number {
    font-size: 30px;
    margin-bottom: 0.9375rem;
    position: absolute;
    left: 20px;
    top: -25px;
  }
}
.service-card__title {
  font-size: calc(32 / var(--base-vw) * 100vw);
  font-weight: 500;
  color: #26435E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 1.25rem;
  font-weight: 400;
  line-height: 150%; /* 48px */
  letter-spacing: -0.32px;
}
@media (max-width: 767px) {
  .service-card__title {
    font-size: 25px;
    margin-bottom: 0.9375rem;
    line-height: 1.5;
  }
}
.service-card__description {
  font-size: calc(16 / var(--base-vw) * 100vw);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 200%; /* 30px */
  letter-spacing: -0.15px;
}
@media (max-width: 767px) {
  .service-card__description {
    font-size: 0.8125rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
}

.value-proposition {
  background-color: #000000;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .value-proposition {
    min-height: auto;
    padding-bottom: 25px;
  }
}
.value-proposition::after {
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}
.value-proposition__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .value-proposition__bg {
    height: 35lvh;
  }
}
.value-proposition__bg-image {
  width: 100%;
  height: 120%;
  background-image: url("../../dist/images/value-proposition__bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .value-proposition__bg-image {
    filter: blur(2px);
    background-image: url("../../dist/images/value-proposition__bg-sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.value-proposition__header {
  position: relative;
  z-index: 10;
  padding: 7.5rem 1.25rem 5rem;
  z-index: 20;
}
@media (max-width: 767px) {
  .value-proposition__header {
    padding: 3.75rem 1.25rem 2.5rem;
  }
}
.value-proposition__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.value-proposition__header-container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .value-proposition__header-container {
    max-width: 100%;
  }
}
.value-proposition__header-container .section-heading .section-heading__number {
  color: #14141E;
}
.value-proposition__header-container .section-heading .section-heading__title {
  color: #14141E;
}
.value-proposition__header-container .section-heading .section-heading__subtitle {
  color: #14141E;
}
.value-proposition__header-container .section-heading .section-heading__subtitle::before {
  background-color: #14141E;
}
.value-proposition__content {
  position: relative;
  z-index: 10;
  background-color: #000000;
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .value-proposition__content {
    padding: 0;
  }
}
.value-proposition__swiper {
  width: 97.5%;
  overflow: visible;
  margin-left: auto;
}
@media (max-width: 767px) {
  .value-proposition__swiper {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
  }
}
.value-proposition__container {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .value-proposition__container {
    padding: 0;
  }
}
.value-proposition__column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 3.75rem 3.75rem;
  min-width: 50vw;
  flex-shrink: 0;
  max-width: 580px;
}
@media (max-width: 767px) {
  .value-proposition__column {
    max-width: 380px;
    padding: 4.375rem 1.25rem 1.875rem 1.25rem;
    gap: 0.9375rem;
  }
}
.value-proposition__column-header {
  min-height: 100px;
  display: grid;
  grid-template-columns: auto 0.0625rem 1fr;
  gap: 1.875rem;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .value-proposition__column-header {
    min-height: 155px;
    grid-template-columns: auto 1fr;
    gap: 0.9375rem;
    align-items: center;
  }
}
.value-proposition__column-number {
  font-size: calc(20 / var(--base-vw) * 100vw);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Red Hat Display", sans-serif;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .value-proposition__column-number {
    font-size: 1.25rem;
    color: #ffffff;
    align-items: flex-start;
    padding-top: 0;
    margin-top: -10px;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.value-proposition__column-separator {
  width: 0.0625rem;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  align-self: stretch;
  min-height: 3.75rem;
}
@media (max-width: 767px) {
  .value-proposition__column-separator {
    width: 90%;
    height: 1px !important;
    position: absolute;
    right: 0;
    top: -3px;
    min-height: auto;
  }
}
.value-proposition__column-title {
  font-size: calc(27 / var(--base-vw) * 100vw);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  padding-left: 1.25rem;
  font-weight: 500;
  line-height: 180%; /* 48.6px */
  letter-spacing: 1.35px;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media (max-width: 767px) {
  .value-proposition__column-title {
    font-size: 23px;
    padding-left: 0;
    line-height: 1.6;
    letter-spacing: 0.5px;
    padding-top: 30px;
  }
}
.value-proposition__column-line {
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 0.25rem, transparent 0.25rem, transparent 0.5rem);
  margin: 0.9375rem 0;
  border: none;
}
@media (max-width: 767px) {
  .value-proposition__column-line {
    margin: 0.75rem 0;
  }
}
.value-proposition__column-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (max-width: 767px) {
  .value-proposition__column-list {
    gap: 0.9375rem;
  }
}
.value-proposition__column-list li {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  position: relative;
  padding-left: 1.25rem;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .value-proposition__column-list li {
    font-size: 0.875rem;
    line-height: 2;
    padding-left: 0.9375rem;
  }
}
.value-proposition__column-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
}

.member {
  background-color: #F5F5F0;
  padding: 7.5rem 1.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .member {
    padding: 3.75rem 1.25rem;
  }
}
.member::before {
  width: 15vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: #ffffff;
  z-index: 1;
}
@media (max-width: 767px) {
  .member::before {
    display: none;
  }
}
.member__header {
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .member__header {
    margin-bottom: 2.5rem;
  }
}
.member__header-container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .member__header-container {
    max-width: 100%;
    padding: 0;
  }
}
.member__profiles {
  margin-top: 3.75rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .member__profiles {
    margin-top: 1.875rem;
  }
}
.member__container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media (max-width: 767px) {
  .member__container {
    max-width: 100%;
    gap: 3.125rem;
    padding: 0;
  }
}

.member-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.75rem;
  align-items: start;
}
@media (max-width: 767px) {
  .member-profile {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.member-profile__image {
  width: 23vw;
  aspect-ratio: 1/1.3;
  background-color: #afafaf;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .member-profile__image {
    width: 100%;
    aspect-ratio: 1/1.3;
    max-width: 100%;
    margin: 0;
  }
}
.member-profile__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.member-profile__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .member-profile__content {
    padding-top: 0;
    gap: 0.9375rem;
  }
}
.member-profile__label {
  display: inline-block;
  font-size: calc(15 / var(--base-vw) * 100vw);
  font-weight: 400;
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #BCBCBC;
  padding: 0.375rem 1rem;
  margin-bottom: 1.25rem;
  align-self: flex-start;
  border-radius: 0 0.25rem 0.25rem 0;
}
@media (max-width: 767px) {
  .member-profile__label {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.75rem;
    margin-bottom: 0.9375rem;
  }
}
.member-profile__name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .member-profile__name-wrapper {
    gap: 0;
    margin-bottom: 0.9375rem;
  }
}
.member-profile__name-ja {
  font-size: calc(30 / var(--base-vw) * 100vw);
  font-weight: 400;
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .member-profile__name-ja {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    flex-wrap: wrap;
  }
}
.member-profile__name-en {
  font-size: calc(12 / var(--base-vw) * 100vw);
  font-weight: 400;
  color: #000000;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
  display: inline;
}
@media (max-width: 767px) {
  .member-profile__name-en {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
  }
}
.member-profile__separator {
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #BCBCBC 0, #BCBCBC 0.25rem, transparent 0.25rem, transparent 0.5rem);
  margin: 0 0 0.9375rem 0;
  border: none;
}
@media (max-width: 767px) {
  .member-profile__separator {
    margin: 0 0 0.75rem 0;
  }
}
.member-profile__description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 220%; /* 27px */
  letter-spacing: 0.75px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .member-profile__description {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.5px;
    gap: 0.9375rem;
  }
}
.member-profile__description p {
  margin: 0;
}

.news {
  background: url("../../dist/images/news_bg.jpg") no-repeat top center/cover;
  color: #ffffff;
  padding: 7.5rem 1.25rem;
}
@media (max-width: 767px) {
  .news {
    background: url("../../dist/images/news_bg-sp.jpg") no-repeat top center/cover;
    padding: 3.75rem 1.25rem;
  }
}
.news__container {
  max-width: 75%;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .news__container {
    max-width: 100%;
    width: 100%;
  }
}
.news__header {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .news__header {
    margin-bottom: 2.5rem;
  }
}
.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 767px) {
  .news__list {
    padding: 0;
  }
}

.news-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5625rem 1.25rem;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 0.25rem;
}
@media (max-width: 767px) {
  .news-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 1.25rem 0;
  }
}
.news-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.3) 0.25rem, transparent 0.25rem, transparent 0.5rem);
  transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .news-item::after {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-item:hover {
    background-color: #ffffff;
  }
  .news-item:hover::after {
    background: repeating-linear-gradient(to right, rgba(52, 58, 64, 0.3) 0, rgba(52, 58, 64, 0.3) 0.25rem, transparent 0.25rem, transparent 0.5rem);
  }
  .news-item:hover .news-item__date,
  .news-item:hover .news-item__separator,
  .news-item:hover .news-item__title {
    color: #343a40;
  }
  .news-item:hover .news-item__arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .news-item:hover .news-item__arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.news-item__date {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Zen Kaku Gothic New", sans-serif;
  min-width: 6.25rem;
  flex-shrink: 0;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .news-item__date {
    font-size: 0.75rem;
    min-width: auto;
    color: rgba(255, 255, 255, 0.7);
    grid-column: 1;
    grid-row: 1;
  }
}
.news-item__separator {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Zen Kaku Gothic New", sans-serif;
  flex-shrink: 0;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .news-item__separator {
    display: none;
  }
}
.news-item__title {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Zen Kaku Gothic New", sans-serif;
  flex: 1;
  line-height: 1.6;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .news-item__title {
    font-size: 0.875rem;
    line-height: 1.7;
    grid-column: 2;
    grid-row: 1;
  }
}
.news-item__arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-left: auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-item__arrow {
    display: none;
  }
}
.news-item__arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.news-item__arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.news-item__arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}

.news__footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .news__footer {
    gap: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.news__footer-separator {
  width: 100%;
  height: 0.0625rem;
  background-color: #ffffff;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .news__footer-separator {
    width: 100%;
    margin-top: 0;
  }
}

.news__view-all {
  display: inline-block;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding: 0.9375rem 2.5rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .news__view-all {
    font-size: 0.875rem;
    padding: 0.625rem 1.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news__view-all:hover {
    background-color: #ffffff;
    color: #1a1f3a;
  }
}

.company {
  background-color: #ffffff;
  padding: 7.5rem 1.25rem;
}
@media (max-width: 767px) {
  .company {
    padding: 3.75rem 0;
  }
}
.company__container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.75rem;
}
@media (max-width: 767px) {
  .company__container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.company__left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.company__right {
  display: flex;
  flex-direction: column;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #14141E;
}
.company-info__row {
  display: grid;
  grid-template-columns: 9.375rem 1fr;
  padding: 1.875rem 0;
  border-bottom: 1px solid #14141E;
  position: relative;
}
@media (max-width: 767px) {
  .company-info__row {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }
}
.company-info__row--address .company-info__value {
  position: relative;
  padding-right: 6.25rem;
}
.company-info__row--link .company-info__value {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .company-info__row--link .company-info__value {
    gap: 0.75rem;
  }
}
.company-info__label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  align-items: center;
}
.company-info__value {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #343a40;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.company-info__address {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.company-info__address p {
  margin: 0;
  line-height: 1.8;
}
.company-info__map-link {
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  text-decoration: none;
  color: #343a40;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .company-info__map-link:hover {
    opacity: 0.7;
  }
}
.company-info__map-icon {
  width: 4.875rem;
  height: 3.75rem;
  display: block;
}
.company-info__company-name {
  flex-shrink: 0;
}
.company-info__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 3.125rem;
  text-decoration: none;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company-info__link-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .company-info__link-btn:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff;
  }
  .company-info__link-btn:hover .company-info__link-btn-arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .company-info__link-btn:hover .company-info__link-btn-arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.company-info__link-btn-text {
  flex-shrink: 0;
  white-space: nowrap;
}
.company-info__link-btn-arrow {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company-info__link-btn-arrow {
    width: 1rem;
    height: 1rem;
  }
}
.company-info__link-btn-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.company-info__link-btn-arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.company-info__link-btn-arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}
.company-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.company-info__list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.8;
}
.company-info__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #343a40;
  font-size: 0.75rem;
}

.recruit {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.recruit__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .recruit__bg {
    position: absolute;
    height: 100%;
  }
}
.recruit__bg-image {
  width: 100%;
  height: 120%;
  background-image: url("../../dist/images/recruit__bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .recruit__bg-image {
    height: 100%;
    background-image: url("../../dist/images/recruit__bg-sp.jpg");
    filter: blur(0px);
  }
}
.recruit__header {
  padding: 3.75rem 1.25rem 3.75rem;
  background-color: rgba(26, 31, 58, 0.7);
  color: #ffffff;
  position: relative;
  z-index: 10;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .recruit__header {
    padding: 2.5rem 1.25rem;
    min-height: 30lvh;
  }
}
.recruit__header-container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
@media (max-width: 767px) {
  .recruit__header-container {
    max-width: 100%;
    flex-direction: column;
    gap: 1.875rem;
  }
}
.recruit__header-left {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.recruit__form-btn {
  background-color: #ffffff;
  color: #343a40;
  border: none;
  padding: 1.125rem 3.125rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-family: "Red Hat Display", sans-serif;
  cursor: pointer;
  border-radius: 3.125rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  align-self: flex-start;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .recruit__form-btn {
    padding: 0.9375rem 2.5rem;
    font-size: 0.875rem;
    align-self: center;
    width: 100%;
    max-width: 18.75rem;
    justify-content: center;
    text-align: center;
    margin: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .recruit__form-btn:hover {
    background-color: #1a1f3a;
    color: #ffffff;
  }
  .recruit__form-btn:hover .recruit__form-btn-text {
    color: #ffffff;
  }
  .recruit__form-btn:hover .recruit__form-btn-arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .recruit__form-btn:hover .recruit__form-btn-arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.recruit__form-btn-text {
  color: #343a40;
  font-weight: 500;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.recruit__form-btn-arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recruit__form-btn-arrow {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.recruit__form-btn-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.recruit__form-btn-arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.recruit__form-btn-arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}
.recruit__flow {
  width: 100%;
  padding: 5rem 0 0 0;
  background-color: #F5F5F0;
}
@media (max-width: 767px) {
  .recruit__flow {
    padding: 2.5rem 1.25rem;
  }
}
.recruit__flow-container {
  max-width: 75%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .recruit__flow-container {
    max-width: 100%;
    flex-direction: column;
    gap: 1.875rem;
    padding-bottom: 40px;
  }
}

.recruit-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 60%;
}
@media (max-width: 767px) {
  .recruit-step {
    width: 100% !important;
    max-width: 100%;
    gap: 0.9375rem;
  }
}
.recruit-step__header {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  flex-wrap: nowrap;
  position: relative;
}
@media (max-width: 767px) {
  .recruit-step__header {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
}
.recruit-step__number {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .recruit-step__number {
    font-size: 25px;
  }
}
.recruit-step__method {
  display: inline-block;
  background-color: #343a40;
  color: #ffffff;
  padding: 0.375rem 0.875rem;
  border-radius: 1.25rem;
  font-size: clamp(0.625rem, 1.2vw, 0.75rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .recruit-step__method {
    min-width: 150px;
    font-size: 13px;
    padding: 0.3125rem 0.75rem;
    text-align: center;
  }
}
.recruit-step__arrow {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 2.5rem;
  position: relative;
  height: 1.25rem;
}
.recruit-step__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0.5rem;
  height: 0.0625rem;
  background-color: #343a40;
  transform: translateY(-50%);
}
.recruit-step__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.25rem solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 0.5rem solid #343a40;
}
@media (max-width: 767px) {
  .recruit-step__arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 1.25rem;
    height: 1.25rem;
    flex: none;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recruit-step__arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0.5rem;
    width: 0.0625rem;
    background-color: #343a40;
    transform: translateX(-50%);
    right: auto;
    height: auto;
  }
  .recruit-step__arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 0.25rem solid transparent;
    border-right: 0.25rem solid transparent;
    border-top: 0.5rem solid #343a40;
    top: auto;
    right: auto;
  }
}
.recruit-step__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
.recruit-step__title {
  font-size: calc(25 / var(--base-vw) * 100vw);
  font-weight: 500;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  line-height: 1.4;
  text-align: left;
  padding: 25px 0 5px 0;
}
@media (max-width: 767px) {
  .recruit-step__title {
    font-size: 25px;
    padding: 0.9375rem 0 0.3125rem 0;
  }
}
.recruit-step__description {
  font-size: calc(16 / var(--base-vw) * 100vw);
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  text-align: left;
  font-weight: 400;
  line-height: 250%; /* 32px */
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .recruit-step__description {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.5px;
  }
}

.recruit__requirements {
  padding: 5rem 1.25rem;
  background-color: #F5F5F0;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .recruit__requirements {
    padding: 2.5rem 1.25rem;
  }
}
.recruit__requirements-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 60px 20px 60px;
}
@media (max-width: 767px) {
  .recruit__requirements-container {
    max-width: 100%;
    padding: 0 20px 20px 20px;
  }
}
.recruit__requirements-container::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
}
@media (max-width: 767px) {
  .recruit__requirements-container::before {
    top: 20px;
  }
}
.recruit__requirements-header {
  text-align: left;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .recruit__requirements-header {
    margin-bottom: 1.875rem;
  }
}
.recruit__requirements-title-ja {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 0 0.3125rem 0;
  text-align: center;
}
@media (max-width: 767px) {
  .recruit__requirements-title-ja {
    font-size: 22px;
  }
}
.recruit__requirements-title-en {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  margin: 0 0 2.5rem 0;
  text-align: center;
}
@media (max-width: 767px) {
  .recruit__requirements-title-en {
    font-size: 30px;
    margin: 0 0 1.875rem 0;
  }
}
.recruit__tabs {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 767px) {
  .recruit__tabs {
    gap: 0.3125rem;
  }
}
.recruit__tabs::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: rgba(52, 58, 64, 0.2);
  z-index: 0;
}
.recruit__tab {
  background-color: #E3E3E3;
  border: none;
  color: #343a40;
  padding: 1.25rem 5rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-family: "Red Hat Display", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 0.25rem 0.25rem 0 0;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 767px) {
  .recruit__tab {
    max-width: 135px;
    padding: 0.9375rem 1.25rem;
    font-size: 0.8125rem;
    flex: 1;
    border-radius: 0.25rem 0.25rem 0 0;
  }
}
.recruit__tab--active {
  background-color: #1a1f3a;
  color: #ffffff;
}
.recruit__tab--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #1a1f3a;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .recruit__tab:hover:not(.recruit__tab--active) {
    opacity: 0.8;
  }
}
.recruit__tab-content {
  display: none;
  text-align: left;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .recruit__tab-content {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
.recruit__tab-content--active {
  display: block;
}
.recruit__tab-content-inner {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (max-width: 767px) {
  .recruit__tab-content-inner {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.recruit__tab-left {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .recruit__tab-left {
    display: none;
  }
}
.recruit__tab-right {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .recruit__tab-right {
    width: 100%;
  }
}

.recruit-info {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.875rem;
  height: 100%;
}
@media (max-width: 767px) {
  .recruit-info {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    height: auto;
  }
}
@media (max-width: 767px) {
  .recruit-info__item {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
  }
}
.recruit-info__label {
  background-color: #E3E3E3;
  color: #343a40;
  padding: 0.75rem 1.25rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .recruit-info__label {
    font-size: 0.875rem;
    padding: 0.75rem 0;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }
}
.recruit-info__value {
  font-size: calc(16 / var(--base-vw) * 100vw);
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin: 0;
  text-align: left;
  display: flex;
  align-items: center;
  padding-top: 7px;
}
@media (max-width: 767px) {
  .recruit-info__value {
    font-size: 0.875rem;
    line-height: 1.8;
    padding-top: 0;
    align-items: flex-start;
    margin-bottom: 0;
    text-align: left;
  }
}
.recruit-info__value p {
  margin: 0 0 0.625rem 0;
}
@media (max-width: 767px) {
  .recruit-info__value p {
    margin: 0 0 0.5rem 0;
  }
}
.recruit-info__value p:last-child {
  margin-bottom: 0;
}

.contact {
  background-color: #f5f5f0;
  position: relative;
  padding-bottom: 80px;
}
.contact::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #ffffff;
  z-index: 1;
}
.contact__container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  background: #26435E;
  padding: 3.75rem 5rem;
  position: relative;
  z-index: 10;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact__container {
    padding: 2.5rem 1.25rem;
    gap: 1.25rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact__container:hover {
    background-color: #ffffff;
  }
  .contact__container:hover .contact__title,
  .contact__container:hover .contact__subtitle {
    color: #343a40;
  }
  .contact__container:hover .contact__arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .contact__container:hover .contact__arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.contact__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact__text-wrapper {
    gap: 0.3125rem;
  }
}
.contact__title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .contact__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.contact__subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .contact__subtitle {
    font-size: 0.875rem;
  }
}
.contact__arrow {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact__arrow {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.contact__arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.contact__arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.contact__arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}

.news-list {
  background-color: #f5f5f0;
  padding: 9.375rem 1.25rem;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .news-list {
    padding: 7.5rem 1.25rem;
  }
}
.news-list__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.news-list__header {
  display: flex;
  align-items: baseline;
  gap: 0.9375rem;
  margin-bottom: 3.75rem;
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .news-list__header {
    margin-bottom: 1.875rem;
    padding-bottom: 0.9375rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    border-bottom: 0.0625rem solid #000000;
  }
}
.news-list__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .news-list__title {
    font-size: 40px;
  }
}
.news-list__title-divider {
  width: 1.875rem;
  height: 0.0625rem;
  background-color: #343a40;
  flex-shrink: 0;
  position: relative;
  top: -20px;
}
@media (max-width: 767px) {
  .news-list__title-divider {
    width: 1.25rem;
    top: -9px;
  }
}
.news-list__subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  position: relative;
  top: -13px;
}
@media (max-width: 767px) {
  .news-list__subtitle {
    font-size: 0.8125rem;
    top: -5px;
  }
}
.news-list__content {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: 5rem;
}
@media (max-width: 767px) {
  .news-list__content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .news-list__sidebar {
    order: 1;
    margin-bottom: 1.875rem;
  }
}
.news-list__filter {
  margin-bottom: 2.5rem;
  padding-top: 30px;
  border-top: 1px solid #000000;
}
@media (max-width: 767px) {
  .news-list__filter {
    margin-bottom: 1.5625rem;
    border-top: none;
    padding-top: 0px;
  }
}
.news-list__filter:last-child {
  margin-bottom: 0;
}
.news-list__filter-title {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  margin: 0 0 0.625rem 0;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .news-list__filter-title {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }
}
.news-list__filter-divider {
  width: 100%;
  height: 0.0625rem;
  background-color: #343a40;
  margin-bottom: 0.9375rem;
  display: none;
}
@media (max-width: 767px) {
  .news-list__filter-divider {
    margin-bottom: 0.75rem;
  }
}
.news-list__filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.news-list__filter-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.news-list__filter-bullet {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: transparent;
  flex-shrink: 0;
  transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-list__filter-item--active .news-list__filter-bullet {
  background-color: #343a40;
}
.news-list__filter-link {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .news-list__filter-link:hover {
    opacity: 0.7;
  }
}
.news-list__year-select {
  position: relative;
}
.news-list__year-dropdown {
  width: 100%;
  padding: 0.625rem 1.875rem 0.625rem 0.625rem;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2314141E' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.75rem;
  cursor: pointer;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .news-list__year-dropdown:hover {
    border-color: rgba(52, 58, 64, 0.4);
  }
}
.news-list__year-dropdown:focus {
  outline: none;
  border-color: #343a40;
}
@media (max-width: 767px) {
  .news-list__main {
    order: 2;
  }
}
.news-list__items {
  list-style: none;
  padding: 0;
  margin: 0 0 3.75rem 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .news-list__items {
    margin-bottom: 2.5rem;
  }
}

.news-list-item {
  position: relative;
}
.news-list-item:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, rgba(52, 58, 64, 0.2) 0, rgba(52, 58, 64, 0.2) 0.25rem, transparent 0.25rem, transparent 0.5rem);
  transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-list-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, rgba(52, 58, 64, 0.2) 0, rgba(52, 58, 64, 0.2) 0.25rem, transparent 0.25rem, transparent 0.5rem);
  transition: background 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .news-list-item:hover::after {
    background: repeating-linear-gradient(to right, rgba(52, 58, 64, 0.3) 0, rgba(52, 58, 64, 0.3) 0.25rem, transparent 0.25rem, transparent 0.5rem);
  }
}
.news-list-item__link {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0.9375rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border-radius: 0.25rem;
  margin: 0 -0.9375rem;
}
@media (max-width: 767px) {
  .news-list-item__link {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    padding: 0.9375rem 0;
    gap: 0.625rem;
    margin: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-list-item__link:hover {
    background-color: #ffffff;
  }
  .news-list-item__link:hover .news-list-item__date,
  .news-list-item__link:hover .news-list-item__title {
    color: #343a40;
  }
  .news-list-item__link:hover .news-list-item__arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .news-list-item__link:hover .news-list-item__arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.news-list-item__date {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  color: rgba(52, 58, 64, 0.6);
  font-family: "Zen Kaku Gothic New", sans-serif;
  min-width: 6.25rem;
  flex-shrink: 0;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .news-list-item__date {
    font-size: 0.6875rem;
    min-width: auto;
    grid-column: 1;
    grid-row: 1;
    color: rgba(52, 58, 64, 0.5);
  }
}
.news-list-item__title {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  flex: 1;
  line-height: 1.6;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 767px) {
  .news-list-item__title {
    font-size: 0.8125rem;
    line-height: 1.6;
    grid-column: 2;
    grid-row: 1;
  }
}
.news-list-item__arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-list-item__arrow {
    display: none;
  }
}
.news-list-item__arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.news-list-item__arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.news-list-item__arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}

.news-list__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: 3.75rem;
  padding-top: 2.5rem;
  border-top: 0.0625rem solid rgba(52, 58, 64, 0.1);
}
@media (max-width: 767px) {
  .news-list__pagination {
    margin-top: 1.875rem;
    padding-top: 1.875rem;
    gap: 0.5rem;
  }
}

.news-list__pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .news-list__pagination-arrow:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .news-list__pagination-arrow {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.news-list__pagination-arrow-img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-list__pagination-arrow-img--left {
  transform: rotate(180deg);
}
.news-list__pagination-arrow-img--right {
  transform: rotate(0deg);
}
@media (max-width: 767px) {
  .news-list__pagination-arrow-img {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.news-list__pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 767px) {
  .news-list__pagination-numbers {
    gap: 0.5rem;
  }
}

.news-list__pagination-number {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 0.25rem;
}
@media (hover: hover) and (pointer: fine) {
  .news-list__pagination-number:hover:not(.news-list__pagination-number--active) {
    opacity: 0.7;
  }
}
.news-list__pagination-number--active {
  background-color: rgba(52, 58, 64, 0.1);
  color: #343a40;
}
@media (max-width: 767px) {
  .news-list__pagination-number {
    font-size: 0.8125rem;
    min-width: 1.75rem;
    height: 1.75rem;
  }
}

.news-list__pagination-ellipsis {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 0 0.3125rem;
}
@media (max-width: 767px) {
  .news-list__pagination-ellipsis {
    font-size: 0.8125rem;
  }
}

.news-single {
  background-color: #f5f5f0;
  padding: 9.375rem 1.25rem;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .news-single {
    padding: 6.25rem 1.25rem;
  }
}
.news-single__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.news-single__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 3.75rem;
  padding-bottom: 1.875rem;
  border-bottom: 0.0625rem solid rgba(52, 58, 64, 0.1);
}
@media (max-width: 767px) {
  .news-single__header {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
  }
}
.news-single__header-left {
  display: flex;
  align-items: flex-start;
  gap: 3.75rem;
  flex: 1;
}
@media (max-width: 767px) {
  .news-single__header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
    width: 100%;
  }
}
.news-single__page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-single__page-title {
    font-size: 1.75rem;
    margin-bottom: 0;
  }
}
.news-single__header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-single__header-right {
    align-items: flex-start;
    width: 100%;
    justify-content: flex-start;
  }
}
.news-single__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3.125rem;
}
@media (max-width: 767px) {
  .news-single__meta {
    gap: 1.875rem;
    width: 100%;
  }
}
.news-single__meta-sp {
  display: none;
}
@media (max-width: 767px) {
  .news-single__meta-sp {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    margin-bottom: 0.9375rem;
    margin-top: 0.5rem;
  }
}
.news-single__meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem;
}
.news-single__meta-label {
  font-size: clamp(0.6875rem, 1vw, 0.75rem);
  font-weight: 400;
  color: rgba(52, 58, 64, 0.5);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 767px) {
  .news-single__meta-label {
    font-size: 0.625rem;
    margin-bottom: 0.125rem;
  }
}
.news-single__date {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  color: rgba(52, 58, 64, 0.6);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 767px) {
  .news-single__date {
    font-size: 0.6875rem;
  }
}
.news-single__category {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  color: rgba(52, 58, 64, 0.6);
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .news-single__category {
    font-size: 0.6875rem;
  }
}
.news-single__nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 767px) {
  .news-single__nav {
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-start;
  }
}
.news-single__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  text-decoration: none;
  color: #14141E;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 500;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 12.5rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-single__nav-link {
    padding: 0.5rem 0.875rem;
    gap: 0.375rem;
    font-size: 0.75rem;
  }
}
.news-single__nav-link--disabled {
  cursor: default;
  pointer-events: none;
  background: rgba(52, 58, 64, 0.1);
}
.news-single__nav-link--prev {
  flex-direction: row;
}
.news-single__nav-link--next {
  flex-direction: row;
}
@media (hover: hover) and (pointer: fine) {
  .news-single__nav-link:hover:not(.news-single__nav-link--disabled) {
    background-color: #343a40;
    color: #ffffff;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  }
  .news-single__nav-link:hover:not(.news-single__nav-link--disabled).news-single__nav-link--prev .news-single__nav-arrow-img--current {
    transform: translateY(-50%) translateX(-300%) rotate(180deg);
    opacity: 0;
  }
  .news-single__nav-link:hover:not(.news-single__nav-link--disabled).news-single__nav-link--prev .news-single__nav-arrow-img--next {
    transform: translateY(-50%) translateX(0) rotate(180deg);
    opacity: 1;
  }
  .news-single__nav-link:hover:not(.news-single__nav-link--disabled).news-single__nav-link--next .news-single__nav-arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .news-single__nav-link:hover:not(.news-single__nav-link--disabled).news-single__nav-link--next .news-single__nav-arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.news-single__nav-arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-single__nav-arrow {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.news-single__nav-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.news-single__nav-arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.news-single__nav-arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}
.news-single__nav-link--prev .news-single__nav-arrow-img--current {
  transform: translateY(-50%) translateX(0) rotate(180deg);
}
.news-single__nav-link--prev .news-single__nav-arrow-img--next {
  transform: translateY(-50%) translateX(-100%) rotate(180deg);
}
.news-single__nav-link--next .news-single__nav-arrow-img--current {
  transform: translateY(-50%) translateX(0);
}
.news-single__nav-link--next .news-single__nav-arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
}
.news-single__title-wrapper {
  margin-bottom: 3.75rem;
  padding-bottom: 1.875rem;
  border-bottom: 0.0625rem solid rgba(52, 58, 64, 0.1);
}
@media (max-width: 767px) {
  .news-single__title-wrapper {
    margin-bottom: 1.5625rem;
    padding-bottom: 0.75rem;
    margin-top: 0.625rem;
  }
}
.news-single__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  margin: 3.125rem 0 2.5rem 0;
}
@media (max-width: 767px) {
  .news-single__title {
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 500;
    margin: 1.875rem 0 1.5625rem 0;
  }
}
.news-single__meta {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  color: rgba(52, 58, 64, 0.6);
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 0 2.5rem 0;
}
@media (max-width: 767px) {
  .news-single__meta {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
}
.news-single__content {
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .news-single__content {
    width: 100%;
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}
.news-single__content > h2 + p,
.news-single__content > h3 + p {
  margin-top: 0;
}
.news-single__content > h2 {
  margin-top: 3.125rem;
  padding-top: 1.25rem;
  border-top: 0.0625rem solid rgba(52, 58, 64, 0.1);
}
@media (max-width: 767px) {
  .news-single__content > h2 {
    margin-top: 2.1875rem;
    padding-top: 0.9375rem;
  }
}
.news-single__content > h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.news-single__content h1,
.news-single__content h2,
.news-single__content h3,
.news-single__content h4,
.news-single__content h5,
.news-single__content h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #343a40;
  margin: 3.125rem 0 1.25rem 0;
  line-height: 1.6;
  position: relative;
}
@media (max-width: 767px) {
  .news-single__content h1,
  .news-single__content h2,
  .news-single__content h3,
  .news-single__content h4,
  .news-single__content h5,
  .news-single__content h6 {
    margin: 2.1875rem 0 0.9375rem 0;
  }
}
.news-single__content h1:first-child,
.news-single__content h2:first-child,
.news-single__content h3:first-child,
.news-single__content h4:first-child,
.news-single__content h5:first-child,
.news-single__content h6:first-child {
  margin-top: 0;
}
.news-single__content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  border-bottom: 0.125rem solid rgba(52, 58, 64, 0.15);
  padding-bottom: 0.9375rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .news-single__content h1 {
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
  }
}
.news-single__content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  border-bottom: 0.0625rem solid rgba(52, 58, 64, 0.15);
  padding-bottom: 0.9375rem;
  margin-top: 3.125rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .news-single__content h2 {
    font-size: 1.125rem;
    padding-bottom: 0.75rem;
    margin-top: 2.1875rem;
    margin-bottom: 0.9375rem;
  }
}
.news-single__content h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.9375rem;
  padding-left: 1.125rem;
  position: relative;
}
@media (max-width: 767px) {
  .news-single__content h3 {
    font-size: 1rem;
    margin-top: 1.875rem;
    margin-bottom: 0.75rem;
    padding-left: 0.9375rem;
  }
}
.news-single__content h3::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.125rem;
  font-size: 0.5rem;
  color: rgba(52, 58, 64, 0.5);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .news-single__content h3::before {
    font-size: 0.4375rem;
    top: 0.0625rem;
  }
}
.news-single__content h4 {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  margin-top: 2.1875rem;
}
@media (max-width: 767px) {
  .news-single__content h4 {
    font-size: 0.9375rem;
    margin-top: 1.5625rem;
  }
}
.news-single__content h5,
.news-single__content h6 {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin-top: 1.875rem;
}
@media (max-width: 767px) {
  .news-single__content h5,
  .news-single__content h6 {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}
.news-single__content p {
  margin: 0 0 1.25rem 0;
}
@media (max-width: 767px) {
  .news-single__content p {
    margin-bottom: 0.9375rem;
  }
}
.news-single__content ul,
.news-single__content ol {
  margin: 1.5625rem 0;
  padding-left: 0;
  list-style: none;
  position: relative;
}
@media (max-width: 767px) {
  .news-single__content ul,
  .news-single__content ol {
    margin: 1.25rem 0;
  }
}
.news-single__content ul li {
  position: relative;
  padding-left: 1.375rem;
  margin-bottom: 0.625rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .news-single__content ul li {
    padding-left: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.news-single__content ul li::before {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 0.625rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #343a40;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .news-single__content ul li::before {
    left: 0.3125rem;
    width: 0.3125rem;
    height: 0.3125rem;
    top: 0.5625rem;
  }
}
.news-single__content ul li > ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  margin-left: 0.9375rem;
}
@media (max-width: 767px) {
  .news-single__content ul li > ul {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    margin-left: 0.75rem;
  }
}
.news-single__content ul li > ul li::before {
  background-color: #343a40;
  width: 0.3125rem;
  height: 0.3125rem;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .news-single__content ul li > ul li::before {
    width: 0.25rem;
    height: 0.25rem;
  }
}
.news-single__content ul li > ul li > ul li::before {
  background-color: #343a40;
  width: 0.25rem;
  height: 0.25rem;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .news-single__content ul li > ul li > ul li::before {
    width: 0.1875rem;
    height: 0.1875rem;
  }
}
.news-single__content ol {
  counter-reset: list-counter;
}
.news-single__content ol li {
  position: relative;
  padding-left: 2.1875rem;
  margin-bottom: 0.75rem;
  line-height: 1.8;
  counter-increment: list-counter;
}
@media (max-width: 767px) {
  .news-single__content ol li {
    padding-left: 1.75rem;
    margin-bottom: 0.625rem;
  }
}
.news-single__content ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0.5rem;
  top: 0;
  font-weight: 600;
  color: rgba(52, 58, 64, 0.6);
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .news-single__content ol li::before {
    left: 0.375rem;
    font-size: 0.75rem;
  }
}
.news-single__content ol li > ol {
  counter-reset: list-counter;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  margin-left: 0.9375rem;
}
@media (max-width: 767px) {
  .news-single__content ol li > ol {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    margin-left: 0.75rem;
  }
}
.news-single__content ol li > ol li::before {
  content: counter(list-counter, lower-alpha) ".";
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .news-single__content ol li > ol li::before {
    font-size: 0.6875rem;
  }
}
.news-single__content ol li > ol li > ol {
  counter-reset: list-counter;
}
.news-single__content ol li > ol li > ol li::before {
  content: counter(list-counter, lower-roman) ".";
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .news-single__content ol li > ol li > ol li::before {
    font-size: 0.625rem;
  }
}
.news-single__content li > ul,
.news-single__content li > ol {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .news-single__content li > ul,
  .news-single__content li > ol {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
.news-single__content a {
  color: #343a40;
  text-decoration: underline;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .news-single__content a:hover {
    opacity: 0.7;
  }
}
.news-single__content a.button, .news-single__content a.wp-block-button__link,
.news-single__content a button {
  text-decoration: none;
}
.news-single__content img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 1.875rem 0;
}
@media (max-width: 767px) {
  .news-single__content img {
    margin: 1.25rem 0;
  }
}
.news-single__content blockquote {
  border-left: 0.25rem solid rgba(52, 58, 64, 0.2);
  padding-left: 1.25rem;
  margin: 1.875rem 0;
  font-style: italic;
  color: rgba(52, 58, 64, 0.8);
}
@media (max-width: 767px) {
  .news-single__content blockquote {
    padding-left: 0.9375rem;
    margin: 1.25rem 0;
  }
}
.news-single__content .wp-block-button,
.news-single__content .button,
.news-single__content a.button,
.news-single__content button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: rgba(52, 58, 64, 0.05);
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 0.25rem;
  color: #343a40;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .news-single__content .wp-block-button,
  .news-single__content .button,
  .news-single__content a.button,
  .news-single__content button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 0.1875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-single__content .wp-block-button:hover,
  .news-single__content .button:hover,
  .news-single__content a.button:hover,
  .news-single__content button:hover {
    background-color: rgba(52, 58, 64, 0.1);
    border-color: rgba(52, 58, 64, 0.3);
  }
}
.news-single__content .wp-block-button:focus,
.news-single__content .button:focus,
.news-single__content a.button:focus,
.news-single__content button:focus {
  outline: 0.125rem solid rgba(52, 58, 64, 0.3);
  outline-offset: 0.125rem;
}
.news-single__content .wp-block-button__link {
  padding: 0.75rem 1.5rem;
  background-color: rgba(52, 58, 64, 0.05);
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 0.25rem;
  color: #343a40;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .news-single__content .wp-block-button__link {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 0.1875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-single__content .wp-block-button__link:hover {
    background-color: rgba(52, 58, 64, 0.1);
    border-color: rgba(52, 58, 64, 0.3);
  }
}
.news-single__featured-image {
  width: 100%;
  margin: 2.5rem 0 3.75rem 0;
  overflow: hidden;
  background-color: rgba(52, 58, 64, 0.05);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .news-single__featured-image {
    margin: 1.5625rem 0 1.875rem 0;
    aspect-ratio: 4/3;
  }
}
.news-single__featured-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-single__body {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .news-single__body {
    font-size: 0.8125rem;
    line-height: 1.9;
    margin-bottom: 1.875rem;
  }
}
.news-single__body h1,
.news-single__body h2,
.news-single__body h3,
.news-single__body h4,
.news-single__body h5,
.news-single__body h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #343a40;
  margin: 2.5rem 0 1.25rem 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .news-single__body h1,
  .news-single__body h2,
  .news-single__body h3,
  .news-single__body h4,
  .news-single__body h5,
  .news-single__body h6 {
    margin: 1.875rem 0 0.9375rem 0;
  }
}
.news-single__body h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  border-bottom: 0.0625rem solid rgba(52, 58, 64, 0.2);
  padding-bottom: 0.625rem;
}
@media (max-width: 767px) {
  .news-single__body h2 {
    font-size: 1.125rem;
  }
}
.news-single__body h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}
@media (max-width: 767px) {
  .news-single__body h3 {
    font-size: 1rem;
  }
}
.news-single__body p {
  margin: 0 0 1.25rem 0;
}
@media (max-width: 767px) {
  .news-single__body p {
    margin-bottom: 0.9375rem;
  }
}
.news-single__body ul,
.news-single__body ol {
  margin: 1.25rem 0;
  padding-left: 1.875rem;
  list-style-position: outside;
}
@media (max-width: 767px) {
  .news-single__body ul,
  .news-single__body ol {
    margin: 0.9375rem 0;
    padding-left: 1.25rem;
  }
}
.news-single__body ul {
  list-style-type: disc;
}
.news-single__body ul ul {
  list-style-type: circle;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media (max-width: 767px) {
  .news-single__body ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.news-single__body ul ul ul {
  list-style-type: square;
}
.news-single__body ol {
  list-style-type: decimal;
}
.news-single__body ol ol {
  list-style-type: lower-alpha;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media (max-width: 767px) {
  .news-single__body ol ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.news-single__body ol ol ol {
  list-style-type: lower-roman;
}
.news-single__body li {
  margin-bottom: 0.625rem;
  padding-left: 0.3125rem;
}
@media (max-width: 767px) {
  .news-single__body li {
    margin-bottom: 0.5rem;
    padding-left: 0.1875rem;
  }
}
.news-single__body li > ul,
.news-single__body li > ol {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media (max-width: 767px) {
  .news-single__body li > ul,
  .news-single__body li > ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.news-single__body a {
  color: #343a40;
  text-decoration: underline;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .news-single__body a:hover {
    opacity: 0.7;
  }
}
.news-single__body img {
  max-width: 100%;
  height: auto;
  margin: 1.875rem 0;
}
@media (max-width: 767px) {
  .news-single__body img {
    margin: 1.25rem 0;
  }
}
.news-single__body blockquote {
  border-left: 0.25rem solid rgba(52, 58, 64, 0.2);
  padding-left: 1.25rem;
  margin: 1.875rem 0;
  font-style: italic;
  color: rgba(52, 58, 64, 0.8);
}
@media (max-width: 767px) {
  .news-single__body blockquote {
    padding-left: 0.9375rem;
    margin: 1.25rem 0;
  }
}
.news-single__cta {
  margin-top: 3.75rem;
  padding-top: 2.5rem;
  border-top: 0.0625rem solid rgba(52, 58, 64, 0.1);
  text-align: center;
}
@media (max-width: 767px) {
  .news-single__cta {
    margin-top: 1.875rem;
    padding-top: 1.25rem;
  }
}
.news-single__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 0.9375rem 1.875rem;
  background-color: #ffffff;
  border-radius: 200px;
  text-decoration: none;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-single__cta-link {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
    gap: 0.625rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-single__cta-link:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff;
  }
  .news-single__cta-link:hover .news-single__cta-arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .news-single__cta-link:hover .news-single__cta-arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.news-single__cta-text {
  flex-shrink: 0;
}
.news-single__cta-arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-single__cta-arrow {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.news-single__cta-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.news-single__cta-arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.news-single__cta-arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}
.news-single__back {
  margin-top: 3.75rem;
  padding-top: 2.5rem;
  border-top: 0.0625rem solid rgba(52, 58, 64, 0.1);
  text-align: center;
}
@media (max-width: 767px) {
  .news-single__back {
    margin-top: 2.5rem;
    padding-top: 1.875rem;
  }
}
.news-single__back-link {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0.75rem;
  padding: 0.9375rem 1.875rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 3.125rem;
  text-decoration: none;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-single__back-link {
    padding: 0.75rem 1.5625rem;
    font-size: 0.875rem;
    gap: 0.625rem;
    width: 100%;
    max-width: 17.5rem;
    justify-content: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-single__back-link:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff;
  }
  .news-single__back-link:hover .news-single__back-link-arrow-img--current {
    transform: translateY(-50%) translateX(-300%) rotate(180deg);
    opacity: 0;
  }
  .news-single__back-link:hover .news-single__back-link-arrow-img--next {
    transform: translateY(-50%) translateX(0) rotate(180deg);
    opacity: 1;
  }
}
.news-single__back-link-text {
  flex-shrink: 0;
}
.news-single__back-link-arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-single__back-link-arrow {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.news-single__back-link-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%) rotate(180deg);
}
.news-single__back-link-arrow-img--current {
  transform: translateY(-50%) translateX(0) rotate(180deg);
  opacity: 1;
}
.news-single__back-link-arrow-img--next {
  transform: translateY(-50%) translateX(-100%) rotate(180deg);
  opacity: 0;
}

.recruit-form {
  background-color: #f5f5f0;
  padding: 9.375rem 1.25rem;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .recruit-form {
    padding: 6.25rem 1.25rem;
  }
}
.recruit-form__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.recruit-form__content {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 5rem;
}
@media (max-width: 767px) {
  .recruit-form__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .recruit-form__left {
    order: 1;
  }
}
.recruit-form__intro {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .recruit-form__intro {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
.recruit-form__intro-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin: 0 0 1.25rem 0;
}
@media (max-width: 767px) {
  .recruit-form__intro-text {
    font-size: 0.8125rem;
    line-height: 1.9;
    margin-bottom: 0.9375rem;
  }
}
.recruit-form__intro-note {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin: 0 0 1.875rem 0;
}
@media (max-width: 767px) {
  .recruit-form__intro-note {
    font-size: 0.8125rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
  }
}
.recruit-form__intro-link {
  color: #343a40;
  text-decoration: underline;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .recruit-form__intro-link:hover {
    opacity: 0.7;
  }
}
.recruit-form__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 0.9375rem 1.875rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 3.125rem;
  text-decoration: none;
  color: #14141E;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recruit-form__contact-btn {
    padding: 0.75rem 1.5625rem;
    font-size: 0.875rem;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .recruit-form__contact-btn:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff;
  }
  .recruit-form__contact-btn:hover .recruit-form__contact-btn-arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .recruit-form__contact-btn:hover .recruit-form__contact-btn-arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.recruit-form__contact-btn-text {
  flex-shrink: 0;
}
.recruit-form__contact-btn-arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recruit-form__contact-btn-arrow {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.recruit-form__contact-btn-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.recruit-form__contact-btn-arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.recruit-form__contact-btn-arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}
@media (max-width: 767px) {
  .recruit-form__right {
    order: 2;
  }
}
.recruit-form__form {
  width: 100%;
}
.recruit-form__field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .recruit-form__field {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5625rem;
  }
}
.recruit-form__field--checkbox {
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .recruit-form__field--checkbox {
    margin-bottom: 1.875rem;
  }
}
.recruit-form__label {
  display: block;
  margin-bottom: 0;
  position: relative;
  min-width: 7.5rem;
  padding-top: 0.75rem;
}
@media (max-width: 767px) {
  .recruit-form__label {
    margin-bottom: 0.5rem;
    min-width: auto;
    padding-top: 0;
  }
}
.recruit-form__label-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
}
@media (max-width: 767px) {
  .recruit-form__label-text {
    font-size: 0.8125rem;
    display: inline-block;
    margin-right: 0.5rem;
  }
}
.recruit-form__label-en {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  color: rgba(52, 58, 64, 0.6);
  font-family: "Red Hat Display", sans-serif;
  display: block;
  margin-top: 0.125rem;
}
@media (max-width: 767px) {
  .recruit-form__label-en {
    font-size: 0.6875rem;
    display: inline-block;
    margin-top: 0;
  }
}
.recruit-form__required {
  color: #dc3545;
  font-size: 0.4375rem;
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 0;
}
@media (max-width: 767px) {
  .recruit-form__required {
    font-size: 0.625rem;
    font-size: 5px;
  }
}
.recruit-form__input, .recruit-form__textarea {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 0.25rem;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}
@media (max-width: 767px) {
  .recruit-form__input, .recruit-form__textarea {
    font-size: 0.8125rem;
    padding: 0.625rem 0.75rem;
  }
}
.recruit-form__input:focus, .recruit-form__textarea:focus {
  outline: none;
  border-color: #343a40;
}
.recruit-form__input::-moz-placeholder, .recruit-form__textarea::-moz-placeholder {
  color: rgba(52, 58, 64, 0.4);
}
.recruit-form__input::placeholder, .recruit-form__textarea::placeholder {
  color: rgba(52, 58, 64, 0.4);
}
.recruit-form__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.recruit-form__input-wrapper .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 767px) {
  .recruit-form__input-wrapper .wpcf7-form-control-wrap {
    gap: 0.9375rem;
  }
}
.recruit-form__input-wrapper .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  width: 100%;
  flex-basis: 100%;
  order: 999;
  margin-top: 0.3125rem;
}
.recruit-form__input-wrapper .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .recruit-form__input-wrapper .wpcf7-list-item {
    gap: 0.375rem;
  }
}
.recruit-form__input-wrapper .wpcf7-list-item input[type=radio] {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: 0.125rem solid rgba(52, 58, 64, 0.3);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .recruit-form__input-wrapper .wpcf7-list-item input[type=radio] {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.recruit-form__input-wrapper .wpcf7-list-item input[type=radio]:checked {
  border-color: #343a40;
}
.recruit-form__input-wrapper .wpcf7-list-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.75rem;
  height: 0.75rem;
  background-color: #343a40;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .recruit-form__input-wrapper .wpcf7-list-item input[type=radio]:checked::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.recruit-form__input-wrapper .wpcf7-list-item input[type=radio]:focus {
  outline: none;
}
.recruit-form__input-wrapper .wpcf7-list-item label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0;
}
@media (max-width: 767px) {
  .recruit-form__input-wrapper .wpcf7-list-item label {
    font-size: 0.8125rem;
  }
}
.recruit-form__textarea {
  resize: vertical;
  min-height: 7.5rem;
}
@media (max-width: 767px) {
  .recruit-form__textarea {
    min-height: 6.25rem;
  }
}
.recruit-form__radio-group {
  display: flex;
  gap: 1.25rem;
  margin-top: 0;
}
@media (max-width: 767px) {
  .recruit-form__radio-group {
    gap: 0.9375rem;
    margin-top: 0.5rem;
  }
}
.recruit-form__radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .recruit-form__radio-label {
    gap: 0.375rem;
  }
}
.recruit-form__radio {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: 0.125rem solid rgba(52, 58, 64, 0.3);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .recruit-form__radio {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.recruit-form__radio:checked {
  border-color: #343a40;
}
.recruit-form__radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.75rem;
  height: 0.75rem;
  background-color: #343a40;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .recruit-form__radio:checked::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.recruit-form__radio:focus {
  outline: none;
}
.recruit-form__radio-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .recruit-form__radio-text {
    font-size: 0.8125rem;
  }
}
.recruit-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .recruit-form__checkbox-label {
    gap: 0.5rem;
  }
}
.recruit-form__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-top: 0.125rem;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: 0.125rem solid rgba(52, 58, 64, 0.3);
  border-radius: 0.25rem;
  position: relative;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .recruit-form__checkbox {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.0625rem;
  }
}
.recruit-form__checkbox:checked {
  border-color: #343a40;
  background-color: #343a40;
}
.recruit-form__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.375rem;
  height: 0.625rem;
  border: solid #ffffff;
  border-width: 0 0.125rem 0.125rem 0;
}
@media (max-width: 767px) {
  .recruit-form__checkbox:checked::after {
    width: 0.3125rem;
    height: 0.5rem;
  }
}
.recruit-form__checkbox:focus {
  outline: none;
}
.recruit-form__checkbox-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  flex: 1;
}
@media (max-width: 767px) {
  .recruit-form__checkbox-text {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}
.recruit-form__privacy-link {
  color: #343a40;
  text-decoration: underline;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .recruit-form__privacy-link:hover {
    opacity: 0.7;
  }
}
.recruit-form__error {
  display: block;
  color: #dc3545;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 0.3125rem;
}
@media (max-width: 767px) {
  .recruit-form__error {
    font-size: 0.6875rem;
    margin-top: 0.25rem;
  }
}
.recruit-form__submit {
  margin-top: 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .recruit-form__submit {
    margin-top: 1.875rem;
  }
}
.recruit-form__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 2.5rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 3.125rem;
  color: #14141E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recruit-form__submit-btn {
    padding: 0.75rem 1.875rem;
    font-size: 0.875rem;
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .recruit-form__submit-btn:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff;
  }
}
.recruit-form__submit-btn:focus {
  outline: none;
}
.recruit-form__submit-btn:active {
  transform: scale(0.98);
}
.recruit-form__submit-btn-text {
  flex-shrink: 0;
}
.recruit-form .wpcf7 .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.recruit-form .wpcf7-response-output {
  margin-top: 1.25rem;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.recruit-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border: 0.0625rem solid #28a745;
  color: #155724;
  background-color: #d4edda;
}
.recruit-form .wpcf7-response-output.wpcf7-validation-errors, .recruit-form .wpcf7-response-output.wpcf7-mail-sent-ng, .recruit-form .wpcf7-response-output.wpcf7-aborted {
  border: 0.0625rem solid #dc3545;
  color: #721c24;
  background-color: #f8d7da;
}
.recruit-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #dc3545;
}

.contact-form {
  background-color: #f5f5f0;
  padding: 9.375rem 1.25rem;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .contact-form {
    padding: 6.25rem 1.25rem;
  }
}
.contact-form__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.contact-form__content {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 5rem;
}
@media (max-width: 767px) {
  .contact-form__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .contact-form__left {
    order: 1;
  }
}
.contact-form__intro {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .contact-form__intro {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
.contact-form__intro-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin: 0 0 1.25rem 0;
}
@media (max-width: 767px) {
  .contact-form__intro-text {
    font-size: 0.8125rem;
    line-height: 1.9;
    margin-bottom: 0.9375rem;
  }
}
.contact-form__intro-note {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin: 0 0 1.875rem 0;
}
@media (max-width: 767px) {
  .contact-form__intro-note {
    font-size: 0.8125rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
  }
}
.contact-form__intro-link {
  color: #343a40;
  text-decoration: underline;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .contact-form__intro-link:hover {
    opacity: 0.7;
  }
}
.contact-form__recruit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 0.9375rem 1.875rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 3.125rem;
  text-decoration: none;
  color: #14141E;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact-form__recruit-btn {
    padding: 0.75rem 1.5625rem;
    font-size: 0.875rem;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact-form__recruit-btn:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff;
  }
  .contact-form__recruit-btn:hover .contact-form__recruit-btn-arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .contact-form__recruit-btn:hover .contact-form__recruit-btn-arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.contact-form__recruit-btn-text {
  flex-shrink: 0;
}
.contact-form__recruit-btn-arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact-form__recruit-btn-arrow {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.contact-form__recruit-btn-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.contact-form__recruit-btn-arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.contact-form__recruit-btn-arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}
@media (max-width: 767px) {
  .contact-form__right {
    order: 2;
  }
}
.contact-form__form {
  width: 100%;
}
.contact-form__field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .contact-form__field {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5625rem;
  }
}
.contact-form__field--checkbox {
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .contact-form__field--checkbox {
    margin-bottom: 1.875rem;
  }
}
.contact-form__label {
  display: block;
  margin-bottom: 0;
  position: relative;
  min-width: 7.5rem;
  padding-top: 0.75rem;
}
@media (max-width: 767px) {
  .contact-form__label {
    margin-bottom: 0.5rem;
    min-width: auto;
    padding-top: 0;
  }
}
.contact-form__label-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
}
@media (max-width: 767px) {
  .contact-form__label-text {
    font-size: 0.8125rem;
    display: inline-block;
    margin-right: 0.5rem;
  }
}
.contact-form__label-en {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  color: rgba(52, 58, 64, 0.6);
  font-family: "Red Hat Display", sans-serif;
  display: block;
  margin-top: 0.125rem;
}
@media (max-width: 767px) {
  .contact-form__label-en {
    font-size: 0.6875rem;
    display: inline-block;
    margin-top: 0;
  }
}
.contact-form__required {
  color: #dc3545;
  font-size: 0.4375rem;
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 0;
}
@media (max-width: 767px) {
  .contact-form__required {
    font-size: 5px;
  }
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 0.25rem;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}
@media (max-width: 767px) {
  .contact-form__input, .contact-form__textarea {
    font-size: 0.8125rem;
    padding: 0.625rem 0.75rem;
  }
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #343a40;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: rgba(52, 58, 64, 0.4);
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: rgba(52, 58, 64, 0.4);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 7.5rem;
}
@media (max-width: 767px) {
  .contact-form__textarea {
    min-height: 6.25rem;
  }
}
.contact-form__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form__checkbox-label {
    gap: 0.5rem;
  }
}
.contact-form__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-top: 0.125rem;
  cursor: pointer;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: 0.125rem solid rgba(52, 58, 64, 0.3);
  border-radius: 0.25rem;
  position: relative;
  transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-form__checkbox {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.0625rem;
  }
}
.contact-form__checkbox:checked {
  border-color: #343a40;
  background-color: #343a40;
}
.contact-form__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.375rem;
  height: 0.625rem;
  border: solid #ffffff;
  border-width: 0 0.125rem 0.125rem 0;
}
@media (max-width: 767px) {
  .contact-form__checkbox:checked::after {
    width: 0.3125rem;
    height: 0.5rem;
  }
}
.contact-form__checkbox:focus {
  outline: none;
}
.contact-form__checkbox-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  flex: 1;
}
@media (max-width: 767px) {
  .contact-form__checkbox-text {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}
.contact-form__privacy-link {
  color: #343a40;
  text-decoration: underline;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .contact-form__privacy-link:hover {
    opacity: 0.7;
  }
}
.contact-form__error {
  display: block;
  color: #dc3545;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 0.3125rem;
}
@media (max-width: 767px) {
  .contact-form__error {
    font-size: 0.6875rem;
    margin-top: 0.25rem;
  }
}
.contact-form__submit {
  margin-top: 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-form__submit {
    margin-top: 1.875rem;
  }
}
.contact-form__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 2.5rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 3.125rem;
  color: #14141E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact-form__submit-btn {
    padding: 0.75rem 1.875rem;
    font-size: 0.875rem;
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact-form__submit-btn:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff;
  }
}
.contact-form__submit-btn:focus {
  outline: none;
}
.contact-form__submit-btn:active {
  transform: scale(0.98);
}
.contact-form__submit-btn-text {
  flex-shrink: 0;
}
.contact-form .wpcf7 .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.contact-form .wpcf7-response-output {
  margin-top: 1.25rem;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border: 0.0625rem solid #28a745;
  color: #155724;
  background-color: #d4edda;
}
.contact-form .wpcf7-response-output.wpcf7-validation-errors, .contact-form .wpcf7-response-output.wpcf7-mail-sent-ng, .contact-form .wpcf7-response-output.wpcf7-aborted {
  border: 0.0625rem solid #dc3545;
  color: #721c24;
  background-color: #f8d7da;
}
.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #dc3545;
}

.privacy-policy {
  background-color: #f5f5f0;
  padding: 9.375rem 1.25rem;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .privacy-policy {
    padding: 6.25rem 1.25rem;
  }
}
.privacy-policy__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.privacy-policy__content {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 5rem;
}
@media (max-width: 767px) {
  .privacy-policy__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .privacy-policy__sidebar {
    order: 1;
  }
}
.privacy-policy__title-divider {
  width: 1.875rem;
  height: 0.0625rem;
  background-color: #343a40;
  margin: 0.625rem 0 0.3125rem 0;
}
@media (max-width: 767px) {
  .privacy-policy__title-divider {
    width: 1.25rem;
    margin: 0.5rem 0 0.25rem 0;
  }
}
.privacy-policy__contact-text {
  margin-top: 2.5rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .privacy-policy__contact-text {
    margin-top: 1.875rem;
    margin-bottom: 1.25rem;
  }
}
.privacy-policy__contact-note {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767px) {
  .privacy-policy__contact-note {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}
.privacy-policy__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 0.9375rem 1.875rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 3.125rem;
  text-decoration: none;
  color: #14141E;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .privacy-policy__contact-btn {
    padding: 0.75rem 1.5625rem;
    font-size: 0.875rem;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .privacy-policy__contact-btn:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff;
  }
  .privacy-policy__contact-btn:hover .privacy-policy__contact-btn-arrow-img--current {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
  }
  .privacy-policy__contact-btn:hover .privacy-policy__contact-btn-arrow-img--next {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.privacy-policy__contact-btn-text {
  flex-shrink: 0;
}
.privacy-policy__contact-btn-arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .privacy-policy__contact-btn-arrow {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.privacy-policy__contact-btn-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%);
}
.privacy-policy__contact-btn-arrow-img--current {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.privacy-policy__contact-btn-arrow-img--next {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}
@media (max-width: 767px) {
  .privacy-policy__main {
    order: 2;
  }
}
.privacy-policy__body {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .privacy-policy__body {
    font-size: 0.8125rem;
    line-height: 1.9;
  }
}
.privacy-policy__section {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .privacy-policy__section {
    margin-bottom: 1.875rem;
  }
}
.privacy-policy__section:last-of-type {
  margin-bottom: 0;
}
.privacy-policy__section-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 0 1.25rem 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .privacy-policy__section-title {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
  }
}
.privacy-policy__paragraph {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin: 0 0 1.25rem 0;
}
@media (max-width: 767px) {
  .privacy-policy__paragraph {
    font-size: 0.8125rem;
    line-height: 1.9;
    margin-bottom: 0.9375rem;
  }
}
.privacy-policy__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  padding-left: 1.25rem;
}
@media (max-width: 767px) {
  .privacy-policy__list {
    margin: 0.9375rem 0;
    padding-left: 0.9375rem;
  }
}
.privacy-policy__list-item {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #343a40;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin-bottom: 0.9375rem;
  position: relative;
  padding-left: 1.25rem;
}
@media (max-width: 767px) {
  .privacy-policy__list-item {
    font-size: 0.8125rem;
    line-height: 1.9;
    margin-bottom: 0.75rem;
    padding-left: 0.9375rem;
  }
}
.privacy-policy__list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #343a40;
}
.privacy-policy__list-item:last-child {
  margin-bottom: 0;
}
.privacy-policy__list-note {
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
  font-weight: 400;
  color: rgba(52, 58, 64, 0.8);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  margin: 0.625rem 0 0 0;
  padding-left: 1.25rem;
  font-style: italic;
}
@media (max-width: 767px) {
  .privacy-policy__list-note {
    font-size: 0.75rem;
    line-height: 1.9;
    margin-top: 0.5rem;
    padding-left: 0.9375rem;
  }
}
.privacy-policy__external-link {
  color: #343a40;
  text-decoration: underline;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) and (pointer: fine) {
  .privacy-policy__external-link:hover {
    opacity: 0.7;
  }
}
.privacy-policy__back-top {
  margin-top: 3.75rem;
  text-align: center;
}
@media (max-width: 767px) {
  .privacy-policy__back-top {
    margin-top: 2.5rem;
  }
}
.privacy-policy__back-top-btn {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0.9375rem;
  padding: 0.9375rem 1.875rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(52, 58, 64, 0.2);
  border-radius: 3.125rem;
  text-decoration: none;
  color: #14141E;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .privacy-policy__back-top-btn {
    padding: 0.75rem 1.5625rem;
    font-size: 0.875rem;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .privacy-policy__back-top-btn:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #ffffff;
  }
  .privacy-policy__back-top-btn:hover .privacy-policy__back-top-btn-arrow-img--current {
    transform: translateY(-50%) translateX(300%) rotate(180deg);
    opacity: 0;
  }
  .privacy-policy__back-top-btn:hover .privacy-policy__back-top-btn-arrow-img--next {
    transform: translateY(-50%) translateX(0) rotate(180deg);
    opacity: 1;
  }
}
.privacy-policy__back-top-btn-text {
  flex-shrink: 0;
}
.privacy-policy__back-top-btn-arrow {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .privacy-policy__back-top-btn-arrow {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.privacy-policy__back-top-btn-arrow-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-50%) translateX(-100%) rotate(180deg);
}
.privacy-policy__back-top-btn-arrow-img--current {
  transform: translateY(-50%) translateX(0) rotate(180deg);
  opacity: 1;
}
.privacy-policy__back-top-btn-arrow-img--next {
  transform: translateY(-50%) translateX(-100%) rotate(180deg);
  opacity: 0;
}

[pc-only] {
  display: block !important;
}

[sp-only] {
  display: none !important;
}

@media (max-width: 767px) {
  [pc-only] {
    display: none !important;
  }
  [sp-only] {
    display: block !important;
  }
}
/*# sourceMappingURL=main.css.map */
