@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
}

@media (max-width: 1440px) and (min-width: 768px) {
  html {
    font-size: 16px;
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #272523;
  overflow-x: hidden;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  background-color: #fff;
  font-size: clamp(14px, 0.833vw, 16px);
}
body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

p {
  font-size: clamp(14px, 0.833vw, 16px);
  line-height: 1.75;
}

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

.u-right {
  text-align: right;
}

.u-center {
  text-align: center;
}

.u-sp {
  display: none;
}

.u-tb {
  display: none;
}

@media screen and (max-width: 992px) {
  .u-tb {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9375rem;
  }
  p {
    font-size: 0.875rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/* --------------------------
  header
  -------------------------- */
.l-header {
  width: 100%;
  height: 95px;
  margin: 0 auto;
  transition: 0.3s ease all;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
}

.l-header__logo {
  position: relative;
  z-index: 9;
  width: 26%;
  max-width: 200px;
}

.l-header__inner {
  max-width: 1800px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: 0.5s;
  height: 100%;
  padding: 0 20px;
}

.l-header__nav {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  gap: 30px;
}

.l-header__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  position: relative;
  gap: 2.5rem;
  z-index: 9;
}
.l-header__list li {
  position: relative;
}
.l-header__list li > a {
  font-weight: 400;
  display: block;
  gap: 10px;
  font-size: 1.125rem;
  font-size: max(14px, 1rem);
  font-weight: 600;
  line-height: 1;
  position: relative;
  transition: 0.3s ease;
}
.l-header__list li > a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1B1D4A;
  bottom: -4px;
  -ms-transform: scale(0, 1);
      transform: scale(0, 1);
  -ms-transform-origin: right top;
      transform-origin: right top;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .l-header__list li > a:hover {
    color: #1B1D4A;
  }
  .l-header__list li > a:hover::before {
    -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    -ms-transform-origin: left top;
        transform-origin: left top;
  }
}
.l-header__list li.nav-contact a {
  font-size: 1.125rem;
  background-color: #1B1D4A;
  border: 1px solid #1B1D4A;
  color: #fff;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  padding: 14px 30px;
  border-radius: 100px;
}
.l-header__list li.nav-contact a::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2rem;
  -webkit-mask-image: url("../img/common/icon_mark.svg");
          mask-image: url("../img/common/icon_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  transition: 0.3s ease;
}
.l-header__list li.nav-contact a::before {
  display: none;
}
@media (hover: hover) {
  .l-header__list li.nav-contact a:hover {
    color: #fff;
    background-color: #fff;
    color: #1B1D4A;
  }
  .l-header__list li.nav-contact a:hover::after {
    background-color: #1B1D4A;
  }
}
.l-header__list .nav-home {
  display: none;
}

.l-header__tel {
  display: none;
}

.c-hamburger {
  display: none;
}

@media screen and (max-width: 992px) {
  .l-header {
    padding: 0;
    height: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .l-header__inner {
    padding: 0 0 0 16px;
    -ms-flex: 1;
        flex: 1;
  }
  .l-header__logo {
    width: 50%;
    max-width: 200px;
  }
  .l-header__tel {
    display: block;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 60px;
    height: 50px;
  }
  .l-header__tel img {
    max-width: 20px;
  }
  .l-header__nav {
    display: none;
    z-index: 99999;
    width: 100%;
    height: 100svh;
    background-color: #202143;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 50px;
    left: 0;
    padding: 20px;
  }
  .l-header__nav.is-active {
    -ms-transform: translateX(0);
        transform: translateX(0);
  }
  .l-header__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    line-height: 1;
  }
  .l-header__list .nav-home {
    display: block;
  }
  .l-header__list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .l-header__list li > a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 700;
    gap: 16px;
    color: #fff;
    padding: 20px 24px 20px 0;
  }
  .l-header__list li > a::after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    -webkit-mask-image: url("../img/common/icon_arrow.svg");
            mask-image: url("../img/common/icon_arrow.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #fff;
    transition: 0.3s ease;
    -ms-transform: none;
        transform: none;
    position: static;
  }
  .l-header__list li.nav-contact {
    max-width: 300px;
    margin: 40px auto 0;
    border-bottom: none;
  }
  .l-header__list li.nav-contact a {
    font-size: 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    border: 1px solid #fff;
    letter-spacing: 0.01em;
    background: none;
  }
  .l-header__list li.nav-contact a::after {
    display: none;
  }
  .c-hamburger {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: relative;
    width: 60px;
    height: 50px;
    z-index: 999999;
    display: block;
    background-color: #1B1D4A;
  }
  .c-hamburger span {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    background-color: #fff;
    left: 18px;
    width: 22px;
  }
  .c-hamburger span:nth-of-type(1) {
    top: 16px;
  }
  .c-hamburger span:nth-of-type(2) {
    top: 24px;
  }
  .c-hamburger span:nth-of-type(3) {
    top: 32px;
  }
  .c-hamburger.is-active span:nth-of-type(1) {
    -ms-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
  }
  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .c-hamburger.is-active span:nth-of-type(3) {
    -ms-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
  }
}
/* --------------------------
  header recruit
  -------------------------- */
.l-header-recruit .l-header__logo {
  width: 34%;
  max-width: initial;
}
.l-header-recruit .l-header__logo a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
}
.l-header-recruit .l-header__logo .text {
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.l-header-recruit .l-header__list li.nav-entry a {
  background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
  font-size: 1.25rem;
  background-color: #1B1D4A;
  color: #fff;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  padding: 18px 30px;
  border-radius: 100px;
}
.l-header-recruit .l-header__list li.nav-entry a::before {
  display: none;
}
@media (hover: hover) {
  .l-header-recruit .l-header__list li.nav-entry a:hover {
    opacity: 0.7;
  }
}
.l-header-recruit .l-header-entry-sp {
  display: none;
}

@media screen and (max-width: 992px) {
  .l-header-recruit .l-header__inner {
    padding: 0 10px;
  }
  .l-header-recruit .l-header__logo {
    width: 42%;
  }
  .l-header-recruit .l-header__logo .text {
    display: none;
  }
  .l-header-recruit .l-header-entry-sp {
    display: block;
  }
  .l-header-recruit .l-header-entry-sp a {
    background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
    font-size: 0.8125rem;
    background-color: #1B1D4A;
    color: #fff;
    font-weight: 700;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    gap: 16px;
    padding: 8px 22px;
    border-radius: 100px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 992px) and (hover: hover) {
  .l-header-recruit .l-header-entry-sp a:hover {
    opacity: 0.7;
  }
}
/* -----------------------------------
  cta
  -----------------------------------*/
.p-footer-cta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  overflow: hidden;
}

.p-footer-cta__block {
  width: 50%;
  position: relative;
  overflow: hidden;
  height: min(650px, 33.85vw);
}
.p-footer-cta__block .block-link {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media (hover: hover) {
  .p-footer-cta__block .block-link:hover .block-img img {
    -ms-transform: scale(1.05);
        transform: scale(1.05);
  }
}
.p-footer-cta__block .block-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.p-footer-cta__block .block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.p-footer-cta__block .block-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
  background-color: rgba(50, 54, 141, 0.5);
}
.p-footer-cta__block .block-text {
  padding: 50px 20px;
  position: relative;
  z-index: 1;
  padding: 0 6.25rem;
  color: #fff;
}
.p-footer-cta__block .block-text .c-ttl {
  margin-bottom: 3.75rem;
}
.p-footer-cta__block .block-text .c-ttl .en {
  gap: 16px;
}
.p-footer-cta__block .block-text .c-ttl .en::after {
  background-color: #fff;
}
.p-footer-cta__block .block-text .lead {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-footer-cta {
    display: block;
  }
  .p-footer-cta__block {
    width: 100%;
    height: 15.875rem;
  }
  .p-footer-cta__block .block-text {
    padding: 50px 20px;
    position: relative;
  }
  .p-footer-cta__block .block-text .c-ttl {
    margin-bottom: 20px;
  }
  .p-footer-cta__block .block-text .c-ttl .en {
    gap: 6px;
    font-size: 1.75rem;
  }
  .p-footer-cta__block .block-text .lead {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}
/* -----------------------------------
  footer
  -----------------------------------*/
.l-footer {
  padding: 80px 0;
}
.l-footer .l-wrap {
  max-width: 1670px;
}

.l-footer__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 3rem;
}

.l-footer__info {
  width: 24%;
  max-width: 340px;
  padding-bottom: 10px;
}

.l-footer__logo {
  max-width: 200px;
  margin-bottom: 40px;
}

.l-footer__text {
  color: #353990;
}
.l-footer__text p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.l-footer__text address {
  font-size: 0.875rem;
}

.l-footer__menu {
  -ms-flex: 1;
      flex: 1;
  padding-left: 2.5rem;
  border-left: 1px solid #C4C4C4;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.l-footer__menu .menu-ttl {
  color: #353990;
  font-weight: 600;
}
.l-footer__menu .l-footer__nav {
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
}
.l-footer__menu .l-footer__nav li:not(:last-child) {
  margin-right: 16px;
  padding-right: 16px;
  border-right: 1px solid #C4C4C4;
}
.l-footer__menu .l-footer__nav a {
  position: relative;
  font-weight: 600;
  color: #353990;
  padding: 4px 8px;
}
.l-footer__menu .l-footer__nav a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #353990;
  bottom: -2px;
  -ms-transform: scale(0, 1);
      transform: scale(0, 1);
  -ms-transform-origin: right top;
      transform-origin: right top;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .l-footer__menu .l-footer__nav a:hover::before {
    -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    -ms-transform-origin: left top;
        transform-origin: left top;
  }
}

.l-footer__copy {
  text-align: right;
  line-height: 1.2;
  color: #353990;
  margin-top: auto;
  letter-spacing: 0.05em;
}
.l-footer__copy small {
  font-size: 0.875rem;
}

@media screen and (max-width: 992px) {
  .l-footer {
    padding: 40px 0;
  }
  .l-footer__block {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 30px;
  }
  .l-footer__info {
    width: 100%;
    padding-bottom: 0;
  }
  .l-footer__logo {
    max-width: 242px;
    margin-bottom: 20px;
  }
  .l-footer__text p, .l-footer__text address {
    font-size: clamp(12px, 0.833vw, 16px);
  }
  .l-footer__menu {
    -ms-flex: 1;
        flex: 1;
    padding-left: 0;
    border-left: none;
    padding-top: 30px;
    border-top: 1px solid #C4C4C4;
  }
  .l-footer__menu .l-footer__nav {
    -ms-flex-direction: column;
        flex-direction: column;
    margin-top: 10px;
    gap: 20px;
  }
  .l-footer__menu .l-footer__nav li:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .l-footer__copy {
    text-align: center;
    margin-top: 50px;
  }
  .l-footer__copy small {
    font-size: 0.75rem;
  }
}
/* —————————————————
  component
  —————————————————*/
