@charset "UTF-8";
.p-pagetitle {
  position: relative;
  width: min(90%, 77.5rem);
  padding-top: clamp(4.375rem, 66.4788732394px + 0.9389671362vw, 5rem);
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  text-align: left;
}
.p-pagetitle__text {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(2.8125rem, 39.7183098592px + 1.4084507042vw, 3.75rem);
  line-height: 1.1;
  text-align: left;
  -webkit-animation: pagetitle-text 1s ease-in-out 0.2s both;
          animation: pagetitle-text 1s ease-in-out 0.2s both;
}
.p-pagetitle__text-l {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(2.375rem, 32.3661971831px + 1.5023474178vw, 3.375rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, right top, left top, from(#2f4087), color-stop(33.75%, #303b5e), color-stop(64.43%, #223055), to(#070a11));
  background: linear-gradient(-90deg, #2f4087 0%, #303b5e 33.75%, #223055 64.43%, #070a11 100%); /* テキスト部分に背景をクリップ */
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent; /* テキストの塗りつぶしを透明に */
}
.p-pagetitle__text-l:lang(en) {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  font-family: poppins, sans-serif;
  font-size: clamp(3.4375rem, 47.9577464789px + 1.8779342723vw, 4.6875rem);
  font-weight: 400;
  line-height: 1.1;
}
.p-pagetitle__text-l--long {
  font-size: clamp(2rem, 25.661971831px + 1.6901408451vw, 3.125rem);
  letter-spacing: 0;
}
.p-pagetitle__text-l--long:lang(en) {
  font-size: clamp(2.6875rem, 31.7323943662px + 3.0046948357vw, 4.6875rem);
}
.p-pagetitle__text-s {
  position: relative;
  display: block;
  padding-left: 1.8em;
  margin-top: 0.5em;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.p-pagetitle__text-s:lang(en) {
  margin-top: 1em;
  font-family: poppins, sans-serif;
  font-size: clamp(0.9375rem, 13.2394366197px + 0.4694835681vw, 1.25rem);
}
.p-pagetitle__text-s i {
  position: absolute;
  top: 0.05em;
  left: 0.3em;
  width: 1em;
  height: 1em;
}
.p-pagetitle__logo {
  position: absolute;
  top: 2.5rem;
  right: 0;
  z-index: 1;
  width: min(48%, 12.5rem);
  height: auto;
  stroke-dasharray: 4750; /* 線の全長（仮の値） */
  stroke-dashoffset: 4750; /* 最初は全オフセットで非表示 */
  -webkit-animation: drawline 1s ease 0s forwards;
          animation: drawline 1s ease 0s forwards;
}
@-webkit-keyframes drawline {
  to {
    stroke-dashoffset: 0; /* 0になる＝線が全て描かれる */
  }
}
@keyframes drawline {
  to {
    stroke-dashoffset: 0; /* 0になる＝線が全て描かれる */
  }
}

.p-pagetitle:not(:has(.p-breadcrumbs)) {
  padding-bottom: clamp(1.875rem, 24.014084507px + 1.5962441315vw, 2.9375rem); /* 任意の値 */
}

@-webkit-keyframes pagetitle-text {
  0% {
    clip-path: inset(0 100% 0 0);
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes pagetitle-text {
  0% {
    clip-path: inset(0 100% 0 0);
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
:where(.p-breadcrumbs) {
  margin-bottom: clamp(0.625rem, 8.2394366197px + 0.4694835681vw, 0.9375rem);
}

.p-breadcrumbs {
  position: relative;
  z-index: 5;
  display: block;
  color: #000;
  text-align: left;
}
.p-breadcrumbs__inner {
  padding-left: 0.2em;
  line-height: 1.5;
}
.p-breadcrumbs li {
  position: relative;
  display: inline;
  font-size: clamp(0.6875rem, 9.9436619718px + 0.2816901408vw, 0.875rem);
}
.p-breadcrumbs li:not(:last-child)::after {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 2px;
  margin-right: 0.75em;
  margin-left: 0.75em;
  vertical-align: 0.25em;
  content: "";
  background-color: #B0B7C0;
}
.p-breadcrumbs a,
.p-breadcrumbs span {
  position: relative;
  display: inline;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  word-break: break-all; /* 単語途中でも改行を許可（英語対応） */
  overflow-wrap: break-word; /* 溢れた単語も折り返す */
  white-space: normal;
}
.p-breadcrumbs a {
  color: #38508E;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  -webkit-transition: color ease 0.2s;
  transition: color ease 0.2s;
}

.l-main--in {
  padding-top: 4.375rem;
  background-color: #FFEAEA;
}

@media (hover: hover) and (pointer: fine){
  .p-breadcrumbs a:hover {
    color: #000 !important;
    text-decoration: none;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none){
  .p-breadcrumbs a:hover {
    color: #000 !important;
    text-decoration: none;
  }
}

@media print, screen and (min-width: 992px){
  .p-pagetitle__logo {
    top: 50%;
    width: min(30%, 23.5rem);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-main--in {
    padding-top: 7.5rem;
  }
}