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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

picture, img {
  display: block;
  width: 100%;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.l-header {
  box-shadow: none;
}

.l-container {
  max-width: none;
  padding: 0;
}

.l-footer {
  background: inherit;
  color: inherit;
}

.l-article {
  max-width: none;
}

@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-weight: 400 700;
  src: url("../fonts/NotoSansJP-VariableFont_wght.woff2") format("woff2"), url("../fonts/NotoSansJP-VariableFont_wght.woff") format("woff");
}
@keyframes fadeinTop {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes fadeinBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes fadeinRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}
@keyframes fadeinLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}
@keyframes fadeoutBottom {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #212121;
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.48;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  font: inherit;
  color: inherit;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

:root {
  --section-gap: 48px;
}
@media screen and (min-width: 744px) {
  :root {
    --section-gap: 88px;
  }
}

/*——————————————————————
コンテンツ幅
——————————————————————*/
.l-container {
  --max: 100rem;
  margin: 0 auto;
  width: min(100% - 3rem, var(--max));
}
.l-container.--wide {
  --max: 120rem;
}

.l-header {
  --humb-bg: #2362C0;
  --humb-color: #fff;
  --desc-color: #2362C0;
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding-left: 16px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.l-header.is-fixed {
  --humb-bg: #fff;
  --humb-color: #212121;
  --desc-color: #fff;
  background: none;
  position: fixed;
}
.l-header-branding {
  display: grid;
  gap: 5px;
}
.l-header-branding__desc {
  color: var(--desc-color);
  font-size: 0.75em;
  font-weight: 400;
}
.l-header-branding__logo {
  width: max-content;
}
.l-header-branding__logo img {
  height: 3rem;
}
.l-header-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  margin-right: 24px;
}
@media screen and (max-width: 1023px) {
  .l-header-nav {
    display: none;
  }
}
.l-header-hamburger {
  --size: 7rem;
}
.l-header-hamburger-btn {
  align-items: center;
  background: var(--humb-bg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 11.4%;
  height: var(--size);
  justify-content: center;
  padding-top: 4px;
  position: relative;
  width: var(--size);
  z-index: 2;
}
.l-header-hamburger-btn::after {
  color: var(--humb-color);
  content: "MENU";
  font-size: 1rem;
  line-height: 1;
}
.l-header-hamburger-btn__line {
  height: 22%;
  position: relative;
  width: 54%;
}
.l-header-hamburger-btn__line span {
  background: var(--humb-color);
  display: block;
  height: 1px;
  position: absolute;
  transform-origin: center;
  transition: 0.4s;
  width: 100%;
}
.l-header-hamburger-btn__line span:nth-child(1) {
  top: 0;
}
.l-header-hamburger-btn__line span:nth-child(2) {
  bottom: 0;
  margin: auto;
  top: 0;
}
.l-header-hamburger-btn__line span:nth-child(3) {
  bottom: 0;
}
.l-header-hamburger-btn.is-open .l-header-hamburger-btn__line {
  width: 40%;
}
.l-header-hamburger-btn.is-open .l-header-hamburger-btn__line span {
  bottom: 0;
  margin: auto;
  top: 0;
}
.l-header-hamburger-btn.is-open .l-header-hamburger-btn__line span:nth-child(1) {
  rotate: 45deg;
  translate: 0 0;
}
.l-header-hamburger-btn.is-open .l-header-hamburger-btn__line span:nth-child(2) {
  opacity: 0;
}
.l-header-hamburger-btn.is-open .l-header-hamburger-btn__line span:nth-child(3) {
  rotate: -45deg;
  translate: 0 0;
}
.l-header-hamburger__wrapper {
  background: rgba(35, 98, 192, 0.95);
  height: 100dvh;
  max-width: 56rem;
  opacity: 0;
  padding: var(--size) 0 32px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.4s;
  visibility: hidden;
  width: 100%;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-header-hamburger__wrapper[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.l-header-hamburger__wrapper::-webkit-scrollbar {
  display: none;
}
.l-header-hamburger-nav {
  color: #fff;
}
.l-header-hamburger-nav-list {
  display: grid;
}
.l-header-hamburger-nav-list__item a,
.l-header-hamburger-nav-list__item summary {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1em 0.5em;
}
.l-header-hamburger-nav-list__item a::after,
.l-header-hamburger-nav-list__item summary::after {
  aspect-ratio: 1/2;
  background: currentColor;
  content: "";
  display: block;
  height: 1em;
  mask: url(../images/top/works_arrow.svg) no-repeat center/contain;
  width: auto;
}
.l-header-hamburger-nav-list__item:not(:last-child) a,
.l-header-hamburger-nav-list__item:not(:last-child) summary {
  border-bottom: 1px solid #fff;
}
.l-header-hamburger-nav-list__item a[target=_blank]::after {
  aspect-ratio: 1/1;
  mask-image: url(../images/common/icon/external.svg);
}
.l-header-hamburger-nav-list .l-header-hamburger-nav-list {
  padding-left: 1em;
}
.l-header-hamburger-acc__trigger {
  cursor: pointer;
}
.l-header-hamburger-acc__trigger::-webkit-details-marker {
  display: none;
}
.l-header-hamburger-acc__trigger::after {
  rotate: 90deg;
  transition: 0.4s;
}
.l-header-hamburger-acc[open] .l-header-hamburger-acc__trigger::after {
  rotate: -90deg;
}
.l-header-hamburger-acc.is-closing .l-header-hamburger-acc__trigger::after {
  rotate: 90deg;
}
.l-header-hamburger-acc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s;
}
.l-header-hamburger-acc[open] .l-header-hamburger-acc__body {
  grid-template-rows: 1fr;
}
.l-header-hamburger-acc.is-closing .l-header-hamburger-acc__body {
  grid-template-rows: 0fr;
}
.l-header-hamburger-acc__inner {
  overflow: hidden;
}
.l-header-hamburger-contact {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 744px) {
  .l-header-hamburger-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.l-footer {
  background: #2362C0;
  color: #fff;
  padding-top: var(--section-gap);
}
.l-footer__main {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: calc(var(--section-gap) / 2);
}
.l-footer__logo {
  width: 12rem;
}
.l-footer__address {
  text-align: center;
}
.l-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
@media screen and (max-width: 743px) {
  .l-footer-nav {
    align-self: flex-start;
  }
}
@media screen and (min-width: 744px) {
  .l-footer-nav {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}
.l-footer-nav-list {
  display: grid;
  gap: 0.75em;
}
.l-footer-nav-list a {
  text-decoration: underline;
}
.l-footer-nav-list a[target=_blank] {
  align-items: center;
  display: inline-flex;
  gap: 0.5em;
}
.l-footer-nav-list a[target=_blank]::after {
  aspect-ratio: 1/1;
  background: currentColor;
  content: "";
  display: block;
  height: 1em;
  mask: url(../images/common/icon/external.svg) no-repeat center/contain;
  width: auto;
}
.l-footer-nav-list .l-footer-nav-list {
  margin-top: 0.75em;
  padding-left: 1em;
}
.l-footer-nav-list .l-footer-nav-list .l-footer-nav-list__item::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}
.l-footer-other {
  display: flex;
  text-decoration: underline;
}
@media screen and (max-width: 743px) {
  .l-footer-other {
    align-self: flex-start;
    flex-direction: column;
    gap: 0.75em;
  }
}
@media screen and (min-width: 744px) {
  .l-footer-other {
    align-self: flex-end;
    gap: 2em;
  }
}
.l-footer__copyright {
  border-top: 1px solid #fff;
  display: block;
  font-weight: 400;
  margin-inline: auto;
  margin-top: calc(var(--section-gap) / 2);
  padding-block: calc(var(--section-gap) / 3);
  text-align: center;
  width: 94vw;
}

.l-section {
  padding-block: var(--section-gap);
}

.l-sidebar {
  font-size: 0.875em;
}
.l-sidebar__wrapper {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 1280px) {
  .l-sidebar__wrapper {
    grid-template-columns: 1fr 32rem;
  }
}

.c-page-title {
  font-size: 24px;
  align-items: center;
  background: #2362C0;
  background: linear-gradient(360deg, #0097BC, #0076BB);
  color: #fff;
  display: flex;
  font-weight: 700;
  height: 8rem;
  justify-content: center;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 744px) {
  .c-page-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 744px) {
  .c-page-title {
    height: 16rem;
  }
}

.c-btn {
  --color: #2362C0;
  background: var(--color);
  border: 1px solid var(--color);
  border-radius: 10rem;
  color: #fff;
  display: block;
  font-size: 1.125em;
  margin: calc(var(--section-gap) / 2) auto 0;
  min-width: 335px;
  padding-block: 0.555em;
  position: relative;
  text-align: center;
  transition: 0.4s;
  width: max-content;
}
@media screen and (min-width: 744px) {
  .c-btn {
    font-size: 1.25em;
  }
}
.c-btn::after {
  aspect-ratio: 1/1;
  background: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 1.15em;
  margin-block: auto;
  mask: url(../images/common/btn_arrow.svg) no-repeat center/contain;
  position: absolute;
  right: 1.5rem;
  top: 0;
  transition: 0.4s;
}
.c-btn:hover {
  background: #fff;
  color: var(--color);
}
.c-btn:hover::after {
  background: var(--color);
}
.c-btn.--invert {
  background: #fff;
  color: var(--color);
}
.c-btn.--invert::after {
  background: var(--color);
}
.c-btn.--invert:hover {
  background: var(--color);
  color: #fff;
}
.c-btn.--invert:hover::after {
  background: #fff;
}
.c-btn.--accent {
  --color: #DD1151;
}
.c-btn.--small {
  font-size: 1em;
}

.c-btn-cta {
  align-items: center;
  background: var(--color, #2362C0);
  border: 1px solid;
  border-radius: 10rem;
  color: #fff;
  display: flex;
  font-size: 1.25em;
  font-weight: 700;
  gap: 0.454em;
  height: 6rem;
  justify-content: center;
  padding-inline: 1.09em;
  transition: 0.4s;
}
.c-btn-cta.--sm {
  font-size: 1em;
  height: 4rem;
}
.c-btn-cta::before {
  background: #fff;
  content: "";
  display: block;
  height: 1.636em;
  mask: no-repeat center/contain;
  transition: 0.4s;
  width: auto;
}
.c-btn-cta.--consul {
  --color: #DD1151;
}
.c-btn-cta.--consul::before {
  aspect-ratio: 1/1;
  mask-image: url(../images/common/icon/contact.svg);
}
.c-btn-cta.--estimate {
  --color: #2362C0;
}
.c-btn-cta.--estimate::before {
  aspect-ratio: 23/33;
  mask-image: url(../images/common/icon/calc.svg);
}
.c-btn-cta.--contact {
  --color: #00A195;
}
.c-btn-cta.--contact::before {
  aspect-ratio: 30/21;
  mask-image: url(../images/common/icon/mail.svg);
}
.c-btn-cta.--line {
  --color: #00A75B;
}
.c-btn-cta.--line::before {
  aspect-ratio: 35/33;
  mask-image: url(../images/common/icon/line.svg);
}
.c-btn-cta.--center {
  margin-inline: auto;
  max-width: 100%;
  width: max-content;
}
.c-btn-cta:hover {
  background: #fff;
  color: var(--color, #2362C0);
}
.c-btn-cta:hover::before {
  background: var(--color, #2362C0);
}

.c-form {
  display: grid;
  gap: 32px;
  margin-inline: auto;
  margin-top: calc(var(--section-gap) / 2);
  max-width: 64rem;
}
.c-form input:where(:not([name*=zip]):not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=file])),
.c-form textarea {
  width: 100%;
}
.c-form input[name*=zip] {
  width: 5em;
}
.c-form input,
.c-form select,
.c-form textarea {
  border-radius: 8px;
  font-family: inherit;
  font-size: 1em;
  padding: 8px 16px;
}
.c-form-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-form-content__title {
  font-size: 1em;
  font-weight: 700;
}
.c-form-content__title.hissu {
  align-items: center;
  display: flex;
  gap: 0.5em;
}
.c-form-content__title.hissu::after {
  background: #00A195;
  border-radius: 8px;
  color: #fff;
  content: "必須";
  font-size: 0.875em;
  line-height: 1;
  padding: 0.4em 0.8em;
}
.c-form-content-inputs {
  display: grid;
  gap: 16px;
}
.c-form-content__description {
  color: color-mix(in srgb, #212121 70%, #fff 30%);
  display: block;
  font-size: 0.875em;
}
.c-form-content .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.c-form-content .wpcf7-list-item {
  margin: 0;
}
.c-form-content .wpcf7-list-item label {
  cursor: pointer;
}
.c-form-privacy {
  align-items: center;
  background: #e7e7e7;
  margin-inline: auto;
  padding: 16px;
  text-align: center;
  width: min(100%, 500px);
}
.c-form-privacy a {
  transition: 0.4s;
  color: var(--color_link);
  text-decoration: underline;
}
.c-form-privacy a:hover {
  opacity: 0.7;
}
.c-form-privacy label {
  cursor: pointer;
}
.c-form-btns {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-form-btns input {
  background: #2362C0;
  border: 1px solid transparent;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  max-width: 100%;
  padding: 1em;
  transition: 0.4s;
  width: 32rem;
}
.c-form-btns input:not(:disabled) {
  cursor: pointer;
}
.c-form-btns input:not(:disabled):hover {
  background: #fff;
  border-color: #2362C0;
  color: #2362C0;
}
.c-form-btns input:disabled {
  cursor: auto;
  filter: grayscale(1);
}
.c-form-btns .wpcf7-spinner {
  display: none;
}
.c-form-btn__back {
  filter: grayscale(1);
}

.c-heading01 {
  color: #2362C0;
  margin-bottom: calc(var(--section-gap) / 2);
}
.c-heading01.--white {
  color: #fff;
}
.c-heading01__ja {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (min-width: 744px) {
  .c-heading01__ja {
    font-size: 32px;
  }
}
@media screen and (min-width: 744px) {
  .c-heading01__ja {
    align-items: center;
    display: flex;
    gap: 24px;
  }
  .c-heading01__ja::after {
    background: currentColor;
    content: "";
    display: block;
    flex-grow: 1;
    height: 1px;
  }
  .c-heading01__ja br.sp {
    display: none;
  }
}
.c-heading01__en {
  font-size: 1.125em;
  font-weight: 300;
  padding-left: 0.75em;
}

.c-heading02 {
  font-size: 24px;
  color: #2362C0;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 744px) {
  .c-heading02 {
    font-size: 28px;
  }
}
.c-heading02.--white {
  color: #fff;
}

.c-heading03 {
  font-size: 28px;
  color: #2362C0;
  font-weight: 700;
  margin-bottom: calc(var(--section-gap) / 2);
  text-align: center;
}
@media screen and (min-width: 744px) {
  .c-heading03 {
    font-size: 32px;
  }
}
.c-heading03.--white {
  color: #fff;
}

.c-cta {
  background: linear-gradient(360deg, #0097BC, #0076BB);
}
.c-cta__wrapper {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 744px) {
  .c-cta__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: auto;
    max-width: 100%;
    width: max-content;
  }
}
@media screen and (min-width: 1280px) {
  .c-cta__wrapper {
    gap: 32px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: auto;
  }
}

.u-fadein {
  opacity: 0;
  visibility: hidden;
}
.u-fadein--top.is-active {
  animation-name: fadeinTop;
  transform: translateY(20px);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
  opacity: 0;
  visibility: hidden;
}
.u-fadein--bottom.is-active {
  animation-name: fadeinBottom;
  transform: translateY(-20px);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
  opacity: 0;
  visibility: hidden;
}
.u-fadein--left.is-active {
  animation-name: fadeinLeft;
  transform: translateX(20px);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
  opacity: 0;
  visibility: hidden;
}
.u-fadein--right.is-active {
  animation-name: fadeinRight;
  transform: translateX(-20px);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
  opacity: 0;
  visibility: hidden;
}

.p-top-mv {
  display: grid;
}
.p-top-mv__bg {
  grid-area: 1/1;
  height: 100dvh;
}
.p-top-mv__bg img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-top-mv-content {
  grid-area: 1/1;
  margin-block: auto clamp(7rem, 10.5dvh, 9rem);
  position: relative;
}
@media screen and (min-width: 744px) {
  .p-top-mv-content {
    margin-bottom: auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-mv-content {
    margin-block: auto clamp(4rem, 4.9dvh, 4.5rem);
  }
}
.p-top-mv-content__catch {
  margin-inline: auto;
  position: relative;
  width: 58.5%;
}
@media screen and (min-width: 744px) and (max-width: 1023px) {
  .p-top-mv-content__catch {
    width: 80%;
  }
}
.p-top-mv-content__catch::after {
  background: url(../images/top/mv_catch_shadow.svg) no-repeat center/contain;
  content: "";
  display: block;
  filter: blur(1rem);
  height: calc(100% + 2rem);
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: calc(100% + 2rem);
  z-index: 0;
}
@media screen and (min-width: 744px) {
  .p-top-mv-content__catch::after {
    background-image: url(../images/top/mv_catch_shadow@pc.svg);
  }
}
.p-top-mv-content__catch img {
  position: relative;
  z-index: 1;
}
.p-top-mv-content__forte {
  margin-inline: auto;
  margin-top: 48px;
}
@media screen and (max-width: 743px) {
  .p-top-mv-content__forte {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-top-mv-content__forte .p-top-forte-items__item {
    width: 34.6vw;
  }
  .p-top-mv-content__forte .p-top-forte-items__icon {
    height: 30.7%;
  }
  .p-top-mv-content__forte .p-top-forte-items__txt {
    font-size: 3.46vw;
  }
}
.p-top-mv-content-scroll {
  display: flex;
  gap: 2px;
}
@media screen and (max-width: 743px) {
  .p-top-mv-content-scroll {
    bottom: 0;
    left: 0;
    position: absolute;
  }
}
@media screen and (min-width: 744px) {
  .p-top-mv-content-scroll {
    align-items: center;
    flex-direction: column;
    margin-top: 64px;
  }
}
.p-top-mv-content-scroll__txt {
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 743px) {
  .p-top-mv-content-scroll__txt {
    writing-mode: vertical-lr;
  }
}
@media screen and (min-width: 744px) {
  .p-top-mv-content-scroll__txt {
    font-size: 1.125em;
  }
}
.p-top-mv-content-scroll__arrow {
  width: auto;
  animation: fadeOutDown 1.5s infinite ease;
}
@keyframes fadeOutDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}
.p-top-greeting {
  background: linear-gradient(180deg, #1E4C92 0%, #09172C 100%);
  color: #fff;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-top-greeting__img {
    margin-bottom: calc(var(--section-gap) / 2);
  }
}
@media screen and (max-width: 1023px) and (min-width: 744px) {
  .p-top-greeting__img {
    margin-inline: auto;
    max-width: 40rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-greeting__img {
    position: absolute;
    right: max(calc((100vw - 144rem) / 2), 0px);
    top: 30rem;
    width: min(33.125vw, 477px);
  }
}
.p-top-greeting__txt {
  line-height: 1.7;
}
.p-top-greeting__txt + .p-top-greeting__txt {
  margin-top: 1em;
}
.p-top-forte {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: calc(var(--section-gap) / 2);
  margin-top: var(--section-gap);
}
.p-top-forte-items {
  display: grid;
  gap: 8px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 58rem;
  width: 100%;
}
@media screen and (min-width: 744px) {
  .p-top-forte-items {
    gap: 32px 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.p-top-forte-items__item {
  align-items: center;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25) inset;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.p-top-forte-items__icon {
  height: 54px;
  width: auto;
}
.p-top-forte-items__txt {
  align-items: center;
  color: #2362C0;
  display: flex;
  font-weight: 700;
  line-height: 1.5;
  min-height: 3em;
  text-align: center;
}
.p-top-consul {
  background: url(../images/top/consul_bg.png) no-repeat center/cover;
  color: #fff;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 743px) {
  .p-top-consul {
    padding-top: 128px;
  }
}
.p-top-consul__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: calc(var(--section-gap) / 2);
}
@media screen and (min-width: 744px) {
  .p-top-consul__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 744px) {
  .p-top-consul__title br.sp {
    display: none;
  }
}
.p-top-consul__txt {
  line-height: 1.7;
}
.p-top-consul__txt + .p-top-consul__txt {
  margin-top: 1em;
}
@media screen and (min-width: 744px) {
  .p-top-consul__txt br.sp {
    display: none;
  }
}
.p-top-consul__img {
  position: absolute;
  width: auto;
}
.p-top-consul__img.--top {
  right: 0;
  top: 0;
}
@media screen and (max-width: 743px) {
  .p-top-consul__img.--top {
    width: 15rem;
  }
}
.p-top-consul__img.--bottom {
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 743px) {
  .p-top-consul__img.--bottom {
    display: none;
  }
}
.p-top-service {
  background: url(../images/top/service_bg.png) no-repeat center/cover;
}
.p-top-works-slider {
  position: relative;
}
@media screen and (min-width: 744px) {
  .p-top-works-slider__inner {
    overflow-x: clip;
    padding-inline: 8px;
  }
}
.p-top-works-slider__pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  left: 0 !important;
  margin-inline: auto;
  position: absolute;
  right: 0;
  top: calc(100% + 16px) !important;
}
.p-top-works-slider__pagination .swiper-pagination-bullet {
  border-radius: 0;
  height: 4px;
  margin: 0 !important;
  transition: 0.4s;
  width: 32px;
}
.p-top-works-slider__nav {
  aspect-ratio: 1/2;
  background: url(../images/top/works_arrow.svg) no-repeat center/contain;
  border-radius: 50%;
  bottom: 0;
  cursor: pointer;
  height: 24px;
  margin: auto;
  position: absolute;
  top: 0;
  transition: 0.4s;
  width: auto;
  z-index: 10;
}
@media screen and (max-width: 1279px) {
  .p-top-works-slider__nav {
    display: none;
  }
}
.p-top-works-slider__nav[aria-disabled=true] {
  filter: grayscale(1);
  opacity: 0.5;
}
.p-top-works-slider__nav.js-top-works-slider-prev {
  right: calc(100% + 16px);
  scale: -1 1;
}
.p-top-works-slider__nav.js-top-works-slider-next {
  left: calc(100% + 16px);
}
.p-top-info {
  background: url(../images/top/info_bg.png) no-repeat center top/cover;
}
.p-top-nav {
  display: grid;
}
@media (744px <= width < 1280px) {
  .p-top-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: var(--section-gap);
  }
}
@media screen and (min-width: 1280px) {
  .p-top-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.p-top-nav__item {
  font-size: 28px;
  aspect-ratio: 480/144;
  background: no-repeat center/cover;
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 744px) {
  .p-top-nav__item {
    font-size: 32px;
  }
}
@media (744px <= width < 1280px) {
  .p-top-nav__item {
    max-width: 48rem;
    margin-inline: auto;
  }
}
.p-top-nav__item::before {
  background: color-mix(in srgb, #2362C0 0%, transparent 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.4s;
  width: 100%;
  z-index: 0;
}
.p-top-nav__item:hover::before {
  background: color-mix(in srgb, #2362C0 100%, transparent 50%);
}
.p-top-nav__item::after {
  border: 2px solid #fff;
  content: "";
  display: block;
  height: calc(100% - 12px);
  inset: 0;
  margin: auto;
  position: absolute;
  width: calc(100% - 12px);
}
.p-top-nav__item.--recurit {
  background-image: url(../images/top/nav_recruit.jpg);
}
.p-top-nav__item.--company {
  background-image: url(../images/top/nav_company.jpg);
}
.p-top-nav__item.--telework {
  background-image: url(../images/top/nav_telework.jpg);
}
.p-top-nav__item span {
  position: relative;
  z-index: 1;
}

.p-service-list {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  width: min(100% - 3rem, 1245px);
}
@media screen and (min-width: 744px) {
  .p-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .p-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.p-service-list-item {
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  padding: 32px;
}
.p-service-list-item__icon {
  width: 10rem;
}
.p-service-list-item__title {
  color: #2362C0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.p-service-list-item__title span {
  font-size: 1.6rem;
}
@media screen and (min-width: 1280px) {
  .p-service-list-item__title br.tablet {
    display: none;
  }
}
.p-service-list-item__btn {
  margin-top: auto;
  min-width: auto;
  width: 100%;
}
.p-service-other {
  margin-top: var(--section-gap);
}
.p-service-other__inner {
  display: grid;
  gap: 24px;
  justify-content: center;
  margin-top: calc(var(--section-gap) / 2);
}
@media screen and (min-width: 1024px) {
  .p-service-other__inner {
    display: flex;
    justify-content: center;
  }
}
.p-service-other__link {
  flex-shrink: 0;
  max-width: 30rem;
  transition: 0.4s;
}
.p-service-other__link:hover {
  opacity: 0.7;
}
.p-service-other__link figcaption {
  font-size: 1rem;
  margin-top: 4px;
}

.p-works-list {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 744px) {
  .p-works-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .p-works-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.p-works-list-item {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.4s;
}
.p-works-list-item-head {
  position: relative;
}
.p-works-list-item-head__thumbnail {
  aspect-ratio: 16/9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-works-list-item-head__category {
  background: #2362C0;
  bottom: 0;
  color: #fff;
  font-size: 0.875em;
  line-height: 1;
  padding: 8px;
  position: absolute;
  left: 0;
}
.p-works-list-item-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
  padding: 16px;
}
.p-works-list-item-body__title:is(h3) {
  all: unset;
  color: #2362C0;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.5;
}
.p-works-list-item-body__description {
  font-size: 0.875em;
  margin-top: -8px;
}
.p-works-list-item-body__link {
  margin-top: auto;
  min-width: auto;
  padding-inline: 3em;
}
.p-works-list-item:has(.p-works-list-item-body__link:hover) {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.24);
}

.p-info__category {
  background: #2362C0;
  color: #fff;
  padding: 0.4em 1em;
}
.p-info-list {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 744px) {
  .p-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .p-info-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.p-info-list-item {
  --color: #212121;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.4s;
}
@media screen and (max-width: 743px) {
  .p-info-list-item:nth-child(n+4) {
    display: none;
  }
}
.p-info-list-item:hover {
  --color: #2362C0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.24);
}
.p-info-list-item__thumbnail {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.p-info-list-item__inner {
  background: #fff;
  display: grid;
  gap: 8px;
  padding: 16px;
}
.p-info-list-item-meta {
  align-items: center;
  display: flex;
  gap: 16px;
}
.p-info-list-item-meta__date {
  font-size: 0.875em;
}
.p-info-list-item-meta__category {
  font-size: 0.625em;
}
.p-info-list-item__title {
  color: var(--color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-weight: 700;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.4s;
}
.p-info-list-item__content {
  color: color-mix(in srgb, #212121 80%, #fff 20%);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 0.875em;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-info-single .p-articleThumb {
  margin-inline: auto;
  max-width: 64rem;
}

.p-news-list {
  display: grid;
  gap: 16px;
  grid-template-columns: auto auto 1fr;
  margin-inline: auto;
  max-width: 48rem;
}
@media screen and (max-width: 743px) {
  .p-news-list {
    gap: 16px;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
}
.p-news-list-item {
  align-items: center;
  display: grid;
  grid-column: span 3;
  grid-template-columns: subgrid;
  transition: 0.4s;
}
@media screen and (max-width: 743px) {
  .p-news-list-item {
    grid-column: span 2;
    row-gap: 4px;
  }
}
.p-news-list-item:hover {
  translate: 1em 0;
}
.p-news-list-item__date {
  font-size: 0.875em;
}
@media screen and (max-width: 743px) {
  .p-news-list-item__date {
    grid-area: 1/1/2/2;
  }
}
.p-news-list-item__category {
  font-size: 0.625em;
}
@media screen and (max-width: 743px) {
  .p-news-list-item__category {
    grid-area: 1/2/2/3;
    max-width: 100%;
    width: max-content;
  }
}
.p-news-list-item__title {
  color: #2362C0;
  font-weight: 700;
}
@media screen and (max-width: 743px) {
  .p-news-list-item__title {
    grid-area: 2/1/3/3;
  }
}
.p-news-single-content a:not([class]) {
  color: var(--color_link);
  text-decoration: underline;
}

@media screen and (min-width: 744px) {
  .p-contact__intro {
    text-align: center;
  }
}