/* ---------- title ----------*/
.c-ttl {
  margin-bottom: 72px;
  font-weight: 700;
  width: 100%;
}
.c-ttl .en {
  font-size: 4.375rem;
  font-size: clamp(50px, 3.645vw, 70px);
  font-weight: 600;
  line-height: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 24px;
}
.c-ttl .en::after {
  content: "";
  display: block;
  width: 48px;
  height: 34px;
  -webkit-mask-image: url("../img/common/icon_mark.svg");
          mask-image: url("../img/common/icon_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #32368D;
}
.c-ttl .ja {
  display: block;
  font-weight: 700;
  margin-top: 1.875rem;
}

.c-ttl-border {
  color: #333333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  border-left: 7px solid #0066B9;
  padding-left: 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .c-ttl .en {
    font-size: 2rem;
    gap: 16px;
  }
  .c-ttl .en::after {
    width: 36px;
    height: 25px;
  }
  .c-ttl .ja {
    margin-top: 20px;
  }
  .c-ttl-border {
    font-size: 1rem;
    border-left: 4px solid #0066B9;
    padding-left: 16px;
    margin-bottom: 24px;
  }
}
/* ---------- btn ----------*/
.c-btn {
  color: #32368D;
  font-weight: 700;
  font-size: 1.25rem;
  font-size: clamp(14px, 1.04vw, 20px);
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 15px 30px;
  max-height: 60px;
  transition: 0.3s ease;
  position: relative;
  border: 1.5px solid #32368D;
  gap: 1.25rem;
  border-radius: 100px;
  margin-top: 72px;
}
.c-btn::before {
  content: "";
  display: block;
  width: 32px;
  height: 24px;
  -webkit-mask-image: url("../img/common/icon_arrow-right.svg");
          mask-image: url("../img/common/icon_arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background: #32368D;
  transition: 0.3s ease;
  z-index: 1;
}
@media (hover: hover) {
  .c-btn:hover {
    background-color: #32368D;
    color: #fff;
  }
  .c-btn:hover::before {
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1rem;
    padding: 12px 30px;
    margin-top: 40px;
  }
}
.c-text-circle {
  width: 94%;
  height: auto;
  max-width: 1780px;
  animation: rotation 100s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.c-lead {
  font-size: 1.375rem;
  font-size: clamp(16px, 1.145vw, 22px);
}

.c-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.c-slider .swiper-slide img {
  aspect-ratio: 556/323;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-center {
  text-align: center;
}

.l-wrap {
  width: calc(100% - 6.25rem);
  max-width: 1520px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .c-lead {
    font-size: 0.875rem;
  }
  .l-wrap {
    width: calc(100% - 2.5rem);
  }
}
/* ---------------------------------------------
 animation
  --------------------------------------------- */
.js-fadeUp {
  opacity: 0;
  -ms-transform: translateY(20px);
      transform: translateY(20px);
  transition: 0.8s ease;
}
.js-fadeUp.is-active {
  opacity: 1;
  -ms-transform: translateY(0);
      transform: translateY(0);
}

.js-fade {
  opacity: 0;
  transition: 0.8s ease;
}
.js-fade.is-active {
  opacity: 1;
}

/* ---------------------------------------------
  top mv
  --------------------------------------------- */
.l-main-home {
  overflow: hidden;
  background-color: #202143;
}

.p-top-mv {
  width: 100%;
  min-height: 740px;
  position: relative;
  padding-top: 95px;
  z-index: 2;
}
.p-top-mv::before {
  content: "";
  display: block;
  width: 70%;
  max-width: 1320px;
  aspect-ratio: 910/760;
  position: absolute;
  top: 0;
  right: -5%;
  -webkit-mask-image: url("../img/common/bg_mark.svg");
          mask-image: url("../img/common/bg_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: rgba(255, 255, 255, 0.25);
}

.p-top-mv__wrap {
  width: calc(100% - 7.5rem);
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
}

.p-top-mv__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
  padding: 80px 0;
}

.p-top-mv__text {
  -ms-flex: 1;
      flex: 1;
}

.p-top-mv__ttl {
  font-size: max(46px, 4.166vw);
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.p-top-mv__ttl-en {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.p-top-mv__btn {
  width: 30%;
  max-width: 362px;
  margin-top: 60px;
}
.p-top-mv__btn a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
  background-color: #fff;
  padding: 16px 6px;
}
.p-top-mv__btn a::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("../img/common/icon_tel.svg") no-repeat center/100%;
}
.p-top-mv__btn a::after {
  content: "";
  display: block;
  width: 3.375rem;
  height: 2.625rem;
  -webkit-mask-image: url("../img/common/icon_mark.svg");
          mask-image: url("../img/common/icon_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #353990;
}
.p-top-mv__btn .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  font-weight: 700;
  color: #353990;
  line-height: 1.2;
}
.p-top-mv__btn .text .time {
  font-size: clamp(10px, 0.625vw, 12px);
}
.p-top-mv__btn .text .num {
  font-size: clamp(16px, 1.25vw, 24px);
}

.p-top-mv__img {
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 992px) {
  .p-top-mv {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv {
    padding-top: 50px;
    min-height: initial;
    z-index: 2;
    background-color: #202143;
  }
  .p-top-mv::before {
    width: 114%;
    right: -36%;
  }
  .p-top-mv__wrap {
    width: calc(100% - 40px);
  }
  .p-top-mv__block {
    padding: 40px 0 30px;
  }
  .p-top-mv__text {
    -ms-flex: 1;
        flex: 1;
  }
  .p-top-mv__ttl {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .p-top-mv__ttl-en {
    font-size: 1rem;
    line-height: 1.1;
  }
  .p-top-mv__btn {
    display: none;
  }
}
/* ---------------------------------------------
  top company
  --------------------------------------------- */
.p-top-company {
  position: relative;
  padding: 11.25rem 0 15.625rem;
}
.p-top-company .c-text-circle {
  opacity: 0.1;
  position: absolute;
  top: -25%;
  right: 78%;
  z-index: 1;
}

.p-top-company__block {
  width: 75%;
  max-width: 1160px;
  margin: 0 0 0 auto;
  color: #fff;
}
.p-top-company__block .desc {
  font-size: 1.125rem;
  line-height: 2.5;
}
.p-top-company__block .c-btn {
  color: #fff;
  border-color: #fff;
}
.p-top-company__block .c-btn::before {
  background-color: #fff;
}
@media (hover: hover) {
  .p-top-company__block .c-btn:hover {
    background-color: #fff;
    color: #32368D;
  }
  .p-top-company__block .c-btn:hover::before {
    background-color: #32368D;
  }
}

.p-top-company__ttl {
  font-size: 1.25rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  padding: 10px 0;
  margin-bottom: 40px;
}
.p-top-company__ttl::before {
  content: "";
  display: block;
  width: 36px;
  height: 25px;
  -webkit-mask-image: url("../img/common/icon_mark.svg");
          mask-image: url("../img/common/icon_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.p-top-company__ttl-ja {
  font-size: max(28px, 3.33vw);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .p-top-company {
    padding: 100px 0 80px;
  }
  .p-top-company .c-text-circle {
    width: 165%;
    top: -58%;
    right: -88%;
    z-index: 1;
  }
  .p-top-company__block {
    width: 100%;
    padding-right: 16px;
  }
  .p-top-company__block .desc {
    font-size: 0.875rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
  .p-top-company__ttl {
    margin-bottom: 30px;
  }
  .p-top-company__ttl-ja {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 30px;
  }
}
/* ---------------------------------------------
  top service
  --------------------------------------------- */
.p-top-service {
  padding: 12.5rem 0;
  color: #fff;
}
.p-top-service .c-ttl {
  margin-bottom: 72px;
}
.p-top-service .c-ttl .en {
  color: #fff;
}
.p-top-service .c-ttl .en::after {
  background-color: rgba(255, 255, 255, 0.6);
}
.p-top-service .c-btn {
  color: #fff;
  border-color: #fff;
}
.p-top-service .c-btn::before {
  background-color: #fff;
}
@media (hover: hover) {
  .p-top-service .c-btn:hover {
    background-color: #fff;
    color: #32368D;
  }
  .p-top-service .c-btn:hover::before {
    background-color: #32368D;
  }
}

.p-top-service__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 40px;
}

.p-top-service__text {
  width: 30%;
  max-width: 360px;
}

.p-top-service__list {
  width: 74%;
  max-width: 1000px;
  display: grid;
  gap: 56px;
}
.p-top-service__list .item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.p-top-service__list .item a::before {
  content: "";
  display: block;
  width: 9.25rem;
  height: 100%;
  -webkit-clip-path: polygon(65% 0, 100% 0%, 35% 100%, 0% 100%);
          clip-path: polygon(65% 0, 100% 0%, 35% 100%, 0% 100%);
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  right: 7%;
  z-index: 2;
  transition: 0.3s ease;
}
.p-top-service__list .item a::after {
  content: "";
  display: block;
  width: 32px;
  height: 24px;
  -webkit-mask-image: url("../img/common/icon_arrow-right.svg");
          mask-image: url("../img/common/icon_arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background: #fff;
  transition: 0.3s ease;
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 4.6%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  z-index: 2;
}
@media (hover: hover) {
  .p-top-service__list .item a:hover::before {
    -webkit-clip-path: polygon(65% 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(65% 0, 100% 0%, 100% 100%, 0% 100%);
    right: 0;
    width: 12.5rem;
  }
  .p-top-service__list .item a:hover::after {
    background-color: #32368D;
  }
  .p-top-service__list .item a:hover .service-img img {
    -ms-transform: scale(1.05);
        transform: scale(1.05);
  }
}
.p-top-service__list .service-img {
  aspect-ratio: 1000/248;
  position: relative;
  overflow: hidden;
}
.p-top-service__list .service-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 29, 74, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-top-service__list .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.p-top-service__list .service-ttl {
  position: absolute;
  top: 50%;
  left: 40px;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 10px;
  line-height: 1.2;
  z-index: 2;
}
.p-top-service__list .service-ttl .en {
  font-size: 1.5rem;
  font-weight: 600;
}
.p-top-service__list .service-ttl .ja {
  font-size: 2.5rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-top-service {
    padding: 80px 0;
  }
  .p-top-service .c-ttl {
    margin-bottom: 40px;
  }
  .p-top-service .c-ttl .en::after {
    width: 48px;
    height: 34px;
  }
  .p-top-service .c-btn {
    margin-top: 20px;
  }
  .p-top-service__container {
    display: block;
  }
  .p-top-service__text {
    width: 100%;
  }
  .p-top-service__list {
    gap: 20px;
    margin-top: 24px;
    width: 100%;
  }
  .p-top-service__list .item a::before {
    width: 84px;
    right: 12.5%;
  }
  .p-top-service__list .item a::after {
    top: initial;
    right: 20px;
    bottom: 20px;
    -ms-transform: none;
        transform: none;
  }
  .p-top-service__list .service-img {
    aspect-ratio: 335/140;
  }
  .p-top-service__list .service-ttl {
    left: 10px;
    top: calc(50% - 10px);
  }
  .p-top-service__list .service-ttl .en {
    font-size: 1rem;
  }
  .p-top-service__list .service-ttl .ja {
    font-size: 1.5rem;
  }
}
/* ---------------------------------------------
   top news
  --------------------------------------------- */
.p-top-news {
  padding: 15rem 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.p-top-news::before {
  content: "";
  display: block;
  width: 47.395vw;
  max-width: 910px;
  aspect-ratio: 910/760;
  position: absolute;
  bottom: -10px;
  left: -16%;
  -webkit-mask-image: url("../img/common/bg_mark.svg");
          mask-image: url("../img/common/bg_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: rgba(50, 54, 141, 0.3);
}
.p-top-news .l-wrap {
  position: relative;
}
.p-top-news .c-btn {
  background-color: #fff;
}
@media (hover: hover) {
  .p-top-news .c-btn:hover {
    background-color: #32368D;
  }
}

.p-top-news__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 40px;
}

.p-top-news__text {
  width: 30%;
  max-width: 360px;
}

.p-top-news__main {
  width: 74%;
  max-width: 1000px;
}

.p-news__list {
  -ms-flex: 1;
      flex: 1;
  display: grid;
  gap: 56px;
}
.p-news__list li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: 0.3s ease;
  gap: 2.625rem;
}
@media (hover: hover) {
  .p-news__list li a:hover {
    opacity: 0.8;
  }
}
.p-news__list .p-news__img {
  width: 39%;
}
.p-news__list .p-news__img img {
  aspect-ratio: 392/224;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news__list .p-news__text {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 8px;
}
.p-news__list .news-date {
  width: 100%;
  font-weight: 600;
  color: #333;
  font-size: 1.0625rem;
  font-family: "Montserrat", sans-serif;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
}
.p-news__list .news-date::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333333;
  -ms-flex: 1;
      flex: 1;
}
.p-news__list .news-category {
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  background-color: #32368D;
  color: #fff;
  padding: 2px 20px;
}
.p-news__list .news-ttl {
  width: 100%;
  font-weight: 700;
  font-size: 1.25rem;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .p-top-news {
    padding: 60px 0 120px;
  }
  .p-top-news::before {
    width: 50%;
    top: 0;
    left: initial;
    right: -10%;
  }
  .p-top-news .c-ttl {
    margin-bottom: 50px;
  }
  .p-top-news .c-ttl .en {
    font-size: 2.5rem;
  }
  .p-top-news .c-ttl .en::after {
    width: 48px;
    height: 34px;
  }
  .p-top-news__container {
    display: block;
  }
  .p-top-news__text {
    width: 100%;
  }
  .p-top-news__main {
    width: 100%;
    margin-top: 20px;
  }
  .p-top-news__main .c-btn {
    margin-top: 40px;
  }
  .p-news__list {
    gap: 24px;
  }
  .p-news__list li a {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 10px;
  }
  .p-news__list .p-news__img {
    width: 100%;
  }
  .p-news__list .p-news__img img {
    aspect-ratio: 336/210;
  }
  .p-news__list .p-news__text {
    -ms-flex: 1;
        flex: 1;
    width: 100%;
    display: block;
  }
  .p-news__list .news-date {
    font-size: 0.8125rem;
    gap: 10px;
    line-height: 1.9;
  }
  .p-news__list .news-category {
    padding: 2px 8px;
  }
  .p-news__list .news-ttl {
    font-size: 1rem;
    margin-top: 5px;
  }
}
/*=========== lower pages Common ===========*/
.c-heading {
  background-color: #202143;
  position: relative;
  height: 25rem;
  margin-top: 95px;
  overflow: hidden;
}

.c-heading__wrap {
  position: relative;
  z-index: 1;
  max-width: 1620px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 100%;
}

.c-heading__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.c-heading__text::before {
  content: "";
  display: block;
  width: 34%;
  max-width: 495px;
  height: 100%;
  aspect-ratio: 495/424;
  position: absolute;
  bottom: 0;
  left: -16%;
  -webkit-mask-image: url("../img/common/bg_mark.svg");
          mask-image: url("../img/common/bg_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: top right;
          mask-position: top right;
  background-color: rgba(255, 255, 255, 0.2);
}

.c-heading-ttl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  color: #fff;
  position: relative;
}
.c-heading-ttl .en {
  font-size: 4.375rem;
  font-weight: 700;
}
.c-heading-ttl .ja {
  font-size: 1.875rem;
  font-weight: 500;
}

.c-heading__img {
  width: 74%;
  max-width: 1156px;
  -webkit-clip-path: polygon(14% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(14% 0, 100% 0%, 100% 100%, 0% 100%);
  margin-right: calc(50% - 50vw);
}
.c-heading__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 992px) {
  .c-heading {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading {
    background: none;
    height: auto;
    margin-top: 50px;
    overflow: initial;
  }
  .c-heading__wrap {
    width: 100%;
    height: 100%;
    padding-bottom: 16px;
  }
  .c-heading__text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #202143;
    width: 100%;
    max-width: 220px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 86% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 86% 100%, 0% 100%);
    padding: 10px 30px 16px;
  }
  .c-heading__text::before {
    width: 58%;
    max-width: 495px;
    left: -15%;
  }
  .c-heading-ttl {
    gap: 4px;
  }
  .c-heading-ttl .en {
    font-size: 1.625rem;
  }
  .c-heading-ttl .ja {
    font-size: 0.875rem;
  }
  .c-heading__img {
    width: 100vw;
    -webkit-clip-path: none;
            clip-path: none;
    margin: 0 calc(50% - 50vw);
    min-height: 190px;
  }
}
/* ----------- breadcrumb -----------*/
.c-breadcrumb {
  margin-top: 20px;
}

.c-breadcrumb-article {
  padding-top: 105px;
}

.c-breadcrumb__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 1320px;
}
.c-breadcrumb__list li:not(:last-of-type)::after {
  content: "/";
  display: inline-block;
  color: #32368D;
  margin: 0 6px;
}
.c-breadcrumb__list li,
.c-breadcrumb__list a {
  display: inline-block;
  font-size: 0.625rem;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.c-breadcrumb__list .home {
  color: #BDBDBD;
}
.c-breadcrumb__list .home a {
  color: #BDBDBD;
  display: inline-block;
}
.c-breadcrumb__list .home a::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 9px;
  background: url("../img/common/icon_home.svg") no-repeat center/100%;
  margin-right: 5px;
}
.c-breadcrumb__list a {
  color: #BDBDBD;
}

@media screen and (max-width: 992px) {
  .c-breadcrumb-article {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    margin-top: 12px;
  }
  .c-breadcrumb__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/* ---------------------------------------------
  company message
  --------------------------------------------- */
.p-company-section .l-wrap {
  max-width: 1320px;
}
.p-company-section .c-ttl .en {
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  gap: 16px;
}
.p-company-section .c-ttl .en::after {
  width: 36px;
  height: 25px;
}

.p-company-message {
  padding: 6.25rem 0 7.5rem;
  position: relative;
}
.p-company-message .c-ttl {
  margin-bottom: 5rem;
}

.p-company-message__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 3.5rem;
}
.p-company-message__block .message-img {
  width: 40%;
  max-width: 463px;
}
.p-company-message__block .message-img .img-caption {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  gap: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.p-company-message__block .message-img .img-caption .position {
  font-size: 0.875rem;
}
.p-company-message__block .message-img .img-caption .name {
  font-size: 1.5rem;
}
.p-company-message__block .message-text {
  -ms-flex: 1;
      flex: 1;
}
.p-company-message__block .message-text > p {
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-company-message__block .message-text > p:not(:last-of-type) {
  margin-bottom: 30px;
}
.p-company-message__block .message-heading {
  margin-bottom: 50px;
}
.p-company-message__block .message-heading::before {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  background-color: #000;
  margin-bottom: 60px;
}
.p-company-message__block .message-ttl {
  font-size: clamp(24px, 1.5625vw, 30px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}
.p-company-message__block .message-en {
  color: #32368D;
  font-weight: 600;
  font-size: 0.875rem;
  font-size: clamp(12px, 0.625vw, 14px);
  line-height: 1.45;
}

@media screen and (max-width: 767px) {
  .p-company-section .c-ttl .en {
    font-size: 2rem;
  }
  .p-company-message {
    padding: 50px 0 0;
  }
  .p-company-message .c-ttl {
    margin-bottom: 50px;
  }
  .p-company-message__block {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 100px;
  }
  .p-company-message__block .message-img {
    width: 100%;
    margin: 0 auto;
  }
  .p-company-message__block .message-img .img-caption .name {
    font-size: 1.25rem;
  }
  .p-company-message__block .message-heading {
    margin-bottom: 40px;
  }
  .p-company-message__block .message-heading::before {
    margin-bottom: 30px;
  }
}
/* ---------------------------------------------
  company overview
  --------------------------------------------- */
.p-company-overview {
  position: relative;
  padding: 7.5rem 0 18.75rem;
  position: relative;
}
.p-company-overview::before {
  content: "";
  display: block;
  width: 47.395vw;
  max-width: 910px;
  aspect-ratio: 910/760;
  position: absolute;
  bottom: -10px;
  left: -16%;
  -webkit-mask-image: url("../img/common/bg_mark.svg");
          mask-image: url("../img/common/bg_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: rgba(50, 54, 141, 0.3);
}

.p-company-overview__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 2.5rem;
}
.p-company-overview__container .c-ttl {
  -ms-flex: 1;
      flex: 1;
}

.p-company-overview__block {
  width: 74%;
  max-width: 960px;
}
.p-company-overview__block dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 1px solid #DDDDDD;
  padding: 24px 0;
}
.p-company-overview__block dl:first-of-type {
  border-top: 1px solid #DDDDDD;
}
.p-company-overview__block dl dt {
  width: 200px;
  font-weight: 600;
  font-size: clamp(14px, 0.885vw, 17px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 10px;
}
.p-company-overview__block dl dd {
  -ms-flex: 1;
      flex: 1;
  line-height: 1.7;
  font-weight: 500;
  padding: 0 10px;
  font-size: clamp(14px, 0.885vw, 17px);
}
.p-company-overview__block dl iframe {
  aspect-ratio: 628/356;
  width: 100%;
  max-width: 628px;
  height: auto;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-company-overview {
    padding: 80px 0;
  }
  .p-company-overview::before {
    display: none;
  }
  .p-company-overview__container {
    display: block;
  }
  .p-company-overview__container .c-ttl {
    margin-bottom: 50px;
  }
  .p-company-overview__block {
    width: 100%;
    max-width: 960px;
  }
  .p-company-overview__block dl {
    display: block;
    padding: 20px 0;
  }
  .p-company-overview__block dl dt {
    width: 100%;
    font-weight: 600;
    font-size: 1.0625rem;
  }
  .p-company-overview__block dl dd {
    font-weight: 400;
    font-size: 1.0625rem;
  }
  .p-company-overview__block dl iframe {
    margin-top: 20px;
  }
}
/* ---------------------------------------------
  company history
  --------------------------------------------- */
.p-about-history {
  padding: 8.75rem 0;
  position: relative;
  overflow: hidden;
}
.p-about-history .c-ttl {
  margin-bottom: 90px;
}
.p-about-history .c-text-circle {
  position: absolute;
  top: 55vw;
  right: -50vw;
  width: 92.7vw;
}
.p-about-history .c-text-circle path {
  fill: rgba(0, 0, 0, 0.03);
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.1));
}
.p-about-history .l-wrap {
  position: relative;
  z-index: 1;
}

.p-history-list .history-item {
  position: relative;
}
.p-history-list .history-item:not(:last-child) {
  padding-bottom: 50px;
}
.p-history-list .history-item::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 20px;
}
.p-history-list .history-item::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #32368D;
  position: absolute;
  top: 10px;
  left: 12px;
}
.p-history-list .history-text {
  padding-left: 35px;
}
.p-history-list .history-text .year {
  width: 100%;
  color: #32368D;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  line-height: 1.2;
}
.p-history-list .history-text .year::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  border-top: 4px dotted #32368D;
  -ms-transform: translateY(4px);
      transform: translateY(4px);
}
.p-history-list .history-text .detail {
  font-size: 1.125rem;
  padding-left: 52px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-about-history {
    padding: 80px 0 250px;
    position: relative;
  }
  .p-about-history .c-ttl {
    margin-bottom: 50px;
  }
  .p-about-history .c-text-circle {
    position: absolute;
    top: 85%;
    right: -40%;
  }
  .p-about-history .c-text-circle svg {
    width: 150%;
    height: auto;
    aspect-ratio: 1910/1885;
  }
  .p-history-list .history-item {
    position: relative;
  }
  .p-history-list .history-item:not(:last-child) {
    padding-bottom: 40px;
  }
  .p-history-list .history-item::before {
    left: 18px;
  }
  .p-history-list .history-item::after {
    top: 10px;
    left: 10px;
  }
  .p-history-list .history-text .year {
    width: 100%;
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .p-history-list .history-text .detail {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 2;
  }
}
/* ---------------------------------------------
  page service
  --------------------------------------------- */
.l-container-service {
  overflow: hidden;
}

.p-service-section {
  padding: 12.5rem 0;
}
.p-service-section:first-child {
  padding-top: 7.5rem;
}
.p-service-section:last-child {
  padding-bottom: 7.5rem;
}
.p-service-section .l-wrap {
  max-width: 1540px;
}
.p-service-section:nth-of-type(even) .p-service-block {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
.p-service-section:nth-of-type(even) .p-service-block::before {
  right: initial;
  left: calc(50% - 50vw);
}
.p-service-section:nth-of-type(even) .p-service-block::after {
  right: initial;
  left: calc(50% - 50vw);
  -webkit-clip-path: polygon(0 0, 40% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 40% 0%, 100% 100%, 0% 100%);
}
.p-service-section:nth-of-type(even) .p-service-img {
  margin-right: inherit;
  margin-left: calc(50% - 50vw);
}

.p-service-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 5rem;
  position: relative;
  padding-bottom: 5.25rem;
}
.p-service-block::before {
  content: "";
  display: block;
  width: 93.75vw;
  height: calc(100% - 5.25rem);
  background-color: rgba(50, 54, 141, 0.05);
  position: absolute;
  bottom: 0;
  right: calc(50% - 50vw);
}
.p-service-block::after {
  content: "";
  display: block;
  width: 40%;
  max-width: 430px;
  height: calc(100% - 84px);
  -webkit-clip-path: polygon(40% 0%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(40% 0%, 100% 0, 100% 100%, 0% 100%);
  background-color: #32368D;
  position: absolute;
  bottom: 0;
  right: calc(50% - 50vw);
  z-index: 0;
}

.p-service-img {
  position: relative;
  width: 52.5%;
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  z-index: 1;
}

.p-service-text {
  position: relative;
  width: 55%;
  padding: 16px 0;
  z-index: 1;
}
.p-service-text .p-service-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.p-service-text .p-service-head::before {
  content: "";
  display: block;
  width: 5.375rem;
  height: 3.75rem;
  -webkit-mask-image: url("../img/common/icon_mark.svg");
          mask-image: url("../img/common/icon_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #32368D;
}
.p-service-text .service-num {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  gap: 20px;
}
.p-service-text .service-num .en {
  color: #32368D;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
}
.p-service-text .service-num .num {
  font-family: "Noto Sans", sans-serif;
  font-size: 6.25rem;
  -webkit-text-stroke: 1px #32368D;
  color: transparent;
  line-height: 0.8;
  font-weight: 800;
}
.p-service-text .service-ttl {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
}
.p-service-text .p-service-main {
  padding-left: 6.25rem;
}
.p-service-text .p-service-main p {
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-service-text .p-service-main p:not(:last-of-type) {
  margin-bottom: 24px;
}

.p-service-detail {
  max-width: 1320px;
  margin: 7.5rem auto 0;
  border: 1px solid #32368D;
  padding: 3.75rem;
}
.p-service-detail .c-fBox {
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
}
.p-service-detail .c-fBox.center {
  -ms-flex-align: center;
      align-items: center;
}
.p-service-detail .block-movie {
  width: 50%;
  max-width: 540px;
}
.p-service-detail .block-movie iframe {
  aspect-ratio: 540/304;
  width: 100%;
  height: auto;
}
.p-service-detail .block-text {
  -ms-flex: 1;
      flex: 1;
}
.p-service-detail .detail-ttl {
  font-size: 1.625rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.p-service-detail .detail-ttl::before {
  content: "";
  display: block;
  width: 20px;
  height: 32px;
  background-color: #353990;
  -webkit-clip-path: polygon(70% 0, 100% 0%, 30% 100%, 0% 100%);
          clip-path: polygon(70% 0, 100% 0%, 30% 100%, 0% 100%);
}
.p-service-detail .detail-ttl:not(:first-of-type) {
  margin-top: 40px;
}
.p-service-detail .list {
  padding-left: 50px;
}
.p-service-detail .list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 500;
}
.p-service-detail .list li:not(:last-child) {
  margin-bottom: 20px;
}
.p-service-detail .list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  min-width: 6px;
  height: 6px;
  background-color: #32368D;
  border-radius: 50%;
  -ms-transform: translateY(8px);
      transform: translateY(8px);
}

.p-service-facility__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  max-width: 1320px;
  margin: 8.75rem auto 0;
}
.p-service-facility__list p {
  font-size: clamp(12px, 0.781vw, 15px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  color: #32368D;
  border-bottom: 1px solid #32368D;
  padding: 5px;
  margin-top: 10px;
}

@media screen and (max-width: 992px) {
  .p-service-facility__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-service-section {
    padding: 80px 0;
  }
  .p-service-section:first-child {
    padding-top: 40px;
  }
  .p-service-section:last-child {
    padding-bottom: 120px;
  }
  .p-service-section:nth-of-type(even) .p-service-block::after {
    width: 100vw;
    max-width: 100vw;
    height: 30%;
    min-height: 16.25rem;
    -webkit-clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  }
  .p-service-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
    padding: 0 0 100px;
  }
  .p-service-block::before {
    width: 100vw;
    height: calc(100% - 30px);
  }
  .p-service-block::after {
    width: 100vw;
    max-width: 100vw;
    height: 30%;
    min-height: 16.25rem;
    -webkit-clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  }
  .p-service-img {
    width: 100%;
  }
  .p-service-text {
    width: 100%;
    padding: 0;
  }
  .p-service-text .p-service-head {
    gap: 10px;
    margin-bottom: 40px;
  }
  .p-service-text .p-service-head::before {
    width: 50px;
    height: 35px;
  }
  .p-service-text .service-num {
    gap: 10px;
  }
  .p-service-text .service-num .en {
    font-size: 1rem;
  }
  .p-service-text .service-num .num {
    font-size: 3.125rem;
  }
  .p-service-text .service-ttl {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  .p-service-text .p-service-main {
    padding-left: 0;
  }
  .p-service-detail {
    margin: 40px auto 0;
    padding: 20px 20px 30px;
  }
  .p-service-detail .c-fBox {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 20px;
  }
  .p-service-detail .block-movie {
    width: 100%;
    max-width: 100%;
  }
  .p-service-detail .detail-ttl {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .p-service-detail .detail-ttl:not(:first-of-type) {
    margin-top: 30px;
  }
  .p-service-detail .list {
    padding-left: 40px;
  }
  .p-service-detail .list li {
    font-size: 0.9375rem;
  }
  .p-service-detail .list li:not(:last-child) {
    margin-bottom: 10px;
  }
  .p-service-facility__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 80px auto 0;
  }
  .p-service-facility__list p {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding: 5px 0;
    margin-top: 0;
  }
}
/* ---------------------------------------------
  contact
  --------------------------------------------- */
.p-contact-section {
  position: relative;
  padding: 7.5rem 0;
}
.p-contact-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/common/bg_2.jpg") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.25;
}
.p-contact-section .l-wrap {
  position: relative;
  z-index: 1;
  max-width: 960px;
}
.p-contact-section .desc {
  margin-bottom: 60px;
  font-weight: 500;
}

.p-contact__form {
  background-color: rgba(50, 54, 141, 0.05);
  padding: 60px 20px;
}
.p-contact__form dl {
  max-width: 680px;
  margin: 0 auto;
}
.p-contact__form dl:not(:last-of-type) {
  margin-bottom: 20px;
}
.p-contact__form dl dt {
  -ms-flex: 1;
      flex: 1;
  color: #10141D;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
.p-contact__form dl dd {
  width: 100%;
}
.p-contact__form dl dd input[type=text],
.p-contact__form dl dd input[type=tel],
.p-contact__form dl dd input[type=email],
.p-contact__form dl dd select {
  width: 100%;
  padding: 12px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  background-color: #fff;
  border: 1px solid #AFAFAF;
  border-radius: 4px;
  line-height: 1.5;
}
.p-contact__form dl dd textarea {
  width: 100%;
  padding: 12px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  background-color: #fff;
  border: 1px solid #AFAFAF;
  border-radius: 4px;
  line-height: 1.5;
  height: 14.375rem;
  resize: vertical;
}
.p-contact__form dl dd ::-moz-placeholder {
  color: #C5C2BE;
}
.p-contact__form dl dd :-ms-input-placeholder {
  color: #C5C2BE;
}
.p-contact__form dl dd ::placeholder {
  color: #C5C2BE;
}
.p-contact__form dl dd input:focus,
.p-contact__form dl dd textarea:focus,
.p-contact__form dl dd select:focus {
  outline: none;
}
.p-contact__form .form-require {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-left: 10px;
  background-color: #202143;
  border-radius: 3px;
  padding: 2px 6px;
}

.p-contact__check {
  margin-top: 32px;
  text-align: center;
}
.p-contact__check .wpcf7-list-item {
  margin: 0;
}
.p-contact__check input[type=checkbox] {
  display: none;
}
.p-contact__check .check__txt {
  padding: 0 26px 0 0;
  position: relative;
  font-weight: 500;
}
.p-contact__check .check__txt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #BFC0C3;
  background-color: #fff;
}
.p-contact__check .check__txt a {
  color: #32368D;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-contact__check input[type=checkbox]:checked + .wpcf7-list-item-label .check__txt::before {
  background-color: #32368D;
  border-color: #32368D;
}
.p-contact__check input[type=checkbox]:checked + .wpcf7-list-item-label .check__txt::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 4px;
  height: 8px;
  -ms-transform: rotate(40deg);
      transform: rotate(40deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.p-contact__btn {
  margin: 60px auto 0;
  text-align: center;
}
.p-contact__btn .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}
.p-contact__btn input {
  width: 100%;
  max-width: 312px;
  height: 100%;
  background-color: #32368D;
  color: #fff;
  font-weight: 700;
  padding: 16px;
  margin: 0 auto;
  text-align: center;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-contact__btn input:hover {
    opacity: 0.7;
  }
}

/* ------- confirm ------- */
.p-contact-confirm .p-contact__form dl {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 16px;
}
.p-contact-confirm .p-contact__form dl:not(:last-of-type) {
  margin-bottom: 32px;
}
.p-contact-confirm .p-contact__form dt {
  margin-bottom: 10px;
}
.p-contact-confirm .p-contact-btn__area {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 40px;
  margin-top: 60px;
}
.p-contact-confirm .p-contact-btn__area .p-contact__back,
.p-contact-confirm .p-contact-btn__area .p-contact__btn {
  margin: 0;
  width: 50%;
  max-width: 312px;
}
.p-contact-confirm .p-contact-btn__area .p-contact__back input,
.p-contact-confirm .p-contact-btn__area .p-contact__btn input {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: #32368D;
  color: #fff;
  font-weight: 700;
  padding: 16px;
  margin: 0;
  text-align: center;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-contact-confirm .p-contact-btn__area .p-contact__back input:hover,
  .p-contact-confirm .p-contact-btn__area .p-contact__btn input:hover {
    opacity: 0.7;
  }
}
.p-contact-confirm .p-contact-btn__area .p-contact__back input {
  background-color: #9A9A9A;
}

/* ------- complete ------- */
.p-complete__block .ttl {
  text-align: center;
  font-weight: 700;
  font-size: 2.125rem;
  margin-bottom: 40px;
}
.p-complete__block .p-contact__lead {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-contact-section {
    padding: 50px 0 80px 0;
  }
  .p-contact-section .desc {
    margin-bottom: 40px;
  }
  .p-contact__form {
    padding: 40px 12px;
  }
  .p-contact__btn {
    margin-top: 30px;
  }
  .p-contact-confirm .p-contact-btn__area {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    -ms-flex-align: center;
        align-items: center;
    gap: 30px;
    margin-top: 40px;
  }
  .p-contact-confirm .p-contact-btn__area .p-contact__back,
  .p-contact-confirm .p-contact-btn__area .p-contact__btn {
    margin: 0;
    width: 100%;
  }
  .p-complete__block .ttl {
    font-size: 1.1875rem;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
  }
  .p-complete__block .p-contact__lead {
    text-align: center;
    font-size: 0.875rem;
  }
}
/* ---------------------------------------------
  404
  --------------------------------------------- */
.p-error-sec {
  text-align: center;
  padding: 12.5rem 0;
}
.p-error-sec .error-num {
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1;
  color: #32368D;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
}
.p-error-sec .ttl-en {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Outfit", sans-serif;
}
.p-error-sec .ttl-ja {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 700;
}
.p-error-sec .c-btn-round {
  width: 100%;
  max-width: 320px;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .p-error-sec {
    padding: 120px 0;
  }
  .p-error-sec .error-num {
    font-size: 4.375rem;
  }
  .p-error-sec .ttl-en {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .p-error-sec .ttl-ja {
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 700;
  }
  .p-error-sec .c-btn-round {
    margin-top: 60px;
  }
}
/* ---------------------------------------------
  page news
  --------------------------------------------- */
/* ------------ container ------------*/
.l-container {
  position: relative;
  padding: 6.25rem 0 10rem;
}

.l-container-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  margin: 0 auto;
  gap: 35px;
  max-width: 1320px;
}

.l-main__content {
  width: 80%;
  max-width: 1000px;
}

.l-side-menu {
  width: 20%;
  max-width: 250px;
  position: sticky;
  top: 120px;
}

.c-sidebar-ttl {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.p-category__list {
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 5px;
}
.p-category__list li a {
  border: 1px solid #32368D;
  display: block;
  width: auto;
  text-align: center;
  color: #32368D;
  font-weight: 500;
  padding: 6px;
  min-width: 130px;
}
.p-category__list li.is-active a {
  background-color: #32368D;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .l-container {
    position: relative;
    padding: 40px 0 60px;
  }
  .l-container-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
  .l-main__content {
    width: 100%;
    max-width: 100%;
  }
  .l-side-menu {
    width: 100%;
    max-width: 100%;
    position: static;
  }
  .c-sidebar-ttl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 16px;
    margin-bottom: 5px;
  }
  .c-sidebar-ttl::after {
    content: "";
    display: block;
    width: 24px;
    height: 18px;
    -webkit-mask-image: url("../img/common/icon_mark.svg");
            mask-image: url("../img/common/icon_mark.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    background-color: #32368D;
  }
  .p-category__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .p-category__list li a {
    border: 1px solid #32368D;
    display: block;
    width: auto;
    text-align: center;
    color: #32368D;
    font-weight: 500;
    padding: 8px;
    min-width: 130px;
  }
  .p-category__list li.is-active a {
    background-color: #32368D;
    color: #fff;
  }
}
/* ---------- pagenation ---------- */
ul.page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 80px;
  gap: 20px;
}

.page-numbers li .page-numbers {
  display: block;
  width: 48px;
  height: 48px;
  font-size: 1.125rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: 0.3s ease;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  border: 1px solid #32368D;
  color: #32368D;
}

.page-numbers li .page-numbers.dots {
  border: none;
  width: auto;
}

.page-numbers li a.page-numbers:hover {
  opacity: 0.7;
}

.page-numbers li .current {
  background-color: #32368D;
  color: #fff;
}

.page-numbers li .page-numbers.prev,
.page-numbers li .page-numbers.next {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-color: #BCBCBC;
}

.page-numbers li .page-numbers.prev:after,
.page-numbers li .page-numbers.next::after {
  content: "";
  display: block;
  width: 7px;
  height: 10px;
  -webkit-mask-image: url("../img/common/icon_arrow_2.svg");
          mask-image: url("../img/common/icon_arrow_2.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #32368D;
}

.page-numbers li .page-numbers.prev::after {
  -ms-transform: scale(-1, 1);
      transform: scale(-1, 1);
}

@media screen and (max-width: 767px) {
  ul.page-numbers {
    margin: 60px auto 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .page-numbers li .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
}
/* ---------------------------------------------
  news article
  --------------------------------------------- */
.p-news-article__area {
  padding: 85px 0 120px;
}
.p-news-article__area .l-wrap {
  max-width: 845px;
}

.p-news-article__head {
  margin-bottom: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px 10px;
  border-bottom: 1px solid #BEC2C5;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(90deg, rgb(50, 54, 141) 0%, rgba(50, 54, 141, 0) 100%) 1;
     border-image: linear-gradient(90deg, rgb(50, 54, 141) 0%, rgba(50, 54, 141, 0) 100%) 1;
}
.p-news-article__head .p-news__date {
  font-size: 14px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
}
.p-news-article__head .p-news__date::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #32368D;
}
.p-news-article__head .p-news__category {
  display: inline-block;
  font-weight: 500;
  line-height: 1.45;
  background-color: #32368D;
  color: #fff;
  padding: 2px 8px;
}
.p-news-article__head .p-news__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
}

.p-news-article__thumbnail {
  margin-bottom: 60px;
}

.p-news-article__body {
  position: relative;
}
.p-news-article__body p {
  line-height: 1.75;
}
.p-news-article__body p:not(:last-child) {
  margin-bottom: 16px;
}
.p-news-article__body a {
  color: #32368D;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-news-article__body img {
  width: 100%;
}
.p-news-article__body img + p,
.p-news-article__body figure + p {
  margin-top: 40px;
}
.p-news-article__body h2 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 2px solid #32368D;
  padding-bottom: 12px;
  letter-spacing: 0.05em;
  margin-top: 40px;
  margin-bottom: 16px;
}
.p-news-article__body h3 {
  font-weight: 700;
  font-size: 1.25rem;
  border-left: 4px solid #32368D;
  line-height: 1.4;
  padding-left: 16px;
  margin-top: 40px;
  margin-bottom: 16px;
}
.p-news-article__body h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 16px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.p-news-article__body h4 + p {
  margin-bottom: 16px;
}
.p-news-article__body h4 + p + h4 {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .p-news-article__area {
    padding: 40px 0 120px;
  }
  .p-news-article__area .c-btn {
    margin-top: 30px;
  }
  .p-news-article__head .p-news__ttl {
    font-size: 1.375rem;
    line-height: 1.65;
  }
  .p-news-article__thumbnail {
    margin-bottom: 30px;
  }
  .p-news-article__body p {
    font-size: 0.875rem;
  }
  .p-news-article__body h2 {
    font-size: 1.125rem;
  }
  .p-news-article__body h3 {
    font-size: 1rem;
    padding-left: 12px;
  }
  .p-news-article__body h4 {
    font-size: 1rem;
  }
}
/* ---------------------------------------------
  page recruit
  --------------------------------------------- */
.l-main-recruit .l-wrap {
  max-width: 1680px;
}

.c-ttl-gradation {
  margin-bottom: 56px;
  width: 100%;
}
.c-ttl-gradation .en {
  font-size: 4.375rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-ttl-gradation .ja {
  display: block;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  margin-top: 16px;
}

.c-slider {
  overflow: hidden;
}
.c-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.c-slider .swiper-slide img {
  aspect-ratio: 556/323;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .c-ttl-gradation .en {
    font-size: 2.25rem;
  }
  .c-ttl-gradation .ja {
    font-size: 1rem;
  }
}
/* ---------------------------------------------
  recruit mv
  --------------------------------------------- */
.p-recruit-mv {
  width: 100%;
  position: relative;
  margin-top: 105px;
  z-index: 2;
}

.p-recruit-mv__en {
  font-family: "Montserrat", sans-serif;
  font-size: 6.625rem;
  font-weight: 700;
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: -60px;
}
.p-recruit-mv__en h1,
.p-recruit-mv__en span {
  display: inline-block;
  animation: loopText 100s linear infinite;
  white-space: nowrap;
  padding-bottom: 10px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes loopText {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-100%);
  }
}
.p-recruit-mv__slider {
  width: 93.75%;
  max-width: 1800px;
  margin: 0 0 0 auto;
  height: calc(100% - 9.375rem);
  min-height: 520px;
  z-index: 0;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
  aspect-ratio: 1800/760;
}
.p-recruit-mv__slider .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-recruit-mv__slider .swiper-slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
}
.p-recruit-mv__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: 60% 0%;
}

_::-webkit-full-page-media,
_:future,
:root .p-recruit-mv__slider {
  height: auto;
  min-height: initial;
}

.p-recruit-mv__scroll {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 24px;
  left: 3.125rem;
  z-index: 3;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
  line-height: 1;
}
.p-recruit-mv__scroll .text {
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  font-weight: 700;
}
.p-recruit-mv__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 150px;
  background-color: #000;
}

@media screen and (max-width: 992px) {
  .p-recruit-mv {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv {
    width: 100%;
    min-height: 540px;
    margin-top: 50px;
    padding-top: 30px;
  }
  .p-recruit-mv__slider {
    width: calc(100% - 40px);
  }
  .p-recruit-mv__en {
    font-size: 3.75rem;
    margin-top: -60px;
  }
  .p-recruit-mv__slider {
    height: auto;
    border-radius: 20px 0 0 0;
    aspect-ratio: 335/500;
  }
  .p-recruit-mv__scroll {
    height: auto;
    top: initial;
    bottom: 6.25rem;
    left: 18px;
    gap: 10px;
  }
  .p-recruit-mv__scroll .text {
    font-size: 0.625rem;
  }
  .p-recruit-mv__scroll::after {
    height: 80px;
  }
}
/* ---------------------------------------------
  recruit company
  --------------------------------------------- */
.p-recruit-company {
  background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
  padding: 16rem 0 6.25rem;
  margin-top: -7.8125vw;
  position: relative;
}
.p-recruit-company::before {
  content: "";
  display: block;
  width: 54%;
  max-width: 820px;
  aspect-ratio: 910/760;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-mask-image: url("../img/common/bg_mark.svg");
          mask-image: url("../img/common/bg_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  background-color: rgba(255, 255, 255, 0.3);
}
.p-recruit-company .l-wrap {
  position: relative;
}

.p-recruit-company__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  gap: 2.5rem;
}

.p-recruit-company__text {
  width: 56%;
  color: #fff;
}
.p-recruit-company__text .p-recruit-company__ttl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 32px;
}
.p-recruit-company__text p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.01em;
}
.p-recruit-company__text p:not(:last-of-type) {
  margin-bottom: 30px;
}
.p-recruit-company__text .c-btn {
  color: #fff;
  border-color: #fff;
  margin-top: 32px;
}
.p-recruit-company__text .c-btn::before {
  background-color: #fff;
}
@media (hover: hover) {
  .p-recruit-company__text .c-btn:hover {
    background-color: #fff;
    color: #32368D;
  }
  .p-recruit-company__text .c-btn:hover::before {
    background-color: #32368D;
  }
}

.p-recruit-company__img {
  border-radius: 20px;
  overflow: hidden;
  width: 42%;
  max-width: 590px;
}

@media screen and (max-width: 767px) {
  .p-recruit-company {
    padding: 140px 0 40px;
    margin-top: -6.25rem;
  }
  .p-recruit-company::before {
    width: 94%;
    right: 20px;
  }
  .p-recruit-company__block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 0;
    gap: 100px;
  }
  .p-recruit-company__text {
    width: 100%;
  }
  .p-recruit-company__text .p-recruit-company__ttl {
    font-size: 1.875rem;
    margin-bottom: 50px;
  }
  .p-recruit-company__text p {
    font-size: 1rem;
  }
  .p-recruit-company__text .c-btn {
    display: -ms-flexbox;
    display: flex;
    max-width: 300px;
    margin: 40px auto 0;
    font-size: 1.25rem;
  }
  .p-recruit-company__img {
    width: 100%;
    max-width: 590px;
    margin: 0 auto;
  }
}

