@charset "UTF-8";
/*
 * メインスタイルシート
 * 複数のSCSSファイルをまとめてコンパイル
 */
/*
 * 共通変数定義
 */
/*
 * 共通スタイル
 */
body {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1F1F1F;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

.only_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .only_pc {
    display: none;
  }
}

.only_tablet_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .only_tablet_sp {
    display: block;
  }
}

.only_sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .only_sp {
    display: block;
  }
}

.only_adjust_pc {
  display: none;
}
@media screen and (max-width: 1024px) {
  .only_adjust_pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .only_adjust_pc {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .hidden_sp {
    display: none;
  }
}

/*
 * セクションタイトル
 */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2px;
  gap: 2px;
}
.section-title__en {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #005eac;
  letter-spacing: 0.32px;
  line-height: 1.5;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-title__en {
    font-size: 14px;
  }
}
.section-title__ja {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #1D365E;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .section-title__ja {
    font-size: 28px;
  }
}

/*
 * カスタムヘッダー用スタイル
 */
body.submenu-active::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px 12px 30px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header-nav.tablet-up {
    display: none;
  }
}
.header-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-nav.fixed .header-submenu {
  top: calc(100% + 28px);
  background-color: #FFFFFF;
}
.header-nav.fixed .header-submenu::before {
  top: -20px;
  transform: translateX(-50%) rotate(180deg);
  border-bottom: 12px solid #FFFFFF;
}
.header-nav.transparent {
  background-color: transparent;
  box-shadow: none;
}
.header-nav.transparent .header-logo-wrapper {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
}
.header-nav.transparent .header-logo {
  background-color: #FFFFFF;
}
.header-nav.transparent .header-menu {
  display: none;
}
.header-nav.transparent .header-cta-button.entry {
  background: #005EAC;
}
.header-nav.transparent .header-cta-button.entry:hover {
  opacity: 0.9;
  background: #005EAC;
}
.header-nav.transparent .header-cta-button.internship {
  background: #2A9AD6;
}
.header-nav.transparent .header-cta-button.internship:hover {
  opacity: 0.9;
  background: #2A9AD6;
}

.header-logo-wrapper {
  transition: filter 0.3s ease;
  padding-bottom: 8px;
}

.header-logo {
  width: 208px;
  aspect-ratio: 208/56;
  /* 表示したいロゴの色 */
  background-color: #1D365E;
  transition: background-color 0.3s ease;
  /* マスクの設定（現在は-webkit-プレフィックスが必要なブラウザが多いです） */
  -webkit-mask-image: url("../img/logo-wide.svg");
  mask-image: url("../img/logo-wide.svg");
  /* マスクの調整（背景画像の設定とほぼ同じ） */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  /* ホバー時に色を変えるのも簡単！ */
}

.header-content {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.header-content .header-menu {
  display: flex;
  gap: 0px;
}
@media (max-width: 1140px) {
  .header-content .header-menu {
    display: none;
  }
}
.header-content .header-menu .header-menu-item {
  position: relative;
}
.header-content .header-menu .header-menu-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #005eac;
}
.header-content .header-menu a,
.header-content .header-menu .header-menu-link {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 5px 12px;
  text-decoration: none;
  cursor: pointer;
}
.header-content .header-menu a:hover .icon::before,
.header-content .header-menu .header-menu-link:hover .icon::before {
  opacity: 1;
}
@media (max-width: 1280px) {
  .header-content .header-menu a,
  .header-content .header-menu .header-menu-link {
    padding: 5px 8px;
  }
}
.header-content .header-menu a .header-menu-text,
.header-content .header-menu .header-menu-link .header-menu-text {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  color: #1D365E;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 1px;
  padding-bottom: 1px;
}
.header-content .header-menu a .icon,
.header-content .header-menu .header-menu-link .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  background-color: #1D365E;
  border-radius: 2px;
  overflow: hidden;
}
.header-content .header-menu a .icon::before,
.header-content .header-menu .header-menu-link .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1D365E;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.header-content .header-menu a .icon span,
.header-content .header-menu .header-menu-link .icon span {
  position: absolute;
  background-color: white;
  z-index: 1;
}
.header-content .header-menu a .icon span:first-child,
.header-content .header-menu .header-menu-link .icon span:first-child {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.header-content .header-menu a .icon span:last-child,
.header-content .header-menu .header-menu-link .icon span:last-child {
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 8px;
  transform: translate(-50%, -50%);
}

.header-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background-color: #F7F7F7;
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header-submenu.is-active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header-submenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #F7F7F7;
}
.header-submenu .submenu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px !important;
  min-height: 24px;
  text-decoration: none;
  border-bottom: 0.3px dashed #7B7B7B;
  transition: background-color 0.3s ease;
}
.header-submenu .submenu-item:last-child {
  border-bottom: none;
}
.header-submenu .submenu-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 2px;
}
.header-submenu .submenu-item .submenu-text {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  color: #1D365E;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
.header-submenu .submenu-item .submenu-text.small {
  font-size: 14px;
}
.header-submenu .submenu-item .submenu-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid #1D365E;
  border-radius: 50%;
  position: relative;
}
.header-submenu .submenu-item .submenu-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 5px solid #1D365E;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.header-cta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.header-cta .header-cta-top {
  display: flex;
  gap: 4px;
  align-items: center;
  width: 100%;
}
.header-cta .header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 220px;
  height: 36px;
  flex: 0 0 220px;
  background-color: #FFFFFF;
  border: 1px solid #1D365E;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1360px) {
  .header-cta .header-search {
    width: 180px;
    flex-basis: 180px;
  }
}
@media (max-width: 1240px) {
  .header-cta .header-search {
    width: 150px;
    flex-basis: 150px;
  }
}
.header-cta .header-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.header-cta .header-search__input {
  width: 100%;
  height: 100%;
  padding: 0 36px 0 12px;
  border: none;
  background: transparent;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  outline: none;
}
.header-cta .header-search__input::-moz-placeholder {
  color: rgba(29, 54, 94, 0.7);
}
.header-cta .header-search__input::placeholder {
  color: rgba(29, 54, 94, 0.7);
}
.header-cta .header-search__button {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header-cta .header-search__button::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 12px;
  height: 12px;
  border: 2px solid #1D365E;
  border-radius: 50%;
}
.header-cta .header-search__button::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 8px;
  height: 2px;
  background-color: #1D365E;
  transform: rotate(45deg);
  transform-origin: left center;
}
.header-cta .header-search__button:hover {
  opacity: 0.75;
}
.header-cta .header-cta-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 260px;
  height: 36px;
  padding: 1px;
  background-color: #FFFFFF;
  border: 1px solid #1D365E;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1360px) {
  .header-cta .header-cta-sns {
    width: 230px;
  }
}
@media (max-width: 1240px) {
  .header-cta .header-cta-sns {
    width: 210px;
  }
}
.header-cta .header-cta-sns:hover {
  opacity: 0.9;
}
.header-cta .header-cta-sns .header-cta-sns-text {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  color: #1D365E;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header-cta .header-cta-sns .header-cta-sns-icon {
  width: 24px;
  height: 24px;
  background-color: #1D365E;
  -webkit-mask-image: url("../img/icons/instagram.svg");
          mask-image: url("../img/icons/instagram.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: background-color 0.3s ease;
}
.header-cta .header-cta-buttons {
  display: flex;
  gap: 4px;
  width: 100%;
  justify-content: flex-end;
}
.header-cta .header-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  min-width: 104px;
  height: 36px;
  padding: 10px 0 8px;
  border-radius: 4px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.header-cta .header-cta-button.entry {
  background-color: #005eac;
}
.header-cta .header-cta-button.entry:hover {
  background-color: rgb(0, 71.7023255814, 131.2);
}
.header-cta .header-cta-button.internship {
  background-color: #2A9AD6;
}
.header-cta .header-cta-button.internship:hover {
  background-color: rgb(34.737007874, 129.6283464567, 180.462992126);
}
.header-cta .header-cta-button .header-cta-text {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}

.header-hamburger {
  align-self: center;
}
.header-hamburger .header-hamburger-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #1D365E;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.header-hamburger .header-hamburger-button:hover {
  opacity: 0.8;
}
.header-hamburger .header-hamburger-button.opened .header-hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-hamburger .header-hamburger-button.opened .header-hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.header-hamburger .header-hamburger-button.opened .header-hamburger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header-hamburger .header-hamburger-button .header-hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 24px;
  height: 24px;
}
.header-hamburger .header-hamburger-button .header-hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

.sp-header-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sp-header-nav {
    display: flex;
  }
}
.sp-header-nav.transparent {
  background-color: transparent;
  box-shadow: none;
}
.sp-header-nav.transparent .sp-header-logo-wrapper {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}
.sp-header-nav.transparent .sp-header-logo {
  background-color: #FFFFFF;
}
.sp-header-nav.transparent.menu-opened {
  background-color: #FFFFFF;
}
.sp-header-nav.transparent.menu-opened .sp-header-logo-wrapper {
  filter: none;
}
.sp-header-nav.transparent.menu-opened .sp-header-logo {
  background-color: #1D365E;
}
.sp-header-nav:not(.transparent) .sp-header-logo-wrapper {
  filter: none;
}
.sp-header-nav:not(.transparent) .sp-header-logo {
  background-color: #1D365E;
}
.sp-header-nav.menu-opened {
  box-shadow: none;
}

.sp-header-logo-wrapper {
  padding-bottom: 3px;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sp-header-logo-wrapper {
    padding-bottom: 6px;
  }
}

.sp-header-logo {
  width: clamp(145px, 123.56px + 6.7vw, 175px);
  aspect-ratio: 145/36;
  background-color: #005eac;
  -webkit-mask-image: url("../img/logo-wide.svg");
  mask-image: url("../img/logo-wide.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color 0.3s ease;
}

.sp-header-actions {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.sp-header-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 18px;
  height: 60px;
  background: #005eac;
  text-decoration: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sp-header-entry:hover {
  opacity: 0.9;
}
.sp-header-nav.menu-opened .sp-header-entry {
  opacity: 0;
  visibility: hidden;
}

.sp-header-entry-text {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 14.4px;
  letter-spacing: 0.6px;
  color: #FFFFFF;
  text-align: center;
}

.sp-header-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #1D365E;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.sp-header-hamburger.opened {
  background-color: #1D365E;
  opacity: 0.9;
}
.sp-header-hamburger.opened .sp-header-hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.sp-header-hamburger.opened .sp-header-hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.sp-header-hamburger.opened .sp-header-hamburger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sp-header-hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 24px;
  height: 24px;
}
.sp-header-hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

.sp-menu-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s;
  overflow-y: auto;
}
.sp-menu-overlay.is-active {
  visibility: visible;
  opacity: 1;
}

.sp-menu-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.sp-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}

.sp-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 12px 6px;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
}

.sp-menu-button-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.sp-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 4px;
  text-decoration: none;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.3px;
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}
.sp-menu-button:hover {
  opacity: 0.9;
}
.sp-menu-button span {
  line-height: 1;
}

.sp-menu-button-entry {
  background: #005EAC;
  height: 60px;
}

.sp-menu-button-internship {
  background: #2A9AD6;
  height: 60px;
}

.sp-menu-button-recruit-fresh {
  background-color: #FFFFFF;
  color: #005eac;
  border: 2px solid #005eac;
  font-size: 16px;
  letter-spacing: 0.8px;
  height: 60px;
  line-height: 28px;
  font-weight: 600;
}

.sp-menu-button-recruit-career {
  background-color: #1D365E;
  font-size: 16px;
  letter-spacing: 0.8px;
  height: 60px;
  line-height: 28px;
  font-weight: 600;
}

.sp-menu-button-icon {
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.sp-menu-button-icon.sp-menu-button-icon-entry {
  -webkit-mask-image: url("../img/icons/entry.svg");
          mask-image: url("../img/icons/entry.svg");
}
.sp-menu-button-icon.sp-menu-button-icon-internship {
  -webkit-mask-image: url("../img/icons/internship.svg");
          mask-image: url("../img/icons/internship.svg");
}

.sp-menu-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid rgba(29, 54, 94, 0.2);
  border-bottom: 2px solid rgba(29, 54, 94, 0.2);
}

.sp-menu-accordion {
  border-bottom: 0.3px solid rgba(29, 54, 94, 0.2);
}
.sp-menu-accordion:last-child {
  border-bottom: none;
}

.sp-menu-item,
.sp-menu-accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.sp-menu-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px 2px;
  height: 80px;
}
.sp-menu-accordion.is-active .sp-menu-item-content {
  padding-bottom: 2px;
}

.sp-menu-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  flex: 1;
}
.sp-menu-item-text .sp-menu-item-label {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #005eac;
  letter-spacing: 0;
  line-height: 2;
  padding-left: 2px;
}
.sp-menu-item-text .sp-menu-item-title {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1;
}

.sp-menu-item-arrow,
.sp-menu-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.sp-menu-item-arrow {
  width: 32px;
  height: 32px;
  margin-right: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 5L12.5 10L7.5 15' stroke='%234B4B4B' stroke-width='0.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
}

.sp-menu-item-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-top: 0;
  margin-right: -10px;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.sp-menu-item-icon::before, .sp-menu-item-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #333;
  transition: transform 0.4s ease;
}
.sp-menu-item-icon::before {
  width: 24px;
  height: 0.6px;
  transform: translate(-50%, -50%);
}
.sp-menu-item-icon::after {
  width: 0.6px;
  height: 24px;
  transform: translate(-50%, -50%);
}
.sp-menu-accordion.is-active .sp-menu-item-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sp-menu-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}
.sp-menu-accordion.is-active .sp-menu-accordion-content {
  max-height: 500px;
}

.sp-menu-submenu {
  display: flex;
  flex-direction: column;
  padding: 0 20px 28px;
}
.sp-menu-submenu a {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #1F1F1F;
  text-decoration: none;
  line-height: 1.5;
  padding: 4px 0;
}
.sp-menu-submenu a:hover {
  opacity: 0.7;
}
.sp-menu-submenu a:not(:last-child) {
  margin-bottom: 8px;
}

.sp-menu-sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 9px 16px;
}

.sp-menu-sns-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-menu-sns-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.sp-menu-sns-icons a:hover {
  opacity: 0.7;
}

.sp-menu-sns-icon {
  width: 26px;
  height: 26px;
  background-color: #1D365E;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.sp-menu-sns-icon.sp-menu-sns-icon-instagram {
  -webkit-mask-image: url("../img/icons/instagram.svg");
          mask-image: url("../img/icons/instagram.svg");
}
.sp-menu-sns-icon.sp-menu-sns-icon-facebook {
  -webkit-mask-image: url("../img/icons/facebook.svg");
          mask-image: url("../img/icons/facebook.svg");
}

.sp-menu-sns-label {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 8px;
  font-weight: 600;
  color: #1D365E;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: normal;
}

.full-page-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .full-page-menu-overlay.tablet-up {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .full-page-menu-overlay.tablet-up {
    display: block;
  }
}
.full-page-menu-overlay.is-active {
  visibility: visible;
  opacity: 1;
}

.full-page-menu-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px;
}
@media (max-width: 1100px) {
  .full-page-menu-wrapper {
    padding: 100px 80px 40px;
  }
}

.full-page-menu-content {
  display: flex;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 900px) {
  .full-page-menu-content {
    gap: 150px;
  }
}

.full-page-menu-logo-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 16vw;
  min-width: 120px;
}
@media (max-width: 900px) {
  .full-page-menu-logo-section {
    padding-right: 0;
  }
}

.full-page-menu-logo {
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-page-menu-logo img {
  width: 100%;
  height: 100%;
}

.full-page-menu-columns {
  display: flex;
  gap: 60px;
  flex: 1;
  max-width: 900px;
}
@media (max-width: 1100px) {
  .full-page-menu-columns {
    gap: 0px;
  }
}
@media (max-width: 900px) {
  .full-page-menu-columns {
    flex-direction: column;
    gap: 28px;
  }
}

.full-page-menu-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 0 0 auto;
  min-width: 0;
  padding-top: 12px;
}
.full-page-menu-column:nth-child(1) {
  width: 180px;
}
.full-page-menu-column:nth-child(2) {
  width: 300px;
}
.full-page-menu-column:nth-child(3) {
  width: 240px;
}
@media (max-width: 900px) {
  .full-page-menu-column {
    width: 100% !important;
    gap: 20px;
  }
}

.full-page-menu-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 900px) {
  .full-page-menu-section {
    gap: 16px;
  }
}

.full-page-menu-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-top: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 900px) {
  .full-page-menu-heading {
    padding-top: 16px;
  }
}
.full-page-menu-heading:hover {
  opacity: 0.7;
}

.full-page-menu-label {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 900;
  color: #005eac;
  letter-spacing: 0;
  line-height: 2;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 1px;
}
@media (max-width: 900px) {
  .full-page-menu-label {
    font-size: 9px;
  }
}

.full-page-menu-title {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1F1F1F;
  line-height: 1;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .full-page-menu-title {
    font-size: 18px;
  }
}

.full-page-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 900px) {
  .full-page-menu-list {
    gap: 4px;
  }
}
.full-page-menu-list li a {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #1D365E;
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}
@media (max-width: 900px) {
  .full-page-menu-list li a {
    font-size: 14px;
    max-width: 240px;
    line-height: 1.8;
  }
}
.full-page-menu-list li a:hover {
  opacity: 0.7;
}

