@charset "UTF-8";
@-webkit-keyframes slideRepeat {
  0% {
    left: -200%;
  }
  100% {
    left: 100%;
  }
}
@keyframes slideRepeat {
  0% {
    left: -200%;
  }
  100% {
    left: 100%;
  }
}
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  scroll-padding-top: 8.25rem;
}
@media (max-width: 40rem) {
  html {
    scroll-padding-top: 5.375rem;
  }
}

body {
  color: #333;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(../img/common/common-bg.jpg);
  background-repeat: repeat;
  background-position: center top;
  overflow-x: hidden;
  margin: 0;
}
@media (max-width: 68.75rem) {
  body {
    font-size: 0.9375rem;
  }
}
@media (max-width: 48rem) {
  body {
    font-size: 0.875rem;
  }
}
@media (max-width: 40rem) {
  body {
    font-size: 0.8125rem;
    line-height: 1.6;
    background-image: url(../img/common/common-bg_sp.jpg);
  }
}
body.is-hidden {
  overflow: hidden;
}

img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

a {
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.8;
}

.sp {
  display: none !important;
}
@media (max-width: 40rem) {
  .sp {
    display: block !important;
  }
}

@media (max-width: 40rem) {
  .pc {
    display: none !important;
  }
}

/* テキスト選択時の色変更 */
::-moz-selection {
  background: rgba(255, 238, 0, 0.8);
}
::selection {
  background: rgba(255, 238, 0, 0.8);
}

/*------------------------------------------------------------------------------
  Keyframes
------------------------------------------------------------------------------*/
@-webkit-keyframes scrollText {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes scrollText {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-92.5rem);
            transform: translateX(-92.5rem);
  }
}
@keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-92.5rem);
            transform: translateX(-92.5rem);
  }
}
@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes revealImage {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes revealImage {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes bounceArrow {
  0%, 100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
}
@keyframes bounceArrow {
  0%, 100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
}
@keyframes scrollText {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-57.375rem);
            transform: translateX(-57.375rem);
  }
}
@-webkit-keyframes recruitSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-33.3333%);
            transform: translateX(-33.3333%);
  }
}
@keyframes recruitSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-33.3333%);
            transform: translateX(-33.3333%);
  }
}
@keyframes slideRepeat {
  0% {
    left: -200%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes revealDown {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes revealDown {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
#wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: clip;
}
.l-main:focus {
  outline: none;
}

.l-main__commonSection {
  margin-bottom: 12.5rem;
}
@media (max-width: 47.9375rem) {
  .l-main__commonSection {
    margin-bottom: 10rem;
  }
}
@media (max-width: 40rem) {
  .l-main__commonSection {
    margin-bottom: 7.5rem;
  }
}

.l-main__commonSection2 {
  margin-bottom: 12rem;
}
@media (max-width: 47.9375rem) {
  .l-main__commonSection2 {
    margin-bottom: 9.5rem;
  }
}
@media (max-width: 40rem) {
  .l-main__commonSection2 {
    margin-bottom: 6.5rem;
  }
}

.l-main__commonContainer {
  padding: 9rem 0 12.5rem;
}
@media (max-width: 40rem) {
  .l-main__commonContainer {
    padding: 4.5rem 0 6rem;
  }
}

.l-main__commonContainer--recruit {
  padding: 10rem 0 12.5rem;
}
@media (max-width: 40rem) {
  .l-main__commonContainer--recruit {
    padding: 7rem 0 6rem;
  }
}

.l-main__sectionBody {
  margin-top: 4.5rem;
}
@media (max-width: 40rem) {
  .l-main__sectionBody {
    margin-top: 3rem;
  }
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-header.is-bgc {
  background-color: rgba(243, 246, 247, 0.95);
}

.l-header__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 3.125rem;
}
@media (max-width: 68.75rem) {
  .l-header__inner {
    padding-left: 1.25rem;
  }
}
@media (max-width: 56.25rem) {
  .l-header__inner {
    padding-left: 0.875rem;
  }
}

.l-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 15.3125rem;
          flex: 0 1 15.3125rem;
  margin-top: 1.875rem;
  margin-right: auto;
}
@media (max-width: 68.75rem) {
  .l-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 12.5rem;
            flex: 0 1 12.5rem;
    margin-top: 1.625rem;
  }
}
@media (max-width: 56.25rem) {
  .l-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 10.625rem;
            flex: 0 1 10.625rem;
  }
}
@media (max-width: 47.9375rem) {
  .l-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 11.875rem;
            flex: 0 1 11.875rem;
    margin-top: 0.9375rem;
  }
}

.l-header__logoLink {
  display: block;
  width: 100%;
}
.l-header__logoLink img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 47.9375rem) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: -99;
    width: 100%;
    height: 100vh;
    background-color: #EFF4FC;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    visibility: hidden;
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3.5rem 0 4rem;
    clip-path: inset(0 0 100% 100%);
  }
  .l-header__nav.open {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 99;
    clip-path: inset(0 0 0 0);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

.l-header__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 2.5rem;
  margin-right: 2.5rem;
}
@media (max-width: 68.75rem) {
  .l-header__navList {
    gap: 0 1.25rem;
    margin-right: 1.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .l-header__navList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 0;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 47.9375rem) {
  .l-header__navItem {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: 1px solid #B7C7D7;
    position: relative;
  }
  .l-header__navItem::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1rem;
    width: 1.875rem;
    height: 0.375rem;
    background-image: url(../img/common/arrow-black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
  }
  .l-header__navItem.sp {
    display: block !important;
  }
}

.l-header__navLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #333;
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
@media (max-width: 47.9375rem) {
  .l-header__navLink {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1.5rem 1rem;
  }
}
.l-header__navLink:hover {
  color: #095CA8;
  opacity: 1;
}

.l-header__navTextEn {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 68.75rem) {
  .l-header__navTextEn {
    font-size: 0.9375rem;
  }
}
@media (max-width: 47.9375rem) {
  .l-header__navTextEn {
    font-size: 1.1875rem;
    margin-right: 0.75rem;
  }
}

.l-header__navTextJp {
  font-size: 0.75rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (max-width: 68.75rem) {
  .l-header__navTextJp {
    font-size: 0.6875rem;
  }
}
@media (max-width: 47.9375rem) {
  .l-header__navTextJp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}

.l-header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15rem;
          flex: 0 0 15rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 68.75rem) {
  .l-header__buttons {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5rem;
            flex: 0 0 12.5rem;
  }
}
@media (max-width: 47.9375rem) {
  .l-header__buttons {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-header__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 7.5rem;
          flex: 0 1 7.5rem;
  height: 6.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
@media (max-width: 68.75rem) {
  .l-header__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 6.25rem;
            flex: 0 1 6.25rem;
    height: 5.625rem;
  }
}
@media (max-width: 47.9375rem) {
  .l-header__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    text-align: center;
    width: 100%;
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
    height: 4rem;
    border-radius: 40px;
  }
  .l-header__btn .l-header__navTextEn {
    line-height: 1.35;
    margin-right: 0;
  }
  .l-header__btn .l-header__navTextJp {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
  }
}
.l-header__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.6)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(75%, rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 25%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 75%, rgba(255, 255, 255, 0) 100%);
}
.l-header__btn:hover::before {
  -webkit-animation: slideRepeat 1.3s ease infinite;
          animation: slideRepeat 1.3s ease infinite;
  left: 150%;
}
.l-header__btn .l-header__navTextJp {
  font-weight: 500;
}

.l-header__btn--recruit {
  color: #333;
  background: linear-gradient(136deg, #FE0 1.43%, #E8FF56 57.22%, #C0FF66 84.02%, #A8FF8A 110.16%);
}
@media (max-width: 47.9375rem) {
  .l-header__btn--recruit {
    margin-bottom: 1rem;
  }
}

.l-header__btn--contact {
  color: #fff;
  background-color: #095CA8;
}
.l-header__btn--contact::before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.1)), color-stop(50%, rgba(255, 255, 255, 0.2)), color-stop(75%, rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0) 100%);
}

/*------------------------------------------------------------------------------
  l-commonContact
------------------------------------------------------------------------------*/
.l-commonContact {
  position: relative;
  padding: 12.5rem 0 12rem;
  margin-bottom: 8rem;
}
.l-commonContact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/common-contact-bg.jpg?ver1.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  clip-path: inset(0 0 100% 0);
}
.l-commonContact.is-active::before {
  -webkit-animation: revealDown 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
          animation: revealDown 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}
@media (max-width: 47.9375rem) {
  .l-commonContact {
    padding: 8.75rem 0 10rem;
  }
}
@media (max-width: 40rem) {
  .l-commonContact {
    padding: 7rem 0;
    margin-bottom: 6rem;
  }
}

.l-commonContact__title {
  color: #fff;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 4.5rem;
  position: relative;
}
@media (max-width: 40rem) {
  .l-commonContact__title {
    padding-bottom: 1.75rem;
    margin-bottom: 4rem;
  }
}
.l-commonContact__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.5rem;
  height: 1px;
  background-color: #fff;
  display: block;
}
@media (max-width: 40rem) {
  .l-commonContact__title::before {
    width: 2.75rem;
  }
}

.l-commonContact__titleEn {
  font-family: "Inter", sans-serif;
  font-size: 4.5rem;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
@media (max-width: 56.25rem) {
  .l-commonContact__titleEn {
    font-size: 4rem;
  }
}
@media (max-width: 47.9375rem) {
  .l-commonContact__titleEn {
    font-size: 3.125rem;
  }
}

.l-commonContact__titleJa {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: block;
}
@media (max-width: 56.25rem) {
  .l-commonContact__titleJa {
    font-size: 1rem;
  }
}

.l-commonContact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 47.9375rem) {
  .l-commonContact__buttons {
    display: block;
  }
}

.l-commonContact__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49.27%;
          flex: 0 1 49.27%;
  color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.75rem 2rem 2.25rem 2.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 56.25rem) {
  .l-commonContact__btn {
    padding: 3.125rem 1rem 2.25rem 1.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .l-commonContact__btn {
    width: 100%;
    display: block;
  }
}
@media (max-width: 40rem) {
  .l-commonContact__btn {
    padding: 2.5rem 1rem 2rem;
  }
}
.l-commonContact__btn:hover {
  opacity: 1;
  background-color: #FFF56B;
}
.l-commonContact__btn:hover .l-commonContact__btnIconTel {
  fill: #fff;
}

.l-commonContact__btn--tel {
  background-color: rgba(17, 17, 17, 0.9);
}
@media (max-width: 47.9375rem) {
  .l-commonContact__btn--tel {
    margin-bottom: 1rem;
  }
}
@media (max-width: 40rem) {
  .l-commonContact__btn--tel {
    margin-bottom: 0.75rem;
  }
}
.l-commonContact__btn--tel:hover {
  color: #111;
}
.l-commonContact__btn--tel:hover .l-commonContact__btnIcon {
  background-color: #111;
}

.l-commonContact__btn--mail {
  background-color: rgba(9, 92, 168, 0.9);
}
.l-commonContact__btn--mail:hover {
  color: #095CA8;
}
.l-commonContact__btn--mail:hover .l-commonContact__btnIcon {
  background-color: #095CA8;
}
.l-commonContact__btn--mail:hover .l-commonContact__btnIconMail {
  stroke: #fff;
}

.l-commonContact__btnContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-commonContact__btntitle {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 40rem) {
  .l-commonContact__btntitle {
    font-size: 0.875rem;
  }
}

.l-commonContact__btnNumber {
  font-size: 2.125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Inter", sans-serif;
}
@media (max-width: 56.25rem) {
  .l-commonContact__btnNumber {
    font-size: 1.75rem;
  }
}

.footerContact__btnNote {
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media (max-width: 40rem) {
  .footerContact__btnNote {
    font-size: 0.75rem;
  }
}

.l-commonContact__btnText {
  font-size: 1.8125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 56.25rem) {
  .l-commonContact__btnText {
    font-size: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .l-commonContact__btnText {
    font-size: 1.4375rem;
    margin-top: 0.25rem;
  }
}

.l-commonContact__btnIcon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.75rem;
          flex: 0 0 3.75rem;
  height: 3.75rem;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 1.625rem;
}
@media (max-width: 56.25rem) {
  .l-commonContact__btnIcon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3.5rem;
            flex: 0 0 3.5rem;
    height: 3.5rem;
    margin-top: 1.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .l-commonContact__btnIcon {
    margin-top: 1rem;
  }
}
@media (max-width: 40rem) {
  .l-commonContact__btnIcon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3rem;
            flex: 0 0 3rem;
    height: 3rem;
  }
}
.l-commonContact__btnIcon svg {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 40rem) {
  .l-commonContact__btnIconTel {
    width: 1.0625rem;
    margin-top: 0.125rem;
  }
}

.l-commonContact__btnIconMail {
  fill: none;
  stroke: #095CA8;
  stroke-width: 1.3;
}
@media (max-width: 40rem) {
  .l-commonContact__btnIconMail {
    width: 1.125rem;
    display: block;
    margin-top: 0.1875rem;
  }
}

/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 8rem 0 6.5rem;
}
@media (max-width: 40rem) {
  .l-footer__container {
    display: block;
    margin: 4rem 0 4.5rem;
  }
}

.l-footer__info {
  padding-right: 2rem;
}
@media (max-width: 40rem) {
  .l-footer__info {
    padding-right: 0;
  }
}

.l-footer__logo {
  width: 100%;
  max-width: 20.9375rem;
  margin-bottom: 3rem;
  display: block;
  position: relative;
}
@media (max-width: 40rem) {
  .l-footer__logo {
    max-width: 18.125rem;
    margin-bottom: 2rem;
  }
}
.l-footer__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__logoText {
  position: absolute;
  bottom: -0.6875rem;
  left: 62%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #333;
  font-size: 0.8125rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 40rem) {
  .l-footer__logoText {
    font-size: 0.6875rem;
    bottom: -0.5625rem;
  }
}

.l-footer__company {
  margin-bottom: 2.5rem;
}
@media (max-width: 40rem) {
  .l-footer__company {
    margin-bottom: 2rem;
  }
}

.l-footer__office:not(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 40rem) {
  .l-footer__office {
    margin-bottom: 1.5rem;
  }
}

.l-footer__officeTitle {
  font-size: 1.0625rem;
  font-weight: bold;
}
@media (max-width: 40rem) {
  .l-footer__officeTitle {
    font-size: 0.875rem;
  }
}

.l-footer__officeText {
  margin-bottom: 0.25rem;
}
@media (max-width: 40rem) {
  .l-footer__officeText {
    margin-bottom: 0.1875rem;
  }
}

.l-footer__officeMap {
  color: #333;
  text-decoration: none;
  display: inline-block;
}
.l-footer__officeMap:hover {
  text-decoration: underline;
}
.l-footer__officeMap img {
  vertical-align: -1px;
  display: inline-block;
  width: 0.875rem;
  margin-left: 0.5rem;
}
@media (max-width: 40rem) {
  .l-footer__officeMap img {
    vertical-align: -2px;
    width: 0.75rem;
    margin-left: 0.375rem;
  }
}

.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.5rem;
}

.l-footer__snsLink img {
  vertical-align: middle;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__navWrap {
  margin-top: 7.125rem;
}
@media (max-width: 40rem) {
  .l-footer__navWrap {
    margin-top: 4rem;
  }
}

.l-footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.5rem 1fr 3.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 68.75rem) {
  .l-footer__nav {
    gap: 2rem;
  }
}
@media (max-width: 56.25rem) {
  .l-footer__nav {
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
  }
}
@media (max-width: 40rem) {
  .l-footer__nav {
    gap: 1.5rem 1rem;
    margin-bottom: 2rem;
  }
}