.p-recruit-company__video-block {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 2rem;
  margin: 80px auto 0;
}
.p-recruit-company__video-block .block-movie {
  text-align: center;
}
.p-recruit-company__video-block .block-movie iframe {
  aspect-ratio: 16/9;
}
@media screen and (max-width: 992px) {
  .p-recruit-company__video-block {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-company__video-block {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
/* ---------------------------------------------
  recruit about
  --------------------------------------------- */
.p-recruit-about {
  background-color: rgba(50, 54, 141, 0.1);
  padding: 80px 0;
}

.p-recruit-about__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1460px;
  margin: 0 auto;
}
.p-recruit-about__list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  background: linear-gradient(135deg, rgba(151, 170, 233, 0.7) 0%, rgba(1, 85, 153, 0.7) 100%);
  padding: 12px 1.5rem 4px;
}
.p-recruit-about__list .item5 {
  grid-column: span 2/span 2;
}
.p-recruit-about__list .item6 {
  grid-column-start: 3;
}
.p-recruit-about__list .item7 {
  grid-column-start: 4;
}
.p-recruit-about__list .item8 {
  grid-row-start: 3;
}
.p-recruit-about__list .item9 {
  grid-row-start: 3;
}
.p-recruit-about__list .item10 {
  grid-row-start: 3;
}
.p-recruit-about__list .item11 {
  grid-row-start: 3;
}
.p-recruit-about__list .block-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.p-recruit-about__list .block-text .ttl {
  background-color: #fff;
  color: #32368D;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-align: center;
  line-height: 1.05;
}
.p-recruit-about__list .block-text .icon {
  max-width: 6.25rem;
}
.p-recruit-about__list .block-text .sm {
  font-size: 0.75rem;
  display: inline-block;
}
.p-recruit-about__list .block-text .sm-2 {
  font-size: 0.625rem;
  display: inline-block;
}
.p-recruit-about__list .block-detail {
  color: #fff;
}
.p-recruit-about__list .block-detail .num-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  gap: 8px;
}
.p-recruit-about__list .block-detail .num {
  font-weight: 700;
  font-size: 4.5rem;
  font-size: clamp(20px, 3.75vw, 72px);
  line-height: 0.8;
  font-family: "Montserrat", sans-serif;
}
.p-recruit-about__list .block-detail .unit {
  font-weight: 700;
  font-size: 1.125rem;
}
.p-recruit-about__list .block-detail .note {
  text-align: center;
  font-weight: 500;
  font-size: 0.75rem;
  font-size: max(10px, 0.75rem);
  margin-top: 5px;
}
.p-recruit-about__list .block-detail .ratio-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 40px;
}
.p-recruit-about__list .block-detail .ratio-wrap .ratio-item {
  position: relative;
}
.p-recruit-about__list .block-detail .ratio-wrap .ratio-item:not(:last-of-type)::after {
  content: ":";
  display: inline-block;
  font-size: 5.5rem;
  line-height: 1;
  position: absolute;
  bottom: 0;
  right: -30px;
}

