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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.75px;
}
body.is-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

.l-header {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-header {
    max-width: 1860px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.l-inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1564px;
    padding-inline: 50px;
    margin-inline: auto;
  }
}

.l-footer {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    max-width: 1853px;
    padding-inline: 50px;
    margin-inline: auto;
  }
}

.l-section-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .l-section-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 9.3560145808%;
  }
}

@media screen and (min-width: 1000px) {
  .l-section-flex__title {
    width: 13.5245901639%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.l-section-flex__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}

.l-inner-small {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner-small {
    max-width: 1246px;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

.c-main-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(85.64deg, #19305c 1.36%, #2649a4 24.92%, #1370ab 49.92%, #2649a4 74.92%, #19305c 99.92%);
  background-size: 200% 100%;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 10px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-main-button {
    width: auto;
    padding-block: 23px;
    padding-inline: 20px 36px;
    font-size: 18px;
    border-radius: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .c-main-button:hover {
    background-position: 100% 0;
  }
  .c-main-button:hover .c-main-button__arrow-wrap::after {
    -webkit-animation: arrow-in 0.4s ease forwards;
            animation: arrow-in 0.4s ease forwards;
  }
}

.c-main-button__arrow-wrap {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-main-button__arrow-wrap {
    width: 36px;
    height: 36px;
    right: 21px;
  }
}
.c-main-button__arrow-wrap::after {
  content: "";
  width: 12px;
  height: 14px;
  background: url(../img/common/button-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-main-button--revers {
  background: #fff;
  color: #2649a4;
}
@media screen and (min-width: 768px) {
  .c-main-button--revers {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .c-main-button--revers:hover {
    background: #e2ecff;
  }
}
.c-main-button--revers .c-main-button__arrow-wrap {
  background: #2649a4;
}
.c-main-button--revers .c-main-button__arrow-wrap::after {
  background: url(../img/common/button-arrow-white.svg) no-repeat center center/contain;
}

@-webkit-keyframes arrow-in {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  49% {
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
  }
  50% {
    -webkit-transform: translate(-150%, -50%);
            transform: translate(-150%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes arrow-in {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  49% {
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
  }
  50% {
    -webkit-transform: translate(-150%, -50%);
            transform: translate(-150%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.c-main-button--diagonal {
  font-size: 16px;
}
.c-main-button--diagonal .c-main-button__arrow-wrap {
  overflow: hidden;
}
.c-main-button--diagonal .c-main-button__arrow-wrap::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .c-main-button--diagonal {
    font-size: 18px;
  }
  .c-main-button--diagonal:hover .c-main-button__arrow-wrap::after {
    -webkit-animation: arrow-in-diagonal 0.4s ease forwards;
            animation: arrow-in-diagonal 0.4s ease forwards;
  }
}

@-webkit-keyframes arrow-in-diagonal {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  49% {
    -webkit-transform: translate(150%, -250%) rotate(-45deg);
            transform: translate(150%, -250%) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate(-250%, 150%) rotate(-45deg);
            transform: translate(-250%, 150%) rotate(-45deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@keyframes arrow-in-diagonal {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  49% {
    -webkit-transform: translate(150%, -250%) rotate(-45deg);
            transform: translate(150%, -250%) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate(-250%, 150%) rotate(-45deg);
            transform: translate(-250%, 150%) rotate(-45deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.c-top-title {
  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: flex-start;
}
.c-top-title--center {
  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;
}

.c-top-title__en {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #2649a4;
  font-family: "Inconsolata", monospace;
}
@media screen and (min-width: 768px) {
  .c-top-title__en {
    font-size: 20px;
  }
}

.c-top-title__ja {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .c-top-title__ja {
    font-size: 40px;
    line-height: 58px;
    margin-top: 8px;
  }
}

.c-page-title {
  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: flex-start;
}

.c-page-title__en {
  font-size: 16px;
  line-height: 17px;
  font-weight: 700;
  color: #2649a4;
  font-family: "Inconsolata", monospace;
}
@media screen and (min-width: 768px) {
  .c-page-title__en {
    font-size: 32px;
    line-height: 34px;
  }
}

.c-page-title__ja {
  font-size: 32px;
  line-height: 46px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-page-title__ja {
    font-size: 60px;
    line-height: 104px;
  }
}

.c-hedding-type1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 41px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-hedding-type1 {
    font-size: clamp(32px, 26.667px + 0.6944vw, 40px);
    line-height: 65px;
  }
}
.c-hedding-type1::before {
  content: "";
  width: 80px;
  height: 4px;
  background: #2649a4;
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-hedding-type1::before {
    width: 8.3333333333%;
    height: 8px;
    bottom: -36px;
  }
}

.c-head {
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .c-head {
    padding-top: 100px;
  }
}

.c-head__discription {
  padding-top: 28px;
}
@media screen and (min-width: 768px) {
  .c-head__discription {
    margin-top: 39px;
  }
}

.c-head__img {
  display: block;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .c-head__img {
    margin-top: 100px;
  }
}

.c-head__lead {
  margin-top: 64px;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
}
@media screen and (min-width: 768px) {
  .c-head__lead {
    margin-top: 176px;
    font-size: 48px;
    line-height: 70px;
  }
}

.c-breadcrumb {
  padding-top: 8px;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    padding-top: 12px;
  }
}

.c-breadcrumb__link,
.c-breadcrumb__icon,
.c-breadcrumb__page {
  white-space: nowrap;
}

.c-breadcrumb__link {
  color: #2649a4;
  font-weight: 700;
  font-size: 12px;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__link {
    font-size: 16px;
  }
}

.c-breadcrumb__icon {
  padding-inline: 8px;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__icon {
    padding-inline: 16px;
  }
}

.c-breadcrumb__page {
  font-weight: 700;
  font-size: 12px;
  white-space: normal;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb__page {
    font-size: 16px;
  }
}

.c-conpany__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 41px;
}
@media screen and (min-width: 768px) {
  .c-conpany__title {
    font-size: 36px;
    line-height: 52px;
  }
}

.c-recruit-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-recruit-title__en {
  font-family: "Inconsolata", monospace;
  color: #2649a4;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
}
@media screen and (min-width: 900px) {
  .c-recruit-title__en {
    font-size: 24px;
    line-height: 23px;
  }
}

.c-recruit-title__jp {
  font-weight: 700;
  font-size: 28px;
  line-height: 41px;
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .c-recruit-title__jp {
    font-size: 48px;
    line-height: 68px;
  }
}

.c-number-heading {
  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-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-number-heading {
    gap: 16px;
  }
}

.c-number-heading__number {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  color: #2649a4;
}
@media screen and (min-width: 768px) {
  .c-number-heading__number {
    font-size: 44px;
  }
}

.c-number-heading__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .c-number-heading__title {
    font-size: 36px;
  }
}

.c-post-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-post-card:hover .c-post-card__img-wrap .c-post-card__img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-post-card:hover .c-post-card__title {
    color: #2649a4;
  }
}

.c-post-card__img-wrap {
  aspect-ratio: 335/206;
  border-radius: 12px;
  overflow: hidden;
}

.c-post-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 768px) {
  .c-post-card__img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}

.c-post-card__date {
  font-family: "Inconsolata", monospace;
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
  line-height: 1.5;
}

.c-post-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .c-post-card__title {
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
  }
}

.c-post-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.c-post-card__tag {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  padding-inline: 7px;
  padding-block: 3px;
  border-radius: 4px;
  border: 1px solid #111;
}

.c-text-anime__inner {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  white-space: nowrap;
}

.c-text-anime__char {
  display: inline-block;
  -webkit-transform: translateY(var(--y, 110%));
          transform: translateY(var(--y, 110%));
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  vertical-align: bottom;
  font-weight: inherit;
}

.js-text-reveal.is-active .c-text-anime__char {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-header {
  position: sticky;
  display: block;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
}

.p-header__inner {
  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;
  padding-block: 12px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-block: 16px;
    height: 80px;
  }
}

.p-header__logo {
  width: 94px;
}
@media screen and (min-width: 1000px) {
  .p-header__logo {
    width: 194px;
  }
}

.p-header__button {
  width: 27px;
  height: 16px;
  position: relative;
}
.p-header__button.is-active .p-header__button-line:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-header__button.is-active .p-header__button-line:nth-child(2) {
  opacity: 0;
}
.p-header__button.is-active .p-header__button-line:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.p-header__button-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(85.64deg, #19305c 11.46%, #2649a4 68.67%, #0097b2 99.92%);
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s ease, opacity 0.3s ease;
  transition: 0.3s ease, opacity 0.3s ease;
}
.p-header__button-line:nth-child(1) {
  top: 0;
}
.p-header__button-line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-header__button-line:nth-child(3) {
  bottom: 0;
}

.p-header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}

.p-header-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}

.p-header-nav__link {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  position: relative;
}
.p-header-nav__link::before {
  content: "";
  width: 100%;
  height: 2px;
  background-image: linear-gradient(85.64deg, #19305c 11.46%, #2649a4 68.67%, #0097b2 99.92%);
  background-repeat: no-repeat;
  -webkit-transition: background-size cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
  transition: background-size cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
  visibility: visible;
  background-position: 100% 100%;
  background-size: 0 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.p-header-nav__link:hover::before {
  background-size: 100% 2px;
  background-position: 0% 100%;
}
.p-header-nav__link.p-header-nav__link--button {
  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: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  padding-block: 12px;
  padding-inline: 16px;
  background: linear-gradient(85.64deg, #19305c 1.36%, #2649a4 24.92%, #1370ab 49.92%, #2649a4 74.92%, #19305c 99.92%);
  background-size: 200% 100%;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-header-nav__link.p-header-nav__link--button:hover {
  background-position: 100% 0;
}
.p-header-nav__link.p-header-nav__link--button::before {
  content: "";
  width: 21px;
  height: 16px;
  background: url(../img/common/contanct-icon-white.svg) no-repeat center center/cover;
  bottom: inherit;
  left: inherit;
  position: static;
}

.p-modal-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 60px;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -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;
  z-index: 999;
  background: #fff;
}
.p-modal-menu.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-modal-menu__wrap {
  padding-top: 20px;
  padding-inline: 20px;
}

.p-modal-menu__nav {
  max-width: 335px;
  margin-inline: auto;
}

.p-modal-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-modal-menu__item:not(:last-child) {
  border-bottom: 1px solid #949494;
  position: relative;
}
.p-modal-menu__item:not(:last-child)::after {
  content: "";
  width: 12px;
  height: 14.4px;
  background: url(../img/common/button-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-modal-menu__item:first-child {
  border-top: 1px solid #949494;
}

.p-modal-menu__link {
  display: block;
  padding-block: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.p-modal-menu__link.p-modal-menu__link--button {
  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: 8px;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  text-align: center;
  padding-block: 12px;
  background: linear-gradient(85.64deg, #19305c 11.46%, #2649a4 68.67%, #0097b2 99.92%);
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
  position: relative;
}
.p-modal-menu__link.p-modal-menu__link--button::before {
  content: "";
  width: 21px;
  height: 16px;
  background: url(../img/common/contanct-icon-white.svg) no-repeat center center/cover;
}

.p-mv__slide {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-mv__slide {
    margin-top: 48px;
  }
}

.p-mv__side-wrapper.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-mv__slide-item {
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-mv__slide-item {
    border-radius: 40px;
    aspect-ratio: 873/798;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-mv__slide-item picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-mv__slide-item img {
  width: 100%;
}

.p-mv__lead-wrap {
  margin-top: 60px;
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .p-mv__lead-wrap {
    margin-top: 100px;
    padding-left: 32px;
  }
}

.p-mv__lead {
  display: inline-block;
  height: auto;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  background: linear-gradient(85.64deg, #19305c 11.46%, #2649a4 68.67%, #0097b2 99.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (min-width: 768px) {
  .p-mv__lead {
    font-size: clamp(38px, 4vw, 60px);
  }
}

.p-top-about {
  margin-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-top-about {
    margin-block: 100px;
  }
}

.p-top-about__text {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-about__text {
    margin-top: 21px;
  }
}

.p-top-about__body {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-top-about__body {
    margin-top: 36px;
  }
}

.p-top-about__button-wrap {
  margin-top: 32px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-about__button-wrap {
    max-width: 315px;
    margin-inline: auto;
    margin-top: 48px;
  }
}

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

.p-top-service__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1000px) {
  .p-top-service__col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-top-service__text {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-top-service__text {
    margin-top: 60px;
  }
}

.p-top-service__fluid-wrap {
  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;
}

.p-top-service__fluid {
  background: #2649a4;
  width: var(--fluid-size, 300px);
  height: var(--fluid-size, 300px);
  -webkit-animation: fluid-animation 10s ease 0s infinite normal;
          animation: fluid-animation 10s ease 0s infinite normal;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .p-top-service__fluid {
    --fluid-size: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-service__fluid {
    --fluid-size: 400px;
  }
}
.p-top-service__fluid::before {
  content: "";
  background-image: url("../img/front/fs-circle-img.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 75%;
  height: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  -webkit-animation: rotate-img 20s linear infinite;
          animation: rotate-img 20s linear infinite;
}
.p-top-service__fluid::after {
  content: "";
  background-image: url(../img/front/service-img.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 43.6%;
  height: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@-webkit-keyframes rotate-img {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes rotate-img {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes fluid-animation {
  0%, 100% {
    border-radius: 59% 41% 21% 79%/62% 53% 47% 38%;
  }
  50% {
    border-radius: 26% 74% 52% 48%/52% 32% 68% 48%;
  }
}
@keyframes fluid-animation {
  0%, 100% {
    border-radius: 59% 41% 21% 79%/62% 53% 47% 38%;
  }
  50% {
    border-radius: 26% 74% 52% 48%/52% 32% 68% 48%;
  }
}

.p-top-service__button-wrap {
  margin-top: 32px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-service__button-wrap {
    max-width: 320px;
    margin-top: 80px;
  }
}

.p-top-work {
  background: #1b3579;
  padding-block: 60px;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-work {
    padding-block: 100px;
  }
}

.p-top-work__inner {
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-top-work__inner {
    padding-left: 11.875%;
  }
}

.p-top-work__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-work__title {
    font-size: 40px;
    line-height: 58px;
  }
}

.p-top-work__slide {
  position: relative;
}

.p-top-work__deco-text-int {
  margin-top: 56px;
  text-align: right;
  margin-bottom: -4px;
}
.p-top-work__deco-text-int img {
  width: 75.4666666667%;
}
@media screen and (min-width: 900px) {
  .p-top-work__deco-text-int img {
    width: 49.4791666667%;
  }
}

.p-top-work__deco-text-cs {
  margin-top: 86px;
  text-align: right;
  margin-bottom: -12px;
}
@media screen and (min-width: 768px) {
  .p-top-work__deco-text-cs {
    margin-top: 82px;
    margin-bottom: -24px;
  }
}
.p-top-work__deco-text-cs img {
  width: 83.7333333333%;
}
@media screen and (min-width: 900px) {
  .p-top-work__deco-text-cs img {
    width: 55.0520833333%;
  }
}

.p-top-work__button-wrap {
  max-width: 375px;
  margin-top: 80px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-work__button-wrap {
    max-width: 320px;
    margin-top: 80px;
  }
}

.p-top-work-card {
  max-width: 225px;
}
@media screen and (min-width: 768px) {
  .p-top-work-card {
    max-width: 424px;
  }
  .p-top-work-card:hover .p-top-work-card__thumbnail img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-top-work-card__thumbnail {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-top-work-card__thumbnail img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-work-card__thumbnail img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}

.p-top-work-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  margin-top: 5px;
  letter-spacing: 0.75px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .p-top-work-card__title {
    margin-top: 12px;
  }
}

.p-top-work-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .p-top-work-card__tags {
    margin-top: 12px;
  }
}

.p-top-work-card__tag {
  display: inline-block;
  line-height: 1.7;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  padding-inline: 6px;
  padding-block: 4px;
}
@media screen and (min-width: 768px) {
  .p-top-work-card__tag {
    padding-inline: 8px;
  }
}

.p-cta {
  background: #e2ecff;
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding-block: 100px;
  }
}

.p-cta__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1000px) {
  .p-cta__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15.8611300204%;
  }
}

.p-cta__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-cta__lead {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
}
@media screen and (min-width: 768px) {
  .p-cta__lead {
    font-size: 40px;
    line-height: 58px;
  }
}
.p-cta__lead span {
  font-weight: 700;
}

.p-cta__text {
  line-height: 32px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    margin-top: 40px;
  }
}

.p-chart-visual {
  position: relative;
  width: 273px;
  height: 273px;
}
@media screen and (min-width: 768px) {
  .p-chart-visual {
    position: relative;
    width: 435px;
    height: 435px;
  }
}

.p-chart-visual__svg {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.p-chart-visual__bg {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 1.2;
}

.p-chart-visual__val {
  fill: none;
  stroke: url(#grad);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 0, 100;
}
.p-chart-visual__val.is-active {
  -webkit-animation: fillArc 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: fillArc 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@-webkit-keyframes fillArc {
  from {
    stroke-dasharray: 0, 100;
  }
  to {
    stroke-dasharray: 82, 100;
  }
}

@keyframes fillArc {
  from {
    stroke-dasharray: 0, 100;
  }
  to {
    stroke-dasharray: 82, 100;
  }
}
.p-chart-visual__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.p-chart-visual__num {
  font-size: 78px;
  font-weight: 700;
  font-family: "Inconsolata", monospace;
  color: #111;
  color: #1b3579;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-chart-visual__num {
    font-size: 125px;
  }
}
.p-chart-visual__num span {
  font-size: 30px;
  font-weight: 700;
  color: #1b3579;
}
@media screen and (min-width: 768px) {
  .p-chart-visual__num span {
    font-size: 50px;
  }
}

.p-top-blog {
  margin-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-top-blog {
    margin-block: 100px;
  }
}

.p-top-blog__card-wrap {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-top-blog__card-wrap {
    margin-top: 48px;
  }
}

.p-top-blog__button-wrap {
  margin-top: 48px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-blog__button-wrap {
    max-width: 315px;
    margin-inline: auto;
    margin-top: 100px;
  }
}

.p-top-blog-card {
  width: 300px;
}
@media screen and (min-width: 768px) {
  .p-top-blog-card {
    width: 426px;
  }
  .p-top-blog-card:hover .p-top-blog-card__thumbnail img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .p-top-blog-card:hover .p-top-blog__title {
    color: #2649a4;
  }
}

.p-top-blog-card__thumbnail {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-top-blog-card__thumbnail img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-blog-card__thumbnail img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}

.p-top-blog-card__date {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-top-blog-card__date {
    font-size: 18px;
    margin-top: 6px;
  }
}

.p-top-blog__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.75px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .p-top-blog__title {
    margin-top: 6px;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
  }
}

.p-recruit-cta {
  padding-block: 60px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/common/recruit_bg.jpg);
  background-image: -webkit-image-set(url("../img/common/recruit_bg.webp") type("image/webp"), url("../img/common/recruit_bg.jpg") type("image/jpg"));
  background-image: image-set(url("../img/common/recruit_bg.webp") type("image/webp"), url("../img/common/recruit_bg.jpg") type("image/jpg"));
}

@media screen and (min-width: 1000px) {
  .p-recruit-cta__flex {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-recruit-cta__left {
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .p-recruit-cta__left {
    width: 502px;
  }
}

.p-recruit-cta__head {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .p-recruit-cta__head {
    text-align: left;
    font-size: clamp(28px, 14.96px + 1.304vw, 40px);
  }
}

.p-recruit-cta__text {
  margin-top: 40px;
}

.p-recruit-cta__button-wrap {
  max-width: 375px;
  margin-top: 44px;
  margin-inline: auto;
}
@media screen and (min-width: 1000px) {
  .p-recruit-cta__button-wrap {
    max-width: 320px;
    margin-top: 80px;
    margin-left: 0;
  }
}

.p-recruit-cta__right {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

@media screen and (min-width: 1000px) {
  .p-recruit-cta__img {
    width: 754px;
    max-width: 100%;
    height: auto;
  }
}

.p-contact-link {
  display: block;
  padding-block: 120px 60px;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .p-contact-link {
    padding-block: 120px;
    background: #d9d9d9;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
  }
  .p-contact-link:hover {
    background: #fff;
  }
  .p-contact-link:hover .p-contact-link__arrow::after {
    -webkit-animation: arrow-loop 0.4s ease forwards;
            animation: arrow-loop 0.4s ease forwards;
  }
}

@-webkit-keyframes arrow-loop {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  49% {
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
  }
  50% {
    -webkit-transform: translate(-150%, -50%);
            transform: translate(-150%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes arrow-loop {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  49% {
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
  }
  50% {
    -webkit-transform: translate(-150%, -50%);
            transform: translate(-150%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.p-contact-link__inner {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .p-contact-link__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 900px) {
  .p-contact-link__text-wrap {
    max-width: 646px;
  }
}

.p-contact-link__head {
  font-weight: 700;
  font-size: 28px;
  line-height: 41px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-contact-link__head {
    text-align: left;
    font-size: 40px;
    line-height: 58px;
    padding-left: 72px;
  }
}
.p-contact-link__head::before {
  content: "";
  background: url(../img/common/contact-icon.svg) no-repeat center center/cover;
  width: 41px;
  height: 32px;
  position: absolute;
  top: -56px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .p-contact-link__head::before {
    width: 56px;
    height: 44px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-contact-link__text {
  margin-top: 28px;
}

.p-contact-link__arrow {
  display: inline-block;
  background: linear-gradient(85.64deg, #19305c 11.46%, #2649a4 68.67%, #0097b2 99.92%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .p-contact-link__arrow {
    width: 130px;
    height: 130px;
    margin-top: 0;
  }
}
.p-contact-link__arrow::after {
  content: "";
  background: url(../img/common/button-arrow-white.svg) no-repeat center center/cover;
  width: 32px;
  height: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .p-contact-link__arrow::after {
    width: 45px;
    height: 39px;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
}

.p-footer {
  background: #323640;
  color: #fff;
}

.p-footer__flex {
  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;
  padding-block: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 1000px) {
  .p-footer__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: auto;
    padding-bottom: 100px;
  }
}

.p-footer__logo {
  width: 137px;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: 300px;
  }
}

.p-footer__nav-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1000px) {
  .p-footer__nav-items {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 84px;
       -moz-column-gap: 84px;
            column-gap: 84px;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .p-footer__nav-items:hover {
    opacity: 0.8;
  }
}

.p-footer__link {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  padding-left: 24px;
  position: relative;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (min-width: 768px) {
  .p-footer__link:hover {
    opacity: 0.7;
  }
}
.p-footer__link::before {
  content: "";
  width: 8px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-footer__isms {
  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: 1000px) {
  .p-footer__isms {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
}

.p-footer__isms-icon {
  width: 101px;
  height: auto;
}
@media screen and (min-width: 1000px) {
  .p-footer__isms-icon {
    width: 146px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.p-footer__isms-text {
  font-weight: 700;
  font-size: 12px;
  line-height: 17px;
}
@media screen and (min-width: 1000px) {
  .p-footer__isms-text {
    max-width: 285px;
    font-size: 14px;
    line-height: 20px;
  }
}

.p-footer__policy-link {
  text-align: center;
  padding-bottom: 10px;
  font-size: 15px;
  text-decoration: underline;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (min-width: 768px) {
  .p-footer__policy-link:hover {
    opacity: 0.7;
  }
}

.p-footer__copy {
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  padding-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    font-size: 14px;
    line-height: 17px;
  }
}

.p-philosophy {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-philosophy {
    padding-block: 100px;
  }
}

.p-philosophy__content {
  background: #e2ecff;
  -webkit-box-shadow: 8px 8px 0px #1b3579;
          box-shadow: 8px 8px 0px #1b3579;
  padding-inline: 12px;
  padding-block: 24px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-philosophy__content {
    -webkit-box-shadow: 35px 35px 0px #2649a4;
            box-shadow: 35px 35px 0px #2649a4;
    max-width: 1352px;
    margin-inline: auto;
    padding-block: 80px;
    padding-inline: 7.3964497041%;
  }
}

.p-philosophy__title {
  text-align: center;
}

.p-philosophy__title-inner {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  background: #fff;
  padding-block: 4px;
  padding-inline: 24px;
  border-radius: 50px;
  color: #1b3579;
}
@media screen and (min-width: 768px) {
  .p-philosophy__title-inner {
    font-size: 36px;
    padding-block: 12px;
    padding-inline: 100px;
  }
}

.p-philosophy__strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  margin-block: 24px;
}
@media screen and (min-width: 768px) {
  .p-philosophy__strong {
    font-size: 36px;
    margin-block: 36px;
  }
}

.p-philosophy__items {
  margin-top: 18px;
  list-style: auto;
  padding-left: 32px;
}
@media screen and (min-width: 768px) {
  .p-philosophy__items {
    margin-top: 36px;
    max-width: 1000px;
    margin-inline: auto;
  }
}
.p-philosophy__items > * + * {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-philosophy__items > * + * {
    margin-top: 32px;
  }
}

.p-philosophy__item {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 4px;
}
@media screen and (min-width: 768px) {
  .p-philosophy__item {
    font-size: 24px;
  }
}

.p-strength {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-strength {
    padding-block: 100px;
  }
}

.p-strength__items {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .p-strength__items {
    margin-top: 95px;
    gap: 40px;
  }
}

.p-strength__item {
  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: 900px) {
  .p-strength__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8.4016393443%;
  }
}

.p-strength__item-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-strength__item-title {
    font-size: clamp(30px, 23.333px + 0.8681vw, 40px);
  }
}

.p-strength__item-title-number {
  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;
  color: #fff;
  background: linear-gradient(85.64deg, #19305c 11.46%, #2649a4 68.67%, #0097b2 99.92%);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  font-family: "Inconsolata", monospace;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-strength__item-title-number {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

.p-strength__img {
  margin-top: 12px;
  border-radius: 20px;
}
@media screen and (min-width: 900px) {
  .p-strength__img {
    width: 40.0956284153%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-strength__text {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-strength__text {
    margin-top: 24px;
  }
}

.p-numbers {
  padding-block: 60px;
  background: #e2ecff;
}

.p-numbers__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1000px) {
  .p-numbers__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-numbers__item {
  background: #fff;
  border-radius: 20px;
  padding-block: 24px;
  padding-inline: 32px;
  height: 330px;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .p-numbers__item {
    width: 33.333%;
    height: 340px;
  }
}
.p-numbers__item.p-numbers__item--shadow {
  -webkit-box-shadow: 4px 4px 16px rgba(17, 17, 17, 0.25);
          box-shadow: 4px 4px 16px rgba(17, 17, 17, 0.25);
}
.p-numbers__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1000px) {
  .p-numbers__item::after {
    right: 24px;
    left: auto;
    translate: unset;
    -webkit-transform: unset;
  }
}
.p-numbers__item:nth-child(1)::after {
  width: 140px;
  height: 120px;
  background: url(../img/about/number-img1.svg) no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  .p-numbers__item:nth-child(1)::after {
    width: 176px;
    height: 151px;
  }
}
.p-numbers__item:nth-child(2)::after {
  width: 167px;
  height: 90px;
  background: url(../img/about/number-img2.svg) no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  .p-numbers__item:nth-child(2)::after {
    width: 210px;
    height: 113px;
  }
}
.p-numbers__item:nth-child(3)::after {
  width: 130px;
  height: 109px;
  background: url(../img/about/number-img3.svg) no-repeat center center/cover;
}
@media screen and (min-width: 1000px) {
  .p-numbers__item:nth-child(3)::after {
    width: 180px;
    height: 151px;
  }
}

.p-numbers__subheading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .p-numbers__subheading {
    font-size: 24px;
    text-align: left;
  }
}

.p-numbers__contents {
  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;
  margin-top: 10px;
}
@media screen and (min-width: 1000px) {
  .p-numbers__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0;
    gap: 44px;
  }
}

.p-numbers__number-wrap {
  color: #2649a4;
}

.p-numbers__number {
  display: inline-block;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 1000px) {
  .p-numbers__number {
    font-size: clamp(100px, 89.13px + 1.0869vw, 110px);
  }
}

.p-numbers__number-unit {
  display: inline-block;
  font-size: 32px;
  line-height: 1;
}
@media screen and (min-width: 1000px) {
  .p-numbers__number-unit {
    font-size: clamp(32px, 1.565px + 3.0435vw, 60px);
  }
}

.p-numbers__number-small {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .p-numbers__number-small {
    font-size: 20px;
  }
}

.p-numbers__caption {
  font-size: 16px;
  display: block;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .p-numbers__caption {
    text-align: left;
  }
}

.p-president {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-president {
    padding-block: 100px;
  }
}

.p-president__flex {
  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: 32px;
  margin-top: 48px;
}
@media screen and (min-width: 1000px) {
  .p-president__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 98px;
    gap: 10.1458080194%;
  }
}

.p-president__img-wrap {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .p-president__img-wrap {
    width: 34.872417983%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 20px;
  }
}

.p-president__name-wrap {
  text-align: right;
  margin-top: 48px;
}
@media screen and (min-width: 1000px) {
  .p-president__name-wrap {
    margin-top: 82px;
  }
}

.p-president__position {
  font-weight: 700;
}

.p-president__name {
  font-size: 24px;
  font-weight: 700;
  margin-left: 8px;
}
@media screen and (min-width: 1000px) {
  .p-president__name {
    margin-left: 12px;
    font-size: 28px;
  }
}

.p-profile {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-profile {
    padding-block: 100px;
  }
}

.p-profile__table {
  margin-top: 32px;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .p-profile__table {
    margin-top: 0;
  }
}
.p-profile__table tr:nth-child(n+2) th {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-profile__table tr:nth-child(n+2) th {
    padding-top: 28px;
  }
}
@media screen and (min-width: 768px) {
  .p-profile__table tr:nth-child(n+2) td {
    padding-top: 28px;
  }
}
.p-profile__table tr {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-profile__table tr::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, color-stop(25.4498714653%, #2649a4), color-stop(25.4498714653%, #444));
    background: linear-gradient(to right, #2649a4 25.4498714653%, #444 25.4498714653%);
  }
}
.p-profile__table th,
.p-profile__table td {
  display: block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-profile__table th,
  .p-profile__table td {
    display: table-cell;
  }
}
.p-profile__table th {
  font-weight: 700;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .p-profile__table th {
    width: 21.4224507284%;
    border-bottom: 1px solid #2649a4;
    padding-left: 32px;
    padding-bottom: 27px;
  }
}
.p-profile__table td {
  border-bottom: 1px solid #2649a4;
  padding-top: 16px;
  padding-bottom: 12px;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .p-profile__table td {
    width: 100%;
    padding-left: 80px;
    padding-bottom: 27px;
    border-bottom: none;
  }
}

.p-profile__store-wrap * + * {
  margin-top: 24px;
}

.p-profile__store-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.p-profile__store-address {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
}

.p-access {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-access {
    padding-block: 100px;
  }
}

.p-access__wrap {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .p-access__wrap {
    margin-top: 48px;
  }
  .p-access__wrap:first-child {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-access__text {
    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-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 75px;
  }
}

.p-access__name {
  font-weight: 700;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .p-access__name {
    font-size: 28px;
  }
}

.p-access__description {
  line-height: 1.5;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .p-access__description {
    margin-top: 0;
  }
}

.p-access__map {
  width: 100%;
  height: 218px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-access__map {
    margin-top: 20px;
    height: 273px;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
}

.p-access__note {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-access__note {
    font-size: 15px;
  }
}

.p-history {
  padding-block: 60px;
}
@media screen and (min-width: 900px) {
  .p-history {
    padding-block: 100px;
  }
}

.p-history__content {
  margin-top: 28px;
}
@media screen and (min-width: 900px) {
  .p-history__content {
    margin-top: 0;
  }
}
.p-history__content::before, .p-history__content::after {
  content: "";
  display: block;
  width: 3px;
  height: 44px;
  background: #2649a4;
  margin-left: calc(32px / 2 - 1px);
}
@media screen and (min-width: 900px) {
  .p-history__content::before, .p-history__content::after {
    margin-left: calc(140px + 32px / 2 - 1px);
  }
}

.p-history__item {
  display: grid;
  grid-template-columns: 32px auto 1fr;
  grid-template-rows: auto auto;
  position: relative;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 900px) {
  .p-history__item + .p-history__item {
    padding-top: 40px;
  }
}
.p-history__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(15px);
  width: 3px;
  background: #2649a4;
}
@media screen and (min-width: 900px) {
  .p-history__item {
    grid-template-columns: 140px 32px 200px minmax(0, 1fr);
    grid-template-rows: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .p-history__item::before {
    left: calc(140px + 32px / 2 - 1px);
  }
}

.p-history__dot {
  grid-column: 1;
  grid-row: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2649a4;
  align-self: center;
  justify-self: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .p-history__dot {
    width: 24px;
    height: 24px;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px;
  }
}

.p-history__year {
  grid-column: 2;
  grid-row: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 2px;
  padding-left: 0.75em;
  padding-top: 0;
  color: #2649a4;
}
@media screen and (min-width: 900px) {
  .p-history__year {
    grid-column: 1;
    grid-row: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 0;
    padding-right: 36px;
    padding-top: 0;
  }
}

.p-history__year-number {
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 900px) {
  .p-history__year-number {
    font-size: 32px;
    line-height: 39px;
  }
}

.p-history__year-unit {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .p-history__year-unit {
    font-size: 20px;
  }
}

.p-history__month {
  grid-column: 3;
  grid-row: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 2px;
  padding-left: 0.5em;
  margin: 0;
  color: #2649a4;
}
@media screen and (min-width: 900px) {
  .p-history__month {
    grid-column: 3;
    grid-row: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 2px;
    padding-block: 0;
    padding-left: 50px;
  }
}

.p-history__month-number {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 900px) {
  .p-history__month-number {
    font-size: 28px;
    line-height: 34px;
  }
}

.p-history__month-unit {
  font-size: 14px;
  font-weight: 700;
  color: #2649a4;
}
@media screen and (min-width: 900px) {
  .p-history__month-unit {
    font-size: 20px;
  }
}

.p-history__text {
  grid-column: 2/4;
  grid-row: 2;
  line-height: 39px;
  padding: 0.25em 0 1.75em 0.75em;
  margin: 0;
}
@media screen and (min-width: 900px) {
  .p-history__text {
    grid-column: 4;
    grid-row: 1;
    padding: 0;
  }
}

.p-example {
  padding-block: 60px;
}
@media screen and (min-width: 1000px) {
  .p-example {
    padding-block: 100px;
  }
}

.p-example__cards {
  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: 52px;
}
@media screen and (min-width: 1000px) {
  .p-example__cards {
    gap: 80px;
  }
}

.p-example__card {
  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: flex-start;
}
@media screen and (min-width: 1000px) {
  .p-example__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.2786885246%;
  }
}

.p-example__card-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .p-example__card-img-wrap {
    width: 50%;
    height: 445px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
  }
}

@media screen and (min-width: 1000px) {
  .p-example__card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}

.p-example__card-title {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  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) {
  .p-example__card-title {
    font-size: 36px;
  }
}

.p-example__card-text {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .p-example__card-text {
    margin-top: 32px;
  }
}

.p-example__card-button-wrap {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .p-example__card-button-wrap {
    margin-top: 32px;
    width: 320px;
    margin-inline: auto;
  }
}

.p-product {
  padding-block: 60px;
}
@media screen and (min-width: 900px) {
  .p-product {
    padding-block: 100px;
  }
}

.p-product__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 900px) {
  .p-product__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-product__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 12px;
  padding-top: 24px;
  padding-bottom: 36px;
  background: #f3f3f3;
  border-radius: 20px;
}
@media screen and (min-width: 900px) {
  .p-product__card {
    padding-inline: 26px;
    padding-top: 48px;
    padding-bottom: 88px;
  }
}

.p-product__card-bottom {
  padding-inline: 8px;
}
@media screen and (min-width: 900px) {
  .p-product__card-bottom {
    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-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 329px;
    padding-inline: 29px;
  }
}

.p-product__card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  margin-top: 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-product__card-title {
    font-size: clamp(24px, 16.942px + 0.7843vw, 32px);
    line-height: 58px;
  }
}

.p-product__card-text {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .p-product__card-text {
    margin-bottom: auto;
  }
}

.p-product__card-button-wrap {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .p-product__card-button-wrap {
    width: 354px;
    margin-inline: auto;
    margin-top: 28px;
  }
}

.p-recruit-slide {
  margin-top: 51px;
}
@media screen and (min-width: 768px) {
  .p-recruit-slide {
    margin-top: 97px;
  }
}

.p-recruit-slide__wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.p-recruit-slide__item {
  width: 280px;
}
@media screen and (min-width: 768px) {
  .p-recruit-slide__item {
    width: 500px;
  }
}

.p-recruit-intro {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro {
    padding-block: 100px;
  }
}

.p-recruit-intro__lead {
  font-weight: 700;
  font-size: 20px;
  line-height: 35px;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__lead {
    font-size: 48px;
    line-height: 70px;
  }
}

.p-recruit-intro__lead-inner {
  font-weight: inherit;
}

.p-recruit-intro__text-wrap {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__text-wrap {
    margin-top: 40px;
  }
}
.p-recruit-intro__text-wrap > * + * {
  margin-bottom: 32px;
}

.p-process-link {
  padding-block: 5px;
}
@media screen and (min-width: 768px) {
  .p-process-link {
    padding-block: 50px;
  }
  .p-process-link:hover .p-process-link__img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-process-link:hover .p-process-link__arrow::after {
    -webkit-animation: arrow-loop 0.5s ease forwards;
            animation: arrow-loop 0.5s ease forwards;
  }
  @-webkit-keyframes arrow-loop {
    0% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
    49% {
      -webkit-transform: translate(150%, -50%);
              transform: translate(150%, -50%);
    }
    50% {
      -webkit-transform: translate(-150%, -50%);
              transform: translate(-150%, -50%);
    }
    100% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
  }
  @keyframes arrow-loop {
    0% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
    49% {
      -webkit-transform: translate(150%, -50%);
              transform: translate(150%, -50%);
    }
    50% {
      -webkit-transform: translate(-150%, -50%);
              transform: translate(-150%, -50%);
    }
    100% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
  }
}

.p-process-link__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #e2ecff;
  border-radius: 12px;
  padding-inline: 12px;
  padding-block: 24px 45px;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-process-link__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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 78px;
    padding-block: 48px;
    gap: 10.650887574%;
  }
}

@media screen and (min-width: 768px) {
  .p-process-link__text {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-process-link__img-wrap {
  position: relative;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-process-link__img-wrap {
    width: 65.5818540434%;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .p-process-link__img {
    width: 665px;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}

.p-process-link__arrow {
  display: inline-block;
  background: linear-gradient(85.64deg, #19305c 11.46%, #2649a4 68.67%, #0097b2 99.92%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin-top: 28px;
  position: absolute;
  bottom: -32px;
  right: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-process-link__arrow {
    width: 90px;
    height: 90px;
    margin-top: 0;
    position: relative;
    bottom: inherit;
  }
}
.p-process-link__arrow::after {
  content: "";
  background: url(../img/common/button-arrow-white.svg) no-repeat center center/cover;
  width: 32px;
  height: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-process-link__arrow::after {
    width: 38px;
    height: 32px;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
}

.p-interview {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-interview {
    padding-block: 100px;
  }
}

.p-interview__cards {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .p-interview__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-interview__card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-interview__card:hover .p-interview__card-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-interview__card:hover .p-interview__card-title {
    color: #2649a4;
  }
}

.p-interview__card-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.p-interview__card-inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(102, 102, 102, 0)), color-stop(50%, rgba(70, 88, 133, 0)), to(rgba(38, 73, 164, 0.75)));
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(70, 88, 133, 0) 50%, rgba(38, 73, 164, 0.75) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.p-interview__card-img {
  display: block;
  width: 100%;
}
.p-interview__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width: 768px) {
  .p-interview__card-img {
    border-radius: 24px;
  }
}

.p-interview__card-bottom {
  width: 100%;
  position: absolute;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 10px;
  left: 0;
  padding-inline: 10px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-interview__card-bottom {
    bottom: 32px;
    padding-inline: 24px;
  }
}

.p-interview__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}

.p-interview__card-date {
  font-size: clamp(10px, 5.705px + 1.3423vw, 16px);
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-interview__card-date {
    font-size: 16px;
  }
}

.p-interview__card-name {
  font-size: clamp(18px, 7.978px + 3.1319vw, 32px);
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-interview__card-name {
    font-size: 32px;
  }
}

.p-interview__arrow {
  display: inline-block;
  background: linear-gradient(85.64deg, #19305c 11.46%, #2649a4 68.67%, #0097b2 99.92%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-interview__arrow {
    display: none;
  }
}
.p-interview__arrow::after {
  content: "";
  background: url(../img/common/button-arrow-white.svg) no-repeat center center/cover;
  width: 32px;
  height: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-interview__card-title {
  font-weight: 700;
  font-size: clamp(14px, 3.978px + 3.1319vw, 28px);
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-interview__card-title {
    font-size: 28px;
    padding-inline: 24px;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
  }
}

.p-crosstalk {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk {
    padding-block: 100px;
  }
}

.p-crosstalk__link {
  display: block;
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__link {
    margin-top: 44px;
  }
}
.p-crosstalk__link:hover .p-crosstalk__link-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-crosstalk__link:hover .p-crosstalk__link-title {
  color: #0097b2;
}

.p-crosstalk__link__inner {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__link__inner {
    border-radius: 20px;
  }
}
.p-crosstalk__link__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(102, 102, 102, 0)), color-stop(50%, rgba(70, 88, 133, 0)), to(#0097b2));
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(70, 88, 133, 0) 50%, #0097b2 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.p-crosstalk__link-img {
  display: block;
  width: 100%;
}
.p-crosstalk__link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.p-crosstalk__link-bottom {
  width: 100%;
  position: absolute;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 10px;
  left: 0;
  padding-inline: 10px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__link-bottom {
    bottom: 32px;
    padding-inline: 24px;
  }
}

.p-crosstalk__link-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}

.p-crosstalk__link-position {
  font-weight: 700;
  font-size: clamp(12px, 0.546px + 3.5794vw, 28px);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__link-position {
    font-size: 28px;
  }
}

.p-crosstalk__arrow {
  display: inline-block;
  background: linear-gradient(85.64deg, #19305c 11.46%, #2649a4 68.67%, #0097b2 99.92%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__arrow {
    display: none;
  }
}
.p-crosstalk__arrow::after {
  content: "";
  background: url(../img/common/button-arrow-white.svg) no-repeat center center/cover;
  width: 32px;
  height: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-crosstalk__link-title {
  font-weight: 700;
  font-size: clamp(14px, 3.978px + 3.1319vw, 28px);
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__link-title {
    font-size: 28px;
    padding-inline: 24px;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
  }
}

.p-crosstalk-head {
  padding-top: 34px;
  padding-inline: 20px;
}
@media screen and (min-width: 1000px) {
  .p-crosstalk-head {
    padding-top: 40px;
    padding-inline: 80px;
  }
}

.p-crosstalk-head__inner {
  background: #0097b2;
  border-radius: 20px;
  padding-block: 32px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .p-crosstalk-head__inner {
    padding-inline: 4.5454545455%;
    padding-block: 5.6818181818%;
    -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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (min-width: 1000px) {
  .p-crosstalk-head__title-wrap {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
  }
}

.p-crosstalk-head__title {
  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: flex-start;
  gap: 12px;
}
@media screen and (min-width: 1000px) {
  .p-crosstalk-head__title {
    position: absolute;
  }
}
.p-crosstalk-head__title span {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(18px, 5.006px + 3.132vw, 32px);
  line-height: 1.5;
  padding-block: 4px;
  padding-inline: 3px;
  background: #fff;
}
@media screen and (min-width: 1000px) {
  .p-crosstalk-head__title span {
    font-size: clamp(30px, -2.609px + 3.261vw, 60px);
    line-height: 1.7;
    white-space: nowrap;
  }
}

.p-crosstalk-head__sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 32px;
}
@media screen and (min-width: 1000px) {
  .p-crosstalk-head__sub-title {
    margin-top: 0;
    font-weight: 700;
    font-size: clamp(18px, 2.826px + 1.522vw, 32px);
    line-height: 46px;
    color: #fff;
    position: absolute;
    bottom: 0;
    white-space: nowrap;
    z-index: 1;
  }
}
.p-crosstalk-head__sub-title span {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  color: #fff;
}
.p-crosstalk-head__img-wrap {
  padding-inline: 12px;
  margin-top: 32px;
}
@media screen and (min-width: 1000px) {
  .p-crosstalk-head__img-wrap {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    padding-inline: 0;
    margin-right: -80px;
  }
}

.p-crosstalk-head__img {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.p-crosstalk-head__img img {
  width: 100%;
}

.p-crosstalk-body {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-body {
    margin-block: 100px;
  }
}

.p-crosstalk-body__section {
  margin-top: 40px;
}
.p-crosstalk-body__section:first-child {
  margin-top: 60px;
}

.p-crosstalk-body__h3 {
  padding-left: 51px;
  margin-block: 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 36px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-body__h3 {
    margin-block: 40px;
    padding-left: 78px;
    font-size: 28px;
    line-height: 36px;
  }
}
.p-crosstalk-body__h3::before {
  content: "";
  display: inline-block;
  width: min(11.9402985075%, 45px);
  height: 2px;
  position: absolute;
  top: 18px;
  left: 0;
  background: #111;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-body__h3::before {
    width: min(5.1413881748%, 70px);
  }
}

.p-crosstalk-body__text-wrap {
  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-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 35px;
}
.p-crosstalk-body__text-wrap * + * {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-body__text-wrap * + * {
    margin-bottom: 36px;
  }
}

.p-crosstalk-body__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-body__name {
    font-size: 20px;
  }
}

.p-crosstalk-member {
  margin-block: 60px;
  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;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-member {
    margin-block: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-crosstalk-member__card {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.p-crosstalk-member__img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-member__img {
    width: 129px;
  }
}

.p-crosstalk-member__text {
  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: flex-start;
  gap: 4px;
}

.p-crosstalk-membe__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-membe__name {
    font-size: 20px;
    line-height: 29px;
  }
}

.p-crosstalk-membe__join {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-membe__join {
    font-size: 14px;
    line-height: 20px;
  }
}

.p-crosstalk-membe__position {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk-membe__position {
    font-size: 14px;
    line-height: 20px;
  }
}

.p-interview-head {
  padding-top: 34px;
  padding-inline: 20px;
}
@media screen and (min-width: 1000px) {
  .p-interview-head {
    padding-top: 40px;
    padding-inline: 80px;
  }
}

.p-interview-head__inner {
  background: #2649a4;
  border-radius: 20px;
  padding-block: 32px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .p-interview-head__inner {
    padding-inline: 4.5454545455%;
    padding-block: 5.6818181818%;
    -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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (min-width: 1000px) {
  .p-interview-head__title-wrap {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
  }
}

.p-interview-head__title {
  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: flex-start;
  gap: 12px;
}
@media screen and (min-width: 1000px) {
  .p-interview-head__title {
    position: absolute;
  }
}
.p-interview-head__title span {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(17px, 5.006px + 3.132vw, 32px);
  line-height: 1.5;
  padding-block: 4px;
  padding-inline: 3px;
  background: #fff;
}
@media screen and (min-width: 1000px) {
  .p-interview-head__title span {
    font-size: clamp(30px, -2.609px + 3.261vw, 60px);
    line-height: 1.7;
    white-space: nowrap;
  }
}

.p-interview-head__sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .p-interview-head__sub-title {
    margin-top: 0;
    font-weight: 700;
    font-size: clamp(18px, 2.826px + 1.522vw, 32px);
    line-height: 46px;
    color: #fff;
    position: absolute;
    bottom: 0;
    white-space: nowrap;
    z-index: 1;
  }
}

.p-interview-head__name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.p-interview-head__name {
  font-size: clamp(20px, 20px + 10 * (100vw - 320px) / 680, 30px);
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .p-interview-head__name {
    font-size: clamp(30px, 30px + 18 * (100vw - 1000px) / 920, 48px);
  }
}

.p-interview-head__join {
  font-size: clamp(14px, 14px + 4 * (100vw - 320px) / 680, 18px);
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .p-interview-head__join {
    font-size: clamp(18px, 18px + 6 * (100vw - 1000px) / 920, 24px);
  }
}

.p-interview-head__position {
  font-size: clamp(20px, 20px + 10 * (100vw - 320px) / 680, 30px);
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .p-interview-head__position {
    font-size: clamp(18px, 18px + 6 * (100vw - 1000px) / 920, 24px);
  }
}

.p-interview-head__img-wrap {
  padding-inline: 12px;
  margin-top: 32px;
}
@media screen and (min-width: 1000px) {
  .p-interview-head__img-wrap {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    padding-inline: 0;
    margin-right: -80px;
  }
}

.p-interview-head__img {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.p-interview-head__img img {
  width: 100%;
}

.p-interview-body {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-interview-body {
    padding-block: 100px;
  }
}

.p-interview-body__section {
  margin-top: 40px;
}
.p-interview-body__section:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-interview-body__section {
    margin-top: 60px;
  }
}

.p-interview-body__text {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-interview-body__text {
    margin-top: 24px;
  }
}

.p-interview-body__img {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-interview-body__img {
    margin-top: 72px;
  }
}

.p-contact-body {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-contact-body {
    margin-block: 100px;
  }
}

.p-contact-body__text-wrap > * + * {
  margin-top: 32px;
}

.p-contact-form {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-contact-form {
    padding-block: 0 100px;
  }
}

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

.p-contact-form-item {
  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) {
  .p-contact-form-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.p-contact-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width: 768px) {
  .p-contact-item__head {
    width: 25.3436426117%;
  }
}

.p-contact-item__label {
  font-weight: 700;
}

.p-contact-form__tag {
  color: #ed0000;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-contact-item__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.p-contact-item__input {
  display: block;
  border: none;
  background: #e9e9e9;
  padding: 8px 12px;
  border-radius: 5px;
  width: 100%;
  outline: none;
  border: 2px solid #fff;
}
.p-contact-item__input:focus {
  border: 2px solid #2649a4;
  background: #e2ecff;
}

@media screen and (min-width: 768px) {
  .p-contact-item__input--company {
    width: 494px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-item__input--name {
    width: 276px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-item__input--email {
    width: 494px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-item__input--tel {
    width: 277px;
  }
}

.p-contact-item__input--textarea {
  height: 160px;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .p-contact-item__input--textarea {
    height: 172px;
  }
}

.p-contact-item__privacy {
  margin-top: 56px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-item__privacy {
    margin-top: 60px;
  }
}

.p-contact-item__cf {
  margin-top: 56px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-item__cf {
    margin-top: 60px;
  }
}

.p-contact-item__button-wrap {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .p-contact-item__button-wrap {
    margin-top: 60px;
    max-width: 572px;
    margin-inline: auto;
  }
}

.p-contact-item__button {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  display: block;
  background: #2649a4;
  color: #fff;
  padding-block: 18px;
  border-radius: 4px;
  border: none;
}
@media screen and (min-width: 768px) {
  .p-contact-item__button {
    border-radius: 10px;
    font-size: 20px;
    padding-block: 30px;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    cursor: pointer;
  }
  .p-contact-item__button:hover {
    background: #0097b2;
  }
}

.p-contact-item__privacy input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}
.p-contact-item__privacy input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-contact-item__privacy .wpcf7-list-item-label {
  padding-left: 44px;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}
.p-contact-item__privacy .wpcf7-list-item-label::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #e9e9e9;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-contact-item__privacy .wpcf7-list-item-label::after {
  content: "";
  width: 23px;
  height: 16px;
  background: url(../img/contact/check-icon.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.p-contact-checkbox__link {
  color: #2649a4;
  text-decoration: underline;
}

.p-category-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-category-buttons {
    margin-top: 100px;
    gap: 45px;
  }
}

.p-category-buttons__button {
  font-weight: 700;
  position: relative;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.p-category-buttons__button::after {
  content: "";
  width: 100%;
  height: 3px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2649a4), to(#2649a4));
  background-image: linear-gradient(#2649a4, #2649a4);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
}
@media screen and (min-width: 768px) {
  .p-category-buttons__button::after {
    bottom: -8px;
  }
}
@media screen and (min-width: 768px) {
  .p-category-buttons__button {
    font-size: 20px;
  }
  .p-category-buttons__button:hover {
    color: #2649a4;
  }
  .p-category-buttons__button:hover::after {
    background-size: 100% 100%;
  }
}
.p-category-buttons__button.is-active {
  color: #2649a4;
}
.p-category-buttons__button.is-active::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #2649a4;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-category-buttons__button.is-active::after {
    bottom: -8px;
  }
}

.p-archive {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-archive {
    padding-block: 48px 100px;
  }
}

.p-archive__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 900px) {
  .p-archive__items {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 6.6256830601%;
       -moz-column-gap: 6.6256830601%;
            column-gap: 6.6256830601%;
    row-gap: 100px;
  }
}

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

.p-pagenation__nav-links {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-pagenation__nav-links {
    gap: 40px;
  }
}

.p-pagenation__page-numbers {
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-pagenation__page-numbers {
    font-size: 28px;
  }
}
.p-pagenation__page-numbers.current {
  color: #fff;
}
.p-pagenation__page-numbers.current::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #2649a4;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-pagenation__page-numbers.current::before {
    width: 44px;
    height: 44px;
  }
}

.p-post-head {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-post-head {
    padding-block: 100px;
  }
}

.p-post-head__title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-post-head__title {
    font-size: 32px;
  }
}

.p-post-head__date {
  font-family: "Inconsolata", monospace;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .p-post-head__date {
    font-size: 24px;
  }
}

.p-post-head__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.p-post-head__tag {
  font-weight: 700;
  line-height: 1;
  padding-inline: 12px;
  padding-block: 8px;
  border-radius: 4px;
  border: 1px solid #111;
}

.p-post-head__img-wrap {
  aspect-ratio: 335/170;
  overflow: hidden;
  margin-top: 32px;
}
.p-post-head__img-wrap img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-post-head__img-wrap {
    aspect-ratio: 1166/617;
    margin-top: 48px;
  }
}

.p-post-head__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-body h2 {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  padding-left: 14px;
  position: relative;
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .p-post-body h2 {
    font-size: 24px;
    padding-left: 20px;
  }
}
.p-post-body h2::before {
  content: "";
  width: 6px;
  height: 100%;
  background: #2649a4;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-post-body h2::before {
    width: 8px;
  }
}
.p-post-body h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 8px;
  border-bottom: 2px solid #2649a4;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-post-body h3 {
    font-size: 28px;
  }
}
.p-post-body h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  color: #2649a4;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-post-body h4 {
    font-size: 24px;
  }
}
.p-post-body h1 span,
.p-post-body h2 span,
.p-post-body h3 span,
.p-post-body h4 span,
.p-post-body h5 span,
.p-post-body h6 span {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  font-style: inherit;
  line-height: inherit;
  display: inline;
}
.p-post-body ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-top: 32px;
}
.p-post-body ol {
  list-style: auto;
  padding-left: 1.5em;
  margin-top: 32px;
}
.p-post-body p {
  margin-top: 24px;
}
.p-post-body a {
  color: #2649a4;
  text-decoration: underline;
}
.p-post-body hr {
  margin-block: 60px;
}
.p-post-body figure {
  text-align: center;
  margin-top: 40px;
}
.p-post-body .p-post-body__company-wrap .wp-block-group__inner-container {
  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;
  margin-top: 80px;
}
.p-post-body .p-post-body__company-wrap .wp-block-group__inner-container figure {
  width: 100px;
  margin: 0;
}
.p-post-body .p-post-body__company-wrap .wp-block-group__inner-container p {
  margin-top: 12px;
}

.p-pn-link {
  padding-block: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-pn-link {
    padding-block: 100px;
    -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;
    gap: 32px;
  }
}

.p-pn-link__prev,
.p-pn-link__next {
  max-width: 100%;
  display: block;
  background: #2649a4;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding-block: 16px;
  padding-inline: 24px;
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .p-pn-link__prev,
  .p-pn-link__next {
    max-width: 365px;
  }
}
.p-pn-link__prev::before,
.p-pn-link__next::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-pn-link__prev::after,
.p-pn-link__next::after {
  content: "";
  width: 10px;
  height: 12px;
  background: url(../img/common/button-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-pn-link__prev {
  text-align: right;
  padding-left: 58px;
}
.p-pn-link__prev::before {
  left: 20px;
}
.p-pn-link__prev::after {
  left: 29px;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}

.p-pn-link__archive {
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid #2649a4;
  padding-block: 14px;
  text-align: center;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .p-pn-link__archive {
    max-width: 207px;
  }
}

.p-pn-link__next {
  padding-right: 58px;
}
.p-pn-link__next::before {
  right: 20px;
}
.p-pn-link__next::after {
  right: 29px;
}

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
#page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.p-entry-link {
  display: block;
  padding-block: 60px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/common/recruit_bg.jpg);
  background-image: -webkit-image-set(url("../img/common/recruit_bg.webp") type("image/webp"), url("../img/common/recruit_bg.jpg") type("image/jpg"));
  background-image: image-set(url("../img/common/recruit_bg.webp") type("image/webp"), url("../img/common/recruit_bg.jpg") type("image/jpg"));
}
@media screen and (min-width: 900px) {
  .p-entry-link {
    padding-block: 120px;
  }
  .p-entry-link:hover .p-entry-link__arrow::after {
    -webkit-animation: arrow-loop 0.4s ease forwards;
            animation: arrow-loop 0.4s ease forwards;
  }
}

@keyframes arrow-loop {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  49% {
    -webkit-transform: translate(150%, -50%);
            transform: translate(150%, -50%);
  }
  50% {
    -webkit-transform: translate(-150%, -50%);
            transform: translate(-150%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.p-entry-link__inner {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .p-entry-link__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-entry-link__text-wrap {
  color: #fff;
}
@media screen and (min-width: 900px) {
  .p-entry-link__text-wrap {
    max-width: 646px;
  }
}

.p-entry-link__head {
  font-weight: 700;
  font-size: 28px;
  line-height: 41px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-entry-link__head {
    text-align: left;
    font-size: 40px;
    line-height: 1.5;
  }
}

.p-entry-link__text {
  margin-top: 28px;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .p-entry-link__text {
    font-size: 28px;
  }
}

.p-entry-link__arrow {
  display: inline-block;
  background: #fff;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .p-entry-link__arrow {
    width: 130px;
    height: 130px;
    margin-top: 0;
  }
}
.p-entry-link__arrow::after {
  content: "";
  background: url(../img/common/button-arrow.svg) no-repeat center center/cover;
  width: 32px;
  height: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .p-entry-link__arrow::after {
    width: 45px;
    height: 39px;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
}

.p-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-block: 120px 100px;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding-block: 160px 120px;
  }
}

.p-404__deco {
  position: absolute;
  font-family: "Inconsolata", monospace;
  font-size: 80px;
  font-weight: 900;
  color: #2649a4;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-404__deco {
    font-size: 100px;
  }
}

.p-404__title {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 32px;
  }
}

.p-404__text {
  text-align: center;
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    margin-top: 32px;
  }
}

.p-entry-body {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-entry-body {
    margin-block: 100px;
  }
}

.p-entry-body__text-wrap > * + * {
  margin-top: 32px;
}

.p-entry-body__mail-head {
  font-weight: 700;
}

.p-entry-body__mail {
  display: inline-block;
  margin-left: 32px;
}

.p-entry-body__button-wrap {
  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;
}
@media screen and (min-width: 768px) {
  .p-entry-body__button-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-entry-body__button {
  font-size: 18px;
  line-height: 1.7;
  padding-block: 12px;
  padding-inline: 12px;
  background: #2649a4;
  color: #fff;
  border-radius: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-entry-body__button {
    padding-inline: 12px 36px;
  }
}
.p-entry-body__button::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/common/download-icon-white.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
}

.p-entry-form {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .p-entry-form {
    padding-block: 0 100px;
  }
}

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

.p-entry-form-item {
  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) {
  .p-entry-form-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.p-entry-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width: 768px) {
  .p-entry-item__head {
    width: 25.3436426117%;
  }
}

.p-entry-item__label {
  font-weight: 700;
}

.p-entry-form__tag {
  color: #ed0000;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-entry-item__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.p-entry-item__input {
  display: block;
  border: none;
  background: #e9e9e9;
  padding: 8px 12px;
  border-radius: 5px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-entry-item__input--company {
    width: 494px;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-item__input--name {
    width: 276px;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-item__input--email {
    width: 494px;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-item__input--tel {
    width: 277px;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-item__input--birthday {
    cursor: pointer;
    width: 276px;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-item__input--zip {
    cursor: text;
    width: 280px;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-item__input--pref {
    cursor: text;
    width: 280px;
  }
}

.p-entry-item__input--radio {
  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;
}
@media screen and (min-width: 768px) {
  .p-entry-item__input--radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-entry-item__input--radio input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0px, 0px, 0px, 0px);
  overflow: hidden;
}
.p-entry-item__input--radio input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-entry-item__input--radio .wpcf7-list-item-label {
  padding-left: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
.p-entry-item__input--radio .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #e9e9e9;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-entry-item__input--radio .wpcf7-list-item-label::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #2649a4;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.p-entry-item__input--check-box {
  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;
}
@media screen and (min-width: 768px) {
  .p-entry-item__input--check-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-entry-item__input--check-box input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0px, 0px, 0px, 0px);
  overflow: hidden;
}
.p-entry-item__input--check-box input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-entry-item__input--check-box .wpcf7-list-item-label {
  padding-left: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
.p-entry-item__input--check-box .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #e9e9e9;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-entry-item__input--check-box .wpcf7-list-item-label::after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 16px;
  background: url(../img/contact/check-icon.svg) no-repeat center center/cover;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.p-entry-item__input--select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  padding: 8px 12px;
  border: none;
  background: url(../img/contact/select-arrow.svg) right 20px center/12px 18px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#2649a4), to(#2649a4)) right center/52px 575px no-repeat, #e9e9e9;
  background: url(../img/contact/select-arrow.svg) right 20px center/12px 18px no-repeat, linear-gradient(#2649a4, #2649a4) right center/52px 575px no-repeat, #e9e9e9;
  border-radius: 8px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .p-entry-item__input--select {
    width: 75%;
  }
}

.p-entry-item__input--textarea {
  height: 160px;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .p-entry-item__input--textarea {
    height: 172px;
  }
}

.p-entry-item__privacy {
  margin-top: 56px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-entry-item__privacy {
    margin-top: 60px;
  }
}

.p-entry-item__button-wrap {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .p-entry-item__button-wrap {
    margin-top: 60px;
    max-width: 572px;
    margin-inline: auto;
  }
}

.p-entry-item__button {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  display: block;
  background: #2649a4;
  color: #fff;
  padding-block: 18px;
  border-radius: 4px;
  border: none;
}
@media screen and (min-width: 768px) {
  .p-entry-item__button {
    border-radius: 10px;
    font-size: 20px;
    padding-block: 30px;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    cursor: pointer;
  }
  .p-entry-item__button:hover {
    background: #0097b2;
  }
}

.p-entry-item__privacy input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.p-entry-item__privacy input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-entry-item__privacy .wpcf7-list-item-label {
  padding-left: 44px;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}
.p-entry-item__privacy .wpcf7-list-item-label::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #e9e9e9;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-entry-item__privacy .wpcf7-list-item-label::after {
  content: "";
  width: 23px;
  height: 16px;
  background: url(../img/contact/check-icon.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.p-entry-checkbox__link {
  color: #2649a4;
  text-decoration: underline;
}

#toc_container {
  background: #eaf6fb;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 20px;
  padding-block: 16px 28px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  #toc_container {
    padding-inline: 40px;
  }
}
#toc_container .toc_title {
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
#toc_container ul.toc_list {
  list-style: auto;
  text-decoration: none;
  margin-bottom: 0;
}
#toc_container ul.toc_list > li a {
  font-size: 16px;
  text-decoration: none;
  color: #111;
  -webkit-transition: -webkit-text-decoration 0.5s;
  transition: -webkit-text-decoration 0.5s;
  transition: text-decoration 0.5s;
  transition: text-decoration 0.5s, -webkit-text-decoration 0.5s;
}
@media screen and (min-width: 768px) {
  #toc_container ul.toc_list > li a:hover {
    text-decoration: underline;
  }
}
#toc_container ul.toc_list > li > ul {
  margin-bottom: 0;
  margin-top: 0;
}
#toc_container ul.toc_list > ul {
  margin-bottom: 8px;
}
#toc_container ul.toc_list > ul > * + * {
  margin-top: 8px;
}
#toc_container ul.toc_list > ul li a {
  text-decoration: none;
  color: #111;
  -webkit-transition: -webkit-text-decoration 0.5s;
  transition: -webkit-text-decoration 0.5s;
  transition: text-decoration 0.5s;
  transition: text-decoration 0.5s, -webkit-text-decoration 0.5s;
}
@media screen and (min-width: 768px) {
  #toc_container ul.toc_list > ul li a:hover {
    text-decoration: underline;
  }
}

.p-page-body {
  padding-block: 60px;
}
.p-page-body h2 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  padding-left: 14px;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-page-body h2 {
    font-size: 32px;
    line-height: 46px;
    padding-left: 20px;
  }
}
.p-page-body h2::before {
  content: "";
  width: 6px;
  height: 100%;
  background: #2649a4;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-page-body h2::before {
    width: 8px;
  }
}
@media screen and (min-width: 768px) {
  .p-page-body {
    padding-block: 100px;
  }
}

.p-job-table {
  border-collapse: separate;
  border-spacing: 12px;
  width: 100%;
  border: none;
}
.p-job-table th,
.p-job-table td {
  border: none;
  padding: 12px 20px;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-job-table th,
  .p-job-table td {
    display: table-cell;
    vertical-align: top;
  }
}
.p-job-table th {
  background-color: #e2ecff;
  color: #1b3579;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 8px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-job-table th {
    width: 20%;
  }
}
.p-job-table td {
  white-space: pre-wrap;
}
@media screen and (min-width: 768px) {
  .p-job-table td {
    display: table-cell;
    vertical-align: top;
  }
}
.p-job-table tr {
  border-bottom: 1px solid #e2e8f0;
}
.p-job-table tr:last-child {
  border-bottom: none;
}
.p-job-table td {
  white-space: pre-wrap;
}

.p-work-list {
  padding-block: 20px;
  padding-inline: 20px;
  border-radius: 20px;
  margin-top: 32px;
}
.p-work-list--problem {
  background: #e9e9e9;
}
.p-work-list--problem .p-work-list__title::before {
  background: url(../img/common/problem-icon.svg) no-repeat center center/cover;
}
.p-work-list--problem .p-work-list__item::before {
  background: #111;
}
.p-work-list--result {
  background: #e2ecff;
}
.p-work-list--result .p-work-list__title {
  color: #2649a4;
}
.p-work-list--result .p-work-list__title::before {
  background: url(../img/common/result-icon.svg) no-repeat center center/cover;
}
.p-work-list--result .p-work-list__item::before {
  background: #2649a4;
}
.p-work-list--result .p-work-list__item .p-work-list__item-strong {
  color: #2649a4;
}
.p-work-list .p-work-list__title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  padding-left: 28px;
}
@media screen and (min-width: 768px) {
  .p-work-list .p-work-list__title {
    font-size: 28px;
    padding-left: 60px;
  }
}
.p-work-list .p-work-list__title::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-work-list .p-work-list__title::before {
    width: 32px;
    height: 32px;
    left: 20px;
  }
}
.p-work-list .p-work-list__title span {
  font-weight: inherit;
}
.p-work-list .p-work-list__lists {
  margin-top: 20px;
  margin-bottom: 12px;
  padding-left: 0;
  list-style: none;
  counter-reset: yourDefinition;
}
@media screen and (min-width: 768px) {
  .p-work-list .p-work-list__lists {
    padding-left: 20px;
  }
}
.p-work-list .p-work-list__lists * + * {
  margin-top: 12px;
}
.p-work-list .p-work-list__item {
  font-size: 18px;
  font-size: 18px;
  padding-left: 35px;
  text-indent: -35px;
}
.p-work-list .p-work-list__item::before {
  counter-increment: yourDefinition;
  content: counter(yourDefinition);
  display: inline-block;
  margin-right: 0;
  width: 28px;
  height: 28px;
  text-align: center;
  color: white;
  font-weight: bold;
  text-indent: 0;
  border-radius: 100%;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-work-list .p-work-list__item::before {
    margin-right: 10px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.p-work-list .p-work-list__item .p-work-list__item-strong {
  font-weight: 700;
}

.u-hr {
  margin-block: 50px;
}

@media screen and (max-width: 767px) {
  .u-sm-hidden {
    display: none;
  }
}

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

@media screen and (max-width: 899px) {
  .u-lg-hidden-down {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .u-lg-hidden {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .u-xl-hidden-down {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .u-xl-hidden {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .u-xxl-hidden-down {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .u-xxl-hidden {
    display: none;
  }
}

.u-text-maincolor {
  color: #2649a4;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}