@charset "UTF-8";
/* ===============================================
# pxをremに変換
$px 文字サイズ
$basepx 基準となるピクセル数
=============================================== */
/* ===============================================
# line-heightを計算する
$pixels 文字サイズ
$height figma上のline-height
=============================================== */
:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-dark-navy1: #0F1A39;
  --color-dark-navy2: #030E2D;
  --color-navy1: #101F4A;
  --color-navy2: #0D1529;
  --color-navy3: #141B2F;
  --color-navy4: #142A64;
  --color-navy5: #0F1D45;
  --color-navy6: #0F2870;
  --color-text: #222222;
  --color-line: #CDD0DC;
  --color-light-gray: #F2F3F4;
  --color-lavender1:#EDEFF7;
  --color-lavender2:#EDEFF5;
  --color-lavender3:#EAEFFE;
  --color-orange1:#ED9A00;
  --color-orange2:#FEB52C;
  --color-orange3:#EB9100;
  --color-orange4:#FAA215;
  --color-orange5: #FEA500;
  --color-green:#06C755;
  --color-red: #FF0000;
  --color-yellow: #FFCC00;
  --font-noto-sans: "Noto Sans", sans-serif;
  --font-oswald: "Oswald", sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-noto-sans);
  font-weight: 400;
  color: var(--color-text);
  overflow-x: hidden;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/*
html {
  scroll-behavior: smooth;
}
*/
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  height: 5.125rem;
  transition: all 0.5s ease;
  background-color: var(--color-dark-navy1);
}
body.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}
@media screen and (max-width: 750px) {
  body.admin-bar .header {
    top: 0;
  }
}
@media screen and (max-width: 750px) {
  .header {
    height: 3.875rem;
    background: rgba(15, 26, 57, 0.94);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 3.75rem;
  height: inherit;
}
@media screen and (max-width: 1440px) {
  .header__inner {
    padding: 0 0.9375rem;
  }
}
.header__title {
  display: flex;
  align-items: center;
  margin-right: auto;
  height: inherit;
  z-index: 101;
}

.header__logo {
  width: 5.625rem;
}
@media screen and (max-width: 750px) {
  .header__logo {
    width: 5rem;
  }
}
@media screen and (max-width: 430px) {
  .header__logo {
    width: 4.375rem;
  }
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
  flex-wrap: wrap;
  column-gap: 3.125rem;
  margin-left: 1.875rem;
}
@media screen and (max-width: 1440px) {
  .header__items {
    column-gap: clamp(1.875rem, -4.375rem + 8.33vw, 3.125rem);
  }
}
@media screen and (max-width: 1200px) {
  .header__items {
    display: none;
  }
}

.header__item {
  height: inherit;
}

.header__link {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .header__link {
    font-size: 3.4666666667vw;
  }
}
.header__link {
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  height: inherit;
  transition: all 0.3s ease;
}

.header__button-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 3.125rem;
}
@media screen and (max-width: 1440px) {
  .header__button-wrap {
    margin-left: clamp(1.875rem, -4.375rem + 8.33vw, 3.125rem);
  }
}
@media screen and (max-width: 750px) {
  .header__button-wrap {
    display: none;
  }
}

.header__hamburger-wrap {
  display: none;
  width: 2.375rem;
  aspect-ratio: 1/1;
  z-index: 101;
}
@media screen and (max-width: 1200px) {
  .header__hamburger-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.9375rem;
  }
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.header__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2.375rem;
  height: 1.5rem;
}

.header__hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s;
}

