@charset "UTF-8";


*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

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

@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: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

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

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  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.2ex; /* 下線の上にスペースを追加する */
}

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

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

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

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

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

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

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media print, screen {
  :root {
    /* ==================== color ==================== */
    --color-key: #2E2E63;
    --color-yellow: #FFF845;
    --color-green: #C9C461;
    --color-blue-2: #9494B1;
  }
}
main {
  background-color: #fff;
}

/*
 * ヘッダー
 *********************/
.pertners-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  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;
  padding: 26px 25px 10px 57px;
}
@media screen and (max-width: 480px) {
  .pertners-header {
    background-color: #fff;
    padding: 6px 20px 25px 19px;
  }
}
.pertners-header .pertners-logo-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .pertners-header .pertners-logo-block {
    gap: 7px;
  }
}
.pertners-header .pertners-logo-block .pertners-logo-mark {
  width: 102px;
}
.pertners-header .pertners-logo-block .pertners-logo-mark img {
  width: 100%;
}
@media screen and (max-width: 420px) {
  .pertners-header .pertners-logo-block .pertners-logo-mark {
    width: 68px;
    translate: 0 5px;
  }
}
.pertners-header .pertners-logo-block .pertners-logo-type-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 30px;
}
.pertners-header .pertners-logo-block .pertners-logo-type {
  width: 160px;
}
.pertners-header .pertners-logo-block .pertners-logo-type img {
  width: 100%;
}
@media screen and (max-width: 420px) {
  .pertners-header .pertners-logo-block .pertners-logo-type {
    width: 106px;
    margin-top: -2px;
  }
  .pertners-header .pertners-logo-block .pertners-logo-type + p {
    width: 102px;
    margin-top: -2px;
  }
}
.pertners-header .pertners-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}
.pertners-header .pertners-link .pertners-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  padding: 30px 0;
  padding-left: 43px;
  padding-right: 43px;
}
@media screen and (max-width: 1300px) {
  .pertners-header .pertners-link .pertners-link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 46px 0 54px;
    padding-left: 73px;
    gap: 40px;
  }
}
.pertners-header .pertners-link .pertners-link-list a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 1300px) {
  .pertners-header .pertners-link .pertners-link-list a {
    gap: 13px;
  }
}
.pertners-header .pertners-link .pertners-link-list a:before {
  display: block;
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  background-color: #d7e0e9;
  border-radius: 100px;
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pertners-header .pertners-link .pertners-link-list a span {
  color: #203851;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: clamp(13px, 0.9375vw + 0.2rem, 15px);
  font-weight: 500;
  line-height: 100%; /* 15px */
  letter-spacing: 2.25px;
}
@media screen and (max-width: 1300px) {
  .pertners-header .pertners-link .pertners-link-list a span {
    font-size: 18px;
    letter-spacing: 2.7px;
  }
}
@media (hover: hover) {
  .pertners-header .pertners-link .pertners-link-list a:hover:before {
    background-color: #203851;
  }
}
.pertners-header .pertners-link .pertners-link-list a.current:before {
  background-color: #203851;
}
.pertners-header .pertners-link .externalk_link {
  border-radius: 0px 38px 38px 0px;
  background: #efff8a;
  text-decoration: none;
  margin-left: -20px;
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 1300px) {
  .pertners-header .pertners-link .externalk_link {
    max-width: 300px;
    width: 100%;
    padding: 4px;
    border-radius: 95px;
    background: -webkit-gradient(linear, left top, left bottom, from(#efff8a), to(#ecff71));
    background: linear-gradient(180deg, #efff8a 0%, #ecff71 100%);
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    margin: 0 auto;
  }
}
.pertners-header .pertners-link .externalk_link .externalk_link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  padding: 10px 34px;
  height: 100%;
}
@media screen and (max-width: 1300px) {
  .pertners-header .pertners-link .externalk_link .externalk_link-wrap {
    border-radius: 95px;
    border: 1px solid #222;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 23px 32px;
    padding-right: 24px;
    position: relative;
  }
}
.pertners-header .pertners-link .externalk_link span {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 2.4px;
}
.pertners-header .pertners-link .externalk_link svg {
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 1300px) {
  .pertners-header .pertners-link .externalk_link svg {
    position: absolute;
    top: 50%;
    right: 27px;
    translate: 0 -50%;
  }
}
@media (hover: hover) {
  .pertners-header .pertners-link .externalk_link:hover svg {
    translate: 5px -5px;
  }
}
@media screen and (max-width: 1300px) {
  .pertners-header .pertners-link {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    translate: 100% 0;
    -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding-top: 90px;
  }
  .pertners-header .pertners-link.opend {
    translate: 0% 0;
  }
}
.pertners-header .pertners-humberger-block {
  display: none;
}

.pertners-humberger-block {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2005;
  width: 50px;
  height: 50px;
  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;
  cursor: pointer;
  background-color: #16335f;
  border-radius: 100%;
}
@media screen and (min-width: 1301px) {
  .pertners-humberger-block {
    display: none;
  }
}
.pertners-humberger-block .line {
  position: relative;
  z-index: 3;
  width: 16px;
  height: 12px;
}
.pertners-humberger-block .line .inner {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pertners-humberger-block .line .inner:after, .pertners-humberger-block .line .inner:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pertners-humberger-block .line:after, .pertners-humberger-block .line:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.pertners-humberger-block .line:before {
  top: 0;
}
.pertners-humberger-block .line:after {
  bottom: 0;
}
.pertners-humberger-block.opend .line .inner:after {
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
}
.pertners-humberger-block.opend .line .inner:before {
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
}
.pertners-humberger-block.opend .line:after, .pertners-humberger-block.opend .line:before {
  width: 0;
}

.firstview .section-inner .section-header .title-block .en,
.firstview .section-inner .section-header .title-block .jp {
  color: #000;
}
.firstview .breadcrumb ul li:before {
  background-image: url(../img/common/ico_breadcrumb_arrow_black.svg);
}
.firstview .breadcrumb ul li,
.firstview .breadcrumb ul li a {
  color: #000;
}

/*
 * フッター設定
 *******************/
.site-footer {
  position: relative;
  z-index: 50;
}
.site-footer .footer-sub-block {
  display: none;
}