@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.059602649vw;
  }
}
@media (min-width: 1510px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  background: #fff;
}

/* 視覚的に非表示（スクリーンリーダー用） */
.u-visuallyHidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* JS無効時の最小フォールバック（任意） */
.no-js .u-jsOnly {
  display: none !important;
}

/* スキップリンク（最低限） */
.c-skiplink {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.c-skiplink:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 0.5em 1em;
  background: #000;
  color: #fff;
  z-index: 10000;
  outline: 3px solid #23a5ff;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
/* グローバル基盤 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img, svg, video, canvas, iframe, table, picture {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: initial;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

button {
  color: inherit;
  padding-block: 0;
  padding-inline: 0;
  text-align: justify;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* telリンクの下線＆青色を消す（共通） */
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  /* アクセシビリティ：フォーカス可視 */
}
a[href^="tel:"]:hover, a[href^="tel:"]:active, a[href^="tel:"]:focus {
  text-decoration: none;
}
a[href^="tel:"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* 念のためのiOS系強制上書き（必要な場合のみ） */
@supports (-webkit-touch-callout: none) {
  a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
  }
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}
@media (hover: none) and (pointer: coarse) {
  a[href^="tel:"] {
    pointer-events: auto;
    color: inherit;
    text-decoration: underline;
  }
}

/* まず、必要な要素には明確なフォーカスリングを付ける */
:where(a, button, input, select, textarea, summary, [role=button], [role=link]):focus-visible {
  outline: 3px solid #23a5ff;
  outline-offset: 2px;
}

/* スクロール用に一時的に tabindex="-1" を付けた見出し/セクションはリングを消す */
:where(h1, h2, h3, h4, h5, h6, section, article, main, div)[id][tabindex="-1"]:focus-visible {
  outline: none;
}

/* 長い文字列の折返し徹底 */
:where(p, li, dd, td, th, figcaption, .c-text, .richtext) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ------------------------------
    スクロールアニメーション
------------------------------ */
*[data-scroll], *[data-load] {
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  --gap: 300ms;
}
@media screen and (min-width: 768px) {
  *[data-scroll], *[data-load] {
    --gap: 300ms;
  }
}
*[data-scroll][data-scroll-delay="1"], *[data-load][data-scroll-delay="1"] {
  -webkit-transition-delay: calc(var(--gap) * 1);
          transition-delay: calc(var(--gap) * 1);
}
*[data-scroll][data-scroll-delay="2"], *[data-load][data-scroll-delay="2"] {
  -webkit-transition-delay: calc(var(--gap) * 2);
          transition-delay: calc(var(--gap) * 2);
}
*[data-scroll][data-scroll-delay="3"], *[data-load][data-scroll-delay="3"] {
  -webkit-transition-delay: calc(var(--gap) * 3);
          transition-delay: calc(var(--gap) * 3);
}
*[data-scroll][data-scroll-delay="4"], *[data-load][data-scroll-delay="4"] {
  -webkit-transition-delay: calc(var(--gap) * 4);
          transition-delay: calc(var(--gap) * 4);
}
*[data-scroll][data-scroll-delay="5"], *[data-load][data-scroll-delay="5"] {
  -webkit-transition-delay: calc(var(--gap) * 5);
          transition-delay: calc(var(--gap) * 5);
}
*[data-scroll][data-scroll-delay="6"], *[data-load][data-scroll-delay="6"] {
  -webkit-transition-delay: calc(var(--gap) * 6);
          transition-delay: calc(var(--gap) * 6);
}
*[data-scroll][data-scroll-delay="7"], *[data-load][data-scroll-delay="7"] {
  -webkit-transition-delay: calc(var(--gap) * 7);
          transition-delay: calc(var(--gap) * 7);
}
*[data-scroll][data-scroll-delay="8"], *[data-load][data-scroll-delay="8"] {
  -webkit-transition-delay: calc(var(--gap) * 8);
          transition-delay: calc(var(--gap) * 8);
}
*[data-scroll][data-scroll-delay="9"], *[data-load][data-scroll-delay="9"] {
  -webkit-transition-delay: calc(var(--gap) * 9);
          transition-delay: calc(var(--gap) * 9);
}
*[data-scroll][data-scroll-delay="10"], *[data-load][data-scroll-delay="10"] {
  -webkit-transition-delay: calc(var(--gap) * 10);
          transition-delay: calc(var(--gap) * 10);
}

*[data-scroll].scroll-show, *[data-load].scroll-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

