@charset "UTF-8";
.header {
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  background: var(--theme-color-white);
  height: var(--header-height);
  z-index: 10000;
}
.header.is-blue {
  background: var(--theme-color-blue);
}
.header.is-blue .header__logo-name {
  color: var(--font-color-white);
}
.header.is-blue .header__logo-image.header__logo-image--blue {
  display: none;
}
.header.is-blue .header__logo-image.header__logo-image--white {
  display: block;
}
.header.is-blue .hmb-button__bar {
  background: var(--font-color-white);
}
.header.is-transparent {
  background: transparent;
}
.header.is-transparent .header__logo-name {
  color: var(--font-color-white);
}
.header.is-transparent .menu-item {
  color: var(--font-color-white);
}
.header.is-transparent .menu-item::after {
  background: var(--font-color-white);
}
.header.is-transparent .header__sns-link {
  color: var(--font-color-white);
}
.header.is-transparent.is-blue {
  background: var(--theme-color-blue);
}
.header.is-transparent.is-blue .header__logo-name {
  color: var(--font-color-white);
}
.header.is-transparent.is-blue .header__logo-image.header__logo-image--blue {
  display: none;
}
.header.is-transparent.is-blue .header__logo-image.header__logo-image--white {
  display: block;
}
.header.is-transparent.is-blue .hmb-button__bar {
  background: var(--font-color-white);
}

.header__inner {
  padding-inline: 20px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: clamp(24px, 9.583vw - 114px, 70px);
    max-width: calc(1600px + clamp(24px, 9.583vw - 114px, 70px) * 2);
    margin-inline: auto;
  }
}