@media screen and (max-width: 992px) {
  .p-recruit-about__list {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-about .c-ttl-gradation {
    margin-bottom: 16px;
  }
  .p-recruit-about__list {
    display: block;
  }
  .p-recruit-about__list li {
    padding: 24px 24px 16px;
  }
  .p-recruit-about__list li:not(:last-child) {
    margin-bottom: 32px;
  }
  .p-recruit-about__list .block-text .icon {
    max-width: 70px;
  }
  .p-recruit-about__list .block-detail .num {
    font-size: 3.5rem;
  }
  .p-recruit-about__list .block-detail .ratio-wrap {
    gap: 24px;
  }
  .p-recruit-about__list .block-detail .ratio-wrap .ratio-item {
    gap: 2px;
  }
  .p-recruit-about__list .block-detail .ratio-wrap .ratio-item:not(:last-of-type)::after {
    font-size: 4rem;
    bottom: 0;
    right: -20px;
  }
  .p-recruit-about__list .item5 {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    gap: 16px;
  }
}
/* ---------------------------------------------
  recruit about
  --------------------------------------------- */
.p-recruit-feature {
  padding: 88px 0;
  position: relative;
}
.p-recruit-feature .c-ttl-gradation {
  margin-bottom: 96px;
}

.p-recruit-feature__en {
  width: 48%;
  max-width: 850px;
  position: absolute;
  top: 0;
  right: 0;
}

.p-recruit-feature__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.58vw;
  max-width: 1440px;
  margin: 0 auto;
}
.p-recruit-feature__list li {
  width: 30%;
  max-width: 26.25rem;
  position: relative;
}
.p-recruit-feature__list .num {
  font-family: "Montserrat", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, rgba(151, 170, 233, 0.7) 0%, rgba(1, 85, 153, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: -10%;
  left: -10%;
}
.p-recruit-feature__list .feature-img {
  margin-bottom: 24px;
}
.p-recruit-feature__list .feature-img img {
  width: 100%;
  aspect-ratio: 420/300;
  border-radius: 20px;
  overflow: hidden;
}
.p-recruit-feature__list .feature-text .ttl {
  color: #32368D;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.p-recruit-feature__list .feature-text p {
  line-height: 1.75;
}

@media screen and (max-width: 992px) {
  .p-recruit-feature__list {
    gap: 60px 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-feature {
    padding: 100px 0 80px;
  }
  .p-recruit-feature .c-ttl-gradation {
    margin-bottom: 60px;
  }
  .p-recruit-feature__en {
    width: 82%;
  }
  .p-recruit-feature__en img {
    filter: drop-shadow(0 0 1px rgba(53, 57, 144, 0.3));
  }
  .p-recruit-feature__list {
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .p-recruit-feature__list li {
    width: 100%;
    max-width: 420px;
    position: relative;
  }
  .p-recruit-feature__list .num {
    font-size: 2.75rem;
    top: -5%;
    left: -3%;
  }
  .p-recruit-feature__list .feature-img img {
    border-radius: 10px;
  }
  .p-recruit-feature__list .feature-text p {
    font-size: 1rem;
  }
}
/* ---------------------------------------------
  recruit occupations
  --------------------------------------------- */
.p-recruit-occupations {
  background-color: rgba(50, 54, 141, 0.1);
  padding: 88px 0;
  position: relative;
}
.p-recruit-occupations .c-ttl-gradation {
  margin-bottom: 30px;
}

.p-recruit-occupations__en {
  width: 54%;
  max-width: 1020px;
  position: absolute;
  top: 0;
  right: 0;
}

.p-recruit-occupations__list {
  display: -ms-flexbox;
  display: flex;
  gap: 4.58vw;
  max-width: 1440px;
  margin: 0 auto;
}
.p-recruit-occupations__list li {
  width: 30%;
  max-width: 420px;
  position: relative;
}
.p-recruit-occupations__list li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-recruit-occupations__list li a:hover {
    opacity: 0.7;
  }
}
.p-recruit-occupations__list .occupations-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 420/285;
  border-radius: 20px;
  overflow: hidden;
}
.p-recruit-occupations__list .occupations-text {
  -ms-flex: 1;
      flex: 1;
  padding: 32px 32px 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
}
.p-recruit-occupations__list .occupations-text .ttl {
  color: #32368D;
  font-size: 1.625rem;
  font-weight: 700;
}
.p-recruit-occupations__list .occupations-text p {
  line-height: 1.75;
}
.p-recruit-occupations__list .occupations-text .desc {
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-recruit-occupations__list .occupations-text .more {
  width: 100%;
  margin-top: auto;
  font-size: 0.9375rem;
  font-weight: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
}
.p-recruit-occupations__list .occupations-text .more::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/common/icon_arrow_circle.svg") no-repeat center/100%;
}

@media screen and (max-width: 767px) {
  .p-recruit-occupations {
    padding: 80px 0;
  }
  .p-recruit-occupations__en {
    width: 94%;
  }
  .p-recruit-occupations__en img {
    filter: drop-shadow(0 0 1px rgba(53, 57, 144, 0.3));
  }
  .p-recruit-occupations__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 30px;
  }
  .p-recruit-occupations__list li {
    width: 100%;
  }
  .p-recruit-occupations__list li a {
    border-radius: 10px;
  }
  .p-recruit-occupations__list .occupations-img img {
    border-radius: 10px;
  }
}
/* ---------------------------------------------
  recruit career
  --------------------------------------------- */