*[data-scroll=fadein-top], *[data-load=fadein-top] {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

*[data-scroll=blur], *[data-load=blur] {
  -webkit-filter: blur(18px);
          filter: blur(18px);
  opacity: 0;
  -webkit-transition: opacity 1000ms, -webkit-transform 1000ms, -webkit-filter 1000ms;
  transition: opacity 1000ms, -webkit-transform 1000ms, -webkit-filter 1000ms;
  transition: opacity 1000ms, transform 1000ms, filter 1000ms;
  transition: opacity 1000ms, transform 1000ms, filter 1000ms, -webkit-transform 1000ms, -webkit-filter 1000ms;
}
*[data-scroll=blur].scroll-show, *[data-load=blur].scroll-show {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
}

*[data-scroll=title01], *[data-load=title01] {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

body.is-loading {
  overflow: hidden;
}

.c-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #A6CF84;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media screen and (min-width: 768px) {
  .c-loader .fp-hero {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-loader .fp-hero__inner {
    position: static;
  }
}
@media screen and (min-width: 768px) {
  .c-loader .fp-hero__lines {
    left: 50%;
    top: 50%;
    translate: -50% -50%;
  }
}

/* フェードアウト */
body.is-loaded .c-loader {
  opacity: 0;
  visibility: hidden;
}

.l-inner {
  width: 100%;
  max-width: 27.5rem;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 72.5rem;
    padding-inline: 1.25rem;
  }
}

.l-main {
  width: 100%;
  padding-top: var(--header-h);
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 3.125rem;
  }
}
.l-header__inner {
  max-width: unset;
  padding-inline: 2.8125rem 4.25rem;
  padding-block: 1.1875rem;
  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;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-inline: 0.9375rem;
    padding-block: 0.875rem;
  }
}
.l-header__logo {
  width: 21.625rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 12.5rem;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__nav {
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__menu {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.375rem;
}
.l-header__item {
  height: inherit;
}
.l-header__item a, .l-header__item button {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #003D7F;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05rem;
  position: relative;
}
.l-header__item a::before, .l-header__item button::before {
  content: "";
  display: block;
  background: #003D7F;
  width: 0rem;
  height: 0.1875rem;
  position: absolute;
  bottom: -1.1875rem;
  left: 50%;
  translate: -50% 0;
  -webkit-transition: width 300ms;
  transition: width 300ms;
}
.l-header__item a:hover::before, .l-header__item button:hover::before {
  width: 6.625rem;
}
.l-header__item button[aria-expanded=true]::before {
  width: 6.625rem;
}
.l-footer {
  margin-top: 3.75rem;
  padding-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 0.9375rem;
  }
}
.l-footer__inner {
  border-radius: 1.25rem;
  background: #003D7F;
  max-width: calc(100% - 3.125rem);
  padding-inline: 3.75rem;
  padding-block: 1.875rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-block: 2.625rem 0.875rem;
    max-width: calc(100% - 2rem);
  }
}
.l-footer__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__flexbox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__info {
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    padding-top: 0;
  }
}
.l-footer__logo img {
  display: block;
  width: 9rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo img {
    width: 6.5rem;
    margin-inline: auto;
  }
}
.l-footer__text {
  color: #FFF;
  line-height: 1.33;
  font-style: normal;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-footer__text {
    line-height: 1.53;
    text-align: center;
  }
}
.l-footer__text .is-g1 {
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-footer__text .is-g1 {
    font-size: 0.8125rem;
  }
}
.l-footer__text .is-g2 {
  font-size: 0.8125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__text .is-g2 {
    font-size: 0.6875rem;
  }
}
.l-footer__menu {
  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: right;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .l-footer__menu {
    display: none;
  }
}
.l-footer__item {
  color: #FFF;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.05em;
}
.l-footer__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  gap: 0.4375rem;
}
.l-footer__item a::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
  background: #FFF;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.l-footer__item:hover a::before {
  opacity: 1;
}
.l-footer__copy {
  color: #FFF;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
  text-align: center;
  margin-top: -0.375rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    line-height: 2;
    font-size: 0.625rem;
    margin-top: 1.875rem;
  }
}

/* ページトップボタン */
.c-pageTop {
  margin-inline: auto 0;
  margin-top: 1.25rem;
  width: 3.375rem;
  height: 3.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: none;
  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;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .c-pageTop:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .c-pageTop:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-pageTop {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 100;
    margin-top: 0;
  }
}
.c-pageTop span {
  width: 1.5rem;
  height: 1.5rem;
  background: #003D7F;
  -webkit-mask: url(../img/common/pagetop.svg) no-repeat 50% 50%/contain;
          mask: url(../img/common/pagetop.svg) no-repeat 50% 50%/contain;
}
.c-titleEn {
  color: #003D7F;
  text-align: center;
  font-family: "Agdasima", sans-serif;
  font-size: 4.5625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.45625rem;
}
@media screen and (max-width: 767px) {
  .c-titleEn {
    font-size: 2.25rem;
    letter-spacing: 0.225rem;
  }
}
.c-titleEn--left {
  text-align: left;
}

.c-titleJa {
  color: #003D7F;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.125rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-titleJa {
    font-size: 0.75rem;
    letter-spacing: 0.075rem;
    margin-top: 0.3125rem;
  }
}
.c-titleJa--left {
  text-align: left;
}

.c-title02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding-bottom: 0.625rem;
  overflow: hidden;
}
.c-title02__logo {
  width: 4.75rem;
}
@media screen and (max-width: 767px) {
  .c-title02__logo {
    width: 3.25rem;
  }
}
.c-title02__topic {
  color: #003D7F;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-title02__topic {
    font-size: 1.125rem;
  }
}
.c-title02__inner {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-title02__inner {
    padding-left: 2.8125rem;
  }
}
.c-title02__line {
  position: relative;
}
.c-title02__line::before, .c-title02__line::after {
  content: "";
  display: block;
  background: #003D7F;
  width: 624.9375rem;
  height: 0.0625rem;
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .c-title02__line::before, .c-title02__line::after {
    left: 0.625rem;
    top: calc(50% + 0.0625rem);
  }
}
.c-title02__line::after {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 624.9375rem;
}
@media screen and (max-width: 767px) {
  .c-title02__line::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}
.c-title02__line--left::before, .c-title02__line--left::after {
  right: 0.9375rem;
  left: auto;
}
@media screen and (max-width: 767px) {
  .c-title02__line--left::before, .c-title02__line--left::after {
    right: 0.625rem;
  }
}
/* 共通ボタン */
.c-btnMore {
  border-radius: 3.125rem;
  background: #003D7F;
  width: 15.9375rem;
  height: 4.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: #FFF;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-btnMore {
    width: 11.0625rem;
    height: 3.125rem;
    font-size: 0.9375rem;
    letter-spacing: 0.09375rem;
  }
}
.c-btnMore span {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btnMore span::after {
  content: "";
  display: block;
  background: #ffffff;
  width: 0rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: calc(0.875rem + 100%);
  translate: 0 -50%;
  -webkit-transition: width 300ms;
  transition: width 300ms;
  -webkit-transition-delay: 80ms;
          transition-delay: 80ms;
}
.c-btnMore span::before {
  content: "";
  display: block;
  background: #ffffff;
  width: 0rem;
  height: 0.0625rem;
  position: absolute;
  top: 50%;
  right: calc(1.5rem + 100%);
  translate: 0 -50%;
  -webkit-transition: width 300ms;
  transition: width 300ms;
}
@media (hover: hover) {
  .c-btnMore span:is(:where(:-moz-any-link, :enabled, summary):hover *)::after {
    width: 0.625rem;
    transition-delay: unset;
  }
  .c-btnMore span:is(:where(:any-link, :enabled, summary):hover *)::after {
    width: 0.625rem;
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
  .c-btnMore span:is(:where(:-moz-any-link, :enabled, summary):hover *)::before {
    width: calc(100% - 2.8125rem);
    transition-delay: 80ms;
  }
  .c-btnMore span:is(:where(:any-link, :enabled, summary):hover *)::before {
    width: calc(100% - 2.8125rem);
    -webkit-transition-delay: 80ms;
            transition-delay: 80ms;
  }
}

.c-btnPdf {
  border-radius: 3.125rem;
  background: #003D7F;
  width: 40.25rem;
  height: 5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: #FFF;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1125rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .c-btnPdf:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .c-btnPdf:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-btnPdf {
    width: 19.6875rem;
    height: 3.125rem;
    font-size: 0.9375rem;
    letter-spacing: 0.09375rem;
  }
}
.c-btnPdf span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
}
.c-btnPdf span::before {
  content: "";
  display: block;
  background: #ffffff;
  -webkit-mask: url(../img/common/icon_pdf.svg) no-repeat 50% 50%/contain;
          mask: url(../img/common/icon_pdf.svg) no-repeat 50% 50%/contain;
  width: 1.8125rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .c-btnPdf span::before {
    width: 1.3125rem;
    height: 1.3125rem;
  }
}