.header__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .header__logo-link {
    gap: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__logo-link {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .header__logo-link:hover {
    opacity: 0.7;
  }
}

.header__logo-image {
  display: block;
  max-width: 62px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo-image {
    max-width: clamp(95px, 3.125vw + 50px, 110px);
  }
}
.header__logo-image.header__logo-image--white {
  display: none;
}

.header__logo-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__logo-name-sub {
  font-size: 8px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .header__logo-name-sub {
    font-size: 14px;
  }
}

.header__logo-name-main {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .header__logo-name-main {
    font-size: 24px;
	  letter-spacing: 2px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(16px, 4.167vw - 44px, 36px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}

.menu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu-item::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--theme-color-black);
}
.menu-item:first-of-type::after {
  display: none;
}
.menu-item:last-of-type a {
  padding-right: 8px;
}
.menu-item a {
  padding-left: clamp(16px, 2.292vw - 17px, 27px);
  padding-right: clamp(16px, 2.292vw - 17px, 27px);
  font-size: 15px;
}
@media (hover: hover) and (pointer: fine) {
  .menu-item a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .menu-item a:hover {
    opacity: 0.7;
  }
}

.header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__sns-link {
  display: inline-block;
}
.header__sns-link svg{
	display: block;
}
@media (hover: hover) and (pointer: fine) {
  .header__sns-link {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .header__sns-link:hover {
    opacity: 0.7;
  }
}

.header__hmb-button {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .header__hmb-button {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__hmb-button {
    display: inline-block;
  }
}

.hmb-button {
  --hbm-width: 21px;
  --hbm-height: 21px;
  position: relative;
  width: var(--hbm-width);
  height: var(--hbm-height);
}
.hmb-button.is-open .hmb-button__bar:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.hmb-button.is-open .hmb-button__bar:nth-of-type(2) {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.hmb-button__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--theme-color-blue);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hmb-button__bar:nth-of-type(1) {
  top: 33%;
}
.hmb-button__bar:nth-of-type(2) {
  bottom: 33%;
}

.footer {
  background: var(--theme-color-blue);
  color: var(--font-color-white);
  padding-top: 58px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 132px;
    padding-bottom: 40px;
  }
}

.footer__inner {
  padding-inline: 32px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 32px;
    max-width: 1200px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer__content {
    display: grid;
    grid-template-columns: 43.244094% 1fr;
    gap: 7em;;
  }
}
@media screen and (min-width: 768px) and (max-width: 1070px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1070px) {
  .footer__info {
    border-right: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-top: 21px;
    display: grid;
    grid-template-columns: 193px 1fr;
    gap: 26px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1070px) {
  .footer__logo {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__logo-link {
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .footer__logo-link {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .footer__logo-link:hover {
    opacity: 0.7;
  }
}

.footer__logo-image {
  max-width: 132px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__logo-image {
    max-width: 193px;
  }
}

.footer__logo-name-sub {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer__logo-name-sub {
    font-size: 25px;
    line-height: 1.4;
  }
}

.footer__logo-name-main {
  font-size: 21px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer__logo-name-main {
    font-size: 38px;
    line-height: 1.4;
	letter-spacing: 3px;
  }
}

.footer__address {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-top: 24px;
    text-align: left;
    font-size: 16px;
  }
}

.footer__numbers {
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .footer__numbers {
    margin-top: 17px;
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    -webkit-column-gap: clamp(12px, 3.128vw - 20.067px, 40px);
       -moz-column-gap: clamp(12px, 3.128vw - 20.067px, 40px);
            column-gap: clamp(12px, 3.128vw - 20.067px, 40px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__tel,
.footer__fax {
  font-family: var(--font-family-base-en);
  text-align: center;
  font-size: 23px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer__tel,
  .footer__fax {
    text-align: left;
    font-size: 24px;
  }
}
.footer__tel .is-small,
.footer__fax .is-small {
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .footer__tel .is-small,
  .footer__fax .is-small {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .footer__tel {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

@media screen and (min-width: 768px) {
  .footer__fax {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.footer__tel-time {
  margin-top: 11px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer__tel-time {
    margin-top: 0;
    text-align: left;
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

.footer__sns-links {
  color: var(--font-color-white);
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .footer__sns-links {
    margin-top: 24px;
  }
}

.sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .sns-link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sns-link {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .sns-link:hover {
    opacity: 0.7;
  }
}

.sns-link__text {
  position: relative;
  font-family: var(--font-family-base-en);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.sns-link__text::after {
  position: absolute;
  content: "";
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--font-color-white);
}

.site-map {
  display: none;
}
@media screen and (min-width: 768px) {
  .site-map {
    display: block;
    -ms-flex-item-align: self-end;
        align-self: self-end;
  }
}
@media screen and (min-width: 768px) and (max-width: 1070px) {
  .site-map {
    display: none;
  }
}

.footer__heading {
  font-family: var(--font-family-base-en);
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
}

.footer__nav {
  margin-top: 40px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 0;
}
.footer__nav-list .menu-item {
  position: relative;
}
.footer__nav-list .menu-item::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: var(--theme-color-white);
}
.footer__nav-list .menu-item:first-of-type::after {
  display: none;
}
.footer__nav-list .menu-item:first-of-type a {
  padding-left: 0;
}
.footer__nav-list .menu-item:last-of-type a {
  padding-right: 0;
}
.footer__nav-list a {
  padding-left: clamp(16px, 0.894vw + 6.838px, 24px);
  padding-right: clamp(16px, 0.894vw + 6.838px, 24px);
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav-list a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .footer__nav-list a:hover {
    opacity: 0.7;
  }
}

.footer__buttons {
  margin-top: 48px;
}

.footer__copyright {
  margin-top: 85px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 150px;
  }
}
.footer__copyright small {
  font-size: 15px;
  font-weight: 600;
}

.drawer-nav {
  position: fixed;
  z-index: 1000;
  top: -100dvh;
  left: 0;
  width: 100vw;
  height: 100dvh;
  padding-top: 40px;
  padding-bottom: 106px;
  background: var(--theme-color-blue);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow-y: auto;
}
.drawer-nav.is-open {
  top: var(--header-height);
}

.drawer-nav__inner {
  padding-inline: 36px;
  max-width: 375px;
  margin-inline: auto;
}

.drawer-nav__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer-nav__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  -ms-flex-line-pack: start;
      align-content: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}

.drawer-nav__link-en {
  font-family: var(--font-family-base-en);
  color: var(--font-color-white);
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.drawer-nav__link-ja {
  color: var(--font-color-white);
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
}

.drawer__sns-link {
  color: var(--font-color-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 20px;
}

.page-fv {
  position: relative;
  padding-top: 96px;
  padding-bottom: 55px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-fv {
    padding-top: 445px;
    padding-bottom: 120px;
  }
}
.page-fv::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 94.1333333333%;
  height: calc(100% - 96px);
  background: var(--theme-color-blue);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-fv::after {
    width: 89.1666666667%;
    height: calc(100% - 536px);
  }
}

.page-fv__image-wrapper {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 10;
  width: 88%;
  aspect-ratio: 331/220;
}
@media screen and (min-width: 768px) {
  .page-fv__image-wrapper {
    top: -270px;
    width: 84.8958333333%;
    height: 1107px;
    clip-path: inset(0 0 14% 0);
  }
}

.page-fv__heading {
  position: absolute;
  z-index: 11;
}
.page-fv__heading.page-fv__heading--works {
  top: 75px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-fv__heading.page-fv__heading--works {
    top: 320px;
    left: clamp(0px, 22.57vw - 231.341px, 202px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-fv__heading.page-fv__heading--works {
    left: 0;
  }
}
.page-fv__heading.page-fv__heading--works .page-fv__heading-image {
  max-width: clamp(65.3333333333px, 18.6666666667vw, 143.36px);
}
@media screen and (min-width: 768px) {
  .page-fv__heading.page-fv__heading--works .page-fv__heading-image {
    max-width: 213px;
  }
}
.page-fv__heading.page-fv__heading--about {
  top: clamp(124.1333333333px, 35.4666666667vw, 272.384px);
  left: clamp(29.8666666667px, 8.5333333333vw, 65.536px);
}
@media screen and (min-width: 768px) {
  .page-fv__heading.page-fv__heading--about {
    top: clamp(450px, 11.458vw + 362px, 582px);
    left: clamp(100.8px, 13.125vw, 252px);
  }
}
.page-fv__heading.page-fv__heading--about .page-fv__heading-image {
  max-width: clamp(33.6px, 9.6vw, 73.728px);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-fv__heading.page-fv__heading--about .page-fv__heading-image {
    max-width: clamp(70px, 3.472vw + 43.333px, 110px);
  }
}
.page-fv__heading.page-fv__heading--recruit {
  top: clamp(124.1333333333px, 35.4666666667vw, 272.384px);
  left: clamp(29.8666666667px, 8.5333333333vw, 65.536px);
}
@media screen and (min-width: 768px) {
  .page-fv__heading.page-fv__heading--recruit {
    top: clamp(400px, 13.889vw + 293.333px, 560px);
    left: clamp(88px, 11.4583333333vw, 220px);
  }
}
.page-fv__heading.page-fv__heading--recruit .page-fv__heading-image {
  max-width: clamp(33.6px, 9.6vw, 73.728px);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-fv__heading.page-fv__heading--recruit .page-fv__heading-image {
    max-width: clamp(70px, 3.472vw + 43.333px, 110px);
  }
}

.page-fv__simple-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .page-fv__simple-heading {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.page-fv__simple-heading.page-fv__simple-heading--news .page-fv-simple-heading-en {
  max-width: 156px;
}
@media screen and (min-width: 768px) {
  .page-fv__simple-heading.page-fv__simple-heading--news .page-fv-simple-heading-en {
    max-width: 322px;
  }
}
.page-fv__simple-heading.page-fv__simple-heading--contact .page-fv-simple-heading-en {
  max-width: 230px;
}
@media screen and (min-width: 768px) {
  .page-fv__simple-heading.page-fv__simple-heading--contact .page-fv-simple-heading-en {
    max-width: 497px;
  }
}
.page-fv__simple-heading.page-fv__simple-heading--404 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
.page-fv__simple-heading.page-fv__simple-heading--404 .page-fv-simple-heading-en {
  text-align: center;
  font-family: var(--font-family-base-en);
  font-weight: 700;
  font-size: 40px;
  font-style: italic;
  color: var(--font-color-white);
}
@media screen and (min-width: 768px) {
  .page-fv__simple-heading.page-fv__simple-heading--404 .page-fv-simple-heading-en {
    font-size: 80px;
  }
}
.page-fv-simple-heading-en {
  width: 100%;
}

.page-fv__simple-heading-ja {
  color: var(--font-color-white);
  font-size: 23px;
  font-weight: 600;
}

.page-fv__inner {
  padding-inline: 32px;
}
.page-fv__content {
  position: relative;
  padding-top: clamp(227px, 69.643vw - 34.161px, 500px);
}
@media screen and (min-width: 768px) {
  .page-fv__content {
    padding-top: 300px;
  }
}

.page-fv__text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .page-fv__text-area {
    width: clamp(550px, 78.988vw - 56.63px, 753px);
    margin-inline: auto;
    gap: 38px;
  }
}

.page-fv__text-large {
  color: var(--font-color-white);
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .page-fv__text-large {
    line-height: 2;
    font-size: 30px;
  }
}

.page-fv__text-small {
  padding-right: 53px;
  color: var(--font-color-white);
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-fv__text-small {
    padding-right: 0;
    font-size: 17px;
  }
}

/* ===========================================
お問合せ
=========================================== */
.contact {
  padding-top: 107px;
  padding-bottom: 107px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

.contact__inner {
  padding-inline: 20px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-inline: 40px;
    max-width: 960px;
  }
}

.contact__content {
  position: relative;
  overflow: hidden;
}
.contact__content::after {
  position: absolute;
  z-index: 1;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4d4d4d;
  opacity: 0.75;
}
.contact__content::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top-contact-bg.webp) no-repeat center center/cover;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact__content:has(.contact__link:hover)::before {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.contact__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  width: 100%;
  z-index: 10;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .contact__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 124px;
    padding-bottom: 155px;
    gap: 140px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 90px;
  }
}
.contact__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1em;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid var(--font-color-white);
  border-right: 1px solid var(--font-color-white);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .contact__link::after {
    width: 20px;
    height: 20px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    right: 2em;
  }
}

.contact__message-wrapper {
  position: relative;
}
.contact__message-wrapper::before {
  position: absolute;
  content: "";
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 25px;
  height: 1px;
  background: var(--font-color-white);
}
@media screen and (min-width: 768px) {
  .contact__message-wrapper::before {
    width: 1px;
    height: 100%;
    top: 0;
    bottom: initial;
    left: initial;
    right: -70px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__message-wrapper::before {
    top: initial;
    bottom: -45px;
    left: 50%;
    right: initial;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 50px;
    height: 1px;
  }
}

.contact__heading {
  text-align: center;
  font-family: var(--font-family-base-en);
  color: var(--font-color-white);
  font-size: 50px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .contact__heading {
    font-size: 80px;
  }
}

.contact__text {
  text-align: center;
  color: var(--font-color-white);
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 17px;
  }
}

.contact__tel-num {
  text-align: center;
  font-family: var(--font-family-base-en);
  color: var(--font-color-white);
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .contact__tel-num {
    font-size: 38px;
  }
}

.contact__tel-time {
  text-align: center;
  color: var(--font-color-white);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .contact__tel-time {
    font-size: 15px;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--theme-color-white);
  z-index: 99999;
  -webkit-animation: loading-hidden 1s ease-out 2s forwards;
          animation: loading-hidden 1s ease-out 2s forwards;
}

.loading__inner {
  padding-inline: 20px;
  max-width: 640px;
  margin-inline: auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .loading__inner {
    padding-inline: 80px;
    max-width: 1240px;
  }
}

.loading__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  height: 100%;
}

.loading__image img {
  max-width: 137px;
  width: 100%;
}

.loading__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.loading__text-en {
  font-family: var(--font-family-base-en);
  color: var(--font-color-loading-prev);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .loading__text-en {
    font-size: 64px;
  }
}

.loading__text-ja {
  color: var(--font-color-loading-prev);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .loading__text-ja {
    font-size: 28px;
  }
}

.js-loadTxt {
  position: relative;
  line-height: 1;
  font-weight: inherit;
  display: inline-block;
}
.js-loadTxt::after {
  content: attr(data-txt);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--font-color-loading-next);
  clip-path: inset(0 100% 0 0);
  -webkit-animation: flow-text 2s cubic-bezier(0.44, 0.14, 0.09, 1.02) 0s forwards;
          animation: flow-text 2s cubic-bezier(0.44, 0.14, 0.09, 1.02) 0s forwards;
}

@-webkit-keyframes flow-text {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes flow-text {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes loading-hidden {
  0% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@keyframes loading-hidden {
  0% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.button {
  position: relative;
  display: inline-block;
  min-width: 208px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--font-color-white);
  background: var(--theme-color-blue);
  text-align: center;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .button {
    min-width: 355px;
    font-size: 18px;
  }
}
.button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1rem;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .button {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .button:hover::after {
    right: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .button.header__button {
    font-size: 16px;
    padding: 9px 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button.header__button:hover {
    background-color: var(--theme-color-white);
    border-color: var(--theme-color-blue);
    color: var(--theme-color-blue);
  }
}
.button.button--width-small {
  min-width: 172px;
}
.button.button--width-large {
  min-width: 294px;
}
@media screen and (min-width: 768px) {
  .button.button--width-large {
    min-width: 342px;
  }
}
.button.button--width-pc-ex-large {
  min-width: 280px;
}
@media screen and (min-width: 768px) {
  .button.button--width-pc-ex-large {
    min-width: 436px;
    padding: 23px 24px;
  }
}
.button.button--width-314-447 {
  min-width: 314px;
}
@media screen and (min-width: 768px) {
  .button.button--width-314-447 {
    min-width: 300px;
  }
}
.button.button--lang-en {
  font-size: 20px;
  font-family: var(--font-family-base-en);
  font-weight: 700;
  font-style: italic;
}
.button.button--bd-white {
  background: transparent;
  border: 1px solid var(--theme-color-white);
}
.button.button--bd-blue {
  background: var(--theme-color-white);
  border: 1px solid var(--theme-color-blue);
  color: var(--theme-color-blue);
}
.button.button--bd-white-color-blue {
  background: var(--theme-color-white);
  color: var(--theme-color-blue);
}
@media (hover: hover) and (pointer: fine) {
  .button.contact-form-button {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .button.contact-form-button:hover {
    background-color: var(--theme-color-d-blue);
  }
}

.footer__button {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 48px;
  font-size: 20px;
  font-weight: 600;
  border: 1.5px solid var(--theme-color-white);
  text-align: center;
}
.footer__button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1rem;
  width: 9px;
  height: 9px;
  border-bottom: 1px solid var(--theme-color-white);
  border-right: 1px solid var(--theme-color-white);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__button {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .footer__button:hover {
    background: var(--theme-color-white);
    color: var(--theme-color-blue);
  }
  .footer__button:hover::after {
    right: 0.5em;
    border-bottom: 1px solid var(--theme-color-blue);
    border-right: 1px solid var(--theme-color-blue);
  }
}

.breadcrumbs {
  position: absolute;
  z-index: 10;
  color: var(--font-color-white);
  top: clamp(262px, 58.163vw + 43.888px, 490px);
  left: clamp(88px, 23.469vw - 0.01px, 180px);
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    position: relative;
    top: initial;
    left: initial;
    padding-top: 28px;
    padding-bottom: 28px;
    color: var(--font-color-black);
  }
}
.breadcrumbs.breadcrumbs--news {
  position: relative;
  top: initial;
  left: initial;
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--font-color-black);
}
@media screen and (min-width: 768px) {
  .breadcrumbs.breadcrumbs--news {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
.breadcrumbs.breadcrumbs--news .breadcrumbs__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .breadcrumbs.breadcrumbs--news .breadcrumbs__inner {
    padding-inline: 64px;
    max-width: 1920px;
    margin-inline: auto;
  }
}
.breadcrumbs span[property=name] {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .breadcrumbs span[property=name] {
    color: var(--font-color-black);
    font-size: 17px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumbs a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .breadcrumbs a:hover {
    opacity: 0.7;
  }
}

.breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (min-width: 768px) {
  .breadcrumbs__inner {
    padding-inline: 64px;
    max-width: 1920px;
    margin-inline: auto;
  }
}

.form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.form-field__label {
  cursor: pointer;
  font-size: 16px;
}
.form-field__label .is-red {
  color: var(--theme-color-red);
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 17px;
  }
}

.form-text {
  width: 100%;
  border: none;
  background: #eee;
  padding: 3px;
  font-size: 16px;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .form-text {
    font-size: 20px;
  }
}
.form-text:focus, .form-text:focus-visible {
  outline: none;
  border: 1px solid var(--theme-color-blue);
}
.form-text:invalid {
  outline: none;
  border: 1px solid var(--theme-color-red);
  background: #fff0f7;
}

.form-textarea {
  width: 100%;
  height: 150px;
  field-sizing: content;
  border: none;
  background: #eee;
  padding: 16px;
  font-size: 16px;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    font-size: 20px;
    height: 223px;
  }
}
.form-textarea:focus, .form-textarea:focus-visible {
  outline: none;
  border: 1px solid var(--theme-color-blue);
}
.form-textarea:invalid {
  outline: none;
  border: 1px solid var(--theme-color-red);
  background: #fff0f7;
}

.contact__privacy {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 120px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form-checkbox__input:focus + .wpcf7-list-item-label::before, .form-checkbox__input:focus-visible + .wpcf7-list-item-label::before {
  border-color: var(--theme-color-blue);
}

.form-checkbox__input + .wpcf7-list-item-label {
  position: relative;
  font-size: 16px;
  padding-left: 28px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .form-checkbox__input + .wpcf7-list-item-label {
    font-size: 17px;
  }
}
.form-checkbox__input + .wpcf7-list-item-label .is-link {
  text-decoration: underline;
}
.form-checkbox__input + .wpcf7-list-item-label .is-link:hover {
  color: var(--theme-color-blue);
}
.form-checkbox__input + .wpcf7-list-item-label::before, .form-checkbox__input + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
}
.form-checkbox__input + .wpcf7-list-item-label::before {
  width: 16px;
  height: 16px;
  background: var(--theme-color-white);
  border: 1px solid var(--theme-color-black);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__input + .wpcf7-list-item-label::after {
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--theme-color-blue);
  border-bottom: 2px solid var(--theme-color-blue);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 2px;
  top: 4px;
  opacity: 0;
}

.contact-form-buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .contact-form-buttons {
    margin-top: 80px;
  }
}

.contact-form-button.button::after {
  display: none;
}

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

.wpcf7-spinner {
  display: none;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .nav-links {
    gap: 15px;
  }
}

.page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    width: 33px;
    height: 33px;
    font-size: 23px;
  }
}
.page-numbers.prev {
  background: #eaeaea;
  margin-right: 20px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-numbers.prev {
    font-size: 16px;
    margin-right: 25px;
  }
}
.page-numbers.next {
  background: #eaeaea;
  margin-left: 20px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-numbers.next {
    font-size: 16px;
    margin-left: 25px;
  }
}
.page-numbers.current {
  color: var(--theme-color-blue);
  border-bottom: 1px solid var(--theme-color-blue);
}

.image-bg-slide::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color-white);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.image-bg-slide.is-appear::after {
  width: 0;
}

/* ===========================================
FV
=========================================== */
.page-fv__image-wrapper--about {
  background: url(../img/about/about-fv.webp) no-repeat center bottom/cover;
}

/* ===========================================
強み
=========================================== */
.strength {
  padding-top: 50px;
  padding-bottom: 87px;
}
@media screen and (min-width: 768px) {
  .strength {
    padding-top: 106px;
    padding-bottom: 166px;
  }
}

.strength__inner {
  padding-inline: 32px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .strength__inner {
    padding-inline: 40px;
    max-width: 1160px;
  }
}

.strength__heading-title {
  display: inline-block;
  padding: 8px 22px;
  color: var(--font-color-white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  background: var(--theme-color-blue);
}
@media screen and (min-width: 768px) {
  .strength__heading-title {
    padding: 10px 26px;
  }
}

.strength__text {
  margin-top: 21px;
  color: var(--font-color-gray);
  font-size: 20px;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.strength__text.is-appear span::after {
  clip-path: inset(0 0 0 0);
}
@media screen and (min-width: 768px) {
  .strength__text {
    margin-top: 54px;
    font-size: 40px;
    line-height: 1.9;
  }
}
.strength__text span {
  display: inline-block;
  position: relative;
  font-weight: inherit;
}
.strength__text span::after {
  position: absolute;
  content: attr(data-txt);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--theme-color-blue);
  font-weight: inherit;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.strength__cards {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .strength__cards {
    margin-top: 107px;
  }
}

.strength__card {
  position: relative;
}
.strength__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(100% - 32px);
  height: 1px;
  background: var(--theme-color-blue);
}
@media screen and (min-width: 768px) {
  .strength__card::before {
    width: calc(100% - (100% - 1080px) / 2);
    max-width: calc(100% - 40px);
  }
}
.strength__card:last-of-type::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: calc(100% - 32px);
  height: 1px;
  background: var(--theme-color-blue);
}
@media screen and (min-width: 768px) {
  .strength__card:last-of-type::after {
    width: calc(100% - (100% - 1080px) / 2);
    max-width: calc(100% - 40px);
  }
}

.strength-card {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .strength-card {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.strength-card__inner {
  padding-left: 32px;
  padding-right: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .strength-card__inner {
    grid-template-columns: 1fr 42.8703703704%;
    gap: 72px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1160px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .strength-card__image-wrapper {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.strength-card__image-wrapper img {
  width: 100%;
}

.strength-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .strength-card__body {
    grid-column: 1/2;
    grid-row: 1/2;
    gap: 30px;
  }
}

.strength-card__title {
  color: var(--theme-color-blue);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.09em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .strength-card__title {
    font-size: 30px;
  }
}

.strength-card__text {
  color: var(--theme-color-blue);
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .strength-card__text {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 2.4;
  }
}

.strength__link {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .strength__link {
    margin-top: 146px;
  }
}

.strength-link-inner {
  padding-inline: 26px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .strength-link-inner {
    padding-inline: 40px;
    max-width: 1160px;
  }
}

.link-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 100%;
  max-width: 323px;
  aspect-ratio: 322/266;
  padding-left: 26px;
}
@media screen and (min-width: 768px) {
  .link-button {
    max-width: initial;
    aspect-ratio: 1080/455;
    padding-left: clamp(110px, 12.451vw + 14.374px, 142px);
    padding-right: 320px;
  }
}
.link-button::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/about/strength-link-bg.webp) no-repeat center bottom/contain;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .link-button::after {
    background: url(../img/about/strength-link-bg-pc.webp) no-repeat center center/contain;
  }
}
@media (hover: hover) and (pointer: fine) {
  .link-button:hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.link-button__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}
@media screen and (min-width: 768px) {
  .link-button__title {
    padding-left: 0;
  }
}

.link-button__title-en {
  font-family: var(--font-family-base-en);
  color: var(--font-color-white);
  font-size: 45px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .link-button__title-en {
    font-size: clamp(50px, 9.766vw - 25px, 100px);
  }
}

.link-button__title-ja {
  color: var(--font-color-white);
  font-size: 15px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .link-button__title-ja {
    font-size: clamp(17px, 5.058vw - 21.848px, 30px);
  }
}

.link-button__text {
  color: var(--font-color-white);
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .link-button__text {
    font-size: 17px;
  }
}

/* ===========================================
理念
=========================================== */
.philosophy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-top: clamp(100.8px, 28.8vw, 221.184px);
  padding-bottom: clamp(29.8666666667px, 8.5333333333vw, 65.536px);
  background: url(../img/about/philosophy-bg.webp) no-repeat right top/92.8% auto;
}
@media screen and (min-width: 768px) {
  .philosophy {
    background: url(../img/about/philosophy-bg-pc.webp) no-repeat right top/93.0208333333% auto;
    padding-top: clamp(51.2px, 6.6666666667vw, 128px);
    padding-bottom: clamp(90.8px, 11.8229166667vw, 227px);
  }
}

.philosophy__heading {
  position: absolute;
  top: 20px;
  left: 3px;
  font-family: var(--font-family-base-en);
  color: var(--font-color-gray);
  font-size: 47px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .philosophy__heading {
    top: -0.2em;
    left: 50px;
    font-size: clamp(100px, 8.681vw + 33.333px, 200px);
  }
}

.philosophy__wrapper {
  display: inline-block;
  width: 84.5333333333%;
  background: var(--theme-color-white);
  padding: 36px 29px 32px 29px;
}
@media screen and (min-width: 768px) {
  .philosophy__wrapper {
    width: clamp(620px, 42.8vw + 291.33px, 1113px);
    padding: clamp(48px, 6.25vw, 120px) 40px clamp(36px, 4.6875vw, 90px) clamp(55.2px, 7.1875vw, 138px);
  }
}

.philosophy__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .philosophy__title {
    gap: 40px;
  }
}

.philosophy__title-sub {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .philosophy__title-sub {
    font-size: 23px;
  }
}
.philosophy__title-sub::after {
  position: absolute;
  content: "／";
  bottom: -30px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .philosophy__title-sub::after {
    bottom: -40px;
  }
}

.philosophy__title-main {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 768px) {
  .philosophy__title-main {
    font-size: 40px;
    line-height: 1.6;
  }
}

.philosophy__text {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .philosophy__text {
    margin-top: 30px;
    font-size: 17px;
  }
}

/* ===========================================
会社概要
=========================================== */
.company {
  position: relative;
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .company {
    padding-top: 60px;
  }
}

.company__heading {
  position: absolute;
  top: 0;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .company__heading {
    position: relative;
    top: initial;
    left: initial;
    padding-inline: 100px;
    max-width: 1155px;
    width: 100%;
    margin-inline: auto;
    gap: 20px;
  }
}
.company__heading.is-appear .company__heading-en span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.company__heading-en {
  font-family: var(--font-family-base-en);
  color: var(--theme-color-blue);
  font-size: 51px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  clip-path: inset(0 0 -10px 0);
}
@media screen and (min-width: 768px) {
  .company__heading-en {
    font-size: 106px;
  }
}
.company__heading-en span {
  font-weight: inherit;
  display: block;
  -webkit-transition: all var(--heading-fade-time) ease;
  transition: all var(--heading-fade-time) ease;
  -webkit-transform: translateY(calc(100% + 2px));
          transform: translateY(calc(100% + 2px));
}

.company__heading-ja {
  color: var(--theme-color-blue);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .company__heading-ja {
    font-size: 30px;
  }
}

.company__wrapper {
  --bg-shift-top: -88px;
  background: var(--theme-color-l-blue);
  width: 92.8%;
}
@media screen and (min-width: 768px) {
  .company__wrapper {
    position: relative;
    background: none;
    width: 100%;
  }
  .company__wrapper::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: var(--bg-shift-top);
    left: 0;
    width: 92.5520833333%;
    height: calc(100% - var(--bg-shift-top));
    background: var(--theme-color-l-blue);
  }
}

.company__list {
  padding: 78px 30px 67px 30px;
}
@media screen and (min-width: 768px) {
  .company__list {
    padding-top: 148px;
    padding-bottom: 200px;
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1155px;
    margin-inline: auto;
  }
}

.company__list-item {
  border-bottom: 1px solid var(--theme-color-blue-gray);
  padding-top: 13px;
  padding-bottom: 11px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .company__list-item {
    padding-top: 23px;
    padding-bottom: 22px;
    grid-template-columns: 184px 1fr;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0;
  }
}

.company__list-head {
  font-size: 15px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .company__list-head {
    font-size: 18px;
  }
}

.company__list-body {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .company__list-body {
    font-size: 18px;
  }
}

.company__sub-list {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 11px;
}
@media screen and (min-width: 768px) {
  .company__sub-list {
    gap: 12px;
  }
}

.company__map {
  margin-top: 16px;
  display: inline-block;
  width: 100%;
  aspect-ratio: 285/151;
}

/* ===========================================
FV
=========================================== */
.page-fv__image-wrapper--works {
  background: url(../img/works/works-fv.webp) no-repeat center bottom/cover;
}

/* ===========================================
product
=========================================== */
.product {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .product {
    padding-top: 152px;
    padding-bottom: 183px;
  }
}

.product__inner {
  padding-inline: 20px;
  max-width: 640px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .product__inner {
    padding-inline: 40px;
    max-width: 1000px;
  }
}

.product__heading {
  position: relative;
  color: var(--theme-color-blue);
  font-size: 22px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .product__heading {
    font-size: 30px;
  }
}
.product__heading::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 116px;
  width: calc(100% - 116px);
  height: 1px;
  background: var(--theme-color-blue);
}
@media screen and (min-width: 768px) {
  .product__heading::after {
    left: 160px;
    width: calc(100% - 160px);
  }
}

.product__cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .product__cards {
    margin-top: 73px;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 104px;
  }
}

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .product-card {
    gap: 15px;
  }
}

.product-card__image img {
  width: 100%;
}

.product-card__list-item {
  color: var(--theme-color-blue);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .product-card__list-item {
    font-size: 14px;
  }
}

.product__text {
  margin-top: 60px;
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .product__text {
    font-size: 17px;
	margin-top: 4em;
  }
}

.product__buttons {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .product__buttons {
    margin-top: 68px;
  }
}

/* ===========================================
設備紹介
=========================================== */
.page-equ__inner {
  padding-inline: 30px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-equ__inner {
    padding-inline: 100px;
    max-width: 1080px;
  }
}

.page-equ__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .page-equ__heading {
    gap: 0;
  }
}
.page-equ__heading.is-appear span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.page-equ__heading-en {
  font-family: var(--font-family-base-en);
  color: var(--theme-color-blue);
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-equ__heading-en {
    font-size: 95px;
  }
}
.page-equ__heading-en span {
  font-weight: inherit;
  display: block;
  -webkit-transition: all var(--heading-fade-time) ease;
  transition: all var(--heading-fade-time) ease;
  -webkit-transform: translateY(calc(100% + 2px));
          transform: translateY(calc(100% + 2px));
}

.page-equ__heading-ja {
  color: var(--theme-color-blue);
  font-size: 15px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .page-equ__heading-ja {
    font-size: 30px;
  }
}

.page-equ__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .page-equ__content {
    margin-top: 70px;
  }
}

.page-equ__content-head {
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .page-equ__content-head {
    gap: 122px;
  }
}

.page-equ__content-text {
  color: var(--theme-color-blue);
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .page-equ__content-text {
    line-height: 2;
  }
}

.page-equ__content-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 252px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .page-equ__content-buttons {
    grid-template-columns: repeat(4, 252px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-equ__content-buttons {
    grid-template-columns: repeat(2, 252px);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .page-equ__content-buttons {
    grid-template-columns: repeat(2, 252px);
  }
}

.page-equ__content-button.button {
  min-width: 252px;
  font-size: 17px;
  padding: 29px 24px;
}
.page-equ__content-button.button::after {
  top: auto;
  bottom: 1em;
  left: 50%;
  right: auto;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.3s ease;
  transition: bottom 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .page-equ__content-button:hover::after {
    bottom: 0.5em;
  }
}

.page-equ__equ-box {
  pointer-events: none;
}
.page-equ__equ-box:nth-of-type(1) {
  position: relative;
  margin-top: -277px;
  padding-top: 360px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .page-equ__equ-box:nth-of-type(1) {
    margin-top: -305px;
    padding-top: 440px;
    padding-bottom: 240px;
  }
}
.page-equ__equ-box:nth-of-type(1)::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  right: 0;
  width: 95vw;
  height: 100%;
  background: var(--theme-color-l-blue);
}
.page-equ__equ-box:nth-of-type(2) {
  position: relative;
  margin-top: -125px;
  padding-top: 200px;
  padding-bottom: 150px;
}
@media screen and (min-width: 768px) {
  .page-equ__equ-box:nth-of-type(2) {
    margin-top: -368px;
    padding-top: 489px;
    padding-bottom: 443px;
  }
}
.page-equ__equ-box:nth-of-type(2)::before {
  position: absolute;
  z-index: -2;
  content: "";
  top: 0;
  right: auto;
  left: 0;
  width: 95vw;
  height: 100%;
  background: var(--theme-color-l-l-blue);
}
.page-equ__equ-box:nth-of-type(3) {
  position: relative;
  margin-top: -105px;
  padding-top: 100px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .page-equ__equ-box:nth-of-type(3) {
    margin-top: -285px;
    padding-top: 239px;
    padding-bottom: 217px;
  }
}
.page-equ__equ-box:nth-of-type(3)::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  right: 0;
  width: 95vw;
  height: 100%;
  background: var(--theme-color-l-blue);
}
.page-equ__equ-box:nth-of-type(4) {
  position: relative;
  margin-top: -125px;
  padding-top: 200px;
  padding-bottom: 150px;
}
@media screen and (min-width: 768px) {
  .page-equ__equ-box:nth-of-type(4) {
    margin-top: -278px;
    padding-top: 412px;
  }
}
.page-equ__equ-box:nth-of-type(4)::before {
  position: absolute;
  z-index: -2;
  content: "";
  top: 0;
  left: 0;
  right: auto;
  width: 95vw;
  height: 100%;
  background: var(--theme-color-l-l-blue);
}

.equ-box__content {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .equ-box__content {
    gap: 112px;
  }
}

.equ-box__description {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .equ-box__description {
    grid-template-columns: 1fr 43.2407407407%;
    gap: 42px;
  }
}

.equ-box__name {
  position: relative;
  color: var(--theme-color-blue);
  font-size: 26px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .equ-box__name {
    font-size: 35px;
  }
}
.equ-box__name::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--theme-color-blue);
}

.equ-box__list {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .equ-box__list {
    margin-top: 80px;
  }
}

.equ-box__list-item {
  font-size: 17px;
}

.equ-box__size {
  margin-top: 30px;
}

.equ-box__size-head {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .equ-box__size-head {
    margin-top: 80px;
    font-size: 24px;
  }
}
.equ-box__size-head::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--theme-color-blue);
}