.p-recruit-career {
  padding: 7.5rem 0 5rem;
  position: relative;
}

.p-recruit-career__block {
  max-width: 1440px;
  margin: 0 auto;
  border: 3px solid rgba(50, 54, 141, 0.1);
  padding: 0 70px 70px;
  text-align: center;
}
.p-recruit-career__block .c-ttl-gradation {
  width: auto;
  display: inline-block;
  background-color: #fff;
  margin-top: -2.5rem;
  padding: 0 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .p-recruit-career {
    padding: 120px 0 60px;
  }
  .p-recruit-career__block {
    padding: 0 18px 40px;
  }
  .p-recruit-career__block .c-ttl-gradation {
    margin-top: -1.5rem;
    margin-bottom: 10px;
    padding: 0 5px;
  }
  .p-recruit-career__block .c-ttl-gradation .en {
    font-size: 2rem;
    width: 100%;
    white-space: nowrap;
  }
  .p-recruit-career__block .c-ttl-gradation .ja {
    margin-top: 5px;
  }
}
/* ---------------------------------------------
  recruit qualification
  --------------------------------------------- */
.p-recruit-career-qualification {
  background-color: rgba(50, 54, 141, 0.1);
  position: relative;
  padding: 40px 0 80px;
}
.p-recruit-career-qualification .l-wrap {
  max-width: 1324px;
}
.p-recruit-career-qualification .qualification-ttl {
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 3.75rem;
}