/* ハンバーガー */
.c-burger {
  width: 3.125rem;
  height: 3.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #003D7F;
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  -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-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .c-burger:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .c-burger:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-burger.is-active .c-burger__line {
  right: 50%;
}
.c-burger.is-active .c-burger__line:nth-of-type(1) {
  width: 110%;
  top: 50%;
  rotate: 45deg;
  translate: 50% -50%;
}
.c-burger.is-active .c-burger__line:nth-of-type(2) {
  opacity: 0;
}
.c-burger.is-active .c-burger__line:nth-of-type(3) {
  width: 110%;
  bottom: 50%;
  rotate: -45deg;
  translate: 50% 50%;
}
.c-burger__lines {
  width: 1.25rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 20/14;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.c-burger__line {
  position: absolute;
  right: 0;
  display: block;
  height: 0.0625rem;
  background: #ffffff;
  -webkit-transition: rotate 300ms;
  transition: rotate 300ms;
}
.c-burger__line:nth-of-type(1) {
  width: 100%;
  top: 0;
}
.c-burger__line:nth-of-type(2) {
  width: 1.0625rem;
  top: 50%;
  translate: 0 -50%;
}
.c-burger__line:nth-of-type(3) {
  width: 0.8125rem;
  bottom: 0;
}

.c-parallax {
  position: relative;
}
.c-parallax-clip {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0rem;
  clip-path: inset(0);
  z-index: -1;
}
.c-parallax-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(https://fastly.picsum.photos/id/196/2048/1536.webp?hmac=ms1QhP7El_5Dctsq98kJyzsT7-WqnGVNN-pwjAQ98x0);
}
.c-parallax-fixed.is-fp {
  background-image: url(../img/home/bg_homeLinks.webp);
}
@media screen and (max-width: 767px) {
  .c-parallax-fixed.is-fp {
    background-image: url(../img/home/bg_homeLinks_sp.webp);
  }
}
.c-parallax-fixed.is-sub {
  background-image: unset;
}
.c-parallax-fixed.is-sub video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 100%;
     object-position: 100% 100%;
}
.c-parallax-fixed--homeResearch {
  background-image: unset;
}
.c-parallax-fixed--homeResearch video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 100%;
     object-position: 100% 100%;
}
.c-parallax-body {
  position: relative;
  margin-top: 0rem;
  width: 100%;
}

.c-bg--home01 {
  width: 100%;
  height: 31.25rem;
  background: url(../img/home/bg01.webp) no-repeat 50% 50%/cover;
  background-position: 50% 0%;
  will-change: background-position;
}
@media screen and (max-width: 767px) {
  .c-bg--home01 {
    aspect-ratio: 375/124;
    height: auto;
  }
}

.c-subHeaderBg {
  background: url(../img/common/header_greeting.webp) no-repeat 50% 50%/cover;
  aspect-ratio: 1512/335;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-subHeaderBg {
    aspect-ratio: 375/150;
  }
}