.equ-box__size__body {
  margin-top: 12px;
  font-size: 14px;
}

.equ-box__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .equ-box__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}
.equ-box__images img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .equ-box__images img {
    max-width: 467px;
  }
}

.equ-box__case-head {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .equ-box__case-head {
    font-size: 22px;
  }
}

.equ-box__case-images {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .equ-box__case-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
  }
}

/* ===========================================
お問合せ
=========================================== */
/* ===========================================
FV
=========================================== */
.page-fv__image-wrapper--recruit {
  background: url(../img/recruit/recruit-fv.webp) no-repeat center bottom/cover;
}

/* ===========================================
募集要項
=========================================== */
.job {
  --wrapper-margin-left: calc(27px / 375px * 100%);
  position: relative;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .job {
    padding-top: 230px;
  }
}

.job__heading {
  position: absolute;
  top: 0;
  left: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}
@media screen and (min-width: 768px) {
  .job__heading {
    position: relative;
    top: initial;
    left: initial;
    padding-inline: 100px;
    max-width: 1155px;
    width: 100%;
    margin-inline: auto;
    gap: 20px;
  }
}
.job__heading.is-appear .job__heading-en span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.job__heading-en {
  font-family: var(--font-family-base-en);
  color: var(--theme-color-blue);
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .job__heading-en {
    font-size: 63px;
  }
}
.job__heading-en span {
  font-weight: inherit;
  display: block;
  -webkit-transition: all var(--heading-fade-time) ease;
  transition: all var(--heading-fade-time) ease;
  -webkit-transform: translateY(calc(100% + 2px));
          transform: translateY(calc(100% + 2px));
}

