@charset "UTF-8";
:where(*, *::before, *::after) {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 直感的なbox-sizingに設定 */
  padding: 0; /* すべての要素のデフォルトパディングをリセット */
  margin: 0; /* すべての要素のデフォルトマージンをリセット */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
  margin: 0; /* すべての要素のデフォルトマージンをリセット */
}

:where(html) {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) { /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) { /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2em; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  font-size: 1em;
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid #005fcc;
  outline-offset: 0;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes up-motion {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes up-motion {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes image {
  0% {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes image {
  0% {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
* {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased; /* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale; /* animation時の文字にじみ防止 */
}

:root {
  --fz-base: clamp(0.78125rem, 11.2676056338px + 0.3286384977vw, 1rem);
  --color-base-bg: #fff;
  --color-base-text: #231815;
  --color-primary: #003c67;
  --color-secondary: #023d88;
  --color-tertiary: #645c36;
  --color-red: #BF4747;
  --color-link: #023d88;
  --color-link-hover: #38508E;
  --color-bg01: #023d88;
  --color-bg02: #ededec;
  --color-bg03: #abaaaa;
  --font-jp:A+EqpB-游ゴシック体 Pr6N D, NoChattering, 游ゴシック体, yugothic, 游ゴシック, Yu Gothic, sans-serif;
  --font-en:Helvetica Neue, Arial, sans-serif;
  --line-margin:global.$line-margin;
  --line-margin-s:global.$line-margin-s;
  --line-margin-l:global.$line-margin-l;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none; /* CJK言語（中国語、日本語、韓国語）での句読点の間隔を変更。 */
}

html {
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
  font-size: 100%;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  scroll-padding-top: 55px;
  background: #fff;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(12, 106, 238, 0.2);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media (width <= 360px) {
  html {
    font-size: 93.75%; /* = 15px */
  }
}
@media print, screen and (min-width: 768px) {
  html {
    scroll-padding-top: 95px;
  }
}

html,
body {
  width: 100%;
  min-height: -webkit-fill-available;
  min-height: -moz-available;
  min-height: fill-available;
  padding: 0;
  margin: 0;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
}
@media print, screen and (min-width: 768px) {
  html,
  body {
    min-width: 768px;
  }
}

body {
  position: relative;
  height: 100%;
  font-family: "A+EqpB-游ゴシック体 Pr6N D", "NoChattering", "游ゴシック体", yugothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: var(--fz-base);
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-optical-sizing: auto;
  line-height: 1;
  color: var(--color-base-text);
  overflow-wrap: anywhere;
  background: #fff;
  -webkit-animation: fadein ease-out 0.3s both 0.1s;
          animation: fadein ease-out 0.3s both 0.1s;
}
body.is-gnav-open {
  height: 100%;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  body.is-gnav-open {
    height: auto;
    overflow: visible;
  }
}

body[lang=en] * {
  font-family: "Helvetica Neue", "Arial", sans-serif;
}

body:has(#js-globalnav.is-open) .l-container {
  overflow: auto;
  scrollbar-gutter: stable;
}

:where(section),
:where(article) {
  position: relative;
  text-align: left;
  letter-spacing: 0.08em;
}

:where(p, dl, dt, dd, ol, ul, li) {
  padding: 0;
  margin: 0;
}

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

:where(strong) {
  font-weight: 700;
}

:where(sup) {
  font-size: 55%;
  vertical-align: super;
}

:where(sub) {
  font-size: 55%;
  vertical-align: sub;
}

.l-main a[href^="tel:"] {
  font-weight: 700;
}

@media (pointer: fine), (hover: hover) {
  .l-main a[href^="tel:"] {
    color: #231815;
    text-decoration: none;
    pointer-events: none;
  }
}
:where(.l-main a:not([class])) {
  color: #38508E;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
@media (hover: hover) and (pointer: fine) {
  :where(.l-main a:not([class])) {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  :where(.l-main a:not([class])):hover {
    color: #000;
    text-decoration: none !important;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  :where(.l-main a:not([class])) {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  :where(.l-main a:not([class])):hover {
    color: #000;
    text-decoration: none !important;
  }
}

picture:has([loading=lazy]) {
  overflow: hidden;
}

img[loading=lazy].is-loaded {
  -webkit-animation: fadein ease-out 0.6s both 0.1s;
          animation: fadein ease-out 0.6s both 0.1s;
}

.sr-only {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (hover: hover) and (pointer: fine) {
  .js-clickable-block {
    cursor: pointer;
  }
  .js-clickable-block:hover {
    opacity: 0.85;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .js-clickable-block {
    cursor: pointer;
  }
  .js-clickable-block:hover {
    opacity: 0.85;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
}

.l-container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100dvh;
  padding: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

:where(.l-main) {
  line-height: 1.857;
}
@media print, screen and (min-width: 992px) {
  :where(.l-main) {
    line-height: 2;
  }
}

.l-main {
  z-index: 3;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  text-align: center;
  letter-spacing: clamp(0.02em, 0.1vw, 0.04em);
}
@media print, screen and (min-width: 992px) {
  .l-main {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 888888;
  width: 100%;
  height: 3.125rem;
  background-color: #fff;
  -webkit-transition: background-color 0.2s ease, height 0.25s ease 0.05s;
  transition: background-color 0.2s ease, height 0.25s ease 0.05s;
}
@media print, screen and (min-width: 768px) {
  .l-header {
    height: 5.625rem;
  }
}
.l-header__logo {
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  height: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70%;
  max-width: 15rem;
}
@media print, screen and (min-width: 768px) {
  .l-header__logo {
    left: 1.25rem;
    width: 35vw;
    max-width: 24.75rem;
  }
}
.l-header__logo img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media print, screen and (min-width: 768px) {
  .l-header__logo img {
    height: 44px;
  }
}
.l-header__logo-fill {
  fill: #000;
}

.l-header__item-contact {
  position: absolute;
  right: 60px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media print, screen and (min-width: 768px) {
  .l-header__item-contact {
    display: none;
  }
}
.l-header__item-contact img {
  width: 25px;
  height: 25px;
}

.l-footer {
  position: relative;
  z-index: 9999;
  width: 100%;
  padding: 5.625rem 0 3.125rem;
  background: #f0f0f0 url("/management/assets/img/common/footer_bg.svg") no-repeat center top/contain;
}
@media print, screen and (min-width: 768px) {
  .l-footer {
    padding: 15vw 0 2.5rem;
  }
}
.l-footer::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 0.25rem;
  content: "";
  background: #fff;
}
.l-footer__inner {
  width: 100%;
  max-width: 76.25rem;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .l-footer__inner {
    padding: 0 0.625rem;
  }
}
@media print, screen and (min-width: 768px) {
  .l-footer__block-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    place-content: stretch space-between;
  }
}
@media print, screen and (min-width: 768px) {
  .l-footer-block01 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 64%;
  }
}
@media print, screen and (min-width: 768px) {
  .l-footer-block01__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: min(1em, 6vw) 2%;
    place-content: stretch start;
  }
}
.l-footer-block02 {
  padding-top: 1em;
  border-top: #dcdcdc solid 1px;
}
@media print, screen and (min-width: 768px) {
  .l-footer-block02 {
    width: 24%;
    border-top: none;
  }
}
.l-footer-block01__nav {
  width: 22%;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .l-footer-block01__nav > li > a {
    width: 100%;
    border-bottom: #000 solid 2px;
  }
}
.l-footer-block01__nav > li > a:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media print and (hover: hover) and (pointer: fine), screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .l-footer-block01__nav > li > a:hover {
    color: #0054a3;
    border-bottom: #999 solid 2px;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .l-footer-block01__nav > li > a:hover {
    color: #0054a3;
    border-bottom: #999 solid 2px;
  }
}
.l-footer-block01__nav--wide {
  width: 46%;
}
.l-footer-block01__nav li, .l-footer-block02__nav li {
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  text-align: left;
  letter-spacing: 0;
}
@media print, screen and (min-width: 768px) {
  .l-footer-block01__nav li, .l-footer-block02__nav li {
    font-size: 0.875rem;
    border-top: none;
  }
}
.l-footer-block01 .l-footer-block01__nav li, .l-footer-block01 .l-footer-block02__nav li {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .l-footer-block01 .l-footer-block01__nav li, .l-footer-block01 .l-footer-block02__nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
  }
}
.l-footer-block02 .l-footer-block01__nav li, .l-footer-block02 .l-footer-block02__nav li {
  font-size: 0.875rem;
  border: none;
}
.l-footer-block01__nav-sp, .l-footer-block02__nav-sp {
  display: block !important;
}
.l-footer-block01__nav-sp-only, .l-footer-block02__nav-sp-only {
  display: block !important;
}
@media print, screen and (min-width: 768px) {
  .l-footer-block01__nav-sp-only, .l-footer-block02__nav-sp-only {
    display: none !important;
  }
}
.l-footer-block01__nav a, .l-footer-block02__nav a {
  position: relative;
  display: block;
  padding: 0.6em 20px;
  color: #000;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  .l-footer-block01__nav a, .l-footer-block02__nav a {
    padding: 0.6em 0.25em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-block01__nav a, .l-footer-block02__nav a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .l-footer-block01__nav a:hover, .l-footer-block02__nav a:hover {
    color: #0054a3;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .l-footer-block01__nav a, .l-footer-block02__nav a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .l-footer-block01__nav a:hover, .l-footer-block02__nav a:hover {
    color: #0054a3;
  }
}
.l-footer__copyright {
  display: block;
  margin-top: 1.875rem;
  font-size: 0.625rem;
  line-height: 1;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .l-footer__copyright {
    margin-top: 20px;
    font-size: 0.875rem;
  }
}

.p-globalnav-trigger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 888889;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav-trigger {
    display: none;
  }
}
.p-globalnav-trigger:focus-visible {
  outline: 2px solid #023d88;
  outline-offset: -2px;
}
.p-globalnav-trigger__ic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-globalnav-trigger__ic i {
  position: absolute;
  top: 24px;
  left: 45%;
  width: 1.5rem;
  height: 2px;
  background: #231815;
  -webkit-transition: ease-out 0.1s;
  transition: ease-out 0.1s;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.p-globalnav-trigger__ic i::before, .p-globalnav-trigger__ic i::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.5rem;
  height: 2px;
  content: "";
  background: #231815;
  border-radius: 0.15rem;
}
.p-globalnav-trigger__ic i::before {
  margin-top: -8px;
  -webkit-transition: ease-out 0.3s 0.1s;
  transition: ease-out 0.3s 0.1s;
}
.p-globalnav-trigger__ic i::after {
  margin-top: 6px;
  -webkit-transition: ease-out 0.3s 0.1s;
  transition: ease-out 0.3s 0.1s;
}
.p-globalnav-trigger.is-open i {
  top: 50%;
  background-color: transparent;
}
.p-globalnav-trigger.is-open i::before {
  width: 1.9375rem;
  margin-top: 0;
  -webkit-transform: rotate(-405deg);
          transform: rotate(-405deg);
}
.p-globalnav-trigger.is-open i::after {
  width: 1.9375rem;
  margin-top: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.p-globalnav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 888888;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
  visibility: hidden;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s ease 0.1s;
  transition: 0.3s ease 0.1s;
  padding-top: 3.125rem;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav {
    position: absolute;
    inset: auto 0 0 auto;
    width: auto;
    height: auto;
    pointer-events: all;
    visibility: visible;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    background: transparent;
  }
}
.p-globalnav.is-open {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.p-globalnav__inner {
  position: relative;
  display: none;
  height: 100dvh;
  padding: 0;
  overflow-y: scroll;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__inner {
    display: block;
    height: auto;
    overflow-y: visible;
  }
}
.is-open .p-globalnav__inner {
  display: block !important;
}
.p-globalnav__logo {
  position: relative;
  display: block;
  margin-top: 1.875rem;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__logo {
    display: none;
  }
}
.p-globalnav__logo img {
  width: min(90%, 17.8125rem);
  height: auto;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__logo img {
    display: none;
  }
}
.p-globalnav__menu {
  padding-top: 0;
  font-size: 1.125rem;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
  }
}
.p-globalnav__menu > li:first-child {
  border-top: #dcdcdc 1px solid;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__menu > li:first-child {
    border: none;
  }
}
.p-globalnav__menu > li {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2;
  border-bottom: #dcdcdc 1px solid;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__menu > li {
    padding: 0 min(1vw, 1em);
    font-size: min(1.4vw, 14px);
    border: none;
  }
}
.p-globalnav__menu > li a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.5em 1em;
  font-weight: 400;
  color: #003d6d;
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer;
  background: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  border: none;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__menu > li a {
    height: auto;
    padding: 1em 0;
    color: #231815;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-globalnav__menu > li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .p-globalnav__menu > li a:hover {
    text-decoration: none;
  }
}
@media print and (hover: hover) and (pointer: fine), screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .p-globalnav__menu > li a:hover::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 4px;
    content: "";
    background: #004263;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .p-globalnav__menu > li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .p-globalnav__menu > li a:hover {
    text-decoration: none;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .p-globalnav__menu > li a:hover::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 4px;
    content: "";
    background: #004263;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.p-globalnav__menu > li a:focus-visible {
  outline-offset: -2px;
}
.p-globalnav__sublinks {
  display: block;
  height: 100%;
  max-height: 0;
  padding-top: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.4s;
  transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.4s;
}
.p-globalnav__sublinks[hidden] {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__sublinks {
    display: none !important;
  }
}
.p-globalnav__sublinks.is-open {
  max-height: 35rem;
  visibility: visible;
  opacity: 1;
}
.p-globalnav__sublinks > li {
  font-size: inherit;
  border-top: #ccc 1px solid;
}
.p-globalnav__sublinks > li > a {
  padding: 8px 16px 8px 35px;
  background-color: #ededec;
}
.p-globalnav__sublinks > li > a:focus-visible {
  outline-offset: -2px;
}
.p-globalnav__button-sp {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.5em 1em;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
  color: #003d6d;
  text-decoration: none;
  letter-spacing: 0.08em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  font: inherit;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__button-sp {
    display: none !important;
  }
}
.p-globalnav__button-sp > span {
  position: relative;
}
.p-globalnav__button-sp::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  height: 100%;
  content: "";
  background: #003c67 url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2098%2090%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m30.91%2036.392%2018.21%2018.281%2018.21-18.281z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}
.p-globalnav__button-sp.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-globalnav__button-sp:focus-visible {
  outline: 2px solid #023d88;
  outline-offset: -2px;
}
.p-globalnav__button-pc {
  display: none !important;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__button-pc {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1em 0;
    color: #231815;
  }
}

.l-globalnav__tag-new {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
  display: inline-block;
  vertical-align: 0;
  background: #dd3535;
  color: #fff;
  font-size: 8px;
  line-height: 1.5;
  padding: 0.225em 0.75em 0.2em 0.75em;
  border-radius: 2px;
}
@media print, screen and (min-width: 768px) {
  .l-globalnav__tag-new {
    -webkit-transform: translate(0%, -45%);
            transform: translate(0%, -45%);
    left: 0;
    top: 0;
    right: auto;
  }
}

.p-management-mv {
  position: relative;
  width: 100%;
  height: 30.125rem;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .p-management-mv {
    height: 37.9375rem;
  }
}
.p-service .p-management-mv {
  height: 14.9375rem;
}
@media print, screen and (min-width: 768px) {
  .p-service .p-management-mv {
    height: 37.9375rem;
  }
}
.p-management-mv__text-area {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  padding: 0 min(2vw, 1.25rem);
}
.p-management-mv__text01 {
  font-size: clamp(1.5625rem, 16.1971830986px + 2.3474178404vw, 3.125rem);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.8), 0 0 5px rgb(0, 0, 0);
  letter-spacing: 0.03em;
  opacity: 0;
  -webkit-animation: mv-fadein 2s ease 0.5s forwards;
          animation: mv-fadein 2s ease 0.5s forwards;
}
@media print, screen and (min-width: 768px) {
  .p-management-mv__text01 {
    letter-spacing: 0.16em;
  }
}

.p-management-mv__photo {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
}
.p-management-mv__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-management-mv__photo picture img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 25%;
     object-position: 50% 25%;
  -webkit-animation: mv-photo 2s ease forwards;
          animation: mv-photo 2s ease forwards;
}

@-webkit-keyframes mv-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mv-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mv-photo {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mv-photo {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
:where(.c-button01) {
  font-size: clamp(1rem, 10.3661971831px + 1.5023474178vw, 2rem);
  font-weight: 400;
  letter-spacing: clamp(0.001875emrem, 0.0194366197empx + 0.0028169014emvw, 0.00375emrem);
}

.c-button01 {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: clamp(1.75rem, 20.2535211268px + 2.0657276995vw, 3.125rem);
  overflow: hidden;
  line-height: 1.4;
  color: #023d88;
  color: #023d88;
  text-decoration: none !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  background-color: #fff;
  border: none;
  outline: none;
}
.c-button01 > span {
  position: relative;
  z-index: 2;
  padding: 0.2em 0.75em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  text-indent: 0;
}
.c-button01 .u-ic-arrow-p {
  position: relative;
  z-index: 2;
  width: 0.7em;
  height: 0.85em;
  vertical-align: -0.2em;
}
@media (hover: hover) and (pointer: fine) {
  .c-button01 {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .c-button01:hover {
    color: #fff;
    background-color: #023d88;
  }
  .c-button01:hover .u-ic-arrow-p {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2014.14%2028.28%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%200%2014.14%2014.14-14.14%2014.14z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .c-button01 {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .c-button01:hover {
    color: #fff;
    background-color: #023d88;
  }
  .c-button01:hover .u-ic-arrow-p {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2014.14%2028.28%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%200%2014.14%2014.14-14.14%2014.14z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
}
.c-button01:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 0;
}

.c-button02 {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  line-height: 1.4;
  color: #023d88;
  color: #fff;
  text-decoration: none !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: transparent;
  background-color: #003c67;
  border: none;
  outline: none;
}
.c-button02 > span {
  position: relative;
  z-index: 2;
  padding: 0.5em 1.5em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  text-indent: 0;
  font-size: clamp(1.25rem, 19.2957746479px + 0.1877934272vw, 1.375rem);
}
.c-button02 .u-ic-arrow-p {
  position: relative;
  z-index: 2;
  width: 0.7em;
  height: 0.85em;
  vertical-align: -0.2em;
}
@media (hover: hover) and (pointer: fine) {
  .c-button02 {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .c-button02:hover {
    color: #fff;
    background-color: #023d88;
  }
  .c-button02:hover .u-ic-arrow-p {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2014.14%2028.28%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%200%2014.14%2014.14-14.14%2014.14z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .c-button02 {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .c-button02:hover {
    color: #fff;
    background-color: #023d88;
  }
  .c-button02:hover .u-ic-arrow-p {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2014.14%2028.28%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%200%2014.14%2014.14-14.14%2014.14z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  }
}
.c-button02:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 0;
}

.c-button03 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  font-family: inherit;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  min-width: 100px;
  border: 0;
  color: #004263 !important;
  font-size: clamp(1rem, 15.2957746479px + 0.1877934272vw, 1.125rem);
  letter-spacing: 0;
  line-height: 1.2;
  width: 100%;
  background: #fff;
  text-align: center;
  overflow: visible;
  display: table;
  position: relative;
  border: 3px solid #004263;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.c-button03 > span {
  margin: 0 auto;
  padding: 0.4em 20px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  height: 44px;
  position: relative;
  width: 100%;
}
.c-button03--arrow::after {
  content: "";
  width: 8px;
  height: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%208%2014%22%20style%3D%22enable-background%3Anew%200%200%208%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23003D6D%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M1.3%2C13c-0.3%2C0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1%2C0-1.4L4.9%2C7L0.6%2C2.7c-0.4-0.4-0.4-1%2C0-1.4s1-0.4%2C1.4%2C0l5%2C5%20C7.2%2C6.5%2C7.3%2C6.7%2C7.3%2C7S7.2%2C7.5%2C7%2C7.7l-5%2C5C1.8%2C12.9%2C1.6%2C13%2C1.3%2C13z%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .c-button03:hover {
    border: #006dc1 solid 3px;
  }
  .c-button03:hover > span {
    text-decoration: underline !important;
    text-underline-offset: 0.2em;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .c-button03:hover {
    border: #006dc1 solid 3px;
  }
  .c-button03:hover > span {
    text-decoration: underline !important;
    text-underline-offset: 0.2em;
  }
}
.c-button03:focus-visible {
  border: #126ff1 solid 3px;
  outline-offset: 0;
  outline: none !important;
}

.p-management-submenu {
  margin-top: clamp(3.125rem, 32.3943661972px + 4.6948356808vw, 6.25rem);
}
.p-management-submenu__lists {
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
  width: min(85%, 25rem);
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .p-management-submenu__lists {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    width: min(85%, 75rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-management-submenu__lists {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media print, screen and (min-width: 768px) {
  .p-management-submenu .c-button03 > span {
    font-size: min(1.5vw, 1.125rem);
  }
}
.p-one-day .p-management-submenu__button-one-day {
  display: none;
}
.p-interview-01 .p-management-submenu__button-interview-01 {
  display: none;
}
.p-interview-02 .p-management-submenu__button-interview-02 {
  display: none;
}
.p-basics .p-management-submenu__button-basics {
  display: none;
}
.p-service .p-management-submenu__button-service {
  display: none;
}

:where(.c-list-disc:not(:first-child), .c-list-number:not(:first-child), .c-list-square:not(:first-child), .c-list-paren:not(:first-child)),
:where(.c-list-disc + p, .c-list-number + p, .c-list-square + p, .c-list-paren + p) {
  margin-top: clamp(1rem, 15.6363636364px + 1.1363636364vw, 2rem);
}

.c-list-disc {
  text-align: left;
  counter-reset: li;
}
.c-list-disc > li {
  position: relative;
  padding-left: 1.5em;
  line-height: inherit;
}
.c-list-disc > li::before {
  position: absolute;
  top: 0.75em;
  left: 0.35em;
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  content: "";
  background-color: #003c67;
  border-radius: 50%;
}
.c-list-disc > li:first-child {
  margin-top: 0;
}

.c-list-disc--gap li + li {
  margin-top: 1.5em;
}

.c-list-square {
  text-align: left;
  counter-reset: li;
}
.c-list-square > li {
  position: relative;
  padding-left: 1em;
  line-height: inherit;
}
.c-list-square > li::before {
  position: absolute;
  top: 1em;
  left: 0;
  display: inline;
  font-size: 50%;
  content: "■";
}
.c-list-square > li:not(:first-child) {
  margin-top: 0.5em;
}

.c-square--gap li + li {
  margin-top: 1.5em;
}

.c-list-circle {
  text-align: left;
  counter-reset: li;
}
.c-list-circle > li {
  position: relative;
  padding-left: 1em;
  font-size: inherit;
  line-height: inherit;
}
.c-list-circle > li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline;
  width: 0.75em;
  height: 0.75em;
  content: "";
  background-color: #003c67;
  border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
  .c-list-circle > li::before {
    top: 0.6em;
  }
}
.c-list-circle--indent0 > li {
  padding-left: 0;
}
.c-list-circle--indent0 > li::before {
  position: relative;
  top: auto !important;
  left: auto;
  display: inline-block;
}

.c-square--gap li + li {
  margin-top: 1.5em;
}

.c-list-number {
  text-align: left;
  counter-reset: li;
}
.c-list-number > li {
  position: relative;
  padding-left: 1.6em;
  line-height: inherit;
}
.c-list-number > li::before {
  position: absolute;
  top: 0;
  left: 0.3em;
  display: inline-block;
  width: 2em;
  font-weight: 700;
  content: counter(li) ".";
  counter-increment: li;
}
.c-list-number > li:nth-child(n+10)::before {
  left: -0.3em;
  letter-spacing: -0.05em;
}

.c-list-number--gap > li + li {
  margin-top: 1.5em;
}

.c-list-paren {
  text-align: left;
  counter-reset: li;
}
.c-list-paren > li {
  position: relative;
  padding-left: 2.2em;
  line-height: inherit;
}
.c-list-paren > li::before {
  position: absolute;
  top: 0;
  left: 0.3em;
  display: inline-block;
  width: 2em;
  font-weight: 500;
  content: "(" counter(li) ")";
  counter-increment: li;
}
.c-list-paren > li:nth-child(n+10)::before {
  left: 0;
  letter-spacing: -0.05em;
}

.c-list-paren--gap > li + li {
  margin-top: 1.5em;
}

:where(.c-title01 + p) {
  margin-top: 1.25em;
}

.c-title01 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, 14.3661971831px + 1.5023474178vw, 2.25rem);
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  color: #003c67;
  text-align: center;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width: 768px) {
  .c-title01 {
    letter-spacing: 0.16em;
  }
}

.c-inner01 {
  position: relative;
  width: min(86%, 61.4375rem);
  margin-right: auto;
  margin-left: auto;
}

/* u-font */
.u-font-wn {
  font-weight: 400;
}
.u-font-wm {
  font-weight: 500;
}
.u-font-wb {
  font-weight: 700;
}
.u-font-size-xs {
  font-size: 80%;
}
.u-font-size-s {
  font-size: 90%;
}
.u-font-size-l {
  font-size: 110%;
}
.u-font-size-xl {
  font-size: 120%;
}
.u-font-size-xxl {
  font-size: 130%;
}

.u-visible-sp {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .u-visible-sp {
    display: none;
  }
}

.u-visible-pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .u-visible-pc {
    display: inline-block;
  }
}

.u-visible-s,
.u-visible-sm,
.u-visible-md,
.u-visible-lg,
.u-visible-xl,
.u-visible-xxl {
  display: none;
}

@media print, screen and (width <= 575px) {
  .u-visible-s {
    display: inline-block;
  }
}

@media print, screen and (width >= 576px) and (width <= 767.98px) {
  .u-visible-sm {
    display: inline-block;
  }
}

@media print, screen and (width >= 768px) and (width <= 991px) {
  .u-visible-md {
    display: inline-block;
  }
}

@media print, screen and (width >= 992px) and (width <= 1199px) {
  .u-visible-lg {
    display: inline-block;
  }
}

@media print, screen and (width >= 1200px) and (width <= 1365px) {
  .u-visible-xl {
    display: inline-block;
  }
}

@media print, screen and (width >= 1366px) {
  .u-visible-xxl {
    display: inline-block;
  }
}

[class^=u-ic-] {
  display: inline-block;
  width: 1.5em;
  height: 1em;
  line-height: 1.25;
  vertical-align: -0.15em;
}

.u-ic-arrow-w {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2014.14%2028.28%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%200%2014.14%2014.14-14.14%2014.14z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.u-ic-arrow-b {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2014.14%2028.28%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%200%2014.14%2014.14-14.14%2014.14z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.u-ic-arrow-p {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2014.14%2028.28%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m0%200%2014.14%2014.14-14.14%2014.14z%22%20fill%3D%22%23023d88%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.u-ic-anchor {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2027%2027%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2213.48%22%20cy%3D%2213.48%22%20fill%3D%22%23003c67%22%20r%3D%2213.48%22%2F%3E%3Cpath%20d%3D%22m5.99%207.86%207.49%2011.24%207.49-11.24%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

/* text */
.u-text-al {
  text-align: left;
}
.u-text-ac {
  text-align: center;
}
.u-text-ar {
  text-align: right;
}
.u-text-aj {
  text-align: justify;
}
.u-text-du {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.u-text-dl {
  text-decoration: line-through;
}
.u-text-grd {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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; /* テキストの塗りつぶしを透明に */
}
.u-text-en {
  font-family: "Helvetica Neue", "Arial", sans-serif;
}

.u-pt0 {
  padding-top: 0rem;
}

.u-pt5 {
  padding-top: 0.3125rem;
}

.u-pt10 {
  padding-top: 0.625rem;
}

.u-pt15 {
  padding-top: 0.9375rem;
}

.u-pt20 {
  padding-top: 1.25rem;
}

.u-pt25 {
  padding-top: 1.5625rem;
}

.u-pt30 {
  padding-top: 1.875rem;
}

.u-pt35 {
  padding-top: 2.1875rem;
}

.u-pt40 {
  padding-top: 2.5rem;
}

.u-pt45 {
  padding-top: 2.8125rem;
}

.u-pt50 {
  padding-top: 3.125rem;
}

.u-pt55 {
  padding-top: 3.4375rem;
}

.u-pt60 {
  padding-top: 3.75rem;
}

.u-pt65 {
  padding-top: 4.0625rem;
}

.u-pt70 {
  padding-top: 4.375rem;
}

.u-pt75 {
  padding-top: 4.6875rem;
}

.u-pt80 {
  padding-top: 5rem;
}

.u-pt85 {
  padding-top: 5.3125rem;
}

.u-pt90 {
  padding-top: 5.625rem;
}

.u-pt95 {
  padding-top: 5.9375rem;
}

.u-pt100 {
  padding-top: 6.25rem;
}

.u-pb0 {
  padding-bottom: 0rem;
}

.u-pb5 {
  padding-bottom: 0.3125rem;
}

.u-pb10 {
  padding-bottom: 0.625rem;
}

.u-pb15 {
  padding-bottom: 0.9375rem;
}

.u-pb20 {
  padding-bottom: 1.25rem;
}

.u-pb25 {
  padding-bottom: 1.5625rem;
}

.u-pb30 {
  padding-bottom: 1.875rem;
}

.u-pb35 {
  padding-bottom: 2.1875rem;
}

.u-pb40 {
  padding-bottom: 2.5rem;
}

.u-pb45 {
  padding-bottom: 2.8125rem;
}

.u-pb50 {
  padding-bottom: 3.125rem;
}

.u-pb55 {
  padding-bottom: 3.4375rem;
}

.u-pb60 {
  padding-bottom: 3.75rem;
}

.u-pb65 {
  padding-bottom: 4.0625rem;
}

.u-pb70 {
  padding-bottom: 4.375rem;
}

.u-pb75 {
  padding-bottom: 4.6875rem;
}

.u-pb80 {
  padding-bottom: 5rem;
}

.u-pb85 {
  padding-bottom: 5.3125rem;
}

.u-pb90 {
  padding-bottom: 5.625rem;
}

.u-pb95 {
  padding-bottom: 5.9375rem;
}

.u-pb100 {
  padding-bottom: 6.25rem;
}

.u-pl0 {
  padding-left: 0rem;
}

.u-pl5 {
  padding-left: 0.3125rem;
}

.u-pl10 {
  padding-left: 0.625rem;
}

.u-pl15 {
  padding-left: 0.9375rem;
}

.u-pl20 {
  padding-left: 1.25rem;
}

.u-pl25 {
  padding-left: 1.5625rem;
}

.u-pl30 {
  padding-left: 1.875rem;
}

.u-pl35 {
  padding-left: 2.1875rem;
}

.u-pl40 {
  padding-left: 2.5rem;
}

.u-pl45 {
  padding-left: 2.8125rem;
}

.u-pl50 {
  padding-left: 3.125rem;
}

.u-pl55 {
  padding-left: 3.4375rem;
}

.u-pl60 {
  padding-left: 3.75rem;
}

.u-pl65 {
  padding-left: 4.0625rem;
}

.u-pl70 {
  padding-left: 4.375rem;
}

.u-pl75 {
  padding-left: 4.6875rem;
}

.u-pl80 {
  padding-left: 5rem;
}

.u-pl85 {
  padding-left: 5.3125rem;
}

.u-pl90 {
  padding-left: 5.625rem;
}

.u-pl95 {
  padding-left: 5.9375rem;
}

.u-pl100 {
  padding-left: 6.25rem;
}

.u-pr0 {
  padding-right: 0rem;
}

.u-pr5 {
  padding-right: 0.3125rem;
}

.u-pr10 {
  padding-right: 0.625rem;
}

.u-pr15 {
  padding-right: 0.9375rem;
}

.u-pr20 {
  padding-right: 1.25rem;
}

.u-pr25 {
  padding-right: 1.5625rem;
}

.u-pr30 {
  padding-right: 1.875rem;
}

.u-pr35 {
  padding-right: 2.1875rem;
}

.u-pr40 {
  padding-right: 2.5rem;
}

.u-pr45 {
  padding-right: 2.8125rem;
}

.u-pr50 {
  padding-right: 3.125rem;
}

.u-pr55 {
  padding-right: 3.4375rem;
}

.u-pr60 {
  padding-right: 3.75rem;
}

.u-pr65 {
  padding-right: 4.0625rem;
}

.u-pr70 {
  padding-right: 4.375rem;
}

.u-pr75 {
  padding-right: 4.6875rem;
}

.u-pr80 {
  padding-right: 5rem;
}

.u-pr85 {
  padding-right: 5.3125rem;
}

.u-pr90 {
  padding-right: 5.625rem;
}

.u-pr95 {
  padding-right: 5.9375rem;
}

.u-pr100 {
  padding-right: 6.25rem;
}

.u-mt0 {
  margin-top: 0rem;
}

.u-mt5 {
  margin-top: 0.3125rem;
}

.u-mt10 {
  margin-top: 0.625rem;
}

.u-mt15 {
  margin-top: 0.9375rem;
}

.u-mt20 {
  margin-top: 1.25rem;
}

.u-mt25 {
  margin-top: 1.5625rem;
}

.u-mt30 {
  margin-top: 1.875rem;
}

.u-mt35 {
  margin-top: 2.1875rem;
}

.u-mt40 {
  margin-top: 2.5rem;
}

.u-mt45 {
  margin-top: 2.8125rem;
}

.u-mt50 {
  margin-top: 3.125rem;
}

.u-mt55 {
  margin-top: 3.4375rem;
}

.u-mt60 {
  margin-top: 3.75rem;
}

.u-mt65 {
  margin-top: 4.0625rem;
}

.u-mt70 {
  margin-top: 4.375rem;
}

.u-mt75 {
  margin-top: 4.6875rem;
}

.u-mt80 {
  margin-top: 5rem;
}

.u-mt85 {
  margin-top: 5.3125rem;
}

.u-mt90 {
  margin-top: 5.625rem;
}

.u-mt95 {
  margin-top: 5.9375rem;
}

.u-mt100 {
  margin-top: 6.25rem;
}

.u-mb0 {
  margin-bottom: 0rem;
}

.u-mb5 {
  margin-bottom: 0.3125rem;
}

.u-mb10 {
  margin-bottom: 0.625rem;
}

.u-mb15 {
  margin-bottom: 0.9375rem;
}

.u-mb20 {
  margin-bottom: 1.25rem;
}

.u-mb25 {
  margin-bottom: 1.5625rem;
}

.u-mb30 {
  margin-bottom: 1.875rem;
}

.u-mb35 {
  margin-bottom: 2.1875rem;
}

.u-mb40 {
  margin-bottom: 2.5rem;
}

.u-mb45 {
  margin-bottom: 2.8125rem;
}

.u-mb50 {
  margin-bottom: 3.125rem;
}

.u-mb55 {
  margin-bottom: 3.4375rem;
}

.u-mb60 {
  margin-bottom: 3.75rem;
}

.u-mb65 {
  margin-bottom: 4.0625rem;
}

.u-mb70 {
  margin-bottom: 4.375rem;
}

.u-mb75 {
  margin-bottom: 4.6875rem;
}

.u-mb80 {
  margin-bottom: 5rem;
}

.u-mb85 {
  margin-bottom: 5.3125rem;
}

.u-mb90 {
  margin-bottom: 5.625rem;
}

.u-mb95 {
  margin-bottom: 5.9375rem;
}

.u-mb100 {
  margin-bottom: 6.25rem;
}

.u-ml0 {
  margin-left: 0rem;
}

.u-ml5 {
  margin-left: 0.3125rem;
}

.u-ml10 {
  margin-left: 0.625rem;
}

.u-ml15 {
  margin-left: 0.9375rem;
}

.u-ml20 {
  margin-left: 1.25rem;
}

.u-ml25 {
  margin-left: 1.5625rem;
}

.u-ml30 {
  margin-left: 1.875rem;
}

.u-ml35 {
  margin-left: 2.1875rem;
}

.u-ml40 {
  margin-left: 2.5rem;
}

.u-ml45 {
  margin-left: 2.8125rem;
}

.u-ml50 {
  margin-left: 3.125rem;
}

.u-ml55 {
  margin-left: 3.4375rem;
}

.u-ml60 {
  margin-left: 3.75rem;
}

.u-ml65 {
  margin-left: 4.0625rem;
}

.u-ml70 {
  margin-left: 4.375rem;
}

.u-ml75 {
  margin-left: 4.6875rem;
}

.u-ml80 {
  margin-left: 5rem;
}

.u-ml85 {
  margin-left: 5.3125rem;
}

.u-ml90 {
  margin-left: 5.625rem;
}

.u-ml95 {
  margin-left: 5.9375rem;
}

.u-ml100 {
  margin-left: 6.25rem;
}

.u-mr0 {
  margin-right: 0rem;
}

.u-mr5 {
  margin-right: 0.3125rem;
}

.u-mr10 {
  margin-right: 0.625rem;
}

.u-mr15 {
  margin-right: 0.9375rem;
}

.u-mr20 {
  margin-right: 1.25rem;
}

.u-mr25 {
  margin-right: 1.5625rem;
}

.u-mr30 {
  margin-right: 1.875rem;
}

.u-mr35 {
  margin-right: 2.1875rem;
}

.u-mr40 {
  margin-right: 2.5rem;
}

.u-mr45 {
  margin-right: 2.8125rem;
}

.u-mr50 {
  margin-right: 3.125rem;
}

.u-mr55 {
  margin-right: 3.4375rem;
}

.u-mr60 {
  margin-right: 3.75rem;
}

.u-mr65 {
  margin-right: 4.0625rem;
}

.u-mr70 {
  margin-right: 4.375rem;
}

.u-mr75 {
  margin-right: 4.6875rem;
}

.u-mr80 {
  margin-right: 5rem;
}

.u-mr85 {
  margin-right: 5.3125rem;
}

.u-mr90 {
  margin-right: 5.625rem;
}

.u-mr95 {
  margin-right: 5.9375rem;
}

.u-mr100 {
  margin-right: 6.25rem;
}

.u-mt-line {
  margin-top: 2em;
}

.u-mt-line2 {
  margin-top: 2.5em;
}

.u-mt-line3 {
  margin-top: 3em;
}