.c-breadcrumb__list {
  text-align: right;
  padding-block: 0.9375rem 0;
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__list {
    text-align: left;
    padding-block: 0.4375rem 0;
    margin-bottom: 1.875rem;
  }
}
.c-breadcrumb__list--page {
  padding-block: 0;
}
.c-breadcrumb__item {
  display: inline;
}
.c-breadcrumb__item:nth-of-type(n+2)::before {
  content: ">";
  display: inline-block;
  color: #003D7F;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
  margin-right: 0.3125rem;
  margin-left: 0.1875rem;
}
.c-breadcrumb__item--home > a {
  padding-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item--home > a {
    padding-right: 0rem;
  }
}
.c-breadcrumb__item--home > a::before {
  content: "";
  display: inline-block;
  background: #003D7F;
  -webkit-mask: url(../img/common/icon_home.svg) no-repeat 50% 50%/contain;
          mask: url(../img/common/icon_home.svg) no-repeat 50% 50%/contain;
  width: 0.5625rem;
  height: 0.625rem;
  margin-right: 0.1875rem;
}
.c-breadcrumb__link {
  color: #003D7F;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (hover: hover) {
  .c-breadcrumb__link:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .c-breadcrumb__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.c-breadcrumb__link::after {
  content: "";
  display: block;
  background: #003D7F;
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-breadcrumb__current {
  color: #003D7F;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
}

.c-pagination {
  padding-block: 2.5rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    padding-block: 1.875rem;
  }
}
.c-pagination .nav-links {
  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;
  gap: 0.4375rem;
}
.c-pagination .page-numbers {
  color: #003D7F;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  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;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.3125rem;
  border: 0.0625rem solid #003D7F;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .c-pagination .page-numbers:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .c-pagination .page-numbers:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.c-pagination .page-numbers.current {
  border-radius: 0.3125rem;
  background: #003D7F;
  color: #ffffff;
}
.p-drawer {
  position: fixed;
  top: 3.125rem;
  left: 0;
  right: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  border-top: 0.0625rem solid #F8F8F8;
  height: calc(100svh - 3.125rem);
  overflow: scroll;
  /* 研究分野カード */
}
.p-drawer[aria-hidden=true] {
  visibility: hidden;
}
.p-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.p-drawer__overlay {
  position: absolute;
  inset: 0;
}
.p-drawer__overlay video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 100%;
     object-position: 100% 100%;
}
.p-drawer__panel {
  position: relative;
  z-index: 10;
  padding-inline: 0.9375rem;
  padding-block: 1.875rem 2.5rem;
  border-radius: 0 0 0.9375rem 0.9375rem;
  background: url(../img/common/bg_drawer.svg) repeat-y 100% 0%/10.9375rem 36.875rem #FFF;
}
.p-drawer.is-open .p-drawer__panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.p-drawer__link {
  color: #003D7F;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .p-drawer__link:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-drawer__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-drawer__link::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  background: #003D7F;
}
.p-drawer__link::after {
  content: "";
  display: block;
  width: 2.875rem;
  height: 0.0625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #003D7F;
  position: absolute;
  right: 100%;
  top: 50%;
  translate: 0 -50%;
}
.p-drawer__link.is-g2 {
  margin-left: 1.6875rem;
}
.p-drawer__mega {
  width: 100%;
  max-width: 27.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.9375rem;
  background: #F8F8F8;
  padding: 0.9375rem;
  margin-top: 1.125rem;
}
.p-drawerMega__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9375rem 0.4375rem;
}
.p-drawerMega__link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .p-drawerMega__link:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-drawerMega__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-drawerMega__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.375rem;
}
.p-drawerMega__ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  margin-top: 0.4375rem;
  color: #003D7F;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08125rem;
}
.p-drawerMega__icon {
  width: 0.8125rem;
  height: 0.5625rem;
}
/* メガメニュー領域 */
.p-fieldsNav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1000;
  width: 100%;
  -webkit-box-shadow: 0 0.5rem 0.625rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.5rem 0.625rem 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(0.125rem);
  border-top: 0.0625rem solid #E6E6E6;
  background: #ffffff;
  /* デフォは hidden 属性で非表示。開いたときにだけ見える */
  /* 背景オーバーレイ（クリック検出用） */
}
@media screen and (max-width: 767px) {
  .p-fieldsNav {
    display: none;
  }
}
.p-fieldsNav[hidden] {
  display: none;
}
.p-fieldsNav__inner {
  position: relative;
  padding-block: 1.875rem;
}
.p-fieldsNav__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.p-fieldsNav__link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .p-fieldsNav__link:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-fieldsNav__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-fieldsNav__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}
.p-fieldsNav__ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  margin-top: 0.9375rem;
  color: #003D7F;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
  padding-bottom: 0.6875rem;
  border-bottom: solid 0.125rem rgba(0, 61, 127, 0.5);
}
.p-fieldsNav__icon {
  width: 1rem;
  height: 1rem;
}
.p-fieldsNav__overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  border: 0;
  padding: 0;
  cursor: default;
}
.p-fieldsNav__overlay[hidden] {
  display: none;
}

/* ========== EVENTS / NEWS ========== */
.p-homeEventsNews {
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews {
    padding-top: 2.5rem;
  }
}
.p-homeEventsNews__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews__inner {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
.p-homeEventsNews__col {
  position: relative;
  padding-block: 0 2.5rem;
  padding-inline: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews__col {
    padding-block: 0 3.75rem;
    padding-inline: 0.9375rem;
  }
}
.p-homeEventsNews__col::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 2.3125rem);
  content: "";
  display: block;
  background: #FFF;
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews__col::before {
    height: calc(100% - 1.375rem);
  }
}
.p-homeEventsNews__head {
  position: relative;
}
.p-homeEventsNews__list {
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews__list {
    margin-top: 1.875rem;
  }
}
.p-homeEventsNews__item {
  padding-block: 1.75rem;
  border-bottom: solid 0.0625rem #C8C8C8;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews__item {
    padding-block: 1.25rem;
  }
}
.p-homeEventsNews__item:first-child {
  padding-top: 0;
}
.p-homeEventsNews__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.p-homeEventsNews__link {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .p-homeEventsNews__link:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-homeEventsNews__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-homeEventsNews__date {
  color: #003D7F;
  font-family: "Agdasima", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  margin-right: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews__date {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}
.p-homeEventsNews__badge {
  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;
  min-height: 1.4375rem;
  border-radius: 0.3125rem;
  padding-inline: 0.5rem 0.5rem;
  padding-block: 0 0.0625rem;
  color: #FFF;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews__badge {
    font-size: 0.75rem;
    padding-inline: 0.5rem;
  }
}
.p-homeEventsNews__badge[data-type=event] {
  background: #003D7F;
}
.p-homeEventsNews__badge[data-type=research] {
  background: #44B356;
}
.p-homeEventsNews__badge[data-type=news] {
  background: #EE9704;
}
.p-homeEventsNews__badge[data-type=recruit] {
  background: #A60061;
}
.p-homeEventsNews__badge[data-type=release] {
  background: #3D007F;
}
.p-homeEventsNews__ttl {
  display: block;
  margin-top: 0.875rem;
  color: #003D7F;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews__ttl {
    font-size: 0.8125rem;
    line-height: 1.53;
    margin-top: 0.625rem;
  }
}
.p-homeEventsNews__more {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-homeEventsNews__more {
    margin-top: 2.5rem;
  }
}