.l-footer__navGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (max-width: 40rem) {
  .l-footer__navGroup {
    gap: 1.5rem;
  }
}

@media (max-width: 56.25rem) {
  .l-footer__navGroup--fullWidth {
    grid-column: 1/-1;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
  }
}
@media (max-width: 40rem) {
  .l-footer__navGroup--fullWidth {
    gap: 1.5rem 1rem;
  }
}

.l-footer__navLink {
  color: #333;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 40rem) {
  .l-footer__navLink {
    font-size: 0.875rem;
  }
}
.l-footer__navLink:hover {
  opacity: 1;
  color: #095CA8;
}

.l-footer__navChild {
  margin-top: 0.25rem;
}

.l-footer__navChildItem a {
  display: inline-block;
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding-left: 1.5em;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 40rem) {
  .l-footer__navChildItem a {
    font-size: 0.8125rem;
    line-height: 1.85;
  }
}
.l-footer__navChildItem a::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  background-color: #095CA8;
  width: 12px;
  height: 1px;
}
.l-footer__navChildItem a:hover {
  opacity: 1;
  color: #095CA8;
  text-decoration: underline;
}

.l-footer__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 40rem) {
  .l-footer__bannerLink {
    max-width: 11.5rem;
  }
}
.l-footer__bannerLink img {
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__bottom {
  background-color: rgba(0, 0, 0, 0.87);
  color: #fff;
  padding: 1.375rem 0 1.125rem;
}
@media (max-width: 40rem) {
  .l-footer__bottom {
    padding: 1.25rem 0;
  }
}

.l-footer__bottomInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 40rem) {
  .l-footer__bottomInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1rem;
  }
}

.l-footer__copyright {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2em;
  font-family: "Inter", sans-serif;
}
@media (max-width: 47.9375rem) {
  .l-footer__copyright {
    font-size: 0.75rem;
  }
}

.l-footer__bottomLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (max-width: 40rem) {
  .l-footer__bottomLinks {
    gap: 1.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer__bottomLink {
  color: #fff;
  font-size: 0.8125rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__bottomLink:hover {
  opacity: 0.7;
}
@media (max-width: 47.9375rem) {
  .l-footer__bottomLink {
    font-size: 0.6875rem;
  }
}

/*------------------------------------------------------------------------------
  c-anchorNav
------------------------------------------------------------------------------*/
.c-anchorNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
@media (max-width: 68.75rem) {
  .c-anchorNav__list {
    gap: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .c-anchorNav__list {
    gap: 0.75rem;
  }
}

.c-anchorNav__link {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-decoration: none;
  background-color: #095CA8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1px;
  padding: 0.625rem 3rem 0.625rem 1rem;
  position: relative;
}
@media (max-width: 40rem) {
  .c-anchorNav__link {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.375rem);
            flex: 0 1 calc(50% - 0.375rem);
    font-size: 0.8125rem;
    padding: 0.5625rem 2rem 0.5625rem 0.75rem;
  }
}
.c-anchorNav__link:hover::after {
  top: 59%;
}
.c-anchorNav__link::after {
  content: "";
  position: absolute;
  top: 54%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.4375rem;
  background-image: url(../img/common/caret-bottom-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 40rem) {
  .c-anchorNav__link::after {
    right: 0.625rem;
    width: 0.5rem;
    height: 0.375rem;
  }
}
.c-anchorNav__link:focus {
  outline: 2px solid #FFEE00;
}

/*------------------------------------------------------------------------------
  c-breadcrumb
------------------------------------------------------------------------------*/
.c-breadcrumb {
  position: relative;
  z-index: 1;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1rem;
}
@media (max-width: 40rem) {
  .c-breadcrumb__list {
    padding-top: 0.625rem;
  }
}
.c-breadcrumb__list span {
  color: #163B60;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  vertical-align: 0.03125rem;
}
@media (max-width: 40rem) {
  .c-breadcrumb__list span {
    font-size: 0.6875rem;
  }
}
.c-breadcrumb__list span span {
  font-weight: 500;
  margin-right: 0.75rem;
}
@media (max-width: 40rem) {
  .c-breadcrumb__list span span {
    font-weight: normal;
    letter-spacing: 0.02em;
    margin-right: 0.5rem;
  }
}
.c-breadcrumb__list span span:not(:first-child) {
  margin-left: 0.75rem;
}
@media (max-width: 40rem) {
  .c-breadcrumb__list span span:not(:first-child) {
    margin-left: 0.5rem;
  }
}
.c-breadcrumb__list span span.breadcrumb_last {
  margin-right: 0;
}
.c-breadcrumb__list span span a {
  color: #163B60;
  text-decoration: none;
}
.c-breadcrumb__list span span a:hover {
  color: #095CA8;
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  color: #222;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  border-radius: 56px;
  background: linear-gradient(136deg, #FE0 1.43%, #E8FF56 57.22%, #C0FF66 84.02%, #A8FF8A 110.16%);
  width: 100%;
  max-width: 22.5rem;
  height: 4rem;
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 25%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.5) 75%, rgba(255, 255, 255, 0) 100%);
}
.c-btn:hover::before {
  -webkit-animation: slideRepeat 1.3s ease infinite;
          animation: slideRepeat 1.3s ease infinite;
}
@media (max-width: 40rem) {
  .c-btn {
    font-size: 1rem;
    max-width: 18.75rem;
    height: 3.625rem;
  }
}
.c-btn:hover {
  opacity: 1;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 33px;
  height: 6px;
  margin-left: 0.75rem;
  background-image: url("../img/common/arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 40rem) {
  .c-btn::after {
    width: 28px;
    right: 1.25rem;
  }
}

.c-btn--sm {
  font-size: 0.875rem;
  max-width: 14.25rem;
  height: 3rem;
}
@media (max-width: 40rem) {
  .c-btn--sm {
    font-size: 0.8125rem;
    max-width: 13.125rem;
    height: 2.875rem;
  }
}
.c-btn--sm::after {
  right: 1.125rem;
  width: 24px;
  height: 5px;
}
@media (max-width: 40rem) {
  .c-btn--sm::after {
    right: 1rem;
    width: 20px;
    height: 4px;
  }
}

.c-btn--md {
  font-size: 1rem;
  max-width: 18.125rem;
  height: 3.5rem;
}
@media (max-width: 47.9375rem) {
  .c-btn--md {
    font-size: 0.9375rem;
  }
}
@media (max-width: 40rem) {
  .c-btn--md {
    font-size: 0.8125rem;
    max-width: 13.125rem;
    height: 2.875rem;
  }
}
.c-btn--md::after {
  right: 1.125rem;
  width: 27px;
  height: 6px;
}
@media (max-width: 47.9375rem) {
  .c-btn--md::after {
    right: 1rem;
    width: 20px;
    height: 4px;
  }
}

.c-btn--primary {
  background: #095CA8;
}
.c-btn--primary::after {
  background-image: url("../img/common/arrow-white.svg");
}

/*------------------------------------------------------------------------------
  c-burgerBtn
------------------------------------------------------------------------------*/
.c-burgerBtn {
  display: none;
}
@media (max-width: 47.9375rem) {
  .c-burgerBtn {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4.375rem;
            flex: 0 0 4.375rem;
    height: 4.375rem;
    background-color: #095CA8;
    display: block;
    cursor: pointer;
    z-index: 999;
    /* ハンバーガーメニューが開いたとき */
  }
  .c-burgerBtn.cross {
    background-color: transparent;
  }
  .c-burgerBtn.cross .c-burgerBtn__bar {
    background-color: #095CA8;
  }
  .c-burgerBtn.cross .c-burgerBtn__bar--top {
    -webkit-transition-delay: 40ms;
            transition-delay: 40ms;
    -webkit-transform: translateY(1px) rotate(135deg);
            transform: translateY(1px) rotate(135deg);
    margin-bottom: 0;
  }
  .c-burgerBtn.cross .c-burgerBtn__bar--bottom {
    -webkit-transition-delay: 20ms;
            transition-delay: 20ms;
    -webkit-transform: translateY(-1px) rotate(-135deg);
            transform: translateY(-1px) rotate(-135deg);
  }
}

.c-burgerBtn__bar {
  display: block;
  width: 1.75rem;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}

.c-burgerBtn__bar--top {
  margin-bottom: 0.5rem;
}

/*------------------------------------------------------------------------------
  c-diagram
------------------------------------------------------------------------------*/
.c-diagram {
  position: relative;
}
@media (max-width: 40rem) {
  .c-diagram {
    margin: 0 auto;
    width: calc(100% - 1.5rem);
  }
}

.c-diagram__bg {
  width: 100%;
}
.c-diagram__bg img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-diagram__item {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #095CA8;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 64px rgba(0, 66, 126, 0.19);
          box-shadow: 0 0 64px rgba(0, 66, 126, 0.19);
  width: 9.5rem;
  height: 9.5rem;
}
@media (max-width: 56.25rem) {
  .c-diagram__item {
    width: 7.5rem;
    height: 7.5rem;
  }
}
@media (max-width: 47.9375rem) {
  .c-diagram__item {
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 40rem) {
  .c-diagram__item {
    width: 6.4rem;
    height: 6.4rem;
  }
}
.c-diagram__item.is-active {
  background: linear-gradient(136deg, #FE0 1.43%, #E8FF56 57.22%, #C0FF66 84.02%, #A8FF8A 110.16%);
  border-color: transparent;
  -webkit-box-shadow: 0 4px 64px rgba(248, 255, 32, 0.51);
          box-shadow: 0 4px 64px rgba(248, 255, 32, 0.51);
}

.c-diagram__item--01 {
  top: -2.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 40rem) {
  .c-diagram__item--01 {
    top: -1.25rem;
  }
}

.c-diagram__item--02 {
  top: 50%;
  right: -2.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 40rem) {
  .c-diagram__item--02 {
    right: -1.25rem;
  }
}

.c-diagram__item--03 {
  bottom: -2.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 40rem) {
  .c-diagram__item--03 {
    bottom: -1.25rem;
  }
}

.c-diagram__item--04 {
  top: 50%;
  left: -2.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 40rem) {
  .c-diagram__item--04 {
    left: -1.25rem;
  }
}

.c-diagram__itemNumber {
  color: #095CA8;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Inter", sans-serif;
  display: block;
  margin-bottom: 0.3125rem;
}
@media (max-width: 56.25rem) {
  .c-diagram__itemNumber {
    font-size: 1.5rem;
    margin-bottom: 0.1875rem;
  }
}
@media (max-width: 47.9375rem) {
  .c-diagram__itemNumber {
    font-size: 1.25rem;
  }
}
@media (max-width: 40rem) {
  .c-diagram__itemNumber {
    font-size: 1rem;
  }
}

.c-diagram__itemText {
  color: #07335B;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.35;
  letter-spacing: 0.07em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media (max-width: 56.25rem) {
  .c-diagram__itemText {
    font-size: 0.9375rem;
  }
}
@media (max-width: 40rem) {
  .c-diagram__itemText {
    font-size: 0.875rem;
  }
}

/*------------------------------------------------------------------------------
  c-fadeInUp - 汎用アニメーションクラス
------------------------------------------------------------------------------*/
.c-fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.c-fadeInUp.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*------------------------------------------------------------------------------
  c-filter
------------------------------------------------------------------------------*/
.c-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2rem 2.5rem;
}
@media (max-width: 56.25rem) {
  .c-filter {
    padding: 1.75rem 2rem;
  }
}
@media (max-width: 40rem) {
  .c-filter {
    display: block;
    padding: 1.5rem 1.25rem;
  }
  .c-filter.u-mb-8 {
    margin-bottom: 2rem !important;
  }
}

.c-filter__heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #1D3D5F;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 0.375rem;
  padding-right: 1.75rem;
  margin-right: 1.75rem;
  position: relative;
}
@media (max-width: 56.25rem) {
  .c-filter__heading {
    padding-top: 0.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .c-filter__heading {
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .c-filter__heading {
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 0.75rem;
  }
}
.c-filter__heading::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  right: 0;
  width: 1px;
  height: 1.625rem;
  background-color: #1D3D5F;
  opacity: 0.45;
}
@media (max-width: 56.25rem) {
  .c-filter__heading::before {
    top: 0.375rem;
  }
}
@media (max-width: 40rem) {
  .c-filter__heading::before {
    content: none;
  }
}

.c-filter__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem 1.25rem;
}
@media (max-width: 40rem) {
  .c-filter__list {
    gap: 0.75rem 0.75rem;
  }
}

.c-filter__item .c-label {
  color: #095CA8;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid #095CA8;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-filter__item .c-label.is-active, .c-filter__item .c-label:hover {
  color: #fff;
  background-color: #095CA8;
  opacity: 1;
}
.c-filter__item .c-label.is-active {
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  max-width: 71.25rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 1.25rem;
}
@media (max-width: 40rem) {
  .c-inner {
    padding: 0 1rem;
  }
}

.c-inner--sm {
  max-width: 52.5rem;
}

.c-inner--lg {
  max-width: 77.5rem;
}

/*------------------------------------------------------------------------------
  c-label
------------------------------------------------------------------------------*/
.c-label {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #095CA8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
}
@media (max-width: 56.25rem) {
  .c-label {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
  }
}
@media (max-width: 40rem) {
  .c-label {
    font-size: 0.8125rem;
    padding: 0.375rem 1rem;
  }
}

/*------------------------------------------------------------------------------
  c-pagination
------------------------------------------------------------------------------*/
@media (max-width: 40rem) {
  .c-pagination.u-mt-10 {
    margin-top: 3.5rem !important;
  }
}
.c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .page-numbers li {
  margin: 0 0.3125rem;
}
@media (max-width: 40rem) {
  .c-pagination .page-numbers li {
    margin: 0 0.1875rem;
  }
}
.c-pagination .page-numbers span,
.c-pagination .page-numbers a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #095CA8;
  font-size: 1.0625rem;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  background-color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 43px;
  height: 43px;
  border: 1px solid #095CA8;
  border-radius: 1px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 1px;
}
@media (max-width: 40rem) {
  .c-pagination .page-numbers span,
  .c-pagination .page-numbers a {
    font-size: 0.875rem;
    width: 34px;
    height: 34px;
  }
}
.c-pagination .page-numbers span.current,
.c-pagination .page-numbers a.current {
  pointer-events: none;
}
.c-pagination .page-numbers span.current, .c-pagination .page-numbers span:hover,
.c-pagination .page-numbers a.current,
.c-pagination .page-numbers a:hover {
  color: #fff;
  background-color: #095CA8;
  opacity: 1;
}
.c-pagination .page-numbers .dots {
  font-weight: normal;
  pointer-events: none;
  border: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 1.25rem;
  background-color: transparent;
}
@media (max-width: 40rem) {
  .c-pagination .page-numbers .dots {
    width: 26px;
  }
}
.c-pagination .page-numbers .prev,
.c-pagination .page-numbers .next {
  font-size: 1.0625rem;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}
@media (max-width: 40rem) {
  .c-pagination .page-numbers .prev,
  .c-pagination .page-numbers .next {
    font-size: 0.9375rem;
  }
}

/*------------------------------------------------------------------------------
  c-partnerbBanner
------------------------------------------------------------------------------*/
.c-partnerbBanner {
  display: block;
  text-decoration: none;
  background: linear-gradient(136deg, #FE0 1.43%, #E8FF56 57.22%, #C0FF66 84.02%, #A8FF8A 110.16%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 68.75rem;
  padding: 4.625rem 2rem 3.75rem 3rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 56.25rem) {
  .c-partnerbBanner {
    padding: 4.625rem 1.25rem 3.75rem 1.25rem;
  }
}
@media (max-width: 40rem) {
  .c-partnerbBanner {
    padding: 2.625rem 1rem 1.5rem;
  }
}
.c-partnerbBanner:hover {
  opacity: 1;
}
.c-partnerbBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.4)), color-stop(50%, rgba(255, 255, 255, 0.5)), color-stop(75%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.4) 75%, rgba(255, 255, 255, 0) 100%);
}
.c-partnerbBanner:hover::before {
  -webkit-animation: slideRepeat 1.4s ease infinite;
          animation: slideRepeat 1.4s ease infinite;
  left: 150%;
}

.c-partnerbBanner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .c-partnerbBanner__inner {
    display: block;
  }
}

