@charset "UTF-8";
/*---------------------
共通スタイル
---------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 71px;
}
@media screen and (min-width: 1025px) {
  html {
    scroll-padding-top: 105px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #071221;
}

#top {
  padding-top: 71px;
}
@media screen and (min-width: 1025px) {
  #top {
    padding-top: 105px;
  }
}

section {
  scroll-margin-top: 71px;
}
@media screen and (min-width: 1025px) {
  section {
    scroll-margin-top: 105px;
  }
}

/* テキスト */
.text-primary {
  color: #00348b;
  font-weight: 500;
}

.text-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.text-italic {
  font-style: italic;
  padding-right: 6px;
}

.text-medium {
  font-weight: 500;
}

.text-bold {
  font-weight: 700;
}

.text-marker {
  background-color: #e7e7f2;
}

.body-text {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 180%;
  letter-spacing: clamp(0.026rem, 0.025rem + 0.01vw, 0.03rem);
}

/* インナー */
.inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: clamp(3.5rem, 2.972rem + 2.25vw, 5rem) clamp(1.875rem, -0.546rem + 10.33vw, 8.75rem);
}

/* CTAスタイル */
.cta {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cta::after {
  content: "";
  position: absolute;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  pointer-events: none;
}

.cta--primary {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid #005bac;
  color: #005bac;
  /* ▼ 追加：hover時に文字＆afterを白に */
}
.cta--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
  background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}
.cta--primary::after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
  background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
  pointer-events: none;
}
.cta--primary:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.cta--primary:hover {
  color: #fff;
}
.cta--primary:hover::after {
  background: #fff;
  pointer-events: none;
}

.cta--secondary {
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
  background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
  color: #fff;
  border: none;
  -webkit-box-shadow: 0 3px 5px 0 rgba(6, 16, 29, 0.2);
          box-shadow: 0 3px 5px 0 rgba(6, 16, 29, 0.2);
  /* hover用の背景レイヤー */
  /* 文字を前に出す */
}
.cta--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: -1;
  border-radius: 999px;
}
.cta--secondary {
  z-index: 0;
}
.cta--secondary::after {
  content: "";
  background: #fff;
  pointer-events: none;
}
.cta--secondary:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.cta__label {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  will-change: transform;
  z-index: 3;
}

/* CTAサイズ */
.cta--md {
  padding: 12px 44px 12px 24px;
  min-height: 50px;
  height: auto;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.45px;
}
.cta--md::after {
  right: 24px;
  width: 6px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .cta--md {
    padding: 14px 56px 14px 32px;
    min-height: 56px;
    height: auto;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .cta--md::after {
    right: 28px;
    width: 11px;
  }
}
@media screen and (min-width: 1025px) {
  .cta--md {
    padding: 16px 80px 16px 40px;
    height: 63px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.54px;
  }
  .cta--md::after {
    right: 40px;
    width: 8px;
  }
  .cta--md:hover::after {
    width: 12px;
    -webkit-transform: translateY(-50%) translateX(2px) scale(1.1);
            transform: translateY(-50%) translateX(2px) scale(1.1);
  }
}

.cta--sm {
  padding: 6px 48px 7px 24px;
  min-height: 37px;
  height: auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.42px;
}
.cta--sm::after {
  right: 24px;
  width: 6px;
  aspect-ratio: 1/1;
}
.cta--sm:hover::after {
  width: 9px;
  -webkit-transform: translateY(-50%) translateX(2px) scale(1.1);
          transform: translateY(-50%) translateX(2px) scale(1.1);
}
@media screen and (min-width: 768px) {
  .cta--sm {
    padding: 6px 40px 6px 20px;
    min-height: 34px;
    height: auto;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .cta--sm::after {
    right: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .cta--sm {
    padding-inline: 24px 45px;
  }
}

/* リンク aタグ */
.link {
  color: #0017c1;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
  opacity: 0.8;
}
.link:visited {
  color: #0017c1;
}

/* SPのみ改行 */
.is-sp {
  display: inline;
}

.is-pc {
  display: none;
}

/* PC以上 */
@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
  .is-pc {
    display: inline;
  }
}
/* ヘディング */
.section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.5rem, 0.412rem + 0.38vw, 0.75rem);
  padding-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  .section-heading {
    padding-bottom: clamp(2rem, 1.648rem + 1.5vw, 3rem);
  }
}

.section-heading__en {
  font-family: "Inter", sans-serif;
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  font-weight: 500;
  line-height: 120%;
  text-transform: capitalize;
  padding-left: clamp(0.5rem, 0.368rem + 0.56vw, 0.875rem);
  position: relative;
}
.section-heading__en::after {
  content: "";
  position: absolute;
  left: -4px;
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #00348b;
}
.section-heading__en--no-marker {
  padding-left: 0;
}
.section-heading__en--no-marker::after {
  content: none;
}

.section-heading__ja {
  color: #071221;
  font-size: clamp(1.75rem, 1.486rem + 1.13vw, 2.5rem);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: clamp(0.052rem, 0.045rem + 0.03vw, 0.075rem);
}

.section-lead {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 180%;
  letter-spacing: clamp(0.026rem, 0.025rem + 0.01vw, 0.03rem);
}

.heading-3 {
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: clamp(0.037rem, 0.035rem + 0.01vw, 0.045rem);
  color: #00348b;
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* タグ */
.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.36px;
}

/* 関連分野タグ */
.tag--field {
  background: #00348b;
}

/* 記事タイプタグ */
.tag--type {
  background: #007acc;
}

.tag--detail {
  background: #002563;
}

/* 矢印アイコン */
@-webkit-keyframes arrow-outin-ltr {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) translateX(0);
            transform: translate(-50%, -50%) translateX(0);
  }
  35% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateX(10px);
            transform: translate(-50%, -50%) translateX(10px);
  } /* 右へ消える */
  36% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateX(-10px);
            transform: translate(-50%, -50%) translateX(-10px);
  } /* 左から準備 */
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) translateX(0);
            transform: translate(-50%, -50%) translateX(0);
  }
}
@keyframes arrow-outin-ltr {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) translateX(0);
            transform: translate(-50%, -50%) translateX(0);
  }
  35% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateX(10px);
            transform: translate(-50%, -50%) translateX(10px);
  } /* 右へ消える */
  36% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateX(-10px);
            transform: translate(-50%, -50%) translateX(-10px);
  } /* 左から準備 */
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) translateX(0);
            transform: translate(-50%, -50%) translateX(0);
  }
}
.link--arrow {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.42px;
  position: relative;
  padding-right: 44px;
  /* 丸（枠） */
  /* 矢印（アイコン） */
}
.link--arrow::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid #005bac;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  pointer-events: none;
}
.link--arrow::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 11px;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/icon/icon-arrow.svg) no-repeat center/contain;
  pointer-events: none;
}
@media (hover: hover) {
  .link--arrow:hover::after {
    -webkit-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
  }
  .link--arrow:hover::before {
    -webkit-animation: arrow-outin-ltr 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
            animation: arrow-outin-ltr 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
  }
}

/*---------------------
  header & navigation
---------------------*/
.header {
  height: 71px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 8px 14px;
  z-index: 1100;
  border-radius: 6px 6px 0 0;
  /* header自体は透過させる */
  background: transparent;
}
@media screen and (min-width: 1025px) {
  .header {
    height: 105px;
    padding: 22px 20px;
  }
}

.header__inner {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  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;
  border-radius: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0 8px 40px rgba(19, 29, 48, 0.05);
          box-shadow: 0 8px 40px rgba(19, 29, 48, 0.05);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}
@media screen and (min-width: 1025px) {
  .header__inner {
    padding: clamp(0.5rem, 0.412rem + 0.38vw, 0.75rem) clamp(1.25rem, -0.602rem + 2.89vw, 2rem);
  }
}

/* 👇 白背景の「本体」だけを作る */
.header__inner::before {
  content: "";
  position: absolute;
  /* paddingのうちの22px20px分だけ内側に白背景 */
  top: 8px;
  bottom: 8px;
  left: 14px;
  right: 14px;
  width: 347px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .header__inner::before {
    top: 22px;
    bottom: 22px;
    left: 20px;
    right: 20px;
  }
}

.header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1200;
}

.header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1px;
  text-decoration: none;
}

.header__logo {
  width: clamp(6.25rem, 5.304rem + 4.04vw, 8.938rem);
  height: clamp(1.688rem, 1.489rem + 0.85vw, 2.25rem);
}
.header__logo img {
  width: 100%;
  height: auto;
}

.header__name {
  color: #00348b;
  font-weight: 700;
  line-height: 120%;
  font-style: italic;
  font-size: 17.5px;
  padding-top: 3px;
}
@media screen and (min-width: 768px) {
  .header__name {
    font-size: 25px;
  }
}