/* ========== LINKS ========== */
.p-homeLinks {
  margin-top: 3.75rem;
}
.p-homeLinks__inner {
  padding-bottom: 1.875rem;
}
.p-homeLinks__frame {
  position: relative;
  padding-block: 2.8125rem 3.4375rem;
}
.p-homeLinks__frame::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: #FFF;
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-homeLinks__frame {
    padding-block: 0 3.75rem;
  }
  .p-homeLinks__frame::before {
    height: calc(100% - 1.375rem);
  }
}
.p-homeLinks__head {
  text-align: center;
  position: relative;
}
.p-homeLinks__logos {
  position: relative;
  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;
  max-width: 60.9375rem;
  margin-inline: auto;
  gap: 0.9375rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-homeLinks__logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.875rem;
  }
}
.p-homeLinks__logo a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 14.0625rem;
  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;
}
@media (hover: hover) {
  .p-homeLinks__logo a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-homeLinks__logo a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-homeResearch {
  position: relative;
  margin-top: -1.25rem;
  padding-top: 6.25rem;
  padding-bottom: 50vh;
  /* インジケーター */
}
@media screen and (max-width: 767px) {
  .p-homeResearch {
    padding-top: 0;
    margin-top: 3.75rem;
  }
}
.p-homeResearch__list_trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -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;
  pointer-events: none;
}
.p-homeResearch__list_trigger_item {
  width: 1px;
  height: calc(100vh - var(--header-h) - 12.6875rem);
}
@media screen and (max-width: 767px) {
  .p-homeResearch__list_trigger_item {
    height: calc(100vh - var(--header-h) - 4rem);
  }
}
.p-homeResearch__list_body {
  position: absolute;
  top: 7.5rem;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__list_body {
    top: 0.625rem;
  }
}
.p-homeResearch__head {
  position: sticky;
  top: calc(var(--header-h, 0rem));
  z-index: 5;
  height: calc(100vh - var(--header-h) + 7.5rem);
}
@media screen and (max-width: 767px) {
  .p-homeResearch__head {
    max-width: 27.5rem;
    margin-inline: auto;
    height: calc(100vh - var(--header-h) + 0.625rem);
    top: calc(var(--header-h) + 20px);
  }
}
.p-homeResearch__head > .l-inner {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
  height: 12.6875rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__head > .l-inner {
    padding-block: 0;
    height: 4rem;
  }
}
.p-homeResearch__titleEn {
  text-align: left;
}
.p-homeResearch__titleJa {
  text-align: left;
}
.p-homeResearch__indicator {
  position: absolute;
  top: 5.875rem;
  right: 8.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__indicator {
    -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: start;
    gap: 1.8125rem;
    right: 14px;
    top: 30px;
  }
}
.p-homeResearch__indicator::before {
  content: "";
  display: block;
  background: #003D7F;
  width: calc(100% - 6.25rem);
  height: 0.0625rem;
  position: absolute;
  bottom: 0.375rem;
  left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__indicator::before {
    width: 0.0625rem;
    height: calc(100% - 2.5rem);
    left: -0.75rem;
    bottom: auto;
    top: 0.5rem;
  }
}
.p-homeResearch__indicator li {
  position: relative;
  cursor: pointer;
  color: #003D7F;
  text-align: center;
  font-family: "Agdasima", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
  -ms-flex-item-align: end;
      align-self: end;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__indicator li {
    font-size: 0.75rem;
    letter-spacing: 0.075rem;
    text-align: left;
    -ms-flex-item-align: start;
        align-self: start;
  }
}
.p-homeResearch__indicator li::after {
  content: "";
  display: block;
  border-radius: 50%;
  background: #ffffff;
  margin-top: 0.3125rem;
  margin-inline: auto;
  width: 0.8125rem;
  height: 0.8125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: solid 0.0625rem #003D7F;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__indicator li::after {
    width: 0.4375rem;
    height: 0.4375rem;
    margin-inline: 0;
    position: absolute;
    right: calc(100% + 0.5rem);
    top: 0.1875rem;
    margin-top: 0;
  }
}
.p-homeResearch__indicator li.is-active::after {
  background: #003D7F;
}
.p-homeResearch__indicator li:nth-of-type(1) {
  margin-right: 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__indicator li:nth-of-type(1) {
    margin-right: 0;
  }
}
.p-homeResearch__indicator li:nth-of-type(2) {
  margin-right: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__indicator li:nth-of-type(2) {
    margin-right: 0;
  }
}
.p-homeResearch__indicator li:nth-of-type(3) {
  margin-right: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__indicator li:nth-of-type(3) {
    margin-right: 0;
  }
}
.p-homeResearch__blocks {
  margin-inline: auto;
  position: relative;
}
.p-homeResearch__list_pin {
  position: absolute;
  top: 0;
  width: 100%;
  height: calc(100vh - var(--header-h) - 12.6875rem);
}
@media screen and (max-width: 767px) {
  .p-homeResearch__list_pin {
    height: calc(100svh - var(--header-h) - 4rem);
  }
}
.p-homeResearch__block {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - var(--header-h) - 12.6875rem);
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    height: calc(100svh - var(--header-h) - 4rem);
  }
}
.p-homeResearch__block.is-active {
  opacity: 1;
  z-index: 2;
}
.p-homeResearch__img {
  height: 100%;
  width: 54%;
  overflow: hidden;
  border-radius: 0 1.875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__img {
    height: auto;
    width: 100%;
    border-radius: unset;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.p-homeResearch__img picture {
  height: 100%;
}
.p-homeResearch__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: none;
  transition: none;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-homeResearch__body {
  position: relative;
  padding-top: 2.9375rem;
  height: 100%;
  width: 46%;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__body {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    padding-inline: 0.9375rem;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.p-homeResearch__content {
  max-width: 27.3125rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__content {
    max-width: 15.3125rem;
  }
}
.p-homeResearch__icon {
  width: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__icon {
    width: 3.75rem;
  }
}
.p-homeResearch__label {
  color: #003D7F;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.125rem;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__label {
    font-size: min(0.9375rem, 2.4vh);
    letter-spacing: 0.09375rem;
    margin-top: 1rem;
  }
}
.p-homeResearch__text {
  color: #003D7F;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__text {
    font-size: min(0.8125rem, 2vh);
    line-height: 1.4;
    margin-top: min(1.125rem, 1.6vh);
  }
}
.p-homeResearch__btn {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__btn {
    margin-top: min(1.25rem, 1.6vh);
  }
}
.p-homeResearch__bgText {
  color: #003D7F;
  text-align: right;
  font-family: "Agdasima", sans-serif;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3125rem;
  opacity: 0.2;
  position: absolute;
  right: 0;
  bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-homeResearch__bgText {
    opacity: 0.05;
    right: auto;
    left: 0.9375rem;
    bottom: auto;
    top: 2.875rem;
    white-space: nowrap;
    text-align: left;
  }
}

.p-mvWrap {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mvWrap {
    padding-bottom: 5.25rem;
  }
}

.p-mv {
  position: relative;
  border-radius: 0 0 1.5rem 1.5rem;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    border-radius: 0 0 0.9375rem 0.9375rem;
  }
}
.p-mv__slider .slick-list {
  overflow: visible;
}
.p-mv__slide {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
}
.p-mv__bg {
  position: absolute;
  inset: 0;
  background: var(--bg) center/cover no-repeat;
  border-radius: 0 0 1.5rem 1.5rem;
  -webkit-filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 767px) {
  .p-mv__bg {
    border-radius: 0 0 0.9375rem 0.9375rem;
  }
}
.p-mv__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    max-width: calc(100% - 1.875rem);
    bottom: 1.25rem;
  }
}
.p-mv__meta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6875rem;
  margin-bottom: 0.5rem;
}
.p-mv__date {
  color: #003D7F;
  font-family: "Agdasima", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  background: #FFF;
  height: 2.6875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 0.8125rem 0.75rem;
  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;
}
@media screen and (max-width: 767px) {
  .p-mv__date {
    font-size: 0.8125rem;
    height: 1.4375rem;
    padding-inline: 0.4375rem 0.375rem;
  }
}
.p-mv__tag {
  color: #FFF;
  text-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.25);
  font-family: "Agdasima", sans-serif;
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.21875rem;
}
@media screen and (max-width: 767px) {
  .p-mv__tag {
    font-size: 1.1875rem;
    letter-spacing: 0.12025rem;
  }
}
.p-mv__title {
  color: #003D7F;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.09375rem;
  height: 3.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    height: auto;
    display: block;
    line-height: 1.4;
  }
}
.p-mv__title span {
  background: #fff;
  display: inline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 0.8125rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title span {
    display: inline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-inline: 0;
  }
}
.p-mv__thumbsWrap {
  position: absolute;
  left: 50%;
  bottom: 3.4375rem;
  translate: -50% 0;
  width: 68.75rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-mv__thumbsWrap {
    bottom: -4.375rem;
    width: 15.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__thumbs {
    overflow: visible !important;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__thumbs .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__thumbs .slick-track {
    gap: 0rem;
  }
}
.p-mv__thumbs .slick-list {
  overflow: visible;
}
.p-mv__thumbItem {
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  position: relative;
  cursor: pointer;
  pointer-events: none;
}
.p-mv__thumbItem:hover {
  opacity: 0.6 !important;
}
@media screen and (max-width: 767px) {
  .p-mv__thumbItem {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    opacity: 1;
    margin-inline: 0.3125rem;
  }
}
.p-mv__thumbItem.slick-active {
  opacity: 0.8;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__thumbItem.slick-active {
    opacity: 1;
  }
}
.p-mv__thumbItem.slick-center {
  opacity: 1;
  pointer-events: none;
}
.p-mv__thumbItem.slick-center * {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.p-mv__thumbItem.slick-center .p-mv__thumbFlex {
  background: #003D7F;
  position: relative;
}
.p-mv__thumbItem.slick-center .p-mv__thumbFlex::before {
  content: "";
  display: block;
  background: #003D7F;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 4.8125rem;
  height: 1.4375rem;
  position: absolute;
  translate: -50% 0;
  left: 50%;
  bottom: 7.5625rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-mv__thumbItem.slick-center .p-mv__thumbFlex::before {
    bottom: 4rem;
  }
}
.p-mv__thumbInner {
  padding-top: 4.8125rem;
}
.p-mv__thumbFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 1.25rem 1.0625rem;
  padding-inline: 0.9375rem;
  gap: 0.625rem;
  background: #FFF;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__thumbFlex {
    padding-inline: 0.625rem;
    padding-block: 0.625rem;
  }
}
.p-mv__thumbImg {
  width: 7.625rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 122/91;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .p-mv__thumbImg {
    width: 4.75rem;
    aspect-ratio: 76/57;
  }
}
.p-mv__thumbImg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3125rem;
}
.p-mv__thumbTxt {
  padding-top: 0.625rem;
  position: relative;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .p-mv__thumbTxt {
    padding-top: 0rem;
  }
}
.p-mv__thumbDate {
  color: #003D7F;
  font-family: "Agdasima", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.11;
  border-bottom: solid 0.0625rem rgba(0, 61, 127, 0.1);
  display: block;
  padding-bottom: 0.3125rem;
  margin-bottom: 0.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__thumbDate {
    font-size: 0.8125rem;
    padding-bottom: 0.0625rem;
    margin-bottom: 0.125rem;
    line-height: 1.5384615385;
  }
}
.p-mv__thumbTitle {
  color: #003D7F;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  position: relative;
  display: -webkit-box;
  /* 必須: flexboxレイアウト */
  -webkit-box-orient: vertical;
  /* 必須: 縦方向の制限 */
  overflow: hidden;
  /* はみ出た部分を隠す */
  -webkit-line-clamp: 2;
  /* 最大行数を指定 */
}
@media screen and (max-width: 767px) {
  .p-mv__thumbTitle {
    font-size: 0.75rem;
    line-height: 1.4166666667;
    display: -webkit-box;
    /* 必須: flexboxレイアウト */
    -webkit-box-orient: vertical;
    /* 必須: 縦方向の制限 */
    overflow: hidden;
    /* はみ出た部分を隠す */
    -webkit-line-clamp: 2;
    /* 最大行数を指定 */
  }
}