.header-nav.menu-opened {
  box-shadow: none;
}
.header-nav.menu-opened.transparent .header-logo {
  background-color: #005eac;
}
.header-nav.menu-opened .header-menu {
  display: none;
}
.header-nav.menu-opened .header-hamburger-button {
  background-color: #1D365E;
}
.header-nav.menu-opened .header-hamburger-button .header-hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-nav.menu-opened .header-hamburger-button .header-hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.header-nav.menu-opened .header-hamburger-button .header-hamburger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/*
 * カスタムフッター用スタイル
 */
.footer {
  display: block;
  border-top: 0.5px solid #1D365E;
  padding: 80px 0 40px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .footer {
    display: none;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 40px 20px;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    gap: 40px;
  }
}
.footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 120px;
  width: 80vw;
  max-width: 1000px;
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    gap: 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer__nav {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__logo {
  flex-shrink: 0;
  width: 132px;
  height: 132px;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .footer__logo {
    margin: 0 auto;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  gap: 28px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding-top: 18px;
}
@media screen and (max-width: 480px) {
  .footer__column {
    width: 100%;
    padding-top: 0;
  }
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__heading {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 18.57px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: #1D365E;
}
@media screen and (max-width: 1024px) {
  .footer__heading {
    font-size: 14px;
    line-height: 16.2px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__link-item {
  margin: 0;
}
.footer__link {
  font-size: 15px;
  font-weight: normal;
  line-height: 20px;
  color: #1D365E;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .footer__link {
    font-size: 14px;
    line-height: 18px;
  }
}
.footer__copyright {
  width: 100%;
  padding-top: 3px;
  text-align: center;
}
.footer__copyright p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1D365E;
}
@media screen and (max-width: 480px) {
  .footer__copyright p {
    font-size: 9px;
    line-height: 14px;
  }
}

.footer-sp {
  display: none;
  background-color: #FFFFFF;
  border-top: 0.5px solid #1D365E;
  padding: 40px 20px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .footer-sp {
    display: block;
  }
}
.footer-sp__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
@media screen and (max-width: 480px) {
  .footer-sp__inner {
    gap: 20px;
  }
}
.footer-sp__logo {
  width: clamp(145px, 123.56px + 6.7vw, 175px);
  aspect-ratio: 145/36;
  background-color: #1D365E;
  -webkit-mask-image: url("../img/logo-wide.svg");
          mask-image: url("../img/logo-wide.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.footer-sp__logo img {
  display: none;
}
.footer-sp__copyright p {
  margin: 0;
  padding-left: 8px;
  font-size: clamp(8px, 2.56vw, 10px);
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: clamp(0.8px, 0.26vw, 1px);
  text-transform: uppercase;
  color: #1D365E;
}

main.top {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.top-intro {
  position: relative;
  width: 100%;
  min-height: 800px;
  background-color: #0077C0;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .top-intro {
    min-height: 700px;
  }
}
.top-intro__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.1;
  pointer-events: none;
}
.top-intro__container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 140px 100px 80px;
  gap: 80px;
}
.top-intro__content {
  position: relative;
  flex: 0 1 clamp(420px, 39.7vw, 572px);
  padding-bottom: 4vw;
}
.top-intro__heading {
  margin-bottom: clamp(60px, 6vw, 110px);
}
.top-intro__title {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1;
}
.top-intro__subtitle {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 2.13px;
  margin: 0;
}
.top-intro__text {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 2;
  width: 100%;
}
.top-intro__text p {
  margin: 0;
}
.top-intro__map {
  position: relative;
  flex: 0 0 clamp(280px, 24vw, 345px);
  height: clamp(390px, 33.3vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-intro__map-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .top-intro {
    min-height: 600px;
  }
  .top-intro__container {
    justify-content: center;
    padding: 100px 40px 60px;
  }
  .top-intro__content {
    flex: 0 1 auto;
    max-width: 640px;
    text-align: center;
  }
  .top-intro__heading {
    margin-bottom: 60px;
  }
  .top-intro__title {
    font-size: 36px;
  }
  .top-intro__subtitle {
    font-size: 18px;
  }
  .top-intro__text {
    font-size: 16px;
    margin: 0 auto;
  }
  .top-intro__map {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top-intro {
    min-height: 500px;
  }
  .top-intro__container {
    padding: 80px 24px 60px;
  }
  .top-intro__content {
    max-width: 560px;
  }
  .top-intro__heading {
    margin-bottom: 50px;
  }
  .top-intro__title {
    font-size: 32px;
  }
  .top-intro__subtitle {
    font-size: 18px;
    letter-spacing: 1.5px;
  }
  .top-intro__text {
    font-size: 15px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 480px) {
  .top-intro {
    min-height: auto;
  }
  .top-intro__container {
    justify-content: flex-start;
    padding: 70px 20px 50px;
  }
  .top-intro__content {
    text-align: left;
    max-width: 100%;
  }
  .top-intro__heading {
    margin-bottom: 40px;
  }
  .top-intro__title {
    font-size: 26px;
  }
  .top-intro__subtitle {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .top-intro__text {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
  }
}

.cta-area {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .cta-area {
    padding: 0 16px;
  }
}
@media screen and (max-width: 480px) {
  .cta-area {
    padding: 0 12px;
  }
}

.cta-btn-section {
  background-color: #0077C0;
  border-radius: 8px;
  padding: 60px 80px;
  margin-top: 40px;
  min-height: 328px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-btn-section__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-btn-section__content {
  flex: 0 1 auto;
  min-width: 330px;
  padding-right: 20px;
  color: #FFFFFF;
}
.cta-btn-section__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 20px 0;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .cta-btn-section__title {
    font-size: 48px;
  }
}
.cta-btn-section__subtitle {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .cta-btn-section__subtitle {
    font-size: 14px;
  }
}
.cta-btn-section__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding-top: 20px;
  width: 380px;
}
@media screen and (max-width: 1024px) {
  .cta-btn-section__buttons {
    width: 280px;
  }
}
.cta-btn-section__button-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.cta-btn-section__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  height: 60px;
  padding: 0 30px;
  border: 1.5px solid #FFFFFF;
  border-radius: 6px;
  background: transparent;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-btn-section__btn:hover {
  background-color: #FFFFFF;
  color: #0077C0;
}
.cta-btn-section__btn:hover .cta-btn-section__btn-icon {
  background-color: #0077C0;
}
.cta-btn-section__btn:hover .cta-btn-section__btn-icon::after {
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .cta-btn-section__btn {
    width: 100%;
    max-width: 380px;
    height: 60px;
    padding: 0 24px;
  }
}
.cta-btn-section__btn-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.cta-btn-section__btn-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.cta-btn-section__btn-icon::after {
  content: "";
  width: 6.5px;
  height: 11px;
  background-color: #0077C0;
  -webkit-mask-image: url("../img/icons/arrow.svg");
          mask-image: url("../img/icons/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: background-color 0.3s ease;
}
.cta-btn-section__mynavi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 280px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .cta-btn-section__mynavi {
    width: 100%;
    max-width: 380px;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .cta-btn-section__mynavi {
    width: 90%;
    justify-content: center;
  }
}
.cta-btn-section__mynavi-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.cta-btn-section__mynavi-link img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.cta-btn-section__mynavi-link--coming-soon {
  cursor: default;
}
.cta-btn-section__mynavi-link--coming-soon::after {
  content: "準備中";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cta-btn-section__mynavi-link--coming-soon:hover::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .cta-btn-section {
    padding: 50px 30px;
    margin-top: 60px;
  }
  .cta-btn-section__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .cta-btn-section__content {
    padding-right: 0;
    min-width: auto;
    text-align: center;
  }
  .cta-btn-section__title {
    font-size: 48px;
  }
  .cta-btn-section__subtitle {
    font-size: 14px;
  }
  .cta-btn-section__buttons {
    width: 100%;
    max-width: 380px;
    align-items: center;
  }
  .cta-btn-section__button-group {
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .cta-btn-section {
    padding: 50px 20px 54px;
    margin-top: 40px;
  }
  .cta-btn-section__container {
    gap: 20px;
  }
  .cta-btn-section__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .cta-btn-section__subtitle {
    font-size: 13px;
  }
  .cta-btn-section__buttons {
    gap: 12px;
    padding-top: 10px;
  }
  .cta-btn-section__button-group {
    gap: 10px;
  }
  .cta-btn-section__btn {
    width: 90%;
    height: 60px;
    padding: 0 24px;
  }
  .cta-btn-section__btn-text {
    font-size: 14px;
  }
}

.cta-internship-section {
  background-color: #2A9AD6;
  border-radius: 8px;
  padding: 60px 80px;
  margin-top: 10px;
  display: flex;
  min-height: 328px;
  align-items: center;
}
.cta-internship-section__container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
}
.cta-internship-section__content {
  flex: 0 1 auto;
  min-width: 330px;
  padding-right: 20px;
  color: #FFFFFF;
}
.cta-internship-section__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 20px 0;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .cta-internship-section__title {
    font-size: 48px;
  }
}
.cta-internship-section__subtitle {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .cta-internship-section__subtitle {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .cta-internship-section__subtitle {
    font-size: 13px;
  }
}
.cta-internship-section__buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding-top: 20px;
}
.cta-internship-section__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  height: 60px;
  padding: 0 30px;
  border: 1.5px solid #FFFFFF;
  border-radius: 6px;
  background: transparent;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-internship-section__btn:hover {
  background-color: #FFFFFF;
  color: #2A9AD6;
}
.cta-internship-section__btn:hover .cta-internship-section__btn-icon {
  background-color: #2A9AD6;
}
.cta-internship-section__btn:hover .cta-internship-section__btn-icon::after {
  background-color: #FFFFFF;
}
.cta-internship-section__btn-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.cta-internship-section__btn-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 6px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.cta-internship-section__btn-icon::after {
  content: "";
  width: 6.5px;
  height: 11px;
  background-color: #2A9AD6;
  -webkit-mask-image: url("../img/icons/arrow.svg");
          mask-image: url("../img/icons/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .cta-internship-section {
    padding: 50px 30px;
  }
  .cta-internship-section__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .cta-internship-section__content {
    padding-right: 0;
    min-width: auto;
    text-align: center;
  }
  .cta-internship-section__title {
    font-size: 48px;
  }
  .cta-internship-section__subtitle {
    font-size: 14px;
  }
  .cta-internship-section__buttons {
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .cta-internship-section {
    margin-top: 8px;
    padding: 40px 20px;
  }
  .cta-internship-section__container {
    gap: 20px;
  }
  .cta-internship-section__title {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .cta-internship-section__subtitle {
    font-size: 13px;
  }
  .cta-internship-section__buttons {
    gap: 12px;
    padding-top: 10px;
  }
  .cta-internship-section__btn {
    width: 90%;
    height: 60px;
    padding: 0 24px;
  }
  .cta-internship-section__btn-text {
    font-size: 14px;
  }
}

/*
 * トップページメインビジュアル
 */
.top-mv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.top-mv .splide {
  width: 100%;
  height: 100%;
}
.top-mv .splide__track {
  height: 100%;
}
.top-mv .splide__list {
  height: 100%;
}
.top-mv .splide__slide {
  height: 100%;
}

.top-mv__slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.top-mv__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 0;
  pointer-events: none;
}
.top-mv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.top-mv__text {
  position: absolute;
  left: 40px;
  bottom: 40px;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 100px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-mv__text {
    left: 20px;
    bottom: 30px;
    font-size: 60px;
  }
}
@media screen and (max-width: 480px) {
  .top-mv__text {
    left: 16px;
    bottom: 20px;
    font-size: 40px;
  }
}
.top-mv__text .ja {
  display: block;
}
.top-mv__text .en {
  display: block;
  font-size: 60px;
  letter-spacing: 0.02em;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .top-mv__text .en {
    font-size: 36px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 480px) {
  .top-mv__text .en {
    font-size: 20px;
    margin-top: 6px;
  }
}

@media screen and (max-width: 768px) {
  .top-mv {
    height: auto;
  }
  .top-mv__slide {
    height: 133.33vw;
    max-height: 100vh;
  }
  .top-mv__slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0) 50%);
    z-index: 0;
    pointer-events: none;
  }
  .top-mv__slide img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 768px) {
  .mt-header-fixed {
    margin-top: 60px;
  }
}

.sub-mv {
  position: relative;
  width: 100%;
  height: clamp(min(500px, 50svh), 56.9444444444vw, min(860px, 100svh - 100px));
  max-width: 1920px;
  margin-inline: auto;
  overflow: hidden;
}
@media (min-width: 1920px) {
  .sub-mv {
    height: 80vh;
    max-width: none;
  }
}
.sub-mv__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub-mv__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.sub-mv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(18.9993deg, rgba(0, 0, 0, 0.4) 0.74%, rgba(0, 0, 0, 0) 38.77%, rgba(0, 0, 0, 0) 90.45%);
  pointer-events: none;
}
.sub-mv__content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 1;
}
.sub-mv__title {
  font-size: clamp(40px, 6.5vw, 110px);
  font-weight: 600;
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .sub-mv__content {
    left: 30px;
    bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .sub-mv {
    height: min(65.1041666667vw, 100svh - 80px);
  }
  .sub-mv__content {
    left: 24px;
    bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .sub-mv {
    height: min(80vw, 100svh - 60px);
  }
  .sub-mv__content {
    left: 12px;
    bottom: 16px;
  }
}

/*
 * ニュースセクション
 */
.news-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 100px;
  padding: 120px 20px;
}
@media screen and (max-width: 1024px) {
  .news-wrapper {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  .news-wrapper {
    padding: 40px 16px;
  }
}
@media screen and (max-width: 480px) {
  .news-wrapper {
    padding: 20px 16px;
  }
}

.news {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .news {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .news {
    padding: 40px 0;
    gap: 40px;
  }
}
.news .section-title {
  width: 240px;
}
@media screen and (max-width: 1024px) {
  .news .section-title {
    width: 100%;
  }
}
.news__inner {
  flex: 1;
  min-width: 0;
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news__list {
    gap: 4px;
  }
}
.news__item {
  border-bottom: 1px solid #ccc;
  padding: 20px 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .news__item {
    padding: 16px 12px 16px 0;
  }
}
@media screen and (max-width: 480px) {
  .news__item {
    padding: 12px 8px 12px 0;
  }
}
.news__link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.news__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .news__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.news__link .group {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 480px) {
  .news__link .group {
    gap: 8px;
  }
}
.news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid #005eac;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  color: #005eac;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 74px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .news__category {
    font-size: 12px;
    line-height: 20px;
    min-width: 68px;
    padding: 3px 10px;
  }
}
@media screen and (max-width: 480px) {
  .news__category {
    font-size: 11px;
    line-height: 18px;
    min-width: 60px;
    padding: 3px 9px;
  }
}
.news__date {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #1F1F1F;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news__date {
    font-size: 15px;
    line-height: 22px;
  }
}
@media screen and (max-width: 480px) {
  .news__date {
    font-size: 14px;
    line-height: 20px;
  }
}
.news__headline {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #333;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .news__headline {
    flex: none;
    width: 100%;
    font-size: 15px;
    line-height: 22px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 480px) {
  .news__headline {
    font-size: 14px;
    line-height: 20px;
  }
}

/*
 * VIEW MORE ボタン
 */
.news-btn {
  display: flex;
  justify-content: center;
}
.news-btn__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 32px;
  background-color: #FFFFFF;
  border: 0.3px solid #1D365E;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .news-btn__link {
    padding: 16px 20px;
  }
}
.news-btn__link:hover {
  border: 0.3px solid #1D365E;
  background-color: #1D365E;
}
.news-btn__link:hover .news-btn__text {
  color: #FFFFFF;
}
.news-btn__link:hover .news-btn__icon-wrapper {
  background-color: #FFFFFF;
}
.news-btn__link:hover .news-btn__icon {
  background-color: #1D365E;
}
.news-btn__text {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
  color: #1D365E;
  transition: color 0.3s ease;
}
@media screen and (max-width: 480px) {
  .news-btn__text {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}
.news-btn__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 12%;
  background-color: #1D365E;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .news-btn__icon-wrapper {
    width: 14px;
    height: 14px;
  }
}
.news-btn__icon {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  -webkit-mask: url("../img/icons/arrow.svg") no-repeat center;
          mask: url("../img/icons/arrow.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("../img/icons/arrow.svg") no-repeat center;
  -webkit-mask-size: contain;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 480px) {
  .news-btn__icon {
    width: 5.8px;
    height: 5.8px;
  }
}

/*
 * TOP 採用コラムセクション
 */
.top-column-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: -20px auto 0;
  scroll-margin-top: 100px;
  padding: 0 20px 40px;
}
@media screen and (max-width: 768px) {
  .top-column-wrapper {
    padding: 0 16px 32px;
  }
}
@media screen and (max-width: 480px) {
  .top-column-wrapper {
    margin-top: 0;
    padding: 0 16px 28px;
  }
}