.c-partnerbBanner__title {
  padding-right: 1rem;
}
@media (max-width: 40rem) {
  .c-partnerbBanner__title {
    padding-right: 0;
    margin-bottom: 1.25rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.25rem;
  }
  .c-partnerbBanner__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 2rem;
    height: 1px;
    background-color: #095CA8;
    display: block;
  }
}
.c-partnerbBanner__title .c-title__en {
  color: #095CA8;
  font-size: 3.5rem;
}
@media (max-width: 56.25rem) {
  .c-partnerbBanner__title .c-title__en {
    font-size: 3rem;
  }
}
@media (max-width: 40rem) {
  .c-partnerbBanner__title .c-title__en {
    font-size: 2.25rem;
    margin-bottom: 0.125rem;
  }
}
.c-partnerbBanner__title .c-title__ja {
  color: #095CA8;
}
@media (max-width: 40rem) {
  .c-partnerbBanner__title .c-title__ja {
    padding-left: 0;
    display: block;
  }
  .c-partnerbBanner__title .c-title__ja::before {
    content: none;
  }
}
.c-partnerbBanner__title .c-title__ja:before {
  background-color: #095CA8;
}

.c-partnerbBanner__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: -1rem;
}
@media (max-width: 40rem) {
  .c-partnerbBanner__btn {
    margin-bottom: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-partnerbBanner__btnText {
  color: #095CA8;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-right: 1.375rem;
}
@media (max-width: 56.25rem) {
  .c-partnerbBanner__btnText {
    font-size: 1rem;
    margin-right: 1rem;
  }
}
@media (max-width: 40rem) {
  .c-partnerbBanner__btnText {
    font-size: 0.9375rem;
    margin-right: 0.75rem;
  }
}

.c-partnerbBanner__btnArrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #095CA8;
  border-radius: 50%;
}
@media (max-width: 56.25rem) {
  .c-partnerbBanner__btnArrow {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 40rem) {
  .c-partnerbBanner__btnArrow {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.c-partnerbBanner__btnArrow img {
  width: 22px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 40rem) {
  .c-partnerbBanner__btnArrow img {
    width: 0.9375rem;
  }
}

/*------------------------------------------------------------------------------
  c-patentBanner
------------------------------------------------------------------------------*/
.c-patentBanner {
  max-width: 62.5rem;
  display: block;
  text-decoration: none;
  background-image: url(../img/about/patent-banner-bg.jpg?ver1.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 11, 28, 0.12);
          box-shadow: 0 0 50px 0 rgba(0, 11, 28, 0.12);
}
@media (max-width: 40rem) {
  .c-patentBanner {
    background-image: url(../img/about/patent-banner-bg_sp.jpg?ver1.1);
  }
}
.c-patentBanner:hover {
  opacity: 0.8;
}

.c-patentBanner__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5.5rem 2rem 1.625rem 5rem;
}
@media (max-width: 56.25rem) {
  .c-patentBanner__inner {
    padding: 4.75rem 1.5rem 1.625rem 2.5rem;
  }
}
@media (max-width: 40rem) {
  .c-patentBanner__inner {
    padding: 3rem 1.25rem 2.5rem;
  }
}

.c-patentBanner__contents {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.625rem;
}
@media (max-width: 40rem) {
  .c-patentBanner__contents {
    display: block;
    margin-bottom: 1.5rem;
  }
}

.c-patentBanner__title {
  line-height: 1.2;
  margin-right: 6rem;
}
@media (max-width: 56.25rem) {
  .c-patentBanner__title {
    margin-right: 2.5rem;
  }
}
@media (max-width: 40rem) {
  .c-patentBanner__title {
    text-align: center;
    margin: 0 0 1rem;
  }
}

.c-patentBanner__ja {
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 0.75rem;
}
@media (max-width: 56.25rem) {
  .c-patentBanner__ja {
    font-size: 2rem;
  }
}
@media (max-width: 40rem) {
  .c-patentBanner__ja {
    font-size: 1.875rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
  }
}

.c-patentBanner__en {
  font-size: 0.9375rem;
  font-style: italic;
  font-weight: 200;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.5rem;
  position: relative;
}
@media (max-width: 56.25rem) {
  .c-patentBanner__en {
    font-size: 0.875rem;
    padding-left: 2rem;
  }
}
@media (max-width: 40rem) {
  .c-patentBanner__en {
    font-size: 0.75rem;
    padding: 0 0 0.75rem;
  }
}
.c-patentBanner__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1.75rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 56.25rem) {
  .c-patentBanner__en::before {
    width: 1.25rem;
  }
}
@media (max-width: 40rem) {
  .c-patentBanner__en::before {
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 1.125rem;
  }
}

.c-patentBanner__text {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.23em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 56.25rem) {
  .c-patentBanner__text {
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .c-patentBanner__text {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
  }
}

.c-patentBanner__btn {
  margin-left: auto;
}
@media (max-width: 40rem) {
  .c-patentBanner__btn {
    margin: 0 auto;
  }
}

/*------------------------------------------------------------------------------
  c-prose
------------------------------------------------------------------------------*/
.c-prose h2 {
  color: #1D3D5F;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 3px solid #1D3D5F;
  padding-bottom: 0.75rem;
  position: relative;
}
@media (max-width: 48rem) {
  .c-prose h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .c-prose h2 {
    font-size: 1.25rem;
  }
}
.c-prose h2::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 7.5rem;
  height: 3px;
  background-color: #2F85E9;
}
.c-prose h3 {
  color: #1D3D5F;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 5px solid #2F85E9;
}
.c-prose h3[style*="text-align: center"], .c-prose h3.has-text-align-center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-prose h3[style*="text-align: right"], .c-prose h3.has-text-align-right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media (max-width: 48rem) {
  .c-prose h3 {
    font-size: 1.3125rem;
  }
}
@media (max-width: 40rem) {
  .c-prose h3 {
    font-size: 1.125rem;
    padding-left: 0.75rem;
    border-left-width: 4px;
  }
}
.c-prose h4 {
  color: #1D3D5F;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: 2px dotted #B7C7D7;
  padding-bottom: 0.5rem;
}
@media (max-width: 40rem) {
  .c-prose h4 {
    font-size: 1.0625rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}
.c-prose h5 {
  color: #1D3D5F;
  font-size: 1.125rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-prose h5[style*="text-align: center"], .c-prose h5.has-text-align-center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-prose h5[style*="text-align: right"], .c-prose h5.has-text-align-right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.c-prose h5::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #2F85E9;
  border-radius: 2px;
  margin-right: 0.675rem;
  margin-top: 0.1875rem;
}
@media (max-width: 40rem) {
  .c-prose h5 {
    font-size: 1rem;
  }
  .c-prose h5::before {
    width: 6px;
    height: 6px;
    margin-right: 8px;
  }
}
.c-prose h2,
.c-prose h3,
.c-prose h4,
.c-prose h5,
.c-prose a,
.c-prose p,
.c-prose ul,
.c-prose ol,
.c-prose dl,
.c-prose .wp-block-table,
.c-prose .wp-block-image,
.c-prose .wp-block-media-text,
.c-prose .wp-block-gallery {
  margin: 1em 0;
}
.c-prose ul {
  list-style-type: disc;
  list-style-position: inside;
}
.c-prose ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-prose ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.2em;
}
.c-prose ol li {
  text-indent: 0;
  padding-left: 0.3em;
}
.c-prose a:not([class]) {
  color: #09099C;
  text-decoration: underline;
}
.c-prose .wp-block-table table {
  width: 100%;
  table-layout: auto;
}
.c-prose .wp-block-table td,
.c-prose .wp-block-table th {
  min-width: 7rem;
  width: auto;
}
@media (max-width: 40rem) {
  .c-prose .wp-block-table td,
  .c-prose .wp-block-table th {
    min-width: 3rem;
    white-space: normal;
  }
}
.c-prose table td:first-child,
.c-prose table th:first-child {
  min-width: 8rem;
}
@media (max-width: 40rem) {
  .c-prose table td:first-child,
  .c-prose table th:first-child {
    min-width: 5rem;
    white-space: normal;
  }
}
.c-prose .wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose .wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose .wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose .wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose figure.wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose figure.wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose figure.wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose figure.wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose img.aligncenter {
  margin-inline: auto;
  display: block;
}
.c-prose img.alignright {
  margin-inline: auto 0;
  display: block;
}
.c-prose img.alignleft {
  margin-inline: 0 auto;
  display: block;
}

/*------------------------------------------------------------------------------
  c-scopeBox
------------------------------------------------------------------------------*/
.c-scopeBox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #095CA8;
}

.c-scopeBox__title {
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #095CA8;
  padding: 0.375rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-scopeBox__text {
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
}
@media (max-width: 47.9375rem) {
  .c-scopeBox__text {
    font-size: 0.8125rem;
    padding: 0.875rem 1rem;
  }
}

/*------------------------------------------------------------------------------
  c-skipLink
------------------------------------------------------------------------------*/
.c-skipLink {
  position: absolute;
  top: -50px;
  left: 0;
  background-color: transparent;
  color: #fff;
  border-radius: 1px;
  padding: 0.5rem 0.75rem;
  z-index: 10000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
.c-skipLink:hover {
  opacity: 0.85;
}
.c-skipLink:focus {
  top: 8px;
  left: 8px;
  outline: 2px solid #095CA8;
  background-color: #333;
  -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.18);
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title__en {
  color: #095CA8;
  font-size: 5rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1.35;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 68.75rem) {
  .c-title__en {
    font-size: clamp(3.25rem, 7.28vw, 5rem);
  }
}
@media (max-width: 40rem) {
  .c-title__en {
    font-size: clamp(3.125rem, 7.28vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 0.375rem;
  }
}

.js-titleAnim .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(34px);
          transform: translateY(34px);
  -webkit-transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition-delay: var(--delay, 0s);
          transition-delay: var(--delay, 0s);
}
@media (max-width: 40rem) {
  .js-titleAnim .char {
    -webkit-transform: translateY(22px);
            transform: translateY(22px);
  }
}
.js-titleAnim.is-active .char {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-title__ja {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-title__ja:before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: #222;
  margin-top: 0.1875rem;
  margin-right: 1.25rem;
}
@media (max-width: 56.25rem) {
  .c-title__ja {
    font-size: 1rem;
  }
  .c-title__ja:before {
    margin-right: 1rem;
  }
}
@media (max-width: 40rem) {
  .c-title__ja {
    font-size: 0.9375rem;
    padding-left: 0.2rem;
  }
  .c-title__ja:before {
    width: 1.25rem;
    margin-right: 0.75rem;
  }
}

.c-title--md .c-title__en {
  font-size: 4.125rem;
  line-height: 1.2;
}
@media (max-width: 68.75rem) {
  .c-title--md .c-title__en {
    font-size: clamp(3.25rem, 6.8vw, 4rem);
  }
}
@media (max-width: 40rem) {
  .c-title--md .c-title__en {
    font-size: clamp(2.75rem, 6.8vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.375rem;
  }
}
.c-title--md .c-title__ja {
  font-size: 1.125rem;
}
@media (max-width: 56.25rem) {
  .c-title--md .c-title__ja {
    font-size: 1rem;
  }
  .c-title--md .c-title__ja:before {
    margin-right: 1rem;
  }
}
@media (max-width: 40rem) {
  .c-title--md .c-title__ja {
    font-size: 0.875rem;
    padding-left: 0.2rem;
  }
  .c-title--md .c-title__ja:before {
    width: 1.125rem;
    margin-right: 0.75rem;
  }
}

.c-title--center {
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
}
@media (max-width: 40rem) {
  .c-title--center {
    padding-bottom: 1.5rem;
  }
}
.c-title--center::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.5rem;
  height: 1px;
  background-color: #242424;
  display: block;
}
@media (max-width: 40rem) {
  .c-title--center::before {
    width: 2.25rem;
  }
}
.c-title--center .c-title__ja {
  text-align: center;
  display: block;
  padding-left: 0;
}
.c-title--center .c-title__ja:before {
  display: none;
}

.c-title--accent::before {
  background-color: #FFEE00;
}
.c-title--accent .c-title__en {
  color: #FFEE00;
}

/*------------------------------------------------------------------------------
  c-title02
------------------------------------------------------------------------------*/
.c-title02 {
  text-align: center;
}

.c-title02__en {
  color: #095CA8;
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.12em;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 40rem) {
  .c-title02__en {
    font-size: 0.8125rem;
  }
}

.c-title02__ja {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 40rem) {
  .c-title02__ja {
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------------------------------
  c-worksCard
------------------------------------------------------------------------------*/
.c-worksCardWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem;
}
@media (max-width: 56.25rem) {
  .c-worksCardWrap {
    gap: 1.875rem 1.25rem;
  }
}
.c-worksCardWrap .c-worksCard {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc((100% - 3.75rem) / 3);
          flex: 0 1 calc((100% - 3.75rem) / 3);
  max-width: 100%;
}
@media (max-width: 56.25rem) {
  .c-worksCardWrap .c-worksCard {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 1.25rem) / 2);
            flex: 0 1 calc((100% - 1.25rem) / 2);
  }
}

.c-worksCard {
  max-width: 23.75rem;
  height: 100%;
}
@media (max-width: 47.9375rem) {
  .c-worksCard {
    max-width: 100%;
  }
}

.c-worksCard__link {
  display: block;
  text-decoration: none;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-worksCard__link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.c-worksCard__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 40rem) {
  .c-worksCard__img {
    margin-bottom: 0.75rem;
  }
}
.c-worksCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-worksCard__link:hover .c-worksCard__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-worksCard__labelWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.c-worksCard__title {
  color: #333;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 56.25rem) {
  .c-worksCard__title {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------------------------
  c-workTable
------------------------------------------------------------------------------*/
.c-workTable {
  border-top: 1px solid rgba(183, 199, 215, 0.5);
  margin-top: 2rem !important;
}
@media (max-width: 40rem) {
  .c-workTable {
    margin-top: 1.75rem !important;
  }
}

.c-workTable__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid rgba(183, 199, 215, 0.5);
  padding: 2.25rem 1rem;
}
@media (max-width: 40rem) {
  .c-workTable__row {
    padding: 1.75rem 0.75rem;
  }
}
.c-workTable__row:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.6);
}
.c-workTable__row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9rem;
          flex: 0 0 9rem;
  font-weight: bold;
  color: #1D3D5F;
  letter-spacing: 0.02em;
}
@media (max-width: 40rem) {
  .c-workTable__row dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6rem;
            flex: 0 0 6rem;
  }
}
.c-workTable__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 2rem;
}
@media (max-width: 40rem) {
  .c-workTable__row dd {
    padding-left: 1.25rem;
  }
}

/*------------------------------------------------------------------------------
  c-serviceCard
------------------------------------------------------------------------------*/
.c-serviceCardWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .c-serviceCardWrap {
    display: block;
  }
}

.c-serviceCard {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31.583%;
          flex: 0 1 31.583%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 50px 0 rgba(12, 51, 112, 0.07);
          box-shadow: 0 0 50px 0 rgba(12, 51, 112, 0.07);
}
@media (max-width: 40rem) {
  .c-serviceCard:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.c-serviceCard__img {
  width: 100%;
}
.c-serviceCard__img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2px 2px 0 0;
}