.p-recruit-qualification__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 10px;
}
.p-recruit-qualification__list li {
  background-color: #fff;
  border-radius: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.875rem;
  -ms-flex-align: center;
      align-items: center;
  padding: 1.875rem 0 1.25rem;
}
.p-recruit-qualification__list .icon {
  max-width: 6.25rem;
}
.p-recruit-qualification__list .item-text {
  text-align: center;
}
.p-recruit-qualification__list .type {
  display: inline-block;
  font-size: 0.875rem;
  color: #32368D;
  border: 1px solid #32368D;
  padding: 0 10px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.p-recruit-qualification__list .ttl {
  text-align: center;
  font-size: 1.3125rem;
  line-height: 1.15;
}
.p-recruit-qualification__list .ttl .sm {
  font-size: 1rem;
}

.p-recruit-qualification__box {
  background-color: #fff;
  border: 1px solid #32368D;
  padding: 40px 30px;
  margin-top: 60px;
}
.p-recruit-qualification__box .attention-list li {
  padding-left: 30px;
  position: relative;
  font-size: clamp(12px, 0.781vw, 15px);
  line-height: 1.5;
}
.p-recruit-qualification__box .attention-list li:not(:last-child) {
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.p-recruit-qualification__box .attention-list li::before {
  display: -ms-flexbox;
  display: flex;
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  border-left: 2px solid #32368D;
  border-bottom: 2px solid #32368D;
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  position: absolute;
  top: 6px;
  left: 6px;
}

@media screen and (max-width: 767px) {
  .p-recruit-career-qualification {
    padding: 50px 0;
  }
  .p-recruit-career-qualification .qualification-ttl {
    font-size: 1.375rem;
    margin-bottom: 30px;
  }
  .p-recruit-qualification__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .p-recruit-qualification__list li {
    border-radius: 10px;
    gap: 8px;
    padding: 16px 0;
  }
  .p-recruit-qualification__list .icon {
    max-width: 62px;
  }
  .p-recruit-qualification__list .item-text {
    text-align: center;
  }
  .p-recruit-qualification__list .type {
    font-size: 0.625rem;
    padding: 0 8px;
    margin-bottom: 5px;
  }
  .p-recruit-qualification__list .ttl {
    font-size: 0.9375rem;
    line-height: 1.1;
    letter-spacing: 0;
    font-weight: 500;
  }
  .p-recruit-qualification__list .ttl .sm {
    font-size: 0.75rem;
  }
  .p-recruit-qualification__box {
    padding: 20px 15px;
    margin-top: 30px;
  }
  .p-recruit-qualification__box .attention-list li {
    padding-left: 30px;
    font-size: 0.875rem;
  }
  .p-recruit-qualification__box .attention-list li:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
/* ---------------------------------------------
  top interview
  --------------------------------------------- */
.p-recruit-interview {
  padding: 80px 0;
  overflow: hidden;
}
.p-recruit-interview .c-ttl-gradation {
  margin-bottom: 40px;
}

.p-recruit-interview-slider {
  /* ---------- swiper ----------*/
}
.p-recruit-interview-slider .swiper-pagination {
  position: static;
  background-color: #DDDDDD;
  -ms-flex: 1;
      flex: 1;
  height: 3px;
  margin-top: 30px;
}
.p-recruit-interview-slider .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #445BA4;
  border-radius: 2px;
  height: 6px;
  top: -2px;
}

.p-recruit-interview-slider {
  overflow: initial;
}
.p-recruit-interview-slider .item {
  display: block;
  overflow: hidden;
  transition: 0.3s ease;
  position: relative;
  padding-bottom: 60px;
}
.p-recruit-interview-slider .p-recruit-interview__img {
  width: 90%;
  max-width: 327px;
  border-radius: 20px;
  overflow: hidden;
}
.p-recruit-interview-slider .p-recruit-interview__img img {
  width: 100%;
  aspect-ratio: 327/490;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.p-recruit-interview-slider .p-recruit-interview__text {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #F9F9F9;
  padding: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: calc(100% - 1.875rem);
}
.p-recruit-interview-slider .p-recruit-interview__text .department {
  font-size: clamp(10px, 0.52vw, 12px);
  margin-bottom: 5px;
  line-height: 1;
}
.p-recruit-interview-slider .p-recruit-interview__text .name {
  font-weight: 700;
  font-size: 1.5rem;
  font-size: clamp(20px, 1.25vw, 24px);
  background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 20px;
}
.p-recruit-interview-slider .p-recruit-interview__text .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-size: 0.875rem;
  font-size: clamp(12px, 0.729vw, 14px);
  line-height: 1.3;
  margin-bottom: 20px;
}
.p-recruit-interview-slider .p-recruit-interview__text .more {
  width: 100%;
  margin-top: auto;
  font-weight: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  margin-top: auto;
}
.p-recruit-interview-slider .p-recruit-interview__text .more::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/common/icon_arrow_circle.svg") no-repeat center/100%;
}

/* -------- modal -------- */
.js-modal-trigger {
  cursor: pointer;
  transition: 0.5s ease;
}
@media (hover: hover) {
  .js-modal-trigger:hover {
    opacity: 0.7;
  }
}

.p-modal-block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.p-modal__layer {
  width: 100%;
  height: 100%;
  background: rgba(33, 33, 33, 0.9);
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

.p-modal__close {
  position: absolute;
  top: 60px;
  right: 3.75rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: opacity 0.6s;
}
.p-modal__close::before, .p-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 2px;
  background: #333;
  content: "";
}
.p-modal__close::before {
  -ms-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg);
}
.p-modal__close::after {
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) {
  .p-modal__close:hover {
    opacity: 0.6;
  }
}