.top-column {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 0 28px;
}
@media screen and (max-width: 1024px) {
  .top-column {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
}
@media screen and (max-width: 480px) {
  .top-column {
    gap: 24px;
  }
}
.top-column .section-title {
  width: 240px;
}
@media screen and (max-width: 1024px) {
  .top-column .section-title {
    width: 100%;
  }
}
.top-column__inner {
  flex: 1;
  min-width: 0;
}
.top-column__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .top-column__list {
    grid-template-columns: 1fr;
  }
}
.top-column__item {
  min-width: 0;
}
.top-column__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: #FFFFFF;
  border: 1px solid rgba(29, 54, 94, 0.16);
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.top-column__link:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}
.top-column__image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #F7F7F7;
}
.top-column__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-column__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 16px;
}
@media screen and (max-width: 480px) {
  .top-column__body {
    padding: 14px;
  }
}
.top-column__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
@media screen and (max-width: 480px) {
  .top-column__meta {
    gap: 8px;
  }
}
.top-column__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 3px 10px;
  border: 1px solid #005eac;
  border-radius: 30px;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: #005eac;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .top-column__category {
    min-width: 68px;
    font-size: 11px;
    line-height: 18px;
    padding: 3px 9px;
  }
}
.top-column__date {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 20px;
  color: #333;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .top-column__date {
    font-size: 12px;
  }
}
.top-column__title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .top-column__title {
    font-size: 16px;
  }
}
.top-column__empty {
  display: flex;
  align-items: center;
  min-height: 180px;
  border: 1px solid rgba(29, 54, 94, 0.16);
  border-radius: 8px;
  padding: 24px;
}
.top-column__empty p {
  margin: 0;
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
.top-column__button {
  margin-top: 0;
}

/*
 * お知らせ一覧ページ
 */
.news-archive {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 200px 0 60px;
}
@media screen and (max-width: 768px) {
  .news-archive {
    padding: 120px 0 40px;
  }
}
@media screen and (max-width: 480px) {
  .news-archive {
    padding: 100px 0 40px;
  }
}
.news-archive__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .news-archive__container {
    padding: 0 20px;
  }
}
.news-archive__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .news-archive__header {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
}
.news-archive__header .section-title {
  width: 240px;
  flex-shrink: 0;
}
.news-archive__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1024px) {
  .news-archive__content {
    padding-top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .news-archive__content {
    gap: 12px;
  }
}
.news-archive__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .news-archive__list {
    gap: 4px;
  }
}
.news-archive__item {
  border-bottom: 1px solid #ccc;
  padding: 20px 20px 20px 2px;
}
@media screen and (max-width: 768px) {
  .news-archive__item {
    padding: 16px 12px 16px 2px;
  }
}
@media screen and (max-width: 480px) {
  .news-archive__item {
    padding: 12px 8px 12px 0px;
  }
}
.news-archive__link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.news-archive__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .news-archive__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media screen and (max-width: 480px) {
  .news-archive__link {
    gap: 8px;
  }
}
.news-archive__meta {
  display: contents;
}
@media screen and (max-width: 1024px) {
  .news-archive__meta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
@media screen and (max-width: 480px) {
  .news-archive__meta {
    gap: 8px;
  }
}
.news-archive__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid #005eac;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  color: #005eac;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 74px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .news-archive__category {
    font-size: 12px;
    line-height: 20px;
    min-width: 68px;
    padding: 3px 10px;
  }
}
@media screen and (max-width: 480px) {
  .news-archive__category {
    font-size: 11px;
    line-height: 18px;
    min-width: 60px;
    padding: 3px 9px;
  }
}
.news-archive__date {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #1F1F1F;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news-archive__date {
    font-size: 15px;
    line-height: 22px;
  }
}
@media screen and (max-width: 480px) {
  .news-archive__date {
    font-size: 14px;
    line-height: 20px;
  }
}
.news-archive__title {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #333;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .news-archive__title {
    flex: none;
    width: 100%;
    font-size: 15px;
    line-height: 22px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 480px) {
  .news-archive__title {
    font-size: 14px;
    line-height: 20px;
  }
}
.news-archive__empty {
  padding: 60px 20px;
  text-align: center;
}
.news-archive__empty p {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}
.news-archive__pagination {
  display: flex;
  justify-content: flex-start;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .news-archive__pagination {
    justify-content: flex-end;
  }
}

/*
 * 検索結果ページ
 */
.search-results {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 200px 0 80px;
}
@media screen and (max-width: 768px) {
  .search-results {
    padding: 120px 0 56px;
  }
}
@media screen and (max-width: 480px) {
  .search-results {
    padding: 100px 0 48px;
  }
}
.search-results__container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}
.search-results__header {
  margin-bottom: 44px;
}
@media screen and (max-width: 480px) {
  .search-results__header {
    margin-bottom: 32px;
  }
}
.search-results__label {
  margin: 0 0 8px;
  color: #005eac;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.search-results__title {
  margin: 0 0 28px;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  .search-results__title {
    font-size: 32px;
    margin-bottom: 22px;
  }
}
.search-results__form {
  display: flex;
  gap: 8px;
  max-width: 640px;
  margin-bottom: 16px;
}
@media screen and (max-width: 480px) {
  .search-results__form {
    flex-direction: column;
  }
}
.search-results__form-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.search-results__input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #1D365E;
  border-radius: 4px;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}
.search-results__input::-moz-placeholder {
  color: rgba(29, 54, 94, 0.6);
}
.search-results__input::placeholder {
  color: rgba(29, 54, 94, 0.6);
}
.search-results__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 48px;
  padding: 0 22px;
  border: 1px solid #1D365E;
  border-radius: 4px;
  background-color: #1D365E;
  color: #FFFFFF;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.search-results__submit:hover {
  opacity: 0.82;
}
.search-results__summary {
  margin: 0;
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
.search-results__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #dadada;
}
.search-results__item {
  border-bottom: 1px solid #dadada;
}
.search-results__link {
  display: block;
  padding: 28px 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.search-results__link:hover {
  opacity: 0.72;
}
@media screen and (max-width: 480px) {
  .search-results__link {
    padding: 22px 0;
  }
}
.search-results__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.search-results__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 3px 12px;
  border: 1px solid #005eac;
  border-radius: 999px;
  color: #005eac;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.search-results__link:hover .search-results__category {
  background-color: #005eac;
  color: #FFFFFF;
}
.search-results__date {
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1;
}
.search-results__post-title {
  margin: 0 0 10px;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (max-width: 480px) {
  .search-results__post-title {
    font-size: 18px;
  }
}
.search-results__excerpt {
  margin: 0;
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
.search-results__empty {
  padding: 56px 20px;
  text-align: center;
}
.search-results__empty p {
  margin: 0;
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
.search-results__pagination {
  margin-top: 40px;
  text-align: center;
}
.search-results__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  margin: 0 4px;
  padding: 0 8px;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.search-results__pagination .page-numbers.current {
  background-color: #1D365E;
  color: #FFFFFF;
}

/*
 * カテゴリータブ
 */
.news-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-right: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1D365E;
}
@media screen and (max-width: 480px) {
  .news-category-tabs {
    padding-right: 0;
    gap: 8px;
  }
}

.news-category-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid #1D365E;
  border-radius: 50px;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: #1D365E;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 480px) {
  .news-category-tab {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.news-category-tab:hover {
  background-color: rgba(29, 54, 94, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(29, 54, 94, 0.15);
}
.news-category-tab.active {
  background-color: #1D365E;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(29, 54, 94, 0.25);
}

/*
 * ページネーション
 */
.pagination-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pagination-pc {
    display: none;
  }
}

.pagination-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .pagination-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .pagination-mobile {
    gap: 12px;
  }
}

.pagination-list {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pagination-page,
.pagination-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  aspect-ratio: 1/1;
  padding: 8px 12px;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-page {
  color: #1F1F1F;
  border-radius: 50%;
}
.pagination-page:hover {
  background-color: rgba(29, 54, 94, 0.1);
}
.pagination-page.active {
  background-color: #1D365E;
  color: #f7f7f7;
  border-radius: 32px;
}

.pagination-gap {
  color: #1F1F1F;
  font-weight: 600;
  pointer-events: none;
}

.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1D365E;
  border: 1px solid #1D365E;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 480px) {
  .pagination-nav {
    width: 36px;
    height: 36px;
  }
}
.pagination-nav.prev .pagination-nav-icon {
  transform: rotate(-180deg);
  position: absolute;
  top: 13px;
  left: 12px;
}
@media screen and (max-width: 480px) {
  .pagination-nav.prev .pagination-nav-icon {
    top: 12px;
    left: 11px;
  }
}
.pagination-nav.next .pagination-nav-icon {
  position: absolute;
  top: 13.5px;
  right: 12px;
}
@media screen and (max-width: 480px) {
  .pagination-nav.next .pagination-nav-icon {
    top: 12.5px;
    right: 11px;
  }
}
.pagination-nav:not(.disabled) {
  cursor: pointer;
}
.pagination-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-nav-icon {
  display: block;
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
  mask-image: url("../img/icons/arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/icons/arrow.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 480px) {
  .pagination-nav-icon {
    width: 10px;
    height: 10px;
  }
}

.pagination-current {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  color: #1F1F1F;
  min-width: 60px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .pagination-current {
    font-size: 14px;
    min-width: 50px;
  }
}

/*
 * 採用コラム一覧ページ
 */
.column-archive {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 150px 20px 80px;
}
@media screen and (max-width: 768px) {
  .column-archive {
    padding: 120px 16px 56px;
  }
}
@media screen and (max-width: 480px) {
  .column-archive {
    padding: 100px 16px 48px;
  }
}
.column-archive__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 48px;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #1D365E;
}
.column-archive__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.column-archive__breadcrumb span:nth-child(2) {
  width: 6px;
  height: 6px;
  border-top: 1px solid #1D365E;
  border-right: 1px solid #1D365E;
  transform: rotate(45deg);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .column-archive__breadcrumb {
    margin-bottom: 32px;
  }
}
.column-archive__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .column-archive__container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 760px;
  }
}
.column-archive__main {
  min-width: 0;
}
.column-archive__heading {
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  .column-archive__heading {
    margin-bottom: 32px;
  }
}
.column-archive__title {
  margin: 0 0 20px;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  .column-archive__title {
    font-size: 28px;
  }
}
.column-archive__lead {
  margin: 0;
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.9;
}
.column-archive__list {
  display: flex;
  flex-direction: column;
}
.column-archive__item {
  border-bottom: 1px solid rgba(29, 54, 94, 0.22);
}
.column-archive__link {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 24px;
  gap: 28px;
  align-items: center;
  padding: 18px 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.column-archive__link:hover {
  opacity: 0.74;
}
@media screen and (max-width: 768px) {
  .column-archive__link {
    grid-template-columns: 140px minmax(0, 1fr) 20px;
    gap: 18px;
  }
}
@media screen and (max-width: 480px) {
  .column-archive__link {
    grid-template-columns: 1fr 20px;
    gap: 12px;
  }
}
.column-archive__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #F7F7F7;
}
.column-archive__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 480px) {
  .column-archive__thumb {
    grid-column: 1/-1;
  }
}
.column-archive__body {
  min-width: 0;
}
.column-archive__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .column-archive__meta {
    gap: 10px;
    margin-bottom: 8px;
  }
}
.column-archive__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 3px 12px;
  border: 1px solid #005eac;
  border-radius: 999px;
  color: #005eac;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.column-archive__link:hover .column-archive__category {
  background-color: #005eac;
  color: #fff;
}
.column-archive__date {
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.column-archive__post-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 480px) {
  .column-archive__post-title {
    font-size: 16px;
  }
}
.column-archive__arrow {
  display: block;
  width: 18px;
  height: 18px;
  background-color: #005eac;
  mask-image: url("../img/icons/arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/icons/arrow.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  justify-self: end;
}
.column-archive__empty {
  padding: 56px 20px;
  border-bottom: 1px solid rgba(29, 54, 94, 0.22);
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}
.column-archive__empty p {
  margin: 0;
}
.column-archive__pagination {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.column-archive__sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 1024px) {
  .column-archive__sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .column-archive__sidebar {
    grid-template-columns: 1fr;
  }
}

.column-sidebar-card {
  padding: 28px;
  background-color: rgba(242, 247, 251, 0.94);
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .column-sidebar-card {
    padding: 22px;
  }
}
.column-sidebar-card__title {
  margin: 0 0 20px;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.column-sidebar-card__empty {
  margin: 0;
  color: #333;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}
.column-sidebar-card__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid #1D365E;
  border-radius: 4px;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.column-sidebar-card__more:hover {
  background-color: #1D365E;
  color: #FFFFFF;
}
.column-sidebar-card__more:hover .column-sidebar-card__more-icon {
  background-color: #FFFFFF;
}
.column-sidebar-card__more-icon {
  display: block;
  width: 14px;
  height: 14px;
  background-color: #1D365E;
  mask-image: url("../img/icons/arrow.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/icons/arrow.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.column-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.column-category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 5px 16px;
  border: 2px solid #1D365E;
  border-radius: 999px;
  color: #1D365E;
  background-color: #FFFFFF;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.column-category-pill:hover, .column-category-pill.active {
  color: #FFFFFF;
  background-color: #1D365E;
  transform: translateY(-1px);
}

.column-popular {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.column-popular__item {
  margin: 0;
}
.column-popular__link {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 16px;
  background-color: #FFFFFF;
  color: #1D365E;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.column-popular__link:hover {
  opacity: 0.72;
}
@media screen and (max-width: 768px) {
  .column-popular__link {
    grid-template-columns: 148px minmax(0, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .column-popular__link {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    min-height: 96px;
    padding: 14px;
  }
}
.column-popular__rank {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #005eac;
  color: #FFFFFF;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .column-popular__rank {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }
}
.column-popular__thumb {
  display: block;
  position: relative;
  width: 128px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #F7F7F7;
}
@media screen and (max-width: 768px) {
  .column-popular__thumb {
    width: 148px;
  }
}
@media screen and (max-width: 480px) {
  .column-popular__thumb {
    width: 118px;
  }
}
.column-popular__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column-popular__title {
  display: -webkit-box;
  overflow: hidden;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 480px) {
  .column-popular__title {
    font-size: 13px;
  }
}

/*
 * お知らせ詳細ページ
 */
.news-detail {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 180px 20px 0;
}
@media screen and (max-width: 768px) {
  .news-detail {
    padding: 120px 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .news-detail {
    padding: 100px 16px 0;
  }
}
.news-detail__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.news-detail__header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dadada;
}
@media screen and (max-width: 768px) {
  .news-detail__header {
    margin-bottom: 32px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .news-detail__header {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
}
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 480px) {
  .news-detail__meta {
    gap: 12px;
    margin-bottom: 12px;
  }
}
.news-detail__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid #005eac;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #005eac;
  white-space: nowrap;
  border-radius: 30px;
}
@media screen and (max-width: 480px) {
  .news-detail__category {
    font-size: 12px;
    padding: 3px 9px;
  }
}
.news-detail__date {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #7B7B7B;
}
@media screen and (max-width: 480px) {
  .news-detail__date {
    font-size: 14px;
  }
}
.news-detail__title {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: #1F1F1F;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .news-detail__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .news-detail__title {
    font-size: 20px;
  }
}
.news-detail__content {
  min-height: 400px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .news-detail__content {
    min-height: 400px;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .news-detail__content {
    min-height: 320px;
    margin-bottom: 40px;
  }
}
.news-detail__back {
  display: flex;
  justify-content: center;
}
.news-detail__back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 32px;
  background-color: #FFFFFF;
  border: 0.3px solid #1D365E;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .news-detail__back-link {
    padding: 16px 20px;
  }
}
.news-detail__back-link:hover {
  border: 0.3px solid #1D365E;
  background-color: #1D365E;
}
.news-detail__back-link:hover .news-detail__back-text {
  color: #FFFFFF;
}
.news-detail__back-link:hover .news-detail__back-icon-wrapper {
  background-color: #FFFFFF;
}
.news-detail__back-link:hover .news-detail__back-icon {
  background-color: #1D365E;
}
.news-detail__back-text {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
  color: #1D365E;
  transition: color 0.3s ease;
}
@media screen and (max-width: 480px) {
  .news-detail__back-text {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}
.news-detail__back-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 12%;
  background-color: #1D365E;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .news-detail__back-icon-wrapper {
    width: 14px;
    height: 14px;
  }
}
.news-detail__back-icon {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  -webkit-mask: url("../img/icons/arrow.svg") no-repeat center;
          mask: url("../img/icons/arrow.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("../img/icons/arrow.svg") no-repeat center;
  -webkit-mask-size: contain;
  transition: background-color 0.3s ease;
  transform: rotate(180deg);
}
@media screen and (max-width: 480px) {
.news-detail__back-icon {
  width: 5.8px;
  height: 5.8px;
  }
}

.column-toc {
  margin: 0 0 48px;
  padding: 28px 32px;
  background-color: rgba(242, 247, 251, 0.94);
  border-radius: 8px;
}
@media screen and (max-width: 480px) {
  .column-toc {
    margin-bottom: 36px;
    padding: 22px 20px;
  }
}
.column-toc__title {
  margin: 0 0 18px;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}
@media screen and (max-width: 480px) {
  .column-toc__title {
    font-size: 19px;
  }
}
.column-toc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .column-toc__list {
    grid-template-columns: 1fr;
  }
}
.column-toc__item {
  min-width: 0;
}
.column-toc__link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.column-toc__link::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-top: 2px solid #005eac;
  border-right: 2px solid #005eac;
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.column-toc__link:hover {
  opacity: 0.7;
}

.column-detail__lead-image {
  width: min(52%, 560px);
  margin: 0 0 48px;
}
@media screen and (max-width: 768px) {
  .column-detail__lead-image {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .column-detail__lead-image {
    margin-bottom: 36px;
  }
}
.column-detail__lead-image .wp-block-image {
  margin: 0;
}
.column-detail__lead-image img {
  width: 100%;
  height: auto;
}
.column-detail__lead-image figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #7B7B7B;
  text-align: left;
}

/*
 * WYSIWYGエディタコンテンツスタイル
 */
.news-detail__content h1, .news-detail__content h2, .news-detail__content h3, .news-detail__content h4, .news-detail__content h5, .news-detail__content h6 {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #1F1F1F;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  line-height: 1.5;
}
.column-detail .news-detail__content h1, .column-detail .news-detail__content h2, .column-detail .news-detail__content h3, .column-detail .news-detail__content h4, .column-detail .news-detail__content h5, .column-detail .news-detail__content h6 {
  scroll-margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .column-detail .news-detail__content h1, .column-detail .news-detail__content h2, .column-detail .news-detail__content h3, .column-detail .news-detail__content h4, .column-detail .news-detail__content h5, .column-detail .news-detail__content h6 {
    scroll-margin-top: 110px;
  }
}
@media screen and (max-width: 480px) {
  .column-detail .news-detail__content h1, .column-detail .news-detail__content h2, .column-detail .news-detail__content h3, .column-detail .news-detail__content h4, .column-detail .news-detail__content h5, .column-detail .news-detail__content h6 {
    scroll-margin-top: 90px;
  }
}
.news-detail__content h1:first-child, .news-detail__content h2:first-child, .news-detail__content h3:first-child, .news-detail__content h4:first-child, .news-detail__content h5:first-child, .news-detail__content h6:first-child {
  margin-top: 0;
}
.news-detail__content h1 {
  font-size: 28px;
}
@media screen and (max-width: 480px) {
  .news-detail__content h1 {
    font-size: 24px;
  }
}
.news-detail__content h2 {
  font-size: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1D365E;
}
@media screen and (max-width: 480px) {
  .news-detail__content h2 {
    font-size: 20px;
    padding-bottom: 10px;
  }
}
.news-detail__content h3 {
  font-size: 20px;
  padding-left: 16px;
  border-left: 4px solid #1D365E;
}
@media screen and (max-width: 480px) {
  .news-detail__content h3 {
    font-size: 18px;
    padding-left: 12px;
    border-left-width: 3px;
  }
}
.news-detail__content h4 {
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .news-detail__content h4 {
    font-size: 16px;
  }
}
.news-detail__content h5, .news-detail__content h6 {
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .news-detail__content h5, .news-detail__content h6 {
    font-size: 15px;
  }
}
.news-detail__content p {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
  color: #333;
  margin-top: 0;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 480px) {
  .news-detail__content p {
    font-size: 15px;
    line-height: 1.75;
  }
}
.news-detail__content p:last-child {
  margin-bottom: 0;
}
.news-detail__content a {
  color: #0077C0;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.news-detail__content a:hover {
  opacity: 0.7;
}
.news-detail__content ul, .news-detail__content ol {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 1.5em;
  padding-left: 2em;
}
@media screen and (max-width: 480px) {
  .news-detail__content ul, .news-detail__content ol {
    font-size: 15px;
    padding-left: 1.5em;
  }
}
.news-detail__content ul li, .news-detail__content ol li {
  margin-bottom: 0.5em;
}
.news-detail__content ul li:last-child, .news-detail__content ol li:last-child {
  margin-bottom: 0;
}
.news-detail__content ul ul, .news-detail__content ul ol, .news-detail__content ol ul, .news-detail__content ol ol {
  margin-top: 0.5em;
  margin-bottom: 0;
}
.news-detail__content ul {
  list-style-type: disc;
}
.news-detail__content ul ul {
  list-style-type: circle;
}
.news-detail__content ul ul ul {
  list-style-type: square;
}
.news-detail__content ol {
  list-style-type: decimal;
}
.news-detail__content ol ol {
  list-style-type: lower-alpha;
}
.news-detail__content ol ol ol {
  list-style-type: lower-roman;
}
.news-detail__content blockquote {
  margin: 1.5em 0;
  padding: 20px 24px;
  background-color: #F7F7F7;
  border-left: 4px solid #1D365E;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 480px) {
  .news-detail__content blockquote {
    padding: 16px 20px;
    font-size: 15px;
  }
}
.news-detail__content blockquote p {
  margin-bottom: 1em;
}
.news-detail__content blockquote p:last-child {
  margin-bottom: 0;
}
.news-detail__content blockquote cite {
  display: block;
  margin-top: 1em;
  font-size: 14px;
  font-style: normal;
  color: #7B7B7B;
}
.news-detail__content blockquote cite::before {
  content: "— ";
}
.news-detail__content hr {
  border: none;
  border-top: 1px solid #dadada;
  margin: 2em 0;
}
.news-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .news-detail__content table {
    font-size: 14px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.news-detail__content table th, .news-detail__content table td {
  padding: 12px 16px;
  border: 1px solid #dadada;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 480px) {
  .news-detail__content table th, .news-detail__content table td {
    padding: 10px 12px;
  }
}
.news-detail__content table th {
  background-color: #F7F7F7;
  font-weight: 600;
  color: #1F1F1F;
}
.news-detail__content table td {
  color: #333;
}
.news-detail__content table thead th {
  background-color: #1D365E;
  color: #FFFFFF;
}
.news-detail__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em 0;
}
.news-detail__content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.news-detail__content img.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}
@media screen and (max-width: 480px) {
  .news-detail__content img.alignleft {
    float: none;
    margin-right: 0;
  }
}
.news-detail__content img.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}
@media screen and (max-width: 480px) {
  .news-detail__content img.alignright {
    float: none;
    margin-left: 0;
  }
}
.news-detail__content figure {
  margin: 1.5em 0;
  max-width: 100%;
}
.news-detail__content figure img {
  margin: 0;
}
.news-detail__content figure figcaption {
  margin-top: 8px;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #7B7B7B;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .news-detail__content figure figcaption {
    font-size: 13px;
  }
}
.news-detail__content figure.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.news-detail__content pre {
  margin: 1.5em 0;
  padding: 20px;
  background-color: #333;
  border-radius: 8px;
  overflow-x: auto;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #F7F7F7;
}
@media screen and (max-width: 480px) {
  .news-detail__content pre {
    padding: 16px;
    font-size: 13px;
  }
}
.news-detail__content pre code {
  background: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
}
.news-detail__content code {
  padding: 2px 6px;
  background-color: #F7F7F7;
  border-radius: 4px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 14px;
  color: #005eac;
}
@media screen and (max-width: 480px) {
  .news-detail__content code {
    font-size: 13px;
  }
}
.news-detail__content strong, .news-detail__content b {
  font-weight: 600;
  color: #1F1F1F;
}
.news-detail__content em, .news-detail__content i {
  font-style: italic;
}
.news-detail__content mark {
  background-color: rgba(42, 154, 214, 0.3);
  padding: 0 4px;
}
.news-detail__content .wp-block-image {
  margin: 1.5em 0;
}
.news-detail__content .wp-block-image img {
  margin: 0;
}
.news-detail__content .wp-block-image figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #7B7B7B;
  text-align: center;
}
.column-detail .news-detail__content .wp-block-image {
  width: min(52%, 560px);
  margin: 32px 0;
}
@media screen and (max-width: 768px) {
  .column-detail .news-detail__content .wp-block-image {
    width: 100%;
  }
}
.column-detail .news-detail__content .wp-block-image img {
  width: 100%;
  height: auto;
}
.column-detail .news-detail__content .wp-block-image figcaption {
  text-align: left;
}
.news-detail__content .wp-block-gallery {
  margin: 1.5em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 480px) {
  .news-detail__content .wp-block-gallery {
    gap: 8px;
  }
}
.news-detail__content .wp-block-gallery .wp-block-image {
  margin: 0;
}
.news-detail__content .wp-block-quote {
  margin: 1.5em 0;
}
.news-detail__content .wp-block-separator {
  margin: 2em 0;
  border: none;
  border-top: 1px solid #dadada;
}
.news-detail__content .wp-block-button {
  margin: 1.5em 0;
}
.news-detail__content .wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #1D365E;
  border-radius: 50px;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.news-detail__content .wp-block-button .wp-block-button__link:hover {
  opacity: 0.8;
}
.news-detail__content .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid #1D365E;
  color: #1D365E;
}
.news-detail__content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #1D365E;
  color: #FFFFFF;
  opacity: 1;
}
.news-detail__content::after {
  content: "";
  display: table;
  clear: both;
}