@media screen and (max-width: 767px) {
  .p-information {
    overflow: hidden;
  }
}
.p-information__inner {
  display: grid;
  grid-template-columns: 1fr 19.375rem;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-information__inner {
    display: block;
  }
}
.p-information__title {
  text-align: left;
}
.p-information__sub {
  text-align: left;
}
.p-information__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-information__list {
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}
.p-information__item:not(:last-child) {
  border-bottom: solid #C8C8C8 0.0625rem;
}
.p-information__link {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  padding-bottom: 1.75rem;
}
@media (hover: hover) {
  .p-information__link:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-information__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-information__link {
    padding-bottom: 1.25rem;
  }
}
.p-information__date {
  color: #003D7F;
  font-family: "Agdasima", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}
.p-information__label {
  display: inline-block;
  color: #FFF;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3125rem;
  height: 1.4375rem;
  border-radius: 0.3125rem;
  background: #003D7F;
  padding-inline: 0.5rem;
  padding-block: 0.0625rem 0;
  position: relative;
  top: -0.125rem;
  margin-left: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-information__label {
    font-size: 0.75rem;
  }
}
.p-information__label--event {
  background: #003D7F;
}
.p-information__label--research {
  background: #44B356;
}
.p-information__label--news {
  background: #EE9704;
}
.p-information__label--recruit {
  background: #A60061;
}
.p-information__label--release {
  background: #3D007F;
}
.p-information__text {
  color: #003D7F;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-information__text {
    font-size: 0.8125rem;
    line-height: 1.53;
    margin-top: 0.625rem;
  }
}
.p-information__none {
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-information__none {
    font-size: 0.8125rem;
    line-height: 1.53;
    margin-top: 1.875rem;
    margin-bottom: 5.625rem;
  }
}
.p-information__sideInner {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  left: 0;
}