.p-modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 1180px;
  height: calc(100% - 40px);
  max-height: 80%;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
}

.p-modal__inner {
  overflow-y: scroll;
  padding: 60px 40px;
  height: 50%;
  height: 100%;
  position: relative;
}

.p-interview-detail {
  gap: 5rem;
  max-width: 920px;
  margin: 0 auto;
}
.p-interview-detail .p-interview__img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
.p-interview-detail .p-interview__text .department {
  margin-bottom: 16px;
  line-height: 1;
}
.p-interview-detail .p-interview__text .name {
  font-weight: 700;
  font-size: clamp(20px, 1.25vw, 24px);
  background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 20px;
}
.p-interview-detail .p-interview__text .comment {
  margin-top: 24px;
}
.p-interview-detail .p-interview__text .comment p {
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: clamp(12px, 0.729vw, 14px);
}
.p-interview-detail .p-interview__text .comment p:not(:last-of-type) {
  margin-bottom: 20px;
}

.p-interview-flow {
  max-width: 920px;
  margin: 48px auto 0;
}
.p-interview-flow .c-ttl-gradation {
  margin-bottom: 40px;
}
.p-interview-flow .c-ttl-gradation .en {
  font-size: 2.5rem;
}
.p-interview-flow .c-ttl-gradation .ja {
  font-size: 1rem;
}

.p-interview-flow__block {
  background-color: #F9F9F9;
  border-radius: 20px;
  padding: 3.75rem;
}