.works-contents {
  padding: 80px 20px 0;
}
@media screen and (max-width: 1024px) {
  .works-contents {
    padding: 72px 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .works-contents {
    padding: 60px 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .works-contents {
    padding: 48px 16px 0;
  }
}
.works-contents .section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .works-contents .section-title {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .works-contents .section-title {
    margin-bottom: 24px;
  }
}

.departments__tab-menu {
  border-bottom: 1px solid #1D365E;
  padding-bottom: 32px;
  margin-bottom: 60px;
}
.departments__tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.departments__tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border: 1px solid #1D365E;
  border-radius: 50px;
  background: transparent;
  color: #1D365E;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.departments__tab-item:hover {
  background-color: rgba(29, 54, 94, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(29, 54, 94, 0.15);
}
.departments__tab-item.is-active {
  background-color: #1D365E;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(29, 54, 94, 0.25);
}
.departments__tab-content {
  display: none;
  padding-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.departments__tab-content.is-active {
  display: block;
}
.departments__tab-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.departments__layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding-right: 40px;
}
.departments__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 435px;
  flex-shrink: 0;
}
.departments__image {
  width: 100%;
  aspect-ratio: 435/300;
  overflow: hidden;
}
.departments__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.departments__interviews {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .departments__interviews {
    display: none;
  }
}
.departments__interview-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px dashed #7B7B7B;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.departments__interview-item:last-child {
  border-bottom: none;
}
.departments__interview-item:first-child {
  border-bottom: 1px dashed #7B7B7B;
}
.departments__interview-item:hover {
  background-color: #F7F7F7;
}
.departments__interview-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #c7c7c7;
  flex-shrink: 0;
  overflow: hidden;
}
.departments__interview-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.departments__interview-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.departments__interview-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.departments__interview-dept {
  font-size: 13px;
  font-weight: normal;
  color: #4b4b4b;
  margin: 0;
  line-height: 1;
}
.departments__interview-name-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.departments__interview-name {
  font-size: 16px;
  font-weight: normal;
  color: #1F1F1F;
  margin: 0;
  line-height: 1;
}
.departments__interview-separator {
  width: 15px;
  height: 0;
  border-top: 1px solid #7B7B7B;
  transform: rotate(90deg);
}
.departments__interview-year {
  font-size: 13px;
  font-weight: normal;
  color: #4b4b4b;
  margin: 0;
  line-height: 1;
}
.departments__interview-link {
  display: flex;
  gap: 5px;
  align-items: center;
}
.departments__interview-link-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 3px;
  background-color: #1D365E;
}
.departments__interview-link-icon img {
  position: absolute;
  top: 54%;
  left: 52%;
  transform: translate(-54%, -52%);
  width: 4.8px;
  aspect-ratio: 37/68;
}
.departments__interview-link-text {
  font-size: 12px;
  font-weight: 600;
  color: #1D365E;
  line-height: 1;
}
.departments__right {
  flex: 1;
  min-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.departments__section-heading {
  font-size: 20px;
  font-weight: 600;
  color: #1D365E;
  letter-spacing: 1px;
  line-height: 1.575;
  margin: 0 0 8px 0;
}
.departments__about-text {
  font-size: 16px;
  font-weight: normal;
  color: #1F1F1F;
  letter-spacing: 1.12px;
  line-height: 1.75;
}
.departments__about-text p {
  margin: 0;
}
.departments__detail-content {
  font-size: 16px;
  font-weight: normal;
  color: #1F1F1F;
  letter-spacing: 1.12px;
  line-height: 1.75;
}
.departments__detail-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .departments__detail-content ul {
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .departments__detail-content ul {
    gap: 10px;
  }
}
.departments__detail-content li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1F1F1F;
  letter-spacing: 0.42px;
  line-height: 1.5;
}
.departments__detail-content li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  margin-top: 6.5px;
  background-color: #005eac;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .departments__detail-content li {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .departments__detail-content li {
    font-size: 14px;
  }
}
.departments__interviews-tablet {
  display: none;
}
@media screen and (max-width: 768px) {
  .departments__interviews-tablet {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 1200px) {
  .departments__layout {
    gap: 60px;
    padding-right: 20px;
  }
  .departments__left {
    width: 380px;
  }
  .departments__right {
    min-width: 340px;
    gap: 32px;
  }
  .departments__section-heading {
    font-size: 18px;
  }
  .departments__about-text, .departments__detail-content {
    font-size: 15px;
    letter-spacing: 0.8px;
  }
}
@media screen and (max-width: 1024px) {
  .departments__layout {
    gap: 40px;
    padding-right: 0;
  }
  .departments__left {
    width: 300px;
  }
  .departments__right {
    min-width: 280px;
    gap: 40px;
  }
  .departments__tab-list {
    gap: 10px;
  }
  .departments__tab-item {
    font-size: 15px;
    padding: 6px 14px;
  }
  .departments__tab-menu {
    padding-bottom: 28px;
    margin-bottom: 48px;
  }
  .departments__interview-item {
    padding: 20px 16px;
    gap: 16px;
  }
  .departments__interview-name {
    font-size: 15px;
  }
  .departments__interview-dept, .departments__interview-year {
    font-size: 12px;
  }
  .departments__section-heading {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .departments__about-text, .departments__detail-content {
    font-size: 14px;
    letter-spacing: 0.6px;
  }
}
@media screen and (max-width: 768px) {
  .departments__tab-list {
    gap: 8px;
  }
  .departments__tab-item {
    font-size: 14px;
    padding: 6px 12px;
  }
  .departments__tab-menu {
    padding-bottom: 24px;
    margin-bottom: 40px;
  }
  .departments__tab-content {
    padding-bottom: 48px;
  }
  .departments__layout {
    flex-direction: column;
    gap: 32px;
  }
  .departments__left {
    width: 100%;
  }
  .departments__image {
    max-width: 100%;
    aspect-ratio: 16/10;
  }
  .departments__interviews {
    padding: 16px 0;
  }
  .departments__right {
    min-width: auto;
    width: 100%;
    gap: 40px;
  }
  .departments__interview-item {
    padding: 18px 16px;
    gap: 16px;
  }
  .departments__interview-img {
    width: 54px;
    height: 54px;
  }
  .departments__interview-name {
    font-size: 15px;
  }
  .departments__interview-name-row {
    gap: 12px;
  }
  .departments__interview-dept, .departments__interview-year {
    font-size: 12px;
  }
  .departments__interview-meta {
    width: auto;
  }
  .departments__section-heading {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .departments__about-text, .departments__detail-content {
    font-size: 15px;
    letter-spacing: 0.8px;
    line-height: 1.8;
  }
  .departments__detail-content ul {
    padding-left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .departments__tab-list {
    gap: 6px;
  }
  .departments__tab-item {
    font-size: 13px;
    padding: 5px 10px;
    letter-spacing: 0.5px;
  }
  .departments__tab-menu {
    padding-bottom: 20px;
    margin-bottom: 28px;
  }
  .departments__tab-content {
    padding-bottom: 32px;
  }
  .departments__layout {
    gap: 24px;
  }
  .departments__image {
    aspect-ratio: 4/3;
  }
  .departments__interviews {
    padding: 12px 0;
  }
  .departments__interview-item {
    padding: 12px 10px;
    gap: 12px;
  }
  .departments__interview-img {
    width: 44px;
    height: 44px;
  }
  .departments__interview-info {
    gap: 6px;
  }
  .departments__interview-name {
    font-size: 14px;
  }
  .departments__interview-name-row {
    gap: 10px;
  }
  .departments__interview-dept, .departments__interview-year {
    font-size: 11px;
  }
  .departments__interview-separator {
    width: 12px;
  }
  .departments__interview-link-text {
    font-size: 11px;
  }
  .departments__interview-link-icon {
    width: 14px;
    height: 14px;
  }
  .departments__interview-link-icon img {
    width: 4px;
  }
  .departments__right {
    gap: 24px;
  }
  .departments__section-heading {
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }
  .departments__about-text, .departments__detail-content {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.75;
  }
  .departments__detail-content ul {
    padding-left: 18px;
  }
}

/*
 * 単一記事ページスタイル
 */
main.single {
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  main.single {
    margin: 60px auto 0;
  }
}

/* ===================================
 * 記事ヘッダー
 * =================================== */
.single__header {
  background-color: rgba(29, 54, 94, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .single__header {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  .single__header {
    background-color: #FFFFFF;
    padding: 0;
  }
}

.single__header-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
  min-height: 400px;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .single__header-inner {
    min-height: 320px;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .single__header-inner {
    flex-direction: column;
    gap: 32px;
    min-height: auto;
  }
}

.single__header-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  max-width: 512px;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .single__header-left {
    max-width: 420px;
  }
}
@media screen and (max-width: 768px) {
  .single__header-left {
    max-width: 420px;
    padding: 45px 16px 0;
    gap: 20px;
  }
}

.single__header-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .single__header-heading {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .single__header-heading {
    gap: 16px;
  }
}

.single__header-label {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.5;
  color: #2A9AD6;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .single__header-label {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .single__header-label {
    font-size: 18px;
  }
}

.single__header-title {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.5;
  color: #1F1F1F;
  margin: 0;
  white-space: pre-wrap;
}
@media screen and (max-width: 1024px) {
  .single__header-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .single__header-title {
    font-size: 22px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dadada;
  }
}

.single__header-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .single__header-summary {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .single__header-summary {
    gap: 8px;
  }
}

.single__header-name {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: #1F1F1F;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .single__header-name {
    font-size: 18px;
  }
}

.single__header-meta {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .single__header-meta {
    font-size: 14px;
  }
}

.single__header-img {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 3/2;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .single__header-img {
    max-width: 460px;
  }
}
@media screen and (max-width: 768px) {
  .single__header-img {
    max-width: 100%;
  }
}
.single__header-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ===================================
 * 記事コンテンツ
 * =================================== */
.single__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px 0;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .single__content {
    padding: 60px 24px 0;
  }
}
@media screen and (max-width: 768px) {
  .single__content {
    padding: 40px 14px 0;
  }
}
.single__content h3.wp-block-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #005eac;
  margin: 0 0 20px;
  position: relative;
  padding-left: 54px;
}
@media screen and (max-width: 1024px) {
  .single__content h3.wp-block-heading {
    font-size: 18px;
    padding-left: 52px;
  }
}
@media screen and (max-width: 768px) {
  .single__content h3.wp-block-heading {
    font-size: 18px;
    gap: 10px;
    padding-left: 46px;
  }
}
@media screen and (max-width: 480px) {
  .single__content h3.wp-block-heading {
    font-size: 16px;
    gap: 8px;
    padding-left: 44px;
  }
}
.single__content h3.wp-block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 34px;
  border-radius: 30px;
  background-color: #005eac;
}
@media screen and (max-width: 1024px) {
  .single__content h3.wp-block-heading::before {
    width: 38px;
    height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .single__content h3.wp-block-heading::before {
    width: 32px;
    height: 26px;
  }
}
.single__content h3.wp-block-heading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 34px;
  background-color: #FFFFFF;
  -webkit-mask-image: url("../img/icons/Q.svg");
  mask-image: url("../img/icons/Q.svg");
  -webkit-mask-size: 15px 18px;
  mask-size: 15px 18px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
@media screen and (max-width: 1024px) {
  .single__content h3.wp-block-heading::after {
    width: 38px;
    height: 30px;
    -webkit-mask-size: 14px 16px;
    mask-size: 14px 16px;
  }
}
@media screen and (max-width: 768px) {
  .single__content h3.wp-block-heading::after {
    width: 32px;
    height: 26px;
    -webkit-mask-size: 12px 14px;
    mask-size: 12px 14px;
  }
}
.single__content h3.wp-block-heading.saigoni {
  padding-left: 0;
}
.single__content h3.wp-block-heading.saigoni::before {
  content: "さいごに";
  position: static;
  transform: none;
  width: auto;
  height: auto;
  background-color: transparent;
  color: #005eac;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  border: 2px solid #005eac;
  border-radius: 30px;
  padding: 2px 18px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .single__content h3.wp-block-heading.saigoni::before {
    font-size: 18px;
    padding: 2px 16px;
  }
}
@media screen and (max-width: 768px) {
  .single__content h3.wp-block-heading.saigoni::before {
    font-size: 15px;
    padding: 2px 13px;
  }
}
.single__content h3.wp-block-heading.saigoni::after {
  content: none;
}
.single__content > p {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  color: #1F1F1F;
  margin: 0 0 20px;
}
@media screen and (max-width: 1024px) {
  .single__content > p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .single__content > p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .single__content > p {
    font-size: 14px;
    line-height: 1.8;
  }
}
.single__content > figure.wp-block-image {
  margin: 0 0 20px;
  width: 100%;
}
.single__content > figure.wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.single__content > .wp-block-spacer {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .single__content > .wp-block-spacer {
    height: 32px !important;
  }
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-spacer {
    height: 24px !important;
  }
}
.single__content > .wp-block-group.is-layout-flex {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin: 0 0 20px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .single__content > .wp-block-group.is-layout-flex {
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-group.is-layout-flex {
    flex-direction: column;
    gap: 24px;
  }
}
.single__content > .wp-block-group.is-layout-flex > figure.wp-block-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .single__content > .wp-block-group.is-layout-flex > figure.wp-block-image {
    max-width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-group.is-layout-flex > figure.wp-block-image {
    max-width: 100%;
    order: 2;
  }
}
.single__content > .wp-block-group.is-layout-flex > figure.wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.single__content > .wp-block-group.is-layout-flex > .wp-block-group {
  flex: 1;
  min-width: 0;
  max-width: 540px;
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-group.is-layout-flex > .wp-block-group {
    max-width: 100%;
    order: 1;
  }
}
.single__content > .wp-block-group.is-layout-flex > .wp-block-group .wp-block-group__inner-container h3.wp-block-heading {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-group.is-layout-flex > .wp-block-group .wp-block-group__inner-container h3.wp-block-heading {
    margin-bottom: 8px;
  }
}
.single__content > .wp-block-group.is-layout-flex > .wp-block-group .wp-block-group__inner-container p {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  color: #1F1F1F;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .single__content > .wp-block-group.is-layout-flex > .wp-block-group .wp-block-group__inner-container p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-group.is-layout-flex > .wp-block-group .wp-block-group__inner-container p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .single__content > .wp-block-group.is-layout-flex > .wp-block-group .wp-block-group__inner-container p {
    font-size: 14px;
    line-height: 1.8;
  }
}
.single__content > .wp-block-group.is-layout-flex > .wp-block-group .wp-block-group__inner-container figure.wp-block-image {
  margin: 0 0 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-group.is-layout-flex > .wp-block-group .wp-block-group__inner-container figure.wp-block-image {
    margin: 0 0 16px;
  }
}
.single__content > .wp-block-group.is-layout-flex > .wp-block-group .wp-block-group__inner-container figure.wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.single__content > figure.schedule {
  background-color: #F7F7F7;
  padding: 40px 60px;
  border-radius: 8px;
}
@media screen and (max-width: 480px) {
  .single__content > figure.schedule {
    padding: 20px;
  }
}
.single__content > .wp-block-group.is-layout-flex:has(.saigoni) {
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .single__content > .wp-block-group.is-layout-flex:has(.saigoni) {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-group.is-layout-flex:has(.saigoni) {
    gap: 24px;
  }
}
.single__content > .wp-block-group.is-layout-flex:has(.saigoni) > .wp-block-group:not(:has(.saigoni)) {
  max-width: 340px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .single__content > .wp-block-group.is-layout-flex:has(.saigoni) > .wp-block-group:not(:has(.saigoni)) {
    max-width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-group.is-layout-flex:has(.saigoni) > .wp-block-group:not(:has(.saigoni)) {
    max-width: 100%;
    order: 1;
  }
}
.single__content > .wp-block-group.is-layout-flex:has(.saigoni) > .wp-block-group:has(.saigoni) {
  max-width: 600px;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .single__content > .wp-block-group.is-layout-flex:has(.saigoni) > .wp-block-group:has(.saigoni) {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .single__content > .wp-block-group.is-layout-flex:has(.saigoni) > .wp-block-group:has(.saigoni) {
    max-width: 100%;
    order: 2;
  }
}

/* ===================================
 * 関連記事セクション
 * =================================== */
.related_interview {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px 0;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .related_interview {
    padding: 0 24px 60px;
  }
}
@media screen and (max-width: 768px) {
  .related_interview {
    padding: 0 20px 48px;
  }
}

.related_interview__heading {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .related_interview__heading {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .related_interview__heading {
    margin-bottom: 32px;
  }
}

.related_interview__heading-line {
  flex: 1;
  height: 1px;
  background-color: #1D365E;
}

.related_interview__heading-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #1D365E;
  white-space: nowrap;
  padding: 0 12px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .related_interview__heading-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .related_interview__heading-text {
    font-size: 16px;
    padding: 0 10px;
  }
}

.related_interview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}
@media screen and (max-width: 1024px) {
  .related_interview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}
@media screen and (max-width: 768px) {
  .related_interview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .related_interview__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.related_interview__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border: 0.3px solid #B0B0B0;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .related_interview__card {
    gap: 16px;
    padding: 14px 16px;
  }
}
@media screen and (max-width: 768px) {
  .related_interview__card {
    gap: 14px;
    padding: 12px 14px;
  }
}
.related_interview__card:hover {
  background-color: #F7F7F7;
}

.related_interview__card-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #c7c7c7;
}
@media screen and (max-width: 768px) {
  .related_interview__card-img {
    width: 52px;
    height: 52px;
  }
}
.related_interview__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.related_interview__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.related_interview__card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.related_interview__card-dept {
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  color: #4b4b4b;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .related_interview__card-dept {
    font-size: 12px;
  }
}