.p-informationSide--archive {
  margin-top: 1.875rem;
}
.p-informationSide__title {
  color: #003D7F;
  font-family: "Agdasima", sans-serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1875rem;
  padding-inline: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-informationSide__title {
    font-size: 1.25rem;
    letter-spacing: 0.125rem;
    padding-inline: 0.9375rem 0;
  }
}
.p-informationSide__list {
  border-radius: 1.25rem;
  background: #FFF;
  margin-top: -0.9375rem;
  padding-block: 2.25rem 1.375rem;
  padding-inline: 1.25rem 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-informationSide__list {
    border-radius: 0.625rem;
    margin-top: -0.625rem;
    padding-block: 1.5625rem 1.25rem;
    padding-inline: 0.9375rem 0;
  }
}
.p-informationSide__list--category {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-inline: 1.25rem;
  gap: 0.625rem;
}
.p-informationSide__list--archive {
  padding-inline: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-informationSide__list--archive {
    padding-inline: 0.9375rem;
  }
}
.p-informationSide__item--category {
  display: block;
}
.p-informationSide__link--category {
  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;
  color: #FFF;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3125rem;
  width: 100%;
  height: 1.4375rem;
  border-radius: 0.3125rem;
  background: #003D7F;
  position: relative;
}
.p-informationSide__link--category.is-event {
  background: #003D7F;
}
.p-informationSide__link--category.is-research {
  background: #44B356;
}
.p-informationSide__link--category.is-news {
  background: #EE9704;
}
.p-informationSide__link--category.is-recruit {
  background: #A60061;
}
.p-informationSide__link--category.is-release {
  background: #3D007F;
}
.p-informationSide__link--archive {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #003D7F;
  font-family: "Agdasima", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1875rem;
  border-bottom: solid 0.0625rem #F0F0F0;
  padding-bottom: 0.5rem;
  position: relative;
}
@media (hover: hover) {
  .p-informationSide__link--archive:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-informationSide__link--archive:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-informationSide__link--archive ._unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding-top: 0.0625rem;
}
.p-informationSide__link--archive ._arr {
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1rem;
  background: #003D7F;
  border-radius: 50%;
}
.p-informationSide__link--archive ._arr::before {
  content: "";
  display: block;
  background: #ffffff;
  -webkit-mask: url(../img/common/icon_arr.svg) no-repeat 50% 50%/contain;
          mask: url(../img/common/icon_arr.svg) no-repeat 50% 50%/contain;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  left: calc(50% + 0.01875rem);
  top: calc(50% + 0.01875rem);
  translate: -50% -50%;
}