.global-nav {
  position: fixed;
  height: 100svh;
  background: rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  z-index: 1000;
  border-radius: 6px 6px 0 0;
  /* ▼ 追加：ふわっと用 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* ▲ */
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
}
.global-nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  margin-top: 14px;
  /* ▼ 追加：ふわっと用 */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: opacity 0.3s ease, visibility 0s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0s, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s, -webkit-transform 0.3s ease;
  /* ▲ */
}
@media (max-width: 1024px) {
  .global-nav {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 32px;
    padding-top: 80px;
    padding-inline: 20px;
    padding-bottom: 0;
    top: -14px;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    border-radius: 6px 6px 0 0;
    -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* ここを“スライド”から“ふわっ”寄りに */
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  .global-nav.is-open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 1025px) {
  .global-nav {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(1.125rem, -1.036rem + 3.37vw, 2rem);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.125rem, -1.036rem + 3.37vw, 2rem);
}
@media (max-width: 1024px) {
  .global-nav__list {
    display: grid;
    width: min(307px, 100%);
    list-style: none;
    margin: 0 auto;
  }
}

.global-nav__item {
  list-style: none;
  position: relative;
  line-height: 170%;
  letter-spacing: 0.42px;
  font-size: clamp(0.875rem, 0.803rem + 0.31vw, 1rem);
}
@media screen and (min-width: 1025px) {
  .global-nav__item {
    font-size: 14px;
  }
}

.global-nav__link {
  position: relative;
  color: #071221;
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.global-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
  background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (max-width: 1024px) {
  .global-nav__link {
    display: block;
    padding-block: 6px;
    border-bottom: 1px solid #e6e7e8;
    /* SPでは hover を無効化したい場合（任意） */
  }
  .global-nav__link:hover {
    background: none;
    color: #071221;
    -webkit-text-fill-color: initial;
  }
  .global-nav__link:hover::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

a.global-nav__link:hover {
  /* ▼ 文字をグラデーションに */
  background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
  background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
a.global-nav__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.global-nav__toggle {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
  padding-right: 18px;
}
.global-nav__toggle::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 6px;
  left: 48px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/icon/icon-arrow-down-text.svg") no-repeat center/contain;
  pointer-events: none;
}
.global-nav__toggle:hover::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (max-width: 1024px) {
  .global-nav__toggle {
    display: block;
    padding-block: 6px;
    text-decoration: none;
    border-bottom: 1px solid #e6e7e8;
    width: 100%;
    text-align: left;
  }
  .global-nav__toggle::after {
    content: none;
  }
}

/* ▼▼ サブメニュー（最初は非表示） ▼▼ */
.global-nav__subnav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  margin-top: 9px;
  padding: 16px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0 8px 40px 0 rgba(19, 29, 48, 0.05);
          box-shadow: 0 8px 40px 0 rgba(19, 29, 48, 0.05);
  backdrop-filter: blur(2.5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  /* SP/TAB（1024px以下）は常時表示：今のまま */
}
.global-nav__subnav li a {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  color: #071221;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  /* 下線（左から出る） */
}
.global-nav__subnav li a::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -1px;
  width: calc(100% - 16px);
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
  background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  pointer-events: none;
}
.global-nav__subnav li a:hover {
  /* ▼ グラデーション文字 */
  background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
  background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.global-nav__subnav li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.global-nav__subnav li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  pointer-events: none;
}
.global-nav__subnav li span {
  position: relative;
}
.global-nav__subnav li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 4px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .global-nav__subnav {
    position: static;
    width: auto;
    padding: 6px;
    border: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    backdrop-filter: none;
  }
  .global-nav__subnav li a {
    display: inline-block;
    padding: 6px 0 6px 12px;
    color: #071221;
  }
  .global-nav__subnav li a::after {
    display: none;
  }
  .global-nav__subnav li a::before {
    background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
    background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  }
}
@media screen and (min-width: 1025px) {
  .global-nav__subnav {
    gap: 16px;
  }
}

/* クリック開閉（今まで通り残す） */
.global-nav__item--open .global-nav__subnav {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ✅ PCのみ：ホバーでも開く（＋キーボード操作も） */
@media (hover: hover) and (pointer: fine) {
  .global-nav__item--has-children:hover .global-nav__subnav,
  .global-nav__item--has-children:focus-within .global-nav__subnav {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.drawer-icon {
  position: fixed;
  top: 17px;
  right: 14px;
  left: auto !important;
  bottom: auto;
  width: 24px;
  height: 10px;
  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;
  z-index: 1200;
}
@media screen and (min-width: 1025px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  width: 100%;
  height: 2px;
  background: #00348b;
  border-radius: 2px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
}

/* -----------------------------
   Drawer icon animation
----------------------------- */
/* hover：少し寄る（PCだけ） */
@media (hover: hover) and (pointer: fine) {
  .drawer-icon:hover .drawer-icon__bar:nth-child(1) {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  .drawer-icon:hover .drawer-icon__bar:nth-child(2) {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}
/* open：×になる */
.drawer-icon.is-nav-open .drawer-icon__bar:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(45deg);
          transform: translateY(4px) rotate(45deg);
}

.drawer-icon.is-nav-open .drawer-icon__bar:nth-child(2) {
  -webkit-transform: translateY(-4px) rotate(-45deg);
          transform: translateY(-4px) rotate(-45deg);
}

/* -----------------------------
   CTA label toggle
----------------------------- */
/* 初期状態：open文言は隠す（全端末共通） */
.global-nav__cta .cta__label--open {
  display: none;
}

/* SPだけ：メニューが開いている時に文言を切り替える */
@media (max-width: 1024px) {
  body.is-nav-open .global-nav__cta .cta__label--default {
    display: none;
  }
  body.is-nav-open .global-nav__cta .cta__label--open {
    display: inline;
  }
}
/* -----------------------------
   Overlay & SP drawer helpers
----------------------------- */
@media (max-width: 1024px) {
  /* 背景クリックで閉じるためのオーバーレイ */
  .global-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    /* NabBar */
    -webkit-box-shadow: 0 8px 40px 0 rgba(19, 29, 48, 0.05);
            box-shadow: 0 8px 40px 0 rgba(19, 29, 48, 0.05);
    backdrop-filter: blur(2.5px);
    background: transparent;
    z-index: 900;
    display: none;
  }
  body.is-nav-open .global-nav__overlay {
    display: block;
  }
  /* SPのCTA見た目 */
  .global-nav__cta {
    margin: 0 auto;
    width: min(302px, 100%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
    background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
    color: #fff;
    font-size: clamp(0.75rem, -0.341rem + 5.45vw, 0.938rem);
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.42px;
  }
  .global-nav__cta::after {
    background: #fff;
    width: 6px;
  }
}
.nav__current {
  pointer-events: none;
}

/*------------------------------
  index page styles
-------------------------------*/
/* fv
------------------------------- */
.fv__inner {
  padding-bottom: 237px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-bottom: 260px;
  }
}
@media screen and (min-width: 1025px) {
  .fv__inner {
    padding-bottom: 341px;
  }
}

.fv__content {
  padding: clamp(1.5rem, 0.818rem + 2.91vw, 3.438rem) clamp(1.813rem, 0.25rem + 6.67vw, 6.25rem) 0;
}

.fv__title {
  font-size: clamp(2.188rem, 1.549rem + 2.72vw, 4rem);
  line-height: 130%;
  letter-spacing: 2.16px;
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1025px) {
  .fv__title {
    letter-spacing: 3.84px;
  }
}

.text-line-red {
  display: inline;
  line-height: inherit;
  vertical-align: baseline;
  background: -webkit-gradient(linear, left top, right top, from(#c30d23), to(#b81c25));
  background: linear-gradient(90deg, #c30d23 0%, #b81c25 100%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: left 100%;
  padding-bottom: 0;
  /* 改行（br）で行が分かれても装飾を各行に適用 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.fv__lead {
  padding-block: clamp(1.75rem, 1.486rem + 1.13vw, 2.5rem);
  color: #071221;
  -webkit-font-feature-settings: "halt" on;
          font-feature-settings: "halt" on;
  font-size: clamp(0.938rem, 0.871rem + 0.28vw, 1.125rem);
  line-height: 165%;
  letter-spacing: 0.45px;
  text-transform: capitalize;
}
@media screen and (min-width: 1025px) {
  .fv__lead {
    letter-spacing: 0.54px;
  }
}

.fv {
  position: relative;
}

.fv__content {
  position: relative;
}

.fv__visual {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}
.fv__visual img {
  width: 100%;
  height: 100%;
  display: block;
  /* ここは好み：SVGがトリミング必要なら */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  /* SPほど拡大など */
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(var(--img-scale));
          transform: scale(var(--img-scale));
  --img-scale: 1;
}

@media screen and (max-width: 767px) {
  .fv__visual {
    height: 280px;
    top: 483px;
  }
}
@media (min-width: 630px) and (max-width: 767px) {
  .fv__visual {
    top: 424px;
  }
}
@media screen and (min-width: 768px) {
  .fv__visual {
    height: 370px;
    top: 400px;
  }
}
@media screen and (min-width: 1025px) {
  .fv__visual {
    height: 600px;
    top: 310px;
  }
}
.fv__title--slide {
  opacity: 0;
  -webkit-transform: translateX(-24px);
          transform: translateX(-24px);
  -webkit-animation: slideInLeft 0.7s ease-out forwards;
          animation: slideInLeft 0.7s ease-out forwards;
}

@-webkit-keyframes slideInLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fv__lead--reveal {
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-animation: fadeUp 0.8s ease-out forwards;
          animation: fadeUp 0.8s ease-out forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; /* h2 のあとに出す */
}

@-webkit-keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slide-in-left {
  opacity: 0;
  -webkit-transform: translateX(-32px);
          transform: translateX(-32px);
  -webkit-animation: slideInLeft 0.7s ease-out forwards;
          animation: slideInLeft 0.7s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-animation: fadeUp 0.6s ease-out forwards;
          animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* problems
------------------------------- */
.problems {
  background-color: #e1e2e3;
  background-image: url(../img/bg/bg-problems.svg);
  background-size: cover, auto;
  background-repeat: no-repeat, repeat;
  border-radius: clamp(2.5rem, 1.972rem + 2.25vw, 4rem) clamp(2.5rem, 1.972rem + 2.25vw, 4rem) 0 0;
}

.problems__heading {
  text-align: center;
}

.problems__list {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  gap: 27px;
}
@media screen and (min-width: 1025px) {
  .problems__list {
    gap: 48px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.problems__item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.5rem, 1.324rem + 0.75vw, 2rem) clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem) clamp(0.875rem, 0.655rem + 0.94vw, 1.5rem);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  border-radius: 6px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .problems__item {
    padding: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .problems__item {
    padding: 30px 20px 24px;
  }
  .problems__item img {
    width: 100%;
    height: 100%;
  }
}

.problems__image {
  height: 164px;
  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;
}
@media screen and (min-width: 1025px) {
  .problems__image {
    height: 184px;
  }
}

.problems__title {
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  .problems__title {
    margin-top: 0;
  }
}

.problems__text {
  text-align: justify;
  margin-top: 12px;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 180%;
  letter-spacing: clamp(0.026rem, 0.025rem + 0.01vw, 0.03rem);
}

/* solution
------------------------------- */
.solution__heading {
  text-align: center;
}

.solution__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .solution__brand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.solution__brand-logo {
  width: clamp(10.063rem, 8.896rem + 4.98vw, 13.375rem);
}

.solution__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: clamp(1.5rem, 1.324rem + 0.75vw, 2rem);
}
@media screen and (min-width: 1025px) {
  .solution__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.solution__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: clamp(0.875rem, 0.479rem + 1.69vw, 2rem) clamp(0.875rem, 0.127rem + 3.19vw, 3rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(1rem, 0.296rem + 3vw, 3rem);
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 6px;
  background: #eef2f7;
}
@media screen and (min-width: 1025px) {
  .solution__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.solution__image {
  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: 6px;
  background: #fff;
  height: 160px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
  width: 100%;
}
.solution__image img {
  max-width: 240px;
  max-height: 100px;
}
@media screen and (min-width: 768px) {
  .solution__image {
    width: 83%;
  }
}
@media screen and (min-width: 1025px) {
  .solution__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 393px;
            flex: 0 0 393px;
    height: 220px;
    width: 100%;
  }
  .solution__image img {
    max-width: 320px;
    max-height: 140px;
  }
}

.solution__icon {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
}

.solution__contents {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 8px;
}
@media screen and (min-width: 768px) {
  .solution__contents {
    padding-inline: clamp(5rem, -0.625rem + 11.72vw, 6.875rem);
  }
}
@media screen and (min-width: 1025px) {
  .solution__contents {
    padding-inline: 0;
  }
}

.solution__brand-text {
  white-space: nowrap;
  font-size: clamp(1.75rem, 1.541rem + 0.89vw, 2.344rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  line-height: 150%;
  letter-spacing: 0.84px;
  font-weight: 500;
}

.solution__copy {
  font-size: clamp(1.75rem, 1.486rem + 1.13vw, 2.5rem);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.2px;
}

.solution__number {
  font-family: "Inter", sans-serif;
  font-size: clamp(3.5rem, 2.972rem + 2.25vw, 5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 100%;
  color: transparent;
  -webkit-text-stroke: 1px #b81c25;
}

.solution__title {
  padding-left: 12px;
}

.solution__text {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  padding-top: clamp(0.5rem, 0.412rem + 0.38vw, 0.75rem);
  line-height: 180%;
  letter-spacing: 0.48px;
  padding-left: 12px;
}

.solution__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  margin-top: clamp(2rem, 1.296rem + 2vw, 4rem);
}

/* case-studies
------------------------------- */
.case-studies {
  border-radius: clamp(2.5rem, 1.972rem + 2.25vw, 4rem) clamp(2.5rem, 1.972rem + 2.25vw, 4rem) 0 0;
  background-color: #eef2f7;
}

.case-studies__inner {
  position: relative;
}

.case-studies__heading-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .case-studies__heading-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.case-studies__link--top {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 60px;
  -ms-flex-item-align: auto;
      align-self: auto;
}
@media screen and (min-width: 1025px) {
  .case-studies__link--top {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 170px;
    left: auto;
    bottom: auto;
    -webkit-transform: none;
            transform: none;
    right: 140px;
  }
}

.case-studies__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-bottom: 84px;
}
@media screen and (min-width: 1025px) {
  .case-studies__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 0;
  }
}

.case-studies-card {
  max-width: 360px;
  border-radius: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 80px) / 3);
          flex: 0 0 calc((100% - 80px) / 3);
}
@media screen and (min-width: 768px) {
  .case-studies-card {
    max-width: 420px;
  }
}

.case-studies-card__logo-wrap {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 144px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #eef2f7;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.case-studies-card__logo {
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
  will-change: transform;
}

.case-studies-card:hover {
  -webkit-box-shadow: 0 0 40px 0 rgba(19, 29, 48, 0.1);
          box-shadow: 0 0 40px 0 rgba(19, 29, 48, 0.1);
}

.case-studies-card:hover .case-studies-card__logo {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.case-studies-card__body {
  background: #fff;
  padding: 24px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  height: 410px;
  border-radius: 0 0 6px 6px;
}

.case-studies-card__partner {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.36px;
}

.case-studies-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  overflow: hidden;
  color: #00348b;
  text-align: justify;
  text-overflow: ellipsis;
  font-size: var(--Size-H4, 20px);
  font-weight: var(--Weight-Medium, 500);
  line-height: 150%;
  letter-spacing: 0.6px;
}

.case-studies-card__summary {
  margin-top: -18px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
  text-overflow: ellipsis;
}

.case-studies-card__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.case-studies-card__link {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-right: 44px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* learn-connect
------------------------------- */
.learn-connect {
  border-radius: 0 0 clamp(2.5rem, 1.972rem + 2.25vw, 4rem) clamp(2.5rem, 1.972rem + 2.25vw, 4rem);
  background: #eef2f7;
  position: relative;
}
.learn-connect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(19.688rem, -0.669rem + 86.85vw, 77.5rem);
  height: 2px;
  background: #fff;
}

.learn-connect__heading-row {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 48px;
}
@media screen and (min-width: 1025px) {
  .learn-connect__heading-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.learn-connect__heading {
  padding-bottom: 0;
}

.learn-connect__subtitle {
  padding-top: 32px;
}
@media screen and (min-width: 1025px) {
  .learn-connect__subtitle {
    padding-top: 0;
  }
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.learn-connect-card {
  border-radius: 6px;
  background: #fff;
  max-width: 360px;
}

.learn-connect-card__thumb {
  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;
  margin: 0;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
.learn-connect-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.learn-connect-card:hover {
  -webkit-box-shadow: 0 0 40px 0 rgba(19, 29, 48, 0.1);
          box-shadow: 0 0 40px 0 rgba(19, 29, 48, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  .learn-connect-card__link:hover .learn-connect-card__thumb img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.learn-connect-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 20px;
  background: #fff;
  border-radius: 0 0 6px 6px;
}

.learn-connect-card__meta {
  margin-bottom: 12px;
}

.learn-connect-card__meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.learn-connect-card__date {
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.36px;
}

.learn-connect-card__title {
  overflow: hidden;
  color: #00348b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: normal;
  font-size: clamp(1.125rem, 1.081rem + 0.19vw, 1.25rem);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: clamp(0.034rem, 0.032rem + 0.01vw, 0.037rem);
  min-height: 90px;
}

.learn-connect__link {
  display: block;
  margin-top: 104px;
  margin-inline: auto;
}

.swiper-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.learn-connect__swiper {
  overflow: visible;
}

.learn-connect-card.swiper-slide {
  width: 315px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .learn-connect-card.swiper-slide {
    width: 360px;
  }
}

.learn-connect__swiper,
.learn-connect__inner,
.learn-connect {
  overflow: hidden;
}

.swiper,
.swiper-wrapper {
  overflow: visible;
}

.swiper-button-prev,
.swiper-button-next {
  background: none;
  border: none;
  cursor: pointer;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: ""; /* デフォルトのものを初期化 */
}

/* Swiperのデフォルト矢印（文字）を消す */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

/* ボタンの共通土台 */
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  position: absolute;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  background-image: none;
  background-color: transparent;
  border: none;
}

/* 丸（枠） */
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
  background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
  -webkit-box-shadow: 0 3px 5px 0 rgba(6, 16, 29, 0.2);
          box-shadow: 0 3px 5px 0 rgba(6, 16, 29, 0.2);
}

/* 矢印（アイコン） */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 50%;
  width: 9px;
  height: 16px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.swiper-button-prev {
  left: -44px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.swiper-button-prev::after {
  background-image: url(../img/icon/icon-arrow-prev-white.svg);
}

.swiper-button-next {
  right: -44px;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.swiper-button-next::after {
  background-image: url(../img/icon/icon-arrow-next-white.svg);
}

@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    -webkit-transform: translateY(50%) scale(1.1);
            transform: translateY(50%) scale(1.1);
  }
}
/* jsページネーション共通
------------------------------- */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  width: 80px;
  height: 8px;
}

/* 非アクティブ */
.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

/* アクティブ */
.swiper-pagination-bullet-active {
  background-color: #00348b;
}

/* workflow
------------------------------- */
.workflow__heading {
  text-align: center;
}

.workflow__heading-en::after {
  left: calc(50% - 65px);
}

.workflow__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: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 1025px) {
  .workflow__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(1rem, -3.923rem + 7.69vw, 3rem);
  }
}

.workflow__item {
  width: clamp(19.375rem, 15.035rem + 18.52vw, 26.875rem);
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .workflow__item {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
  }
}
.workflow__item:last-child .workflow__text::after {
  content: none;
}

.workflow__icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--Space-space-1, 8px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 6px;
  background: var(--Main-Subtle-2, #eef2f7);
  width: clamp(10.938rem, 6.055rem + 20.83vw, 19.375rem);
  height: 176px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .workflow__icon-wrap {
    width: 100%;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.workflow__title {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 12px;
}
@media screen and (min-width: 1025px) {
  .workflow__title {
    padding-top: clamp(1rem, 0.648rem + 1.5vw, 1rem);
  }
}

.workflow__step {
  font-family: "Inter", sans-serif;
  background: -webkit-gradient(linear, left top, right top, from(#c30d23), to(#b81c25));
  background: linear-gradient(90deg, #c30d23 0%, #b81c25 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.workflow__step-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.workflow__step-number {
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.workflow__label {
  text-align: center;
}

.workflow__text {
  padding-top: 12px;
  text-align: justify;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 180%;
  letter-spacing: clamp(0.026rem, 0.025rem + 0.01vw, 0.03rem);
  position: relative;
}
.workflow__text::after {
  position: absolute;
  content: "";
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12px;
  height: 6.5px;
  background: url(../img/icon/icon-arrow-down.svg) no-repeat center/contain;
}
@media screen and (min-width: 1025px) {
  .workflow__text {
    padding-top: clamp(0.5rem, -0.115rem + 0.96vw, 0.75rem);
    width: 100%;
  }
  .workflow__text::after {
    content: none;
  }
}

/* contact
------------------------------- */
.contact {
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  position: relative;
  overflow: hidden;
  /* 上の装飾 */
  /* 下の装飾 */
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: url("../img/bg/bg-contact-top.svg") no-repeat top left/contain;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: url("../img/bg/bg-contact-bottom.svg") no-repeat bottom right/contain;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.contact__inner {
  padding-inline: clamp(1rem, -0.188rem + 5.07vw, 4.375rem);
}

.contact__lead {
  padding-bottom: clamp(2rem, 1.648rem + 1.5vw, 3rem);
}

.contact__text {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  line-height: 180%;
  letter-spacing: clamp(0.026rem, 0.025rem + 0.01vw, 0.03rem);
}

.contact__text + .contact__text {
  margin-top: 14px;
}
@media screen and (min-width: 1025px) {
  .contact__text + .contact__text {
    margin-top: 16px;
  }
}

.contact__panel {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding-block: 32px;
  padding-inline: clamp(1.25rem, 0.15rem + 4.69vw, 4.375rem);
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .contact__panel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: clamp(1.875rem, -4.279rem + 9.62vw, 4.375rem);
    padding-block: 80px;
  }
}

.contact__cta {
  display: block;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .contact__cta {
    margin-inline: 0;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.contact__image-wrap {
  margin-top: 32px;
  margin-inline: auto;
}
.contact__image-wrap img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .contact__image-wrap img {
    width: clamp(18.938rem, -17.015rem + 74.9vw, 30.875rem);
    height: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .contact__image-wrap {
    margin-top: -80px;
    margin-right: -70px;
    margin-bottom: -80px;
  }
  .contact__image-wrap img {
    width: 494px;
    height: 100%;
  }
}

/* news
------------------------------- */
.news {
  border-bottom: 1px solid #e1e2e3;
}

.news__heading {
  padding-bottom: 11px;
}
@media screen and (min-width: 1025px) {
  .news__heading {
    padding-bottom: 48px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.news__row {
  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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 1025px) {
  .news__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.news__header {
  width: 100%;
}

.news__more {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .news__more {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.news__more-link::after {
  left: 109px;
}

.news-item {
  padding: 24px;
  border-top: 1px solid #e1e2e3;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .news-item:hover {
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px 0 rgba(19, 29, 48, 0.1);
            box-shadow: 0 0 40px 0 rgba(19, 29, 48, 0.1);
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-item__date {
  overflow: hidden;
  color: #002563;
  text-align: justify;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.36px;
  padding-left: 8px;
}

.news-item__title {
  display: block;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.6px;
  padding-top: 12px;
}
.news-item__title a {
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .news-item__title {
    text-align: justify;
  }
}

/* footer
------------------------------- */
@media screen and (min-width: 1025px) {
  .footer__inner {
    padding: 80px 64px;
  }
}

.footer__top {
  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 (min-width: 1025px) {
  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .footer__brand {
    margin-left: 16px;
  }
}

.footer__org {
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.36px;
  padding-bottom: 4px;
}

.footer__copy {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.36px;
}

.footer__home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__home img {
  width: clamp(6.313rem, 4.706rem + 6.85vw, 10.875rem);
  height: clamp(1.688rem, 1.313rem + 1.6vw, 2.75rem);
}

.footer__dept {
  color: #00348b;
  text-align: justify;
  font-size: clamp(1.094rem, 0.819rem + 1.17vw, 1.875rem);
  font-weight: 700;
  line-height: 120%;
  font-style: italic;
  padding-top: 3px;
}

.footer__address {
  font-size: 14px;
  letter-spacing: 0.42px;
  font-style: normal;
  padding-top: 16px;
}
@media screen and (min-width: 1025px) {
  .footer__location {
    padding-right: 8px;
  }
}

.footer__map-link {
  padding: 8px 8px 8px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}
.footer__map-link::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../img/icon/icon-external.svg") no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__map-link:hover {
  text-decoration: underline;
}

.footer__nav-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1025px) {
  .footer__nav-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(0.688rem, -2.543rem + 5.05vw, 2rem);
    margin-right: 26px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.42px;
  padding-top: 32px;
}
@media (max-width: 1024px) {
  .footer__nav {
    list-style: none;
    display: grid;
    width: min(307px, 100%);
  }
}
@media screen and (min-width: 1025px) {
  .footer__nav {
    padding-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(0.688rem, -2.543rem + 5.05vw, 2rem);
  }
}

.footer__nav-group {
  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;
}

.footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__nav-link {
  padding-block: 8px;
  position: relative;
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e8e6e6;
}

.footer__nav-label {
  display: block;
  cursor: default;
}

.footer__sunav {
  padding-top: 9px;
}
@media screen and (min-width: 1025px) {
  .footer__sunav {
    padding-top: 0;
  }
}

.footer__subnav-item {
  padding: 8px 8px 8px 24px;
  position: relative;
}
.footer__subnav-item::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
}

.footer__subnav-link {
  padding-block: 8px;
}

.is-parent {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}

.is-current {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
  color: #8c9197;
}

.is-static {
  cursor: default;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  padding: 7px 16px 16px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.is-static li span {
  position: relative;
}
.is-static li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 4px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#00348b), to(#005bac));
  background: linear-gradient(90deg, #00348b 0%, #005bac 100%);
  pointer-events: none;
}

.is-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}

.footer__nav-link--no-hover {
  background: none;
  text-decoration: none;
}

.footer__nav-link:not(.footer__nav-link--no-hover),
.footer__subnav-link,
.footer__pdf-link,
.footer__pdf-link::after {
  display: inline-block;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#007acc), color-stop(50%, #007acc), color-stop(50%, #071221), to(#071221));
  background-image: linear-gradient(90deg, #007acc 0%, #007acc 50%, #071221 50%, #071221 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: background-position 0.35s ease;
  transition: background-position 0.35s ease;
}

/* hoverできる端末のみ */
@media (hover: hover) and (pointer: fine) {
  .footer__nav-link:hover,
  .footer__subnav-link:hover,
  .footer__pdf-link:hover {
    background-position: 0 0;
  }
}
.footer__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  font-size: 14px;
}

.footer__cta {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.footer__pdf-link {
  padding-block: 8px;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.42px;
  padding-right: 16px;
  position: relative;
}
.footer__pdf-link::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  left: 151px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/icon/icon-arrow-next-text.svg") no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 6px;
}
@media screen and (min-width: 1025px) {
  .footer__pdf-link {
    left: auto;
    right: 0;
  }
}

.footer__bottom {
  background: #002563;
  color: #fff;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.42px;
}
.footer__bottom:hover {
  background: #002563;
}

.footer__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .footer__bottom-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__bottom-left {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__bottom-left a {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer__bottom-left a:hover {
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 1025px) {
  .footer__bottom-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__back-to-top {
  padding-block: 8px;
}

.footer__links {
  padding-block: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__links a {
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .footer__links {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.footer__bottom-right {
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.36px;
}
@media screen and (min-width: 1025px) {
  .footer__bottom-right {
    text-align: right;
  }
}

.link-external {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  padding-right: 37px;
  cursor: pointer;
  text-decoration: none;
}
.link-external::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../img/icon/icon-external-white.svg") no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-image 0.2s ease;
  transition: background-image 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.link-external:hover::after {
  opacity: 0.5;
}

.footer__bottom-link {
  text-decoration: none;
  cursor: pointer;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding-top: 16px;
}
.footer__bottom-link .footer__bottom-link {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (min-width: 1025px) {
  .footer__bottom-link {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-top: 0;
  }
  .footer__bottom-link a {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .footer__bottom-link .footer__bottom-link {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.footer__bottom-right {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 32px;
  gap: 16px;
}
@media screen and (min-width: 1025px) {
  .footer__bottom-right {
    padding-top: 0;
  }
}

/*------------------------------
  （下層） page （共通）styles
  お知らせ・お役立ち情報・共同研究事例 共通スタイル
-------------------------------*/
/* 背景画像 */
.sub-hero {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
  background: #eef2f7;
}
.sub-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: url("../img/bg/bg-subpage-top.svg") no-repeat top right/contain;
  z-index: 0;
  pointer-events: none;
}

/* 表示させない */
.is-hidden {
  display: none !important;
}

/* パンくずリスト */
.breadcrumb {
  font-size: 14px;
  padding: clamp(0.75rem, 0.662rem + 0.38vw, 1rem) clamp(1.875rem, 0.995rem + 3.76vw, 4.375rem);
  border-bottom: 1px solid #e1e2e3;
  background: #fff;
  text-align: left;
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00348b;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.36px;
}

.breadcrumb__item:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background-color: #00348b;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.breadcrumb__item[aria-current=page] {
  overflow: hidden;
  color: #8c9197;
  text-overflow: ellipsis;
}

.breadcrumb__link {
  color: #555;
  text-decoration: none;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__link--current {
  color: #555;
  text-decoration: none;
}

/* tabフィルター */
.filter__inner {
  padding-block: 0;
}

.filter__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .filter__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1025px) {
  .filter__group {
    width: 100%;
  }
}

.filter__header {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .filter__header {
    display: grid;
    grid-template-columns: 125px 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .filter__header {
    grid-template-columns: 230px 1fr;
  }
}

.filter__title {
  width: 100%;
  display: grid;
  grid-column: 1/-1;
  place-items: center;
  text-align: center;
  padding: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.42px;
  border-bottom: 1px solid #e6e7e8;
  border-right: 1px solid #e6e7e8;
}
@media screen and (min-width: 1025px) {
  .filter__title {
    padding: 20px 40px;
  }
}

.filter__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  min-width: 0;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .filter__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 20px 40px;
    gap: 16px;
    width: 100%;
  }
}

.filter-btn {
  padding: 6px 24px 7px;
  background: #fff;
  border: 1px solid #e6e7e8;
}
.filter-btn::after {
  content: none;
}

.filter-btn--field {
  color: #002563;
}

.filter-btn--field.active,
.filter-btn--field[aria-pressed=true] {
  background: #002563;
  background-image: none;
  color: #fff;
  border-color: #002563;
}

.filter-btn--type {
  color: #007acc;
}

.filter-btn--type.active,
.filter-btn--type[aria-pressed=true] {
  background: #007acc;
  background-image: none;
  color: #fff;
  border-color: #007acc;
}

.filter-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/*------------------------------
  detail page （共通）styles
  お知らせ・お役立ち情報・共同研究事例 詳細ページ 共通スタイル
-------------------------------*/
.page--news-detail,
.page--learn-connect-detail,
.page--case-study-detail {
  /* リスト全体 */
}
.page--news-detail .detail__title,
.page--learn-connect-detail .detail__title,
.page--case-study-detail .detail__title {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-style: normal;
  font-weight: 500;
}
.page--news-detail .detail__inner,
.page--learn-connect-detail .detail__inner,
.page--case-study-detail .detail__inner {
  padding-inline: clamp(0.625rem, -4.018rem + 23.21vw, 16.875rem);
}
.page--news-detail .page-detail,
.page--learn-connect-detail .page-detail,
.page--case-study-detail .page-detail {
  padding-bottom: 80px;
}
.page--news-detail .detail__meta,
.page--learn-connect-detail .detail__meta,
.page--case-study-detail .detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page--news-detail .detail__meta-row,
.page--learn-connect-detail .detail__meta-row,
.page--case-study-detail .detail__meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.page--news-detail .detail__heading-lv2,
.page--learn-connect-detail .detail__heading-lv2,
.page--case-study-detail .detail__heading-lv2 {
  margin-block: 24px;
  color: #00348b;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.72px;
}
.page--news-detail .detail__heading-lv3,
.page--learn-connect-detail .detail__heading-lv3,
.page--case-study-detail .detail__heading-lv3 {
  margin-block: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.6px;
  display: inline-block;
  border-left: 2px solid #00348b;
}
.page--news-detail .detail__heading-lv4,
.page--learn-connect-detail .detail__heading-lv4,
.page--case-study-detail .detail__heading-lv4 {
  margin-block: 16px;
  color: #00348b;
  font-weight: 700;
}
.page--news-detail .detail__text,
.page--learn-connect-detail .detail__text,
.page--case-study-detail .detail__text {
  margin-bottom: 16px;
  text-align: justify;
}
.page--news-detail .detail__link,
.page--learn-connect-detail .detail__link,
.page--case-study-detail .detail__link {
  color: var(--Semantic-Link, #0017c1);
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.page--news-detail .detail__table,
.page--learn-connect-detail .detail__table,
.page--case-study-detail .detail__table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  font-weight: 700;
  min-width: 460px;
  width: 100%;
  table-layout: fixed;
}
.page--news-detail .detail__table th,
.page--learn-connect-detail .detail__table th,
.page--case-study-detail .detail__table th {
  background-color: #eef2f7;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.page--news-detail .detail__table th[scope=row],
.page--learn-connect-detail .detail__table th[scope=row],
.page--case-study-detail .detail__table th[scope=row] {
  text-align: center;
  width: 140px;
}
@media screen and (min-width: 1025px) {
  .page--news-detail .detail__table th[scope=row],
  .page--learn-connect-detail .detail__table th[scope=row],
  .page--case-study-detail .detail__table th[scope=row] {
    width: 180px;
  }
}
.page--news-detail .detail__table th,
.page--news-detail .detail__table td,
.page--learn-connect-detail .detail__table th,
.page--learn-connect-detail .detail__table td,
.page--case-study-detail .detail__table th,
.page--case-study-detail .detail__table td {
  border: 1px solid #e6e7e8;
  padding: 10px 12px;
  vertical-align: middle;
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 768px) {
  .page--news-detail .detail__table th,
  .page--news-detail .detail__table td,
  .page--learn-connect-detail .detail__table th,
  .page--learn-connect-detail .detail__table td,
  .page--case-study-detail .detail__table th,
  .page--case-study-detail .detail__table td {
    padding: 12px 16px;
  }
}
.page--news-detail .detail__table td,
.page--learn-connect-detail .detail__table td,
.page--case-study-detail .detail__table td {
  text-align: left;
}
.page--news-detail .detail__table-caption,
.page--learn-connect-detail .detail__table-caption,
.page--case-study-detail .detail__table-caption {
  caption-side: top;
  text-align: left;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .page--news-detail .news-detail__table-wrap,
  .page--learn-connect-detail .news-detail__table-wrap,
  .page--case-study-detail .news-detail__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.page--news-detail .detail__list,
.page--learn-connect-detail .detail__list,
.page--case-study-detail .detail__list {
  list-style: disc;
  list-style-position: inside;
  padding-left: 1.2em;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 6px;
  background: #eef2f7;
}
.page--news-detail .detail__list--no-bg,
.page--learn-connect-detail .detail__list--no-bg,
.page--case-study-detail .detail__list--no-bg {
  background: transparent;
}
.page--news-detail .detail__list-item,
.page--learn-connect-detail .detail__list-item,
.page--case-study-detail .detail__list-item {
  margin-bottom: 16px;
  line-height: 1.7;
}
.page--news-detail .detail__list-item:last-child,
.page--learn-connect-detail .detail__list-item:last-child,
.page--case-study-detail .detail__list-item:last-child {
  margin-bottom: 0;
}
.page--news-detail .detail__table-wrap,
.page--learn-connect-detail .detail__table-wrap,
.page--case-study-detail .detail__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/*------------------------------
  case-studies/case-water-treatment-membrane-simulation page styles
  共同研究事例 詳細ページ スタイル
-------------------------------*/
.page--case-study-detail {
  /* リスト全体 */
  /* 番号付きリスト用 */
  /* 番号 */
}
.page--case-study-detail .detail__title {
  font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
  font-style: normal;
  font-weight: 500;
}
.page--case-study-detail .detail__inner {
  padding-inline: clamp(0.625rem, -4.018rem + 23.21vw, 16.875rem);
}
.page--case-study-detail .page-detail {
  padding-bottom: 80px;
}
.page--case-study-detail .detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page--case-study-detail .detail__meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.page--case-study-detail .detail__body--case-study {
  padding: 32px 0 24px;
}
.page--case-study-detail .detail__heading-lv3 {
  margin-block: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.48px;
  padding-left: 8px;
  color: #00348b;
  display: inline-block;
  border-left: 2px solid #00348b;
}
.page--case-study-detail .detail__heading-lv3-note {
  font-size: clamp(1.75rem, 1.536rem + 1.07vw, 2.5rem);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.2px;
}
.page--case-study-detail .detail__heading-lv4 {
  color: #00348b;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.72px;
  padding-block: 24px;
  margin: 0;
}
.page--case-study-detail .detail__heading-lv5 {
  margin-block: 16px;
  color: #00348b;
  font-weight: 700;
}
.page--case-study-detail .detail__text {
  margin: 0;
  padding-bottom: 16px;
  text-align: justify;
}
.page--case-study-detail .detail__link {
  color: #0017c1;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.page--case-study-detail .detail__table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  font-weight: 700;
  min-width: 460px;
}
.page--case-study-detail .detail__table th {
  background-color: #eef2f7;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.page--case-study-detail .detail__table th[scope=row] {
  text-align: center;
  width: 140px;
}
@media screen and (min-width: 1025px) {
  .page--case-study-detail .detail__table th[scope=row] {
    width: 180px;
  }
}
.page--case-study-detail .detail__table th,
.page--case-study-detail .detail__table td {
  border: 1px solid #e6e7e8;
  padding: 10px 12px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .page--case-study-detail .detail__table th,
  .page--case-study-detail .detail__table td {
    padding: 12px 16px;
  }
}
.page--case-study-detail .detail__table td {
  text-align: left;
}
.page--case-study-detail .detail__table-caption {
  caption-side: top;
  text-align: left;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .page--case-study-detail .news-detail__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.page--case-study-detail .detail__list-group {
  border-radius: 6px;
  background: #eef2f7;
  padding: 24px 32px;
  display: block;
}
.page--case-study-detail .detail__list-group > *:first-child {
  margin-top: 0;
}
.page--case-study-detail .detail__list-group > *:last-child {
  margin-bottom: 0;
}
.page--case-study-detail .detail__list {
  list-style: disc;
  list-style-position: inside;
  padding: 0;
}
.page--case-study-detail .detail__list-item {
  margin-bottom: 0;
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
  display: grid;
  grid-template-columns: 2ch 1fr;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.page--case-study-detail .detail__list-item:last-child {
  margin-bottom: 0;
}
.page--case-study-detail .detail__list--ordered {
  list-style: none;
}
.page--case-study-detail .detail__list--unordered .detail__list-item {
  display: list-item;
}
.page--case-study-detail .detail__paper-title,
.page--case-study-detail .detail__paper-authors,
.page--case-study-detail .detail__paper-journal {
  display: block;
}
.page--case-study-detail .detail__list-index {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.page--case-study-detail .detail__image {
  padding: 20px 0;
  margin: 0;
  text-align: center;
}
.page--case-study-detail .detail__image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.page--case-study-detail .detail__image-caption {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  line-height: 170%;
  letter-spacing: 0.42px;
}
.page--case-study-detail .case-study-authors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.page--case-study-detail .case-study-authors__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page--case-study-detail .case-study-authors__author {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 130px;
}
@media screen and (min-width: 768px) {
  .page--case-study-detail .case-study-authors__author {
    width: 160px;
  }
}
.page--case-study-detail .case-study-authors__name {
  font-size: clamp(1.125rem, 1.081rem + 0.19vw, 1.25rem);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.6px;
  text-align: center;
}
/*------------------------------
  case-studies page styles
  共同研究事例 一覧ページ
-------------------------------*/
.case-studies-page {
  background: #eef2f7;
}
.case-studies-page .case-studies {
  border-radius: unset;
}
.case-studies-page .case-studies__heading-row--sub {
  margin-bottom: 192px;
}
.case-studies-page .case-studies__no-result {
  text-align: center;
}
.case-studies-page .case-studies__more {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.case-studies-page .case-studies-card__body {
  height: 312px;
}

/*------------------------------
  case studies detail page styles
  共同研究事例 詳細ページ
-------------------------------*/
.case-study-detail-page .detail__title {
  margin-bottom: 102px;
}

/*------------------------------
  learn-connect page styles
  お役立ち情報 一覧ページ
-------------------------------*/
.learn-connect-page .learn-connect--with-filter {
  background: #eef2f7;
}
.learn-connect-page .learn-connect {
  background: #eef2f7;
  border-radius: unset;
}
.learn-connect-page .filter__layout {
  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;
}
.learn-connect-page .learn-connect__inner {
  padding-top: clamp(2rem, 1.648rem + 1.5vw, 3rem);
}
.learn-connect-page .learn-connect__cards {
  display: grid;
  margin: 0 auto;
  justify-items: center;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.648rem + 1.5vw, 3rem);
}
@media screen and (min-width: 768px) {
  .learn-connect-page .learn-connect__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1025px) {
  .learn-connect-page .learn-connect__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.learn-connect-page .learn-connect-card {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: auto;
}
.learn-connect-page .learn-connect-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.learn-connect-page .learn-connect-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.learn-connect-page .learn-connect-card,
.learn-connect-page .learn-connect-card__link,
.learn-connect-page .learn-connect-card__body {
  min-width: 0;
}
.learn-connect-page .learn-connect__more {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.learn-connect-page .learn-connect__no-result {
  text-align: center;
}

/*------------------------------
  learn connect detail page styles
  お役立ち情報 詳細ページ
-------------------------------*/
.learn-connect-detail-page .learn-connect-detail__date {
  color: #00348b;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.42px;
}
.learn-connect-detail-page .learn-connect-detail__author {
  margin-block: 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.42px;
}
.learn-connect-detail-page .learn-connect-detail__author-image {
  width: 56;
  height: 56;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.learn-connect-detail-page .learn-connect-related {
  border-radius: 64px 64px 0 0;
}
.learn-connect-detail-page .learn-connect-related .learn-connect-related__heading {
  color: #00348b;
  font-size: 24px;
  font-weight: 0;
  line-height: 150%;
  letter-spacing: 0.72px;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .learn-connect-detail-page .learn-connect-related .learn-connect-related__heading {
    text-align: start;
  }
}
.learn-connect-detail-page .learn-connect-related .learn-connect__cards {
  display: grid;
  width: 100%;
  max-width: clamp(360px, 100%, 1176px);
  margin: 0 auto;
  gap: 24px;
  grid-template-columns: 1fr;
  place-items: center;
}
@media screen and (min-width: 1025px) {
  .learn-connect-detail-page .learn-connect-related .learn-connect__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
  }
}
.learn-connect-detail-page .learn-connect-related .learn-connect-card__thumb {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 360/202;
}
.learn-connect-detail-page .learn-connect-related .learn-connect-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.learn-connect-detail-page .learn-connect-related .learn-connect-card {
  width: 100%;
  max-width: 360px;
}
.learn-connect-detail-page .learn-connect-related .learn-connect-related__container {
  width: 100%;
  max-width: min(100%, 1176px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}

/*------------------------------
  contact page styles
-------------------------------*/
.contact-gform {
  background: #eef2f7;
}

/* Google Form embed wrapper */
.contact-gform__embed {
  margin-top: 32px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}

/* iframe本体 */
.contact-gform__iframe {
  display: block;
  width: 100%;
  height: 1680px;
  border: 0;
}

.contact-gform__intro {
  margin-top: 24px;
  margin-bottom: 20px;
}

.contact-gform__lead {
  margin: 0;
  line-height: 1.8;
}

.contact-gform__note {
  margin: 12px 0 0;
  line-height: 1.7;
  font-size: 0.95em;
  opacity: 0.9;
}

.contact-gform__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 24px;
  padding: 0 10px;
  margin-right: 8px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  font-size: 0.85em;
  line-height: 1;
  white-space: nowrap;
}

/* アクション（フォームを開く） */
.contact-gform__actions {
  padding: 120px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.contact-gform__cta {
  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;
  text-decoration: none;
  /* ctaの見た目は既存クラスに任せる */
  margin-top: 40px;
}

.contact-gform__actions-note {
  margin: 12px 0 0;
  font-size: 0.95em;
  line-height: 1.7;
  opacity: 0.9;
}

.contact-gform__footer {
  margin-top: 16px;
}

.contact-gform__privacy {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.7;
}

.contact-gform__link {
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

/*------------------------------
  news page styles
  お知らせ 一覧ページ
-------------------------------*/
.news-page {
  background: #eef2f7;
  /* Filter */
}
.news-page .news-page__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 0.714rem + 8.93vw, 5rem);
  padding-inline: clamp(0.625rem, -3.393rem + 20.09vw, 6.25rem);
}
@media screen and (min-width: 1025px) {
  .news-page .news-page__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(3.75rem, -12.25rem + 25vw, 10.25rem);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .news-page .filter__inner {
    padding-inline: 0;
  }
}
.news-page .news {
  border-bottom: none;
}
@media screen and (min-width: 1025px) {
  .news-page .filter__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 1025px) {
  .news-page .filter__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-page .news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  /* News list */
}
@media screen and (min-width: 1025px) {
  .news-page .news__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(2rem, 0.857rem + 2.38vw, 3rem);
  }
}
.news-page .news__container .news-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.news-page .news__container .news-item__title,
.news-page .news__container .news-item__title a {
  overflow-wrap: anywhere;
}
.news-page .news__container .news__more {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1025px) {
  .news-page .news__container .news__more {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: clamp(0rem, -14.308rem + 22.36vw, 5.813rem);
  }
}
.news-page .news__container .news__no-result {
  text-align: center;
}
.news-page .footer {
  background: #fff;
}

/*------------------------------
  news detail page styles
  お知らせ 詳細ページ
-------------------------------*/
.page--news-detail {
  /* pager */
  /* 次の記事（左） */
  /* 一覧（中央） */
  /* 前の記事（右） */
  /* リスト全体 */
}
.page--news-detail .news-detail {
  padding: 24px 0 64px;
}
.page--news-detail .news-detail .news-detail__content {
  padding-inline: clamp(0.625rem, -0.089rem + 3.57vw, 3.125rem);
}
.page--news-detail .news-detail__head {
  margin-bottom: 24px;
}
.page--news-detail .news-detail .news-item__title {
  margin-block: 12px 60px;
  line-height: 1.5;
}
.page--news-detail .news-detail__actions {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.page--news-detail .news-detail__pdf {
  margin-top: 24px;
  border: 1px solid #e6e7e8;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: none;
}
@media screen and (min-width: 1025px) {
  .page--news-detail .news-detail__pdf {
    display: block;
  }
}
.page--news-detail .news-detail__pdfHeader {
  padding: 16px 16px 12px;
  border-bottom: 1px solid #e6e7e8;
}
.page--news-detail .news-detail__pdfTitle {
  margin: 0;
  font-weight: 700;
}
.page--news-detail .news-detail__pdfNote {
  margin: 6px 0 0;
  font-size: 0.875rem;
  color: #666;
}
.page--news-detail .news-detail__pdfViewer {
  width: 100%;
  height: 70vh;
  display: block;
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .page--news-detail .news-detail__pdfViewer {
    height: 75vh;
  }
}
@media screen and (min-width: 1025px) {
  .page--news-detail .news-detail__pdfViewer {
    height: min(80vh, 920px);
  }
}
.page--news-detail .news-detail__pager {
  margin-top: 48px;
  display: grid;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  line-height: 170%;
  letter-spacing: 0.42px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "next prev" "center center";
}
@media screen and (min-width: 1025px) {
  .page--news-detail .news-detail__pager {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "next center prev";
  }
}
.page--news-detail .news-detail__pagerLink {
  text-decoration: none;
}
.page--news-detail .news-detail__pagerLink--next {
  grid-area: next;
  justify-self: start;
  text-align: left;
  padding-left: 45px;
  position: relative;
}
.page--news-detail .news-detail__pagerLink--next::after {
  content: "";
  position: absolute;
  width: clamp(1.75rem, 1.607rem + 0.71vw, 2.25rem);
  height: clamp(1.75rem, 1.607rem + 0.71vw, 2.25rem);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  background: url(../img/icon/icon-arrow.svg) no-repeat center center;
  border-radius: 999px;
  border: 1px solid #005bac;
}
.page--news-detail .news-detail__pagerLink--center {
  grid-area: center;
  justify-self: center;
  text-align: center;
  margin-top: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1025px) {
  .page--news-detail .news-detail__pagerLink--center {
    margin-top: 0;
    width: auto;
  }
}
.page--news-detail .news-detail__pagerLink--prev {
  grid-area: prev;
  justify-self: end;
  text-align: right;
  padding-right: 45px;
  position: relative;
}
.page--news-detail .news-detail__pagerLink--prev::after {
  content: "";
  position: absolute;
  width: clamp(1.75rem, 1.607rem + 0.71vw, 2.25rem);
  height: clamp(1.75rem, 1.607rem + 0.71vw, 2.25rem);
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon/icon-arrow.svg) no-repeat center center;
  border-radius: 999px;
  border: 1px solid #005bac;
}
.page--news-detail .news-detail__heading-lv2 {
  margin-block: 24px;
  color: #00348b;
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: clamp(0.037rem, 0.035rem + 0.01vw, 0.045rem);
}
.page--news-detail .news-detail__heading-lv3 {
  margin-block: 20px;
  font-size: clamp(1.125rem, 1.081rem + 0.19vw, 1.25rem);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: clamp(0.034rem, 0.032rem + 0.01vw, 0.037rem);
  display: inline-block;
  border-left: 2px solid #00348b;
}
.page--news-detail .news-detail__heading-lv4 {
  margin-block: 16px;
  color: #00348b;
  font-weight: 700;
}
.page--news-detail .news-detail__text {
  margin-bottom: 16px;
  text-align: justify;
}
.page--news-detail .news-detail__link {
  color: var(--Semantic-Link, #0017c1);
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.page--news-detail .news-detail__table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  font-weight: 700;
  min-width: 460px;
}
.page--news-detail .news-detail__table th {
  background-color: #eef2f7;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.page--news-detail .news-detail__table th[scope=row] {
  text-align: center;
  width: 140px;
}
@media screen and (min-width: 1025px) {
  .page--news-detail .news-detail__table th[scope=row] {
    width: 180px;
  }
}
.page--news-detail .news-detail__table th,
.page--news-detail .news-detail__table td {
  border: 1px solid #e6e7e8;
  padding: 10px 12px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .page--news-detail .news-detail__table th,
  .page--news-detail .news-detail__table td {
    padding: 12px 16px;
  }
}
.page--news-detail .news-detail__table td {
  text-align: left;
}
.page--news-detail .news-detail__table-caption {
  caption-side: top;
  text-align: left;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .page--news-detail .news-detail__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.page--news-detail .news-detail__list {
  list-style: disc;
  list-style-position: inside;
  padding-left: 1.2em;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 6px;
  background: #eef2f7;
}
.page--news-detail .news-detail__list-item {
  margin-bottom: 16px;
  line-height: 1.7;
}
.page--news-detail .news-detail__list-item:last-child {
  margin-bottom: 0;
}

/*------------------------------
  service page styles
  サービス ページ
-------------------------------*/
.service-page .service__lead + .service__lead {
  margin-top: 1em;
}
.service-page .service-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .service-page .service-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.service-page .service-overview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 6px;
  background: #eef2f7;
  margin-top: 48px;
}
@media screen and (min-width: 1025px) {
  .service-page .service-overview__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.service-page .service-overview__item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  position: relative;
}
.service-page .service-overview__item:nth-child(-n+2)::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  background: url(../img/icon/icon-arrow-next.svg) no-repeat center/contain;
  /* ▼ SP（デフォルト）：下向き */
  bottom: -28px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  /* ▼ PC：右向き */
}
@media screen and (min-width: 1025px) {
  .service-page .service-overview__item:nth-child(-n+2)::after {
    bottom: auto;
    top: 50%;
    right: -28px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.service-page .service-overview__icon-wrap {
  width: 248px;
  height: 176px;
  border-radius: 6px;
  background: #fff;
  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;
}
.service-page .service-overview__title {
  color: #00348b;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.72px;
}

.core-technology__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}

.core-technology__item {
  border-radius: 6px;
  background: #eef2f7;
  padding: clamp(0.938rem, 0.563rem + 1.6vw, 2rem) clamp(1.125rem, 0.465rem + 2.82vw, 3rem);
}

.core-technology__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.core-technology__text {
  margin-top: 12px;
}

.core-technology__image-approach-wrap {
  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;
  margin-top: 32px;
  width: 100%;
  background: #fff;
  padding: clamp(1.25rem, 0.216rem + 4.41vw, 4.188rem) clamp(0.625rem, -1.598rem + 9.48vw, 6.938rem);
}

.core-technology__image-wrap {
  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;
  margin-top: 32px;
  width: 100%;
}

.core-technology__image {
  background: #fff;
  border-radius: 6px;
}

.service-fields__list {
  margin-block: 48px;
  border-radius: var(--Radius-radius-1_5, 6px);
  background: var(--Main-Subtle, #eef2f7);
  padding: 32px 48px;
}

.service-fields__item {
  color: #00348b;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.6px;
  padding-left: 28px;
  position: relative;
}
.service-fields__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
  height: 14px;
  background: url("../img/icon/icon-checkr.svg") no-repeat center/contain;
}

.service-fields__lead--narrow {
  max-width: 940px;
}

.service-fields__link-wrap {
  margin-top: 48px;
  text-align: right;
}
.process__lead + .process__lead {
  margin-top: 1em;
}

.process__step {
  font-family: "Inter", sans-serif;
  background: -webkit-gradient(linear, left top, right top, from(#c30d23), to(#b81c25));
  background: linear-gradient(90deg, #c30d23 0%, #b81c25 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.process__step-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.process__step-number {
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.process__label {
  color: #00348b;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.72px;
}

.process__text {
  line-height: 180%;
  letter-spacing: 0.48px;
}

.process__list {
  border-radius: 6px;
  background: #eef2f7;
  margin-top: 48px;
  padding: 32px 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .process__list {
    padding: 32px 48px;
  }
}

.process__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 24px;
  padding-left: clamp(1.875rem, 0.936rem + 4.01vw, 3.5rem);
  position: relative;
}
@media screen and (min-width: 1025px) {
  .process__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 56px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.process__item::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#c30d23), to(#b81c25));
  background: linear-gradient(90deg, #c30d23 0%, #b81c25 100%);
  z-index: 2;
}

.process__item::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 18px;
  width: 2px;
  height: calc(100% - 1.2em);
  background: -webkit-gradient(linear, left top, right top, from(#005bac), to(#007acc));
  background: linear-gradient(90deg, #005bac 0%, #007acc 100%);
}

.process__item:last-child::after {
  display: none;
}

.process__title {
  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-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .process__title {
    width: clamp(18.75rem, 14.119rem + 7.23vw, 20.625rem);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.process__step {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.process__text {
  margin-top: 8px;
  margin-left: 48px;
  margin-left: 0;
}
@media screen and (min-width: 1025px) {
  .process__text {
    margin-left: 0;
  }
}

.process__label {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  width: auto;
}

.process__link-wrap {
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .process__link-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
  }
}

.process__link {
  margin-top: 12px;
  margin-left: 48px;
  margin-left: 0;
}
@media screen and (min-width: 1025px) {
  .process__link {
    margin-left: 0;
  }
}

.download__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .download__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 48px;
  }
}

.download__item {
  -webkit-box-flex: 6;
      -ms-flex: 6 1 0px;
          flex: 6 1 0;
}

.download__image-wrap {
  -webkit-box-flex: 4;
      -ms-flex: 4 1 0px;
          flex: 4 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.download__link-wrap {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .download__link-wrap {
    padding-top: 48px;
  }
}

/* 画像は比率管理だけ */
.download__image {
  width: 340px;
  height: auto;
  display: block;
}
@media screen and (min-width: 1025px) {
  .download__image {
    width: 100%;
    height: auto;
  }
}

/*------------------------------
  department about page styles
  計算科学技術部について ページ
-------------------------------*/
.department-about-page .service-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .department-about-page .service-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.department-about-page .mission__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 24px 40px 24px;
  padding: 0;
  border-radius: 6px;
  background: #eef2f7;
}
@media screen and (min-width: 768px) {
  .department-about-page .mission__grid {
    gap: 8;
    padding: 24px 80px 32px;
    max-width: 800px;
  }
}
@media screen and (min-width: 1025px) {
  .department-about-page .mission__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 48px 10px 48px 48px;
    max-width: none;
  }
}
.department-about-page .mission__signature {
  text-align: right;
  color: #00348b;
  margin-top: 18px;
}
.department-about-page .mission__message {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 0 20px 12px;
}
@media screen and (min-width: 1025px) {
  .department-about-page .mission__message {
    padding: 0;
  }
}
.department-about-page .mission__media {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 clamp(20rem, 7.651rem + 19.28vw, 25rem);
          flex: 0 1 clamp(20rem, 7.651rem + 19.28vw, 25rem);
  width: auto;
  max-width: 400px;
  height: 400px;
  border-radius: 6px;
  min-width: 320px;
}
.department-about-page .mission__image {
  width: 90%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-inline: auto;
}
.department-about-page .researchers__grid {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .department-about-page .researchers__grid {
    gap: 48px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 4%;
  }
}
.department-about-page .researchers__link {
  margin-top: 48px;
}
.department-about-page .researchers__image-wrap {
  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 (min-width: 768px) {
  .department-about-page .researchers__image-wrap {
    padding: 20px 80px;
  }
}
@media screen and (min-width: 1025px) {
  .department-about-page .researchers__image-wrap {
    width: 800px;
    padding: 0;
  }
}
.department-about-page .researchers__image {
  width: 100%;
  height: auto;
  display: block;
}
.department-about-page .organization__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.department-about-page .organization__item {
  border-radius: 6px;
  background: #eef2f7;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 24px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 768px) {
  .department-about-page .organization__item {
    padding: 32px 48px;
  }
}
.department-about-page .organization__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.department-about-page .organization__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.72px;
}
.department-about-page .organization__text {
  margin-top: 12px;
  line-height: 180%;
  letter-spacing: 0.48px;
}
.department-about-page .organization__image {
  margin-top: 32px;
}
.department-about-page .organization-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 6px;
  padding: 32px 12px;
  margin-top: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .department-about-page .organization-info {
    display: grid;
    padding: 32px 48px;
    grid-template-columns: 12em 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 0;
  }
}
.department-about-page .organization-info dt,
.department-about-page .organization-info dd {
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid #e6e7e8;
}
@media screen and (min-width: 1025px) {
  .department-about-page .organization-info dt,
  .department-about-page .organization-info dd {
    display: grid;
    padding: 16px 24px;
  }
}
.department-about-page .organization-info dt {
  color: #00348b;
  font-weight: 700;
  border: none;
}
@media screen and (min-width: 768px) {
  .department-about-page .organization-info dt {
    border-bottom: 1px solid #e6e7e8;
  }
}
.department-about-page .organization-info::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 32px;
  height: 1px;
  background: #e6e7e8;
}
@media screen and (min-width: 768px) {
  .department-about-page .organization-info::before {
    left: 48px;
    right: 48px;
  }
}
.department-about-page .organization-info__list {
  list-style: disc;
  padding-left: 1.2em;
}

.section-index__inner {
  padding-bottom: 48px;
}

.title-ja {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.72px;
  color: #00348b;
}

.body-text + .body-text {
  margin-top: 16px;
}

.section-nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  padding: 20px 40px;
  border-radius: var(--Radius-radius-1_5, 6px);
  background: var(--Main-Subtle, #eef2f7);
}

.section-nav__item {
  position: relative;
  padding-left: 16px;
}
.section-nav__item::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #00348b;
  border-radius: 50%;
}

/* ===== Researchers layout ===== */
/* =========================
  Researchers
========================= */
.department-researchers-page {
  /* =========================
    Polaroid Card
  ========================= */
  /* =========================
    Modal
  ========================= */
  /* bodyスクロール停止 */
  /* ふわっと出す：初期状態 */
  /* 初期 */
  /* 表示 */
}
.department-researchers-page .researchers {
  background: #eef2f7;
  padding: 56px 16px;
}
.department-researchers-page .researchers__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.department-researchers-page .researchers__title {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 24px;
}
.department-researchers-page .researchers__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1023px) {
  .department-researchers-page .researchers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 599px) {
  .department-researchers-page .researchers__grid {
    grid-template-columns: 1fr;
  }
}
.department-researchers-page .polaroid {
  background: #fff;
  border-radius: 6px;
  padding: 24px 20px;
  -webkit-box-shadow: 0 18px 40px rgba(7, 18, 33, 0.12);
          box-shadow: 0 18px 40px rgba(7, 18, 33, 0.12);
  position: relative;
}
.department-researchers-page .polaroid__photo {
  border-radius: 6px;
  overflow: hidden;
  background: #f3f4f6;
}
.department-researchers-page .polaroid__photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
}
.department-researchers-page .polaroid__meta {
  margin-top: 12px;
  padding: 10px 6px 0;
}
.department-researchers-page .polaroid__name {
  color: #00348b;
  font-weight: 500;
  margin: 0;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.6px;
}
.department-researchers-page .polaroid__role {
  margin: 6px 0 0;
  font-size: 13px;
  opacity: 0.8;
  line-height: 180%;
  letter-spacing: 0.48px;
}
.department-researchers-page .polaroid__btn {
  margin-top: 12px;
  width: 100%;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.42px;
  padding-right: 43px;
  text-align: right;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .department-researchers-page .polaroid__btn:hover {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}
.department-researchers-page .modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  /* 右側の情報 */
}
.department-researchers-page .modal.is-open {
  display: block;
}
.department-researchers-page .modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 33, 0.6);
}
.department-researchers-page .modal__panel {
  position: relative;
  max-width: 920px;
  margin: 6vh auto;
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
          box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  padding: 18px;
  outline: none;
  position: relative;
}
.department-researchers-page .modal__panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/department/bg-about-modal.svg) no-repeat bottom left;
  pointer-events: none; /* クリックを邪魔しない */
  z-index: 0;
}
@media (max-width: 599px) {
  .department-researchers-page .modal__panel {
    margin: 4vh 12px;
  }
}
.department-researchers-page .modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.department-researchers-page .modal__body {
  display: grid;
  grid-template-columns: 320px 1fr;
  padding: 48px;
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 740px) {
  .department-researchers-page .modal__body {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }
}
.department-researchers-page .modal__photo {
  width: 240px;
  height: 240px;
  overflow: hidden;
}
.department-researchers-page .modal__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
}
.department-researchers-page .modal__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #00348b;
  font-weight: 500;
  gap: 8px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 4px;
}
.department-researchers-page .modal__name-ja {
  display: block;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.72px;
}
.department-researchers-page .modal__name-en {
  display: block;
  font-size: 18px;
  font-family: Inter;
  line-height: 120%;
}
.department-researchers-page .modal__role, .department-researchers-page .modal__degree {
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.48px;
}
.department-researchers-page .modal__divider {
  margin: 18px 0;
  border: none;
  border-top: 1px solid rgba(7, 18, 33, 0.12);
}
.department-researchers-page .modal__headline {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.6px;
  border-left: 3px solid #00348b;
  padding-left: 10px;
  margin-bottom: 4px;
}
.department-researchers-page .modal__message {
  line-height: 180%;
  letter-spacing: 0.48px;
}
.department-researchers-page .modal__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
}
.department-researchers-page .modal__meta dt {
  font-weight: 700;
  opacity: 0.85;
  width: 86px;
  border-radius: 4px;
  background: #00348b;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.36px;
  -ms-flex-item-align: start;
      align-self: start;
  white-space: nowrap;
  text-align: center;
}
.department-researchers-page .modal__meta dd {
  margin: 0;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.48px;
}
.department-researchers-page .modal__cases ul {
  padding-left: 1.2em;
  margin: 0;
}
.department-researchers-page body.is-modal-open {
  overflow: hidden;
}
.department-researchers-page .modal {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.department-researchers-page .modal__backdrop {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.department-researchers-page .modal__panel {
  opacity: 0;
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
.department-researchers-page .modal.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.25s ease, visibility 0s;
  transition: opacity 0.25s ease, visibility 0s;
}
.department-researchers-page .modal.is-open .modal__backdrop {
  opacity: 1;
}
.department-researchers-page .modal.is-open .modal__panel {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.department-researchers-page .modal__backdrop {
  backdrop-filter: blur(2px);
}
.department-researchers-page .polaroid {
  cursor: pointer;
}

.privacy-policy-page .body-text {
  margin-bottom: 16px;
}
.privacy-policy-page .privacy__content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy-page .privacy__heading {
  color: #00348b;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.72px;
  padding-block: 24px;
}

/* ------------------------------
  business download page
------------------------------- */
.page--business-download .business-download {
  padding-block: 40px 72px;
  /* 操作ボタン群 */
  /* PDFカード */
  /* PDFビューア本体 */
}
@media screen and (min-width: 768px) {
  .page--business-download .business-download {
    padding-block: 56px 88px;
  }
}
@media screen and (min-width: 1025px) {
  .page--business-download .business-download {
    padding-block: 64px 96px;
  }
}
.page--business-download .business-download__head {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page--business-download .business-download__head {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .page--business-download .business-download__head {
    margin-bottom: 28px;
  }
}
.page--business-download .business-download__title {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.page--business-download .business-download__content {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .page--business-download .business-download__content {
    gap: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .page--business-download .business-download__content {
    gap: 28px;
  }
}
.page--business-download .business-download__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1025px) {
  .page--business-download .business-download__actions {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.page--business-download .business-download__actions .cta {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .page--business-download .business-download__actions .cta {
    width: auto;
    min-width: 220px;
  }
}
.page--business-download .business-download__pdf {
  border-radius: 12px;
  overflow: hidden;
}
.page--business-download .business-download__pdfHeader {
  padding: 16px 16px 12px;
}
@media screen and (min-width: 768px) {
  .page--business-download .business-download__pdfHeader {
    padding: 18px 20px 14px;
  }
}
@media screen and (min-width: 1025px) {
  .page--business-download .business-download__pdfHeader {
    padding: 20px 24px 16px;
  }
}
.page--business-download .business-download__pdfTitle {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0 0 6px;
}
.page--business-download .business-download__pdfNote {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.85;
}
.page--business-download .business-download__pdfViewer {
  width: 100%;
  display: block;
  height: 62vh;
  min-height: 420px;
  max-height: 860px;
}
@media screen and (min-width: 768px) {
  .page--business-download .business-download__pdfViewer {
    height: 68vh;
    min-height: 520px;
  }
}
@media screen and (min-width: 1025px) {
  .page--business-download .business-download__pdfViewer {
    height: 72vh;
    min-height: 620px;
  }
}

/* ------------------------------
  contact page
------------------------------- */
.contact-form-page .contact-form {
  background: #eef2f7;
}
.contact-form-page .contact-form__form {
  padding: 48px;
  background: #fff;
}