.header__hamburger.is-active .header__hamburger-lines span:first-child {
  transform: translateY(10px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-lines span:last-child {
  transform: translateY(-12px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(15, 26, 57, 0.94);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.3s ease;
  padding: 7.5rem 2.5rem 6.25rem;
  z-index: 100;
  pointer-events: none;
}

.drawer.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__items {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.drawer__link {
  position: relative;
  font-size: 1.125rem;
}
@media screen and (max-width: 750px) {
  .drawer__link {
    font-size: 3.7333333333vw;
  }
}
.drawer__link {
  font-weight: 700;
  color: var(--color-white);
  padding-left: 1.125rem;
}

.drawer__link::before {
  position: absolute;
  content: "・";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.drawer__item a:hover {
  opacity: 0.7;
}

.drawer__button-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2.25rem;
  gap: 1.125rem;
}

.drawer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.875rem;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .drawer__button {
    font-size: 3.4666666667vw;
  }
}
.drawer__button {
  font-weight: 900;
  color: var(--color-white);
  border-radius: 6.25rem;
}
.drawer__button.drawer__button--line {
  background-color: var(--color-green);
}

.drawer__button-icon {
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
}
.drawer__button-icon.drawer__button-icon--line {
  background-image: url(../images/line-icon-w.svg);
}

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

/* パンくず */
.breadcrumb {
  margin-top: 1.25rem;
}

.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1rem 0.9375rem 0;
}
@media screen and (max-width: 750px) {
  .breadcrumb__inner {
    padding: 1rem 0.625rem 0;
    font-size: 0.75rem;
    row-gap: 0.5rem;
  }
}
@media screen and (max-width: 430px) {
  .breadcrumb__inner {
    font-size: 0.625rem;
  }
}

.breadcrumb a {
  color: var(--color-text);
}

.breadcrumb .current-item {
  font-weight: 700;
  color: var(--color-navy1);
}

.breadcrumb__between::before {
  content: ">";
  color: var(--color-navy1);
  display: inline-block;
}

.breadcrumb span[property=name] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.c-button {
  position: relative;
  background-color: var(--color-orange5);
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .c-button {
    font-size: 3.4666666667vw;
  }
}
.c-button {
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  cursor: pointer;
  text-decoration: none;
  padding: 0.75rem 1.875rem;
  border-radius: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-button.c-button--line {
  background: var(--color-green);
}
.c-button.c-button--border {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  background-color: transparent;
  border: 1px solid var(--color-white);
  padding: 0.75rem 2.1875rem;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.c-button__search {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.c-button__mail {
  width: 1.875rem;
  height: 1.875rem;
  object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 430px) {
  .c-button__mail {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.c-button__line {
  width: 2.1875rem;
  height: 2.1875rem;
  object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 430px) {
  .c-button__line {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.c-button__text {
  margin-left: 0.5rem;
}

.c-button__arrow {
  width: 2.875rem;
  height: 2.875rem;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.875rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 750px) {
  .c-button__arrow {
    width: 2rem;
    height: 2rem;
    margin-left: 1.25rem;
  }
}
.c-button__arrow.c-button__arrow--bgyellow {
  background-color: var(--color-yellow-soft);
}
.c-button__arrow.c-button__arrow--blue {
  background-color: var(--color-secondary);
  width: 1.875rem;
  height: 1.875rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 750px) {
  .c-button__arrow.c-button__arrow--blue {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.c-button__arrow img {
  width: 0.8125rem;
  height: 0.625rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer {
  background-color: var(--color-dark-navy2);
  padding: 3.75rem 0.9375rem 6.25rem;
}
@media screen and (max-width: 750px) {
  .footer {
    padding: 2.5rem 0.9375rem 8.75rem;
  }
}

.footer__inner {
  max-width: 90.2%;
  width: 100%;
  margin-inline: auto;
}

.footer__logo {
  width: 9.6875rem;
}
@media screen and (max-width: 430px) {
  .footer__logo {
    width: 6.25rem;
  }
}

.footer__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.875rem;
}
@media screen and (max-width: 750px) {
  .footer__content {
    flex-direction: column;
    gap: 2.8125rem;
  }
}
@media screen and (max-width: 430px) {
  .footer__content {
    gap: 1.875rem;
  }
}

.footer__left {
  min-width: 200px;
}
@media screen and (max-width: 430px) {
  .footer__left {
    min-width: unset;
  }
}

.footer__right {
  flex: 1;
}

.footer__company {
  margin-top: 1.3125rem;
}

.footer__company-name,
.footer__postcode,
.footer__company-address,
.footer__company-tel {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .footer__company-name,
  .footer__postcode,
  .footer__company-address,
  .footer__company-tel {
    font-size: 3.4666666667vw;
  }
}
.footer__company-name,
.footer__postcode,
.footer__company-address,
.footer__company-tel {
  line-height: 1.6;
  color: var(--color-white);
}

.footer__company-name {
  font-weight: 700;
}

.footer__postcode,
.footer__company-address,
.footer__company-tel {
  font-weight: 500;
}

.footer__company-tel a {
  color: var(--color-white);
}

.footer__nav-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  column-gap: 3.125rem;
  row-gap: 1rem;
  margin-top: 4.75rem;
}
@media screen and (max-width: 750px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.footer__item {
  position: relative;
}

.footer__item-link {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .footer__item-link {
    font-size: 3.4666666667vw;
  }
}
.footer__item-link {
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-white);
}

.footer__button-list {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.5625rem;
}
@media screen and (max-width: 750px) {
  .footer__button-list {
    flex-direction: column;
  }
}

.footer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.875rem;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .footer__button {
    font-size: 3.4666666667vw;
  }
}
.footer__button {
  font-weight: 900;
  color: var(--color-white);
  border-radius: 6.25rem;
}
.footer__button.footer__button--line {
  background-color: var(--color-green);
}
.footer__button.footer__button--mail {
  background-color: var(--color-orange5);
}

.footer__button-icon {
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.375rem;
  height: 1.375rem;
}
.footer__button-icon.footer__button-icon--line {
  background-image: url(../images/line-icon-w.svg);
}

.page-top {
  display: block;
  position: fixed;
  bottom: -100px;
  right: 0;
  background-color: rgba(3, 14, 45, 0.7);
  cursor: pointer;
  opacity: 0;
  width: 3.75rem;
  height: 3.75rem;
  z-index: 10;
  transition: opacity 0.5s ease, bottom 0.5s ease;
}
@media screen and (max-width: 750px) {
  .page-top {
    width: 2.5rem;
    height: 2.5rem;
    right: 4%;
  }
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  height: 1.25rem;
  width: 1.25rem;
}
@media screen and (max-width: 750px) {
  .page-top::after {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.page-top.active {
  bottom: 0;
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .page-top.active {
    bottom: 5rem;
  }
}

/*メニューをページ下部に固定*/
.fixed-sp-menu {
  position: sticky;
  width: 100%;
  bottom: 0px;
  display: none;
  z-index: 99;
  text-align: center;
}
.fixed-sp-menu .fixed-sp-menu__items {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.fixed-sp-menu .fixed-sp-menu__item {
  width: 50vw;
}
.fixed-sp-menu .fixed-sp-menu__item + .fixed-sp-menu__item {
  margin-left: 0.1875rem;
}
.fixed-sp-menu .fixed-sp-menu__link {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.0625rem 0;
  color: var(--color-white);
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .fixed-sp-menu .fixed-sp-menu__link {
    font-size: 3.4666666667vw;
  }
}
.fixed-sp-menu .fixed-sp-menu__link {
  font-weight: 700;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.fixed-sp-menu .fixed-sp-menu__link.fixed-sp-menu__link--line {
  background-color: var(--color-green);
}
.fixed-sp-menu .fixed-sp-menu__link.fixed-sp-menu__link--mail {
  background-color: var(--color-orange5);
}
.fixed-sp-menu .fixed-sp-menu__icon {
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
}
.fixed-sp-menu .fixed-sp-menu__icon.fixed-sp-menu__icon--line {
  background-image: url(../images/line-icon-w.svg);
}
.fixed-sp-menu .fixed-sp-menu__icon.fixed-sp-menu__icon--mail {
  background-image: url(../images/mail-icon-w.svg);
}
.fixed-sp-menu .fixed-sp-menu_text {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1538461538;
  flex: 1;
}
@media screen and (max-width: 750px) {
  .fixed-sp-menu .fixed-sp-menu_text {
    font-size: clamp(0.75rem, 0.114rem + 3.18vw, 1.625rem);
  }
}

.floating-entry {
  position: fixed;
  z-index: 100;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.floating-entry.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.floating-entry--pc {
  right: 3.75rem;
  bottom: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10.875rem;
  height: 10.875rem;
  border-radius: 50%;
  background-color: var(--color-yellow);
}
@media screen and (max-width: 1200px) {
  .floating-entry--pc {
    width: 8.125rem;
    height: 8.125rem;
  }
}
@media screen and (max-width: 750px) {
  .floating-entry--pc {
    display: none;
  }
}

.floating-entry__truck-icon {
  width: 3.375rem;
  aspect-ratio: 27/13;
  background-image: url(../images/dash-track-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  .floating-entry__truck-icon {
    width: 2rem;
  }
}

.floating-entry__text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.625rem;
}

.floating-entry__text-top {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-navy6);
}
@media screen and (max-width: 1200px) {
  .floating-entry__text-top {
    font-size: 0.875rem;
  }
}

.floating-entry__text-main {
  font-size: 1.4375rem;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: var(--color-navy6);
}
@media screen and (max-width: 1200px) {
  .floating-entry__text-main {
    font-size: 1rem;
  }
}

.floating-entry__en {
  font-family: var(--font-oswalt);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-white);
}
@media screen and (max-width: 1200px) {
  .floating-entry__en {
    font-size: 0.75rem;
  }
}

.floating-entry--sp {
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: calc(100vw - 2.5rem);
  max-width: 86vw;
  background-color: var(--color-yellow);
  border-radius: 50px;
  box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.35);
  padding: clamp(1.375rem, 1.003rem + 1.86vw, 1.875rem) 1.5rem 1.1875rem;
  gap: 0.375rem;
}
@media screen and (max-width: 750px) {
  .floating-entry--sp {
    display: flex;
  }
}

.floating-entry__badge {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background-color: var(--color-white);
  border-radius: 3.125rem;
  padding: 0.25rem 1rem;
  border: 2px solid var(--color-yellow);
  width: 65%;
  transform: translate(-50%, -40%);
}

.floating-entry__badge-icon {
  width: 4.2666666667vw;
  aspect-ratio: 1/1;
  background-image: url(../images/clock-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.floating-entry__badge-text {
  font-size: 0.75rem;
}
@media screen and (max-width: 750px) {
  .floating-entry__badge-text {
    font-size: 2.9333333333vw;
  }
}
.floating-entry__badge-text {
  font-weight: 700;
  line-height: 1.26;
  color: var(--color-text);
}

.floating-entry__cta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .floating-entry__cta {
    font-size: 3.4666666667vw;
  }
}
.floating-entry__cta {
  font-weight: 700;
  line-height: 1;
  color: var(--color-navy6);
}

.floating-entry__arrow {
  position: relative;
  color: var(--color-navy6);
}

.floating-entry__arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* ページネーション */
.pagination {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5625rem;
}

.pagination__arrow {
  color: var(--color-navy1);
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-navy1);
  background-color: var(--color-white);
  border: 1px solid var(--color-navy1);
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers:hover i {
  opacity: 1;
  background-color: var(--color-navy1);
  color: var(--color-white);
}

.page-numbers.current {
  color: var(--color-white);
  background-color: var(--color-navy1);
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
  opacity: 1;
  background-color: var(--color-navy1);
  color: var(--color-white);
}

/****************************************/
/* スクロールヒント */
/****************************************/
.scroll-hint-icon-wrap {
  display: none;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
@media screen and (max-width: 1024px) {
  .scroll-hint-icon-wrap {
    display: block !important;
  }
}

.scroll-hint-icon {
  top: 0;
  opacity: 1 !important;
}

.scroll-hint-text {
  display: block !important;
  opacity: 1 !important;
}

.scroll-hint-icon-wrap.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.u-sp-only {
  display: none;
}
@media screen and (max-width: 750px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 750px) {
  .u-pc-only {
    display: none;
  }
}

.u-marker {
  background: linear-gradient(transparent 60%, #FEB52C 60%);
}

.u-orange {
  color: var(--color-orange2);
}

.u-bold {
  font-weight: 700;
}

/****************************************/
/****************************************/
.top-mv {
  position: relative;
  margin-top: 5.125rem;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  body.admin-bar .top-mv {
    margin-top: 16px;
  }
}
@media screen and (max-width: 750px) {
  .top-mv {
    margin-top: 3.875rem;
  }
}

.top-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.53);
  z-index: 1;
}

.top-mv__deco-text {
  position: absolute;
  bottom: 5%;
  left: -1.875rem;
  transform: translateY(40%);
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 11.25vw;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .top-mv__deco-text {
    writing-mode: vertical-rl;
    top: -0.5rem;
    bottom: auto;
    left: -0.5rem;
    transform: none;
    font-size: 20vw;
  }
}

.top-mv__video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  user-select: none;
}
@media screen and (max-width: 750px) {
  .top-mv__video {
    aspect-ratio: 9/16;
  }
}

.top-mv__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  left: 4.4375rem;
  bottom: 17%;
}
@media screen and (max-width: 1200px) {
  .top-mv__content {
    left: clamp(1.875rem, -2.307rem + 8.91vw, 4.375rem);
  }
}
@media screen and (max-width: 750px) {
  .top-mv__content {
    left: 2.5%;
    bottom: 24%;
  }
}

.top-mv__title {
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .top-mv__title {
    font-size: 6.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__title {
    font-size: 11.4666666667vw;
  }
}

.top-mv__title-sub {
  display: block;
  background-color: var(--color-white);
  color: var(--color-navy4);
  padding: 0.125rem 0.5rem;
  box-shadow: unset;
  font-size: 2.3125rem;
  width: fit-content;
  font-weight: 700;
  margin-top: 0.875rem;
}
@media screen and (max-width: 1200px) {
  .top-mv__title-sub {
    font-size: 3.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__title-sub {
    font-size: 5.3333333333vw;
  }
}
.top-mv__title-sub .highlight {
  color: var(--color-orange1);
}
.top-mv__title-sub .text-lg {
  font-size: 3.25rem;
}
@media screen and (max-width: 1200px) {
  .top-mv__title-sub .text-lg {
    font-size: 4.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__title-sub .text-lg {
    font-size: 7.4666666667vw;
  }
}

.top-mv__feature-list {
  display: flex;
  align-items: stretch;
  gap: 0.8125rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 750px) {
  .top-mv__feature-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

.top-mv__feature-item {
  position: relative;
  background: rgba(74, 74, 74, 0.7);
  border: 1px solid var(--color-white);
  padding: 0.75rem;
  padding-left: 2.125rem;
  color: var(--color-white);
  font-size: 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-mv__feature-item {
    font-size: 4vw;
  }
}
.top-mv__feature-item {
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .top-mv__feature-item {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__feature-item {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .top-mv__feature-item {
    font-size: 4vw;
  }
}

.top-mv__feature-item::before {
  position: absolute;
  content: "";
  background-image: url(../images/circle-check-icon-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.1875rem;
  height: 1.1875rem;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
}

/****************************************/
/****************************************/
.top-about {
  position: relative;
  background-color: var(--color-lavender1);
  padding: 6.25rem 0.9375rem 0;
  position: relative;
  isolation: isolate;
  scroll-margin-top: 5.125rem;
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .top-about {
    padding: 2.5rem 0.9375rem 0;
  }
}

.top-about::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 75.6%;
  height: 14.8125rem;
  background: var(--color-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-about::before {
    width: 69.3%;
    height: 3.03125rem;
  }
}

.top-about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24.4%;
  height: 2.125rem;
  background: #E4E6EF;
  clip-path: polygon(0 0, 100% 100%, 0 100%, 0% 100%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-about::after {
    width: 30.6%;
    height: 1.34375rem;
  }
}

.top-about__inner {
  position: relative;
  max-width: 77.5rem;
  width: 100%;
  margin-inline: auto;
  z-index: 2;
}

.top-about__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3.125rem;
}
@media screen and (max-width: 1200px) {
  .top-about__content {
    gap: clamp(1.875rem, -5.014rem + 14.35vw, 5.75rem);
  }
}
@media screen and (max-width: 750px) {
  .top-about__content {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
  }
}

.top-about__left {
  width: 51.6%;
}
@media screen and (max-width: 750px) {
  .top-about__left {
    width: 100%;
    margin-left: 0;
  }
}

.top-about__subtitle {
  display: inline;
  background-color: var(--color-navy3);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.375rem;
  line-height: 2.2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 750px) {
  .top-about__subtitle {
    font-size: 5.0666666667vw;
    line-height: 2.4;
  }
}

.top-about__subtitle + .top-about__text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .top-about__subtitle + .top-about__text {
    margin-top: 1.25rem;
  }
}

.top-about__text + .top-about__text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-about__text + .top-about__text {
    margin-top: 0.75rem;
  }
}

.top-about__3pr-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .top-about__3pr-items {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 750px) {
  .top-about__3pr-items {
    margin-top: 1.5rem;
    gap: 0.5625rem;
  }
}

.top-about__3pr-item {
  background-image: url(../images/top/bg-3pr-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 7.625rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 750px) {
  .top-about__3pr-item {
    width: 33.3%;
    aspect-ratio: 1/1;
  }
}

.top-about__3pr-icon {
  background-image: url(../images/track-icon-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 750px) {
  .top-about__3pr-icon {
    width: 5.3333333333vw;
  }
}

.top-about__3pr-text {
  color: var(--color-white);
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .top-about__3pr-text {
    font-size: 3.4666666667vw;
  }
}
.top-about__3pr-text {
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
  padding-bottom: 1.5625rem;
}
@media screen and (max-width: 1024px) {
  .top-about__3pr-text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .top-about__3pr-text {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 750px) {
  .top-about__3pr-text {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .top-about__3pr-text {
    font-size: 3.3333333333vw;
  }
}

.top-about__3pr-items + .top-about__text {
  margin-top: 0.625rem;
}
@media screen and (max-width: 750px) {
  .top-about__3pr-items + .top-about__text {
    margin-top: 1.25rem;
  }
}

.top-about__right {
  width: 49%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 750px) {
  .top-about__right {
    width: 100%;
  }
}

.top-about__right-top {
  padding-right: 3.75rem;
}

.top-about__right-top {
  width: 81%;
}
@media screen and (max-width: 750px) {
  .top-about__right-top {
    width: 100%;
    padding-right: 0;
  }
}

.top-about__right-bottom {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 750px) {
  .top-about__right-bottom {
    margin-top: 1.0625rem;
  }
}

/****************************************/
/****************************************/
.top-feature {
  position: relative;
  background-color: var(--color-navy2);
  padding: 6.25rem 0.9375rem 8.25rem;
}
@media screen and (max-width: 750px) {
  .top-feature {
    padding: 2.5rem 0.9375rem 6.25rem;
  }
}

.top-feature::after {
  content: "";
  position: absolute;
  bottom: -0.03125rem;
  left: 0;
  width: 80%;
  height: 7.125rem;
  background: var(--color-white);
  clip-path: polygon(100% 100%, 0 0, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-feature::after {
    height: 2.125rem;
  }
}

.top-feature__blend-left {
  content: "";
  position: absolute;
  top: -0.03125rem;
  left: 0;
  width: 24.4%;
  height: 4.8125rem;
  background: #E4E6EF;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-feature__blend-left {
    width: 30.6%;
    height: 1.34375rem;
  }
}

.top-feature__blend-right {
  position: absolute;
  content: "";
  top: -0.03125rem;
  right: 0;
  width: 75.6%;
  height: 6.8125rem;
  background: var(--color-white);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-feature__blend-right {
    width: 69.3%;
    height: 3.03125rem;
  }
}

.top-feature__content {
  margin-top: 3.125rem;
}
@media screen and (max-width: 750px) {
  .top-feature__content {
    margin-top: 0;
  }
}

.top-feature__text {
  text-align: center;
}

.top-feature__text + .top-feature__text {
  margin-top: 1.25rem;
}

.top-feature__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 1.5625rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .top-feature__cards {
    gap: 1.25rem;
  }
}

.top-feature__card {
  width: calc((100% - 6.25rem) / 5);
  background-color: #FAFAFA;
  padding: 1.875rem 0.6875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-feature__card {
    width: calc((100% - 2.5rem) / 3);
  }
}
@media screen and (max-width: 750px) {
  .top-feature__card {
    padding: 1.25rem 0.5rem;
    width: calc((100% - 1.5625rem) / 2);
  }
}

.top-feature-card__img {
  width: 3.8125rem;
}

.top-feature-card__title {
  background-color: var(--color-navy3);
  padding: 0.3125rem 0.4375rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-feature-card__title {
    font-size: 4vw;
  }
}
.top-feature-card__title {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-feature-card__title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .top-feature-card__title {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 430px) {
  .top-feature-card__title {
    padding: 0.1875rem 0.25rem;
  }
}

.top-feature-card__text {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .top-feature-card__text {
    font-size: 3.4666666667vw;
  }
}
.top-feature-card__text {
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-top: 0.625rem;
}

/****************************************/
/****************************************/
.top-merit {
  position: relative;
  background-color: var(--color-lavender1);
  padding: 5rem 0.9375rem 11.875rem;
  scroll-padding-top: 5.125rem;
}
@media screen and (max-width: 750px) {
  .top-merit {
    padding: 3.75rem 0.9375rem 7.5rem;
  }
}

.top-merit::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 100%;
  height: 9rem;
  background: var(--color-white);
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-merit::after {
    height: 2.8125rem;
  }
}

.top-merit__blend-left {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 80%;
  height: 7.125rem;
  background: var(--color-white);
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-merit__blend-left {
    height: 1.875rem;
  }
}

.top-merit__blend-right {
  position: absolute;
  content: "";
  top: -0.04375rem;
  right: 0;
  width: 20%;
  height: 1.8125rem;
  background: var(--color-navy2);
  clip-path: polygon(100% 100%, 100% 0, 0 0);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-merit__blend-right {
    height: 0.625rem;
    width: 23%;
  }
}

.top-merit__content {
  margin-top: 0.625rem;
}
@media screen and (max-width: 750px) {
  .top-merit__content {
    margin-top: 0;
  }
}

.top-merit__text {
  text-align: center;
}

.top-merit__text + .top-merit__text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-merit__text + .top-merit__text {
    margin-top: 0.75rem;
  }
}

.top-merit__list {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
  margin-top: 3.125rem;
}

.top-merit__item {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .top-merit__item {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 750px) {
  .top-merit__item {
    flex-direction: column-reverse;
  }
}

.top-merit__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .top-merit__item:nth-child(even) {
    flex-direction: column-reverse;
  }
}

.top-merit-item__img-wrap {
  width: 44.4%;
  filter: drop-shadow(12px 12px 0 var(--color-navy2));
}
@media screen and (max-width: 1024px) {
  .top-merit-item__img-wrap {
    width: 33.4%;
  }
}
@media screen and (max-width: 750px) {
  .top-merit-item__img-wrap {
    width: 100%;
  }
}

.top-merit-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.top-merit-item__body {
  flex: 1;
}

.top-merit-item__number {
  font-family: var(--font-oswald);
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (max-width: 750px) {
  .top-merit-item__number {
    font-size: 3.2vw;
  }
}
.top-merit-item__number {
  line-height: 1;
  text-transform: uppercase;
  margin-top: 2.625rem;
}
@media screen and (max-width: 750px) {
  .top-merit-item__number {
    margin-top: 0;
  }
}

.top-merit-item__title {
  display: inline;
  background-color: var(--color-navy3);
  color: var(--color-white);
  font-size: 1.75rem;
}
@media screen and (max-width: 750px) {
  .top-merit-item__title {
    font-size: 5.8666666667vw;
  }
}
.top-merit-item__title {
  font-weight: 700;
  padding: 0.375rem;
  line-height: 2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-top: 0.25rem;
}
@media screen and (max-width: 750px) {
  .top-merit-item__title {
    line-height: 2.2;
  }
}

.top-merit-item__text {
  margin-top: 1.125rem;
}

/****************************************/
/****************************************/
.top-case {
  position: relative;
  background-color: var(--color-white);
  padding: 1.25rem 0.9375rem 9.3125rem;
  scroll-margin-top: 5.125rem;
}
@media screen and (max-width: 750px) {
  .top-case {
    padding: 1.25rem 0.9375rem 5rem;
  }
}

.top-case__content {
  margin-top: 0.625rem;
}

.top-case__text {
  text-align: center;
}

.top-case__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.125rem;
  gap: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .top-case__cards {
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 750px) {
  .top-case__cards {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
    gap: 1.875rem;
  }
}

.top-case__card {
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.16);
}

.top-case-card__img-wrap {
  position: relative;
  width: 100%;
}

.top-case-card__number {
  position: absolute;
  content: "";
  top: 1.25rem;
  left: 0;
  background-color: var(--color-navy1);
  color: var(--color-white);
  padding: 0.1875rem 0.375rem 0.1875rem 1.5625rem;
  font-size: 0.75rem;
}
@media screen and (max-width: 750px) {
  .top-case-card__number {
    font-size: 2.9333333333vw;
  }
}
.top-case-card__number {
  font-family: var(--font-oswald);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-case-card__number {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .top-case-card__number {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-case-card__number {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .top-case-card__number {
    font-size: 2.9333333333vw;
  }
}

.top-case-card__title {
  position: absolute;
  content: "";
  top: 2.625rem;
  left: 0;
  background-color: var(--color-navy1);
  color: var(--color-orange2);
  padding: 0.1875rem 0.375rem 0.1875rem 1.5625rem;
  font-size: 1.75rem;
}
@media screen and (max-width: 750px) {
  .top-case-card__title {
    font-size: 5.8666666667vw;
  }
}
.top-case-card__title {
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-case-card__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .top-case-card__title {
    font-size: 4vw;
  }
}
@media screen and (max-width: 750px) {
  .top-case-card__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .top-case-card__title {
    font-size: 5.8666666667vw;
  }
}

.top-case-card__body {
  padding: 1.25rem 1.5625rem 1.5625rem;
}

.top-case-card__subtitle {
  display: inline-block;
  background-color: var(--color-navy1);
  color: var(--color-white);
  padding: 0.3125rem;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .top-case-card__subtitle {
    font-size: 3.4666666667vw;
  }
}
.top-case-card__subtitle {
  font-weight: 700;
}

.top-case-card__text {
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
}

/****************************************/
/****************************************/
.top-work {
  position: relative;
  background-color: var(--color-lavender1);
  padding: 6.25rem 0.9375rem 7.5rem;
  scroll-margin-top: 5.125rem;
}
@media screen and (max-width: 750px) {
  .top-work {
    padding: 2.5rem 0.9375rem 5rem;
  }
}

.top-work .dt-container {
  position: relative;
}

.top-work .dt-container .dt-search {
  display: none;
}

.top-work .tablepress {
  min-width: 73.75rem;
  width: 100%;
}

.top-work .tablepress thead th {
  background-color: var(--color-navy1);
  border: none;
  color: var(--color-white);
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .top-work .tablepress thead th {
    font-size: 3.4666666667vw;
  }
}
.top-work .tablepress thead th {
  font-weight: 700;
  padding: 1.125rem;
}
@media screen and (max-width: 750px) {
  .top-work .tablepress thead th {
    padding: 0.75rem;
  }
}

.top-work .tablepress thead th:hover {
  background-color: var(--color-navy1);
  color: var(--color-white);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.top-work .tablepress td {
  border: none;
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .top-work .tablepress td {
    font-size: 3.4666666667vw;
  }
}
.top-work .tablepress td {
  font-weight: 500;
  color: var(--color-text);
  padding: 1.125rem;
}
@media screen and (max-width: 750px) {
  .top-work .tablepress td {
    padding: 0.75rem;
  }
}

.top-work .tablepress tr th:not(:last-child),
.top-work .tablepress tr td:not(:last-child) {
  border-right: 2px solid #CDD0DC;
}

.top-work .tablepress .odd td {
  background-color: #F2F3F4;
}

.top-work .dt-container .dt-layout-cell.dt-layout-end {
  margin-right: auto;
}

.top-work .dt-container .dt-paging-button {
  font-family: var(--font-oswald);
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .top-work .dt-container .dt-paging-button {
    font-size: 3.4666666667vw;
  }
}
.top-work .dt-container .dt-paging-button {
  line-height: 1;
  border: none !important;
  height: 2.25rem !important;
  width: 2.25rem !important;
  background-color: var(--color-white) !important;
  color: var(--color-text) !important;
}

.top-work .dt-container .dt-paging .dt-paging-button.disabled {
  display: none !important;
}

.top-work .dt-container .dt-paging .dt-paging-button.previous,
.top-work .dt-container .dt-paging .dt-paging-button.next {
  font-size: 0.75rem;
}
@media screen and (max-width: 750px) {
  .top-work .dt-container .dt-paging .dt-paging-button.previous,
  .top-work .dt-container .dt-paging .dt-paging-button.next {
    font-size: 2.9333333333vw;
  }
}

.top-work .dt-container .dt-paging-button.current {
  background-color: var(--color-navy1) !important;
  color: var(--color-white) !important;
}

.top-work .dt-container .dt-paging nav {
  display: flex;
  gap: 0.5rem;
}

.top-work .dt-container .dt-paging .ellipsis {
  padding: 0 0.25rem;
}

.top-work .dt-container .dt-layout-table + .dt-layout-row {
  margin-top: 1.25rem;
}

.top-work .dt-container .tablepress caption {
  padding: 0.3125rem !important;
}

.top-work .dt-container .tablepress caption a {
  color: var(--color-navy1);
}

/****************************************/
/****************************************/
.top-recruit {
  background-color: var(--color-navy2);
  padding: 3.75rem 0.9375rem 7.5rem;
  scroll-margin-top: 5.125rem;
}
@media screen and (max-width: 750px) {
  .top-recruit {
    padding: 3.75rem 0.9375rem 3.75rem;
  }
}

.top-recruit__button {
  border: 1px solid var(--color-white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-white);
  margin-top: 3.125rem;
  width: fit-content;
  margin-inline: auto;
}

.top-recruit__button-text {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .top-recruit__button-text {
    font-size: 3.4666666667vw;
  }
}
.top-recruit__button-text {
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.top-recruit__button-icon {
  position: relative;
  color: var(--color-white);
}

.top-recruit__button-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/****************************************/
/****************************************/
.top-faq {
  padding: 3.75rem 0.9375rem;
  scroll-margin-top: 5.125rem;
}
@media screen and (max-width: 750px) {
  .top-faq {
    padding: 1.875rem 0.9375rem;
  }
}

.top-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.9375rem;
}

.top-faq__q-area {
  padding: 1.0625rem 1.5625rem 0.875rem;
  background-color: var(--color-navy3);
  display: flex;
  align-items: center;
  gap: 1.5625rem;
}
@media screen and (max-width: 750px) {
  .top-faq__q-area {
    gap: 1.25rem;
    padding: 0.875rem 1.25rem 0.75rem;
  }
}

.top-faq__label {
  font-family: var(--font-oswald);
  font-size: 1.125rem;
}
@media screen and (max-width: 750px) {
  .top-faq__label {
    font-size: 3.7333333333vw;
  }
}
.top-faq__label {
  font-weight: 700;
  line-height: 1.6;
}
.top-faq__label.top-faq__label--q {
  color: var(--color-orange2);
}
.top-faq__label.top-faq__label--a {
  color: var(--color-navy1);
}

.top-faq__question {
  color: var(--color-white);
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .top-faq__question {
    font-size: 3.4666666667vw;
  }
}
.top-faq__question {
  font-weight: 700;
  line-height: 1.6;
}

.top-faq__a-area {
  padding: 1.0625rem 1.5625rem;
  background-color: var(--color-light-gray);
  display: flex;
  align-items: flex-start;
  gap: 1.5625rem;
}
@media screen and (max-width: 750px) {
  .top-faq__a-area {
    gap: 1.25rem;
    padding: 0.9375rem 1.25rem;
  }
}

/****************************************/
/****************************************/
.top-flow {
  position: relative;
  background-color: var(--color-lavender1);
  padding: 7.5rem 0.9375rem 4.5rem;
}
@media screen and (max-width: 750px) {
  .top-flow {
    padding: 4.375rem 0.9375rem 3.75rem;
  }
}

.top-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.0625rem;
  background: var(--color-white);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-flow::before {
    height: 3.125rem;
  }
}

.top-flow::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 53%;
  height: 4.8125rem;
  background: var(--color-white);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-flow::after {
    height: 2.8125rem;
  }
}

.top-flow__cards {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 750px) {
  .top-flow__cards {
    flex-direction: column;
    gap: 3.75rem;
  }
}

.top-flow__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  background-color: var(--color-white);
  padding: 1.375rem 0.9375rem 1.125rem;
}
@media screen and (max-width: 750px) {
  .top-flow__card {
    width: 50%;
    margin-inline: auto;
  }
}
.top-flow__card:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-navy1);
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .top-flow__card:not(:last-child)::after {
    border-top: 15px solid var(--color-navy1);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: none;
    left: 50%;
    top: unset;
    bottom: -2.1875rem;
    transform: translateX(-50%);
  }
}

.top-flow__card-number {
  position: absolute;
  font-family: var(--font-oswald);
  top: 0;
  left: 50%;
  font-size: 0.875rem;
}
@media screen and (max-width: 750px) {
  .top-flow__card-number {
    font-size: 3.2vw;
  }
}
.top-flow__card-number {
  font-weight: 700;
  line-height: 1;
  color: var(--color-orange2);
  padding: 0.125rem 0.1875rem 0.125rem 0.3125rem;
  background-color: var(--color-navy1);
  text-align: center;
  transform: translate(-50%, -40%);
}

.top-flow__card-img {
  width: 3.5625rem;
  aspect-ratio: 1/1;
  object-fit: contain;
}
@media screen and (max-width: 430px) {
  .top-flow__card-img {
    width: 2.5rem;
  }
}

.top-flow__text {
  font-size: 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-flow__text {
    font-size: 4vw;
  }
}
.top-flow__text {
  font-weight: 500;
  margin-top: 0.75rem;
}

.top-flow__content {
  margin-top: 3.125rem;
}
@media screen and (max-width: 750px) {
  .top-flow__content {
    margin-top: 1.875rem;
  }
}

.top-flow__content-text {
  text-align: center;
}

.top-flow__content-text + .top-flow__content-text {
  margin-top: 1rem;
}

.top-flow__button {
  max-width: 423px;
  margin-top: 2.8125rem;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .top-flow__button {
    max-width: 90%;
  }
}
@media screen and (max-width: 430px) {
  .top-flow__button {
    max-width: 100%;
  }
}

/****************************************/
/****************************************/
.entry-form {
  position: relative;
  background-color: var(--color-dark-navy2);
  padding: 3.75rem 0.9375rem 0;
}
@media screen and (max-width: 750px) {
  .entry-form {
    padding: 1.875rem 0.9375rem 0;
  }
}

.entry-form::before {
  content: "";
  position: absolute;
  top: -0.03125rem;
  left: 0;
  width: 47%;
  height: 4.1875rem;
  background: #E3E6EF;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .entry-form::before {
    height: 2.1875rem;
  }
}

.entry-form__content {
  background-color: var(--color-lavender1);
  padding: 3.75rem 5rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .entry-form__content {
    padding: 3.125rem clamp(1.875rem, -5.002rem + 14.65vw, 4.375rem);
  }
}
@media screen and (max-width: 750px) {
  .entry-form__content {
    padding: 1.875rem 1.25rem;
  }
}

.entry-form__line {
  max-width: 90.2%;
  width: 100%;
  height: 1px;
  margin-inline: auto;
  background-color: var(--color-white);
  margin-top: 7.5rem;
}
@media screen and (max-width: 750px) {
  .entry-form__line {
    margin-top: 3.75rem;
  }
}

.recruit__cards {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.recruit-card {
  border: 1px solid var(--color-white);
  padding: 1.25rem 1.875rem;
  background-color: var(--color-navy2);
}
@media screen and (max-width: 750px) {
  .recruit-card {
    padding: 0.9375rem 1.25rem;
  }
}
.recruit-card.recruit-card--reverse {
  border-color: var(--color-navy2);
}

.recruit-card__title {
  color: var(--color-orange2);
  font-size: 1.75rem;
}
@media screen and (max-width: 750px) {
  .recruit-card__title {
    font-size: 5.8666666667vw;
  }
}
.recruit-card__title {
  font-weight: 700;
  line-height: 1.6;
}

.recruit-card__comment {
  margin-top: 0.125rem;
  min-width: 0;
  word-break: break-word;
}

.recruit-card__info {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 1rem;
}
@media screen and (max-width: 750px) {
  .recruit-card__info {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.recruit-card__work-location {
  min-width: 0;
  word-break: break-word;
}

.recruit-card__employment-type {
  font-size: 0.875rem;
}
@media screen and (max-width: 750px) {
  .recruit-card__employment-type {
    font-size: 3.2vw;
  }
}
.recruit-card__employment-type {
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-white);
  padding: 0.125rem 0.5rem;
  border: 1px solid var(--color-white);
  width: fit-content;
  flex-shrink: 0;
}
.recruit-card__employment-type.recruit-card__employment-type--reverse {
  color: var(--color-navy2);
  border-color: var(--color-navy2);
}

.page-recruit {
  padding: 6.25rem 0.9375rem 7.5rem;
}
@media screen and (max-width: 750px) {
  .page-recruit {
    padding: 3.75rem 0.9375rem 5rem;
  }
}

.recruit-content {
  padding: 6.25rem 0.9375rem 5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .recruit-content {
    padding: 3.75rem 0.9375rem 3.75rem;
  }
}

.recruit-content__title {
  font-size: 2.5rem;
}
@media screen and (max-width: 750px) {
  .recruit-content__title {
    font-size: 8vw;
  }
}
.recruit-content__title {
  font-weight: 900;
  line-height: 1;
  color: var(--color-navy1);
  text-align: center;
}
.recruit-content__title.recruit-content__title--second {
  margin-top: 5rem;
}
@media screen and (max-width: 750px) {
  .recruit-content__title.recruit-content__title--second {
    margin-top: 3.125rem;
  }
}

.recruit-table {
  width: 100%;
  margin-top: 3.125rem;
}

.recruit-table__row {
  display: flex;
  border-bottom: 1px solid rgba(34, 34, 34, 0.37);
  padding: 2.25rem 0;
}
@media screen and (max-width: 750px) {
  .recruit-table__row {
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem 0;
  }
}

.recruit-table__row:first-child {
  border-top: 1px solid rgba(34, 34, 34, 0.37);
}

.recruit-table__label {
  flex-shrink: 0;
  width: 14.375rem;
}
@media screen and (max-width: 750px) {
  .recruit-table__label {
    width: 100%;
  }
}

.recruit-table__value {
  flex: 1;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .recruit-table__value {
    font-size: 3.4666666667vw;
  }
}
.recruit-table__value {
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text);
}

.recruit-content__entry-box {
  margin-top: 2.5rem;
}

/****************************************/
/****************************************/
.entry-thanks {
  padding: 3.75rem 0.9375rem 6.25rem;
}
@media screen and (max-width: 750px) {
  .entry-thanks {
    padding: 2.5rem 0.9375rem 3.75rem;
  }
}

.entry-thanks__text {
  text-align: center;
}

.entry-thanks__text + .entry-thanks__text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .entry-thanks__text + .entry-thanks__text {
    margin-top: 0.75rem;
  }
}

.entry-thanks__button {
  max-width: 18.75rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}

/****************************************/
/****************************************/
.contact {
  padding: 3.75rem 0 6.25rem;
}
@media screen and (max-width: 430px) {
  .contact {
    padding: 2.5rem 0 3.75rem;
  }
}

.contact__inner {
  max-width: 1000px;
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.contact__text {
  color: var(--color-text);
  font-size: 1.125rem;
}
@media screen and (max-width: 750px) {
  .contact__text {
    font-size: 3.7333333333vw;
  }
}
.contact__text {
  padding-left: 1.25rem;
  border-left: 5px solid var(--color-primary);
}

.contact__box {
  background-color: var(--color-light-blue);
  padding: 4.0625rem;
  border-radius: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .contact__box {
    padding: 3.125rem 4.8828125%;
  }
}
@media screen and (max-width: 750px) {
  .contact__box {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}

.contact__mail-wrap {
  margin-top: 2.5rem;
}

.contact__link {
  color: var(--color-secondary);
  text-decoration: underline;
}

.form__field {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .form__field {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form__field.form__field--textarea {
  align-items: flex-start;
}
.form__field.form__field--textarea .form__label label {
  margin-top: 0.875rem;
}
@media screen and (max-width: 750px) {
  .form__field.form__field--textarea .form__label label {
    margin-top: 0;
  }
}

.form__label {
  min-width: 14.0625rem;
}
@media screen and (max-width: 750px) {
  .form__label {
    min-width: unset;
  }
}

.form__field + .form__field {
  margin-top: 0.75rem;
}
@media screen and (max-width: 750px) {
  .form__field + .form__field {
    margin-top: 0.9375rem;
  }
}

.form__data {
  flex-grow: 1;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .form__data {
    margin-top: 0.625rem;
  }
}
.form__data .form__data-text {
  margin-left: 0.875rem;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .form__data .form__data-text {
    font-size: 3.4666666667vw;
  }
}
.form__data .form__data-text {
  font-weight: 700;
}

.form__acceptance {
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .form__acceptance {
    margin-top: 1.875rem;
  }
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #CACACA;
}

.form__textarea {
  height: 9rem;
  resize: none;
}

.form__label {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .form__label {
    font-size: 3.4666666667vw;
  }
}
.form__label {
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}
.form__label .require {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .form__label .require {
    font-size: 3.4666666667vw;
  }
}
.form__label .require {
  font-weight: 700;
  margin-left: 0.375rem;
  color: var(--color-red);
}

.form__label label {
  display: flex;
  align-items: center;
}

.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .form__input,
  .form__select,
  .form__textarea,
  .form__acceptance-text {
    font-size: 3.4666666667vw;
  }
}
.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-weight: 700;
  width: 100%;
  padding: 0.875rem;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.02);
  background-color: var(--color-white);
}
@media screen and (max-width: 430px) {
  .form__input,
  .form__select,
  .form__textarea,
  .form__acceptance-text {
    padding: 0.5rem 0.9375rem;
    font-size: 1rem;
  }
}
.form__input.form__input--num,
.form__select.form__input--num,
.form__textarea.form__input--num,
.form__acceptance-text.form__input--num {
  width: 5rem;
  padding-right: 1.875rem;
  display: block;
}

.form__age-wrap {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.form__age-wrap::after {
  content: "歳";
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .form__age-wrap::after {
    font-size: 3.4666666667vw;
  }
}
.form__age-wrap::after {
  font-weight: 700;
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 60%;
  right: 15px;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: var(--color-line) transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.form__radio {
  display: flex;
  gap: 1.875rem;
  padding: 0.875rem 0;
}
.form__radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}
.form__radio .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .form__radio .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 3.4666666667vw;
  }
}
.form__radio .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border: 1px solid #7C7C7C;
  border-radius: 50%;
  background-color: #fff;
}
.form__radio .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-navy4);
  transition: transform 0.2s ease;
}
.form__radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  transform: translateY(-50%) scale(1);
}

.form__data-radio {
  display: flex;
  flex-wrap: wrap;
}

.form__privacy-text {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.9375rem;
  color: var(--color-navy1);
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 430px) {
  .form__privacy-text {
    font-size: 0.875rem;
    margin-left: 0.5rem;
  }
}

.form__privacy-note {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.9375rem;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  border: 1px solid var(--color-navy1);
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 3px;
  width: 0.9375rem;
  height: 0.5rem;
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid var(--color-navy1);
  border-left: 2px solid var(--color-navy1);
}

.form__checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy-link {
  display: inline-block;
  color: var(--color-navy1);
  font-weight: 500;
  border-bottom: 1px solid var(--color-navy1);
  padding-bottom: 2px;
}

.form__submit-button {
  position: relative;
  max-width: 13.75rem;
  margin: 2.5rem auto 0;
  background-color: var(--color-orange4);
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .form__submit-button {
    font-size: 3.4666666667vw;
  }
}
.form__submit-button {
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .form__submit-button {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 430px) {
  .form__submit-button {
    max-width: 100%;
  }
}

.form__submit-button:hover {
  opacity: 0.7;
}

.form__submit-button p {
  position: relative;
}

.form__submit-input {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  color: inherit;
  font-weight: 700;
  cursor: pointer;
  display: block;
  padding: 0.875rem 1.25rem;
}

.form__note {
  font-size: 0.875rem;
  color: var(--color-black);
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
  text-align: center;
}

.wpcf7 .wpcf7-submit:disabled {
  color: var(--color-white);
}

.wpcf7-spinner {
  position: absolute;
  left: 40%;
  bottom: -1.875rem;
  transform: translate(-50%, -50%);
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.form__inline {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* エラー出ても崩れないように */
.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}

/* エラーメッセージを下に固定 */
.wpcf7-not-valid-tip {
  display: block;
  width: 100%;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .wpcf7-not-valid-tip {
    font-size: 3.4666666667vw;
  }
}
.wpcf7-not-valid-tip {
  margin-top: 0.3125rem;
}

.error-not-found {
  padding: 5rem 0 7.5rem;
}

.error-not-found__text {
  font-size: 1.25rem;
}
@media screen and (max-width: 750px) {
  .error-not-found__text {
    font-size: 4vw;
  }
}
.error-not-found__text {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

/****************************************/
/****************************************/
.site-content h2,
.site-content h3 {
  margin-bottom: 1.875rem;
}

.site-content p,
.site-content h4,
.site-content h5,
.site-content h6,
.site-content img,
.site-content ul,
.site-content ol,
.site-content table {
  margin-bottom: 0.9375rem;
}

.site-content p {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .site-content p {
    font-size: 3.4666666667vw;
  }
}
.site-content p {
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text);
}

.site-content h2 {
  font-size: 2rem;
}
@media screen and (max-width: 750px) {
  .site-content h2 {
    font-size: 5.6vw;
  }
}
.site-content h2 {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-navy1);
}

.site-content h3 {
  position: relative;
  font-size: 1.75rem;
}
@media screen and (max-width: 750px) {
  .site-content h3 {
    font-size: 5.8666666667vw;
  }
}
.site-content h3 {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-navy1);
  padding-bottom: 1.875rem;
}

.site-content h3::after {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 0.125rem;
  bottom: 0;
  left: 0;
  background-color: var(--color-navy1);
}

.site-content h4 {
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .site-content h4 {
    font-size: 4.5333333333vw;
  }
}
.site-content h4 {
  line-height: 1.6;
  font-weight: 700;
  color: var(--color-navy1);
  letter-spacing: 1px;
  margin-bottom: 0.9375rem;
}

.site-content h5 {
  font-size: 1.25rem;
}
@media screen and (max-width: 750px) {
  .site-content h5 {
    font-size: 4vw;
  }
}
.site-content h5 {
  font-weight: 700;
  line-height: 1.6;
}

.site-content h6 {
  font-size: 1.125rem;
}
@media screen and (max-width: 750px) {
  .site-content h6 {
    font-size: 3.7333333333vw;
  }
}
.site-content h6 {
  font-weight: 700;
  line-height: 1.6;
}

.site-content ul {
  list-style: none;
  padding-left: 2.25rem;
}
@media screen and (max-width: 750px) {
  .site-content ul {
    padding-left: 0.9375rem;
  }
}

.site-content ul li {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .site-content ul li {
    font-size: 3.4666666667vw;
  }
}
.site-content ul li {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 750px) {
  .site-content ul li {
    align-items: baseline;
  }
}

.site-content ul li::before {
  content: "⚫︎";
  color: var(--color-navy1);
  font-size: 0.5em;
  margin-right: 1em;
}

.site-content ul li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol {
  counter-reset: number;
  list-style-type: none !important;
  padding-left: 1.25rem;
}

.site-content ol li {
  position: relative;
  line-height: 1.6;
  padding-left: 2.1875rem;
}

.site-content ol li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background-color: var(--color-navy1);
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.site-content table table {
  border: none;
}

.site-content table thead {
  border-bottom: 1px solid var(--color-white);
}

.site-content table th {
  background: var(--color-primary);
  color: var(--color-white);
}

.site-content table td {
  border: 1px solid var(--color-white);
  background-color: var(--color-lavender1);
}

.site-content a {
  color: var(--color-navy1);
  text-decoration: underline;
  word-break: break-all;
}

@media screen and (max-width: 750px) {
  .site-content figure {
    text-align: center;
  }
}

.site-content figure.wp-block-image img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* YouTube iframe対応（レスポンシブ） */
.site-content iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* CSSでアスペクト比を維持 */
  margin-bottom: 0.9375rem;
}

/* 旧ブラウザ対応が必要な場合はwrapで対応 */
.site-content .video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  margin-bottom: 0.9375rem;
}

.site-content .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.l-inner {
  max-width: 73.75rem;
  width: 100%;
  margin-inline: auto;
}
.l-inner.l-inner-s {
  max-width: 56.25rem;
}

.c-text {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .c-text {
    font-size: 3.4666666667vw;
  }
}
.c-text {
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
}
.c-text.c-text--white {
  color: var(--color-white);
}

.c-section-title {
  font-family: var(--font-oswald);
  font-size: 9.875rem;
}
@media screen and (max-width: 750px) {
  .c-section-title {
    font-size: 18.6666666667vw;
  }
}
.c-section-title {
  font-weight: 700;
  display: block;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 8.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}
.c-section-title.c-section-title--lavender {
  color: var(--color-lavender2);
}
.c-section-title.c-section-title--navy {
  color: var(--color-navy5);
}
@media screen and (max-width: 430px) {
  .c-section-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 5rem;
  }
}

.c-section-title__jp {
  bottom: 4.0625rem;
  font-size: 1.75rem;
}
@media screen and (max-width: 750px) {
  .c-section-title__jp {
    font-size: 5.8666666667vw;
  }
}
.c-section-title__jp {
  font-weight: 900;
  line-height: 1;
  color: var(--color-orange3);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 430px) {
  .c-section-title__jp {
    bottom: 2.5rem;
  }
}

.c-section-title__jp-big {
  font-weight: 900;
  font-size: 2.5rem;
}
@media screen and (max-width: 750px) {
  .c-section-title__jp-big {
    font-size: 8vw;
  }
}
.c-section-title__jp-big {
  line-height: 1.3;
  color: var(--color-navy1);
  margin-top: 1.0625rem;
  white-space: nowrap;
  display: block;
}
@media screen and (max-width: 750px) {
  .c-section-title__jp-big {
    line-height: 1.4;
    margin-top: 0.3125rem;
  }
}
.c-section-title__jp-big.c-section-title__jp-big--white {
  color: var(--color-white);
}

.page-content {
  padding: 5.4375rem 0;
}
@media screen and (max-width: 750px) {
  .page-content {
    padding: 2.5rem 0 3.75rem;
  }
}

.page-content__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .page-content__inner {
    padding: 0 1.5625rem;
  }
}

.post {
  padding: 3.75rem 0;
}
@media screen and (max-width: 750px) {
  .post {
    padding: 2.5rem 0 3.75rem;
  }
}

.post__inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .post__inner {
    padding: 0 1.5625rem;
  }
}

.post__body {
  padding-top: 3.75rem;
}

.mv {
  background-color: var(--color-navy2);
  margin-top: 5.125rem;
  min-height: 21.3125rem;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .mv {
    margin-top: 1rem;
    min-height: 12.5rem;
  }
}
@media screen and (max-width: 750px) {
  .mv.mv--recruit-post {
    height: auto;
    padding-bottom: 1.875rem;
  }
}

.mv__inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding: 0 1.25rem;
  min-height: inherit;
}
.mv__inner.mv__inner--recruit-post {
  max-width: 56.25rem;
  display: flex;
  padding: 0;
  align-items: center;
}

.mv__recruit-card {
  border: none;
}
@media screen and (max-width: 750px) {
  .mv__recruit-card {
    padding-top: 4.375rem;
  }
}

.mv__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}

.mv__heading {
  position: relative;
  padding-bottom: 0.9375rem;
}

.mv__title-en {
  color: var(--color-orange2);
  font-family: var(--font-oswald);
  font-size: 4rem;
}
@media screen and (max-width: 750px) {
  .mv__title-en {
    font-size: 9.8666666667vw;
  }
}
.mv__title-en {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .mv__title-en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .mv__title-en {
    font-size: 7.7333333333vw;
  }
}

.mv__title-ja {
  color: var(--color-white);
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .mv__title-ja {
    font-size: 4.5333333333vw;
  }
}
.mv__title-ja {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .mv__title-ja {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .mv__title-ja {
    font-size: 3.7333333333vw;
  }
}

.company-about {
  padding: 6.25rem 0;
  background-color: var(--color-lavender1);
}
@media screen and (max-width: 750px) {
  .company-about {
    padding: 3.75rem 0;
  }
}

.company-about__body {
  margin-top: 3.125rem;
}
@media screen and (max-width: 750px) {
  .company-about__body {
    margin-top: 1.875rem;
  }
}

.company-about__text + .company-about__text {
  margin-top: 1.25rem;
}

.company-message {
  padding: 6.25rem 0;
  background-color: var(--color-navy2);
}
@media screen and (max-width: 750px) {
  .company-message {
    padding: 3.75rem 0;
  }
}

.company-message__body {
  margin-top: 3.125rem;
}
@media screen and (max-width: 750px) {
  .company-message__body {
    margin-top: 1.875rem;
  }
}

.company-message__text + .company-message__text {
  margin-top: 1.25rem;
}

.company-message__signature {
  margin-top: 2.5rem;
  text-align: right;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .company-message__signature {
    font-size: 3.3333333333vw;
  }
}

.company-data {
  padding: 6.25rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .company-data {
    padding: 3.75rem 0;
  }
}

.company-data__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3.125rem;
}
@media screen and (max-width: 750px) {
  .company-data__table {
    margin-top: 1.875rem;
  }
}

.company-data__row {
  border-bottom: 1px solid var(--color-line);
}
.company-data__row:first-child {
  border-top: 1px solid var(--color-line);
}

.company-data__th {
  padding: 1.25rem 1.875rem;
  background-color: var(--color-navy5);
  color: var(--color-white);
  font-weight: 700;
  text-align: left;
  width: 12.5rem;
  white-space: nowrap;
  font-size: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .company-data__th {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .company-data__th {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .company-data__th {
    font-size: 3.2vw;
  }
}

.company-data__td {
  padding: 1.25rem 1.875rem;
  color: var(--color-text);
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .company-data__td {
    font-size: 3.4666666667vw;
  }
}
.company-data__td {
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .company-data__td {
    display: block;
    padding: 0.75rem 1rem;
  }
}
.company-data__td a {
  color: var(--color-text);
  text-decoration: underline;
}

.company-cta {
  padding: 6.25rem 0;
  background-color: var(--color-navy2);
}
@media screen and (max-width: 750px) {
  .company-cta {
    padding: 3.75rem 0;
  }
}

.company-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.company-cta__title {
  font-size: 1.75rem;
}
@media screen and (max-width: 750px) {
  .company-cta__title {
    font-size: 5.8666666667vw;
  }
}
.company-cta__title {
  font-weight: 900;
  color: var(--color-orange2);
  line-height: 1.4;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 750px) {
  .company-cta__title {
    margin-bottom: 1.25rem;
  }
}

.company-cta__text {
  margin-bottom: 2.5rem;
  width: 100%;
}

.company-cta__button {
  padding: 1rem 3rem;
}
@media screen and (max-width: 750px) {
  .company-cta__button {
    padding: 0.875rem 2rem;
  }
}

.top-mv__title-area {
  display: block;
  font-size: 2.3125rem;
}
@media screen and (max-width: 1200px) {
  .top-mv__title-area {
    font-size: 3.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__title-area {
    font-size: 5.3333333333vw;
  }
}

/*# sourceMappingURL=style.css.map */