.job__heading-ja {
  color: var(--theme-color-blue);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .job__heading-ja {
    font-size: 30px;
  }
}

.job__wrapper {
  position: relative;
  background: var(--theme-color-l-blue);
  margin-left: var(--wrapper-margin-left);
  width: calc(100% - var(--wrapper-margin-left));
}

.job__list {
  padding: 90px 30px 67px 30px;
}
@media screen and (min-width: 768px) {
  .job__list {
    padding-top: 112px;
    padding-bottom: 200px;
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1155px;
    margin-inline: auto;
  }
}

.job__list-item {
  border-bottom: 1px solid var(--theme-color-blue-gray);
  padding-top: 16px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .job__list-item {
    padding-top: 23px;
    padding-bottom: 22px;
    grid-template-columns: 184px 1fr;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0;
  }
}

.job__list-head {
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .job__list-head {
    font-size: 18px;
    font-weight: 400;
  }
}

.job__list-body {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .job__list-body {
    font-size: 18px;
  }
}

/* ===========================================
お問合せメッセージ
=========================================== */
.recruit-message {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .recruit-message {
    padding-top: 179px;
  }
}

.recruit-message__inner {
  padding-inline: 20px;
  max-width: 640px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .recruit-message__inner {
    padding-inline: 40px;
    max-width: 1160px;
  }
}