.related_interview__card-name-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .related_interview__card-name-row {
    gap: 12px;
  }
}
@media screen and (max-width: 480px) {
  .related_interview__card-name-row {
    gap: 8px;
    flex-wrap: wrap;
  }
}

.related_interview__card-name {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #1F1F1F;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .related_interview__card-name {
    font-size: 14px;
  }
}

.related_interview__card-separator {
  width: 1px;
  height: 15px;
  background-color: #B0B0B0;
  flex-shrink: 0;
  transform: rotate(90deg);
}
@media screen and (max-width: 480px) {
  .related_interview__card-separator {
    height: 12px;
  }
}

.related_interview__card-year {
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  color: #4b4b4b;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .related_interview__card-year {
    font-size: 12px;
  }
}

.related_interview__card-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.related_interview__card-link-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 3px;
  background-color: #1D365E;
}
.related_interview__card-link-icon img {
  position: absolute;
  top: 54%;
  left: 52%;
  transform: translate(-54%, -52%);
  width: 4.8px;
  aspect-ratio: 37/68;
}

.related_interview__card-link-text {
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  color: #1D365E;
}

/*
 * 採用情報ページ専用スタイル
 */
main.recruit {
  width: 100%;
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  main.recruit {
    padding: 60px 0 0;
  }
}
main.recruit .section-title {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  main.recruit .section-title {
    padding: 0 12px;
  }
}
main.recruit .recruit-tabs {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-tabs {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-tabs {
    margin-top: 40px;
  }
}
main.recruit .recruit-tabs__menu {
  max-width: 1100px;
  border-bottom: 1px solid #1D365E;
  padding-bottom: 32px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 1040px) {
  main.recruit .recruit-tabs__menu {
    margin: 0 20px 60px;
  }
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-tabs__menu {
    padding-bottom: 24px;
    margin: 0 20px 40px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-tabs__menu {
    padding-bottom: 16px;
    margin: 0 12px 32px;
  }
}
main.recruit .recruit-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-tabs__list {
    gap: 8px;
  }
}
main.recruit .recruit-tabs__item {
  scroll-margin-top: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border: 1px solid #1D365E;
  border-radius: 50px;
  background: transparent;
  color: #1D365E;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-tabs__item {
    font-size: 15px;
  }
}
main.recruit .recruit-tabs__item:hover {
  background-color: rgba(29, 54, 94, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(29, 54, 94, 0.15);
}
main.recruit .recruit-tabs__item.is-active {
  background-color: #1D365E;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(29, 54, 94, 0.25);
}
main.recruit .recruit-tabs__content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
main.recruit .recruit-tabs__content.is-active {
  display: block;
}
main.recruit .recruit-tabs__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
main.recruit .recruit-jobs {
  max-width: 1140px;
  margin: 80px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-jobs {
    margin: 80px auto 0;
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-jobs {
    padding: 0 12px;
  }
}
main.recruit .recruit-jobs__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #1D365E;
  letter-spacing: 3.45px;
  margin-bottom: 40px;
}
main.recruit .recruit-jobs__heading::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  background-color: #005eac;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-jobs__heading {
    font-size: 20px;
    margin-bottom: 32px;
    gap: 10px;
  }
  main.recruit .recruit-jobs__heading::before {
    width: 9px;
    height: 9px;
    min-width: 9px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-jobs__heading {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    gap: 8px;
  }
  main.recruit .recruit-jobs__heading::before {
    width: 8px;
    height: 8px;
    min-width: 8px;
  }
}
main.recruit .recruit-jobs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-jobs__grid {
    grid-template-columns: 1fr;
  }
}
main.recruit .recruit-jobs__btn {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 25px 21px;
  border: 1px solid #1D365E;
  border-radius: 4px;
  background: transparent;
  color: #1D365E;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.56px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
main.recruit .recruit-jobs__btn:hover {
  background-color: rgba(29, 54, 94, 0.08);
  box-shadow: 0 2px 8px rgba(29, 54, 94, 0.15);
}
main.recruit .recruit-jobs__btn.is-active {
  background-color: #1D365E;
  border-color: #1D365E;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(29, 54, 94, 0.25);
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-jobs__btn {
    height: 60px;
    padding: 18px 16px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-jobs__btn {
    height: 56px;
    padding: 16px;
    font-size: 14px;
    letter-spacing: 1px;
  }
}
main.recruit .recruit-jobs__content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
main.recruit .recruit-jobs__content.is-active {
  display: block;
}
main.recruit .recruit-jobs__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
main.recruit .recruit-jobs__detail {
  padding: 40px 0;
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-jobs__detail {
    padding: 24px 0;
  }
}
main.recruit .recruit-detail {
  max-width: 1140px;
  margin: 80px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-detail {
    margin: 80px auto 0;
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-detail {
    padding: 0 12px;
  }
}
main.recruit .recruit-detail__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #1D365E;
  letter-spacing: 3.45px;
  margin-bottom: 40px;
}
main.recruit .recruit-detail__heading::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  background-color: #005eac;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-detail__heading {
    font-size: 20px;
    margin-bottom: 32px;
    gap: 10px;
  }
  main.recruit .recruit-detail__heading::before {
    width: 9px;
    height: 9px;
    min-width: 9px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-detail__heading {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    gap: 8px;
  }
  main.recruit .recruit-detail__heading::before {
    width: 8px;
    height: 8px;
    min-width: 8px;
  }
}
main.recruit .recruit-detail__table {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(29, 54, 94, 0.2);
}
main.recruit .recruit-detail__row {
  display: flex;
  gap: 10px;
  min-height: 120px;
  border-bottom: 1px solid rgba(29, 54, 94, 0.2);
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-detail__row {
    min-height: 100px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-detail__row {
    min-height: 100px;
  }
}
main.recruit .recruit-detail__label {
  flex: 1 0 0;
  max-width: 160px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 48px;
  font-size: 16px;
  font-weight: 600;
  color: #005eac;
  letter-spacing: 2.56px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-detail__label {
    max-width: 140px;
    padding-top: 36px;
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-detail__label {
    flex: none;
    max-width: 65px;
    width: 100%;
    justify-content: flex-start;
    padding: 24px 0 8px 4px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }
}
main.recruit .recruit-detail__data {
  flex: 1 0 0;
  min-width: 240px;
  padding: 48px 25px;
  font-size: 16px;
  font-weight: 500;
  color: #1F1F1F;
  letter-spacing: 0.96px;
  line-height: 1.5;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-detail__data {
    min-width: 0;
    padding: 36px 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-detail__data {
    min-width: 0;
    padding: 24px 8px 24px;
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}
main.recruit .internship-section {
  max-width: 1140px;
  margin: 60px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  main.recruit .internship-section {
    margin: 48px auto 0;
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .internship-section {
    margin: 20px auto 0;
    padding: 0 12px;
  }
}
main.recruit .internship-section__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(29, 54, 94, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.recruit .internship-section__inner {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 480px;
  }
}
main.recruit .internship-section__hero {
  background-color: #2A9AD6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main.recruit .internship-section__hero {
    height: 100%;
    max-height: 375px;
    aspect-ratio: 499/375;
    gap: 30px;
    padding: 32px 24px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .internship-section__hero {
    gap: 24px;
    padding: 28px 20px;
  }
}
main.recruit .internship-section__hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
}
@media screen and (max-width: 480px) {
  main.recruit .internship-section__hero-text {
    gap: 12px;
  }
}
main.recruit .internship-section__title-en {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  main.recruit .internship-section__title-en {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  main.recruit .internship-section__title-en {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .internship-section__title-en {
    font-size: 28px;
  }
}
main.recruit .internship-section__title-ja {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  main.recruit .internship-section__title-ja {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .internship-section__title-ja {
    font-size: 13px;
  }
}
main.recruit .internship-section__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  height: 60px;
  padding: 0 30px;
  background-color: #FFFFFF;
  border: 1.5px solid #2A9AD6;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
main.recruit .internship-section__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1024px) {
  main.recruit .internship-section__btn {
    width: 240px;
    height: 52px;
    padding: 0 28px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .internship-section__btn {
    width: 100%;
    max-width: 280px;
    height: 52px;
    padding: 0 30px;
  }
}
main.recruit .internship-section__btn-text {
  font-size: 15px;
  font-weight: 600;
  color: #2A9AD6;
  line-height: 1.5;
}
main.recruit .internship-section__btn-icon {
  display: inline-block;
  background-color: #2A9AD6;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  position: relative;
}
main.recruit .internship-section__btn-icon img {
  position: absolute;
  top: 53%;
  left: 53%;
  transform: translate(-53%, -53%);
}
main.recruit .internship-section__body {
  background-color: #FFFFFF;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  main.recruit .internship-section__body {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  main.recruit .internship-section__body {
    padding: 32px 24px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .internship-section__body {
    padding: 32px 24px;
    gap: 16px;
  }
}
main.recruit .internship-section__body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1D365E;
  letter-spacing: 0.48px;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  main.recruit .internship-section__body h3 {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  main.recruit .internship-section__body h3 {
    font-size: 16px;
  }
}
main.recruit .internship-section__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  main.recruit .internship-section__body ul {
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .internship-section__body ul {
    gap: 10px;
  }
}
main.recruit .internship-section__body li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1F1F1F;
  letter-spacing: 0.42px;
  line-height: 1.5;
}
main.recruit .internship-section__body li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  margin-top: 5.5px;
  background-color: #2A9AD6;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  main.recruit .internship-section__body li {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  main.recruit .internship-section__body li {
    font-size: 14px;
  }
}
main.recruit .internship-section__body p {
  font-size: 14px;
  font-weight: 500;
  color: #1F1F1F;
  letter-spacing: 0.42px;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  main.recruit .internship-section__body p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  main.recruit .internship-section__body p {
    font-size: 14px;
  }
}
main.recruit .recruit-cta {
  max-width: 1140px;
  margin: 80px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-cta {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-cta {
    margin: 60px auto 0;
    padding: 0 12px;
  }
}
main.recruit .recruit-cta .recruit-cta__btn-section {
  padding: 20px;
  background-color: #0077C0;
}
main.recruit .recruit-cta .recruit-cta__btn-section .recruit-cta__btn:hover {
  background-color: #FFFFFF;
  color: #0077C0;
}
main.recruit .recruit-cta .recruit-cta__btn-section .recruit-cta__btn:hover .recruit-cta__btn-icon {
  background-color: #0077C0;
}
main.recruit .recruit-cta .recruit-cta__btn-section .recruit-cta__btn:hover .recruit-cta__btn-icon::after {
  background-color: #FFFFFF;
}
main.recruit .recruit-cta .recruit-cta__btn-section .recruit-cta__btn-icon::after {
  background-color: #0077C0;
}
main.recruit .recruit-flow {
  max-width: 1140px;
  margin: 80px auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow {
    margin: 80px auto 0;
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow {
    margin: 60px auto 0;
    padding: 0 12px;
  }
}
main.recruit .recruit-flow__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #1D365E;
  letter-spacing: 3.45px;
  margin-bottom: 40px;
}
main.recruit .recruit-flow__heading::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  background-color: #005eac;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow__heading {
    font-size: 20px;
    margin-bottom: 32px;
    gap: 10px;
  }
  main.recruit .recruit-flow__heading::before {
    width: 9px;
    height: 9px;
    min-width: 9px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow__heading {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    gap: 8px;
  }
  main.recruit .recruit-flow__heading::before {
    width: 8px;
    height: 8px;
    min-width: 8px;
  }
}
main.recruit .recruit-flow__process {
  background-color: #F7F7F7;
  border-radius: 8px;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow__process {
    padding: 40px 32px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow__process {
    padding: 32px 20px;
  }
}
main.recruit .recruit-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
main.recruit .recruit-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  min-height: 132px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow__step {
    gap: 32px;
    min-height: 110px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow__step {
    gap: 20px;
    min-height: 100px;
  }
}
main.recruit .recruit-flow__step:not(.recruit-flow__step--last)::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 48px;
  bottom: -68px;
  width: 2px;
  background-color: #1D365E;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow__step:not(.recruit-flow__step--last)::after {
    left: 32px;
    top: 40px;
    bottom: -54px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow__step:not(.recruit-flow__step--last)::after {
    left: 25px;
    top: 33px;
    bottom: -42px;
  }
}
main.recruit .recruit-flow__step--last {
  min-height: auto;
}
main.recruit .recruit-flow__step--last .recruit-flow__step-body {
  justify-content: center;
  padding: 0;
}
main.recruit .recruit-flow__step-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #1D365E;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow__step-badge {
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow__step-badge {
    width: 50px;
    height: 50px;
  }
}
main.recruit .recruit-flow__step-label {
  font-size: 14px;
  font-weight: 600;
  color: #1D365E;
  line-height: 1;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow__step-label {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow__step-label {
    font-size: 9px;
  }
}
main.recruit .recruit-flow__step-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 17px 0;
  flex: 1;
  min-width: 0;
  min-height: 80px;
  margin-top: 8px;
}
main.recruit .recruit-flow__step-body:not(:has(.recruit-flow__step-desc)) {
  justify-content: center;
  padding: 0;
  height: 80px;
  min-height: 80px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow__step-body {
    min-height: 64px;
    margin-top: 8px;
    padding: 0;
  }
  main.recruit .recruit-flow__step-body:not(:has(.recruit-flow__step-desc)) {
    height: 64px;
    min-height: 64px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow__step-body {
    padding: 5px 0;
    gap: 6px;
    min-height: 50px;
    margin-top: 8px;
  }
  main.recruit .recruit-flow__step-body:not(:has(.recruit-flow__step-desc)) {
    padding: 0;
    height: 50px;
    min-height: 50px;
  }
}
main.recruit .recruit-flow__step-title {
  font-size: 22px;
  font-weight: 600;
  color: #1D365E;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow__step-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow__step-title {
    font-size: 16px;
  }
}
main.recruit .recruit-flow__step-desc {
  font-size: 16px;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-flow__step-desc {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-flow__step-desc {
    font-size: 14px;
  }
}
main.recruit .recruit-flow__step-desc p {
  margin: 0;
  line-height: 1.5;
}
main.recruit .recruit-flow__step-desc ul {
  margin: 0;
  padding: 0 0 0 24px;
  list-style: disc;
}
main.recruit .recruit-flow__step-desc ul li {
  line-height: 1.5;
  margin-bottom: 0;
}
main.recruit .recruit-flow__step-desc a {
  color: #005eac;
  text-decoration: underline;
}
main.recruit .recruit-flow__step-desc a:hover {
  text-decoration: none;
}
main.recruit .recruit-faq {
  background-color: #F7F7F7;
  margin: 80px 0 0;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq {
    margin: 80px 0 0;
    padding: 80px 0;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq {
    margin: 40px 0 0;
    padding: 60px 0;
  }
}
main.recruit .recruit-faq__label {
  font-size: 16px;
  font-weight: 600;
  color: #005eac;
  letter-spacing: -0.32px;
  line-height: 1.5;
  margin: 0 0 4px 2px;
}
main.recruit .recruit-faq__heading {
  font-size: 36px;
  font-weight: 600;
  color: #005eac;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__heading {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__heading {
    font-size: 24px;
  }
}
main.recruit .recruit-faq__body {
  max-width: 1140px;
  margin: 80px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body {
    margin-top: 60px;
    padding: 0 20px;
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body {
    margin-top: 40px;
    padding: 0 12px;
    gap: 12px;
  }
}
main.recruit .recruit-faq__body .wp-block-accordion {
  margin: 0;
  padding: 0;
}
main.recruit .recruit-faq__body .wp-block-accordion-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
main.recruit .recruit-faq__body .wp-block-accordion-heading {
  margin: 0;
}
main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 36px 40px 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #1D365E;
  line-height: 1.5;
  min-height: 68px;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle {
    padding: 32px 24px;
    font-size: 17px;
    min-height: 80px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle {
    padding: 14px 16px;
    font-size: 15px;
    min-height: 80px;
  }
}
main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-title {
  flex: 1 0 0;
  min-width: 0;
  padding: 8px 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-title {
    padding: 6px 16px 0;
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-title {
    padding: 4px 0 0 12px;
    font-size: 15px;
  }
}
main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #005eac;
  -webkit-mask-image: url("../img/icons/Q.svg");
  mask-image: url("../img/icons/Q.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  padding-top: 0;
  margin-top: 6px;
  align-self: flex-start;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle::before {
    width: 26px;
    height: 26px;
    margin-top: 4px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle::before {
    width: 22px;
    height: 22px;
    margin-top: 14px;
  }
}
main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  position: relative;
  padding-top: 18px;
  align-self: flex-start;
  transform: none !important;
}
main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1.5px;
  background-color: #707070;
  margin-top: -0.75px;
  margin-left: -12px;
}
main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1.5px;
  background-color: #707070;
  margin-top: -0.75px;
  margin-left: -12px;
  transform-origin: center;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-icon {
    position: relative;
    width: 32px;
    height: 32px;
    top: 4px;
  }
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-icon::before, main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-icon::after {
    width: 20px;
    margin-left: -10px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-icon {
    position: relative;
    width: 28px;
    height: 28px;
    top: 12px;
  }
  main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-icon::before, main.recruit .recruit-faq__body .wp-block-accordion-heading__toggle-icon::after {
    width: 18px;
    margin-left: -9px;
  }
}
main.recruit .recruit-faq__body .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon {
  transform: none !important;
}
main.recruit .recruit-faq__body .wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon::after {
  transform: rotate(0deg);
}
main.recruit .recruit-faq__body .wp-block-accordion-panel {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 40px 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-accordion-panel {
    padding: 0 24px 0;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-accordion-panel {
    padding: 0 16px 0;
  }
}
main.recruit .recruit-faq__body .wp-block-accordion-panel::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #4b4b4b;
  -webkit-mask-image: url("../img/icons/A.svg");
  mask-image: url("../img/icons/A.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  margin: 14px 10px 0;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-accordion-panel::before {
    width: 14px;
    height: 14px;
    margin: 12px 8px 0;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-accordion-panel::before {
    width: 13px;
    height: 13px;
    margin: 14px 7px 0;
  }
}
main.recruit .recruit-faq__body .wp-block-accordion-panel p {
  font-size: 16px;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 1.5;
  margin: 0;
  padding: 10px 20px 0;
}
main.recruit .recruit-faq__body .wp-block-accordion-panel p:empty {
  display: none;
}
main.recruit .recruit-faq__body .wp-block-accordion-panel p + p {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-accordion-panel p {
    font-size: 15px;
    padding: 12px 16px 0;
  }
  main.recruit .recruit-faq__body .wp-block-accordion-panel p + p {
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-accordion-panel p {
    font-size: 14px;
    padding: 10px 12px 0;
  }
  main.recruit .recruit-faq__body .wp-block-accordion-panel p + p {
    padding-top: 0;
  }
}
main.recruit .recruit-faq__body .wp-block-accordion-panel[inert] {
  max-height: 0;
  opacity: 0;
  padding: 0 40px 0;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-accordion-panel[inert] {
    padding: 0 24px 0;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-accordion-panel[inert] {
    padding: 0 16px 0;
  }
}
main.recruit .recruit-faq__body .wp-block-accordion-item.is-open .wp-block-accordion-panel {
  max-height: 2000px;
  opacity: 1;
  padding: 0 40px 56px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-accordion-item.is-open .wp-block-accordion-panel {
    padding: 0 24px 40px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-accordion-item.is-open .wp-block-accordion-panel {
    padding: 0 16px 32px;
  }
}
main.recruit .recruit-faq__body a {
  color: #005eac;
  text-decoration: none;
}
main.recruit .recruit-faq__body a:hover {
  text-decoration: underline;
}
main.recruit .recruit-faq__body details {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
main.recruit .recruit-faq__body details[open] summary::after {
  transform: rotate(45deg);
}
main.recruit .recruit-faq__body summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 600;
  color: #1D365E;
  line-height: 1.5;
  min-height: 68px;
}
main.recruit .recruit-faq__body summary::-webkit-details-marker {
  display: none;
}
main.recruit .recruit-faq__body summary::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #0077C0;
  -webkit-mask-image: url("../img/icons/Q.svg");
  mask-image: url("../img/icons/Q.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  margin-right: 20px;
}
main.recruit .recruit-faq__body summary::after {
  content: "";
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-left: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cline x1='20' y1='8' x2='20' y2='32' stroke='%23707070' stroke-width='1.5'/%3E%3Cline x1='8' y1='20' x2='32' y2='20' stroke='%23707070' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body summary {
    padding: 16px 24px;
    font-size: 17px;
    min-height: 56px;
  }
  main.recruit .recruit-faq__body summary::before {
    width: 26px;
    height: 26px;
    margin-right: 16px;
  }
  main.recruit .recruit-faq__body summary::after {
    width: 32px;
    height: 32px;
    margin-left: 16px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body summary {
    padding: 14px 16px;
    font-size: 15px;
    min-height: 48px;
  }
  main.recruit .recruit-faq__body summary::before {
    width: 22px;
    height: 22px;
    margin-right: 12px;
  }
  main.recruit .recruit-faq__body summary::after {
    width: 28px;
    height: 28px;
    margin-left: 12px;
  }
}
main.recruit .recruit-faq__body .wp-block-details > *:not(summary) {
  padding: 0 40px 56px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body .wp-block-details > *:not(summary) {
    padding: 0 24px 40px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body .wp-block-details > *:not(summary) {
    padding: 0 16px 32px;
  }
}
main.recruit .recruit-faq__body details > p,
main.recruit .recruit-faq__body details > div {
  padding: 0 40px 56px;
  font-size: 16px;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 1.5;
  margin: 0;
}
main.recruit .recruit-faq__body details > p:first-of-type,
main.recruit .recruit-faq__body details > div:first-of-type {
  display: flex;
  align-items: flex-start;
}
main.recruit .recruit-faq__body details > p:first-of-type::before,
main.recruit .recruit-faq__body details > div:first-of-type::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #4b4b4b;
  -webkit-mask-image: url("../img/icons/A.svg");
  mask-image: url("../img/icons/A.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  margin-right: 20px;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  main.recruit .recruit-faq__body details > p,
  main.recruit .recruit-faq__body details > div {
    padding: 0 24px 40px;
    font-size: 15px;
  }
  main.recruit .recruit-faq__body details > p:first-of-type::before,
  main.recruit .recruit-faq__body details > div:first-of-type::before {
    width: 16px;
    height: 16px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 480px) {
  main.recruit .recruit-faq__body details > p,
  main.recruit .recruit-faq__body details > div {
    padding: 0 16px 32px;
    font-size: 14px;
  }
  main.recruit .recruit-faq__body details > p:first-of-type::before,
  main.recruit .recruit-faq__body details > div:first-of-type::before {
    width: 15px;
    height: 15px;
    margin-right: 12px;
  }
}
main.recruit .recruit-faq__body a {
  color: #005eac;
  text-decoration: none;
}
main.recruit .recruit-faq__body a:hover {
  text-decoration: underline;
}

/*
 * ABOUTページ専用スタイル
 */
main.about {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  main.about {
    padding: 0 16px;
  }
}
@media screen and (max-width: 480px) {
  main.about {
    padding: 0 8px;
  }
}

/*
 * トップメッセージセクション
 *
 * レイアウト概要（PC）:
 *   コンテナ 1200px
 *   ├ テキスト ── 左寄せ、heading は幅広（画像と重なりOK）
 *   │              text / from は画像左端までに収める（40%）
 *   └ 画像 ──── 左から40%の位置に絶対配置、sticky で追従
 *
 * SP（768px以下）:
 *   1カラム縦並び。sticky画像は非表示、heading下にインライン画像を表示。
 */
.top-msg {
  padding: 120px 0 0;
}
@media screen and (max-width: 768px) {
  .top-msg {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .top-msg {
    padding: 40px 0 0;
  }
}
.top-msg__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-msg__inner {
    display: flex;
    flex-direction: column;
  }
}
.top-msg__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  color: #1D365E;
}
@media screen and (max-width: 1024px) {
  .top-msg__content {
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top-msg__content {
    gap: 40px;
  }
}
@media screen and (max-width: 480px) {
  .top-msg__content {
    gap: 32px;
  }
}
.top-msg__heading {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .top-msg__heading {
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .top-msg__heading {
    gap: 12px;
  }
}
.top-msg__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.62;
  color: #1D365E;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 480px) {
  .top-msg__label {
    font-size: 12px;
  }
}
.top-msg__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 4px;
  color: #1D365E;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .top-msg__title {
    font-size: 32px;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 768px) {
  .top-msg__title {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 480px) {
  .top-msg__title {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
}
.top-msg__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 2.125;
  color: #1D365E;
  max-width: 46%;
}
@media screen and (max-width: 1024px) {
  .top-msg__text {
    font-size: 15px;
    line-height: 2;
    max-width: 46%;
  }
}
@media screen and (max-width: 768px) {
  .top-msg__text {
    font-size: 14px;
    line-height: 2;
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .top-msg__text {
    font-size: 13px;
    line-height: 1.9;
  }
}
.top-msg__from {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: #1D365E;
}
@media screen and (max-width: 480px) {
  .top-msg__from {
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
.top-msg__from-label {
  font-size: 16px;
  line-height: 1.62;
}
@media screen and (max-width: 768px) {
  .top-msg__from-label {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .top-msg__from-label {
    font-size: 13px;
    line-height: 1.8;
  }
}
.top-msg__from-name {
  font-size: 24px;
  line-height: 1.62;
}
@media screen and (max-width: 768px) {
  .top-msg__from-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .top-msg__from-name {
    font-size: 18px;
  }
}
.top-msg__from-name-en {
  font-size: 14px;
  line-height: 1.62;
}
@media screen and (max-width: 480px) {
  .top-msg__from-name-en {
    font-size: 12px;
    line-height: 1.8;
  }
}
.top-msg__image-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .top-msg__image-wrapper {
    display: none;
  }
}
.top-msg__image-sticky {
  position: sticky;
  top: 120px;
}
.top-msg__image {
  overflow: hidden;
  border: 1px solid #F7F7F7;
  aspect-ratio: 3/2;
}
.top-msg__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.top-msg__image--pc {
  position: relative;
  left: 10%;
  width: 90%;
  max-width: 720px;
}
.top-msg__image--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-msg__image--sp {
    display: block;
    width: 100%;
  }
}

/*
 * 経営理念セクション全体のスタイル
 *
 * MVPセクションとPhilosophyセクションで共通のスタイルをここにまとめる
 * （背景色、全幅化、アンカーオフセットなど）
 */
.about__mvp {
  scroll-margin-top: 80px;
  background-color: #F7F7F7;
  padding: 80px 0;
  margin-top: 160px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .about__mvp {
    margin-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .about__mvp {
    scroll-margin-top: 60px;
    margin-top: 100px;
    padding: 60px 0;
    gap: 60px;
  }
}
@media screen and (max-width: 480px) {
  .about__mvp {
    scroll-margin-top: 60px;
    margin-top: 80px;
    padding: 40px 0;
    gap: 40px;
  }
}

/*
 * 経営理念（Philosophy）セクション
 *
 * .mvp セクション内部に配置
 * 見出し + 白背景1枚カード（内部ボーダー区切り）
 */
.philosophy__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .philosophy__inner {
    gap: 32px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 480px) {
  .philosophy__inner {
    gap: 24px;
    padding: 0 8px;
  }
}
.philosophy__heading {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .philosophy__heading {
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .philosophy__heading {
    gap: 12px;
  }
}
.philosophy__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.62;
  color: #1D365E;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 480px) {
  .philosophy__label {
    font-size: 12px;
  }
}
.philosophy__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 4px;
  color: #1D365E;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .philosophy__title {
    font-size: 32px;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__title {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 480px) {
  .philosophy__title {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
}
.philosophy__cards {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .philosophy__cards {
    padding: 12px 0;
  }
}
@media screen and (max-width: 480px) {
  .philosophy__cards {
    padding: 8px 0;
  }
}
.philosophy__card {
  display: flex;
  align-items: center;
  gap: 120px;
  width: calc(100% - 120px);
  padding: 50px 0 56px;
  border-bottom: 1px solid #eee;
}
.philosophy__card:last-child {
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .philosophy__card {
    gap: 60px;
    width: calc(100% - 80px);
    padding: 40px 0 44px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: calc(100% - 56px);
    padding: 36px 0 32px;
  }
}
@media screen and (max-width: 480px) {
  .philosophy__card {
    gap: 20px;
    width: calc(100% - 40px);
    padding: 24px 0;
  }
}
.philosophy__card-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 320px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .philosophy__card-left {
    width: 260px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__card-left {
    width: 100%;
    gap: 12px;
  }
}
.philosophy__card-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.philosophy__card-en {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #1D365E;
}
@media screen and (max-width: 768px) {
  .philosophy__card-en {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .philosophy__card-en {
    font-size: 14px;
  }
}
.philosophy__card-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2A9AD6;
}
.philosophy__card-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #1D365E;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .philosophy__card-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__card-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .philosophy__card-title {
    font-size: 22px;
  }
}
.philosophy__card-right {
  flex: 1;
  min-width: 0;
}
.philosophy__card-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .philosophy__card-text {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__card-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .philosophy__card-text {
    font-size: 13px;
    line-height: 1.7;
  }
}

/*
 * 経営理念（MVP）セクション
 *
 * 全幅の薄灰色背景、内部 1200px コンテナ
 * MISSION / VISION / PURPOSE の3カード
 */
.mvp__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .mvp__inner {
    gap: 42px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 480px) {
  .mvp__inner {
    gap: 32px;
    padding: 0 8px;
  }
}
.mvp__heading {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .mvp__heading {
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .mvp__heading {
    gap: 12px;
  }
}
.mvp__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.62;
  color: #1D365E;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 480px) {
  .mvp__label {
    font-size: 12px;
  }
}
.mvp__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 4px;
  color: #1D365E;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .mvp__title {
    font-size: 32px;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 768px) {
  .mvp__title {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 480px) {
  .mvp__title {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
}
.mvp__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .mvp__cards {
    gap: 16px;
  }
}
.mvp__card {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 120px;
  padding: 42px 60px 36px;
}
@media screen and (max-width: 1024px) {
  .mvp__card {
    gap: 60px;
    padding: 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  .mvp__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 28px;
  }
}
@media screen and (max-width: 480px) {
  .mvp__card {
    gap: 20px;
    padding: 24px 20px;
  }
}
.mvp__card-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 320px;
  flex-shrink: 0;
  padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .mvp__card-left {
    width: 260px;
  }
}
@media screen and (max-width: 768px) {
  .mvp__card-left {
    width: 100%;
    padding-bottom: 0;
    gap: 12px;
  }
}
@media screen and (max-width: 480px) {
  .mvp__card-left {
    gap: 12px;
  }
}
.mvp__card-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mvp__card-en {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #1D365E;
}
@media screen and (max-width: 768px) {
  .mvp__card-en {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .mvp__card-en {
    font-size: 14px;
  }
}
.mvp__card-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2A9AD6;
}
.mvp__card-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #1D365E;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .mvp__card-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .mvp__card-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .mvp__card-title {
    font-size: 22px;
  }
}
.mvp__card-right {
  flex: 1;
  min-width: 0;
}
.mvp__card-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .mvp__card-text {
    font-size: 14px;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  .mvp__card-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .mvp__card-text {
    font-size: 13px;
    line-height: 1.7;
  }
}

/*
 * 事業紹介（OUR BUSINESS）セクション
 *
 * コンテナ 1200px
 * 各アイテム：左テキスト(540px) + 右画像(520px)、gap 40px
 * アイテム間は区切り線
 */
.our-biz {
  scroll-margin-top: 80px;
  padding: 100px 0 0;
}
@media screen and (max-width: 1024px) {
  .our-biz {
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .our-biz {
    scroll-margin-top: 60px;
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .our-biz {
    scroll-margin-top: 60px;
    padding: 60px 0 0;
  }
}
.our-biz__header {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .our-biz__header {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .our-biz__header {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .our-biz__header {
    margin-bottom: 32px;
  }
}
.our-biz__list {
  display: flex;
  flex-direction: column;
}
.our-biz__item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 42px 0;
  border-bottom: 1px solid #dadada;
}
.our-biz__item:first-child {
  border-top: 1px solid #dadada;
}
@media screen and (max-width: 1024px) {
  .our-biz__item {
    gap: 32px;
    padding: 32px 0;
  }
}
@media screen and (max-width: 768px) {
  .our-biz__item {
    flex-direction: column;
    gap: 16px;
    padding: 48px 0 24px;
  }
}
@media screen and (max-width: 480px) {
  .our-biz__item {
    gap: 12px;
    padding: 40px 0 20px;
  }
}
.our-biz__item-text {
  width: 540px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .our-biz__item-text {
    width: 45%;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .our-biz__item-text {
    width: 100%;
    gap: 20px;
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .our-biz__item-text {
    gap: 16px;
  }
}
.our-biz__item-text--has-caption {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .our-biz__item-text--has-caption {
    padding-top: 0;
  }
}
.our-biz__item-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .our-biz__item-title-wrap {
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
  }
}
.our-biz__item-num {
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  color: #0077C0;
}
@media screen and (max-width: 768px) {
  .our-biz__item-num {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .our-biz__item-num {
    font-size: 22px;
  }
}
.our-biz__item-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #0077C0;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .our-biz__item-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .our-biz__item-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .our-biz__item-title {
    font-size: 22px;
  }
}
.our-biz__item-summary {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: #1F1F1F;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .our-biz__item-summary {
    font-size: 15px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 768px) {
  .our-biz__item-summary {
    font-size: 14px;
    line-height: 1.85;
  }
}
@media screen and (max-width: 480px) {
  .our-biz__item-summary {
    font-size: 13px;
    line-height: 1.75;
  }
}
.our-biz__item-image-wrap {
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .our-biz__item-image-wrap {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .our-biz__item-image-wrap {
    width: 100%;
    flex-direction: column-reverse;
  }
}
.our-biz__item-image {
  width: 100%;
  aspect-ratio: 520/347;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .our-biz__item-image {
    aspect-ratio: 3/2;
  }
}
.our-biz__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.our-biz__item-to-add {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .our-biz__item-to-add {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .our-biz__item-to-add {
    font-size: 13px;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .our-biz__item-to-add {
    font-size: 12px;
  }
}

/*
 * 地域貢献活動（For our YAMAGATA）セクション
 *
 * 全ブレイクポイントで縦レイアウト（画像上 → テキスト下）統一
 * PC: 4列 → adjust-pc/tablet: 2列 → SP: 1列
 */
.yamagata {
  scroll-margin-top: 80px;
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .yamagata {
    scroll-margin-top: 60px;
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .yamagata {
    scroll-margin-top: 60px;
    padding: 60px 0 0;
  }
}
.yamagata__header {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .yamagata__header {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .yamagata__header {
    margin-bottom: 24px;
  }
}
.yamagata__lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #1F1F1F;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .yamagata__lead {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .yamagata__lead {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.yamagata__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .yamagata__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .yamagata__grid {
    grid-template-columns: 1fr;
  }
}
.yamagata__card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(29, 54, 94, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background-color: #FFFFFF;
  transition: box-shadow 0.25s ease;
}
.yamagata__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.yamagata__card-image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.yamagata__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yamagata__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
}
@media screen and (max-width: 1024px) {
  .yamagata__card-body {
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .yamagata__card-body {
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .yamagata__card-body {
    gap: 10px;
    padding: 24px 20px;
  }
}
.yamagata__card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #2A9AD6;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .yamagata__card-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .yamagata__card-title {
    font-size: 17px;
  }
}
.yamagata__card-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #1F1F1F;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .yamagata__card-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .yamagata__card-text {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .yamagata__card-text {
    font-size: 14px;
  }
}

/*
 * スポンサー／認定（Sponsors & Accreditations）セクション
 *
 * PC: 4列横並び → タブレット: 2×2 → SP: 1列
 * 各アイテム：ロゴ画像 + キャプションテキスト
 */
.sponsors {
  scroll-margin-top: 80px;
  padding: 100px 0 40px;
}
@media screen and (max-width: 768px) {
  .sponsors {
    scroll-margin-top: 60px;
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .sponsors {
    scroll-margin-top: 60px;
    padding: 60px 0 0;
  }
}
.sponsors__header {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sponsors__header {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .sponsors__header {
    margin-bottom: 24px;
  }
}
.sponsors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  background-color: #FFFFFF;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .sponsors__grid {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .sponsors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}
@media screen and (max-width: 480px) {
  .sponsors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}
.sponsors__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sponsors__logo {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.sponsors__logo img {
  width: auto;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 1024px) {
  .sponsors__logo img {
    height: 200px;
  }
  .sponsors__logo img.adj-pc-mw-240 {
    max-width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .sponsors__logo img {
    height: 180px;
  }
}
@media screen and (max-width: 480px) {
  .sponsors__logo img {
    height: 150px;
  }
}
.sponsors__caption {
  max-width: 80%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  color: #1F1F1F;
  letter-spacing: 0.07em;
  margin: 0;
  min-height: 45px;
}
.sponsors__caption:first-child {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .sponsors__caption {
    font-size: 13px;
  }
  .sponsors__caption br {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .sponsors__caption {
    font-size: 13px;
    max-width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .sponsors__caption {
    font-size: 12px;
    max-width: 75%;
    line-height: 1.5;
  }
}
.sponsors .sponsors__item:first-child .sponsors__caption {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .sponsors .sponsors__item:first-child .sponsors__caption {
    max-width: 75%;
  }
}

.infographic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 590px;
  height: 314px;
  padding: 23px 22px;
  background-color: #FFFFFF;
  border: 1.5px solid rgba(29, 54, 94, 0.2);
  border-radius: 8px;
  box-sizing: border-box;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.infographic-card.is-hidden {
  opacity: 0;
  transform: translateY(32px);
}
.infographic-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .infographic-card {
    max-width: 100%;
    height: 286px;
    padding: 20px 18px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card {
    max-width: 100%;
    height: 264px;
    padding: 24px 23px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card {
    height: 221px;
    padding: 15px 13px;
  }
}
.infographic-card.is-heritage {
  overflow: hidden;
}
.infographic-card.is-heritage .infographic-card__content {
  position: static;
  transform: none;
  width: 100%;
  flex: 1;
  min-height: 0;
}
.infographic-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 0;
}
.infographic-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background-color: #1D365E;
  border-radius: 5px;
  flex-shrink: 0;
}
.infographic-card__label span {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .infographic-card__label {
    padding: 10px 18px;
  }
  .infographic-card__label span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__label {
    padding: 9px 17px;
  }
  .infographic-card__label span {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__label {
    padding: 7px 13px;
  }
  .infographic-card__label span {
    font-size: 13px;
  }
}
.infographic-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.infographic-card__icon-mask {
  display: block;
  height: 68px;
  width: 68px;
  background-color: #1D365E;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
@media screen and (max-width: 1024px) {
  .infographic-card__icon-mask {
    height: 60px;
    width: 60px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__icon-mask {
    height: 55px;
    width: 55px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__icon-mask {
    height: 44px;
    width: 44px;
  }
}
.infographic-card__content {
  position: absolute;
  top: calc(50% + 12px);
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 44px);
}
@media screen and (max-width: 1024px) {
  .infographic-card__content {
    top: calc(50% + 4px);
    width: calc(100% - 36px);
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__content {
    top: calc(50% + 8px);
    width: calc(100% - 34px);
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__content {
    top: calc(50% + 6px);
    width: calc(100% - 26px);
  }
}
.infographic-card__content-image {
  height: 130px;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .infographic-card__content-image {
    height: 115px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__content-image {
    height: 110px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__content-image {
    height: 90px;
  }
}
.infographic-card__content-text {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #005eac;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  line-height: 1;
  white-space: nowrap;
  gap: 4px;
}
.infographic-card__content-text span {
  padding-bottom: 8px;
  font-size: 44px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .infographic-card__content-text span {
    font-size: 38px;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__content-text span {
    font-size: 34px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__content-text span {
    font-size: 26px;
    padding-bottom: 4px;
  }
}
.infographic-card__content-text span.t-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding-bottom: 2px;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .infographic-card__content-text span.t-vertical {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__content-text span.t-vertical {
    font-size: 27px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__content-text span.t-vertical {
    font-size: 20px;
  }
}
.infographic-card__content-text span.main {
  font-family: "Oswald", "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .infographic-card__content-text span.main {
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__content-text span.main {
    font-size: 100px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__content-text span.main {
    font-size: 64px;
  }
}
.infographic-card__heritage {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .infographic-card__heritage {
    gap: 12px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__heritage {
    gap: 10px;
  }
}
.infographic-card__heritage-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .infographic-card__heritage-list {
    gap: 14px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__heritage-list {
    gap: 14px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__heritage-list {
    gap: 10px;
  }
}
.infographic-card__heritage-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .infographic-card__heritage-item {
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__heritage-item {
    gap: 8px;
  }
}
.infographic-card__heritage-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  min-height: 48px;
  padding: 5px 0;
  border: 1.2px solid #005eac;
  border-radius: 3px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.infographic-card__heritage-badge span {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #005eac;
  text-align: center;
  line-height: 1.2;
  white-space: pre-wrap;
}
@media screen and (max-width: 1024px) {
  .infographic-card__heritage-badge {
    width: 60px;
    min-height: 42px;
  }
  .infographic-card__heritage-badge span {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__heritage-badge {
    width: 72px;
    min-height: 48px;
  }
  .infographic-card__heritage-badge span {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__heritage-badge {
    width: 46px;
    min-height: 35px;
    padding: 4px 0;
  }
  .infographic-card__heritage-badge span {
    font-size: 10px;
  }
}
.infographic-card__heritage-name {
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 33px;
  font-weight: 600;
  color: #005eac;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .infographic-card__heritage-name {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__heritage-name {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__heritage-name {
    font-size: 18px;
  }
}
.infographic-card__heritage-image {
  position: absolute;
  right: 0;
  top: 39%;
  transform: translateY(-50%);
  flex-shrink: 0;
  z-index: 0;
}
.infographic-card__heritage-image img {
  height: 240px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
}
@media screen and (max-width: 1024px) {
  .infographic-card__heritage-image img {
    height: 220px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__heritage-image img {
    height: 210px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__heritage-image img {
    height: 157px;
  }
}
@media screen and (max-width: 1024px) {
  .infographic-card__heritage-image {
    right: -18px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__heritage-image {
    right: -17px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__heritage-image {
    right: -13px;
  }
}
.infographic-card__description {
  display: flex;
  align-items: flex-end;
  width: 100%;
  flex-shrink: 0;
}
.infographic-card__description p {
  width: 100%;
  margin: 0;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #7B7B7B;
}
@media screen and (max-width: 1024px) {
  .infographic-card__description p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .infographic-card__description p {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .infographic-card__description p {
    font-size: 11px;
    line-height: 1.4;
  }
}

main.environment {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 20px 0;
}
@media screen and (max-width: 768px) {
  main.environment {
    padding: 60px 20px 0;
  }
}
@media screen and (max-width: 480px) {
  main.environment {
    padding: 40px 12px 0;
  }
}

.workplace-env {
  scroll-margin-top: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .workplace-env {
    scroll-margin-top: 80px;
  }
}
.workplace-env .section-title {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .workplace-env .section-title {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 480px) {
  .workplace-env .section-title {
    margin-bottom: 36px;
  }
}
.workplace-env__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .workplace-env__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .workplace-env__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.workplace-env__grid .infographic-card {
  max-width: 100%;
}
@media screen and (min-width: 769px) {
  .workplace-env__grid .infographic-card:last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 590px;
  }
}

.benefit {
  scroll-margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .benefit {
    scroll-margin-top: 40px;
    padding-top: 72px;
  }
}
@media screen and (max-width: 480px) {
  .benefit {
    padding-top: 56px;
  }
}
.benefit .section-title {
  width: 100%;
  margin-bottom: 0;
}
.benefit__lead {
  margin: 40px 0 0;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 1.12px;
  color: #1F1F1F;
}
@media screen and (max-width: 768px) {
  .benefit__lead {
    margin-top: 32px;
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .benefit__lead {
    margin-top: 24px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
.benefit__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .benefit__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 480px) {
  .benefit__grid {
    gap: 14px;
    margin-top: 24px;
  }
}
.benefit__card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  border: 1.5px solid rgba(29, 54, 94, 0.2);
  border-radius: 8px;
  box-sizing: border-box;
  background: #FFFFFF;
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .benefit__card {
    padding: 28px 28px;
    gap: 0px;
  }
}
@media screen and (max-width: 768px) {
  .benefit__card {
    padding: 40px 32px;
    gap: 24px;
  }
}
@media screen and (max-width: 480px) {
  .benefit__card {
    padding: 30px 20px;
    gap: 4px;
  }
}
.benefit__card-icon {
  flex-shrink: 0;
  width: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .benefit__card-icon {
    width: 100px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .benefit__card-icon {
    width: 150px;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .benefit__card-icon {
    width: 80px;
  }
}
.benefit__card-icon-mask {
  display: block;
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1/1;
  background-color: #1D365E;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
@media screen and (max-width: 1024px) {
  .benefit__card-icon-mask {
    max-width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .benefit__card-icon-mask {
    max-width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .benefit__card-icon-mask {
    max-width: 68px;
  }
}
.benefit__card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .benefit__card-body {
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .benefit__card-body {
    gap: 12px;
  }
}
.benefit__card-title {
  margin: 0;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.54px;
  color: #005eac;
}
@media screen and (max-width: 480px) {
  .benefit__card-title {
    font-size: 16px;
  }
}
.benefit__card-desc {
  margin: 0;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.45px;
  color: #1F1F1F;
}
@media screen and (max-width: 1024px) {
  .benefit__card-desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .benefit__card-desc {
    font-size: 13px;
    letter-spacing: 0.26px;
  }
}

.career-up {
  scroll-margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .career-up {
    scroll-margin-top: 40px;
    padding-top: 72px;
  }
}
@media screen and (max-width: 480px) {
  .career-up {
    padding-top: 56px;
  }
}
.career-up .section-title {
  width: 100%;
  margin-bottom: 0;
}
.career-up__figure {
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}
.career-up__figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .career-up__figure {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .career-up__figure {
    width: 100%;
    margin-top: 56px;
  }
}
@media screen and (max-width: 480px) {
  .career-up__figure {
    margin-top: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .career-up__figure img {
    max-width: none;
    width: auto;
  }
}
.career-up__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .career-up__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 56px;
  }
}
@media screen and (max-width: 480px) {
  .career-up__grid {
    gap: 14px;
    margin-top: 40px;
  }
}
.career-up__card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 42px;
  border: 1.5px solid rgba(29, 54, 94, 0.2);
  border-radius: 8px;
  box-sizing: border-box;
  background: #FFFFFF;
  min-height: 170px;
}
@media screen and (max-width: 1024px) {
  .career-up__card {
    padding: 28px 24px;
    gap: 0px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .career-up__card {
    padding: 28px 32px;
    gap: 24px;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .career-up__card {
    padding: 24px 20px;
    gap: 16px;
  }
}
.career-up__card-icon {
  flex-shrink: 0;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .career-up__card-icon {
    width: 100px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .career-up__card-icon {
    width: 80px;
  }
}
.career-up__card-icon-mask {
  display: block;
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1/1;
  background-color: #1D365E;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
@media screen and (max-width: 1024px) {
  .career-up__card-icon-mask {
    max-width: 80px;
  }
}
@media screen and (max-width: 480px) {
  .career-up__card-icon-mask {
    max-width: 68px;
  }
}
.career-up__card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .career-up__card-body {
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .career-up__card-body {
    gap: 12px;
  }
}
.career-up__card-title {
  margin: 0;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.54px;
  color: #005eac;
}
@media screen and (max-width: 480px) {
  .career-up__card-title {
    font-size: 16px;
  }
}
.career-up__card-desc {
  margin: 0;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.45px;
  color: #1F1F1F;
}
@media screen and (max-width: 1024px) {
  .career-up__card-desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .career-up__card-desc {
    font-size: 13px;
    letter-spacing: 0.26px;
  }
}

main.privacy-policy {
  width: 100%;
  max-width: 1140px;
  margin: 100px auto 0;
  padding: 80px 20px 0;
}
@media screen and (max-width: 768px) {
  main.privacy-policy {
    margin-top: 60px;
    padding-top: 40px;
  }
}
main.privacy-policy .privacy-policy__title {
  font-size: 28px;
  font-weight: 600;
  color: #1D365E;
  margin: 0 0 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #1D365E;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  main.privacy-policy .privacy-policy__title {
    font-size: 24px;
    margin-bottom: 32px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  main.privacy-policy .privacy-policy__title {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}
main.privacy-policy .privacy-policy__content {
  font-size: 15px;
  line-height: 1.9;
  color: #1F1F1F;
}
@media screen and (max-width: 768px) {
  main.privacy-policy .privacy-policy__content {
    font-size: 14px;
    line-height: 1.8;
  }
}
main.privacy-policy .privacy-policy__content h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1D365E;
  margin: 48px 0 20px;
  padding: 12px 16px;
  border-left: 4px solid #005eac;
  background-color: #F7F7F7;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  main.privacy-policy .privacy-policy__content h2 {
    font-size: 19px;
    margin: 36px 0 16px;
    padding: 10px 14px;
  }
}
@media screen and (max-width: 480px) {
  main.privacy-policy .privacy-policy__content h2 {
    font-size: 17px;
    margin: 28px 0 14px;
    padding: 8px 12px;
  }
}
main.privacy-policy .privacy-policy__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dadada;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  main.privacy-policy .privacy-policy__content h3 {
    font-size: 16px;
    margin: 24px 0 12px;
  }
}
@media screen and (max-width: 480px) {
  main.privacy-policy .privacy-policy__content h3 {
    font-size: 15px;
    margin: 20px 0 10px;
  }
}
main.privacy-policy .privacy-policy__content p {
  margin: 0 0 20px;
}
@media screen and (max-width: 480px) {
  main.privacy-policy .privacy-policy__content p {
    margin-bottom: 16px;
  }
}
main.privacy-policy .privacy-policy__content ul, main.privacy-policy .privacy-policy__content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
@media screen and (max-width: 480px) {
  main.privacy-policy .privacy-policy__content ul, main.privacy-policy .privacy-policy__content ol {
    padding-left: 20px;
    margin-bottom: 20px;
  }
}
main.privacy-policy .privacy-policy__content ul li, main.privacy-policy .privacy-policy__content ol li {
  margin-bottom: 8px;
  line-height: 1.8;
}
@media screen and (max-width: 480px) {
  main.privacy-policy .privacy-policy__content ul li, main.privacy-policy .privacy-policy__content ol li {
    margin-bottom: 6px;
  }
}
main.privacy-policy .privacy-policy__content ul {
  list-style: disc;
}
main.privacy-policy .privacy-policy__content ol {
  list-style: decimal;
}
main.privacy-policy .privacy-policy__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  main.privacy-policy .privacy-policy__content table {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
main.privacy-policy .privacy-policy__content table th, main.privacy-policy .privacy-policy__content table td {
  padding: 12px 16px;
  border: 1px solid #dadada;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 480px) {
  main.privacy-policy .privacy-policy__content table th, main.privacy-policy .privacy-policy__content table td {
    padding: 8px 12px;
  }
}
main.privacy-policy .privacy-policy__content table th {
  background-color: #F7F7F7;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
main.privacy-policy .privacy-policy__content a {
  color: #0077C0;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
main.privacy-policy .privacy-policy__content a:hover {
  opacity: 0.7;
}
main.privacy-policy .privacy-policy__content strong, main.privacy-policy .privacy-policy__content b {
  font-weight: 600;
}

main.entry {
  width: 100%;
  max-width: 1140px;
  min-height: 600px;
  margin: 100px auto 0;
  padding: 80px 20px 0;
}
@media screen and (max-width: 768px) {
  main.entry {
    margin-top: 60px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  main.entry {
    padding: 40px 16px 0;
  }
}
main.entry .section-title {
  max-width: 900px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  main.entry .section-title {
    margin-bottom: 40px;
  }
}

.entry-page__content .wpforms-container {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .entry-page__content .wpforms-container {
    margin: 24px auto 60px;
  }
}
@media screen and (max-width: 480px) {
  .entry-page__content .wpforms-container {
    margin: 16px auto 40px;
  }
}
.entry-page__content .wpforms-form .wpforms-field-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.entry-page__content .wpforms-field {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
}
@media screen and (min-width: 769px) {
  .entry-page__content .wpforms-field {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 32px;
  }
}
@media screen and (max-width: 768px) {
  .entry-page__content .wpforms-field {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }
}
@media screen and (max-width: 480px) {
  .entry-page__content .wpforms-field {
    padding: 12px 0;
    gap: 6px;
  }
}
.entry-page__content .wpforms-field-label {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .entry-page__content .wpforms-field-label {
    width: 180px;
    min-width: 180px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .entry-page__content .wpforms-field-label {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .entry-page__content .wpforms-field-label {
    font-size: 13px;
  }
}
.entry-page__content .wpforms-required-label {
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
}
.entry-page__content .wpforms-required-label::before {
  content: "必須";
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #e53e3e;
  border-radius: 3px;
  padding: 3px 8px 2px;
  margin-left: 8px;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  vertical-align: middle;
}
.entry-page__content .wpforms-field input[type=text],
.entry-page__content .wpforms-field input[type=email],
.entry-page__content .wpforms-field select,
.entry-page__content .wpforms-field textarea {
  flex: 1;
  width: 100%;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #1F1F1F;
  background-color: #F7F7F7;
  border: 1px solid #dadada;
  border-radius: 8px;
  padding: 14px 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  box-sizing: border-box;
}
.entry-page__content .wpforms-field input[type=text]::-moz-placeholder, .entry-page__content .wpforms-field input[type=email]::-moz-placeholder, .entry-page__content .wpforms-field select::-moz-placeholder, .entry-page__content .wpforms-field textarea::-moz-placeholder {
  color: #B0B0B0;
}
.entry-page__content .wpforms-field input[type=text]::placeholder,
.entry-page__content .wpforms-field input[type=email]::placeholder,
.entry-page__content .wpforms-field select::placeholder,
.entry-page__content .wpforms-field textarea::placeholder {
  color: #B0B0B0;
}
.entry-page__content .wpforms-field input[type=text]:focus,
.entry-page__content .wpforms-field input[type=email]:focus,
.entry-page__content .wpforms-field select:focus,
.entry-page__content .wpforms-field textarea:focus {
  border-color: #0077C0;
  box-shadow: 0 0 0 3px rgba(0, 119, 192, 0.15);
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .entry-page__content .wpforms-field input[type=text],
  .entry-page__content .wpforms-field input[type=email],
  .entry-page__content .wpforms-field select,
  .entry-page__content .wpforms-field textarea {
    font-size: 14px;
    padding: 10px 12px;
  }
}
@media screen and (max-width: 480px) {
  .entry-page__content .wpforms-field input[type=text],
  .entry-page__content .wpforms-field input[type=email],
  .entry-page__content .wpforms-field select,
  .entry-page__content .wpforms-field textarea {
    font-size: 14px;
    padding: 10px 12px;
  }
}
.entry-page__content .wpforms-field-medium {
  max-width: none !important;
}
.entry-page__content .wpforms-field textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  .entry-page__content .wpforms-field textarea {
    min-height: 120px;
  }
}
.entry-page__content .wpforms-field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.entry-page__content .wpforms-field-checkbox {
  border-bottom: none;
  padding: 32px 0 16px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .entry-page__content .wpforms-field-checkbox {
    padding: 24px 0 12px;
  }
}
.entry-page__content .wpforms-field-checkbox fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.entry-page__content .wpforms-field-checkbox legend {
  display: none;
}
.entry-page__content .wpforms-field-checkbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.entry-page__content .wpforms-field-checkbox li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.entry-page__content .wpforms-field-checkbox input[type=checkbox] {
  -moz-appearance: auto !important;
       appearance: auto !important;
  -webkit-appearance: checkbox !important;
  width: 20px;
  height: 20px;
  accent-color: #0077C0;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 1 !important;
  position: static !important;
  visibility: visible !important;
  display: inline-block !important;
}
.entry-page__content .wpforms-field-checkbox .wpforms-field-label-inline {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .entry-page__content .wpforms-field-checkbox .wpforms-field-label-inline {
    font-size: 13px;
  }
}
.entry-page__content .wpforms-field-checkbox .wpforms-field-description {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
}
.entry-page__content .wpforms-field-checkbox .wpforms-field-description a {
  font-size: 13px;
  color: #0077C0;
  text-decoration: underline;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  padding-left: 28px;
}
.entry-page__content .wpforms-field-checkbox .wpforms-field-description a:hover {
  color: #005eac;
}
@media screen and (max-width: 480px) {
  .entry-page__content .wpforms-field-checkbox .wpforms-field-description {
    margin-top: 2px;
  }
  .entry-page__content .wpforms-field-checkbox .wpforms-field-description a {
    font-size: 12px;
  }
}
.entry-page__content .wpforms-submit-container {
  text-align: center;
  padding: 16px 0 40px;
}
@media screen and (max-width: 480px) {
  .entry-page__content .wpforms-submit-container {
    padding: 12px 0 32px;
  }
}
.entry-page__content .wpforms-submit {
  display: inline-block;
  font-family: "Yu Gothic Medium", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #1D365E;
  border: none;
  border-radius: 8px;
  padding: 16px 64px;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  letter-spacing: 1px;
}
.entry-page__content .wpforms-submit:hover {
  background-color: #005eac;
  transform: translateY(-1px);
}
.entry-page__content .wpforms-submit:active {
  transform: translateY(0);
}
.entry-page__content .wpforms-submit:disabled, .entry-page__content .wpforms-submit[disabled] {
  background-color: #B0B0B0;
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}
.entry-page__content .wpforms-submit:disabled:hover, .entry-page__content .wpforms-submit[disabled]:hover {
  background-color: #B0B0B0;
  transform: none;
}
@media screen and (max-width: 768px) {
  .entry-page__content .wpforms-submit {
    font-size: 15px;
    padding: 14px 48px;
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 480px) {
  .entry-page__content .wpforms-submit {
    font-size: 14px;
    padding: 14px 40px;
    width: 100%;
    max-width: none;
  }
}
.entry-page__content .wpforms-submit-spinner {
  vertical-align: middle;
  margin-left: 8px;
}
.entry-page__content .wpforms-has-error input[type=text],
.entry-page__content .wpforms-has-error input[type=email],
.entry-page__content .wpforms-has-error select,
.entry-page__content .wpforms-has-error textarea {
  border-color: #e53e3e !important;
  background-color: #fff5f5 !important;
}
.entry-page__content .wpforms-has-error input[type=text]:focus,
.entry-page__content .wpforms-has-error input[type=email]:focus,
.entry-page__content .wpforms-has-error select:focus,
.entry-page__content .wpforms-has-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15) !important;
  border-color: #e53e3e !important;
}
.entry-page__content em.wpforms-error {
  display: block;
  width: 100%;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: #e53e3e;
  margin-top: 6px;
  padding-left: 2px;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .entry-page__content em.wpforms-error {
    padding-left: 212px;
  }
}
@media screen and (max-width: 480px) {
  .entry-page__content em.wpforms-error {
    font-size: 12px;
    margin-top: 4px;
  }
}
.entry-page__content .wpforms-error-noscript {
  display: block;
  background-color: #fff3cd;
  color: #856404;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

[data-sa] {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-sa].sa-hidden.sa-up {
  opacity: 0;
  transform: translateY(32px);
}

[data-sa].sa-hidden.sa-left {
  opacity: 0;
  transform: translateX(-32px);
}

[data-sa].sa-hidden.sa-right {
  opacity: 0;
  transform: translateX(32px);
}

[data-sa].sa-visible {
  opacity: 1;
  transform: translate(0, 0);
}/*# sourceMappingURL=main.css.map */