.p-interview-flow__list .item {
  max-width: 780px;
  margin: 0 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 5.625rem;
  position: relative;
}
.p-interview-flow__list .item:not(:last-child) {
  padding-bottom: 30px;
}
.p-interview-flow__list .item::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 5rem;
}
.p-interview-flow__list .item::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #32368D;
  position: absolute;
  top: 0;
  left: 4.3125rem;
}
.p-interview-flow__list .flow-time {
  font-size: 1.25rem;
  font-weight: 700;
}
.p-interview-flow__list .flow-text {
  -ms-flex: 1;
      flex: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 1.875rem;
}
.p-interview-flow__list .flow-text .ttl {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.p-interview-flow__list .flow-text .detail p {
  line-height: 1.75;
}

@media screen and (max-width: 1180px) {
  .p-modal__close {
    top: 20px;
    width: 30px;
    height: 30px;
  }
  .p-modal__close::before, .p-modal__close::after {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-interview {
    padding: 60px 0;
    position: relative;
  }
  .p-recruit-interview::before {
    content: "";
    display: block;
    width: 50%;
    max-width: 820px;
    aspect-ratio: 910/760;
    position: absolute;
    top: 6.25rem;
    left: 0;
    -webkit-mask-image: url("../img/common/bg_mark.svg");
            mask-image: url("../img/common/bg_mark.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
            mask-size: 100%;
    background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
    opacity: 0.6;
  }
  .p-recruit-interview .l-wrap {
    position: relative;
  }
  .p-recruit-interview-slider .swiper-pagination .swiper-pagination-progressbar-fill {
    height: 4px;
    top: -1px;
  }
  .p-recruit-interview-slider {
    overflow: initial;
  }
  .p-recruit-interview-slider .item {
    padding-bottom: 100px;
  }
  .p-recruit-interview-slider .p-recruit-interview__img {
    border-radius: 0;
    width: 100%;
    max-width: 100%;
  }
  .p-recruit-interview-slider .p-recruit-interview__img img {
    width: 90%;
  }
  .p-recruit-interview-slider .p-recruit-interview__text {
    width: calc(100% - 20px);
  }
  /* -------- modal -------- */
  .p-modal__close {
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    margin: 0 0 0 auto;
  }
  .p-modal__close::before, .p-modal__close::after {
    width: 30px;
  }
  .p-modal__container {
    max-height: 84%;
    border-radius: 10px;
  }
  .p-modal__inner {
    padding: 60px 20px;
  }
  .p-interview-detail .p-interview__img {
    border-radius: 5px;
  }
  .p-interview-detail .p-interview__text .name {
    margin-bottom: 16px;
  }
  .p-interview-detail .p-interview__text .comment {
    margin-top: 16px;
  }
  .p-interview-detail .p-interview__text .comment p {
    line-height: 1.75;
  }
  .p-interview-flow .c-ttl-gradation {
    margin-bottom: 40px;
  }
  .p-interview-flow .c-ttl-gradation .en {
    font-size: 1.75rem;
    letter-spacing: 0;
  }
  .p-interview-flow .c-ttl-gradation .ja {
    font-size: 0.875rem;
    margin-top: 10px;
  }
  .p-interview-flow__block {
    border-radius: 10px;
    padding: 40px 16px;
  }
  .p-interview-flow__list .item {
    display: block;
    padding-left: 30px;
  }
  .p-interview-flow__list .item:not(:last-child) {
    padding-bottom: 30px;
  }
  .p-interview-flow__list .item::before {
    top: 0;
    left: 5px;
  }
  .p-interview-flow__list .item::after {
    width: 16px;
    height: 16px;
    left: -2px;
  }
  .p-interview-flow__list .flow-time {
    font-size: 1.125rem;
    margin-bottom: 16px;
    line-height: 1;
  }
  .p-interview-flow__list .flow-text {
    border-radius: 10px;
    padding: 20px 16px;
  }
  .p-interview-flow__list .flow-text .ttl {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 5px;
  }
}
/* ---------------------------------------------
  job description
  --------------------------------------------- */
.p-job-description {
  padding: 64px 0;
  position: relative;
}
.p-job-description::before {
  content: "";
  display: block;
  width: 70%;
  max-width: 820px;
  aspect-ratio: 910/760;
  position: absolute;
  bottom: -10px;
  left: 0;
  -webkit-mask-image: url("../img/common/bg_mark.svg");
          mask-image: url("../img/common/bg_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
  opacity: 0.6;
}
.p-job-description .c-ttl-gradation {
  text-align: center;
  margin-bottom: 80px;
}
.p-job-description .l-wrap {
  position: relative;
}

/* -------- tab -------- */
.c-tab-content {
  display: none;
}
.c-tab-content.is-active {
  display: block;
}

.p-job-description__block {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #F9F9F9;
}

.p-job-description__tabs {
  display: -ms-flexbox;
  display: flex;
}
.p-job-description__tabs .c-tab-item {
  padding: 16px;
  background-color: rgba(50, 54, 141, 0.1);
  cursor: pointer;
  width: 33.3333333333%;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.p-job-description__tabs .c-tab-item.is-active {
  background: #F9F9F9;
  border-top: 2px solid #32368D;
}

.p-job-description__content {
  padding: 4.375rem 20px;
  background-color: #F9F9F9;
  min-height: 62.5rem;
}
.p-job-description__content .content-wrap {
  max-width: 840px;
  margin: 0 auto;
}
.p-job-description__content dl {
  border: 1px solid #E6E6E6;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.p-job-description__content dl:not(:last-of-type) {
  border-bottom: none;
}
.p-job-description__content dl dt {
  background-color: #EBEBF4;
  width: 200px;
  font-weight: 700;
  color: #32368D;
  border-right: 1px solid #E6E6E6;
  vertical-align: middle;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 2.1875rem 0;
}
.p-job-description__content dl dd {
  -ms-flex: 1;
      flex: 1;
  background-color: #fff;
  line-height: 1.75;
  padding: 2.1875rem 20px;
}
.p-job-description__content dl dd p {
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .p-job-description {
    padding: 40px 0 60px;
  }
  .p-job-description::before {
    display: none;
  }
  .p-job-description .c-ttl-gradation {
    margin-bottom: 40px;
  }
  .p-job-description .c-ttl-gradation .en {
    font-size: 2rem;
    letter-spacing: 0;
  }
  .c-tab-content {
    display: none;
  }
  .c-tab-content.is-active {
    display: block;
  }
  .p-job-description__block {
    max-width: 1000px;
    margin: 0 auto;
  }
  .p-job-description__tabs {
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }
  .p-job-description__tabs .c-tab-item {
    padding: 10px 4px;
    font-size: 1.125rem;
    line-height: 1.4;
  }
  .p-job-description__content {
    padding: 30px 14px;
    min-height: initial;
  }
  .p-job-description__content dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-job-description__content dl dt {
    width: 100%;
    font-size: 0.9375rem;
    text-align: left;
    display: block;
    padding: 20px 10px;
  }
  .p-job-description__content dl dd {
    -ms-flex: initial;
        flex: initial;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.75;
    padding: 20px 10px;
  }
  .p-job-description__content dl dd p {
    font-size: 0.875rem;
  }
}
/* ---------------------------------------------
  recruit entry
  --------------------------------------------- */
.p-recruit-entry {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.p-recruit-entry::before {
  content: "";
  display: block;
  width: 70%;
  max-width: 820px;
  aspect-ratio: 910/760;
  position: absolute;
  bottom: -10px;
  right: -20%;
  -webkit-mask-image: url("../img/common/bg_mark.svg");
          mask-image: url("../img/common/bg_mark.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background: linear-gradient(135deg, rgb(151, 170, 233) 0%, rgb(1, 85, 153) 100%);
  opacity: 0.6;
}
.p-recruit-entry .c-ttl-gradation {
  text-align: center;
  margin-bottom: 60px;
}
.p-recruit-entry .l-wrap {
  position: relative;
}

/* ---- entry form ---- */
.p-recruit-entry__form {
  max-width: 1040px;
  background-color: #fff;
  padding: 40px 40px 80px;
  margin: 0 auto;
}
.p-recruit-entry__form dl {
  border: 1px solid #E6E6E6;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.p-recruit-entry__form dl:not(:last-of-type) {
  border-bottom: none;
}
.p-recruit-entry__form dl dt {
  background-color: #EBEBF4;
  width: 270px;
  font-weight: 700;
  border-right: 1px solid #E6E6E6;
  vertical-align: middle;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 1.875rem;
}
.p-recruit-entry__form dl dd {
  -ms-flex: 1;
      flex: 1;
  background-color: #fff;
  line-height: 1.75;
  padding: 1.875rem;
}
.p-recruit-entry__form input[type=text],
.p-recruit-entry__form input[type=tel],
.p-recruit-entry__form input[type=email],
.p-recruit-entry__form select {
  width: 100%;
  padding: 8px 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  background-color: #fff;
  border: 1px solid #32368D;
  border-radius: 5px;
  line-height: 1.45;
}
.p-recruit-entry__form textarea {
  width: 100%;
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  background-color: #fff;
  border: 1px solid #32368D;
  border-radius: 5px;
  line-height: 1.5;
  height: 12.5rem;
  resize: vertical;
}
.p-recruit-entry__form ::-moz-placeholder {
  color: #cccccc;
}
.p-recruit-entry__form :-ms-input-placeholder {
  color: #cccccc;
}
.p-recruit-entry__form ::placeholder {
  color: #cccccc;
}
.p-recruit-entry__form input:focus,
.p-recruit-entry__form textarea:focus,
.p-recruit-entry__form select:focus {
  outline: none;
}
.p-recruit-entry__form .form-require {
  color: #FF0000;
}
.p-recruit-entry__form .form-item-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 18px;
  display: inline-block;
  border-radius: 4px;
  margin: 5px 0;
}
.p-recruit-entry__form .form-item-radio label:not(:nth-child(3n)) {
  margin-right: 20px;
}
.p-recruit-entry__form .form-item-radio label::before,
.p-recruit-entry__form .form-item-radio label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  top: 50%;
}
.p-recruit-entry__form .form-item-radio label::before {
  background-color: #fff;
  border: 1px solid #767676;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  left: 0;
}
.p-recruit-entry__form .form-item-radio label::after {
  background-color: #32368D;
  border-radius: 50%;
  opacity: 0;
  width: 7px;
  height: 7px;
  left: 3px;
}
.p-recruit-entry__form .form-item-radio label:has(> input:checked) {
  background-color: #fff;
}
.p-recruit-entry__form .form-item-radio label:has(> input:checked)::after {
  opacity: 1;
}
.p-recruit-entry__form .form-item-radio input[type=radio] {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.p-recruit-entry__form .form-item-radio.radio-development label {
  width: 46%;
}
.p-recruit-entry__form .form-group {
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.p-recruit-entry__form .form-group-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
}
.p-recruit-entry__form .form-group-item p {
  white-space: nowrap;
}
.p-recruit-entry__form .form-name input[type=text] {
  min-width: 12.5rem;
}
.p-recruit-entry__form .form-address .form-group-item:not(:last-of-type) {
  margin-bottom: 10px;
}
.p-recruit-entry__form .form-address .post-code input[type=text] {
  max-width: 220px;
}
.p-recruit-entry__form .form-address select {
  background-color: #efefef;
  border: 1px solid #767676;
  max-width: 124px;
  font-size: 0.8125rem;
}
.p-recruit-entry__form .form-address .wrap p {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-line-pack: center;
      align-content: center;
}
.p-recruit-entry__form .form-item-tel input[type=tel] {
  max-width: 314px;
}
.p-recruit-entry__form .form-date {
  gap: 2px;
}
.p-recruit-entry__form .form-date .form-group-item {
  gap: 5px;
}
.p-recruit-entry__form .form-date input[type=text] {
  max-width: 92px;
}

.p-recruit-entry__note {
  text-align: center;
  margin-top: 50px;
}
.p-recruit-entry__note p:not(:last-of-type) {
  margin-bottom: 10px;
}
.p-recruit-entry__note a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #002CEE;
}

.p-recruit-entry__check {
  margin-top: 10px;
  text-align: center;
}
.p-recruit-entry__check input[type=checkbox] {
  display: none;
}
.p-recruit-entry__check .check__txt {
  padding: 0 0 0 26px;
  position: relative;
  font-weight: 500;
  font-size: 0.9375rem;
}
.p-recruit-entry__check .check__txt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #BFC0C3;
  background-color: #fff;
}
.p-recruit-entry__check .check__txt a {
  color: #202143;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-recruit-entry__check input[type=checkbox]:checked + .wpcf7-list-item-label .check__txt::before {
  background-color: #32368D;
  border-color: #32368D;
}
.p-recruit-entry__check input[type=checkbox]:checked + .wpcf7-list-item-label .check__txt::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 6px;
  width: 4px;
  height: 8px;
  -ms-transform: rotate(40deg);
      transform: rotate(40deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.p-recruit-entry__btn {
  margin: 40px auto 0;
  text-align: center;
}
.p-recruit-entry__btn .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}
.p-recruit-entry__btn input {
  font-size: 1.25rem;
  width: 100%;
  max-width: 400px;
  height: 100%;
  border: 1px solid #32368D;
  color: #32368D;
  font-weight: 700;
  padding: 16px;
  margin: 0 auto;
  text-align: center;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-recruit-entry__btn input:hover {
    background-color: #32368D;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit-entry {
    padding: 80px 0 120px;
  }
  .p-recruit-entry::before {
    display: none;
  }
  .p-recruit-entry .c-ttl-gradation {
    margin-bottom: 30px;
  }
  .p-recruit-entry .c-ttl-gradation .en {
    font-size: 2rem;
  }
  .p-recruit-entry .c-ttl-gradation .ja {
    margin-top: 5px;
  }
  /* ---- entry form ---- */
  .p-recruit-entry__form {
    max-width: 1040px;
    padding: 0;
  }
  .p-recruit-entry__form dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-recruit-entry__form dl dt {
    width: 100%;
    font-size: 0.9375rem;
    text-align: left;
    display: block;
    padding: 16px 10px;
  }
  .p-recruit-entry__form dl dd {
    -ms-flex: initial;
        flex: initial;
    width: 100%;
    font-size: 0.9375rem;
    line-height: 1.75;
    padding: 16px 1.875rem 16px 10px;
  }
  .p-recruit-entry__form textarea {
    height: 130px;
  }
  .p-recruit-entry__form .form-item-radio label {
    width: 100%;
    margin: 0 0 5px;
  }
  .p-recruit-entry__form .form-item-radio label:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .p-recruit-entry__form .form-group {
    gap: 18px;
  }
  .p-recruit-entry__form .form-group-item {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 2px;
  }
  .p-recruit-entry__form .form-group-item p {
    font-size: 0.8125rem;
  }
  .p-recruit-entry__form .form-name input[type=text] {
    min-width: initial;
  }
  .p-recruit-entry__form .form-address .post-code input[type=text] {
    max-width: 100%;
  }
  .p-recruit-entry__form .form-address .wrap p {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 2px;
  }
  .p-recruit-entry__form .form-date {
    gap: 2px;
  }
  .p-recruit-entry__form .form-date .form-group-item {
    gap: 2px;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
  }
  .p-recruit-entry__form .form-date .form-group-item:first-child input[type=text] {
    max-width: 80px;
  }
  .p-recruit-entry__form .form-date input[type=text] {
    max-width: 64px;
  }
  .p-recruit-entry__note {
    margin-top: 20px;
  }
  .p-recruit-entry__policy {
    margin: 16px 0 0 auto;
  }
  .p-recruit-entry__check {
    margin-top: 10px;
    text-align: center;
  }
  .p-recruit-entry__btn {
    margin: 40px auto 0;
    text-align: center;
  }
  .p-recruit-entry__btn input {
    font-size: 1.25rem;
    width: 100%;
    max-width: 290px;
    padding: 12px;
  }
}