.recruit-message__text {
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .recruit-message__text {
    font-size: 22px;
    line-height: 2;
  }
}

/* ===========================================
FV
=========================================== */
.page-fv__image-wrapper--contact {
  background: url(../img/contact/contact-fv.webp) no-repeat center bottom/cover;
}

.contact-area {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .contact-area {
    padding-top: 105px;
    padding-bottom: 150px;
  }
}

.contact-area__inner {
  padding-inline: 20px;
  max-width: 811px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact-area__inner {
    padding-inline: 40px;
    max-width: 851px;
  }
}

/* ===========================================
FV
=========================================== */
.page-fv__image-wrapper--news {
  background: url(../img/news/news-fv.webp) no-repeat center bottom/cover;
}

.archive {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .archive {
    padding-top: 120px;
    padding-bottom: 250px;
  }
}

.archive__inner {
  padding-inline: 20px;
  max-width: 1120px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .archive__inner {
    padding-inline: 40px;
    max-width: 1000px;
  }
}

.archive__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.archive-card {
  display: grid;
  grid-template-columns: 39.7014925373% 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--theme-color-gray);
}
@media screen and (min-width: 768px) {
  .archive-card {
    grid-template-columns: 29.1666666667% 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .archive-card {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .archive-card:hover .archive-card__image img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.archive-card__image {
  overflow: hidden;
	border: 1px solid rgb(38, 43, 51, 0.2);
}
.archive-card__image img {
  width: 100%;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.archive-card__body {
  font-size: 0;
}
.archive-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .archive-card__info {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 20px;
  }
}

.archive-card__cat {
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  background: var(--theme-color-blue);
  color: var(--font-color-white);
  padding: 4px 8px;
  font-size: 9px;
  line-height: 1;
  min-width: 53px;
}
@media screen and (min-width: 768px) {
  .archive-card__cat {
    font-size: 15px;
  }
}

.archive-card__date {
  font-size: 13px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .archive-card__date {
    font-size: 19px;
  }
}

.archive-card__title {
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .archive-card__title {
    margin-top: 15px;
    font-size: 25px;
  }
}

.archive__pagination {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .archive__pagination {
    margin-top: 185px;
  }
}

.single {
  padding-top: 48px;
  padding-bottom: 104px;
}
@media screen and (min-width: 768px) {
  .single {
    padding-top: 150px;
    padding-bottom: 284px;
  }
}

.single__inner {
  padding-inline: 20px;
  max-width: 580px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .single__inner {
    padding-inline: 100px;
    max-width: 1280px;
  }
}

.single__heading {
  position: relative;
}
.single__heading::after {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--theme-color-gray);
}

.single__heading-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .single__heading-info {
    gap: 16px;
  }
}

.single__date {
  font-size: 15px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .single__date {
    font-size: 19px;
  }
}

.single__cat {
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--theme-color-blue);
  color: var(--font-color-white);
  padding: 4px 8px;
  font-size: 9px;
  line-height: 1;
  min-width: 53px;
}
@media screen and (min-width: 768px) {
  .single__cat {
    min-width: 75px;
    font-size: 15px;
    padding: 6px 16px;
  }
}