.c-serviceCard__body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.25rem 1.25rem 2rem;
}
@media (max-width: 40rem) {
  .c-serviceCard__body {
    padding: 1rem 1.25rem 1.5rem;
  }
}

.c-serviceCard__title {
  color: #1D3D5F;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.75rem;
}
@media (max-width: 56.25rem) {
  .c-serviceCard__title {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .c-serviceCard__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}

.c-serviceCard__text {
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/*------------------------------------------------------------------------------
  c-interviewCard
------------------------------------------------------------------------------*/
.c-interviewCardWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.25rem 2.75%;
}
@media (max-width: 40rem) {
  .c-interviewCardWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem 0;
  }
}

.c-interviewCard {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31.5%;
          flex: 0 1 31.5%;
  background-color: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 50px 0 rgba(12, 51, 112, 0.07);
          box-shadow: 0 0 50px 0 rgba(12, 51, 112, 0.07);
  -ms-flex-item-align: start;
      align-self: flex-start;
  min-height: 36.6875rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 68.75rem) {
  .c-interviewCard {
    min-height: 0;
  }
}
@media (max-width: 40rem) {
  .c-interviewCard {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.c-interviewCard:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.c-interviewCard__link {
  text-decoration: none;
  display: block;
}

.c-interviewCard__img {
  width: 100%;
  overflow: hidden;
}
.c-interviewCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-interviewCard__link:hover .c-interviewCard__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-interviewCard__body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem 1.25rem 2.5rem;
}
@media (max-width: 47.9375rem) {
  .c-interviewCard__body {
    padding: 1.25rem 1rem 2rem;
  }
}

.c-interviewCard__labelWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.c-interviewCard__label {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background-color: #1D3D5F;
  border-radius: 1px;
  display: inline-block;
  padding: 0.4375rem 0.875rem;
}
@media (max-width: 47.9375rem) {
  .c-interviewCard__label {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.75rem;
  }
}

.c-interviewCard__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-interviewCard__name {
  color: #1D3D5F;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-right: 1rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 47.9375rem) {
  .c-interviewCard__name {
    font-size: 0.9375rem;
    margin-right: 0.75rem;
  }
}

.c-interviewCard__year {
  color: #333;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 47.9375rem) {
  .c-interviewCard__year {
    font-size: 0.75rem;
  }
}

.c-interviewCard__lead {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  color: #1D3D5F;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 0.25rem;
}
@media (max-width: 56.25rem) {
  .c-interviewCard__lead {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------------------------
  c-interviewMedia
------------------------------------------------------------------------------*/
.c-interviewMedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5rem 0;
}
@media (max-width: 40rem) {
  .c-interviewMedia {
    display: block;
    padding: 2.5rem 0 3rem;
  }
}
.c-interviewMedia:not(:last-child) {
  border-bottom: 1px solid rgba(183, 199, 215, 0.5);
}

.c-interviewMedia__textWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-interviewMedia__title {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  color: #1D3D5F;
}
@media (max-width: 68.75rem) {
  .c-interviewMedia__title {
    font-size: 1.5rem;
    padding-left: 3rem;
  }
}
@media (max-width: 56.25rem) {
  .c-interviewMedia__title {
    font-size: 1.125rem;
    padding-left: 2.125rem;
    margin-bottom: 1.25rem;
  }
}
.c-interviewMedia__title::before {
  content: "Q";
  position: absolute;
  top: -4px;
  left: 0;
  color: #095CA8;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
@media (max-width: 68.75rem) {
  .c-interviewMedia__title::before {
    font-size: 2.75rem;
  }
}
@media (max-width: 56.25rem) {
  .c-interviewMedia__title::before {
    top: -3px;
    font-size: 2rem;
  }
}

.c-interviewMedia__text {
  font-weight: normal;
  line-height: 2;
}
@media (max-width: 40rem) {
  .c-interviewMedia__text {
    line-height: 1.8;
    text-align: justify;
  }
}

.c-interviewMedia__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
  height: auto;
  padding-left: 3rem;
}
@media (max-width: 40rem) {
  .c-interviewMedia__img {
    padding-left: 0;
    margin-top: 1.5rem;
  }
}
.c-interviewMedia__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 1px;
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  margin-top: 14.25rem;
}
@media (max-width: 56.25rem) {
  .p-mv {
    margin-top: 11.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-mv {
    margin-top: 8.75rem;
  }
}
@media (max-width: 40rem) {
  .p-mv {
    margin-top: 9.5rem;
  }
}

.p-mv__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 4.5rem;
}
@media (max-width: 68.75rem) {
  .p-mv__inner {
    padding-left: 1.25rem;
  }
}

.p-mv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 3.5rem;
  margin-bottom: 6.25rem;
}
@media (max-width: 80rem) {
  .p-mv__contents {
    padding-right: 1.25rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 40rem) {
  .p-mv__contents {
    display: block;
    padding-right: 0;
    margin-bottom: 2rem;
    position: relative;
  }
}

.p-mv__textWrap {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1rem;
  margin-top: 2.8125rem;
}
@media (max-width: 80rem) {
  .p-mv__textWrap {
    margin-top: 2rem;
  }
}
@media (max-width: 56.25rem) {
  .p-mv__textWrap {
    margin-top: 1rem;
  }
}

.p-mv__lead {
  font-size: 3.25rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
@media (max-width: 80rem) {
  .p-mv__lead {
    font-size: clamp(2.5rem, 3.75vw, 3rem);
  }
}
@media (max-width: 40rem) {
  .p-mv__lead {
    font-size: clamp(1.8125rem, 3.75vw, 2rem);
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 22.4375rem) {
  .p-mv__lead {
    font-size: clamp(1.5rem, 3.75vw, 1.75rem);
  }
}
.p-mv__lead .p-mv__lead--1,
.p-mv__lead .p-mv__lead--2 {
  display: inline-block;
}
.p-mv__lead .p-mv__lead--1 .char,
.p-mv__lead .p-mv__lead--2 .char {
  -webkit-transition-delay: calc(var(--delay, 0s) + 0.8s);
          transition-delay: calc(var(--delay, 0s) + 0.8s);
}

@media (max-width: 56.25rem) {
  .p-mv__lead--2 {
    padding-left: 0.7em;
  }
}

.p-mv__text {
  color: #222;
  font-size: 1.125rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  padding-left: 2.125rem;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
body.is-loaded .p-mv__text {
  -webkit-animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
@media (max-width: 40rem) {
  body.is-loaded .p-mv__text {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
}
@media (max-width: 80rem) {
  .p-mv__text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    padding-left: clamp(1.5rem, 2.5vw, 2rem);
  }
}
@media (max-width: 40rem) {
  .p-mv__text {
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 40rem) and (max-width: 22.4375rem) {
  .p-mv__text {
    font-size: 0.75rem;
    letter-spacing: 0;
    padding-left: 1.25rem;
  }
}

.p-mv__scroll {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11.25rem;
          flex: 0 0 11.25rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
body.is-loaded .p-mv__scroll {
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
          animation: fadeInUp 0.8s ease-out forwards;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
@media (max-width: 80rem) {
  .p-mv__scroll {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.125rem;
            flex: 0 0 8.125rem;
  }
}
@media (max-width: 40rem) {
  .p-mv__scroll {
    width: 4rem;
    position: absolute;
    bottom: -0.375rem;
    right: 0.875rem;
  }
}
@media (max-width: 22.4375rem) {
  .p-mv__scroll {
    width: 4rem;
  }
}

.p-mv__scrollCircle {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}

.p-mv__scrollArrow {
  position: absolute;
  top: 52%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.5625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 80rem) {
  .p-mv__scrollArrow {
    width: 0.375rem;
  }
}
@media (max-width: 40rem) {
  .p-mv__scrollArrow {
    width: 0.23125rem;
  }
}

.p-mv__bg {
  width: 100%;
  height: 42.1875rem;
  clip-path: inset(0 100% 0 0);
}
body.is-loaded .p-mv__bg {
  -webkit-animation: revealImage 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
          animation: revealImage 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media (max-width: 80rem) {
  .p-mv__bg {
    height: clamp(30rem, 40vw, 42.1875rem);
  }
}
@media (max-width: 40rem) {
  .p-mv__bg {
    height: clamp(15rem, 40vw, 30rem);
  }
}
.p-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*------------------------------------------------------------------------------
  p-homeAbout
------------------------------------------------------------------------------*/
.p-homeAbout {
  padding-top: 13.5rem;
  margin-bottom: 21.25rem;
  position: relative;
}
@media (max-width: 47.9375rem) {
  .p-homeAbout {
    margin-bottom: 16.25rem;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout {
    padding-top: 9rem;
    margin-bottom: 12.5rem;
  }
}
.p-homeAbout::before {
  content: "";
  position: absolute;
  top: -21.5625rem;
  left: -31.25rem;
  width: 95.375rem;
  height: 166.875rem;
  background-image: url("../img/home/home-bg1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  clip-path: inset(0 0 100% 0);
}
@media (max-width: 80rem) {
  .p-homeAbout::before {
    left: -25rem;
    width: 75rem;
    height: 131.25rem;
  }
}
@media (max-width: 48rem) {
  .p-homeAbout::before {
    left: -18.75rem;
    top: -12.5rem;
    width: 56.25rem;
    height: 100rem;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout::before {
    left: -18.125rem;
    top: -1.875rem;
    width: 50rem;
    height: 93.75rem;
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
}
.p-homeAbout.is-active::before {
  -webkit-animation: revealDown 2.2s linear forwards;
          animation: revealDown 2.2s linear forwards;
}

.p-homeAbout__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .p-homeAbout__contents {
    display: block;
  }
}

.p-homeAbout__textWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1rem;
  margin-top: 4.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 56.25rem) {
  .p-homeAbout__textWrap {
    margin-top: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout__textWrap {
    padding-right: 0;
    margin: 0 0 2rem;
  }
}

.p-homeAbout__text {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.08em;
  margin: 2.5rem 0 3rem;
}
@media (max-width: 68.75rem) {
  .p-homeAbout__text {
    font-size: 1rem;
  }
}
@media (max-width: 56.25rem) {
  .p-homeAbout__text {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 47.9375rem) {
  .p-homeAbout__text {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    max-width: 19.375rem;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout__text {
    font-size: 0.8125rem;
    max-width: 100%;
    margin: 1.75rem 0 1.5rem;
  }
}

.p-homeAbout__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 42.67%;
          flex: 0 1 42.67%;
  clip-path: inset(0 0 100% 0);
}
.p-homeAbout__img.is-active {
  -webkit-animation: revealDown 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
          animation: revealDown 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media (max-width: 40rem) {
  .p-homeAbout__img {
    height: clamp(20rem, 85vw, 28rem);
  }
}
.p-homeAbout__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 40rem) {
  .p-homeAbout__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.p-homeNews__list {
  margin: 3rem 0 3.5rem;
}
@media (max-width: 40rem) {
  .p-homeNews__list {
    margin: 2rem 0 2.5rem;
  }
}

.p-homeAbout__bgTextWrap {
  position: absolute;
  bottom: -8.75rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 56.25rem) {
  .p-homeAbout__bgTextWrap {
    bottom: -6.25rem;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout__bgTextWrap {
    bottom: -4.5rem;
  }
}

.p-homeAbout__bgTextTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-animation: scrollText 18s linear infinite;
          animation: scrollText 18s linear infinite;
}

.p-homeAbout__bgText {
  color: rgba(205, 217, 229, 0.27);
  font-size: 12.375rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  padding-right: 6.25rem;
}
@media (max-width: 56.25rem) {
  .p-homeAbout__bgText {
    font-size: 10rem;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout__bgText {
    color: rgba(205, 217, 229, 0.35);
    font-size: 7.5rem;
  }
}

/*------------------------------------------------------------------------------
  p-homeStrengths
------------------------------------------------------------------------------*/
.p-homeStrengths {
  margin-bottom: 13.375rem;
}
@media (max-width: 47.9375rem) {
  .p-homeStrengths {
    margin-bottom: 10rem;
  }
}
@media (max-width: 40rem) {
  .p-homeStrengths {
    margin-bottom: 8rem;
  }
}

.p-homeStrengths__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5.5rem;
}
@media (max-width: 40rem) {
  .p-homeStrengths__card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3rem;
  }
}

.p-homeStrengths__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31.45%;
          flex: 0 1 31.45%;
  clip-path: inset(0 0 100% 0);
}
.p-homeStrengths__card.is-active {
  -webkit-animation: revealDown 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
          animation: revealDown 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}
@media (min-width: 40rem) {
  .p-homeStrengths__card.is-active:nth-child(1) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .p-homeStrengths__card.is-active:nth-child(2) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .p-homeStrengths__card.is-active:nth-child(3) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
}
@media (max-width: 40rem) {
  .p-homeStrengths__card.is-active {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
}
.p-homeStrengths__card:nth-child(2) {
  margin-top: 2rem;
}
@media (max-width: 40rem) {
  .p-homeStrengths__card:nth-child(2) {
    margin-top: 2.5rem;
  }
}
.p-homeStrengths__card:last-child {
  margin-top: 4rem;
}
@media (max-width: 40rem) {
  .p-homeStrengths__card:last-child {
    margin-top: 2.5rem;
  }
}

.p-homeStrengths__cardNumber {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1rem 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #095CA8;
  font-size: 2.5rem;
  font-weight: 600;
  font-style: italic;
  font-family: "Inter", sans-serif;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 0.625rem;
}
@media (max-width: 47.9375rem) {
  .p-homeStrengths__cardNumber {
    font-size: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-homeStrengths__cardNumber {
    font-size: 1.75rem;
  }
}
.p-homeStrengths__cardNumber::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #095CA8;
}

.p-homeStrengths__cardImg {
  width: 100%;
}
.p-homeStrengths__cardImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 346/260;
}
@media (max-width: 40rem) {
  .p-homeStrengths__cardImg img {
    aspect-ratio: 3/2;
  }
}

.p-homeStrengths__cardBody {
  color: #fff;
  text-align: center;
  background-color: #0C2943;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem 1.25rem 2.5rem;
}
@media (max-width: 47.9375rem) {
  .p-homeStrengths__cardBody {
    padding: 1.5rem 1rem 2.5rem;
  }
}

.p-homeStrengths__cardTitle {
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
@media (max-width: 56.25rem) {
  .p-homeStrengths__cardTitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-homeStrengths__cardTitle {
    font-size: 0.9375rem;
  }
}
@media (max-width: 40rem) {
  .p-homeStrengths__cardTitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .p-homeStrengths__cardTitle br {
    display: none;
  }
}

.p-homeStrengths__cardText {
  font-weight: normal;
  letter-spacing: 0;
  text-align: justify;
}

/*------------------------------------------------------------------------------
  p-homeService
------------------------------------------------------------------------------*/
.p-homeService {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 11.75rem 0 12.5rem;
}
@media (max-width: 47.9375rem) {
  .p-homeService {
    padding: 8.75rem 0 10rem;
  }
}
@media (max-width: 40rem) {
  .p-homeService {
    padding: 7.5rem 0;
  }
}

.p-homeService__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5.5rem;
  margin-bottom: 6.5rem;
  position: relative;
}
@media (max-width: 40rem) {
  .p-homeService__contents {
    display: block;
    margin: 4rem 0 2.5rem;
  }
}

.p-homeService__stickyWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32.5rem;
          flex: 0 0 32.5rem;
  position: sticky;
  top: 9.375rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 2rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 68.75rem) {
  .p-homeService__stickyWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }
}
@media (max-width: 40rem) {
  .p-homeService__stickyWrap {
    position: static;
    margin: 0 0 3rem;
  }
}

.p-homeService__detailsWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 42.5%;
          flex: 0 1 42.5%;
}
@media (max-width: 68.75rem) {
  .p-homeService__detailsWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 38%;
            flex: 0 1 38%;
  }
}

.p-homeService__detail:not(:last-child) {
  margin-bottom: 11rem;
}
@media (max-width: 40rem) {
  .p-homeService__detail:not(:last-child) {
    margin-bottom: 3.5rem;
  }
}
.p-homeService__detail.is-active {
  -webkit-animation: revealDown 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
          animation: revealDown 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

.p-homeService__detailLabel {
  color: #095CA8;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.0625rem;
}
@media (max-width: 68.75rem) {
  .p-homeService__detailLabel {
    font-size: 0.9375rem;
  }
}

.p-homeService__detailTitle {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media (max-width: 68.75rem) {
  .p-homeService__detailTitle {
    font-size: 1.75rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-homeService__detailTitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.p-homeService__detailText {
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.p-homeService__detailScope .c-scopeBox__text {
  background-color: transparent;
}

.p-homeService__lead {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 68.75rem) {
  .p-homeService__lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-homeService__lead {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .p-homeService__lead {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }
}

/*------------------------------------------------------------------------------
  p-homeworks
------------------------------------------------------------------------------*/
.p-homeWork__inner {
  max-width: 81.5rem;
}
@media (max-width: 40rem) {
  .p-homeWork__inner {
    padding-right: 0;
  }
}

.p-homeWork__lead {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 4.5rem 0 3rem;
}
@media (max-width: 40rem) {
  .p-homeWork__lead {
    font-size: 0.9375rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    padding-right: 1rem;
    margin: 3rem 0 2.25rem;
  }
}

.p-homeworks__slider {
  overflow: hidden;
  position: relative;
  margin-bottom: 3.5rem;
  padding: 0 2rem;
}
@media (max-width: 56.25rem) {
  .p-homeworks__slider {
    padding: 0 1.75rem;
  }
}
@media (max-width: 40rem) {
  .p-homeworks__slider {
    margin-bottom: 2rem;
  }
}
.p-homeworks__slider.swiper-initialized .c-worksCard {
  max-width: 100% !important;
  width: 100%;
}
.p-homeworks__slider .swiper-button-prev,
.p-homeworks__slider .swiper-button-next {
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 56.25rem) {
  .p-homeworks__slider .swiper-button-prev,
  .p-homeworks__slider .swiper-button-next {
    top: 40%;
    width: 3.25rem;
    height: 3.25rem;
  }
}
@media (max-width: 40rem) {
  .p-homeworks__slider .swiper-button-prev,
  .p-homeworks__slider .swiper-button-next {
    top: 45%;
    width: 3rem;
    height: 3rem;
  }
}
.p-homeworks__slider .swiper-button-prev::after,
.p-homeworks__slider .swiper-button-next::after {
  content: none;
}
.p-homeworks__slider .swiper-button-prev:hover,
.p-homeworks__slider .swiper-button-next:hover {
  opacity: 0.8;
}
.p-homeworks__slider .swiper-button-prev:focus,
.p-homeworks__slider .swiper-button-next:focus {
  outline: 2px solid #FFEE00;
  border-radius: 50%;
}
.p-homeworks__slider .swiper-button-prev {
  left: 0;
  background-image: url("../img/home/slide-btnL.png");
}
@media (max-width: 40rem) {
  .p-homeworks__slider .swiper-button-prev {
    left: 0.5rem;
  }
}
.p-homeworks__slider .swiper-button-next {
  right: 0;
  background-image: url("../img/home/slide-btnR.png");
}
@media (max-width: 40rem) {
  .p-homeworks__slider .swiper-button-next {
    right: 0.5rem;
  }
}

/*------------------------------------------------------------------------------
  p-homeRecruit
------------------------------------------------------------------------------*/
.p-homeRecruit {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 0;
  background-image: url(../img/home/dark-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 56.25rem) {
  .p-homeRecruit {
    padding: 1rem 0;
  }
}
@media (max-width: 40rem) {
  .p-homeRecruit {
    padding: 7.5rem 0 2rem;
  }
}

.p-homeRecruit__inner {
  max-width: 90rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2rem 0 7.5rem;
}
@media (max-width: 80rem) {
  .p-homeRecruit__inner {
    padding-left: clamp(1.25rem, 4vw, 5rem);
  }
}
@media (max-width: 68.75rem) {
  .p-homeRecruit__inner {
    padding: 0 1.25rem;
  }
}
@media (max-width: 40rem) {
  .p-homeRecruit__inner {
    padding: 0 1rem;
  }
}

.p-homeRecruit__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 40rem) {
  .p-homeRecruit__contents {
    display: block;
  }
}

.p-homeRecruit__textWrap {
  padding-right: 1rem;
}
@media (max-width: 56.25rem) {
  .p-homeRecruit__textWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media (max-width: 40rem) {
  .p-homeRecruit__textWrap {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

.p-homeRecruit__title .c-title__en {
  color: #FFEE00;
}
.p-homeRecruit__title .c-title__ja {
  color: #fff;
}
.p-homeRecruit__title .c-title__ja::before {
  background-color: #fff;
}

.p-homeRecruit__lead {
  color: #fff;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.23em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin: 4.5rem 0 2.5rem;
}
@media (max-width: 68.75rem) {
  .p-homeRecruit__lead {
    font-size: 2rem;
  }
}
@media (max-width: 56.25rem) {
  .p-homeRecruit__lead {
    font-size: 1.5rem;
    margin: 3.5rem 0 2rem;
  }
}
@media (max-width: 40rem) {
  .p-homeRecruit__lead {
    font-size: 1.375rem;
    letter-spacing: 0.15em;
    margin: 3rem 0 1.5rem;
  }
}

.p-homeRecruit__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-bottom: 4rem;
}
@media (max-width: 68.75rem) {
  .p-homeRecruit__text {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 56.25rem) {
  .p-homeRecruit__text {
    font-size: 0.875rem;
  }
  .p-homeRecruit__text br {
    display: none;
  }
}
@media (max-width: 40rem) {
  .p-homeRecruit__text {
    font-size: 0.8125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
}

.p-homeRecruit__imgWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45.1%;
          flex: 0 1 45.1%;
  overflow: hidden;
  height: 53.5rem;
}
@media (max-width: 68.75rem) {
  .p-homeRecruit__imgWrap {
    height: 51.25rem;
  }
}
@media (max-width: 56.25rem) {
  .p-homeRecruit__imgWrap {
    height: 35.625rem;
  }
}
@media (max-width: 40rem) {
  .p-homeRecruit__imgWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    height: 11.25rem;
    width: 100%;
  }
}

.p-homeRecruit__imgSlider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: slideUp 18s linear infinite;
          animation: slideUp 18s linear infinite;
}
@media (max-width: 40rem) {
  .p-homeRecruit__imgSlider {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: slideRight 25s linear infinite;
            animation: slideRight 25s linear infinite;
  }
}

.p-homeRecruit__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 19.375rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 56.25rem) {
  .p-homeRecruit__img {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 40rem) {
  .p-homeRecruit__img {
    margin-bottom: 0;
    margin-right: 1rem;
    padding-right: 0;
    width: 17.5rem;
    height: 10.625rem;
  }
}
.p-homeRecruit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*------------------------------------------------------------------------------
  p-subMv
------------------------------------------------------------------------------*/
.p-subMv {
  background-image: url(../img/common/sub-mv-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12.5rem 0 4rem;
  margin-top: 6.875rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 68.75rem) {
  .p-subMv {
    margin-top: 5.625rem;
  }
}
@media (max-width: 56.25rem) {
  .p-subMv {
    padding: 10.5rem 0 3.5rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-subMv {
    padding: 9.75rem 0 2.5rem;
    margin-top: 4.375rem;
  }
}
@media (max-width: 40rem) {
  .p-subMv {
    background-image: url(../img/common/sub-mv-bg_sp.jpg);
    padding: 8rem 0 2rem;
  }
}

.p-subMv__title {
  color: #fff;
  line-height: 1.2;
}

.p-subMv__titleJa {
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 0.75rem;
  /* アニメーション用スタイル */
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
body.is-loaded .p-subMv__titleJa {
  -webkit-animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media (max-width: 56.25rem) {
  .p-subMv__titleJa {
    font-size: 2.375rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 40rem) {
  .p-subMv__titleJa {
    font-size: 1.875rem;
    letter-spacing: 0.1em;
  }
}

.p-subMv__titleEn {
  font-size: 0.9375rem;
  font-weight: 200;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.375rem;
  position: relative;
  /* アニメーション用スタイル */
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
body.is-loaded .p-subMv__titleEn {
  -webkit-animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media (max-width: 56.25rem) {
  .p-subMv__titleEn {
    font-size: 0.875rem;
    padding-left: 2rem;
  }
}
@media (max-width: 40rem) {
  .p-subMv__titleEn {
    font-size: 0.8125rem;
    padding-left: 1.875rem;
  }
}
.p-subMv__titleEn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1.625rem;
  height: 1px;
  background-color: #fff;
  opacity: 0.65;
}
@media (max-width: 56.25rem) {
  .p-subMv__titleEn::before {
    width: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-subMv__titleEn::before {
    width: 1.25rem;
  }
}

/*------------------------------------------------------------------------------
  p-newsList
------------------------------------------------------------------------------*/
.p-newsList__item {
  border-bottom: 1px solid #B7C7D7;
}

.p-newsList__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.25rem 0;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-newsList__link:hover .p-newsList__title {
  text-decoration: underline;
}
.p-newsList__link:hover .p-newsList__title::after {
  right: -6px;
}
@media (max-width: 47.9375rem) {
  .p-newsList__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    padding: 1.75rem 0;
  }
}

.p-newsList__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #095CA8;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  display: block;
  margin-top: 0.3125rem;
  margin-right: 2.5rem;
}
@media (max-width: 47.9375rem) {
  .p-newsList__date {
    font-size: 0.875rem;
    margin-top: 0.1875rem;
    margin-right: 0;
  }
}

.p-newsList__category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #095CA8;
  font-weight: 500;
  padding: 0.25rem 1rem;
  border-radius: 1px;
  text-align: center;
  border: 1px solid #095CA8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin-right: 2.5rem;
}
@media (max-width: 47.9375rem) {
  .p-newsList__category {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    margin-right: 0;
  }
}

.p-newsList__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 3rem;
}
@media (max-width: 40rem) {
  .p-newsList__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    font-size: 0.9375rem;
    padding-right: 2.5rem;
  }
}
.p-newsList__title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 2.0625rem;
  height: 0.4375rem;
  background-image: url(../img/common/arrow-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 40rem) {
  .p-newsList__title::after {
    width: 1.75rem;
    height: 0.375rem;
  }
}

/*------------------------------------------------------------------------------
  p-aboutIntro
------------------------------------------------------------------------------*/
.p-aboutIntro {
  padding-bottom: 12rem;
  position: relative;
  clip-path: inset(-180px -1000px 0 0);
}
@media (max-width: 40rem) {
  .p-aboutIntro {
    padding-bottom: 6rem;
    clip-path: inset(-110px 0 0 0);
  }
}
.p-aboutIntro::before {
  content: "";
  position: absolute;
  top: -17.625rem;
  left: -11.125rem;
  width: 77.6875rem;
  height: 135.9375rem;
  background-image: url("../img/about/about-logo-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 56.25rem) {
  .p-aboutIntro::before {
    left: -16.875rem;
    width: 75rem;
    height: 131.25rem;
  }
}
@media (max-width: 40rem) {
  .p-aboutIntro::before {
    top: -6.25rem;
    left: -28.125rem;
    width: 68.75rem;
    height: 125rem;
    -webkit-transform: rotate(-13deg);
            transform: rotate(-13deg);
  }
}

/*------------------------------------------------------------------------------
  p-concept
------------------------------------------------------------------------------*/
@media (max-width: 68.75rem) {
  .p-concept .c-title__en {
    font-size: 3.5rem;
  }
}
@media (max-width: 56.25rem) {
  .p-concept .c-title__en {
    font-size: 3rem;
  }
}
@media (max-width: 40rem) {
  .p-concept .c-title__en {
    font-size: clamp(2.75rem, 6.8vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.375rem;
  }
}

.p-concept__child:not(:last-child) {
  margin-bottom: 8.5rem;
}
@media (max-width: 56.25rem) {
  .p-concept__child:not(:last-child) {
    margin-bottom: 7rem;
  }
}
@media (max-width: 40rem) {
  .p-concept__child:not(:last-child) {
    margin-bottom: 4.5rem;
  }
}

.p-concept__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .p-concept__contents {
    display: block;
  }
}
.p-concept__contents .c-title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1.25rem;
}
@media (max-width: 40rem) {
  .p-concept__contents .c-title {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

.p-concept__textWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 51.67%;
          flex: 0 1 51.67%;
}
@media (max-width: 56.25rem) {
  .p-concept__textWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}

.p-concept__lead {
  color: #1D3D5F;
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 1.125rem;
  margin-bottom: 2rem;
}
@media (max-width: 68.75rem) {
  .p-concept__lead {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}
@media (max-width: 56.25rem) {
  .p-concept__lead {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}
@media (max-width: 40rem) {
  .p-concept__lead {
    font-size: 1.125rem;
  }
}

.p-concept__texts {
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 40rem) {
  .p-concept__texts {
    letter-spacing: 0.07em;
    line-height: 1.9;
  }
}

/*------------------------------------------------------------------------------
  p-philosophy
------------------------------------------------------------------------------*/
.p-philosophy {
  margin-top: 10rem;
}
@media (max-width: 40rem) {
  .p-philosophy {
    margin-top: 5rem;
  }
}

/*------------------------------------------------------------------------------
  p-principles
------------------------------------------------------------------------------*/
.p-principles__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-principles__item:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 40rem) {
  .p-principles__item:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}

.p-principles__num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.875rem;
          flex: 0 0 2.875rem;
  color: #095CA8;
  font-size: 1.625rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
  margin-right: 0.375rem;
}
@media (max-width: 56.25rem) {
  .p-principles__num {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2.625rem;
            flex: 0 0 2.625rem;
    font-size: 1.375rem;
  }
}
@media (max-width: 40rem) {
  .p-principles__num {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2.125rem;
            flex: 0 0 2.125rem;
    font-size: 1.25rem;
  }
}

.p-principles__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 56.25rem) {
  .p-principles__text {
    font-size: 0.9375rem;
  }
}
@media (max-width: 40rem) {
  .p-principles__text {
    font-size: 0.8125rem;
  }
}

/*------------------------------------------------------------------------------
  p-greeting
------------------------------------------------------------------------------*/
.p-greeting {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12rem 0;
  overflow: hidden;
}
@media (max-width: 40rem) {
  .p-greeting {
    padding: 6rem 0;
  }
}

.p-greeting__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .p-greeting__contents {
    display: block;
  }
}

.p-greeting__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 37.67%;
          flex: 0 1 37.67%;
}
@media (max-width: 56.25rem) {
  .p-greeting__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }
}
.p-greeting__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 40rem) {
  .p-greeting__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    height: 95vw;
  }
}

.p-greeting__textWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 53.75%;
          flex: 0 1 53.75%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 3.125rem;
}
@media (max-width: 68.75rem) {
  .p-greeting__textWrap {
    padding-right: 0;
  }
}
@media (max-width: 40rem) {
  .p-greeting__textWrap {
    margin-top: 1.5rem;
  }
}
.p-greeting__textWrap:only-child {
  max-width: 68.75rem;
  margin: 0 auto;
  padding-right: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-greeting__lead {
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin: 4rem 0 2rem;
}
@media (max-width: 56.25rem) {
  .p-greeting__lead {
    font-size: 1.25rem;
    margin: 3rem 0 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-greeting__lead {
    margin: 2rem 0 1.25rem;
  }
}

.p-greeting__texts {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 2.5rem;
}
@media (max-width: 40rem) {
  .p-greeting__texts {
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
  }
}
.p-greeting__texts p:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 40rem) {
  .p-greeting__texts p:not(:last-child) {
    margin-bottom: 1rem;
  }
}

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

.p-greeting__signText {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.1875rem;
  margin-right: 1.125rem;
}
@media (max-width: 40rem) {
  .p-greeting__signText {
    font-size: 0.75rem;
    margin-top: 0.125rem;
  }
}

.p-greeting__name {
  max-width: 8.1875rem;
}
@media (max-width: 40rem) {
  .p-greeting__name {
    max-width: 7rem;
  }
}
.p-greeting__name img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------------------------------------------------------------------------
  p-overview
------------------------------------------------------------------------------*/
.p-overview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 40rem) {
  .p-overview__item {
    display: block;
  }
}
.p-overview__item:first-child .p-overview__term {
  border-top: 1px solid #095CA8;
}
@media (max-width: 40rem) {
  .p-overview__item:first-child .p-overview__term {
    border-top: 1px solid #B7C7D7;
  }
}
.p-overview__item:first-child .p-overview__desc {
  border-top: 1px solid #B7C7D7;
}
@media (max-width: 40rem) {
  .p-overview__item:first-child .p-overview__desc {
    border-top: none;
  }
}
@media (max-width: 40rem) {
  .p-overview__item {
    display: block;
  }
}

.p-overview__term {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13.75rem;
          flex: 0 0 13.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #095CA8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 1rem;
}
@media (max-width: 56.25rem) {
  .p-overview__term {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10rem;
            flex: 0 0 10rem;
  }
}
@media (max-width: 40rem) {
  .p-overview__term {
    font-size: 0.875rem;
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 1.75rem 1rem 1.25rem;
  }
}

.p-overview__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 1rem 2rem 2rem;
  border-bottom: 1px solid #B7C7D7;
}
@media (max-width: 40rem) {
  .p-overview__desc {
    display: block;
    width: 100%;
    padding: 0 1rem 1.75rem;
  }
}

.p-overview__subItem:not(:last-child) {
  margin-bottom: 1.5em;
}

.p-overview__childList li {
  position: relative;
  padding-left: 1em;
}
.p-overview__childList li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/*------------------------------------------------------------------------------
  p-access
------------------------------------------------------------------------------*/
.p-access {
  background-color: rgba(190, 206, 220, 0.53);
  padding: 12rem 0;
}
@media (max-width: 40rem) {
  .p-access {
    padding: 6rem 0;
  }
}

.p-access__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .p-access__contents {
    display: block;
  }
}

.p-access__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47.27%;
          flex: 0 0 47.27%;
}
@media (max-width: 40rem) {
  .p-access__item:first-child {
    margin-bottom: 3rem;
  }
}

.p-access__map {
  margin-bottom: 0.5rem;
}
@media (max-width: 40rem) {
  .p-access__map {
    margin-bottom: 0.25rem;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 21.875rem;
}
@media (max-width: 40rem) {
  .p-access__map iframe {
    height: 75vw;
  }
}

.p-access__name {
  font-weight: 500;
}
.p-access__name strong {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 40rem) {
  .p-access__name strong {
    font-size: 0.875rem;
  }
}

/*------------------------------------------------------------------------------
  p-history
------------------------------------------------------------------------------*/
.p-history__list {
  margin-bottom: 8rem;
}
@media (max-width: 56.25rem) {
  .p-history__list {
    margin-bottom: 6rem;
  }
}
@media (max-width: 40rem) {
  .p-history__list {
    margin-bottom: 4rem;
  }
}

.p-history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.p-history__item:not(:last-child) {
  padding-bottom: 3rem;
}
@media (max-width: 40rem) {
  .p-history__item:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.p-history__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 1.375rem;
  left: 9.625rem;
  width: 2px;
  height: calc(100% - 10px);
  border-left: 1.5px dashed #095CA8;
}
@media (max-width: 56.25rem) {
  .p-history__item:not(:last-child)::before {
    left: 8.375rem;
  }
}
@media (max-width: 40rem) {
  .p-history__item:not(:last-child)::before {
    left: 6.625rem;
    width: 1px;
  }
}
.p-history__item::after {
  content: "";
  position: absolute;
  left: 9.125rem;
  top: 0.875rem;
  width: 17px;
  height: 17px;
  background-color: #095CA8;
  border-radius: 50%;
}
@media (max-width: 56.25rem) {
  .p-history__item::after {
    left: 7.875rem;
  }
}
@media (max-width: 40rem) {
  .p-history__item::after {
    top: 0.75rem;
    left: 6.25rem;
    width: 14px;
    height: 14px;
  }
}

.p-history__year {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10.25rem;
          flex: 0 0 10.25rem;
  color: #095CA8;
  font-size: 1.75rem;
  font-weight: bold;
  left: 1.2em;
  letter-spacing: 0.05em;
  font-family: "Inter", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 56.25rem) {
  .p-history__year {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9rem;
            flex: 0 0 9rem;
  }
}
@media (max-width: 40rem) {
  .p-history__year {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7.5rem;
            flex: 0 0 7.5rem;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
  }
}
.p-history__year span {
  font-size: 0.875rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 0.3125rem;
  margin-left: 0.1875rem;
}
@media (max-width: 40rem) {
  .p-history__year span {
    font-size: 0.6875rem;
    margin-top: 0.25rem;
    margin-left: 0.125rem;
  }
}

.p-history__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 0.5rem;
  margin-left: 4.5rem;
}
@media (max-width: 56.25rem) {
  .p-history__desc {
    margin-left: 3.5rem;
  }
}
@media (max-width: 40rem) {
  .p-history__desc {
    margin-left: 1.5rem;
  }
}

/*------------------------------------------------------------------------------
  p-work
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  p-recruitMv
------------------------------------------------------------------------------*/
.p-recruitMv {
  padding-top: 6.875rem;
}
@media (max-width: 68.75rem) {
  .p-recruitMv {
    padding-top: 5.625rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-recruitMv {
    padding-top: 4.375rem;
  }
}

.p-recruitMv__inner {
  width: calc(77.5rem + (100% - 77.5rem) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.25rem;
  margin-left: auto;
}
@media (max-width: 68.75rem) {
  .p-recruitMv__inner {
    width: 100%;
  }
}

.p-recruitMv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 40rem) {
  .p-recruitMv__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-recruitMv__textWrap {
  margin-top: 5.75rem;
}
@media (max-width: 68.75rem) {
  .p-recruitMv__textWrap {
    margin-top: 4rem;
  }
}
@media (max-width: 56.25rem) {
  .p-recruitMv__textWrap {
    margin-top: 3rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-recruitMv__textWrap {
    margin-top: 2.5rem;
  }
}
@media (max-width: 40rem) {
  .p-recruitMv__textWrap {
    margin: 4.25rem 0 1rem;
  }
}

.p-recruitMv__title {
  margin-bottom: 7.5rem;
}
@media (max-width: 68.75rem) {
  .p-recruitMv__title {
    margin-bottom: 5rem;
  }
}
@media (max-width: 56.25rem) {
  .p-recruitMv__title {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 40rem) {
  .p-recruitMv__title {
    margin-bottom: 2rem;
  }
}

.p-recruitMv__titleEn {
  font-size: 4.75rem;
  line-height: 1.2;
}
@media (max-width: 68.75rem) {
  .p-recruitMv__titleEn {
    font-size: clamp(3rem, 6.5vw, 5rem);
  }
}
@media (max-width: 40rem) {
  .p-recruitMv__titleEn {
    font-size: clamp(3.125rem, 7.28vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 0.125rem;
  }
}

@media (max-width: 68.75rem) {
  .p-recruitMv__titleJa {
    font-size: 1rem;
  }
  .p-recruitMv__titleJa:before {
    margin-right: 1rem;
  }
}
@media (max-width: 40rem) {
  .p-recruitMv__titleJa {
    font-size: 0.9375rem;
    padding-left: 0.2rem;
  }
  .p-recruitMv__titleJa:before {
    width: 1.25rem;
    margin-right: 0.75rem;
  }
}
@media (max-width: 68.75rem) {
  .p-recruitMv__titleJa:before {
    width: 2.125rem;
  }
}

.p-recruitMv__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 59.2%;
          flex: 0 1 59.2%;
  height: 25.625rem;
}
@media (max-width: 68.75rem) {
  .p-recruitMv__img {
    height: 21.25rem;
  }
}
@media (max-width: 56.25rem) {
  .p-recruitMv__img {
    height: 17.5rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-recruitMv__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
    height: 13.75rem;
  }
}
@media (max-width: 40rem) {
  .p-recruitMv__img {
    height: 11.875rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.p-recruitMv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*------------------------------------------------------------------------------
  p-recruitMessage
------------------------------------------------------------------------------*/
.p-recruitMessage {
  position: relative;
}
.p-recruitMessage::before {
  content: "";
  position: absolute;
  bottom: 6.5rem;
  left: -1.75rem;
  background-image: url(../img/recruit/recruit-logo-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 134.25rem;
  height: 100.875rem;
  z-index: -1;
}
@media (max-width: 68.75rem) {
  .p-recruitMessage::before {
    bottom: 7.5rem;
    width: 123.75rem;
    height: 92.5rem;
  }
}
@media (max-width: 56.25rem) {
  .p-recruitMessage::before {
    bottom: 6.25rem;
    width: 118.75rem;
    height: 90rem;
  }
}
@media (max-width: 40rem) {
  .p-recruitMessage::before {
    left: -10.625rem;
    -webkit-transform: rotate(13deg);
            transform: rotate(13deg);
    width: 93.75rem;
    height: 71.25rem;
  }
}

.p-recruitMessage__lead {
  color: #1D3D5F;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  text-align: center;
  margin: 4rem 0 3rem;
}
@media (max-width: 56.25rem) {
  .p-recruitMessage__lead {
    font-size: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-recruitMessage__lead {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    margin: 3rem 0 2rem;
  }
}

.p-recruitMessage__texts {
  font-size: 1.0625rem;
  letter-spacing: 0.2em;
  line-height: 2.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media (max-width: 56.25rem) {
  .p-recruitMessage__texts {
    font-size: 0.9375rem;
    letter-spacing: 0.15em;
  }
}
@media (max-width: 40rem) {
  .p-recruitMessage__texts {
    font-size: 0.8125rem;
    line-height: 2;
  }
}
.p-recruitMessage__texts p:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 40rem) {
  .p-recruitMessage__texts p:not(:last-child) {
    margin-bottom: 1rem;
  }
}

.p-recruitMessage__slide {
  width: 100%;
  overflow: hidden;
  margin-top: 5rem;
}
@media (max-width: 40rem) {
  .p-recruitMessage__slide {
    margin-top: 2.5rem;
  }
}

.p-recruitMessage__slideTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: recruitSlide 24s linear infinite;
          animation: recruitSlide 24s linear infinite;
}
.p-recruitMessage__slideTrack img {
  width: auto;
  height: 20.4375rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 1.5rem;
  min-width: 96.875rem;
  max-width: none;
}
@media (max-width: 56.25rem) {
  .p-recruitMessage__slideTrack img {
    height: 17.5rem;
    min-width: 83rem;
  }
}
@media (max-width: 40rem) {
  .p-recruitMessage__slideTrack img {
    height: 11.25rem;
    min-width: 53.375rem;
    margin-right: 1rem;
  }
}

@keyframes recruitSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-33.3333333333%);
            transform: translateX(-33.3333333333%);
  }
}
/*------------------------------------------------------------------------------
  p-jobDescription
------------------------------------------------------------------------------*/
.p-jobDescription__lead {
  color: #242424;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin: 4rem 0 5.5rem;
}
@media (max-width: 56.25rem) {
  .p-jobDescription__lead {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .p-jobDescription__lead {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.12em;
    margin: 2.5rem 0 4rem;
  }
}
.p-jobDescription__lead .u-primaryColor {
  font-size: 1.625rem;
}
@media (max-width: 56.25rem) {
  .p-jobDescription__lead .u-primaryColor {
    font-size: 1.25rem;
  }
}
@media (max-width: 40rem) {
  .p-jobDescription__lead .u-primaryColor {
    font-size: 1.125rem;
  }
}

.p-jobDescription__subLead {
  color: #1D3D5F;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 2.5rem 0;
}
@media (max-width: 56.25rem) {
  .p-jobDescription__subLead {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .p-jobDescription__subLead {
    font-size: 0.9375rem;
    margin: 1.5rem 0;
  }
}

.p-jobDescription__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5.25rem;
}
@media (max-width: 40rem) {
  .p-jobDescription__media {
    display: block;
    margin-top: 4rem;
  }
}

.p-jobDescription__textWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.3%;
          flex: 0 1 46.3%;
}
@media (max-width: 40rem) {
  .p-jobDescription__textWrap {
    margin-bottom: 1.75rem;
  }
}

.p-jobDescription__mediaTitleEn {
  color: #095CA8;
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
@media (max-width: 56.25rem) {
  .p-jobDescription__mediaTitleEn {
    font-size: 0.8125rem;
  }
}

.p-jobDescription__mediaTitleJa {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 56.25rem) {
  .p-jobDescription__mediaTitleJa {
    font-size: 1.75rem;
  }
}
@media (max-width: 40rem) {
  .p-jobDescription__mediaTitleJa {
    font-size: 1.5rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-jobDescription__mediaTitleJa::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 7rem);
  height: 1px;
  background-color: #095CA8;
}
@media (max-width: 40rem) {
  .p-jobDescription__mediaTitleJa::before {
    width: 100%;
  }
}

.p-jobDescription__mediaText {
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 56.25rem) {
  .p-jobDescription__mediaText br {
    display: none;
  }
}

.p-jobDescription__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 43.64%;
          flex: 0 1 43.64%;
  position: relative;
  z-index: 1;
}
.p-jobDescription__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 40rem) {
  .p-jobDescription__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    aspect-ratio: 3/2;
  }
}

/*------------------------------------------------------------------------------
  p-benefits
------------------------------------------------------------------------------*/
.p-benefits {
  background-color: rgba(41, 127, 207, 0.8);
  padding: 9rem 0;
  overflow: hidden;
}
@media (max-width: 40rem) {
  .p-benefits {
    padding: 6rem 0;
  }
}

.p-benefits__lead {
  color: #fff;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 3.5rem 0 4.5rem;
}
@media (max-width: 56.25rem) {
  .p-benefits__lead {
    font-size: 1.25rem;
  }
}
@media (max-width: 40rem) {
  .p-benefits__lead {
    font-size: 1rem;
    margin: 3rem 0 2rem;
  }
}

.p-benefits__sliderWrap {
  width: 100%;
}

.p-benefits__sliderRow:not(:first-child) {
  margin-top: 1.5rem;
}
@media (max-width: 40rem) {
  .p-benefits__sliderRow:not(:first-child) {
    margin-top: 1rem;
  }
}

.p-benefits__sliderTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-benefits__sliderTrack--left {
  -webkit-animation: benefitsSlideLeft 50s linear infinite;
          animation: benefitsSlideLeft 50s linear infinite;
}

.p-benefits__sliderTrack--right {
  -webkit-animation: benefitsSlideRight 50s linear infinite;
          animation: benefitsSlideRight 50s linear infinite;
}

.p-benefits__card {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
  border: 1px dashed #095CA8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
  min-width: 21.5625rem;
  min-height: 9.375rem;
  padding: 1.875rem 1.25rem;
  margin-right: 1.25rem;
  position: relative;
}
@media (max-width: 40rem) {
  .p-benefits__card {
    padding: 1.5rem 1.25rem;
    min-width: 13.75rem;
    min-height: 6.875rem;
    margin-right: 1rem;
  }
}
.p-benefits__card::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-image: url(../img/recruit/quote-mark.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.25rem;
  height: 3.875rem;
  opacity: 0.6;
}
@media (max-width: 40rem) {
  .p-benefits__card::before {
    top: 0.9375rem;
    right: 0.9375rem;
    width: 3.125rem;
    height: 2.8125rem;
  }
}
.p-benefits__card p {
  color: #1D3D5F;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
@media (max-width: 40rem) {
  .p-benefits__card p {
    font-size: 0.875rem;
  }
}

@-webkit-keyframes benefitsSlideLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes benefitsSlideLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes benefitsSlideRight {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes benefitsSlideRight {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*------------------------------------------------------------------------------
  p-culture
------------------------------------------------------------------------------*/
.p-culture__cardWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem 0;
  margin-top: 4.5rem;
}
@media (max-width: 40rem) {
  .p-culture__cardWrap {
    margin-top: 2rem;
    gap: 2rem 0;
  }
}

.p-culture__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28.33%;
          flex: 0 1 28.33%;
}
@media (max-width: 40rem) {
  .p-culture__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 46%;
            flex: 0 1 46%;
  }
}
.p-culture__card:nth-child(even) {
  margin-top: 2rem;
}
@media (max-width: 40rem) {
  .p-culture__card:nth-child(even) {
    margin-top: 0.75rem;
  }
}
.p-culture__card .c-btn {
  margin-top: 1.5rem;
}
@media (max-width: 40rem) {
  .p-culture__card .c-btn {
    margin-top: 1.25rem;
  }
}

.p-culture__cardImg {
  margin-bottom: 1.25rem;
}
@media (max-width: 40rem) {
  .p-culture__cardImg {
    margin-bottom: 1rem;
  }
}
.p-culture__cardImg img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-culture__cardTitle {
  color: #1D3D5F;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 56.25rem) {
  .p-culture__cardTitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .p-culture__cardTitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.p-culture__cardText {
  font-weight: normal;
}

/*------------------------------------------------------------------------------
  p-interview
------------------------------------------------------------------------------*/
.p-interview__cardWrap {
  margin: 4rem 0 5rem;
}
@media (max-width: 40rem) {
  .p-interview__cardWrap {
    margin: 2.5rem 0 3rem;
  }
}
.p-interview__cardWrap .c-interviewCard:nth-child(3n+2) {
  margin-top: 2rem;
}
@media (max-width: 40rem) {
  .p-interview__cardWrap .c-interviewCard:nth-child(3n+2) {
    margin-top: 0;
  }
}

/*------------------------------------------------------------------------------
  p-gallery
------------------------------------------------------------------------------*/
.p-gallery__slider {
  margin-top: 4rem;
}
@media (max-width: 40rem) {
  .p-gallery__slider {
    margin-top: 2rem;
  }
}

/* メインスライダー */
.p-gallery__sliderMain {
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 1.25rem;
  /* ナビゲーションボタン */
}
@media (max-width: 40rem) {
  .p-gallery__sliderMain {
    margin-bottom: 0.5rem;
  }
}
.p-gallery__sliderMain .swiper-slide {
  width: 100%;
  height: 100%;
  max-height: 37.5rem;
  max-width: 48vw;
}
@media (max-width: 40rem) {
  .p-gallery__sliderMain .swiper-slide {
    max-width: 100%;
  }
}
.p-gallery__sliderMain .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 670/500;
  border-radius: 2px;
}
.p-gallery__sliderMain .swiper-button-next,
.p-gallery__sliderMain .swiper-button-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background-color: #095CA8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9;
}
@media (max-width: 56.25rem) {
  .p-gallery__sliderMain .swiper-button-next,
  .p-gallery__sliderMain .swiper-button-prev {
    top: 55%;
    width: 3.25rem;
    height: 3.25rem;
  }
}
@media (max-width: 40rem) {
  .p-gallery__sliderMain .swiper-button-next,
  .p-gallery__sliderMain .swiper-button-prev {
    top: 62%;
    width: 2.25rem;
    height: 2.25rem;
  }
}
.p-gallery__sliderMain .swiper-button-next img,
.p-gallery__sliderMain .swiper-button-prev img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-gallery__sliderMain .swiper-button-next::after,
.p-gallery__sliderMain .swiper-button-prev::after {
  display: none;
}
.p-gallery__sliderMain .swiper-button-next:focus,
.p-gallery__sliderMain .swiper-button-prev:focus {
  outline: 2px solid #FFEE00;
}
.p-gallery__sliderMain .swiper-button-prev {
  left: 0;
}
.p-gallery__sliderMain .swiper-button-prev .p-numbers__gallerySliderBtn {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-gallery__sliderMain .swiper-button-next {
  left: auto;
  right: 0;
}

/* サムネイルスライダー */
.p-gallery__sliderThumbs {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 1.25rem;
}
@media (max-width: 40rem) {
  .p-gallery__sliderThumbs {
    padding: 0 0.5rem;
  }
}
.p-gallery__sliderThumbs .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 75rem) {
  .p-gallery__sliderThumbs .swiper-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-gallery__sliderThumbs .swiper-slide {
  cursor: pointer;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  max-width: 6.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 40rem) {
  .p-gallery__sliderThumbs .swiper-slide {
    width: 4rem;
  }
}
.p-gallery__sliderThumbs .swiper-slide.is-active::before {
  background: none;
}
.p-gallery__sliderThumbs .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.p-gallery__sliderThumbs .swiper-slide:hover {
  opacity: 0.8;
}
.p-gallery__sliderThumbs .swiper-slide:focus {
  outline: 3px solid #005fcc;
  outline-offset: -3px;
}
.p-gallery__sliderThumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  aspect-ratio: 4/3;
}

/*------------------------------------------------------------------------------
  p-form
------------------------------------------------------------------------------*/
.p-form {
  max-width: 62.5rem;
  margin: 0 auto;
}

.p-form__text {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 47.9375rem) {
  .p-form__text {
    font-size: 0.9375rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 40rem) {
  .p-form__text {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 2.5rem;
  }
}

.p-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3rem;
}
@media (max-width: 40rem) {
  .p-form__field {
    display: block;
    margin-bottom: 2.25rem;
  }
}

.p-form__fieldHeading {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28%;
          flex: 0 1 28%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1.25rem;
  margin-top: 2.40625rem;
  cursor: pointer;
}
@media (max-width: 47.9375rem) {
  .p-form__fieldHeading {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
  }
}
@media (max-width: 40rem) {
  .p-form__fieldHeading {
    padding-right: 0;
    margin: 0 0 0.625rem;
  }
}

.p-form__fieldLabel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border-radius: 2px;
  text-align: center;
  background-color: #095CA8;
  display: inline-block;
  padding: 0.375rem 0.5rem;
  margin-right: 0.75rem;
}
@media (max-width: 47.9375rem) {
  .p-form__fieldLabel {
    font-size: 0.75rem;
    padding: 0.3125rem 0.5rem;
  }
}

.p-form__fieldLabel--any {
  background-color: #828282;
}

.p-form__fieldTitle {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 56.25rem) {
  .p-form__fieldTitle {
    font-size: 1rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-form__fieldTitle {
    font-size: 0.875rem;
  }
}
@media (max-width: 40rem) {
  .p-form__fieldTitle {
    font-size: 0.9375rem;
  }
}

.p-form__fieldInputWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-form__fieldInputWrap input[type=text],
.p-form__fieldInputWrap input[type=email],
.p-form__fieldInputWrap input[type=tel],
.p-form__fieldInputWrap input[type=url],
.p-form__fieldInputWrap select,
.p-form__fieldInputWrap textarea {
  color: #333;
  font-size: 16px !important;
  font-weight: 500;
  width: 100%;
  padding: 0.625rem 0.75rem;
  line-height: 1.5;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  border-radius: 1px;
  border: 1px solid #B7C7D7;
}
.p-form__fieldInputWrap input[type=text]::-webkit-input-placeholder, .p-form__fieldInputWrap input[type=email]::-webkit-input-placeholder, .p-form__fieldInputWrap input[type=tel]::-webkit-input-placeholder, .p-form__fieldInputWrap input[type=url]::-webkit-input-placeholder, .p-form__fieldInputWrap select::-webkit-input-placeholder, .p-form__fieldInputWrap textarea::-webkit-input-placeholder {
  color: #aaaaaa;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-form__fieldInputWrap input[type=text]::-moz-placeholder, .p-form__fieldInputWrap input[type=email]::-moz-placeholder, .p-form__fieldInputWrap input[type=tel]::-moz-placeholder, .p-form__fieldInputWrap input[type=url]::-moz-placeholder, .p-form__fieldInputWrap select::-moz-placeholder, .p-form__fieldInputWrap textarea::-moz-placeholder {
  color: #aaaaaa;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-form__fieldInputWrap input[type=text]:-ms-input-placeholder, .p-form__fieldInputWrap input[type=email]:-ms-input-placeholder, .p-form__fieldInputWrap input[type=tel]:-ms-input-placeholder, .p-form__fieldInputWrap input[type=url]:-ms-input-placeholder, .p-form__fieldInputWrap select:-ms-input-placeholder, .p-form__fieldInputWrap textarea:-ms-input-placeholder {
  color: #aaaaaa;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-form__fieldInputWrap input[type=text]::-ms-input-placeholder, .p-form__fieldInputWrap input[type=email]::-ms-input-placeholder, .p-form__fieldInputWrap input[type=tel]::-ms-input-placeholder, .p-form__fieldInputWrap input[type=url]::-ms-input-placeholder, .p-form__fieldInputWrap select::-ms-input-placeholder, .p-form__fieldInputWrap textarea::-ms-input-placeholder {
  color: #aaaaaa;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-form__fieldInputWrap input[type=text]::placeholder,
.p-form__fieldInputWrap input[type=email]::placeholder,
.p-form__fieldInputWrap input[type=tel]::placeholder,
.p-form__fieldInputWrap input[type=url]::placeholder,
.p-form__fieldInputWrap select::placeholder,
.p-form__fieldInputWrap textarea::placeholder {
  color: #aaaaaa;
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-form__fieldInputWrap textarea {
  resize: none;
  min-height: 15.625rem;
}
@media (max-width: 40rem) {
  .p-form__fieldInputWrap textarea {
    min-height: 12.5rem;
  }
}
.p-form__fieldInputWrap input[type=radio],
.p-form__fieldInputWrap input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  border: 1.5px solid #B7C7D7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 -2px #fff;
          box-shadow: 0 0 0 -2px #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  vertical-align: -4px;
  margin-right: 0.5rem;
}
@media (max-width: 40rem) {
  .p-form__fieldInputWrap input[type=radio],
  .p-form__fieldInputWrap input[type=checkbox] {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}
.p-form__fieldInputWrap input[type=radio]:checked,
.p-form__fieldInputWrap input[type=checkbox]:checked {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  outline: none !important;
  outline-offset: none;
  border-radius: 50%;
}

.p-form__fieldNote {
  font-size: 0.875rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.25rem;
}
@media (max-width: 56.25rem) {
  .p-form__fieldNote {
    font-size: 0.8125rem;
  }
}
@media (max-width: 40rem) {
  .p-form__fieldNote {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

.p-form__agree {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 40rem) {
  .p-form__agree {
    margin-bottom: 2rem;
  }
}

.p-form__agreeText {
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.p-form__agreeText a {
  color: #333;
  text-decoration: underline;
}

.p-form__agreeCheck label {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 0.625rem;
}
.p-form__agreeCheck label input[type=checkbox] {
  margin-top: 0.28125rem;
}
@media (max-width: 40rem) {
  .p-form__agreeCheck label input[type=checkbox] {
    margin-top: 0.1875rem;
  }
}
.p-form__agreeCheck label span {
  cursor: pointer;
}
.p-form__agreeCheck label:has(input[type=checkbox]:focus-visible) {
  outline: 2px solid #007bff;
  outline-offset: 2px;
  border-radius: 34px;
}

.p-form__btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  max-width: 22.5rem;
  height: 4rem;
  cursor: pointer;
  margin: 0 auto;
  overflow: visible;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.p-form__btn::before {
  content: none;
}
@media (max-width: 56.25rem) {
  .p-form__btn {
    max-width: 18.75rem;
    height: 3.625rem;
  }
}
@media (max-width: 40rem) {
  .p-form__btn {
    height: 3.375rem;
  }
}
.p-form__btn:has(:disabled) {
  opacity: 0.4;
  background: #999;
}
.p-form__btn:has(:disabled):hover {
  opacity: 0.4;
}
.p-form__btn:hover {
  opacity: 0.85;
}
.p-form__btn:hover::before {
  -webkit-animation: none;
          animation: none;
}
.p-form__btn input[type=submit] {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}
@media (max-width: 56.25rem) {
  .p-form__btn input[type=submit] {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .p-form__btn input[type=submit] {
    font-size: 1rem;
  }
}
.p-form__btn:focus, .p-form__btn:focus-visible {
  outline: 2px solid #007bff !important;
  outline-offset: 2px;
  border-radius: 40px;
}

.p-form__btn .wpcf7-submit:focus, .p-form__btn .wpcf7-submit:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
  border-radius: 40px;
}
.p-form__btn .wpcf7-spinner {
  position: absolute;
}

body.contact .wpcf7-response-output,
body.contact-partner .wpcf7-response-output {
  max-width: 68.75rem;
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------------------------------------------------------
  p-serviceIntro
------------------------------------------------------------------------------*/
.p-serviceIntro {
  padding-top: 2rem;
  margin-bottom: 9.5rem;
}
@media (max-width: 56.25rem) {
  .p-serviceIntro {
    margin-bottom: 7rem;
  }
}
@media (max-width: 40rem) {
  .p-serviceIntro {
    padding-top: 0;
    margin-bottom: 6rem;
  }
}

.p-serviceIntro__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .p-serviceIntro__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-serviceIntro__textwrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 44.2%;
          flex: 0 1 44.2%;
  margin-top: 3rem;
}
@media (max-width: 56.25rem) {
  .p-serviceIntro__textwrap {
    margin-top: 1rem;
  }
}

.p-serviceIntro__mediaTexts {
  font-size: 1.0625rem;
  line-height: 2.2;
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 4.5rem;
}
@media (max-width: 56.25rem) {
  .p-serviceIntro__mediaTexts {
    font-size: 0.9375rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 40rem) {
  .p-serviceIntro__mediaTexts {
    font-size: 0.8125rem;
    line-height: 2;
    margin: 1.5rem 0 3rem;
  }
}
.p-serviceIntro__mediaTexts p:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 40rem) {
  .p-serviceIntro__mediaTexts p:not(:last-child) {
    margin-bottom: 1rem;
  }
}

.p-serviceIntro__mediaImg {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 43.4%;
          flex: 0 1 43.4%;
}
@media (max-width: 80rem) {
  .p-serviceIntro__mediaImg {
    padding-right: 2rem;
  }
}
@media (max-width: 40rem) {
  .p-serviceIntro__mediaImg {
    max-width: 25rem;
    padding: 0 1rem;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------------------------
  p-service
------------------------------------------------------------------------------*/
.p-service {
  margin-bottom: 8rem;
}
@media (max-width: 40rem) {
  .p-service {
    margin-bottom: 6rem;
  }
}
.p-service:last-of-type {
  margin-bottom: 4rem;
}
@media (max-width: 40rem) {
  .p-service:last-of-type {
    margin-bottom: 3rem;
  }
}
.p-service:nth-child(odd) .p-service__mediaTitle::before {
  left: 0;
}
.p-service:nth-child(even) .p-service__mediaTitle::before {
  right: 0;
}

.p-service__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .p-service__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-service__textWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.33%;
          flex: 0 1 48.33%;
}

.p-service__mediaLabel {
  color: #095CA8;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
@media (max-width: 56.25rem) {
  .p-service__mediaLabel {
    font-size: 0.875rem;
  }
}
@media (max-width: 40rem) {
  .p-service__mediaLabel {
    font-size: 0.75rem;
  }
}

.p-service__mediaTitle {
  font-size: 2.125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 56.25rem) {
  .p-service__mediaTitle {
    font-size: 1.875rem;
  }
}
@media (max-width: 40rem) {
  .p-service__mediaTitle {
    font-size: 1.625rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-service__mediaTitle::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% + 5rem);
  height: 1px;
  background-color: #095CA8;
}
@media (max-width: 40rem) {
  .p-service__mediaTitle::before {
    width: 100%;
  }
}

.p-service__mediaText {
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 2rem;
}
@media (max-width: 40rem) {
  .p-service__mediaText {
    margin-bottom: 1.5rem;
  }
}

.p-service__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45.5%;
          flex: 0 1 45.5%;
  position: relative;
  z-index: 1;
}
@media (max-width: 40rem) {
  .p-service__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 1.25rem;
  }
}
.p-service__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 40rem) {
  .p-service__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    aspect-ratio: 3/2;
  }
}

.p-service__child {
  margin-top: 4rem;
}
@media (max-width: 40rem) {
  .p-service__child {
    margin-top: 2.5rem;
  }
}

.p-service__itemList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.5rem 0;
}
@media (max-width: 40rem) {
  .p-service__itemList {
    display: block;
  }
}

.p-service__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.333%;
          flex: 0 1 46.333%;
}
@media (max-width: 40rem) {
  .p-service__item:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.p-service__itemImg {
  width: 100%;
  margin-bottom: 1.25rem;
}
@media (max-width: 40rem) {
  .p-service__itemImg {
    margin-bottom: 1rem;
  }
}
.p-service__itemImg img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-service__itemTitleEn {
  color: #095CA8;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.12em;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
@media (max-width: 56.25rem) {
  .p-service__itemTitleEn {
    font-size: 0.75rem;
  }
}

.p-service__itemTitleJa {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media (max-width: 56.25rem) {
  .p-service__itemTitleJa {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .p-service__itemTitleJa {
    font-size: 1.25rem;
  }
}

.p-service__itemText {
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
}

.p-serviceLead {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.13em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media (max-width: 56.25rem) {
  .p-serviceLead {
    font-size: 1.0625rem;
    letter-spacing: 0.07em;
  }
}
@media (max-width: 40rem) {
  .p-serviceLead {
    font-size: 0.875rem;
  }
}
.p-serviceLead > span {
  background-color: #1D3D5F;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 2px;
  padding: 0.5rem 1.125rem;
  line-height: 2.6;
}
@media (max-width: 40rem) {
  .p-serviceLead > span {
    padding: 0.5rem 0.75rem;
    line-height: 2.75;
  }
}
.p-serviceLead .u-yellowColor {
  font-size: 1.375rem;
  line-height: 2.2;
}
@media (max-width: 56.25rem) {
  .p-serviceLead .u-yellowColor {
    font-size: 1.275rem;
    line-height: 2;
  }
}
@media (max-width: 40rem) {
  .p-serviceLead .u-yellowColor {
    font-size: 1rem;
    font-size: 0.9375rem;
    line-height: 2.55;
  }
}

/*------------------------------------------------------------------------------
  p-flow
------------------------------------------------------------------------------*/
.p-flow__box {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 9rem 1rem;
}
@media (max-width: 40rem) {
  .p-flow__box {
    padding: 5rem 1rem;
  }
}

.p-flow__list {
  max-width: 64.375rem;
  margin: 4.5rem auto;
}
@media (max-width: 40rem) {
  .p-flow__list {
    margin: 2rem auto 2.25rem;
  }
}

.p-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 40rem) {
  .p-flow__item {
    display: block;
    padding-left: 4.5rem;
  }
}
.p-flow__item:not(:last-child) {
  padding-bottom: 4rem;
}
@media (max-width: 40rem) {
  .p-flow__item:not(:last-child) {
    padding-bottom: 2.25rem;
  }
}
.p-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 4.375rem;
  left: 17.25rem;
  width: 2px;
  height: calc(100% - 60px);
  background-color: #095CA8;
}
@media (max-width: 56.25rem) {
  .p-flow__item:not(:last-child)::before {
    top: 3.75rem;
    left: 14.5rem;
  }
}
@media (max-width: 40rem) {
  .p-flow__item:not(:last-child)::before {
    left: 1.625rem;
    width: 1px;
    top: 1.875rem;
    height: calc(100% - 30px);
  }
}

.p-flow__itemTitle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.5rem;
          flex: 0 0 12.5rem;
  color: #095CA8;
  font-size: 1.625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: right;
  padding-top: 1rem;
  margin-right: 2.5rem;
}
@media (max-width: 56.25rem) {
  .p-flow__itemTitle {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10.5rem;
            flex: 0 0 10.5rem;
    font-size: 1.25rem;
    margin-right: 2rem;
  }
}
@media (max-width: 40rem) {
  .p-flow__itemTitle {
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.6;
    padding-top: 0.75rem;
    margin-right: 0;
  }
}
.p-flow__itemTitle span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: block;
}
@media (max-width: 56.25rem) {
  .p-flow__itemTitle span {
    font-size: 0.875rem;
  }
}
@media (max-width: 40rem) {
  .p-flow__itemTitle span {
    font-size: 0.75rem;
    font-weight: 500;
  }
}

.p-flow__itemNumber {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4.5rem;
          flex: 0 0 4.5rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: #095CA8;
  z-index: 1;
  position: relative;
}
@media (max-width: 56.25rem) {
  .p-flow__itemNumber {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4rem;
            flex: 0 0 4rem;
    font-size: 1.1875rem;
    width: 4rem;
    height: 4rem;
  }
}
@media (max-width: 40rem) {
  .p-flow__itemNumber {
    position: absolute;
    top: 0;
    left: 0;
    letter-spacing: 0.05em;
    width: 3.25rem;
    height: 3.25rem;
  }
}

.p-flow__itemText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.125rem;
  padding-top: 1.25rem;
  margin-left: 2.5rem;
}
@media (max-width: 56.25rem) {
  .p-flow__itemText {
    font-size: 0.9375rem;
    padding-top: 1.125rem;
    margin-left: 2rem;
  }
  .p-flow__itemText br {
    display: none;
  }
}
@media (max-width: 40rem) {
  .p-flow__itemText {
    font-size: 0.8125rem;
    padding-top: 0.5rem;
    margin-left: 0;
  }
}

.p-flow__lead {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 56.25rem) {
  .p-flow__lead {
    font-size: 1.125rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-flow__lead {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}
.p-flow__lead .u-primaryColor {
  font-size: 1.5rem;
}
@media (max-width: 56.25rem) {
  .p-flow__lead .u-primaryColor {
    font-size: 1.25rem;
  }
}
@media (max-width: 47.9375rem) {
  .p-flow__lead .u-primaryColor {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------------------------
  p-single
------------------------------------------------------------------------------*/
.p-single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 56.25rem) {
  .p-single__head {
    gap: 1.25rem 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-single__head {
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.p-single__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #095CA8;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  display: block;
  margin-top: 0.625rem;
}
@media (max-width: 47.9375rem) {
  .p-single__date {
    font-size: 0.875rem;
    margin-top: 0.1875rem;
    margin-right: 0;
  }
}

.p-single__labelWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}

.p-single__label {
  font-size: 1.0625rem;
  margin-top: 0.25rem;
}
@media (max-width: 56.25rem) {
  .p-single__label {
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .p-single__label {
    font-size: 0.875rem;
    margin-top: 0.1875rem;
  }
}

.p-single__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 56.25rem) {
  .p-single__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 40rem) {
  .p-single__title {
    font-size: 1.5rem;
  }
}

.p-single__title--news {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.p-single__eyecatch {
  width: 100%;
  margin-bottom: 2.5rem;
}
.p-single__eyecatch img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-single__lead {
  color: #1D3D5F;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
@media (max-width: 56.25rem) {
  .p-single__lead {
    font-size: 1rem;
  }
}

.p-single__contents {
  margin-bottom: 4.5rem;
}
@media (max-width: 40rem) {
  .p-single__contents {
    margin-bottom: 2.5rem;
  }
}

/*------------------------------------------------------------------------------
  p-interviewSingle
------------------------------------------------------------------------------*/
.l-main__commonContainer:has(.p-interviewSingle) {
  padding-bottom: 0;
}

.p-interviewSingle__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8rem;
}
@media (max-width: 40rem) {
  .p-interviewSingle__heading {
    display: block;
    margin-bottom: 5rem;
  }
}

.p-interviewSingle__headingMain {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 52%;
          flex: 0 1 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 56.25rem) {
  .p-interviewSingle__headingMain {
    gap: 1.25rem 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-interviewSingle__headingMain {
    gap: 0.5rem 1rem;
    padding-right: 0;
    margin-bottom: 1.75rem;
  }
}

.p-interviewSingle__jobLabelWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}

.p-interviewSingle__jobLabel {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background-color: #1D3D5F;
  border-radius: 1px;
  display: inline-block;
  padding: 0.5625rem 1rem;
}
@media (max-width: 47.9375rem) {
  .p-interviewSingle__jobLabel {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.75rem;
  }
}

.p-interviewSingle__year {
  color: #1D3D5F;
  font-size: 1.125rem;
  letter-spacing: 0.07em;
  display: block;
  margin-top: 0.1875rem;
}
@media (max-width: 56.25rem) {
  .p-interviewSingle__year {
    font-size: 0.875rem;
    margin-top: 0.125rem;
  }
}

.p-interviewSingle__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  color: #1D3D5F;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 56.25rem) {
  .p-interviewSingle__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 56.25rem) {
  .p-interviewSingle__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-interviewSingle__title {
    font-size: 1.125rem;
  }
}

.p-interviewSingle__lead {
  color: #1D3D5F;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
@media (max-width: 56.25rem) {
  .p-interviewSingle__lead {
    font-size: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-interviewSingle__lead {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
}

.p-interviewSingle__eyecatch {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 42%;
          flex: 0 1 42%;
}
.p-interviewSingle__eyecatch img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 1px;
}

.p-interviewSingle__contents {
  padding: 4rem 0 12.5rem;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 40rem) {
  .p-interviewSingle__contents {
    padding: 2rem 0 6rem;
  }
}

.p-interviewSingle__messageBox {
  background-color: #fff;
  border: 2.5px dotted rgba(41, 127, 207, 0.7);
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  padding: 5.5rem 1.6rem;
  margin: 3rem 0 4rem;
}
@media (max-width: 40rem) {
  .p-interviewSingle__messageBox {
    padding: 3.5rem 1rem;
    margin: 0.5rem 0 3rem;
  }
}

.p-interviewSingle__messageTitle {
  display: inline-block;
  color: #1D3D5F;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-bottom: 1.5rem;
  margin-bottom: 2.75rem;
  position: relative;
}
@media (max-width: 56.25rem) {
  .p-interviewSingle__messageTitle {
    font-size: 1.375rem;
    padding-bottom: 1.25rem;
    margin-bottom: 2rem;
  }
}
.p-interviewSingle__messageTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.5rem;
  height: 1px;
  background-color: #095CA8;
}
@media (max-width: 40rem) {
  .p-interviewSingle__messageTitle::after {
    width: 2rem;
  }
}

.p-interviewSingle__messageText {
  font-size: 1.0625rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 56.25rem) {
  .p-interviewSingle__messageText {
    font-size: 0.875rem;
    text-align: left;
  }
}
@media (max-width: 40rem) {
  .p-interviewSingle__messageText {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
}

/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-whiteColor {
  color: #fff;
}

.u-textColor {
  color: #333;
}

.u-primaryColor {
  color: #095CA8;
}

.u-primaryDarkColor {
  color: #1D3D5F;
}

.u-accentColor {
  color: #FFEE00;
}

.u-yellowColor {
  color: #FFF900;
}

/*------------------------------------------------------------------------------
  u-bgc
------------------------------------------------------------------------------*/
.u-bgcPrimary {
  background-color: #095CA8;
}

.u-bgcWhite {
  background-color: #fff;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz22 {
  font-size: 1.375rem;
}

.u-fz20 {
  font-size: 1.25rem;
}

.u-fz19 {
  font-size: 1.1875rem;
}

.u-fz18 {
  font-size: 1.125rem;
}

.u-fz17 {
  font-size: 1.0625rem;
}

.u-fz16 {
  font-size: 1rem;
}

.u-fz15 {
  font-size: 0.9375rem;
}

.u-fz14 {
  font-size: 0.875rem;
}

.u-fz13 {
  font-size: 0.8125rem;
}

.u-fz12 {
  font-size: 0.75rem;
}

@media (max-width: 40rem) {
  .u-fz16--sp {
    font-size: 1rem;
  }
}

@media (max-width: 40rem) {
  .u-fz14--sp {
    font-size: 0.875rem;
  }
}

@media (max-width: 40rem) {
  .u-fz13--sp {
    font-size: 0.8125rem;
  }
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fwBold {
  font-weight: bold;
}

.u-fwMedium {
  font-weight: 500;
}

.u-fwNormal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-textAlignLeft {
  text-align: left !important;
}

.u-textAlignCenter {
  text-align: center !important;
}

.u-textAlignRight {
  text-align: right !important;
}

/*------------------------------------------------------------------------------
  text-decoration
------------------------------------------------------------------------------*/
.u-tdUnderline {
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-1 {
  margin-top: 0.5rem !important;
}

.u-mt-2 {
  margin-top: 1rem !important;
}

.u-mt-3 {
  margin-top: 1.5rem !important;
}

.u-mt-4 {
  margin-top: 2rem !important;
}

.u-mt-5 {
  margin-top: 2.5rem !important;
}

.u-mt-6 {
  margin-top: 3rem !important;
}

.u-mt-7 {
  margin-top: 3.5rem !important;
}

.u-mt-8 {
  margin-top: 4rem !important;
}

.u-mt-9 {
  margin-top: 4.5rem !important;
}

.u-mt-10 {
  margin-top: 5rem !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-1 {
  margin-bottom: 0.5rem !important;
}

.u-mb-2 {
  margin-bottom: 1rem !important;
}

.u-mb-3 {
  margin-bottom: 1.5rem !important;
}

.u-mb-4 {
  margin-bottom: 2rem !important;
}

.u-mb-5 {
  margin-bottom: 2.5rem !important;
}

.u-mb-6 {
  margin-bottom: 3rem !important;
}

.u-mb-7 {
  margin-bottom: 3.5rem !important;
}

.u-mb-8 {
  margin-bottom: 4rem !important;
}

.u-mb-9 {
  margin-bottom: 4.5rem !important;
}

.u-mb-10 {
  margin-bottom: 5rem !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.u-my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.u-my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.u-my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.u-my-5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.u-my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.u-my-7 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-ml-1 {
  margin-left: 0.5rem !important;
}

.u-ml-2 {
  margin-left: 1rem !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mr-1 {
  margin-right: 0.5rem !important;
}

.u-mr-2 {
  margin-right: 1rem !important;
}

.u-mr-3 {
  margin-right: 1.5rem !important;
}

.u-mr-4 {
  margin-right: 2rem !important;
}

.u-mr-5 {
  margin-right: 2.5rem !important;
}

.u-mr-6 {
  margin-right: 3rem !important;
}

.u-mr-7 {
  margin-right: 3.5rem !important;
}

.u-m-1 {
  margin: 0.5rem !important;
}

.u-m-2 {
  margin: 1rem !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-direction-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*------------------------------------------------------------------------------
  u-display
------------------------------------------------------------------------------*/
.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-inlineBlock {
  display: inline-block !important;
}

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