.p-informationDetail {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail {
    margin-top: 1.25rem;
  }
}
.p-informationDetail__thumb {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__thumb {
    width: 100vw;
    max-width: 27.5rem;
    aspect-ratio: 16/9;
    margin-left: -0.9375rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-informationDetail__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
.p-informationDetail__date {
  color: #003D7F;
  font-family: "Agdasima", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}
.p-informationDetail__title {
  color: #003D7F;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 0.625rem;
  padding-bottom: 1.25rem;
  border-bottom: solid 0.0625rem #C8C8C8;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__title {
    font-size: 1rem;
    line-height: 1.4;
    padding-bottom: 0.9375rem;
  }
}
.p-informationDetail__body {
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__body {
    padding-top: 1.25rem;
  }
}
.p-informationDetail__body h2 {
  color: #003D7F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(0, 61, 127, 0.1);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__body h2 {
    font-size: 1rem;
    line-height: 1.25;
  }
}
.p-informationDetail__body h3, .p-informationDetail__body h4, .p-informationDetail__body h5, .p-informationDetail__body h6 {
  color: #003D7F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__body h3, .p-informationDetail__body h4, .p-informationDetail__body h5, .p-informationDetail__body h6 {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
.p-informationDetail__body h3::before, .p-informationDetail__body h4::before, .p-informationDetail__body h5::before, .p-informationDetail__body h6::before {
  content: "";
  display: inline-block;
  background: #003D7F;
  width: 0.9375rem;
  height: 0.0625rem;
  position: relative;
  margin-right: 0.625rem;
  top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__body h3::before, .p-informationDetail__body h4::before, .p-informationDetail__body h5::before, .p-informationDetail__body h6::before {
    width: 0.625rem;
    margin-right: 0.3125rem;
    top: 0.5625rem;
  }
}
.p-informationDetail__body p {
  color: #003D7F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__body p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
}
.p-informationDetail__body p a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (hover: hover) {
  .p-informationDetail__body p a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-informationDetail__body p a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-informationDetail__body .wp-block-buttons:not(:first-child) {
  margin-top: 1.875rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__body .wp-block-buttons:not(:first-child) {
    margin-bottom: 2.5rem;
  }
}
.p-informationDetail__body .wp-block-buttons > .wp-block-button .wp-block-button__link {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 624.9375rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  background: #003D7F;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1125rem;
  padding-block: 1.6875rem;
  padding-inline: 3.6875rem;
}
@media (hover: hover) {
  .p-informationDetail__body .wp-block-buttons > .wp-block-button .wp-block-button__link:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-informationDetail__body .wp-block-buttons > .wp-block-button .wp-block-button__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-informationDetail__body .wp-block-buttons > .wp-block-button .wp-block-button__link {
    font-size: 0.8125rem;
    letter-spacing: 0.08125rem;
    padding-block: 1.125rem;
    padding-inline: 2.4375rem;
  }
}
.p-informationDetail__body figure:not(:first-child) {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__body figure:not(:first-child) {
    margin-block: 2.5rem;
  }
}
.p-informationDetail__body figure figcaption {
  color: #003D7F;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__body figure figcaption {
    font-size: 0.6875rem;
  }
}
.p-informationDetail__nav {
  display: grid;
  grid-template-columns: 1fr 11.0625rem 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.875rem;
  border-top: solid 0.0625rem #003D7F;
  padding-block: 1.875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__nav {
    gap: 1.1875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 1.25rem 2.5rem;
  }
}
.p-informationDetail__navDate {
  color: #003D7F;
  font-family: "Agdasima", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1, 25;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__navDate {
    display: none;
  }
}
.p-informationDetail__navTitle {
  color: #003D7F;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.53;
  display: block;
  display: -webkit-box;
  /* 必須: flexboxレイアウト */
  -webkit-box-orient: vertical;
  /* 必須: 縦方向の制限 */
  overflow: hidden;
  /* はみ出た部分を隠す */
  -webkit-line-clamp: 2;
  /* 最大行数を指定 */
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__navTitle {
    display: none;
  }
}
.p-informationDetail__navSP {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-informationDetail__navSP {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.3125rem;
    color: #003D7F;
    font-family: "Agdasima", sans-serif;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-informationDetail__navSP.is-right {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
}
.p-informationDetail__navSP ._arr {
  font-family: "Noto Sans JP", sans-serif;
}
.p-informationDetail__back {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  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;
  border-radius: 624.9375rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  background: #003D7F;
  width: 11.0625rem;
  height: 4.5rem;
  color: #FFF;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1125rem;
}
@media (hover: hover) {
  .p-informationDetail__back:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-informationDetail__back:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-informationDetail__back {
    height: 3.125rem;
    font-size: 0.9375rem;
    letter-spacing: 0.09375rem;
  }
}

.p-greeting .c-subHeaderBg {
  background-image: url(../img/common/header_greeting.webp);
}
@media screen and (max-width: 767px) {
  .p-greeting .c-subHeaderBg {
    background-image: url(../img/common/header_greeting_sp.webp);
  }
}
.p-greeting__inner {
  padding-block: 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__inner {
    padding-block: 0;
  }
}
.p-greeting__intro {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__intro {
    margin-top: 2.5rem;
  }
}
.p-greeting__introHead {
  position: relative;
}
.p-greeting__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3125rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__content {
    margin-top: 0.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
}
.p-greeting__photo {
  position: relative;
  width: 21.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-greeting__photo {
    width: 100%;
  }
}
.p-greeting__photoCaption {
  margin-top: -1.375rem;
  margin-inline: auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-greeting__photoNameJa {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  opacity: 0;
  pointer-events: none;
}
.p-greeting__photoNameJa span {
  color: #003D7F;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #ffffff;
  padding-inline: 0.8125rem 0.75rem;
}
.p-greeting__photoNameJa span._role {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  padding-block: 0.4375rem 0.1875rem;
}
.p-greeting__photoNameJa span._name {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  padding-block: 0 0.1875rem;
  margin-top: -0.1875rem;
}
.p-greeting__photoNameEn {
  color: #003D7F;
  font-family: "Agdasima", sans-serif;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  opacity: 0.2;
  position: absolute;
  top: 24.375rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-greeting__photoNameEn {
    top: auto;
    bottom: -3.875rem;
  }
}
.p-greeting__message p {
  color: #003D7F;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-greeting__message p {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
}
.p-greeting__messageName {
  text-align: right;
  color: #003D7F;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__messageName {
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-top: 0.625rem;
  }
}

.p-organization .c-subHeaderBg {
  background-image: url(../img/common/header_organization.webp);
}
@media screen and (max-width: 767px) {
  .p-organization .c-subHeaderBg {
    background-image: url(../img/common/header_organization_sp.webp);
  }
}
.p-organization__inner {
  padding-block: 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-organization__inner {
    padding-block: 0;
  }
}
.p-organization__vision {
  margin-top: 5.625rem;
  border-radius: 1.25rem;
  background: #003D7F;
  position: relative;
  width: 70rem;
  height: 11.3125rem;
  padding-block: 1.25rem;
  padding-inline: 5.375rem 1.25rem;
  background: url(../img/organization/vision_bg.svg) no-repeat 100% 100%/28.4375rem 8.4375rem #003D7F;
}
@media screen and (max-width: 767px) {
  .p-organization__vision {
    margin-top: 2.5rem;
    width: 100%;
    height: auto;
    border-radius: 0.9375rem;
    padding-block: 1.25rem;
    padding-inline: 1.875rem;
    background: url(../img/organization/vision_bg.svg) no-repeat 100% calc(100% + 0.375rem)/13.5625rem 4rem #003D7F;
  }
}
.p-organization__visionLabel {
  position: absolute;
  left: 1.3125rem;
  top: 1.375rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-organization__visionLabel {
    top: 0.5625rem;
    left: 0;
  }
}
.p-organization__visionLabelText {
  color: #ffffff;
  font-family: "Agdasima", sans-serif;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3125rem;
  opacity: 0.2;
}
.p-organization__visionBody {
  width: 100%;
  height: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-organization__visionBody {
    gap: 0.625rem;
  }
}
.p-organization__visionTitle {
  color: #ffffff;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-organization__visionTitle {
    font-size: 1rem;
  }
}
.p-organization__visionLead {
  color: #ffffff;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-organization__visionLead {
    font-size: 0.875rem;
  }
}
.p-organization__body {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-organization__body {
    margin-top: 1.875rem;
  }
}
.p-organization__chart {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-organization__chart {
    margin-top: 1.25rem;
  }
}
.p-organization__chart img {
  margin-inline: auto;
}
.p-organization__text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-organization__text {
    margin-top: 1.625rem;
  }
}
.p-organization__text p {
  color: #003D7F;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-organization__text p {
    font-size: 0.8125rem;
  }
}
.p-organization__pdf {
  margin-top: 3.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-organization__pdf {
    margin-top: 1.25rem;
  }
}

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

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}
.u-desktop-flex {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}