.single__title {
  margin-top: 18px;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .single__title {
    margin-top: 24px;
    font-size: 35px;
  }
}

.single__content {
  margin-top: 67px;
  padding-bottom: 107px;
}
@media screen and (min-width: 768px) {
  .single__content {
    margin-top: 84px;
    padding-bottom: 205px;
  }
}
.single__content p {
  font-size: 15px;
  line-height: 2.8;
}
@media screen and (min-width: 768px) {
  .single__content p {
    font-size: 18px;
    line-height: 2.33;
  }
}
.single__content .wp-post-image {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .single__content .wp-post-image {
    width: 62.6851851852%;
    margin-bottom: 100px;
  }
}

.single__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.not-found {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .not-found {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.not-found__inner {
  padding-inline: 20px;
  max-width: 1120px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .not-found__inner {
    padding-inline: 100px;
    max-width: 740px;
  }
}

.not-found__buttons {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.privacy {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.privacy__inner {
  padding-inline: 20px;
  max-width: 1120px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .privacy__inner {
    padding-inline: 100px;
    max-width: 1280px;
  }
}

.privacy__content h2 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .privacy__content h2 {
    margin-top: 40px;
    font-size: 40px;
  }
}
.privacy__content p {
  margin-top: 20px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .privacy__content p {
    margin-top: 30px;
    font-size: 20px;
  }
}

.privacy__buttons {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@font-face {
  font-family: "Google Sans";
  src: url("../fonts/GoogleSans-BoldItalic.woff2") format("woff2"), url("../fonts/GoogleSans-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
:root {
  --font-size-base: 16px;
  --font-weight-base: 400;
  --line-height-base: 1.75;
  --font-family-base-ja: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --font-family-base-en: "Google Sans", sans-serif;
  --font-color-black: #333;
  --font-color-white: #fff;
  --font-color-gray: #c4c4c4;
  --font-color-loading-prev: #e3e3e3;
  --font-color-loading-next: #4d4d4d;
  --theme-color-blue: #2b69ba;
  --theme-color-d-blue: #225393;
  --theme-color-l-blue: #d0e1ff;
  --theme-color-l-l-blue: #e6effc;
  --theme-color-blue-gray: #8092b6;
  --theme-color-l-gray: #bbcce5;
  --theme-color-red: #ff0000;
  --theme-color-white: #fff;
  --theme-color-black: #333;
  --theme-color-gray: #aaa;
  --works-hover-bg: #2b69cd;
  --inner-width: 20px;
  --header-height: 68px;
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: 5em;
  }
}
:root {
  --heading-fade-time: 0.8s;
}

/* ===========================================
共通設定
=========================================== */
body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--font-color-black);
  font-family: var(--font-family-base-ja);
  font-weight: var(--font-weight-base);
  position: relative;
  overflow-wrap: anywhere;
  word-break: normal;
  overflow-x: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

main {
  position: relative;
}

.inline-block {
  display: inline-block;
  font-weight: inherit;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-tb {
    display: none;
  }
}

.prevent-scroll {
  overflow: hidden;
}

.inner {
  padding-inline: var(--inner-width);
  max-width: calc(375px + var(--inner-width) * 2);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: var(--inner-width);
    max-width: calc(1100px + var(--inner-width) * 2);
    margin-inline: auto;
  }
}

/* ===========================================
/共通設定
=========================================== */
/* ===========================================
トップページ
=========================================== */
/* ===========================================
ファーストビュー
=========================================== */
.top-fv {
  position: relative;
}

.top-fv__video-wrapper {
  width: 100%;
}

.top-fv__video {
  width: 100%;
  aspect-ratio: 375/418;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-fv__video {
    aspect-ratio: 1920/1080;
  }
}

.top-fv__text-wrapper {
  position: absolute;
  bottom: 38px;
  left: 22px;
}
@media screen and (min-width: 768px) {
  .top-fv__text-wrapper {
    bottom: clamp(40px, 28.405vw - 178.148px, 113px);
    left: clamp(40px, 24.514vw - 148.265px, 103px);
  }
}

.top-fv__text-en {
  font-family: var(--font-family-base-en);
  color: var(--font-color-white);
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-fv__text-en {
    font-size: 70px;
  }
}

.top-fv__text-ja {
  color: var(--font-color-white);
  font-weight: 600;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .top-fv__text-ja {
    font-size: 28px;
  }
}

/* ===========================================
有馬製作所とは
=========================================== */
.top-about {
  padding-top: 53px;
  padding-bottom: 15px;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .top-about {
    padding-top: 110px;
    padding-bottom: 10px;
  }
}

.top-about__inner {
  padding-inline: 20px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-about__inner {
    padding-inline: 40px;
    max-width: 1150px;
  }
}

.top-about__heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 768px) {
  .top-about__heading {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}
.top-about__heading::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--theme-color-blue);
}
@media screen and (min-width: 768px) {
  .top-about__heading::after {
    width: calc(100vw - (100% + 62px));
    left: calc(100% + 62px);
    bottom: 49px;
  }
}
.top-about__heading.is-appear .top-about__heading-en span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.top-about__heading-en {
  color: var(--theme-color-blue);
  font-family: var(--font-family-base-en);
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-about__heading-en {
    font-size: 100px;
  }
}
.top-about__heading-en span {
  font-weight: inherit;
  display: block;
  -webkit-transition: -webkit-transform var(--heading-fade-time) ease;
  transition: -webkit-transform var(--heading-fade-time) ease;
  transition: transform var(--heading-fade-time) ease;
  transition: transform var(--heading-fade-time) ease, -webkit-transform var(--heading-fade-time) ease;
  -webkit-transform: translateY(calc(100% + 2px));
          transform: translateY(calc(100% + 2px));
}

.top-about__heading-ja {
  color: var(--theme-color-blue);
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .top-about__heading-ja {
    font-size: 22px;
  }
}

.top-about__content {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .top-about__content {
    margin-top: 72px;
    position: relative;
  }
}

.top-about__text1 {
  font-size: clamp(19px, 8vw - 9px, 21px);
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-about__text1 {
    font-size: 37px;
    line-height: 1.75;
  }
}

.top-about__text2 {
  margin-top: 15px;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top-about__text2 {
    margin-top: 42px;
    font-size: 17px;
  }
}

.top-about__buttons {
  margin-top: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .top-about__buttons {
    margin-top: 81px;
    gap: 30px;
  }
}

.top-about__image {
  position: relative;
  margin-top: 48px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .top-about__image {
    margin-top: 0;
    text-align: initial;
    position: absolute;
    top: 17px;
    right: calc(-1 * clamp(40px, 13.631vw - 99.721px, 162px));
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-about__image {
    position: relative;
    margin-top: 48px;
    text-align: right;
    top: initial;
    right: initial;
  }
}
.top-about__image img {
  max-width: 250px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-about__image img {
    width: clamp(400px, 26.145vw + 132.011px, 634px);
    max-width: initial;
  }
}

/* ===========================================
有馬製作所とは
=========================================== */
.top-works {
  position: relative;
  z-index: 10;
  padding-top: 59px;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .top-works {
    padding-top: 198px;
  }
}

.top-works__inner {
  padding-left: 33px;
}
@media screen and (min-width: 768px) {
  .top-works__inner {
    padding-left: 138px;
  }
}

.top-works__heading {
  position: relative;
  top: -49px;
}
@media screen and (min-width: 768px) {
  .top-works__heading {
    top: -50px;
  }
}
.top-works__heading::before {
  position: absolute;
  content: "";
  top: 16px;
  left: -1px;
  width: 25px;
  height: 1px;
  background: var(--theme-color-blue);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .top-works__heading::before {
    left: 101px;
    width: 36px;
  }
}
.top-works__heading.is-appear .top-works__heading-en span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.top-works__heading-en {
  position: absolute;
  top: 79px;
  left: -55px;
  font-family: var(--font-family-base-en);
  color: var(--theme-color-blue);
  font-size: 41px;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
  height: 1.2em;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  clip-path: inset(0 0 -10px 0);
}
@media screen and (min-width: 768px) {
  .top-works__heading-en {
    font-size: 117px;
    top: 100px;
    left: -150px;
  }
}
.top-works__heading-en span {
  font-weight: inherit;
  display: block;
  -webkit-transition: -webkit-transform var(--heading-fade-time) ease;
  transition: -webkit-transform var(--heading-fade-time) ease;
  transition: transform var(--heading-fade-time) ease;
  transition: transform var(--heading-fade-time) ease, -webkit-transform var(--heading-fade-time) ease;
  -webkit-transform: translateY(calc(100% + 2px));
          transform: translateY(calc(100% + 2px));
}

.top-works__heading-ja {
  position: absolute;
  top: 0;
  left: 22px;
  color: var(--theme-color-blue);
  font-size: 18px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-works__heading-ja {
    font-size: 25px;
    top: -6px;
    left: 149px;
  }
}

.top-works__image {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .top-works__image {
    top: 8px;
    right: 83px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-works__image {
    right: 0;
  }
}
.top-works__image img {
  max-width: 178px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-works__image img {
    max-width: initial;
    width: 452px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-works__image img {
    max-width: initial;
    width: 340px;
  }
}

.top-works__content {
  background: var(--theme-color-l-blue);
  padding-top: 80px;
  padding-bottom: 79px;
  padding-left: 42px;
  padding-right: 41px;
}
@media screen and (min-width: 768px) {
  .top-works__content {
    padding-top: 155px;
    padding-bottom: 150px;
    padding-left: clamp(80px, 17.535vw - 54.667px, 282px);
    padding-right: 16px;
  }
}

.top-works__text1 {
  color: var(--theme-color-blue);
  font-size: 21px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-works__text1 {
    font-size: 37px;
  }
}

.top-works__text2 {
  margin-top: 24px;
  color: var(--theme-color-blue);
}
@media screen and (min-width: 768px) {
  .top-works__text2 {
    font-size: 17px;
  }
}

.top-works__items {
  position: relative;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .top-works__items {
    margin-top: 73px;
  }
}

.items-swiper {
  position: relative;
  overflow: unset;
  clip-path: inset(0 -50vw 0 0);
  padding-bottom: 39px;
}
@media screen and (min-width: 768px) {
  .items-swiper {
    padding-bottom: 102px;
  }
}

.items-swiper__slide {
  width: 174px;
}
@media screen and (min-width: 768px) {
  .items-swiper__slide {
    width: 340px;
  }
}

.slide-content__link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 43px;
}
@media screen and (min-width: 768px) {
  .slide-content__link {
    gap: 48px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .slide-content__link:hover .slide-content__image::before, .slide-content__link:hover .slide-content__image::after {
    opacity: 1;
    visibility: visible;
  }
}

.slide-content__image {
  position: relative;
}
.slide-content__image img {
  width: 100%;
}
.slide-content__image::before {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: attr(data-txt);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 105, 205, 0.85);
  color: var(--theme-color-white);
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slide-content__image::after {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: "";
  top: 50%;
  right: 1em;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid var(--font-color-white);
  border-right: 1px solid var(--font-color-white);
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slide-content__body {
  position: relative;
}
.slide-content__body::before {
  position: absolute;
  content: "";
  top: -16px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--theme-color-l-gray);
}
@media screen and (min-width: 768px) {
  .slide-content__body::before {
    top: -24px;
  }
}

.slide-content__list-item {
  color: var(--theme-color-blue);
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .slide-content__list-item {
    font-size: 16px;
  }
}

.items-swiper__buttons {
  position: absolute;
  left: 0;
  top: auto !important;
  bottom: 0 !important;
  width: 80px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .items-swiper__buttons {
    width: 144px;
    height: 65px;
  }
}

.items-swiper__prev,
.items-swiper__next {
  position: relative;
  top: initial !important;
  bottom: initial !important;
  left: initial !important;
  right: initial !important;
  margin-top: 0 !important;
  border: 0.5px solid var(--theme-color-blue);
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--theme-color-blue);
}
@media screen and (min-width: 768px) {
  .items-swiper__prev,
  .items-swiper__next {
    width: 65px;
    height: 65px;
  }
}
.items-swiper__prev svg,
.items-swiper__next svg {
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 768px) {
  .items-swiper__prev svg,
  .items-swiper__next svg {
    width: 16px;
    height: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .items-swiper__prev,
  .items-swiper__next {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .items-swiper__prev:hover,
  .items-swiper__next:hover {
    background: var(--theme-color-blue);
    color: var(--font-color-white);
  }
}

.swiper-navigation-icon {
  display: none;
}

/* ===========================================
設備紹介
=========================================== */
.top-equ {
  margin-top: -113px;
  position: relative;
  z-index: 1;
  padding-top: 534px;
  padding-bottom: 80px;
  overflow-x: hidden;
  background: url(../img/equ-bg.webp) no-repeat left center/calc(100% - 20px) 100%;
}
@media screen and (min-width: 768px) {
  .top-equ {
    margin-top: -149px;
    padding-top: 428px;
    padding-bottom: 279px;
    background: url(../img/equ-bg-pc.webp) no-repeat left center/81.3541666667% 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-equ {
    background-size: 90% 100%;
  }
}

.top-equ__image1 {
  position: absolute;
  top: 150px;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform: translateX(-110px);
          transform: translateX(-110px);
}
@media screen and (min-width: 768px) {
  .top-equ__image1 {
    top: 274px;
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-equ__image1 {
    top: 150px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.top-equ__image1 img {
  width: 254px;
}
@media screen and (min-width: 768px) {
  .top-equ__image1 img {
    width: clamp(350px, 39.553vw - 55.419px, 704px);
  }
}

.top-equ__image2 {
  position: absolute;
  top: 335px;
  left: 50%;
  -webkit-transform: translateX(-52px);
          transform: translateX(-52px);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .top-equ__image2 {
    top: clamp(530px, 27.933vw + 243.687px, 780px);
    -webkit-transform: translateX(clamp(190px, 12.291vw + 64.022px, 300px));
            transform: translateX(clamp(190px, 12.291vw + 64.022px, 300px));
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-equ__image2 {
    top: 400px;
    -webkit-transform: translateX(143px);
            transform: translateX(143px);
  }
}
.top-equ__image2 img {
  width: 240px;
}
@media screen and (min-width: 768px) {
  .top-equ__image2 img {
    width: clamp(320px, 38.436vw - 73.966px, 664px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-equ__image2 img {
    width: clamp(240px, 42.969vw - 90px, 350px);
  }
}

.top-equ__inner {
  padding-left: 36px;
  padding-right: 36px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-equ__inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
    margin-inline: auto;
  }
}

.top-equ__heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  clip-path: inset(0 0 -40px 0);
}
@media screen and (min-width: 768px) {
  .top-equ__heading {
    gap: 30px;
    clip-path: inset(0 0 -80px 0);
  }
}
.top-equ__heading::after {
  position: absolute;
  content: "";
  bottom: -26px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--font-color-white);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .top-equ__heading::after {
    bottom: -61px;
    width: 40px;
  }
}
.top-equ__heading.is-appear .top-equ__heading-en span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.top-equ__heading-ja {
  color: var(--font-color-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-equ__heading-ja {
    font-size: 22px;
  }
}

.top-equ__heading-en {
  font-family: var(--font-family-base-en);
  color: var(--font-color-white);
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-equ__heading-en {
    font-size: 82px;
  }
}
.top-equ__heading-en span {
  font-weight: inherit;
  display: block;
  -webkit-transition: all var(--heading-fade-time) ease;
  transition: all var(--heading-fade-time) ease;
  -webkit-transform: translateY(calc(100% + 2px));
          transform: translateY(calc(100% + 2px));
}

.top-equ__content {
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .top-equ__content {
    margin-top: 106px;
  }
}

.top-equ__text1 {
  color: var(--font-color-white);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .top-equ__text1 {
    font-size: 32px;
  }
}

.top-equ__text2 {
  margin-top: 32px;
  color: var(--font-color-white);
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-equ__text2 {
    margin-top: 36px;
    font-size: 17px;
    line-height: 2.5;
  }
}

.top-equ__buttons {
  margin-top: 49px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .top-equ__buttons {
    margin-top: 72px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

/* ===========================================
採用
=========================================== */
.top-recruit {
  padding-top: 195px;
  padding-bottom: 209px;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .top-recruit {
    padding-top: 188px;
    padding-bottom: 159px;
  }
}

.top-recruit__inner {
  position: relative;
  padding-inline: 31px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-recruit__inner {
    padding-inline: 100px;
    max-width: 1278px;
  }
}

.top-recruit__top-image {
  position: absolute;
  top: -130px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .top-recruit__top-image {
    top: -80px;
    left: 224px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    clip-path: inset(0 150px 0 0);
  }
}
.top-recruit__top-image img {
  max-width: 310px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-recruit__top-image img {
    max-width: 674px;
  }
}

.top-recruit__bottom-image {
  position: absolute;
  bottom: -130px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .top-recruit__bottom-image {
    bottom: -80px;
    right: 125px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    clip-path: inset(0 0 0 60px);
  }
}
.top-recruit__bottom-image img {
  max-width: 310px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-recruit__bottom-image img {
    max-width: 674px;
  }
}

.top-recruit__content {
  position: relative;
  padding: 24px 16px 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-recruit__content {
    padding: 190px 32px 32px 32px;
    gap: 25px;
  }
}
.top-recruit__content::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top-recruit-content-bg.webp) no-repeat center center/cover;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (hover: hover) and (pointer: fine) {
  .top-recruit__content:hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.top-recruit__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.top-recruit__heading.is-appear .top-recruit-en span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.top-recruit-ja {
  color: var(--font-color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-recruit-ja {
    font-size: 22px;
  }
}

.top-recruit-en {
  font-family: var(--font-family-base-en);
  color: var(--font-color-white);
  font-size: 50px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-recruit-en {
    font-size: 90px;
  }
}
.top-recruit-en span {
  font-weight: inherit;
  display: block;
  -webkit-transition: all var(--heading-fade-time) ease;
  transition: all var(--heading-fade-time) ease;
  -webkit-transform: translateY(calc(100% + 2px));
          transform: translateY(calc(100% + 2px));
}

.top-recruit__message-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-recruit__message {
  position: relative;
  background: var(--theme-color-white);
  color: var(--font-color-black);
  width: 100%;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.top-recruit__message::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1rem;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .top-recruit__message {
    position: relative;
    padding: 24px 80px;
    font-size: 17px;
  }
  .top-recruit__message::before {
    position: absolute;
    content: "";
    width: 36px;
    height: 1px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 50%;
    left: 28px;
    background: var(--font-color-black);
  }
}

/* ===========================================
採用
=========================================== */
.top-news {
  padding-bottom: 85px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-news {
    padding-bottom: 172px;
  }
}

.top-news__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding-inline: 16px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-news__heading {
    padding-inline: 40px;
    max-width: 1200px;
  }
}
.top-news__heading::after {
  position: absolute;
  content: "";
  top: 42px;
  left: 0;
  width: 100vw;
  height: 1px;
  background: var(--theme-color-blue);
}
@media screen and (min-width: 768px) {
  .top-news__heading::after {
    top: 75px;
  }
}
.top-news__heading.is-appear .top-news__heading-en span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.top-news__heading-en {
  font-family: var(--font-family-base-en);
  color: var(--theme-color-blue);
  font-size: 50px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-news__heading-en {
    font-size: 90px;
  }
}
.top-news__heading-en span {
  font-weight: inherit;
  display: block;
  -webkit-transform: translateY(calc(100% + 2px));
          transform: translateY(calc(100% + 2px));
  -webkit-transition: all var(--heading-fade-time) ease;
  transition: all var(--heading-fade-time) ease;
}

.top-news__heading-ja {
  color: var(--theme-color-blue);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .top-news__heading-ja {
    font-size: 30px;
  }
}

.top-news__inner {
  padding-inline: 20px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-news__inner {
    padding-inline: 40px;
    max-width: 1035px;
  }
}

.top-news__content {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 73px;
}
@media screen and (min-width: 768px) {
  .top-news__content {
    margin-top: 105px;
    gap: 137px;
  }
}

.top-news__item {
  border-bottom: 1px solid var(--theme-color-blue-gray);
}

.top-news__link {
  position: relative;
  padding-top: 24px;
  padding-bottom: 21px;
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  grid-template-rows: -webkit-max-content -webkit-max-content;
  grid-template-rows: max-content max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .top-news__link {
    padding-top: 34px;
    padding-bottom: 27px;
    grid-template-columns: -webkit-max-content -webkit-max-content 1fr;
    grid-template-columns: max-content max-content 1fr;
    grid-template-rows: -webkit-max-content;
    grid-template-rows: max-content;
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
    row-gap: 0;
  }
}
.top-news__link::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0.5em;
  width: 9px;
  height: 9px;
  border-bottom: 1px solid var(--theme-color-blue);
  border-right: 1px solid var(--theme-color-blue);
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .top-news__link {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .top-news__link:hover {
    opacity: 0.7;
  }
}

.top-news__date {
  display: inline-block;
  letter-spacing: 0.08em;
}

.top-news__cat {
  display: inline-block;
  background: var(--theme-color-blue);
  color: var(--font-color-white);
  font-size: 14px;
  line-height: 1.5;
  padding-inline: 1em;
}
@media screen and (min-width: 768px) {
  .top-news__cat {
    font-size: 16px;
    padding-inline: 2em;
  }
}

.top-news__title {
  font-size: 18px;
  letter-spacing: 0.08em;
  grid-column: 1/3;
}
@media screen and (min-width: 768px) {
  .top-news__title {
    font-size: 20px;
    grid-column: initial;
  }
}

.top-news__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ===========================================
お問合せ
=========================================== */
.top-contact.contact {
  padding-top: 0;
}