@charset "UTF-8";
/* ==========================================================================
Foundation
========================================================================== */
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* @acab/reset.css */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  /* color-scheme: dark light; */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
/* @media (prefers-reduced-motion: no-preference) {
	:where(html:focus-within) {
		scroll-behavior: smooth;
	}
} */
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* color
  ----------------------------------------------------------------- */
/* 共通mixin
----------------------------------------------------------------- */
/* variables
  ----------------------------------------------------------------- */
:root {
  /* ======================
    Layout
    ====================== */
  --menu-content-indent: 80px;
  --header-height: 80px;
  --scroll-padding-top: var(--header-height);
}
@media screen and (max-width: 1022px) {
  :root {
    --matsumoto-height: 70px;
    --header-height: 60px;
  }
}
:root {
  /* ======================
    Spacing
     ====================== */
  --coef: 1;
  --spacer-10: calc(10px * var(--coef));
}
@media screen and (max-width: 389px) {
  :root {
    --coef: 0.9;
  }
}
@media screen and (max-width: 1022px) {
  :root {
    --coef: 0.75;
  }
}
@media screen and (max-width: 575px) {
  :root {
    --coef: 0.625;
  }
}

/* function
  ----------------------------------------------------------------- */
/* base
  ----------------------------------------------------------------- */
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding-top);
}

body {
  font-size: medium;
  color: #032141;
  margin: 0;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: #fff;
}

p a {
  color: #0971E5;
  text-decoration: none;
  transform: 0.3s;
}
p a:hover {
  color: #3993F6;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ==========================================================================
  Global
========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
}
@media screen and (max-width: 1022px) {
  .l-header {
    border-bottom: 1px solid #D5DBE1;
    display: block;
  }
}
.l-header__inner {
  display: flex;
  width: 100%;
  height: var(--header-height);
}
@media screen and (max-width: 1022px) {
  .l-header__inner {
    background: #fff;
    position: relative;
    overflow-y: scroll;
    height: 100%;
  }
}
.l-header__inner::-webkit-scrollbar {
  width: 0;
}
.l-header__inner.--open {
  background-color: #fff;
}
.l-header__info {
  background-color: #fff;
  border-radius: 0 0 8px 0;
  height: var(--header-height);
  display: flex;
  gap: 64px;
}
@media screen and (max-width: 1022px) {
  .l-header__info {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.l-header__info-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 16px;
}
@media screen and (max-width: 1022px) {
  .l-header__info-inner {
    background-color: #fff;
    border-bottom: 1px solid #D5DBE1;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
}
.l-header:has(.open) .l-header__inner {
  height: 100vh;
}
.l-header:has(.open) .l-header__inner .l-header-sub-menu {
  opacity: 1;
  user-select: all;
  pointer-events: all;
}
.l-header:has(.open) .l-header__inner .l-header-menu {
  opacity: 1;
  user-select: all;
  pointer-events: all;
}
.l-header:has(.open) .l-header-global-nav {
  opacity: 1;
  display: block;
  user-select: all;
  pointer-events: all;
}

.l-header-logo {
  padding: 0 14px 0 8px;
}
@media screen and (max-width: 1022px) {
  .l-header-logo {
    padding-right: 14px;
    padding-left: 10px;
  }
}
.l-header-logo__link {
  display: flex;
  gap: clamp(0.5rem, 0.4522058824rem + 0.1960784314vw, 0.6875rem);
}
@media screen and (max-width: 1022px) {
  .l-header-logo img {
    height: 32px;
    width: auto;
  }
}

.l-header-sub-menu {
  display: block;
  padding-top: clamp(1.125rem, 1.0612745098rem + 0.2614379085vw, 1.375rem);
  padding-right: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  padding-bottom: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
}
@media screen and (max-width: 1022px) {
  .l-header-sub-menu {
    opacity: 0;
    transition: opacity 0.32s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    padding-left: 0;
    position: absolute;
    top: var(--header-height);
    width: 100%;
  }
}
.l-header-sub-menu__list {
  display: flex;
}
@media screen and (max-width: 1022px) {
  .l-header-sub-menu__list {
    justify-content: center;
  }
}
.l-header-sub-menu__item {
  font-size: 0.75rem;
  color: #032141;
  font-weight: 500;
  line-height: 1;
  min-width: 72px;
}
.l-header-sub-menu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #032141;
}
.l-header-sub-menu__link::before {
  content: "";
  -webkit-mask: url(../img/common/icon_nav_requestmaterials.svg) no-repeat center/contain;
  mask: url(../img/common/icon_nav_requestmaterials.svg) no-repeat center/contain;
  width: 23px;
  height: auto;
  aspect-ratio: 23/23;
  margin-bottom: 8px;
  background-color: #12BB4F;
}
.l-header-sub-menu__link:hover {
  opacity: 0.7;
  color: #032141;
}
.l-header-sub-menu__link.--serch::before {
  -webkit-mask: url(../img/common/icon_nav_search.svg) no-repeat center/contain;
  mask: url(../img/common/icon_nav_search.svg) no-repeat center/contain;
}
.l-header-sub-menu__link.--contact::before {
  -webkit-mask: url(../img/common/icon_nav_contact.svg) no-repeat center/contain;
  mask: url(../img/common/icon_nav_contact.svg) no-repeat center/contain;
}
.l-header-sub-menu__link.--requestmaterials::before {
  -webkit-mask: url(../img/common/icon_nav_requestmaterials.svg) no-repeat center/contain;
  mask: url(../img/common/icon_nav_requestmaterials.svg) no-repeat center/contain;
}
.l-header-sub-menu__link.--access::before {
  -webkit-mask: url(../img/common/icon_nav_access.svg) no-repeat center/contain;
  mask: url(../img/common/icon_nav_access.svg) no-repeat center/contain;
}
.l-header-sub-menu__link.--english::before {
  -webkit-mask: url(../img/common/icon_nav_english.svg) no-repeat center/contain;
  mask: url(../img/common/icon_nav_english.svg) no-repeat center/contain;
}

.l-header-menu {
  position: relative;
}
@media screen and (max-width: 1022px) {
  .l-header-menu {
    position: absolute;
    top: 80px;
    margin-top: var(--header-height);
    width: 100%;
    opacity: 0;
    transition: opacity 0.32s;
  }
}
@media screen and (max-width: 1022px) {
  .l-header-menu .c-hamburger-menu-button {
    display: none;
    visibility: hidden;
  }
}

.l-header-global-nav {
  max-width: 80px;
}
@media screen and (max-width: 1022px) {
  .l-header-global-nav {
    opacity: 0;
    transition: opacity 0.32s;
    display: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    max-width: 100%;
  }
}
.l-header-global-nav.resizing * {
  transition: none !important;
}

.l-header-nav {
  background-color: #0971E5;
  width: 100%;
}
@media screen and (max-width: 1022px) {
  .l-header-nav {
    background-color: #fff;
  }
}
.l-header-nav__list {
  height: 100vh;
  min-height: 660px;
}
@media (max-height: 769px) {
  .l-header-nav__list {
    display: none;
  }
}
@media screen and (max-width: 1022px) {
  .l-header-nav__list {
    height: auto;
    min-height: auto;
    display: block;
  }
}
.l-header-nav__item {
  height: 15%;
  background-color: #0971E5;
  color: #fff;
  text-align: center;
  border-top: 1px solid #D5DBE1;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1022px) {
  .l-header-nav__item {
    height: auto;
    display: block;
  }
}
@media screen and (min-width: 1023px) {
  .l-header-nav__item:hover > .l-header-nav-secondary {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .l-header-nav__item:hover .l-header-nav__link {
    background-color: #3993F6;
  }
}
.l-header-nav__link {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 2px;
  width: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 1022px) {
  .l-header-nav__link {
    display: none;
  }
}
@media (any-hover: hover) {
  .l-header-nav__link:hover {
    background-color: #3993F6;
  }
}
.l-header-nav__link:focus-visible {
  background-color: #3993F6;
}
.l-header-nav__link.--home::after {
  content: "";
  -webkit-mask: url(../img/common/icon_nav_home.svg) no-repeat center/contain;
  mask: url(../img/common/icon_nav_home.svg) no-repeat center/contain;
  width: 25px;
  height: 22px;
  aspect-ratio: 25/22;
  margin-top: 20px;
  background-color: #3993F6;
  display: inline-block;
}
@media (any-hover: hover) {
  .l-header-nav__link.--home:hover::after {
    background-color: #0971E5;
  }
}
.l-header-nav__link.--home:focus-visible::after {
  background-color: #0971E5;
}
.l-header-nav__link.--icon-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-header-nav__link.--icon-arrow::after {
  content: "";
  background: url(../img/common/icon_nav_round_arrow.svg) no-repeat center/contain;
  width: 50px;
  height: 20px;
  margin-top: 20px;
  display: inline-block;
}
@media screen and (max-width: 1022px) {
  .l-header-nav__link.--icon-arrow {
    display: none;
  }
}
@media (any-hover: hover) {
  .l-header-nav__link.--icon-arrow:hover::after {
    background: url(../img/common/icon_nav_round_arrow_hover.svg) no-repeat center/contain;
  }
}
.l-header-nav__link.--icon-arrow:focus-visible::after {
  background: url(../img/common/icon_nav_round_arrow_hover.svg) no-repeat center/contain;
}
.l-header-nav__button {
  display: none;
  color: #032141;
  background-color: #fff;
  padding: 20px 40px 20px 20px;
  border-bottom: 1px solid #D5DBE1;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  position: relative;
}
.l-header-nav__button::before, .l-header-nav__button::after {
  content: "";
  background-color: #032141;
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  width: 9px;
  height: 1px;
}
.l-header-nav__button::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.l-header-nav__button:hover {
  background-color: #E7E8EB;
}
@media screen and (max-width: 1022px) {
  .l-header-nav__button {
    display: block;
  }
}
.l-header-nav__button[aria-expanded=true]::after {
  transform: rotate(0deg);
}

.l-header-nav-secondary {
  position: fixed;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  display: none;
  left: var(--menu-content-indent);
  top: var(--header-height);
  background-color: #F2F3F5;
  color: #032141;
  text-align: left;
  letter-spacing: 0.01em;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  height: 100vh;
  width: 100%;
  max-width: 230px;
  max-height: none;
  overflow: visible;
}
@media screen and (max-width: 1022px) {
  .l-header-nav-secondary {
    position: static;
    opacity: 1;
    visibility: visible;
    display: block;
    max-width: none;
    height: auto;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
}
.l-header-nav-secondary__inner {
  overflow-y: auto;
}
@media screen and (max-width: 1022px) {
  .l-header-nav-secondary__inner {
    overflow-y: visible;
  }
}
.l-header-nav-secondary__title-link {
  display: block;
  font-weight: 500;
  color: #032141;
  border-bottom: 1px solid #D5DBE1;
  padding: 20px 24px 20px 10px;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.l-header-nav-secondary__title-link:hover {
  color: #032141;
  background-color: #E7E8EB;
}
.l-header-nav-secondary__title-link::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #032141;
  transform: rotate(45deg);
}
@media screen and (max-width: 1022px) {
  .l-header-nav-secondary__title-link {
    padding: 16px 22px 16px 30px;
  }
}
@media screen and (min-width: 1023px) {
  .l-header-nav-secondary__item:has(.--hover-active), .l-header-nav-secondary__item:has(.--active) {
    background-color: #E7E8EB;
  }
  .l-header-nav-secondary__item:has(.--hover-active) .l-header-nav-secondary__button::after, .l-header-nav-secondary__item:has(.--active) .l-header-nav-secondary__button::after {
    transform: rotate(0deg);
  }
  .l-header-nav-secondary__item:has(.--hover-active) > .l-header-nav-tertiary, .l-header-nav-secondary__item:has(.--active) > .l-header-nav-tertiary {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 1022px) {
  .l-header-nav-secondary__item:has(.--sp-active) {
    background-color: #E7E8EB;
  }
  .l-header-nav-secondary__item:has(.--sp-active) .l-header-nav-secondary__button {
    background-color: #F2F3F5;
  }
  .l-header-nav-secondary__item:has(.--sp-active) .l-header-nav-secondary__button::after {
    transform: rotate(0deg);
  }
  .l-header-nav-secondary__item:has(.--sp-active) > .l-header-nav-tertiary {
    display: block;
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
  }
}
.l-header-nav-secondary__item::after {
  content: "";
  display: block;
  border-bottom: 1px solid #D5DBE1;
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 1022px) {
  .l-header-nav-secondary__item::after {
    width: 100%;
  }
}
.l-header-nav-secondary__button {
  display: block;
  padding: 20px 24px 20px 20px;
  font-weight: 500;
  font-size: 0.875rem;
  width: 100%;
  text-align: left;
  position: relative;
}
.l-header-nav-secondary__button::before, .l-header-nav-secondary__button::after {
  content: "";
  background-color: #032141;
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  width: 9px;
  height: 1px;
}
.l-header-nav-secondary__button::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.l-header-nav-secondary__button:hover {
  background-color: #E7E8EB;
}
@media screen and (min-width: 1023px) {
  .l-header-nav-secondary__button.--active {
    background-color: #E7E8EB;
  }
  .l-header-nav-secondary__button.--active::after {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 1022px) {
  .l-header-nav-secondary__button {
    padding: 16px 22px 16px 30px;
  }
}
@media screen and (max-width: 1022px) {
  .l-header-nav-secondary.--sp-open {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
  }
}

.l-header-nav-tertiary {
  position: fixed;
  top: var(--header-height);
  left: 310px;
  width: 100%;
  max-width: 230px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  background-color: #E7E8EB;
  height: 100vh;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  max-height: none; /* PCではCSSが自由に制御 */
  overflow: visible;
}
@media screen and (max-width: 1022px) {
  .l-header-nav-tertiary {
    position: static;
    opacity: 1;
    visibility: visible;
    max-width: none;
    height: auto;
    left: auto;
    top: auto;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
}
.l-header-nav-tertiary__inner {
  background-color: #E7E8EB;
  max-height: calc(100vh - var(--header-height));
}
@media screen and (min-width: 1023px) {
  .l-header-nav-tertiary__inner {
    overflow-y: auto;
  }
}
@media screen and (max-width: 1022px) {
  .l-header-nav-tertiary__inner {
    max-height: none;
  }
}
.l-header-nav-tertiary__item::after {
  content: "";
  display: block;
  border-bottom: 1px solid #D5DBE1;
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 1022px) {
  .l-header-nav-tertiary__item::after {
    width: 100%;
  }
}
.l-header-nav-tertiary__link {
  display: block;
  padding: 20px 24px 20px 20px;
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1022px) {
  .l-header-nav-tertiary__link {
    padding-left: 40px;
  }
}
.l-header-nav-tertiary__link::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #032141;
  transform: rotate(45deg);
}
.l-header-nav-tertiary__link:hover {
  background-color: #F2F3F5;
}
.l-header-nav-tertiary__link br {
  display: inline;
}
@media screen and (max-width: 1022px) {
  .l-header-nav-tertiary__link br {
    display: none;
  }
}

.l-header-nav-sp {
  display: block;
  padding: 30px 40px 34px 20px;
}
@media screen and (min-width: 1023px) {
  .l-header-nav-sp {
    display: none;
  }
}
.l-header-nav-sp__link {
  display: block;
  color: #032141;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: left;
  text-decoration: underline;
}

.l-header-nav-sns {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.l-header-nav-sns__link {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.l-header-nav-sns__link::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #D5DBE1;
  border-radius: 50%;
}
.l-header-nav-sns__link::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 50%;
  opacity: 0;
  transition: 0.32s opacity;
}
.l-header-nav-sns__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.l-header-link-view {
  position: absolute;
  top: var(--header-height);
  left: var(--menu-content-indent);
  background-color: #fff;
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  overflow-y: scroll;
  width: 100%;
  width: calc(100% - var(--menu-content-indent));
  z-index: 999;
  padding-top: clamp(1.5rem, 1.4428619303rem + 1.6621983914vw, 3.4375rem);
  padding-left: clamp(2.5rem, 2.4290540541rem + 1.6216216216vw, 4.375rem);
  padding-right: clamp(1.5rem, 1.4428619303rem + 1.6621983914vw, 3.4375rem);
  padding-bottom: clamp(1.5rem, 1.2861050328rem + 3.7199124726vw, 5.75rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-header-link-view.--open {
  opacity: 1;
  visibility: visible;
}
.l-header-link-view__inner {
  display: flex;
  gap: clamp(1.5rem, 0.9264705882rem + 2.3529411765vw, 3.75rem);
}
.l-header-link-view__block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 1400px) {
  .l-header-link-view__block {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.l-header-box {
  color: #032141;
  text-align: left;
  letter-spacing: 0.01em;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  height: auto;
  overflow: visible;
  width: 100%;
  max-width: 240px;
  min-height: 752px;
  background-color: #F2F3F5;
  margin-bottom: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
}
.l-header-box__title {
  background-color: #0971E5;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding-block: 25px;
  padding-top: clamp(1rem, 0.8566176471rem + 0.5882352941vw, 1.5625rem);
  padding-bottom: clamp(1rem, 0.8566176471rem + 0.5882352941vw, 1.5625rem);
}
.l-header-box__list {
  background-color: #F2F3F5;
}
@media screen and (max-width: 1022px) {
  .l-header-box__item:has(.--list-open) {
    background-color: #E7E8EB;
  }
  .l-header-box__item:has(.--list-open) .l-header-box-secondary__button {
    background-color: #F2F3F5;
  }
  .l-header-box__item:has(.--list-open) .l-header-box-secondary__button::after {
    transform: rotate(0deg);
  }
  .l-header-box__item:has(.--list-open) > .l-header-box-tertiary {
    display: block;
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
  }
}
.l-header-box__item::after {
  content: "";
  display: block;
  border-bottom: 1px solid #D5DBE1;
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 1022px) {
  .l-header-box__item::after {
    width: 100%;
  }
}
.l-header-box__link {
  display: block;
  padding: 20px 24px 20px 20px;
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.l-header-box__link:hover {
  background-color: #E7E8EB;
}
.l-header-box__link::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #032141;
  transform: rotate(45deg);
}
.l-header-box__link-blank {
  display: block;
  padding: 20px 24px 20px 20px;
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.l-header-box__link-blank:hover {
  background-color: #E7E8EB;
}
.l-header-box__link-blank::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 10px;
  height: 8px;
  min-width: 10px;
  background-color: #032141;
  -webkit-mask: url(../img/common/icon_link_blank.svg) no-repeat center/contain;
  mask: url(../img/common/icon_link_blank.svg) no-repeat center/contain;
}
.l-header-box__button {
  display: block;
  padding: 20px 24px 20px 20px;
  font-weight: 500;
  font-size: 0.875rem;
  width: 100%;
  text-align: left;
  position: relative;
}
.l-header-box__button::before, .l-header-box__button::after {
  content: "";
  background-color: #032141;
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  width: 9px;
  height: 1px;
}
.l-header-box__button::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.l-header-box__button:hover {
  background-color: #E7E8EB;
}
.l-header-box__button.--btn-active {
  background-color: #E7E8EB;
}
.l-header-box__button.--btn-active::after {
  transform: rotate(0deg);
}
@media screen and (max-width: 1022px) {
  .l-header-box__button {
    padding: 16px 22px 16px 30px;
  }
}

.l-header-box-secondary {
  background-color: #E7E8EB;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.l-header-box-secondary.--list-open {
  max-height: 2000px;
}
.l-header-box-secondary__inner {
  overflow-y: auto;
}
.l-header-box-secondary__item::after {
  content: "";
  display: block;
  border-bottom: 1px solid #D5DBE1;
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 1022px) {
  .l-header-box-secondary__item::after {
    width: 100%;
  }
}
.l-header-box-secondary__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 20px 24px 20px 30px;
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (max-width: 1022px) {
  .l-header-box-secondary__link {
    padding-left: 40px;
  }
}
.l-header-box-secondary__link::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #032141;
  transform: rotate(45deg);
}
.l-header-box-secondary__link:hover {
  background-color: #F2F3F5;
}
.l-header-box-secondary__link br {
  display: inline;
}
@media screen and (max-width: 1022px) {
  .l-header-box-secondary__link br {
    display: none;
  }
}

.l-header-link-sublist {
  flex-basis: 230px;
}
.l-header-link-sublist__item {
  border-bottom: 1px solid #D5DBE1;
}
.l-header-link-sublist__item:first-child {
  border-top: 1px solid #D5DBE1;
}
.l-header-link-sublist__link {
  display: block;
  padding: 20px 10px 20px 10px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.l-header-link-sublist__link:hover {
  background-color: #F2F3F5;
}
.l-header-link-sublist__link::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #032141;
  transform: rotate(45deg);
}

.l-footer {
  color: #fff;
  background-color: #032141;
  padding-top: 48px;
  padding-right: clamp(1.875rem, 1.381127451rem + 2.0261437908vw, 3.8125rem);
  padding-left: clamp(1.875rem, 1.556372549rem + 1.3071895425vw, 3.125rem);
  margin-left: var(--menu-content-indent);
}
@media screen and (max-width: 1022px) {
  .l-footer {
    margin-left: 0;
  }
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1840px;
  width: 100%;
}
@media screen and (max-width: 1022px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
.l-footer__content02 {
  margin-top: auto;
}

.l-footer-info {
  position: relative;
  width: clamp(18.75rem, 15.5637254902rem + 13.0718954248vw, 31.25rem);
}
@media screen and (max-width: 320px) {
  .l-footer-info {
    width: 100%;
  }
}
.l-footer-info__img {
  display: flex;
  gap: clamp(0.625rem, 0.4975490196rem + 0.522875817vw, 1.125rem);
}
.l-footer-info__address {
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  font-style: normal;
}
.l-footer-info__address a {
  color: #fff;
}

.l-footer-sns {
  margin-top: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
.l-footer-sns__items {
  display: flex;
  gap: clamp(0.625rem, 0.5931372549rem + 0.1307189542vw, 0.75rem);
  margin-bottom: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
}
.l-footer-sns__item a {
  display: block;
}
@media screen and (max-width: 1022px) {
  .l-footer-sns__item {
    width: clamp(40px, 2.3958333333vw, 46px);
    height: clamp(40px, 2.3958333333vw, 46px);
  }
}

.l-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(14px, 1.6666666667vw, 32px);
  font-feature-settings: "palt";
  margin-bottom: 33px;
}
@media screen and (max-width: 1022px) {
  .l-footer-nav {
    flex-direction: column;
    align-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav {
    margin-top: 140px;
    margin-bottom: 40px;
  }
}
.l-footer-nav__item {
  text-align: right;
}
.l-footer-nav__link {
  border-bottom: 1px solid #fff;
  font-weight: 400;
}

.l-footer-copy {
  font-size: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-weight: 300;
  text-align: right;
  color: #D5DBE1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .l-footer-copy {
    margin-bottom: 30px;
  }
}

.l-main {
  position: relative;
  margin-left: var(--menu-content-indent);
}
@media screen and (max-width: 1022px) {
  .l-main {
    margin-left: 0;
  }
}

.l-home {
  position: relative;
  margin-left: var(--menu-content-indent);
}
@media screen and (max-width: 1022px) {
  .l-home {
    margin-left: 0;
  }
}

.l-heading, .l-heading-secondary, .l-article {
  padding: 10px 10px 0 10px;
}
@media screen and (max-width: 1022px) {
  .l-heading, .l-heading-secondary, .l-article {
    padding: 0;
  }
}

@media screen and (max-width: 1022px) {
  .l-heading:has(img) {
    padding-bottom: 90px;
  }
}
.l-heading:has(img) .l-heading__contents {
  width: 50%;
}
@media screen and (max-width: 1022px) {
  .l-heading:has(img) .l-heading__contents {
    width: 100%;
    padding-bottom: 90px;
  }
}
.l-heading__wrap {
  position: relative;
  border-radius: 8px;
  background-color: #F1F4F8;
  padding-top: var(--header-height);
}
@media screen and (max-width: 1022px) {
  .l-heading__wrap {
    display: flex;
    flex-direction: column;
    border-bottom-right-radius: 0;
  }
}
.l-heading__contents {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1022px) {
  .l-heading__contents {
    width: 100%;
  }
}
.l-heading__img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 1023px) {
  .l-heading__img {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 1022px) {
  .l-heading__img {
    display: block;
    width: calc(100vw - 20px);
    height: 182px;
    bottom: -90px;
    right: 0;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.l-heading-secondary__wrap {
  position: relative;
  border-radius: 8px;
  background-color: #F1F4F8;
  padding-top: var(--header-height);
  padding-bottom: 20px;
  background-image: url(../../resources/img/common/img-header02.webp);
  background-repeat: no-repeat;
  background-position: right top;
}
@media screen and (max-width: 1022px) {
  .l-heading-secondary__wrap {
    display: flex;
    flex-direction: column;
    border-bottom-right-radius: 0;
    background-size: auto 240px;
    background-position: right 100px;
  }
}
@media screen and (max-width: 575px) {
  .l-heading-secondary__wrap {
    background-image: none;
  }
}
.l-heading-secondary__contents {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1022px) {
  .l-heading-secondary__contents {
    width: 100%;
  }
}

:root {
  --content-w-full: 1920px;
  --content-w-mv-lg: 1640px;
  --content-w-mv-sm: 1600px;
  --content-w-wide-lg: 1520px;
  --content-w-wide-sm: 1364px;
  --content-w-base: 1200px;
  --content-w-news-block: 1210px;
  --content-w-tab: 1308px;
  --content-w-tab-sm: 1020px;
  --content-w-contact-nav: 1020px;
  --content-w-form: 1364px;
}

.l-anchor-nav {
  padding-inline: clamp(1.25rem, 0.7720588235rem + 1.9607843137vw, 3.125rem);
  margin-top: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
}

.l-ancer-block {
  padding-inline: 24px;
  margin: 40px auto 0 auto;
  width: fit-content;
  padding-inline: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}

.l-tab-nav {
  margin-block: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
  padding-inline: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
.l-tab-nav__inner {
  margin-inline: auto;
  width: min(var(--content-w-tab), 100%);
}
.l-tab-nav__inner-sm {
  margin-inline: auto;
  width: min(var(--content-w-tab-sm), 100%);
}

.l-page-lead {
  border-top: 1px solid #D5DBE1;
  border-bottom: 1px solid #D5DBE1;
  margin-bottom: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
}
.l-page-lead + .l-contents {
  padding-top: 0;
}

.l-contents {
  padding-inline: 20px;
  padding-top: clamp(3.75rem, 3.431372549rem + 1.3071895425vw, 5rem);
  padding-bottom: clamp(6.25rem, 5.612745098rem + 2.614379085vw, 8.75rem);
}
.l-contents:not(:last-child) {
  padding-bottom: 0;
}
@media screen and (max-width: 1022px) {
  .l-contents:not(:last-child) {
    padding-bottom: 0;
  }
}
.l-contents__inner {
  --_inner-width: var(--content-w-base);
  width: min(var(--_inner-width), 100%);
  margin-inline: auto;
}
.l-contents__inner.--full {
  --_inner-width: var(--content-w-full);
}
.l-contents__inner.--mv-lg {
  --_inner-width: var(--content-w-mv-lg);
}
.l-contents__inner.--mv-sm {
  --_inner-width: var(--content-w-mv-sm);
}
.l-contents__inner.--wide-lg {
  --_inner-width: var(--content-w-wide-lg);
}
.l-contents__inner.--wide-sm {
  --_inner-width: var(--content-w-wide-sm);
}
.l-contents__inner.--news-block {
  --_inner-width: var(--content-w-news-block);
}
.l-contents__inner.--tab {
  --_inner-width: var(--content-w-tab);
}
.l-contents__inner.--tab-sm {
  --_inner-width: var(--content-w-tab-sm);
}
.l-contents__inner.--contact-nav {
  --_inner-width: var(--content-w-contact-nav);
}
.l-contents__inner.--form {
  --_inner-width: var(--content-w-form);
}
.l-contents__inner.--fluid {
  width: 100%;
}
.l-contents__text {
  color: #032141;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.l-contents__text + .l-contents__text {
  margin-top: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
}
.l-contents.--bg02 {
  background-color: #F1F4F8;
}
.l-contents.--bg03 {
  background-color: #FAFAFC;
}
.l-contents.--bg-base {
  color: #fff;
  background-color: #032141;
}

.l-section {
  padding-top: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  padding-inline: 0;
}
.l-section__text {
  color: #032141;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.l-section__text + .l-section__text {
  margin-top: 20px;
  margin-top: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
}

.l-section02 {
  margin-top: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
}
.l-section02__text {
  color: #032141;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.l-section02__text + .l-section02__text {
  margin-top: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
}
.l-section02:not(:only-child):last-child {
  margin-bottom: 0;
}

.l-section03 {
  margin-top: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
}
.l-section03__text {
  color: #032141;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.l-section03__text + .l-section03__text {
  margin-top: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
}
.l-section03:not(:only-child):last-child {
  margin-bottom: 0;
}

.l-news-block {
  padding-block: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
  padding-inline: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  background-color: #fff;
}
.l-news-block__inner {
  margin: auto;
  width: min(var(--content-w-news-block), 100%);
}

.l-news-list {
  border: 1px solid #D5DBE1;
  padding-block: clamp(0rem, -0.8284313725rem + 3.3986928105vw, 3.25rem);
  padding-inline: clamp(0rem, -2.3578431373rem + 9.6732026144vw, 9.25rem);
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}

.l-news-card {
  width: min(var(--content-w-wide-sm), 100%);
  margin: 0 auto;
}
.l-news-card__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(326px, 1fr));
  gap: 32px 20px;
  margin-top: clamp(2.75rem, 2.431372549rem + 1.3071895425vw, 4rem);
}

.l-news-card-pagination {
  margin-top: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
}

.l-news-block__inner {
  display: flex;
}
@media screen and (max-width: 1022px) {
  .l-news-block__inner {
    flex-direction: column;
  }
}

.l-news-activities {
  margin-top: clamp(6.25rem, 5.3259803922rem + 3.7908496732vw, 9.875rem);
  margin-bottom: clamp(6.25rem, 5.2941176471rem + 3.9215686275vw, 10rem);
}

/* ==========================================================================
  Component
========================================================================== */
/* メニューボタン
  ----------------------------------------------------------------- */
.c-hamburger-button {
  display: none;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border: none;
  background-color: #0971E5;
  z-index: 3;
}
@media screen and (max-width: 1022px) {
  .c-hamburger-button {
    display: block;
  }
}
.c-hamburger-button__line {
  position: relative;
  font-size: 0;
  background-color: #fff;
  display: block;
  width: 40%;
  height: 2px;
  margin: 0 auto;
}
.c-hamburger-button__line::before, .c-hamburger-button__line::after {
  content: "";
  position: absolute;
  background-color: #fff;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease;
}
.c-hamburger-button__line::before {
  top: -6px;
}
.c-hamburger-button__line::after {
  bottom: -6px;
}
.c-hamburger-button.open .c-hamburger-button__line {
  background-color: transparent;
}
.c-hamburger-button.open .c-hamburger-button__line::before {
  top: 0;
  transform: rotate(20deg);
}
.c-hamburger-button.open .c-hamburger-button__line::after {
  bottom: 0;
  transform: rotate(-20deg);
}

.c-hamburger-menu-button {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border: none;
  background-color: #0971E5;
  z-index: 3;
}
.c-hamburger-menu-button__line {
  position: relative;
  font-size: 0;
  background-color: #fff;
  display: block;
  width: 40%;
  height: 2px;
  margin: 0 auto;
}
.c-hamburger-menu-button__line::before, .c-hamburger-menu-button__line::after {
  content: "";
  position: absolute;
  background-color: #fff;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease;
}
.c-hamburger-menu-button__line::before {
  top: -6px;
}
.c-hamburger-menu-button__line::after {
  bottom: -6px;
}
.c-hamburger-menu-button[aria-expanded=true] .c-hamburger-menu-button__line {
  background-color: transparent;
}
.c-hamburger-menu-button[aria-expanded=true] .c-hamburger-menu-button__line::before {
  top: 0;
  transform: rotate(20deg);
}
.c-hamburger-menu-button[aria-expanded=true] .c-hamburger-menu-button__line::after {
  bottom: 0;
  transform: rotate(-20deg);
}

/* パンくずリスト
  ----------------------------------------------------------------- */
.c-breadcrumbs {
  padding-left: 30px;
  padding-right: 20px;
}
.c-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1022px) {
  .c-breadcrumbs__list {
    justify-content: flex-end;
    margin-top: 16px;
  }
}
.c-breadcrumbs__item {
  color: #AFB6C5;
  line-height: 1;
  margin-block: 3px;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
}
.c-breadcrumbs__item:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #032141;
  transform: rotate(45deg);
  margin-inline: 10px;
}
.c-breadcrumbs__item a {
  color: #AFB6C5;
  text-decoration: none;
}
.c-breadcrumbs__item a:hover {
  text-decoration: underline;
}
.c-breadcrumbs__item a[aria-current=location] {
  color: inherit;
  cursor: default;
  text-decoration: none;
}

/* ページ見出し
  ----------------------------------------------------------------- */
.c-heading {
  color: #032141;
  padding-block: 0;
  padding-inline: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
}
.c-heading__inner {
  display: grid;
  place-items: center left;
  min-height: 340px;
  margin-top: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
}
@media screen and (max-width: 1022px) {
  .c-heading__inner {
    min-height: 100px;
  }
}
.c-heading__title-wrap {
  position: relative;
  padding-left: 10px;
  padding-top: 12px;
}
.c-heading__title-wrap::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #12BB4F;
  position: absolute;
  left: 0;
  top: 0.2em;
}
@media screen and (max-width: 1022px) {
  .c-heading__title-wrap::before {
    width: 6px;
    height: 6px;
  }
}
.c-heading__parent {
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  font-weight: 400;
  line-height: 1;
}
.c-heading__parent + .c-heading__title {
  margin-top: 8px;
}
.c-heading__title {
  position: relative;
  font-size: clamp(1.75rem, 1.5588235294rem + 0.7843137255vw, 2.5rem);
  line-height: 1.5;
}
.c-heading__title > .c-heading__title-sub {
  margin-top: 16px;
}
.c-heading__title-sub {
  display: block;
  font-weight: 500;
  margin-bottom: 50px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.c-heading-secondary {
  color: #032141;
  padding-inline: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
}
.c-heading-secondary__inner {
  display: grid;
  place-items: center left;
  min-height: 198px;
  margin-top: 28px;
}
@media screen and (max-width: 1022px) {
  .c-heading-secondary__inner {
    min-height: 100px;
  }
}
.c-heading-secondary__title-wrap {
  position: relative;
  padding-left: 10px;
  padding-top: 12px;
}
.c-heading-secondary__title-wrap::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #12BB4F;
  position: absolute;
  left: 0;
  top: 0.2em;
}
@media screen and (max-width: 1022px) {
  .c-heading-secondary__title-wrap::before {
    width: 6px;
    height: 6px;
  }
}
.c-heading-secondary__parent {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
.c-heading-secondary__parent + .c-heading-secondary__title {
  margin-top: 8px;
}
.c-heading-secondary__title {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.5588235294rem + 0.7843137255vw, 2.5rem);
  line-height: 1.5;
}
.c-heading-secondary__title > .c-heading-secondary__title-sub {
  margin-top: 16px;
}
.c-heading-secondary__title-sub {
  display: block;
  font-weight: 500;
  margin-bottom: 50px;
  font-size: 1.125rem;
  line-height: 0.8888888889;
}

.c-heading-tertiary {
  position: relative;
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  line-height: 1.2083333333;
  margin-bottom: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-left: 10px;
  padding-top: 12px;
}
.c-heading-tertiary__sub {
  display: block;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.c-heading-tertiary::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #12BB4F;
  position: absolute;
  left: 0;
  top: 0.2em;
}
@media screen and (max-width: 1022px) {
  .c-heading-tertiary::before {
    width: 6px;
    height: 6px;
  }
}

.c-heading-article {
  color: #032141;
  padding-inline: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  margin-top: clamp(2.8125rem, 2.493872549rem + 1.3071895425vw, 4.0625rem);
}
.c-heading-article__inner {
  display: grid;
  place-items: center left;
  position: relative;
  padding-left: 10px;
  padding-top: 12px;
}
.c-heading-article__inner::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #12BB4F;
  position: absolute;
  left: 0;
  top: 0.2em;
}
@media screen and (max-width: 1022px) {
  .c-heading-article__inner::before {
    width: 6px;
    height: 6px;
  }
}
.c-heading-article__contents {
  display: flex;
}

.c-heading-article-info {
  position: relative;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(0.25rem, 0.1862745098rem + 0.2614379085vw, 0.5rem);
  padding-right: clamp(1.75rem, 1.2083333333rem + 2.2222222222vw, 3.875rem);
  padding-bottom: clamp(0.375rem, 0.2794117647rem + 0.3921568627vw, 0.75rem);
  z-index: 1;
}
.c-heading-article-info::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 0.6919014085rem + 1.3145539906vw, 1.875rem);
  top: 0;
  height: 100%;
  max-height: clamp(4rem, 3.3838028169rem + 2.6291079812vw, 5.75rem);
  width: 1px;
  background-color: #D5DBE1;
}
.c-heading-article-info__date-ym {
  display: block;
  font-weight: 500;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 1.1764705882;
}
.c-heading-article-info__date-y {
  display: block;
  font-weight: 500;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 1.1764705882;
}
.c-heading-article-info__date-d {
  display: block;
  font-weight: 500;
  font-size: clamp(1.75rem, 1.4154411765rem + 1.3725490196vw, 3.0625rem);
  line-height: 0.8;
  letter-spacing: -0.01em;
}
.c-heading-article-info__date-md {
  display: block;
  font-weight: 500;
  font-size: clamp(1.75rem, 1.6225490196rem + 0.522875817vw, 2.25rem);
  line-height: 0.8;
  letter-spacing: -0.01em;
}

.c-heading-article-title__parent {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  font-weight: 400;
  line-height: 1;
}
.c-heading-article-title__parent + .c-heading-article-title__base {
  margin-top: 8px;
  margin-top: clamp(0.5rem, 0.3725490196rem + 0.522875817vw, 1rem);
}
.c-heading-article-title__base {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.431372549rem + 1.3071895425vw, 3rem);
  line-height: 1.5;
}
.c-heading-article-title__base > .c-heading-article-title__sub {
  margin-top: clamp(0.625rem, 0.5294117647rem + 0.3921568627vw, 1rem);
}
.c-heading-article-title__sub {
  display: block;
  font-weight: 500;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  line-height: 0.8888888889;
}

/* セクション 見出し
  ----------------------------------------------------------------- */
.c-heading02 {
  color: #032141;
  font-size: clamp(1.5rem, 1.2769607843rem + 0.9150326797vw, 2.375rem);
  line-height: 1.5;
  font-weight: 600;
  border-left: 3px solid #0971E5;
  padding-top: clamp(0.625rem, 0.5931372549rem + 0.1307189542vw, 0.75rem);
  padding-right: 0;
  padding-bottom: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  padding-left: clamp(1rem, 0.7291666667rem + 1.1111111111vw, 2.0625rem);
  margin-bottom: clamp(1.5rem, 1.0220588235rem + 1.9607843137vw, 3.375rem);
}

.c-heading03 {
  color: #032141;
  font-size: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  line-height: 1.5;
  font-weight: 600;
  border-left: 3px solid #0971E5;
  padding-top: clamp(0.3125rem, 0.3125rem + 0vw, 0.3125rem);
  padding-right: 0;
  padding-bottom: clamp(0.5625rem, 0.5625rem + 0vw, 0.5625rem);
  padding-left: clamp(1rem, 0.7291666667rem + 1.1111111111vw, 2.0625rem);
  margin-top: clamp(2.5rem, 2.3088235294rem + 0.7843137255vw, 3.25rem);
}

.c-heading03-secondary {
  color: #032141;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2rem, 1.8725490196rem + 0.522875817vw, 2.5rem);
}
.c-heading03-secondary::after {
  content: "";
  width: 15px;
  height: 3px;
  margin-top: 18.5px;
  background-color: #12BB4F;
}

.c-heading04 {
  position: relative;
  color: #032141;
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  line-height: 1.5;
  font-weight: 600;
  padding-top: 14px;
  margin-top: 24px;
}
.c-heading04::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #D5DBE1;
}
.c-heading04::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background: #0971E5;
}

.c-heading04-number {
  position: relative;
  color: #032141;
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  line-height: 1.5;
  font-weight: 600;
  padding-top: 14px;
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.c-heading04-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #D5DBE1;
}
.c-heading04-number::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background: #0971E5;
}
.c-heading04-number__num {
  color: #0971E5;
  font-weight: bold;
  flex-shrink: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.4044117647rem + 0.3921568627vw, 1.875rem);
  line-height: 1.2;
}

.c-heading05 {
  position: relative;
  color: #032141;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  padding-left: 30px;
  margin-top: 24px;
}
.c-heading05::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: #12BB4F;
}

.c-heading06 {
  position: relative;
  color: #032141;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 24px;
}

/* アンカーリンク
  ----------------------------------------------------------------- */
.c-anchorlink {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
.c-anchorlink__item {
  color: #032141;
  font-size: 0.875rem;
}
.c-anchorlink__link {
  position: relative;
  display: block;
  border: 1px solid #D5DBE1;
  line-height: 1;
  padding: 4px 26px 4px 14px;
  border-radius: 14px;
}
.c-anchorlink__link::before {
  content: "";
  position: absolute;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  top: calc(50% - 2px);
  right: 14px;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border: 0.1em solid #0971E5;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-25%) rotate(135deg);
}
.c-anchorlink__link:hover {
  color: #3993F6;
}

/* 画像ビジュアル付きページヘッダー（H2見出し)
  ----------------------------------------------------------------- */
:root {
  --page-lead-w-title-s: 1200px;
}

.p-page-lead {
  display: flex;
  align-items: center;
  width: min(var(--content-inner01), 100%);
  margin: 0 auto;
}
@media screen and (max-width: 1022px) {
  .p-page-lead {
    flex-direction: column-reverse;
  }
}
.p-page-lead.--title-only {
  max-width: var(--page-lead-w-title-s);
}
.p-page-lead.--title-only .p-page-lead__section {
  padding-bottom: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  padding-left: 0;
}
.p-page-lead__img {
  width: 50%;
  flex-shrink: 0;
  min-height: 100%;
  overflow: hidden;
  align-self: stretch;
}
@media screen and (max-width: 1022px) {
  .p-page-lead__img {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.p-page-lead__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-page-lead__section {
  padding-top: 0;
  padding-right: clamp(0.625rem, -0.4901960784rem + 4.5751633987vw, 5rem);
  padding-bottom: clamp(1.875rem, 0.9987745098rem + 3.5947712418vw, 5.3125rem);
  padding-left: clamp(0.625rem, -0.4901960784rem + 4.5751633987vw, 5rem);
}
.p-page-lead__section > .c-heading02 {
  margin-top: 48px;
  margin-bottom: 25px;
}
.p-page-lead__text {
  font-size: 1.0625rem;
  line-height: 2;
  margin-top: 24px;
}
.p-page-lead__text--margin-half {
  margin-top: 12px;
}
.p-page-lead__text + .p-page-lead__text {
  margin-top: 20px;
}

.p-page-lead-text-only {
  margin-bottom: clamp(5rem, 4.681372549rem + 1.3071895425vw, 6.25rem);
}
.p-page-lead-text-only__text {
  color: #032141;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
}
.p-page-lead-text-only__text + .p-page-lead-text-only__text {
  margin-top: clamp(0.9375rem, 0.8578431373rem + 0.3267973856vw, 1.25rem);
}

/* リスト
  ----------------------------------------------------------------- */
.c-list01 {
  list-style-type: none;
  margin-top: 16px;
}
.c-list01 li {
  position: relative;
  color: #032141;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
  padding-right: 10px;
  padding-top: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-bottom: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-left: clamp(1.375rem, 1.3431372549rem + 0.1307189542vw, 1.5rem);
}
.c-list01 li:before {
  content: "";
  display: inline-block;
  background: #0971E5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 21px;
  left: 0;
}

.c-list02 {
  counter-reset: number;
  list-style-type: none;
  margin-top: 16px;
}
.c-list02 li {
  position: relative;
  color: #032141;
  font-size: clamp(0.875rem, 0.8272058824rem + 0.1960784314vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
  padding-right: 10px;
  padding-top: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-bottom: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-left: clamp(1.875rem, 1.8431372549rem + 0.1307189542vw, 2rem);
  min-width: 50%;
}
.c-list02 li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #12BB4F;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  width: clamp(1.25rem, 1.1703431373rem + 0.3267973856vw, 1.5625rem);
  min-width: clamp(1.25rem, 1.1703431373rem + 0.3267973856vw, 1.5625rem);
  height: clamp(1.25rem, 1.1703431373rem + 0.3267973856vw, 1.5625rem);
  line-height: clamp(1.25rem, 1.1703431373rem + 0.3267973856vw, 1.5625rem);
  text-align: center;
  position: absolute;
  left: 0;
  margin-top: 0.45em;
}
@media screen and (max-width: 1022px) {
  .c-list02 li:before {
    margin-top: 0.4em;
  }
}

.c-list03 {
  counter-reset: number;
  list-style-type: none;
  margin-top: 16px;
}
.c-list03 li {
  position: relative;
  color: #032141;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
  padding-right: 10px;
  padding-top: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-bottom: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-left: clamp(1.875rem, 1.8431372549rem + 0.1307189542vw, 2rem);
}
.c-list03 li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  border-radius: 50%;
  background: #0971E5;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7965686275rem + 0.0653594771vw, 0.875rem);
  width: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  min-width: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  height: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  line-height: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  text-align: center;
  margin-top: 0.55em;
  position: absolute;
  left: 0;
}

.c-list03-box {
  counter-reset: number;
  list-style-type: none;
}
.c-list03-box-wrap {
  border: 1px solid #D5DBE1;
  margin-top: clamp(1.375rem, 1.3431372549rem + 0.1307189542vw, 1.5rem);
  padding-block: clamp(0.25rem, 0.0588235294rem + 0.7843137255vw, 1rem);
  padding-inline: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
.c-list03-box li {
  position: relative;
  color: #032141;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
  padding-right: 10px;
  padding-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  padding-bottom: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  padding-left: clamp(1.875rem, 1.8431372549rem + 0.1307189542vw, 2rem);
  border-bottom: 1px solid #D5DBE1;
}
.c-list03-box li:last-child {
  border-bottom: none;
}
.c-list03-box li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  border-radius: 50%;
  background: #0971E5;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7965686275rem + 0.0653594771vw, 0.875rem);
  width: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  min-width: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  height: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  line-height: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  text-align: center;
  margin-top: 0.55em;
  position: absolute;
  left: 0;
}

.c-list03--title {
  counter-reset: number;
  list-style-type: none;
  margin-top: 16px;
}
.c-list03--title li {
  position: relative;
  color: #032141;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
  padding-right: 10px;
  padding-top: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-bottom: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-left: clamp(1.875rem, 1.8431372549rem + 0.1307189542vw, 2rem);
}
.c-list03--title li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  border-radius: 50%;
  background: #0971E5;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7965686275rem + 0.0653594771vw, 0.875rem);
  width: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  min-width: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  height: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  line-height: clamp(1.25rem, 1.2181372549rem + 0.1307189542vw, 1.375rem);
  text-align: center;
  margin-top: 0.7em;
  position: absolute;
  left: 0;
}
.c-list03--title__title {
  font-size: clamp(1.125rem, 1.1090686275rem + 0.0653594771vw, 1.1875rem);
  font-weight: 500;
}
.c-list03--title__text + .c-list03--title__text {
  margin-top: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
}

.c-list04 {
  counter-reset: number;
  list-style-type: none;
  margin-top: 16px;
}
.c-list04 li {
  position: relative;
  color: #032141;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
  padding-top: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-bottom: clamp(0.375rem, 0.3431372549rem + 0.1307189542vw, 0.5rem);
  padding-left: clamp(1.875rem, 1.8431372549rem + 0.1307189542vw, 2rem);
}
.c-list04 li:before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  display: inline-block;
  color: #0771E5;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1rem, 0.9840686275rem + 0.0653594771vw, 1.0625rem);
  width: 22px;
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  text-align: center;
  margin-top: 0.25em;
}

.c-list04--nested {
  counter-reset: number;
  list-style: none;
  margin-top: clamp(0.5rem, 0.4362745098rem + 0.2614379085vw, 0.75rem);
}
.c-list04--nested li {
  position: relative;
  color: #032141;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
  padding-top: clamp(0.25rem, 0.2181372549rem + 0.1307189542vw, 0.375rem);
  padding-bottom: clamp(0.25rem, 0.2181372549rem + 0.1307189542vw, 0.375rem);
  padding-left: clamp(1.875rem, 1.8431372549rem + 0.1307189542vw, 2rem);
}
.c-list04--nested li::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  color: #0771E5;
  background-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1rem, 0.9840686275rem + 0.0653594771vw, 1.0625rem);
  width: 22px;
  min-width: 22px;
  line-height: inherit;
  padding-top: 0.25em;
  text-align: center;
}

.c-listInline {
  margin-top: 20px;
}
.c-listInline > li {
  display: inline-block;
  padding-block: 8px;
  margin-right: 20px;
}
.c-listInline > li:first-child {
  margin-left: 0;
}

.c-list-col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.c-list-indent {
  margin-left: clamp(1.25rem, 0.612745098rem + 2.614379085vw, 3.75rem);
}

/* ボックス
  ----------------------------------------------------------------- */
:root {
  --box-border-gray: #D5DBE1;
}

.c-box-border {
  border: 1px solid var(--box-border-gray);
}
.c-box-border-wrap {
  margin-top: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
}
.c-box-border--base {
  padding-block: clamp(2.5rem, 2.2610294118rem + 0.9803921569vw, 3.4375rem);
  padding-inline: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
}
.c-box-border--base .c-heading05,
.c-box-border--base .c-button-wrapper {
  margin-top: 0;
}
.c-box-border--table {
  padding-top: clamp(3rem, 2.5220588235rem + 1.9607843137vw, 4.875rem);
  padding-bottom: clamp(3.5rem, 3.3406862745rem + 0.6535947712vw, 4.125rem);
  padding-inline: clamp(1.5rem, 0.7034313725rem + 3.2679738562vw, 4.625rem);
}
.c-box-border.--bg-white {
  background-color: #fff;
}

/* ボタン
  ----------------------------------------------------------------- */
.c-button-wrapper {
  margin-top: 40px;
}
.c-button-wrapper.--center {
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
}

.c-button-wrapper-flex {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px 10px;
}
.c-button-wrapper-flex.--center {
  justify-content: center;
}

.c-button-wrapper-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
}
.c-button-wrapper-text .c-link-button-primary {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
}

.c-link-button-primary {
  display: block;
  border: 1px solid #D5DBE1;
  width: fit-content;
  border-radius: 22px;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 1;
  color: #0971E5;
  background-color: #fff;
  padding: 9px 28px 10px 28px;
  transition: 0.3s;
}
.c-link-button-primary:hover {
  color: #3993F6;
}

.c-link-button-secondary {
  position: relative;
  display: block;
  border: 1px solid #D5DBE1;
  width: fit-content;
  border-radius: 60px;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 1.4;
  color: #0971E5;
  background-color: #fff;
  padding-inline: clamp(1.25rem, 1.0092592593rem + 0.987654321vw, 1.75rem);
  padding-top: clamp(0.25rem, 0.1898148148rem + 0.2469135802vw, 0.375rem);
  padding-bottom: clamp(0.375rem, 0.3148148148rem + 0.2469135802vw, 0.5rem);
  transition: 0.3s;
  width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.c-link-button-secondary::after {
  content: "";
  display: block;
  margin: auto;
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.c-link-button-secondary:hover {
  color: #3993F6;
}
.c-link-button-secondary.--pdf::after {
  background: url(../img/common/icon_pdf.svg);
}
.c-link-button-secondary.--excel::after {
  background: url(../img/common/icon_excel.svg);
}
.c-link-button-secondary.--word::after {
  background: url(../img/common/icon_word.svg);
}

.c-button-primary {
  position: relative;
  display: block;
  color: #fff;
  background-color: #12BB4F;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  min-width: 220px;
  padding: 15px 20px;
  padding: 16px 96px 16px 20px;
  text-align: center;
  width: fit-content;
  transition: 0.3s;
}
@media screen and (max-width: 1022px) {
  .c-button-primary {
    font-size: 0.9375rem;
  }
}
.c-button-primary::before {
  content: "";
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
.c-button-primary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 49px;
  height: 20px;
  -webkit-mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  background-color: #fff;
  transition: 0.4s;
}
.c-button-primary:hover {
  background-color: #18f76a;
}
.c-button-primary:hover::before {
  transform: translateY(-50%) translateX(14px) rotate(45deg);
}
.c-button-primary:hover::after {
  -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  background-color: #fff;
}
.c-button-primary .--sp-block {
  display: inline-block;
}

.c-button-secondary {
  position: relative;
  display: block;
  color: #fff;
  background-color: #12BB4F;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  min-width: 200px;
  padding: 15px 20px;
  text-align: center;
  width: fit-content;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}
.c-button-secondary::after {
  content: "";
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-button-secondary:hover {
  background-color: #18f76a;
}
.c-button-secondary.--pdf::after {
  background: url(../img/common/icon_pdf.svg);
}
.c-button-secondary.--excel::after {
  background: url(../img/common/icon_excel.svg);
}
.c-button-secondary.--word::after {
  background: url(../img/common/icon_word.svg);
}

.c-button-tertiary {
  position: relative;
  display: block;
  color: #fff;
  background-color: #12BB4F;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  min-width: 220px;
  padding: 16px 20px;
  text-align: center;
  width: fit-content;
  transition: 0.3s;
}
.c-button-tertiary:hover {
  background-color: #18f76a;
}
.c-button-tertiary:hover::before {
  transform: translateY(-50%) translateX(14px) rotate(45deg);
}

.c-button-mail {
  position: relative;
  display: inline-block;
  border: 1px solid #D5DBE1;
  border-radius: 60px;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 1.4;
  color: #0971E5;
  transition: 0.3s;
  width: fit-content;
  padding-top: clamp(0.25rem, 0.1898148148rem + 0.2469135802vw, 0.375rem);
  padding-right: clamp(1.25rem, 1.0092592593rem + 0.987654321vw, 1.75rem);
  padding-bottom: clamp(0.375rem, 0.3148148148rem + 0.2469135802vw, 0.5rem);
  padding-left: 48px;
  background-color: #fff;
}
.c-button-mail::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 17px;
  min-width: 17px;
  height: 13px;
  background: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
}
.c-button-mail:hover {
  color: #3993F6;
}

.c-button-path-warp {
  margin-top: clamp(3.75rem, 3.112745098rem + 2.614379085vw, 6.25rem);
  width: min(768px, 100%);
  margin-inline: auto;
}

.c-button-path-left {
  position: relative;
  display: block;
  background-color: #0971E5;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
}
.c-button-path-left:hover {
  background-color: #3993F6;
}
.c-button-path-left__img-wrap {
  width: clamp(15rem, 12.6740196078rem + 9.5424836601vw, 24.125rem);
}
.c-button-path-left__textarea {
  color: #fff;
  text-align: right;
  position: absolute;
  right: 0;
  top: 0;
  padding-block: clamp(0.75rem, 0.6225490196rem + 0.522875817vw, 1.25rem);
  padding-inline: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
}
.c-button-path-left__text {
  position: relative;
  width: fit-content;
  margin-left: auto;
  font-size: clamp(1.0625rem, 0.9191176471rem + 0.5882352941vw, 1.625rem);
  line-height: 1.5;
}
.c-button-path-left__text::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media screen and (max-width: 1022px) {
  .c-button-path-left__text::before {
    left: -34px;
    width: 6px;
    height: 6px;
  }
}
.c-button-path-left__text::after {
  content: "";
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 30px;
  -webkit-mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  background-color: #fff;
  transition: 0.4s;
}
@media screen and (max-width: 1022px) {
  .c-button-path-left__text::after {
    left: -54px;
    width: 49px;
    height: 20px;
  }
}
.c-button-path-left:hover .c-button-path-left__text::before {
  transform: translateY(-50%) translateX(21px) rotate(45deg);
}
@media screen and (max-width: 1022px) {
  .c-button-path-left:hover .c-button-path-left__text::before {
    transform: translateY(-50%) translateX(14px) rotate(45deg);
  }
}
.c-button-path-left:hover .c-button-path-left__text::after {
  -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  background-color: #fff;
}

.c-button-path-left-mask {
  display: block;
  clip-path: url(#svgPath);
  -webkit-clip-path: url(#svgPath);
  transition: opacity 0.2s;
}

.c-button-path-right {
  position: relative;
  display: block;
  background-color: #12BB4F;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
}
.c-button-path-right:hover {
  background-color: #18f76a;
}
.c-button-path-right__img-wrap {
  margin-left: auto;
  width: clamp(15rem, 12.6740196078rem + 9.5424836601vw, 24.125rem);
}
.c-button-path-right__textarea {
  color: #fff;
  text-align: left;
  position: absolute;
  left: 0;
  top: 0;
  padding-block: clamp(0.75rem, 0.6225490196rem + 0.522875817vw, 1.25rem);
  padding-right: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-left: clamp(1rem, 0.6176470588rem + 1.568627451vw, 2.5rem);
}
.c-button-path-right__text {
  position: relative;
  width: fit-content;
  margin-left: auto;
  font-size: clamp(1.0625rem, 0.9191176471rem + 0.5882352941vw, 1.625rem);
  line-height: 1.5;
  padding-left: clamp(3.625rem, 3.1948529412rem + 1.7647058824vw, 5.3125rem);
}
.c-button-path-right__text::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media screen and (max-width: 1022px) {
  .c-button-path-right__text::before {
    left: 20px;
    width: 6px;
    height: 6px;
  }
}
.c-button-path-right__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 30px;
  -webkit-mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  background-color: #fff;
  transition: 0.4s;
}
@media screen and (max-width: 1022px) {
  .c-button-path-right__text::after {
    width: 49px;
    height: 20px;
  }
}
.c-button-path-right:hover .c-button-path-right__text::before {
  transform: translateY(-50%) translateX(21px) rotate(45deg);
}
@media screen and (max-width: 1022px) {
  .c-button-path-right:hover .c-button-path-right__text::before {
    transform: translateY(-50%) translateX(14px) rotate(45deg);
  }
}
.c-button-path-right:hover .c-button-path-right__text::after {
  -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  background-color: #fff;
}

.c-button-path-right-mask {
  display: block;
  clip-path: url(#svgPath-right);
  -webkit-clip-path: url(#svgPath-right);
  transition: opacity 0.2s;
}

/* テキストリンク
  ----------------------------------------------------------------- */
.c-text-link-primary {
  display: inline-block;
  color: #0971E5;
  font-size: 1.0625rem;
  line-height: 2;
  transition: 0.3s;
  text-align: center;
  width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.c-text-link-primary::after {
  content: "";
  display: block;
  margin: auto;
  width: 20px;
  height: 20px;
}
.c-text-link-primary:hover {
  color: #3993F6;
}
.c-text-link-primary.--pdf::after {
  background: url(../img/common/icon_pdf.svg);
}
.c-text-link-primary.--excel::after {
  background: url(../img/common/icon_excel.svg);
}
.c-text-link-primary.--word::after {
  background: url(../img/common/icon_word.svg);
}

.c-text-link-mail {
  position: relative;
  display: inline-block;
  color: #0971E5;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  transition: 0.3s;
  text-align: center;
  width: fit-content;
  padding-left: 24px;
}
.c-text-link-mail::before {
  content: "";
  position: absolute;
  display: inline-block;
  margin: auto;
  width: 17px;
  min-width: 17px;
  height: 13px;
  background: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.c-text-link-mail:hover {
  color: #3993F6;
}

/* テキスト
  ----------------------------------------------------------------- */
.c-text-emphasis {
  color: #CE4747;
}

.c-text-15 {
  font-size: 0.9375rem;
}

.c-text-line-through {
  text-decoration: line-through;
}

.c-text-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.c-indent {
  position: relative;
}
.c-indent.--1-half {
  padding-left: 1.5em;
}
.c-indent.--2 {
  padding-left: 2em;
}
.c-indent.--2-half {
  padding-left: 2.5em;
}
.c-indent.--3 {
  padding-left: 3em;
}
.c-indent > span {
  position: absolute;
  left: 0px;
  top: 0em;
}

.ind span {
  position: absolute;
  left: 0px;
  top: 0em;
}

:root {
  --note-indent: 1.5em;
}

.c-note {
  font-size: 0.9375rem;
  line-height: 2;
  font-weight: 300;
  margin-top: 0.5em;
}
.c-note__text {
  display: grid;
  grid-template-columns: 1.5em 1fr;
}
.c-note__text::before {
  content: "※";
  color: #032141;
  padding-right: 0.5em;
}
.c-note__text--normal-text {
  grid-template-columns: none;
}
.c-note__text--normal-text::before {
  content: none;
}
.c-note__text.--num {
  grid-template-columns: auto 1fr;
}
.c-note__text.--num::before {
  content: "※" attr(data-note);
}
.c-note.--bold {
  font-weight: 500;
}

/* 画像とテキストのレイアウト
  ----------------------------------------------------------------- */
.c-media-wrapper {
  margin-top: clamp(1.5rem, 1.0185185185rem + 1.975308642vw, 2.5rem);
}
.c-media-wrapper.--bottom {
  margin-bottom: clamp(2rem, 1.5185185185rem + 1.975308642vw, 3rem);
}

.c-media {
  display: flex;
  flex-direction: row;
  gap: 40px max(4.1vw, 40px);
  margin-top: 24px;
}
@media screen and (max-width: 1022px) {
  .c-media {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.c-media__image {
  margin: auto;
  width: fit-content;
  flex: 1;
}
.c-media__image img {
  display: block;
}
.c-media__image.--full img {
  width: 100%;
}
.c-media__body {
  color: #032141;
  flex: 1;
}
.c-media__text {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
  margin-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-media__text + .c-media__text {
  margin-top: 20px;
}
.c-media__caption {
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 2;
  font-weight: 400;
  margin-top: 8px;
}
.c-media--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1022px) {
  .c-media--reverse {
    flex-direction: column-reverse;
  }
}

.c-media-stack {
  text-align: center;
  padding-block: 0;
  padding-inline: clamp(0.5rem, -0.162037037rem + 2.7160493827vw, 1.875rem);
  margin-top: clamp(1rem, 0.7592592593rem + 0.987654321vw, 1.5rem);
}
.c-media-stack__image {
  margin: auto;
  width: fit-content;
  display: block;
}
.c-media-stack__caption {
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 2;
  font-weight: 400;
  margin-top: 8px;
}
.c-media-stack__body {
  margin-top: 20px;
}
.c-media-stack__text {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
}
.c-media-stack__text + .c-media-stack__text {
  margin-top: 20px;
}

.c-media-full {
  width: 100%;
}
.c-media-full__image img {
  width: 100%;
  height: auto;
  display: block;
}

.c-media-img-fit {
  display: flex;
  margin-top: 24px;
}
@media screen and (max-width: 1022px) {
  .c-media-img-fit {
    flex-direction: column;
  }
}
.c-media-img-fit__image {
  margin: auto;
  width: fit-content;
  max-width: fit-content;
  padding-block: clamp(1rem, 0.8796296296rem + 0.4938271605vw, 1.25rem);
  padding-inline: clamp(1.5rem, 1.0185185185rem + 1.975308642vw, 2.5rem);
}
.c-media-img-fit__image img {
  display: block;
}
.c-media-img-fit__image.--full img {
  width: 100%;
}
.c-media-img-fit__body {
  color: #032141;
  flex: 1;
}
.c-media-img-fit__text {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  font-weight: 400;
  margin-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-media-img-fit__text + .c-media-img-fit__text {
  margin-top: 20px;
}
.c-media-img-fit__caption {
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 2;
  font-weight: 400;
  margin-top: 8px;
}
.c-media-img-fit--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1022px) {
  .c-media-img-fit--reverse {
    flex-direction: column-reverse;
  }
}

.c-media-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 2.5rem + 0vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .c-media-two-columns {
    grid-template-columns: 1fr;
  }
}
.c-media-two-columns-wrap {
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.c-media-two-columns__text {
  margin-top: clamp(1rem, 0.7592592593rem + 0.987654321vw, 1.5rem);
}
.c-media-two-columns__figure {
  width: fit-content;
  max-width: fit-content;
  padding-block: 0;
  padding-inline: clamp(0.5rem, -0.162037037rem + 2.7160493827vw, 1.875rem);
  margin-top: clamp(1rem, 0.7592592593rem + 0.987654321vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .c-media-two-columns__figure {
    margin-inline: auto;
  }
}
.c-media-two-columns__figure img {
  display: block;
}
.c-media-two-columns__figure.--center {
  margin-inline: auto;
}
.c-media-two-columns__figure.--full {
  max-width: 100%;
  width: 100%;
}
.c-media-two-columns__figure.--full img {
  width: 100%;
}
.c-media-two-columns.--no-gap {
  gap: 0;
}

/* テーブル
  ----------------------------------------------------------------- */
:root {
  --table-col01: #032141;
  --table-col02: #ddd;
  --table-col-bg01: rgb(173, 204, 238, 0.3);
  --table-w-base: 1200px;
  --table-w-wide-lg: 1520px;
  --table-w-wide-sm: 1364px;
  --table-col-dept01: #757CBB;
  --table-col-dept02: #409AD6;
  --table-col-dept03: #ABCD03;
  --table-col-dept04: #49BCBD;
  --table-col-dept05: #EA9E00;
  --table-col-dept06: #5B8BC9;
  --table-col-dept07: #7AC560;
  --table-col-dept08: #CE4747;
  --table-col-dept09: #AA5E9C;
  --table-col-dept10: #69716D;
  --table-col-dept11: #12BB4F;
  --_table-col: var(--table-col01);
}

.c-table-color-management {
  --_table-col: var(--table-col-dept06);
}

.c-table-color-comprehensive {
  --_table-col: var(--table-col-dept01);
}

.c-table-color-tourism {
  --_table-col: var(--table-col-dept02);
}

.c-table-color-health {
  --_table-col: var(--table-col-dept07);
}

.c-table-color-nutritional {
  --_table-col: var(--table-col-dept03);
}

.c-table-color-sports {
  --_table-col: var(--table-col-dept04);
}

.c-table-color-education {
  --_table-col: var(--table-col-dept05);
}

.c-table-color-human-science {
  --_table-col: var(--table-col-dept08);
}

.c-table-color-short-term {
  --_table-col: var(--table-col-dept09);
}

.c-table-color-graduate-school {
  --_table-col: var(--table-col-dept10);
}

.c-table-color-junior {
  --_table-col: var(--table-col-dept11);
}

.c-table-col-10 {
  width: 10%;
}

.c-table-col-20 {
  width: 20%;
}

.c-table-col-30 {
  width: 30%;
}

.c-table-col-40 {
  width: 40%;
}

.c-table-col-50 {
  width: 50%;
}

.c-table-col-60 {
  width: 60%;
}

.c-table-col-70 {
  width: 70%;
}

.c-table-col-80 {
  width: 80%;
}

.c-table-col-90 {
  width: 90%;
}

.c-table01 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  margin-top: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
}
.c-table01 th,
.c-table01 td {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 10px 20px;
}
.c-table01 th {
  font-weight: 600;
  text-align: center;
  min-width: 200px;
}
.c-table01 tr {
  border: 1px solid var(--table-col02);
}
.c-table01 td {
  border: 1px solid var(--table-col02);
  text-align: left;
}
.c-table01 tbody {
  background-color: #fff;
}
.c-table01 > thead th:nth-child(even) {
  color: #032141;
  background-color: var(--table-col02);
}
.c-table01 > thead th:nth-child(odd) {
  color: #032141;
  background-color: #fff;
}
.c-table01 > thead th:first-child {
  color: #fff;
  background-color: var(--_table-col);
  width: 22%;
}
.c-table01--header-color-fix > thead th:nth-child(even), .c-table01--header-color-fix > thead th:nth-child(odd) {
  color: #032141;
  background-color: var(--table-col02);
  border-left: 1px solid #fff;
}
.c-table01--header-color-fix > thead th:first-child {
  color: #fff;
  background-color: var(--_table-col);
  width: 22%;
}
.c-table01 > tbody th {
  color: #fff;
  background-color: var(--_table-col);
  text-align: center;
}
.c-table01--no-fix {
  table-layout: inherit;
}
@media screen and (max-width: 1022px) {
  .c-table01--th-small > tbody th, .c-table01--th-small > tbody td, .c-table01--th-small > thead th, .c-table01--th-small > thead td {
    padding: 10px 10px;
  }
}
.c-table01--th-small > tbody th:first-child, .c-table01--th-small > thead th:first-child {
  color: #fff;
  background-color: var(--_table-col);
  width: 240px;
}
@media screen and (max-width: 1022px) {
  .c-table01--th-small > tbody th:first-child, .c-table01--th-small > thead th:first-child {
    width: 140px;
  }
}

.c-table02 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  margin-top: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
}
.c-table02 th,
.c-table02 td {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 16px 20px;
  border: 1px solid var(--table-col02);
  vertical-align: top;
  text-align: left;
}
.c-table02 th {
  color: #fff;
  background-color: var(--_table-col);
  font-weight: 600;
  white-space: nowrap;
  width: 220px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-table02 th {
    width: 100%;
  }
}
.c-table02--librarian th {
  background-color: #687a8d;
}
@media screen and (min-width: 768px) {
  .c-table02--employment th {
    width: 50%;
  }
}
.c-table02 td {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-table02 td {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .c-table02,
  .c-table02 tbody,
  .c-table02 tr,
  .c-table02 th,
  .c-table02 td {
    display: block;
    width: 100%;
  }
  .c-table02 tr {
    margin-bottom: 16px;
  }
  .c-table02 th {
    border-bottom: none;
    padding-bottom: 12px;
  }
  .c-table02 td {
    padding-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .c-table02.--text-sp-center td {
    text-align: center;
  }
  .c-table02.--text-sp-center .c-button-mail, .c-table02.--text-sp-center .c-text-link-mail {
    margin-inline: auto;
  }
}

.c-table03-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-table03 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  margin-top: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
}
.c-table03 th,
.c-table03 td {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 16px 20px;
  border: 1px solid var(--table-col02);
  vertical-align: middle;
  text-align: center;
}
.c-table03 th {
  background-color: var(--table-col02);
  border-right: 1px solid #fff;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}
.c-table03 th:last-child {
  border-right: 1px solid var(--table-col02);
}
.c-table03 td {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-table03 td {
    border-top: none;
  }
}
.c-table03 table {
  width: var(--table-w-base);
  border-collapse: collapse;
}
.c-table03 thead th:first-child,
.c-table03 tbody th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  color: #fff;
  background-color: var(--_table-col);
}

.c-table04 {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  margin-top: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
}
.c-table04 th,
.c-table04 td {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 20px;
  border: 1px solid var(--table-col02);
  vertical-align: middle;
  text-align: center;
}
.c-table04 th.--left,
.c-table04 td.--left {
  text-align: left;
}
.c-table04 th.--right,
.c-table04 td.--right {
  text-align: right;
}
.c-table04 th.--center,
.c-table04 td.--center {
  text-align: center;
}
.c-table04 th.--wrap,
.c-table04 td.--wrap {
  white-space: normal;
}
.c-table04 th {
  font-weight: 600;
  text-align: center;
}
.c-table04 td {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-table04 td {
    border-top: none;
  }
}
.c-table04 table {
  width: var(--table-w-base);
  border-collapse: collapse;
}
.c-table04 thead th {
  background-color: var(--table-col02);
  border-right: 1px solid #fff;
}
.c-table04 thead th:last-child {
  border-right: 1px solid var(--table-col02);
}
.c-table04 thead th:first-child {
  color: #fff;
  background-color: var(--_table-col);
}
.c-table04 tbody th {
  text-align: left;
}
.c-table04-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-table04-scroll-wrap table {
  min-width: 800px;
}
.c-table04.--full {
  width: 100%;
}
.c-table04.--fixed {
  table-layout: fixed;
  width: 100%;
}
.c-table04.--base {
  width: var(--table-w-base);
}
.c-table04.--wide-lg {
  width: var(--table-w-wide-lg);
}
.c-table04.--wide-sm {
  width: var(--table-w-wide-sm);
}
.c-table04.--th-bg thead th {
  background-color: var(--_table-col);
  color: #fff;
}

.c-table05 {
  border-collapse: collapse;
  max-width: 100%;
  margin-top: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
}
.c-table05 th,
.c-table05 td {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 20px;
  border: 1px solid var(--table-col02);
  vertical-align: middle;
  text-align: center;
}
.c-table05 th.--left,
.c-table05 td.--left {
  text-align: left;
}
.c-table05 th.--right,
.c-table05 td.--right {
  text-align: right;
}
.c-table05 th.--center,
.c-table05 td.--center {
  text-align: center;
}
.c-table05 th {
  font-weight: 600;
}
.c-table05 td {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-table05 td {
    border-top: none;
  }
}
.c-table05 thead th {
  background-color: var(--table-col02);
  border-right: 1px solid #fff;
}
.c-table05 thead th:last-child {
  border-right: 1px solid var(--table-col02);
}
.c-table05 thead tr:nth-child(1) th:nth-child(1) {
  color: #fff;
  background-color: var(--_table-col);
  width: 34%;
}
.c-table05 thead tr:nth-child(1) th:not(:first-child) {
  border-bottom: 1px solid #fff;
}
.c-table05 tbody th {
  color: #fff;
  background-color: var(--_table-col);
}
.c-table05-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-table05.--full {
  width: 100%;
}
.c-table05.--base {
  width: var(--table-w-base);
}
.c-table05.--wide-lg {
  width: var(--table-w-wide-lg);
}
.c-table05.--wide-sm {
  width: var(--table-w-wide-sm);
}

.c-table-card-wraper {
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.c-table-card {
  table-layout: fixed;
  border-collapse: collapse;
  color: #032141;
  width: 100%;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.6;
}
.c-table-card thead th {
  background: var(--activities-color-bg);
  font-weight: 500;
  text-align: left;
  padding: 14px 0.5rem;
  border-bottom: 1px solid var(--activities-color-border);
  white-space: nowrap;
}
.c-table-card th:nth-child(1), .c-table-card td:nth-child(1) {
  width: 14%;
}
.c-table-card th:nth-child(2), .c-table-card td:nth-child(2) {
  width: 10%;
}
.c-table-card th:nth-child(3), .c-table-card td:nth-child(3) {
  width: 14%;
}
.c-table-card th:nth-child(4), .c-table-card td:nth-child(4) {
  width: 14%;
}
.c-table-card th:nth-child(5), .c-table-card td:nth-child(5) {
  width: 13%;
}
.c-table-card th:nth-child(6), .c-table-card td:nth-child(6) {
  width: 13%;
}
.c-table-card th:nth-child(7), .c-table-card td:nth-child(7) {
  width: auto;
}
.c-table-card th:nth-child(1),
.c-table-card td:nth-child(1) {
  padding-left: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-table-card th:nth-child(2),
.c-table-card td:nth-child(2) {
  white-space: nowrap;
}
.c-table-card th:nth-child(7),
.c-table-card td:nth-child(7) {
  padding-right: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
@media screen and (max-width: 1279px) {
  .c-table-card {
    display: block;
  }
  .c-table-card thead, .c-table-card tbody, .c-table-card tr, .c-table-card th, .c-table-card td {
    display: block;
  }
  .c-table-card thead {
    display: none;
  }
  .c-table-card tr {
    box-shadow: var(--activities-shadow);
  }
  .c-table-card th:nth-child(1), .c-table-card td:nth-child(1) {
    width: 100%;
  }
  .c-table-card th:nth-child(2), .c-table-card td:nth-child(2) {
    width: 100%;
  }
  .c-table-card th:nth-child(3), .c-table-card td:nth-child(3) {
    width: 100%;
  }
  .c-table-card th:nth-child(4), .c-table-card td:nth-child(4) {
    width: 100%;
  }
  .c-table-card th:nth-child(5), .c-table-card td:nth-child(5) {
    width: 100%;
  }
  .c-table-card th:nth-child(6), .c-table-card td:nth-child(6) {
    width: 100%;
  }
  .c-table-card th:nth-child(7), .c-table-card td:nth-child(7) {
    width: 100%;
  }
}
.c-table-card tbody tr {
  border-bottom: 1px solid var(--activities-color-border);
  transition: background 0.15s ease;
}
@media screen and (max-width: 1279px) {
  .c-table-card tbody tr {
    margin-block-end: 40px;
    border: 1px solid var(--activities-color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--activities-shadow);
    background: var(--color-white);
  }
}
@media screen and (min-width: 1280px) {
  .c-table-card tbody tr:last-child {
    border-bottom: none;
    margin-block-end: 0;
  }
}
.c-table-card tbody tr td {
  vertical-align: top;
  padding-block: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-inline: clamp(0.5rem, 0.4362745098rem + 0.2614379085vw, 0.75rem);
}
@media screen and (max-width: 1279px) {
  .c-table-card tbody tr td {
    display: flex;
    gap: 8px;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--activities-color-border);
    font-size: 0.875rem;
  }
  .c-table-card tbody tr td:first-child {
    background-color: var(--activities-color-bg);
    font-weight: 600;
  }
  .c-table-card tbody tr td:first-child::before {
    display: none;
  }
  .c-table-card tbody tr td:last-child {
    border-bottom: none;
  }
  .c-table-card tbody tr td::before {
    content: attr(data-label);
    flex-shrink: 0;
    width: 5.5em;
    font-weight: 700;
    color: var(--color-main);
    font-size: 0.8rem;
  }
}
.c-table-card tbody tr td a {
  color: #3993F6;
}
.c-table-card tbody tr td a:hover {
  color: #0971E5;
  text-decoration: underline;
}

.c-table-tr-bg td {
  background-color: var(--table-col-bg01);
}

.c-table-tr-bg-note {
  background-color: var(--table-col-bg01);
}

.c-table-tr-text-center td {
  text-align: center;
}

.c-table-scroll-wrap {
  overflow-x: auto;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
.c-table-scroll-wrap table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

/* アウトキャンパス・スタディ 活動事例
  ----------------------------------------------------------------- */
:root {
  --activities-shadow: 0 2px 8px rgba(3, 33, 66, 0.08);
  --activities-color-bg: #F2F3F5;
  --activities-color-border: #D5DBE1;
  --activities-color-row-hover:#F0F6FF;
}

.c-activities-contents {
  margin-top: clamp(3.125rem, 2.9656862745rem + 0.6535947712vw, 3.75rem);
}
.c-activities-contents__heading {
  color: #032141;
  font-size: clamp(1.375rem, 1.3112745098rem + 0.2614379085vw, 1.625rem);
  line-height: 0.9846153846;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 13px;
}

.c-activities-table-wraper {
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.c-activities-table {
  border-collapse: collapse;
  width: 100%;
  color: #032141;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.6;
}
@media screen and (max-width: 1279px) {
  .c-activities-table {
    display: block;
  }
  .c-activities-table thead, .c-activities-table tbody, .c-activities-table tr, .c-activities-table th, .c-activities-table td {
    display: block;
  }
  .c-activities-table tr {
    box-shadow: var(--activities-shadow);
  }
}
@media screen and (max-width: 1279px) {
  .c-activities-table thead {
    display: none;
  }
}
.c-activities-table thead th {
  background: var(--activities-color-bg);
  font-weight: 500;
  text-align: left;
  padding: 14px 0.5rem;
  border-bottom: 1px solid var(--activities-color-border);
  white-space: nowrap; /* ヘッダーは折り返さない */
}
.c-activities-table {
  /* 各列幅を個別に指定 */
}
.c-activities-table th:nth-child(1),
.c-activities-table td:nth-child(1) {
  width: 14%;
  padding-left: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
@media screen and (max-width: 1279px) {
  .c-activities-table th:nth-child(1),
  .c-activities-table td:nth-child(1) {
    width: 100%;
  }
}
.c-activities-table th:nth-child(2),
.c-activities-table td:nth-child(2) {
  width: 10%;
  white-space: nowrap;
}
@media screen and (max-width: 1279px) {
  .c-activities-table th:nth-child(2),
  .c-activities-table td:nth-child(2) {
    width: 100%;
  }
}
.c-activities-table th:nth-child(3),
.c-activities-table td:nth-child(3) {
  width: 14%;
}
@media screen and (max-width: 1279px) {
  .c-activities-table th:nth-child(3),
  .c-activities-table td:nth-child(3) {
    width: 100%;
  }
}
.c-activities-table th:nth-child(4),
.c-activities-table td:nth-child(4) {
  width: 14%;
}
@media screen and (max-width: 1279px) {
  .c-activities-table th:nth-child(4),
  .c-activities-table td:nth-child(4) {
    width: 100%;
  }
}
.c-activities-table th:nth-child(5),
.c-activities-table td:nth-child(5) {
  width: 13%;
}
@media screen and (max-width: 1279px) {
  .c-activities-table th:nth-child(5),
  .c-activities-table td:nth-child(5) {
    width: 100%;
  }
}
.c-activities-table th:nth-child(6),
.c-activities-table td:nth-child(6) {
  width: 13%;
}
@media screen and (max-width: 1279px) {
  .c-activities-table th:nth-child(6),
  .c-activities-table td:nth-child(6) {
    width: 100%;
  }
}
.c-activities-table th:nth-child(7),
.c-activities-table td:nth-child(7) {
  width: auto;
  padding-right: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-activities-table {
  /* --- データ行 --- */
}
.c-activities-table tbody tr {
  border-bottom: 1px solid var(--activities-color-border);
  transition: background-color 0.15s ease;
}
@media screen and (max-width: 1279px) {
  .c-activities-table tbody tr {
    margin-block-end: 40px;
    border: 1px solid var(--activities-color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--activities-shadow);
    background: var(--color-white);
  }
}
@media screen and (min-width: 1280px) {
  .c-activities-table tbody tr:last-child {
    border-bottom: none;
    margin-block-end: 0;
  }
}
.c-activities-table tbody tr td {
  vertical-align: top;
  padding-block: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-inline: clamp(0.5rem, 0.4362745098rem + 0.2614379085vw, 0.75rem);
}
@media screen and (max-width: 1279px) {
  .c-activities-table tbody tr td {
    display: flex;
    gap: 8px;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--activities-color-border);
    font-size: 0.875rem;
  }
  .c-activities-table tbody tr td:first-child {
    background-color: var(--activities-color-bg);
    font-weight: 600;
  }
  .c-activities-table tbody tr td:first-child::before {
    display: none;
  }
  .c-activities-table tbody tr td:last-child {
    border-bottom: none;
  }
  .c-activities-table tbody tr td::before {
    content: attr(data-label); /* data-label の値を表示 */
    flex-shrink: 0; /* ラベルが縮まないように */
    width: 5.5em; /* ラベル幅を固定 */
    font-weight: 700;
    color: var(--color-main);
    font-size: 0.8rem;
  }
}
.c-activities-table tbody tr td a {
  color: #3993F6;
}
.c-activities-table tbody tr td a:hover {
  color: #0971E5;
  text-decoration: underline;
}

.c-activities-table-card {
  border-collapse: collapse;
  width: 100%;
  color: #032141;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.6;
  display: block;
}
.c-activities-table-card thead, .c-activities-table-card tbody, .c-activities-table-card tr, .c-activities-table-card th, .c-activities-table-card td {
  display: block;
}
.c-activities-table-card tr {
  box-shadow: var(--activities-shadow);
}
.c-activities-table-card thead {
  display: none;
}
.c-activities-table-card thead th {
  background: var(--activities-color-bg);
  font-weight: 500;
  text-align: left;
  padding: 14px 0.5rem;
  border-bottom: 1px solid var(--activities-color-border);
  white-space: nowrap; /* ヘッダーは折り返さない */
}
.c-activities-table-card {
  /* 各列幅を個別に指定 */
}
.c-activities-table-card th:nth-child(1),
.c-activities-table-card td:nth-child(1) {
  width: 100%;
  padding-left: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-activities-table-card th:nth-child(2),
.c-activities-table-card td:nth-child(2) {
  width: 100%;
  white-space: nowrap;
}
.c-activities-table-card th:nth-child(3),
.c-activities-table-card td:nth-child(3) {
  width: 100%;
}
.c-activities-table-card th:nth-child(4),
.c-activities-table-card td:nth-child(4) {
  width: 100%;
}
.c-activities-table-card th:nth-child(5),
.c-activities-table-card td:nth-child(5) {
  width: 100%;
}
.c-activities-table-card th:nth-child(6),
.c-activities-table-card td:nth-child(6) {
  width: 100%;
}
.c-activities-table-card th:nth-child(7),
.c-activities-table-card td:nth-child(7) {
  width: auto;
  padding-right: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-activities-table-card {
  /* --- データ行 --- */
}
.c-activities-table-card tbody {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2%;
}
.c-activities-table-card tbody tr {
  width: 32%;
  border-bottom: 1px solid var(--activities-color-border);
  transition: background-color 0.15s ease;
  margin-block-end: 40px;
  border: 1px solid var(--activities-color-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--activities-shadow);
  background: var(--color-white);
}
@media screen and (max-width: 1279px) {
  .c-activities-table-card tbody tr {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .c-activities-table-card tbody tr {
    width: 100%;
  }
}
.c-activities-table-card tbody tr td {
  display: flex;
  gap: 8px;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--activities-color-border);
  font-size: 0.875rem;
}
.c-activities-table-card tbody tr td:first-child {
  background-color: var(--activities-color-bg);
  font-weight: 600;
}
.c-activities-table-card tbody tr td:first-child::before {
  display: none;
}
.c-activities-table-card tbody tr td:last-child {
  border-bottom: none;
}
.c-activities-table-card tbody tr td::before {
  content: attr(data-label); /* data-label の値を表示 */
  flex-shrink: 0; /* ラベルが縮まないように */
  width: 5.5em; /* ラベル幅を固定 */
  font-weight: 700;
  color: var(--color-main);
  font-size: 0.8rem;
}
.c-activities-table-card tbody tr td a {
  color: #3993F6;
}
.c-activities-table-card tbody tr td a:hover {
  color: #0971E5;
  text-decoration: underline;
}

.c-activities-table-multi-line {
  border-collapse: collapse;
  width: 100%;
  color: #032141;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.6;
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line {
    display: block;
  }
  .c-activities-table-multi-line thead, .c-activities-table-multi-line tbody, .c-activities-table-multi-line tr, .c-activities-table-multi-line th, .c-activities-table-multi-line td {
    display: block;
  }
}
.c-activities-table-multi-line__row--lower {
  border-bottom: 1px solid var(--activities-color-border);
}
.c-activities-table-multi-line__row--lower td {
  position: relative;
}
.c-activities-table-multi-line__row--lower td::after {
  position: absolute;
  top: 0;
  left: 20px;
  display: block;
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  background: linear-gradient(to right, var(--activities-color-border), var(--activities-color-border) 50%, #fff 50%) repeat-x;
  background-size: 2px 1px;
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line thead {
    display: none;
  }
}
.c-activities-table-multi-line thead th {
  background: var(--activities-color-bg);
  font-weight: 500;
  text-align: left;
  padding: 14px 0.5rem;
  border-bottom: 1px solid var(--activities-color-border);
  white-space: nowrap; /* ヘッダーは折り返さない */
}
.c-activities-table-multi-line {
  /* 各列幅を個別に指定 */
}
.c-activities-table-multi-line th:nth-child(1),
.c-activities-table-multi-line td:nth-child(1) {
  width: 14%;
  padding-left: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line th:nth-child(1),
  .c-activities-table-multi-line td:nth-child(1) {
    width: 100%;
  }
}
.c-activities-table-multi-line th:nth-child(2),
.c-activities-table-multi-line td:nth-child(2) {
  width: 10%;
  white-space: nowrap;
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line th:nth-child(2),
  .c-activities-table-multi-line td:nth-child(2) {
    width: 100%;
  }
}
.c-activities-table-multi-line th:nth-child(3),
.c-activities-table-multi-line td:nth-child(3) {
  width: 14%;
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line th:nth-child(3),
  .c-activities-table-multi-line td:nth-child(3) {
    width: 100%;
  }
}
.c-activities-table-multi-line th:nth-child(4),
.c-activities-table-multi-line td:nth-child(4) {
  width: 14%;
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line th:nth-child(4),
  .c-activities-table-multi-line td:nth-child(4) {
    width: 100%;
  }
}
.c-activities-table-multi-line th:nth-child(5),
.c-activities-table-multi-line td:nth-child(5) {
  width: 13%;
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line th:nth-child(5),
  .c-activities-table-multi-line td:nth-child(5) {
    width: 100%;
  }
}
.c-activities-table-multi-line th:nth-child(6),
.c-activities-table-multi-line td:nth-child(6) {
  width: 13%;
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line th:nth-child(6),
  .c-activities-table-multi-line td:nth-child(6) {
    width: 100%;
  }
}
.c-activities-table-multi-line th:nth-child(7),
.c-activities-table-multi-line td:nth-child(7) {
  width: auto;
  padding-right: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-activities-table-multi-line {
  /* --- データ行 --- */
}
.c-activities-table-multi-line tbody tr {
  transition: background-color 0.15s ease;
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line tbody tr.c-activities-table-multi-line__row--upper {
    overflow: hidden;
    border-top: 1px solid var(--activities-color-border);
    border-left: 1px solid var(--activities-color-border);
    border-right: 1px solid var(--activities-color-border);
    border-radius: 8px 8px 0 0;
  }
  .c-activities-table-multi-line tbody tr.c-activities-table-multi-line__row--lower {
    overflow: hidden;
    margin-block-end: 24px;
    border-top: 1px solid var(--activities-color-border);
    border-left: 1px solid var(--activities-color-border);
    border-right: 1px solid var(--activities-color-border);
    border-radius: 0 0 8px 8px;
  }
  .c-activities-table-multi-line tbody tr.c-activities-table-multi-line__row--lower td:first-child {
    font-weight: 400;
    background-color: var(--color-white);
  }
  .c-activities-table-multi-line tbody tr.c-activities-table-multi-line__row--lower td:first-child::before {
    display: block;
    content: attr(data-label); /* data-label の値を表示 */
    flex-shrink: 0; /* ラベルが縮まないように */
    width: 5.5em; /* ラベル幅を固定 */
    font-weight: 700;
    color: var(--color-main);
    font-size: 0.8rem;
  }
  .c-activities-table-multi-line tbody tr.c-activities-table-multi-line__row--lower td:first-child::after {
    content: none;
  }
}
@media screen and (min-width: 1280px) {
  .c-activities-table-multi-line tbody tr:last-child {
    border-bottom: none;
    margin-block-end: 0;
  }
}
.c-activities-table-multi-line tbody tr td {
  vertical-align: top;
  padding-block: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-inline: clamp(0.5rem, 0.4362745098rem + 0.2614379085vw, 0.75rem);
}
@media screen and (max-width: 1279px) {
  .c-activities-table-multi-line tbody tr td {
    display: flex;
    gap: 8px;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--activities-color-border);
    font-size: 0.875rem;
  }
  .c-activities-table-multi-line tbody tr td:first-child {
    background-color: var(--activities-color-bg);
    font-weight: 600;
  }
  .c-activities-table-multi-line tbody tr td:first-child::before {
    display: none;
  }
  .c-activities-table-multi-line tbody tr td:last-child {
    border-bottom: none;
  }
  .c-activities-table-multi-line tbody tr td::before {
    content: attr(data-label); /* data-label の値を表示 */
    flex-shrink: 0; /* ラベルが縮まないように */
    width: 5.5em; /* ラベル幅を固定 */
    font-weight: 700;
    color: var(--color-main);
    font-size: 0.8rem;
  }
}
.c-activities-table-multi-line tbody tr td a {
  color: #3993F6;
}
.c-activities-table-multi-line tbody tr td a:hover {
  color: #0971E5;
  text-decoration: underline;
}

/* お問い合わせボックス
  ----------------------------------------------------------------- */
.c-contact-box-wrap {
  margin-top: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  margin-inline: auto;
}
.c-contact-box {
  border: 2px solid #0971E5;
  background-color: #E8F1FB;
  border-radius: 8px;
  padding-block: clamp(1.25rem, 0.8039215686rem + 1.8300653595vw, 3rem);
  padding-inline: clamp(1.25rem, 0.612745098rem + 2.614379085vw, 3.75rem);
  width: min(880px, 100%);
}
.c-contact-box__heading01 {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  border-left: 0;
}
.c-contact-box__heading02 {
  margin-top: clamp(0rem, -0.8284313725rem + 3.3986928105vw, 3.25rem);
}
.c-contact-box__heading02:before {
  width: 14px;
  aspect-ratio: 1/1;
  height: auto;
}
.c-contact-box__border-block + .c-contact-box__heading02 {
  margin-top: clamp(1rem, 0.4264705882rem + 2.3529411765vw, 3.25rem);
}
.c-contact-box__lead-text {
  margin-top: clamp(0rem, -0.8284313725rem + 3.3986928105vw, 3.25rem);
}
.c-contact-box__lead-text + .c-contact-box__heading02 {
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.c-contact-box__address {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  margin-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-contact-box__text {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  font-weight: 600;
  line-height: 2;
}
.c-contact-box__border-block {
  border: 1px solid #D5DBE1;
  padding-block: clamp(0.875rem, 0.7156862745rem + 0.6535947712vw, 1.5rem);
  padding-inline: clamp(1.375rem, 1.2156862745rem + 0.6535947712vw, 2rem);
  margin-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-contact-box__border-block > .c-note {
  margin-top: 0;
}
.c-contact-box__tel-wrap {
  margin-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-contact-box__tel-wrap-inner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
}
.c-contact-box__tel-wrap-inner + .c-contact-box__tel-wrap-inner {
  margin-top: clamp(0rem, -0.1593137255rem + 0.6535947712vw, 0.625rem);
}
.c-contact-box__button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.c-contact-box.--center {
  margin-inline: auto;
}

.c-contact-box-tel {
  display: flex;
  align-items: center;
}
.c-contact-box-tel__text {
  line-height: 1.4222222222;
  font-size: clamp(0.9375rem, 0.8897058824rem + 0.1960784314vw, 1.125rem);
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-weight: 300;
  padding-right: 4px;
  padding-bottom: 6px;
  margin-top: auto;
}
.c-contact-box-tel__num {
  font-size: clamp(2.3125rem, 2.2647058824rem + 0.1960784314vw, 2.5rem);
  line-height: 1.2;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.c-contact-box-tel__icon {
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 1;
  font-weight: 400;
  background-color: #fff;
  border-radius: 21px;
  padding: 2px 16px 3px;
  margin-left: 8px;
}

.c-contact-box-button {
  background-color: #0971E5;
}
@media (any-hover: hover) {
  .c-contact-box-button:hover {
    background-color: #3993F6;
  }
}
.c-contact-box-button:focus-visible {
  background-color: #3993F6;
}
.c-contact-box-button.--pdf::after {
  background: url(../img/common/icon_pdf-white.svg);
}
.c-contact-box-button.--red {
  background-color: #CE4747;
}
@media (any-hover: hover) {
  .c-contact-box-button.--red:hover {
    background-color: #df6b6b;
  }
}
.c-contact-box-button.--red:focus-visible {
  background-color: #df6b6b;
}

/* タブ
  ----------------------------------------------------------------- */
.c-tab-nav {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(306px, 1fr));
  gap: 10px;
}
@media screen and (max-width: 1022px) {
  .c-tab-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-tab-nav__items {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom: 3px solid #0971E5;
  overflow: hidden;
  display: flex;
}
.c-tab-nav__items.is-active .c-tab-nav__link {
  color: #fff;
  background-color: #0971E5;
  pointer-events: none;
  cursor: default;
}
.c-tab-nav__link {
  color: #032141;
  background-color: #F1F4F8;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  flex: 1;
  padding: clamp(0.9375rem, 0.8578431373rem + 0.3267973856vw, 1.25rem);
  width: 100%;
}
.c-tab-nav__link:hover {
  color: #fff;
  background-color: #0971E5;
}
.c-tab-nav__link:focus-visible {
  outline: 3px solid #0971E5;
  outline-offset: 2px;
}

/* 教員リスト
  ----------------------------------------------------------------- */
.c-teacher-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.c-teacher-list__item {
  display: flex;
  gap: 20px;
  width: calc((100% - 48px) / 3);
  padding-block: clamp(1.25rem, 1.1384803922rem + 0.4575163399vw, 1.6875rem);
  padding-inline: clamp(0.8125rem, 0.7009803922rem + 0.4575163399vw, 1.25rem);
  border: 1px solid #D5DBE1;
}
.c-teacher-list__img {
  width: 29.0909090909%;
  text-align: center;
}
.c-teacher-list__body {
  position: relative;
  width: 64.8484848485%;
}
.c-teacher-list__name {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: clamp(1.125rem, 0rem + 2.34375vw, 1.5rem);
}
.c-teacher-list__info-label {
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.683531746rem + 0.5291005291vw, 0.9375rem);
}
.c-teacher-list__info-text {
  font-size: clamp(0.8125rem, 0.683531746rem + 0.5291005291vw, 0.9375rem);
}
.c-teacher-list__button {
  position: relative;
  display: block;
  margin-left: auto;
  margin-bottom: -5px;
  font-size: clamp(0.8125rem, 0.619047619rem + 0.7936507937vw, 1rem);
  width: fit-content;
  text-align: right;
  padding-right: 54px;
}
.c-teacher-list__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-44%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media screen and (max-width: 1022px) {
  .c-teacher-list__button::before {
    right: 26px;
    width: 4px;
    height: 4px;
  }
}
.c-teacher-list__button::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-44%);
  width: 49px;
  height: 20px;
  transition: 0.4s;
  -webkit-mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  background-color: #E8F1FB;
}
@media screen and (max-width: 1022px) {
  .c-teacher-list__button::after {
    right: 10px;
    width: 38px;
  }
}
@media (any-hover: hover) {
  .c-teacher-list__button:hover::before {
    transform: translateY(-50%) translateX(14px) rotate(45deg);
  }
}
@media screen and (any-hover: hover) and (max-width: 1022px) {
  .c-teacher-list__button:hover::before {
    transform: translateY(-50%) translateX(8px) rotate(45deg);
  }
}
@media (any-hover: hover) {
  .c-teacher-list__button:hover::after {
    -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
    mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
    background-color: #E8F1FB;
  }
}
.c-teacher-list__button:focus-visible::before {
  transform: translateY(-50%) translateX(14px) rotate(45deg);
}
@media screen and (max-width: 1022px) {
  .c-teacher-list__button:focus-visible::before {
    transform: translateY(-50%) translateX(8px) rotate(45deg);
  }
}
.c-teacher-list__button:focus-visible::after {
  -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  background-color: #E8F1FB;
}
@media screen and (max-width: 1022px) {
  .c-teacher-list__item {
    width: calc((100% - 24px) / 2);
    padding: max(10px, 2.63671875vw);
  }
}
@media screen and (max-width: 575px) {
  .c-teacher-list__item {
    width: 100%;
  }
}

/* ニュース一覧 リスト型
  ----------------------------------------------------------------- */
.c-news-list {
  max-width: 1200px;
  color: #032141;
}
.c-news-list__item {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D5DBE1;
  padding-block: clamp(1rem, 1rem + 0vw, 1rem);
  padding-right: clamp(3.75rem, 3.2083333333rem + 2.2222222222vw, 5.875rem);
  padding-left: clamp(0.625rem, 0.131127451rem + 2.0261437908vw, 2.5625rem);
}
.c-news-list__item:last-child {
  border-bottom: none;
}
.c-news-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 42px;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media screen and (max-width: 1022px) {
  .c-news-list__item::before {
    right: 26px;
    width: 4px;
    height: 4px;
  }
}
.c-news-list__item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 49px;
  height: 20px;
  transition: 0.4s;
  -webkit-mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  background-color: #E8F1FB;
}
@media screen and (max-width: 1022px) {
  .c-news-list__item::after {
    right: 10px;
    width: 38px;
  }
}
@media (any-hover: hover) {
  .c-news-list__item:hover::before {
    transform: translateY(-50%) translateX(14px) rotate(45deg);
  }
}
@media screen and (any-hover: hover) and (max-width: 1022px) {
  .c-news-list__item:hover::before {
    transform: translateY(-50%) translateX(8px) rotate(45deg);
  }
}
@media (any-hover: hover) {
  .c-news-list__item:hover::after {
    -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
    mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
    background-color: #E8F1FB;
  }
}
.c-news-list__item:focus-visible::before {
  transform: translateY(-50%) translateX(14px) rotate(45deg);
}
@media screen and (max-width: 1022px) {
  .c-news-list__item:focus-visible::before {
    transform: translateY(-50%) translateX(8px) rotate(45deg);
  }
}
.c-news-list__item:focus-visible::after {
  -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  background-color: #E8F1FB;
}
.c-news-list__date {
  flex-shrink: 0;
  text-align: center;
  min-width: 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.c-news-list__date-ym {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}
.c-news-list__date-y {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}
.c-news-list__date-d {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.2105263158;
  letter-spacing: -0.01em;
}
.c-news-list__date-md {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.c-news-list__contents {
  padding-left: clamp(0.6875rem, 0.2414215686rem + 1.8300653595vw, 2.4375rem);
  flex: 1;
  min-width: 0;
}
.c-news-list__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.c-news-list__categories + .c-news-list__title {
  margin-top: 10px;
}
.c-news-list__categories-link {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid #0971E5;
  border-radius: 22px;
  background-color: #fff;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1;
  padding-block: 2px;
  padding-inline: 18px;
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .c-news-list__categories-link:hover {
    background-color: #F2F3F5;
  }
}
.c-news-list__categories-link:focus-visible {
  background-color: #F2F3F5;
}
.c-news-list__categories-link.--dept01 {
  border: 1px solid #757CBB;
}
.c-news-list__categories-link.--dept02 {
  border: 1px solid #409AD6;
}
.c-news-list__categories-link.--dept03 {
  border: 1px solid #ABCD03;
}
.c-news-list__categories-link.--dept04 {
  border: 1px solid #49BCBD;
}
.c-news-list__categories-link.--dept05 {
  border: 1px solid #EA9E00;
}
.c-news-list__categories-link.--dept06 {
  border: 1px solid #5B8BC9;
}
.c-news-list__categories-link.--dept07 {
  border: 1px solid #7AC560;
}
.c-news-list__categories-link.--dept08 {
  border: 1px solid #CE4747;
}
.c-news-list__categories-link.--dept09 {
  border: 1px solid #AA5E9C;
}
.c-news-list__categories-link.--dept10 {
  border: 1px solid #69716D;
}
.c-news-list__categories-link.--dept11 {
  border: 1px solid #12BB4F;
}
.c-news-list__title {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  line-height: 1.6;
}
.c-news-list__link {
  color: #032141;
}
.c-news-list__link::before {
  position: absolute;
  display: block;
  content: "";
  inset: 0;
}

/* ニュース一覧 カード型
  ----------------------------------------------------------------- */
.c-news-card-nav {
  background-color: #F2F3F5;
  border-radius: 29px;
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding-block: clamp(0.5rem, 0.3884803922rem + 0.4575163399vw, 0.9375rem);
  padding-inline: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
}
@media screen and (max-width: 767px) {
  .c-news-card-nav {
    justify-content: center;
  }
}
.c-news-card-nav__link {
  display: block;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 22px;
  color: #032141;
  transition: 0.3s;
  padding-block: 4px;
  padding-inline: clamp(1rem, 0.7928921569rem + 0.8496732026vw, 1.8125rem);
  line-height: 1.4;
  font-size: 0.875rem;
  min-width: 100px;
}
@media (any-hover: hover) {
  .c-news-card-nav__link:hover {
    color: #fff;
    background-color: #032141;
  }
}
.c-news-card-nav__link:focus-visible {
  color: #fff;
  background-color: #032141;
}
.c-news-card-nav__link.is-active {
  color: #fff;
  background-color: #032141;
}

.c-news-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(326px, 1fr));
  gap: 32px 20px;
  margin-top: clamp(2.75rem, 2.431372549rem + 1.3071895425vw, 4rem);
}

@media (min-width: 1486px) {
  .c-news-card-list:has(.c-news-card.--featured) {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 32px;
  }
  .c-news-card.--featured {
    grid-column: 1/3;
    grid-row: 1/3;
    /* 2枚目 */
  }
  .c-news-card.--featured + .c-news-card {
    grid-column: 3/4;
    grid-row: 1/2;
    /* 3枚目 */
  }
  .c-news-card.--featured + .c-news-card + .c-news-card {
    grid-column: 4/5;
    grid-row: 1/2;
  }
  .c-news-card.--featured {
    /* 4枚目 */
  }
  .c-news-card.--featured + .c-news-card + .c-news-card + .c-news-card {
    grid-column: 3/4;
    grid-row: 2/3;
  }
  .c-news-card.--featured {
    /* 5枚目 */
  }
  .c-news-card.--featured + .c-news-card + .c-news-card + .c-news-card + .c-news-card {
    grid-column: 4/5;
    grid-row: 2/3;
  }
  .c-news-card.--featured {
    /* 6枚目以降は上側に余白を確保 */
  }
  .c-news-card.--featured ~ .c-news-card:nth-child(n+6) {
    margin-top: 28px;
  }
}
.c-news-card {
  display: block;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}
.c-news-card:hover > .c-news-card__thumb img {
  opacity: 0.6;
  scale: 1.05;
}
.c-news-card__date {
  background-color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  padding: 10px 16px 14px 16px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.c-news-card__date-ym {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}
.c-news-card__date-y {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}
.c-news-card__date-d {
  display: block;
  font-weight: 500;
  font-size: 2.375rem;
  line-height: 0.8;
  letter-spacing: -0.01em;
}
.c-news-card__date-md {
  display: block;
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 0.8;
  letter-spacing: -0.01em;
}
.c-news-card__thumb {
  border-radius: 0px 8px 8px 8px;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  margin-bottom: clamp(0.625rem, 0.5931372549rem + 0.1307189542vw, 0.75rem);
}
.c-news-card__thumb img {
  object-fit: cover;
  object-position: center;
  transition: scale 0.3s;
  width: 100%;
  height: 100%;
}
.c-news-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 14px;
  margin-top: clamp(0.625rem, 0.5612745098rem + 0.2614379085vw, 0.875rem);
}
.c-news-card__categories-link {
  position: relative;
  display: block;
  text-align: center;
  border: 2px solid #0971E5;
  border-radius: 22px;
  background-color: #fff;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1;
  padding-block: 2px;
  padding-inline: 18px;
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  line-height: 1.4;
}
@media (any-hover: hover) {
  .c-news-card__categories-link:hover {
    background-color: #F2F3F5;
  }
}
.c-news-card__categories-link:focus-visible {
  background-color: #F2F3F5;
}
.c-news-card__categories-link.--dept01 {
  border: 2px solid #757CBB;
}
.c-news-card__categories-link.--dept02 {
  border: 2px solid #409AD6;
}
.c-news-card__categories-link.--dept03 {
  border: 2px solid #ABCD03;
}
.c-news-card__categories-link.--dept04 {
  border: 2px solid #49BCBD;
}
.c-news-card__categories-link.--dept05 {
  border: 2px solid #EA9E00;
}
.c-news-card__categories-link.--dept06 {
  border: 2px solid #5B8BC9;
}
.c-news-card__categories-link.--dept07 {
  border: 2px solid #7AC560;
}
.c-news-card__categories-link.--dept08 {
  border: 2px solid #CE4747;
}
.c-news-card__categories-link.--dept09 {
  border: 2px solid #AA5E9C;
}
.c-news-card__categories-link.--dept10 {
  border: 2px solid #69716D;
}
.c-news-card__categories-link.--dept11 {
  border: 2px solid #12BB4F;
}
.c-news-card__title {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  line-height: 1.6;
  margin-top: 12px;
}
.c-news-card__link {
  color: #032141;
}
.c-news-card__link::before {
  position: absolute;
  display: block;
  content: "";
  inset: 0;
}

/* ニュース一覧 リスト スマホ時スライド
  ----------------------------------------------------------------- */
.c-news-block-heading {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1022px) {
  .c-news-block-heading {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (max-width: 575px) {
  .c-news-block-heading__button-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .c-news-block-heading__button-wrap > .c-button-primary {
    min-width: 190px;
  }
}

.c-news-block-wrap {
  padding-left: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
  width: 100%;
}
@media screen and (max-width: 1022px) {
  .c-news-block-wrap {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-news-block-wrap .c-news-list__item {
    border-top: 1px solid #D5DBE1;
  }
}
.c-news-block-wrap .c-news-list__item:first-child {
  border-top: 1px solid #D5DBE1;
}
.c-news-block-wrap .c-news-list__item:last-child {
  border-bottom: 1px solid #D5DBE1;
}

.c-news-block-list-slider {
  visibility: visible !important;
}
@media screen and (min-width: 768px) {
  .c-news-block-list-slider .splide__track {
    overflow: visible !important;
  }
  .c-news-block-list-slider .splide__list {
    display: block !important;
    transform: none !important;
  }
  .c-news-block-list-slider .splide__slide {
    width: 100% !important;
  }
  .c-news-block-list-slider .splide__pagination {
    display: none !important;
  }
}

.c-news-list-slider .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.splide__pagination {
  bottom: -24px;
}

.splide__pagination__page {
  width: 6px;
  height: 6px;
}

.splide__pagination__page.is-active {
  width: 6px;
  height: 6px;
  background: #12BB4F;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  transform: scale(1);
}

/* 入学予定者向けニュース
  ----------------------------------------------------------------- */
:root {
  --news-entrance-col01: #D5DBE1;
}

.c-news-entrance-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  gap: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
@media screen and (max-width: 1022px) {
  .c-news-entrance-wrap {
    grid-template-columns: 1fr;
  }
}
.c-news-entrance {
  border: 1px solid var(--news-entrance-col01);
  border-radius: 4px;
  background-color: #fff;
  color: #032141;
  padding-top: clamp(0.625rem, 0.4019607843rem + 0.9150326797vw, 1.5rem);
  padding-bottom: clamp(1.375rem, 1.1519607843rem + 0.9150326797vw, 2.25rem);
  padding-inline: clamp(1.75rem, 1.5588235294rem + 0.7843137255vw, 2.5rem);
  border-left: 6px solid #0971E5;
}
.c-news-entrance__head {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 10px;
  padding-top: 12px;
  padding-bottom: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  border-bottom: 1px solid var(--news-entrance-col01);
}
.c-news-entrance__head::before {
  content: "";
  width: clamp(0.375rem, 0.3309859155rem + 0.1877934272vw, 0.5rem);
  height: clamp(0.375rem, 0.3309859155rem + 0.1877934272vw, 0.5rem);
  border-radius: 50%;
  background-color: #12BB4F;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.c-news-entrance__title {
  font-size: clamp(1.25rem, 1.1544117647rem + 0.3921568627vw, 1.625rem);
  line-height: 1;
  color: #032141;
  font-weight: 600;
  margin-top: 0;
}
.c-news-entrance__body {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 1022px) {
  .c-news-entrance__body {
    gap: 16px;
  }
}
.c-news-entrance__more {
  display: inline-block;
  font-size: clamp(0.8125rem, 0.8125rem + 0vw, 0.8125rem);
  line-height: 1.0769230769;
  color: #0971E5;
  text-decoration: none;
  border: 1px solid var(--news-entrance-col01);
  padding: 6px 22px;
  border-radius: 22px;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .c-news-entrance__more:hover {
    background-color: #0971E5;
    color: #fff;
  }
}
.c-news-entrance__more:focus-visible {
  background-color: #0971E5;
  color: #fff;
}
.c-news-entrance .c-news-list__item {
  padding-inline: 10px;
  padding-bottom: 0;
  padding-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-news-entrance .c-news-list__item::before {
  top: 58%;
  transform: translateY(-60%) rotate(45deg);
}
.c-news-entrance .c-news-list__item::after {
  top: 60%;
  transform: translateY(-60%);
}
@media (any-hover: hover) {
  .c-news-entrance .c-news-list__item:hover::before {
    transform: translateY(-50%) translateX(14px) rotate(45deg);
  }
}
@media screen and (any-hover: hover) and (max-width: 1022px) {
  .c-news-entrance .c-news-list__item:hover::before {
    transform: translateY(-50%) translateX(8px) rotate(45deg);
  }
}
@media (any-hover: hover) {
  .c-news-entrance .c-news-list__item:hover::after {
    -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
    mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
    background-color: #E8F1FB;
  }
}
.c-news-entrance .c-news-list__item:focus-visible::before {
  transform: translateY(-50%) translateX(14px) rotate(45deg);
}
@media screen and (max-width: 1022px) {
  .c-news-entrance .c-news-list__item:focus-visible::before {
    transform: translateY(-50%) translateX(8px) rotate(45deg);
  }
}
.c-news-entrance .c-news-list__item:focus-visible::after {
  -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  background-color: #E8F1FB;
}
.c-news-entrance .c-news-list__contents {
  padding-left: clamp(0.6875rem, 0.5281862745rem + 0.6535947712vw, 1.3125rem);
  padding-right: 72px;
}
.c-news-entrance .c-news-list__title {
  margin-top: 6px;
}
.c-news-entrance.--business {
  border-left: 6px solid #757CBB;
}
.c-news-entrance.--business .c-news-entrance__head::before {
  background-color: #757CBB;
}
.c-news-entrance.--human {
  border-left: 6px solid #7AC560;
}
.c-news-entrance.--human .c-news-entrance__head::before {
  background-color: #7AC560;
}
.c-news-entrance.--education {
  border-left: 6px solid #EA9E00;
}
.c-news-entrance.--education .c-news-entrance__head::before {
  background-color: #EA9E00;
}
.c-news-entrance.--junior {
  border-left: 6px solid #AA5E9C;
}
.c-news-entrance.--junior .c-news-entrance__head::before {
  background-color: #AA5E9C;
}

/* ページネーション
  ----------------------------------------------------------------- */
.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.c-pagination__numbers {
  background-color: #fff;
  border: 1px solid #D5DBE1;
  border-radius: 3px;
  color: #032141;
  display: grid;
  place-items: center;
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
  width: 34px;
  height: 34px;
}
@media (any-hover: hover) {
  .c-pagination__numbers:hover {
    color: #fff;
    background-color: #032141;
  }
}
.c-pagination__numbers:focus-visible {
  color: #fff;
  background-color: #032141;
}
.c-pagination__numbers.--current {
  color: #fff;
  background-color: #032141;
}
.c-pagination__numbers--prev, .c-pagination__numbers--next {
  border: none;
}
.c-pagination__numbers--prev::before, .c-pagination__numbers--next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media (any-hover: hover) {
  .c-pagination__numbers--prev:hover, .c-pagination__numbers--next:hover {
    background-color: #fff;
  }
  .c-pagination__numbers--prev:hover::before, .c-pagination__numbers--next:hover::before {
    border-top: 1px solid #0971E5;
    border-right: 1px solid #0971E5;
  }
}
.c-pagination__numbers--prev:focus-visible, .c-pagination__numbers--next:focus-visible {
  background-color: #fff;
}
.c-pagination__numbers--prev:focus-visible::before, .c-pagination__numbers--next:focus-visible::before {
  border-top: 1px solid #0971E5;
  border-right: 1px solid #0971E5;
}
.c-pagination__numbers--prev::before {
  transform: translate(0, -50%) rotate(-135deg);
}
.c-pagination__numbers--next::before {
  transform: translate(0, -50%) rotate(45deg);
}
.c-pagination__numbers--start, .c-pagination__numbers--end {
  border: none;
}
.c-pagination__numbers--start::before, .c-pagination__numbers--start::after, .c-pagination__numbers--end::before, .c-pagination__numbers--end::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: border-color 0.3s;
  z-index: 1;
}
@media (any-hover: hover) {
  .c-pagination__numbers--start:hover, .c-pagination__numbers--end:hover {
    background-color: #fff;
  }
  .c-pagination__numbers--start:hover::before, .c-pagination__numbers--start:hover::after, .c-pagination__numbers--end:hover::before, .c-pagination__numbers--end:hover::after {
    border-top: 1px solid #0971E5;
    border-right: 1px solid #0971E5;
  }
}
.c-pagination__numbers--start:focus-visible, .c-pagination__numbers--end:focus-visible {
  background-color: #fff;
}
.c-pagination__numbers--start:focus-visible::before, .c-pagination__numbers--start:focus-visible::after, .c-pagination__numbers--end:focus-visible::before, .c-pagination__numbers--end:focus-visible::after {
  border-top: 1px solid #0971E5;
  border-right: 1px solid #0971E5;
}
.c-pagination__numbers--start::before {
  right: calc(50% - 7px);
}
.c-pagination__numbers--start::after {
  right: calc(50% - 3px);
}
.c-pagination__numbers--start::before {
  transform: translate(0, -50%) rotate(-135deg);
}
.c-pagination__numbers--start::after {
  transform: translate(0, -50%) rotate(-135deg);
}
.c-pagination__numbers--end::before {
  left: calc(50% - 7px);
}
.c-pagination__numbers--end::after {
  left: calc(50% - 3px);
}
.c-pagination__numbers--end::before {
  transform: translate(0, -50%) rotate(45deg);
}
.c-pagination__numbers--end::after {
  transform: translate(0, -50%) rotate(45deg);
}

/* 年度ナビゲーション
  ----------------------------------------------------------------- */
.c-year-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 25px;
  margin-block: 60px;
  border-top: 1px solid #D5DBE1;
  border-bottom: 1px solid #D5DBE1;
}
.c-year-nav__link {
  display: block;
  width: 118px;
  padding: 2px 10px;
  color: #032141;
  text-align: center;
  text-decoration: none;
  line-height: 1.8285714286;
  border: 1px solid #D5DBE1;
  border-radius: 15px;
  transition: 0.3s color, 0.3s background-color;
  font-size: 0.875rem;
}
@media (any-hover: hover) {
  .c-year-nav__link:hover {
    background-color: #032141;
    color: #FFF;
  }
}
.c-year-nav__link--active {
  background-color: #032141;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .c-year-nav {
    gap: 1.3037809648vw;
    margin-block: 7.8226857888vw;
    padding-block: 3.259452412vw;
  }
  .c-year-nav__link {
    width: 80px;
    font-size: 0.8125rem;
  }
}

/* 認証評価
  ----------------------------------------------------------------- */
.c-accreditation-wrap {
  margin-top: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
}
.c-accreditation {
  border: 1px solid #D5DBE1;
  display: flex;
  gap: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  padding-block: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  padding-inline: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .c-accreditation {
    flex-direction: column;
    align-items: center;
  }
}
.c-accreditation__figure {
  width: min(372px, 100%);
  padding-block: clamp(1.25rem, 0.8835784314rem + 1.5032679739vw, 2.6875rem);
  padding-inline: clamp(1.25rem, 0.756127451rem + 2.0261437908vw, 3.1875rem);
}
.c-accreditation__contents {
  color: #032141;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
}
.c-accreditation__box + .c-accreditation__box {
  margin-top: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
}
.c-accreditation__button-wrap {
  margin-top: 8px;
}
.c-accreditation.--white {
  background-color: #fff;
}

/* 情報公表
  ----------------------------------------------------------------- */
:root {
  --information-content-bg: #FAFAFC;
  --information-colour-hover: rgb(241, 244, 248);
  --information-border: rgb(213, 219, 225);
  --information-border02: rgb(213, 219, 225, 0.4);
}

.c-information-wrap {
  margin-top: clamp(2.75rem, 2.431372549rem + 1.3071895425vw, 4rem);
}
.c-information {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 2fr));
  gap: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
}
.c-information__link {
  position: relative;
  display: block;
  font-size: clamp(0.9375rem, 0.8578431373rem + 0.3267973856vw, 1.25rem);
  line-height: 1.6;
  padding-block: clamp(1.25rem, 1.0428921569rem + 0.8496732026vw, 2.0625rem);
  padding-right: clamp(1.875rem, 1.6519607843rem + 0.9150326797vw, 2.75rem);
  padding-left: clamp(1rem, 0.8088235294rem + 0.7843137255vw, 1.75rem);
  border-radius: 4px;
  border: solid 1px #D5DBE1;
  border-left: solid 2px #0971E5;
  background-color: #fff;
  transition: 0.3s;
}
.c-information__link::before {
  content: "";
  position: absolute;
  right: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media (any-hover: hover) {
  .c-information__link:hover {
    background-color: #F2F3F5;
  }
  .c-information__link:hover::before {
    transform: translateY(-50%) translateX(4px) rotate(45deg);
  }
}
.c-information__link:focus-visible {
  background-color: #F2F3F5;
}
.c-information__link:focus-visible::before {
  transform: translateY(-50%) translateX(4px) rotate(45deg);
}

.c-information-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.6176470588rem + 1.568627451vw, 2.5rem);
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .c-information-container {
    grid-template-columns: 1fr;
  }
}

.c-information-contents {
  background-color: var(--information-content-bg);
  min-width: 0;
  padding-inline: clamp(1.5rem, 1.4044117647rem + 0.3921568627vw, 1.875rem);
  padding-top: clamp(0.5rem, 0.4681372549rem + 0.1307189542vw, 0.625rem);
  padding-bottom: clamp(2.25rem, 2.1862745098rem + 0.2614379085vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .c-information-contents {
    width: 100%;
  }
}
.c-information-contents__title {
  position: relative;
  color: #032141;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  line-height: 1.5;
  font-weight: 400;
  padding-left: 30px;
  padding-block: clamp(0.625rem, 0.4338235294rem + 0.7843137255vw, 1.375rem);
  border-bottom: solid 1px var(--information-border);
}
.c-information-contents__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: #12BB4F;
}
.c-information-contents__title--sub {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
}

.c-information-block__link {
  position: relative;
  display: block;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  padding-block: clamp(0.375rem, 0.3112745098rem + 0.2614379085vw, 0.625rem);
  padding-left: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-right: clamp(2.6875rem, 2.6875rem + 0vw, 2.6875rem);
  border-bottom: solid 1px var(--information-border02);
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
}
.c-information-block__link::after {
  content: "";
  position: absolute;
  right: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media (any-hover: hover) {
  .c-information-block__link:hover {
    background-color: var(--information-colour-hover);
  }
  .c-information-block__link:hover::after {
    transform: translateY(-50%) translateX(4px) rotate(45deg);
  }
}
.c-information-block__link:focus-visible {
  background-color: var(--information-colour-hover);
}
.c-information-block__link:focus-visible::after {
  transform: translateY(-50%) translateX(4px) rotate(45deg);
}
.c-information-block__link.--pdf::after {
  content: "";
  display: block;
  margin: auto;
  width: 20px;
  height: 20px;
  border: none;
  background: url(../img/common/icon_pdf.svg);
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-information-block__link.--pdf::after {
    width: 14px;
    height: 14px;
  }
}
@media (any-hover: hover) {
  .c-information-block__link.--pdf:hover::after {
    transform: translateY(-50%);
  }
}
.c-information-block__link.--pdf:focus-visible::after {
  transform: translateY(-50%);
}

.c-information-block-list__title {
  position: relative;
  display: block;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 1.6;
  padding-block: clamp(0.375rem, 0.3112745098rem + 0.2614379085vw, 0.625rem);
  padding-left: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-right: clamp(2.6875rem, 2.6875rem + 0vw, 2.6875rem);
  border-bottom: solid 1px var(--information-border02);
}
.c-information-block-list__link {
  position: relative;
  display: block;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 1.6;
  padding-block: clamp(0.375rem, 0.3112745098rem + 0.2614379085vw, 0.625rem);
  padding-left: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-right: clamp(2.6875rem, 2.6875rem + 0vw, 2.6875rem);
  border-bottom: solid 1px var(--information-border02);
}
.c-information-block-list__link::after {
  content: "";
  position: absolute;
  right: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media (any-hover: hover) {
  .c-information-block-list__link:hover {
    background-color: var(--information-colour-hover);
  }
  .c-information-block-list__link:hover::after {
    transform: translateY(-50%) translateX(4px) rotate(45deg);
  }
}
.c-information-block-list__link:focus-visible {
  background-color: var(--information-colour-hover);
}
.c-information-block-list__link:focus-visible::after {
  transform: translateY(-50%) translateX(4px) rotate(45deg);
}
.c-information-block-list__link.--pdf::after {
  content: "";
  display: block;
  margin: auto;
  width: 20px;
  height: 20px;
  border: none;
  background: url(../img/common/icon_pdf.svg);
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-information-block-list__link.--pdf::after {
    width: 14px;
    height: 14px;
  }
}
@media (any-hover: hover) {
  .c-information-block-list__link.--pdf:hover::after {
    transform: translateY(-50%);
  }
}
.c-information-block-list__link.--pdf:focus-visible::after {
  transform: translateY(-50%);
}
.c-information-block-list.--l-space .c-information-block-list__link {
  padding-left: clamp(1.875rem, 1.556372549rem + 1.3071895425vw, 3.125rem);
}

.c-information-block-accordion {
  padding-left: clamp(1rem, 0.4583333333rem + 2.2222222222vw, 3.125rem);
}
.c-information-block-accordion__button {
  position: relative;
  display: block;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  text-align: left;
  line-height: 1.6;
  width: 100%;
  border-bottom: solid 1px var(--information-border02);
  padding-block: clamp(0.375rem, 0.3112745098rem + 0.2614379085vw, 0.625rem);
  padding-left: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-right: clamp(2.6875rem, 2.6875rem + 0vw, 2.6875rem);
}
.c-information-block-accordion__button::before, .c-information-block-accordion__button::after {
  content: "";
  background-color: #032141;
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  width: 9px;
  height: 1px;
}
.c-information-block-accordion__button::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.c-information-block-accordion__button:hover {
  background-color: var(--information-colour-hover);
}
.c-information-block-accordion__button.--btn-active {
  background-color: #E7E8EB;
}
.c-information-block-accordion__button.--btn-active::after {
  transform: rotate(0deg);
}
.c-information-block-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.c-information-block-accordion__content.--content-open {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}
.c-information-block-accordion__content-inner {
  overflow: hidden;
}
.c-information-block-accordion.--l-space-0 {
  padding-left: 0;
}

.c-information-block-modal__item {
  border-bottom: solid 1px var(--information-border02);
}
.c-information-block-modal__title {
  position: relative;
  display: block;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 1.6;
  padding-block: clamp(0.375rem, 0.3112745098rem + 0.2614379085vw, 0.625rem);
  padding-left: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-right: clamp(2.6875rem, 2.6875rem + 0vw, 2.6875rem);
  border-bottom: solid 1px var(--information-border02);
}
.c-information-block-modal__link {
  position: relative;
  display: block;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 1.6;
  padding-block: clamp(0.375rem, 0.3112745098rem + 0.2614379085vw, 0.625rem);
  padding-left: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  padding-right: clamp(2.6875rem, 2.6875rem + 0vw, 2.6875rem);
  border-bottom: solid 1px var(--information-border02);
}
.c-information-block-modal__link::after {
  content: "";
  position: absolute;
  right: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media (any-hover: hover) {
  .c-information-block-modal__link:hover {
    background-color: var(--information-colour-hover);
  }
  .c-information-block-modal__link:hover::after {
    transform: translateY(-50%) translateX(4px) rotate(45deg);
  }
}
.c-information-block-modal__link:focus-visible {
  background-color: var(--information-colour-hover);
}
.c-information-block-modal__link:focus-visible::after {
  transform: translateY(-50%) translateX(4px) rotate(45deg);
}

.c-information-block-modal-list__item {
  border-bottom: solid 1px var(--information-border02);
}
.c-information-block-modal-list__button {
  position: relative;
  display: block;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 1.6;
  padding-block: clamp(0.375rem, 0.3112745098rem + 0.2614379085vw, 0.625rem);
  padding-left: clamp(1.875rem, 1.556372549rem + 1.3071895425vw, 3.125rem);
  padding-right: clamp(2.6875rem, 2.6875rem + 0vw, 2.6875rem);
  border-bottom: solid 1px var(--information-border02);
  width: 100%;
  text-align: left;
}
.c-information-block-modal-list__button::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_graph.svg);
  background-size: contain;
  transform: translateY(-50%);
  transition: transform 0.3s;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-information-block-modal-list__button::after {
    width: 14px;
    height: 14px;
  }
}
@media (any-hover: hover) {
  .c-information-block-modal-list__button:hover {
    background-color: var(--information-colour-hover);
  }
}
.c-information-block-modal-list__button:focus-visible {
  background-color: var(--information-colour-hover);
}
.c-information-block-modal-list__link {
  position: relative;
  display: block;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 1.6;
  padding-block: clamp(0.625rem, 0.4975490196rem + 0.522875817vw, 1.125rem);
  padding-left: clamp(1.875rem, 1.556372549rem + 1.3071895425vw, 3.125rem);
  padding-right: clamp(2.6875rem, 2.6875rem + 0vw, 2.6875rem);
  border-bottom: solid 1px var(--information-border02);
}
.c-information-block-modal-list__link::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_graph.svg);
  background-size: contain;
  transform: translateY(-50%);
  transition: transform 0.3s;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-information-block-modal-list__link::after {
    width: 14px;
    height: 14px;
  }
}
@media (any-hover: hover) {
  .c-information-block-modal-list__link:hover {
    background-color: var(--information-colour-hover);
  }
}
.c-information-block-modal-list__link:focus-visible {
  background-color: var(--information-colour-hover);
}

/****** Base for remodal*****/
.remodal-overlay {
  background: rgba(0, 0, 0, 0.75) !important;
}

.remodal {
  font-size: 1.5rem;
  line-height: 2.33;
  padding: 0px !important;
  text-align: left;
  max-width: 1060px !important;
  -webkit-transform: none !important;
  transform: none !important;
}

.remodal #page {
  padding: 50px;
}

@media screen and (max-width: 900px) {
  .remodal #page {
    padding: 30px;
  }
}
@media screen and (max-width: 600px) {
  .remodal {
    font-size: 1.4rem;
    line-height: 1.857;
  }
  .remodal #page {
    padding: 25px;
  }
}
.remodal .icon-close {
  width: 50px;
  height: 50px;
  border: 0px;
  position: fixed;
  right: 10px !important;
  top: 10px !important;
  border-radius: 0;
  cursor: pointer;
  display: none;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 600px) {
  .remodal .icon-close {
    width: 40px;
    height: 40px;
  }
}
.remodal .icon-close:before,
.remodal .icon-close:after {
  content: "";
  display: block;
  background: #ffffff;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 0.4s ease;
}

.remodal .icon-close:before {
  transform: rotate(45deg);
}

.remodal .icon-close:after {
  transform: rotate(-45deg);
}

.remodal .modal-header {
  padding: 30px;
  border-bottom: 1px solid #eff0f2;
}

.remodal .modal-footer {
  padding: 30px;
  border-top: 1px solid #eff0f2;
}

.remodal .modal-body {
  padding: 30px;
}

@media screen and (max-width: 600px) {
  .remodal .modal-header,
  .remodal .modal-body,
  .remodal .modal-footer {
    padding: 15px;
  }
}
/****** specified for modal*****/
.remodal .modal-body .boxWrapModal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.remodal .modal-body .imgWrap {
  width: 40%;
}

@media screen and (max-width: 900px) {
  .remodal .modal-body .imgWrap {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}
.remodal .modal-body .imgWrap img {
  max-width: 100%;
}

@media screen and (max-width: 900px) {
  .remodal .modal-body .imgWrap img {
    width: 100%;
  }
}
.remodal .modal-body .contentWrap {
  width: calc(60% - 15px);
}

@media screen and (max-width: 900px) {
  .remodal .modal-body .contentWrap {
    width: 100%;
  }
}
.c-information-button-wrap a {
  min-width: 320px;
}

/* 施設設備
  ----------------------------------------------------------------- */
.c-facility {
  width: 100%;
}
.c-facility-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  gap: 20px;
  margin-inline: -10px;
  margin-top: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
@media screen and (max-width: 575px) {
  .c-facility-wrap {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
.c-facility__figure {
  width: 100%;
}
.c-facility__figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.c-facility__text {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
}

/* 就職
  ----------------------------------------------------------------- */
:root {
  --employment-colour-01: #FAFAFC;
  --content-inner01: 1920px;
  --content-inner02: 1520px;
  --content-inner03: 1200px;
  --content-inner04: 1364px;
}

.c-employment-list {
  color: #032141;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(293px, 1fr));
  gap: 10px 9px;
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.c-employment-list__item {
  background-color: var(--employment-colour-01);
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  padding: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
  border-left: 1px solid #D6DBE0;
}

:root {
  --form-color-emphasis: #CE4747;
  --form-bg: #FAFAFC;
  --form-border: #D2D7E6;
  --form-input: #E6E9ED;
  --form-w-sm: 400px;
  --form-w-base: 560px;
  --form-w-zip-code: 238px;
  --form-w-time: 130px;
}

/* フォーム
  ----------------------------------------------------------------- */
.c-form-body {
  color: #032141;
  background-color: var(--form-bg);
  padding-block: clamp(1rem, 0.2990196078rem + 2.8758169935vw, 3.75rem);
  padding-inline: clamp(1.5rem, 0.5759803922rem + 3.7908496732vw, 5.125rem);
  margin-top: clamp(2rem, 1.681372549rem + 1.3071895425vw, 3.25rem);
}
.c-form-body__text {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
}
.c-form-body__text > .c-form-required {
  margin-right: 0.5em;
}
.c-form-body__confirm {
  color: #fff;
  background-color: #032141;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  line-height: 1.5555555556;
  font-weight: 600;
  text-align: center;
  padding: 11px 24px;
  border-radius: 40px;
  margin-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-form-body__error {
  position: relative;
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
  color: var(--form-color-emphasis);
  margin-bottom: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
}
.c-form-body__error::after {
  display: inline-block;
  content: "";
  width: 25px;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-color: var(--form-color-emphasis);
}

.c-form-title {
  color: #032141;
  font-size: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  line-height: 1.5;
  font-weight: 600;
  border-left: 3px solid #0971E5;
  padding: 5px 0px 9px 33px;
}
.c-form-title__sub .c-form-title__sub {
  font-size: clamp(1.125rem, 1.0612745098rem + 0.2614379085vw, 1.375rem);
  line-height: 1.6;
}

.c-form-required {
  display: inline-block;
  color: #fff;
  background-color: var(--form-color-emphasis);
  font-weight: 700;
  border-radius: 12px;
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  line-height: 1.4285714286;
  padding-block: clamp(0.125rem, 0.125rem + 0vw, 0.125rem);
  padding-inline: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
}

.c-form {
  margin-top: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
}
.c-form__submit-wrapper {
  margin-top: clamp(1.875rem, 1.7156862745rem + 0.6535947712vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.c-form-contents {
  border-top: solid 1px var(--form-border);
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.c-form-contents input[type=text],
.c-form-contents input[type=email],
.c-form-contents input[type=tel],
.c-form-contents textarea {
  display: block;
  background-color: var(--form-input);
  border: 1px solid var(--form-input);
  border-radius: 4px;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  color: #032141;
  padding: 10px 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.c-form-contents input[type=text]:focus,
.c-form-contents input[type=email]:focus,
.c-form-contents input[type=tel]:focus,
.c-form-contents textarea:focus {
  outline: none;
  border-color: #0971E5;
  box-shadow: 0 0 0 3px rgba(9, 113, 229, 0.15);
}
.c-form-contents input[type=text][aria-invalid=true],
.c-form-contents input[type=email][aria-invalid=true],
.c-form-contents input[type=tel][aria-invalid=true],
.c-form-contents textarea[aria-invalid=true] {
  border-color: var(--form-color-emphasis);
}
.c-form-contents textarea {
  min-height: 15em;
}
.c-form-contents select {
  display: block;
  width: 100%;
  background-color: var(--form-input);
  border: 1px solid var(--form-input);
  border-radius: 4px;
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  color: #032141;
  padding: 10px 12px 10px 24px;
  transition: border-color 0.2s ease;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 36px;
}
.c-form-contents select:focus {
  outline: none;
  border-color: #0971E5;
  box-shadow: 0 0 0 3px rgba(9, 113, 229, 0.15);
}
.c-form-contents + .c-form-contents {
  border-top: none;
}
.c-form-contents__heading {
  position: relative;
  color: #032141;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  padding-left: 30px;
  margin-top: 24px;
  margin-top: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  margin-bottom: clamp(1rem, 0.7769607843rem + 0.9150326797vw, 1.875rem);
}
.c-form-contents__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: #12BB4F;
}
.c-form-contents__heading + .c-form-contents__item {
  border-top: solid 1px var(--form-border);
}
.c-form-contents__item {
  border-bottom: solid 1px var(--form-border);
  padding-block: clamp(1rem, 0.7769607843rem + 0.9150326797vw, 1.875rem);
  padding-inline: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1022px) {
  .c-form-contents__item {
    flex-direction: column;
  }
}
.c-form-contents__title {
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  line-height: 1.5555555556;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 26%;
  min-width: 220px;
}
.c-form-contents__title-sub {
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.5555555556;
  font-weight: 600;
}
.c-form-contents__body {
  width: 74%;
  width: calc(74% - 16px);
}
@media screen and (max-width: 1022px) {
  .c-form-contents__body {
    width: 100%;
  }
}
.c-form-contents__body > .error {
  font-weight: bold;
  color: #ff0000;
  position: relative;
  margin-top: clamp(0.25rem, 0.2181372549rem + 0.1307189542vw, 0.375rem);
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 1.6;
  font-weight: 600;
}
.c-form-contents__input-field {
  --_input-field-width: var(--form-w-base);
  width: min(var(--_input-field-width), 100%);
}
.c-form-contents__input-field.--w-sm {
  --_input-field-width: var(--form-w-sm);
}
.c-form-contents__input-field.--w-zip-code {
  --_input-field-width: var(--form-w-zip-code);
}
.c-form-contents__input-field.--w-time {
  --_input-field-width: var(--form-w-time);
}
.c-form-contents__input-field.--fluid {
  width: 100%;
}
.c-form-contents__input-field.--email-confirm {
  margin-top: 16px;
}
.c-form-contents__example {
  display: block;
  color: #69716D;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.5;
  margin-block: 2px;
}
.c-form-contents__description {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  margin-bottom: clamp(0.5rem, 0.4362745098rem + 0.2614379085vw, 0.75rem);
  color: #032141;
}
.c-form-contents__note {
  font-size: clamp(0.8125rem, 0.7806372549rem + 0.1307189542vw, 0.9375rem);
  color: var(--form-color-emphasis);
  margin-bottom: clamp(0.5rem, 0.4362745098rem + 0.2614379085vw, 0.75rem);
}

.c-form-check-group {
  border: none;
  padding-block: 1em;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 50px;
}
.c-form-check-group__item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.c-form-check-group__input {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: var(--form-input);
  border: 1px solid var(--form-border);
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-form-check-group__input[type=radio] {
  border-radius: 50%;
  width: 13px;
  height: 13px;
}
.c-form-check-group__input[type=radio]:checked {
  background-color: #0971E5;
  border-color: #0971E5;
}
.c-form-check-group__input[type=radio]:checked::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-form-check-group__input[type=checkbox] {
  border-radius: 3px;
}
.c-form-check-group__input[type=checkbox]:checked {
  background-color: #0971E5;
  border-color: #0971E5;
}
.c-form-check-group__input[type=checkbox]:checked::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 3px;
  left: 7px;
  transform: rotate(45deg);
}
.c-form-check-group__input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(9, 113, 229, 0.15);
}
.c-form-check-group__label {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
}

.c-form-telday {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-form-telday select {
  width: var(--form-w-time);
}
.c-form-telday__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.c-form-telday__row > .error {
  font-weight: bold;
  color: #ff0000;
  position: relative;
  margin-top: clamp(0.25rem, 0.2181372549rem + 0.1307189542vw, 0.375rem);
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 1.6;
  font-weight: 600;
}
.c-form-telday__label {
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 10px;
  min-width: 5em;
}
.c-form-telday__selects {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.c-form-telday__select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-form-telday__select-label {
  font-size: clamp(0.8125rem, 0.7806372549rem + 0.1307189542vw, 0.9375rem);
  white-space: nowrap;
}

.c-form-button {
  position: relative;
  display: block;
  color: #fff;
  background-color: #12BB4F;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.6;
  font-weight: 400;
  min-width: 220px;
  padding: 15px 20px;
  padding: 16px 96px 16px 20px;
  text-align: center;
  width: fit-content;
  transition: 0.3s;
  border: none;
}
@media screen and (max-width: 1022px) {
  .c-form-button {
    min-width: 100%;
  }
}
.c-form-button::before {
  content: "";
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
.c-form-button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 49px;
  height: 20px;
  -webkit-mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  background-color: #fff;
  transition: 0.4s;
}
.c-form-button:hover {
  background-color: #18f76a;
}
.c-form-button:hover::before {
  transform: translateY(-50%) translateX(14px) rotate(45deg);
}
.c-form-button:hover::after {
  -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  background-color: #fff;
}
.c-form-button.--send {
  min-width: 260px;
}
@media screen and (max-width: 1022px) {
  .c-form-button.--send {
    min-width: 100%;
  }
}
.c-form-button.--back {
  background-color: #fff;
  color: #032141;
  border: solid 1px #D5DBE1;
}
.c-form-button.--back::after {
  background-color: #E8F1FB;
}

.c-form-thanks {
  color: #032141;
  background-color: var(--form-bg);
  padding-block: clamp(1rem, 0.2990196078rem + 2.8758169935vw, 3.75rem);
  padding-inline: clamp(1.5rem, 0.5759803922rem + 3.7908496732vw, 5.125rem);
  margin-top: clamp(2rem, 1.681372549rem + 1.3071895425vw, 3.25rem);
}
.c-form-thanks__inner {
  border: solid 1px var(--form-border);
  padding: clamp(2rem, 1.8725490196rem + 0.522875817vw, 2.5rem);
}
.c-form-thanks__text {
  text-align: center;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 2;
  font-weight: 500;
}

.c-form-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-form-address__zip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-form-address__zip-mark {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
}
.c-form-address__pref {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-form-address__pref-label {
  font-size: clamp(0.8125rem, 0.7806372549rem + 0.1307189542vw, 0.9375rem);
  white-space: nowrap;
}
.c-form-address__street {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-form-address__street-label {
  font-size: clamp(0.8125rem, 0.7806372549rem + 0.1307189542vw, 0.9375rem);
}
.c-form-address__zip-btn {
  color: #0971E5;
  background-color: #fff;
  border: solid 1px #D5DBE1;
  border-radius: 50px;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 0.8235294118;
  height: fit-content;
  padding-block: 10px;
  padding-inline: 24px;
  transition: 0.3s;
}
.c-form-address__zip-btn:hover {
  color: #fff;
  background-color: #0971E5;
}

/* 表とかスクロール
  ----------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .c-scroll-wrapper > * {
    min-width: 700px;
  }
  .c-scroll-wrapper {
    overflow-x: scroll;
    padding-bottom: 10px;
  }
}

/* 広報誌
  ----------------------------------------------------------------- */
.c-booklet-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 60px;
}
@media screen and (max-width: 1022px) {
  .c-booklet-wrap {
    display: block;
  }
}
.c-booklet {
  display: block;
  border-top: 1px solid #D5DBE1;
  padding-block: clamp(1.5rem, 1.0185185185rem + 1.975308642vw, 2.5rem);
  transition: 0.3s;
}
.c-booklet:hover .c-booklet__button {
  background-color: #3993F6;
  color: #fff;
}
.c-booklet:hover .c-booklet__text {
  text-decoration: underline;
}
.c-booklet__contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 4.2031523643%;
  row-gap: 18px;
}
@media screen and (max-width: 767px) {
  .c-booklet__contents {
    flex-direction: column;
    align-items: center;
  }
}
.c-booklet__figure {
  width: 42.0315236427%;
  flex-shrink: 0;
}
@media screen and (max-width: 1022px) {
  .c-booklet__figure {
    max-width: 240px;
    width: 100%;
  }
}
.c-booklet__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #D5DBE1;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 240/340;
}
.c-booklet__textarea {
  width: 53.765323993%;
  color: #032141;
}
@media screen and (max-width: 1022px) {
  .c-booklet__textarea {
    width: 100%;
  }
}
.c-booklet__button {
  position: relative;
  margin-top: 10px;
  color: #0971E5;
  background-color: #fff;
  border: 1px solid #D5DBE1;
  border-radius: 22px;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 1.2;
  padding: 9px 18px 10px 18px;
  width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 6px;
  transition: 0.3s;
  margin-inline: auto;
}
.c-booklet__button::after {
  content: "";
  display: block;
  margin: auto;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url(../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
}
.c-booklet__date {
  font-weight: 600;
  font-size: clamp(1.375rem, 1.3431372549rem + 0.1307189542vw, 1.5rem);
  text-align: center;
  line-height: 1.2083333333;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  margin-top: clamp(1rem, 0.7592592593rem + 0.987654321vw, 1.5rem);
}
.c-booklet__text {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: 10px;
}

/* 講座一覧
  ----------------------------------------------------------------- */
:root {
  --program-instructor-list-color-gray: #D5DBE1;
  --program-instructor-list-color-gray-light: rgba(213, 219, 225, 0.6);
  --program-instructor-color-bg: #FAFAFC;
}

.c-program-instructor-list-wrap {
  margin-top: clamp(2.5rem, 1.2962962963rem + 4.9382716049vw, 5rem);
}
.c-program-instructor-list {
  display: flex;
  border: solid 1px var(--program-instructor-list-color-gray);
  padding-block: clamp(1rem, 0.5787037037rem + 1.7283950617vw, 1.875rem);
  padding-inline: clamp(0.625rem, 0.3240740741rem + 1.2345679012vw, 1.25rem);
}
@media screen and (max-width: 1022px) {
  .c-program-instructor-list {
    flex-direction: column;
    gap: clamp(1rem, 0.4609004739rem + 2.2116903633vw, 1.875rem);
  }
}
.c-program-instructor-list + .c-program-instructor-list {
  margin-top: 20px;
}
.c-program-instructor-list__teacher, .c-program-instructor-list__program {
  width: 50%;
}
@media screen and (max-width: 1022px) {
  .c-program-instructor-list__teacher, .c-program-instructor-list__program {
    width: 100%;
  }
}
.c-program-instructor-list__teacher {
  padding-inline: clamp(0.625rem, 0.3240740741rem + 1.2345679012vw, 1.25rem);
}
.c-program-instructor-list__program {
  padding-inline: clamp(0.625rem, 0.3240740741rem + 1.2345679012vw, 1.25rem);
}
.c-program-instructor-list__consultation-topics {
  padding-inline: clamp(0.625rem, 0.3240740741rem + 1.2345679012vw, 1.25rem);
}

.c-program-instructor-link {
  display: block;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 575px) {
  .c-program-instructor-link {
    gap: 3.4722222222vw;
  }
}
.c-program-instructor-link__img {
  width: 180px;
  min-height: 200px;
}
.c-program-instructor-link__img img {
  max-width: 170px;
  width: 100%;
}
@media screen and (max-width: 575px) {
  .c-program-instructor-link__img {
    width: 31.25vw;
  }
}
.c-program-instructor-link__info {
  width: calc(100% - 200px);
  color: #032141;
  padding-block: clamp(1.25rem, 0.6481481481rem + 2.4691358025vw, 2.5rem);
  padding-right: clamp(0.625rem, 0.3240740741rem + 1.2345679012vw, 1.25rem);
}
@media screen and (max-width: 1022px) {
  .c-program-instructor-link__info {
    padding-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .c-program-instructor-link__info {
    width: calc(100% - 34.7222222222vw);
  }
}
.c-program-instructor-link__name {
  font-size: clamp(1.375rem, 1.3431372549rem + 0.1307189542vw, 1.5rem);
  line-height: 1.5;
  font-weight: 600;
}
.c-program-instructor-link__position {
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 1.7066666667;
  margin-top: 6px;
}
.c-program-instructor-link__position dd {
  margin-inline-start: 0;
}
.c-program-instructor-link__profile-link {
  position: relative;
  display: block;
  font-size: clamp(0.8125rem, 0.619047619rem + 0.7936507937vw, 1rem);
  line-height: 1.6;
  font-weight: 500;
  width: fit-content;
  text-align: right;
  padding-right: 54px;
  margin-top: clamp(1.5rem, 1.0185185185rem + 1.975308642vw, 2.5rem);
}
.c-program-instructor-link__profile-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-44%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media screen and (max-width: 1022px) {
  .c-program-instructor-link__profile-link::before {
    right: 26px;
    width: 4px;
    height: 4px;
  }
}
.c-program-instructor-link__profile-link::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-44%);
  width: 49px;
  height: 20px;
  transition: 0.4s;
  -webkit-mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  background-color: #E8F1FB;
}
@media screen and (max-width: 1022px) {
  .c-program-instructor-link__profile-link::after {
    right: 10px;
    width: 38px;
  }
}
@media (any-hover: hover) {
  .c-program-instructor-link__profile-link:hover::before {
    transform: translateY(-50%) translateX(14px) rotate(45deg);
  }
}
@media screen and (any-hover: hover) and (max-width: 1022px) {
  .c-program-instructor-link__profile-link:hover::before {
    transform: translateY(-50%) translateX(8px) rotate(45deg);
  }
}
@media (any-hover: hover) {
  .c-program-instructor-link__profile-link:hover::after {
    -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
    mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
    background-color: #E8F1FB;
  }
}
.c-program-instructor-link__profile-link:focus-visible::before {
  transform: translateY(-50%) translateX(14px) rotate(45deg);
}
@media screen and (max-width: 1022px) {
  .c-program-instructor-link__profile-link:focus-visible::before {
    transform: translateY(-50%) translateX(8px) rotate(45deg);
  }
}
.c-program-instructor-link__profile-link:focus-visible::after {
  -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  background-color: #E8F1FB;
}
.c-program-instructor-link:hover {
  background-color: var(--program-instructor-color-bg);
}

.c-course-accordion {
  border-top: solid 1px var(--program-instructor-list-color-gray-light);
}
.c-course-accordion__button {
  position: relative;
  display: block;
  text-align: left;
  font-weight: 600;
  font-size: clamp(1rem, 0.871031746rem + 0.5291005291vw, 1.125rem);
  line-height: 1.5555555556;
  padding-block: clamp(1rem, 0.8796296296rem + 0.4938271605vw, 1.25rem);
  padding-right: 40px;
  cursor: pointer;
  width: 100%;
}
.c-course-accordion__button span {
  padding-left: 50px;
  display: flex;
}
.c-course-accordion__button span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: #12BB4F;
  flex-shrink: 0;
}
.c-course-accordion__button::before, .c-course-accordion__button::after {
  content: "";
  background-color: #032141;
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  width: 9px;
  height: 1px;
}
.c-course-accordion__button::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.c-course-accordion__button.--btn-active::after {
  transform: rotate(0deg);
}
.c-course-accordion__panel {
  background-color: var(--program-instructor-color-bg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.c-course-accordion__panel.--panel-open {
  max-height: 2000px;
}
.c-course-accordion__panel-inner {
  padding: clamp(1rem, 0.8796296296rem + 0.4938271605vw, 1.25rem);
}
.c-course-accordion__panel-text {
  font-size: clamp(0.9375rem, 0.808531746rem + 0.5291005291vw, 1.0625rem);
  line-height: 2;
}

.c-consultation-topics {
  color: #032141;
}
.c-consultation-topics__title {
  position: relative;
  font-size: clamp(0.9375rem, 0.744047619rem + 0.7936507937vw, 1.125rem);
  line-height: 1.5555555556;
  padding-left: 30px;
}
.c-consultation-topics__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: #12BB4F;
}
.c-consultation-topics > .c-list01 li {
  padding-top: 2px;
  padding-bottom: 2px;
}
.c-consultation-topics > .c-list01 li::before {
  top: 15px;
}

/* 手続きの流れ
  ----------------------------------------------------------------- */
:root {
  --flow-box-border-gray: #D5DBE1;
  --flow-counseling-bg: #E8F1FB;
}

.c-flow-box {
  border: 1px solid var(--flow-box-border-gray);
  margin-top: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
  padding-inline: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
  padding-block: 16px;
}

.c-flow-box-list {
  counter-reset: flow-num;
}
.c-flow-box-list__item {
  color: #032141;
  border-bottom: solid 1px var(--flow-box-border-gray);
  padding-block: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
.c-flow-box-list__item:last-child {
  border-bottom: none;
}
.c-flow-box-list__item > .c-list01 li {
  padding-top: 2px;
  padding-bottom: 2px;
}
.c-flow-box-list__item > .c-list01 li::before {
  top: 15px;
}
.c-flow-box-list__title {
  position: relative;
  font-weight: 600;
  font-size: clamp(1.0625rem, 1.0324074074rem + 0.1234567901vw, 1.125rem);
  line-height: 1.5;
  padding-left: 2em;
}
.c-flow-box-list__title::before {
  content: counter(flow-num);
  counter-increment: flow-num;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background-color: #0971E5;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(0.8125rem, 0.7824074074rem + 0.1234567901vw, 0.875rem);
  line-height: 1.2142857143;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-flow-box-list__text {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(1rem, 1rem + 0vw, 1rem);
}

.c-counseling-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
}
@media screen and (max-width: 1022px) {
  .c-counseling-flow {
    flex-direction: column;
  }
}
.c-counseling-flow__item {
  display: flex;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 1022px) {
  .c-counseling-flow__item {
    flex-direction: column;
  }
}
.c-counseling-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask: url(../img/common/icon-flow-arrow.svg) no-repeat center/contain;
  mask: url(../img/common/icon-flow-arrow.svg) no-repeat center/contain;
  background-color: #0971E5;
  flex-shrink: 0;
  margin: 10px;
}
@media screen and (max-width: 1022px) {
  .c-counseling-flow__item:not(:last-child)::after {
    transform: rotate(90deg);
  }
}
.c-counseling-flow__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  background-color: var(--flow-counseling-bg);
  border-radius: 8px;
  min-height: 114px;
}
@media screen and (max-width: 1022px) {
  .c-counseling-flow__content {
    width: 100%;
    max-width: 420px;
  }
}
.c-counseling-flow__icon {
  width: 28px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}
.c-counseling-flow__textarea {
  display: flex;
  gap: 6px;
  padding: 30px;
}
.c-counseling-flow__textarea:before {
  content: "";
  display: block;
  margin: auto;
  width: 28px;
  min-width: 28px;
  height: 20px;
}
.c-counseling-flow__textarea.--01:before {
  width: 24px;
  min-width: 24px;
  background: url(../img/common/icon-flow-box01.svg) no-repeat;
}
.c-counseling-flow__textarea.--02:before {
  width: 28px;
  min-width: 28px;
  background: url(../img/common/icon-flow-box02.svg) no-repeat;
}
.c-counseling-flow__textarea.--03:before {
  width: 26px;
  min-width: 26px;
  background: url(../img/common/icon-flow-box03.svg) no-repeat;
}
.c-counseling-flow__text {
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  line-height: 1.5;
  text-align: center;
}
.c-counseling-flow__note {
  display: block;
  font-size: clamp(1rem, 1.0159313725rem + -0.0653594771vw, 0.9375rem);
  line-height: 2;
  text-align: center;
}

/* Google Map
  ----------------------------------------------------------------- */
.c-map-access__address {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
}
.c-map-access__googlemap {
  margin-top: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
}

.c-map-block__map {
  aspect-ratio: 1200/600;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
  project
========================================================================== */
/* パーツリスト
  ----------------------------------------------------------------- */
.p-parts-content {
  padding-block: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
  margin-top: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
}
.p-parts-content__inner {
  padding-inline: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
  margin-bottom: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  margin-inline: auto;
  width: min(var(--content-inner03), 100%);
}
@media screen and (max-width: 1022px) {
  .p-parts-content__inner {
    padding-inline: 16px;
    margin-bottom: 16px;
  }
}
.p-parts-content__inner.--width100 {
  width: 100%;
}
.p-parts-content.--bg02 {
  background-color: #F1F4F8;
}

.p-parts-bg01 {
  background-color: #eef7fd;
}

.p-parts-line01 {
  border: 2px dashed #91d1fc;
}

.p-parts-line02 {
  border: 2px dashed #fc91ee;
}

.p-professor-data {
  display: flex;
  justify-content: space-between;
  max-width: 480px;
  margin-inline: auto;
}
.p-professor-data__image {
  width: 26.0416666667%;
}
.p-professor-data__content {
  width: 67.7083333333%;
}
.p-professor-data__name {
  margin-bottom: 20px;
  padding: 12px 0px 14px 33px;
  border-left: 3px solid #0971E5;
  line-height: 1.2;
  font-size: 2.375rem;
}
.p-professor-data__kana {
  display: block;
  margin-top: 4px;
  font-size: 1.125rem;
}
.p-professor-data__jobtitle {
  display: flex;
  padding-block: 10px;
  border-top: 1px solid #D5DBE1;
  border-bottom: 1px solid #D5DBE1;
}
.p-professor-data__jobtitle dt {
  width: 90px;
  font-weight: 500;
  flex-shrink: 0;
}
.p-professor-data__jobtitle dt::after {
  content: "：";
}
.p-professor-data__department {
  padding-block: 10px;
  border-bottom: 1px solid #D5DBE1;
}
.p-professor-data__department dt {
  font-weight: 500;
}
.p-professor-data__department dt::after {
  content: "：";
}
.p-professor-data a {
  color: #0971E5;
}
@media (any-hover: hover) {
  .p-professor-data a:hover {
    color: #3993F6;
  }
}
@media screen and (max-width: 575px) {
  .p-professor-data {
    flex-direction: column;
    max-width: 350px;
  }
  .p-professor-data__image {
    width: 100%;
    max-width: 125px;
    margin-bottom: 30px;
    margin-inline: auto;
  }
  .p-professor-data__content {
    width: 100%;
  }
  .p-professor-data__name {
    font-size: 2rem;
  }
  .p-professor-data__kana {
    font-size: 1rem;
  }
}

:root {
  --eeducational-counseling-contact-color-emphasis: #CE4747;
}

/* 各種窓口 教師のための相談サポート お申し込みフォーム
  ----------------------------------------------------------------- */
.p-educational-counseling-contact-form-head {
  margin-top: clamp(2.625rem, 2.4656862745rem + 0.6535947712vw, 3.25rem);
}
.p-educational-counseling-contact-form-head__text {
  color: #032141;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(2rem, 1.681372549rem + 1.3071895425vw, 3.25rem);
}
.p-educational-counseling-contact-form-head__emphasis {
  color: var(--eeducational-counseling-contact-color-emphasis);
}

.p-educational-counseling-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}
.p-educational-counseling-list .c-program-instructor-list {
  flex-direction: column;
  row-gap: 20px;
  width: 48%;
  margin-top: 0;
}
.p-educational-counseling-list .c-program-instructor-list__teacher {
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .p-educational-counseling-list .c-program-instructor-link__img {
    width: 150px;
  }
  .p-educational-counseling-list .c-program-instructor-link__info {
    width: calc(100% - 170px);
  }
}
@media screen and (max-width: 1022px) {
  .p-educational-counseling-list .c-program-instructor-link__img {
    width: 100px;
    min-height: 150px;
  }
  .p-educational-counseling-list .c-program-instructor-link__info {
    width: calc(100% - 120px);
    padding-block: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-educational-counseling-list {
    row-gap: 20px;
  }
  .p-educational-counseling-list .c-program-instructor-list {
    width: 100%;
  }
}

.p-research-activities-intro {
  display: flex;
  column-gap: 4.3988269795%;
  margin-bottom: 80px;
}
.p-research-activities-intro__image {
  width: 26.3929618768%;
}
.p-research-activities-intro__content {
  width: 69.2082111437%;
}
@media screen and (max-width: 575px) {
  .p-research-activities-intro {
    flex-direction: column;
    row-gap: 40px;
  }
  .p-research-activities-intro__image, .p-research-activities-intro__content {
    width: 100%;
  }
}

.p-research-activities2-intro {
  display: flex;
  column-gap: 4.3988269795%;
  margin-bottom: 80px;
}
.p-research-activities2-intro__image {
  width: 36.6568914956%;
}
.p-research-activities2-intro__content {
  width: 57.4780058651%;
}
@media screen and (max-width: 575px) {
  .p-research-activities2-intro {
    flex-direction: column;
    row-gap: 40px;
  }
  .p-research-activities2-intro__image, .p-research-activities2-intro__content {
    width: 100%;
  }
}

.c-table02 .p-research-occasional-class-time {
  padding-inline: 15px;
}
.p-research-occasional-class-time .c-table03 {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-research-occasional-class-time .c-table03 th:first-child {
    width: 100px;
  }
  .p-research-occasional-class-time .c-table03 th, .p-research-occasional-class-time .c-table03 td {
    width: auto !important;
  }
}
@media screen and (max-width: 575px) {
  .p-research-occasional-class-time .c-table03 th:first-child {
    width: 40px;
    font-size: 0.75rem;
  }
  .p-research-occasional-class-time .c-table03 th, .p-research-occasional-class-time .c-table03 td {
    padding-inline: 2px;
  }
}

@media screen and (max-width: 767px) {
  .c-table04--research-auditing th, .c-table04--research-auditing td {
    padding: 5px;
  }
}
@media screen and (max-width: 575px) {
  .c-table04--research-auditing th:first-child, .c-table04--research-auditing td:first-child {
    width: 40px;
    font-size: 0.75rem;
  }
  .c-table04--research-auditing th, .c-table04--research-auditing td {
    padding: 4px 2px;
    font-size: 0.8125rem;
  }
}

/* アウトキャンパス・スタディ
  ----------------------------------------------------------------- */
.p-outcampus__voice .l-contents {
  padding-top: clamp(3.125rem, 2.806372549rem + 1.3071895425vw, 4.375rem);
  padding-bottom: clamp(4.75rem, 4.112745098rem + 2.614379085vw, 7.25rem);
}
.p-outcampus__case .l-contents {
  padding-top: clamp(6.25rem, 5.2941176471rem + 3.9215686275vw, 10rem);
  padding-bottom: clamp(4.75rem, 4.3676470588rem + 1.568627451vw, 6.25rem);
}

.p-outcampus-about__text {
  color: #032141;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.p-outcampus-about__figure {
  border: 1px solid #D5DBE1;
  border-radius: 8px;
  overflow: hidden;
  margin-top: clamp(1.875rem, 1.7156862745rem + 0.6535947712vw, 2.5rem);
  margin-bottom: clamp(3.75rem, 3.431372549rem + 1.3071895425vw, 5rem);
}

.p-outcampus-voice {
  width: 100%;
  overflow: hidden;
}
.p-outcampus-voice__block {
  margin-top: clamp(3rem, 2.681372549rem + 1.3071895425vw, 4.25rem);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  column-gap: 24px;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-outcampus-voice__block {
    display: block;
    column-gap: 0;
  }
}

.p-outcampus-voice-card {
  border-radius: 8px;
  color: #032141;
  background-color: #fff;
  padding-inline: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  padding-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  padding-bottom: clamp(2.375rem, 2.3112745098rem + 0.2614379085vw, 2.625rem);
  margin-bottom: 32px;
}
.p-outcampus-voice-card__figre img {
  width: 100%;
  height: auto;
}
.p-outcampus-voice-card__textarea {
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.p-outcampus-voice-card__title {
  font-weight: 600;
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  line-height: 1.28;
  margin-bottom: 8px;
}
.p-outcampus-voice-card__text {
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  line-height: 1.6;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-outcampus-voice-card {
    width: 100%;
  }
}

/* 産学官連携事業
  ----------------------------------------------------------------- */
:root {
  --collaboration-table-bg: #E5E7EA;
  --collaboration-table-line: #F1F4F8;
}

.p-collaboration-about__text {
  color: #032141;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(2rem, 1.7928921569rem + 0.8496732026vw, 2.8125rem);
}
.p-collaboration-about__figure {
  border-radius: 8px;
  overflow: hidden;
  margin-top: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  margin-bottom: clamp(3.75rem, 3.431372549rem + 1.3071895425vw, 5rem);
}

.p-collaboration-activitieslist__contents {
  margin-top: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
}

.p-collaboration-table .c-table-card thead th {
  padding: 20px 20px 19px 20px;
  background-color: var(--collaboration-table-bg);
  border-bottom: 1px solid var(--collaboration-table-line);
  border-left: 2px solid #fff;
  text-align: center;
}
.p-collaboration-table .c-table-card thead th:first-child {
  border-left: 0;
}
.p-collaboration-table .c-table-card tbody tr {
  border-bottom: 1px solid var(--activities-color-border);
}
.p-collaboration-table .c-table-card {
  /* 各列幅を個別に指定 */
}
.p-collaboration-table .c-table-card th:nth-child(1), .p-collaboration-table .c-table-card td:nth-child(1) {
  width: 21.67%;
}
.p-collaboration-table .c-table-card th:nth-child(2), .p-collaboration-table .c-table-card td:nth-child(2) {
  width: 10%;
}
.p-collaboration-table .c-table-card th:nth-child(3), .p-collaboration-table .c-table-card td:nth-child(3) {
  width: 10%;
}
.p-collaboration-table .c-table-card th:nth-child(4), .p-collaboration-table .c-table-card td:nth-child(4) {
  width: 10%;
}
.p-collaboration-table .c-table-card th:nth-child(5), .p-collaboration-table .c-table-card td:nth-child(5) {
  width: 21.67%;
}
.p-collaboration-table .c-table-card th:nth-child(6), .p-collaboration-table .c-table-card td:nth-child(6) {
  width: 13.33%;
}
.p-collaboration-table .c-table-card th:nth-child(7), .p-collaboration-table .c-table-card td:nth-child(7) {
  width: 13.33%;
}
@media screen and (max-width: 1279px) {
  .p-collaboration-table .c-table-card th:nth-child(1), .p-collaboration-table .c-table-card td:nth-child(1) {
    width: 100%;
  }
  .p-collaboration-table .c-table-card th:nth-child(2), .p-collaboration-table .c-table-card td:nth-child(2) {
    width: 100%;
  }
  .p-collaboration-table .c-table-card th:nth-child(3), .p-collaboration-table .c-table-card td:nth-child(3) {
    width: 100%;
  }
  .p-collaboration-table .c-table-card th:nth-child(4), .p-collaboration-table .c-table-card td:nth-child(4) {
    width: 100%;
  }
  .p-collaboration-table .c-table-card th:nth-child(5), .p-collaboration-table .c-table-card td:nth-child(5) {
    width: 100%;
  }
  .p-collaboration-table .c-table-card th:nth-child(6), .p-collaboration-table .c-table-card td:nth-child(6) {
    width: 100%;
  }
  .p-collaboration-table .c-table-card th:nth-child(7), .p-collaboration-table .c-table-card td:nth-child(7) {
    width: 100%;
  }
}

/* ニュース 記事詳細
  ----------------------------------------------------------------- */
:root {
  --news-w-article: 1200px;
  --news-w-article-body: 900px;
}

.p-news__inner {
  background-color: #F0F4F8;
  border-radius: 8px;
  background-image: url(../../resources/img/common/img-header02.webp);
  background-repeat: no-repeat;
  background-position: calc(100% + 30px) 10px;
  padding-bottom: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
}
@media screen and (max-width: 1022px) {
  .p-news__inner {
    background-size: auto 240px;
    background-position: right 100px;
  }
}
@media screen and (max-width: 575px) {
  .p-news__inner {
    background-image: none;
  }
}
.p-news .l-contents {
  padding-top: clamp(3.75rem, 3.112745098rem + 2.614379085vw, 6.25rem);
}

.p-news-heading {
  position: relative;
  padding-top: var(--header-height);
  margin-bottom: 20px;
}

.p-news-categories-wrap {
  padding-inline: clamp(1.25rem, 1.0906862745rem + 0.6535947712vw, 1.875rem);
}
.p-news-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  width: min(1370px, 100%);
  margin-inline: auto;
  margin-top: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
}
.p-news-categories__link {
  display: block;
  text-align: center;
  border: 1px solid #032141;
  border-radius: 22px;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1;
  padding-block: 2px;
  padding-inline: 18px;
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  line-height: 1.4;
}
@media (any-hover: hover) {
  .p-news-categories__link:hover {
    background-color: #fff;
  }
}
.p-news-categories__link:focus-visible {
  background-color: #fff;
}
.p-news-categories__link.--dept01 {
  border: 1px solid #757CBB;
}
.p-news-categories__link.--dept02 {
  border: 1px solid #409AD6;
}
.p-news-categories__link.--dept03 {
  border: 1px solid #ABCD03;
}
.p-news-categories__link.--dept04 {
  border: 1px solid #49BCBD;
}
.p-news-categories__link.--dept05 {
  border: 1px solid #EA9E00;
}
.p-news-categories__link.--dept06 {
  border: 1px solid #5B8BC9;
}
.p-news-categories__link.--dept07 {
  border: 1px solid #7AC560;
}
.p-news-categories__link.--dept08 {
  border: 1px solid #CE4747;
}
.p-news-categories__link.--dept09 {
  border: 1px solid #AA5E9C;
}
.p-news-categories__link.--dept10 {
  border: 1px solid #69716D;
}
.p-news-categories__link.--dept11 {
  border: 1px solid #12BB4F;
}

.p-news-article-wrap {
  padding-inline: clamp(1.25rem, 0.9490740741rem + 1.2345679012vw, 1.875rem);
  margin-top: clamp(2.5rem, 1.8981481481rem + 2.4691358025vw, 3.75rem);
}
.p-news-article {
  width: min(var(--news-w-article), 100%);
  color: #032141;
  background-color: #fff;
  margin-inline: auto;
}
.p-news-article__body {
  width: min(var(--news-w-article-body), 100%);
  margin-inline: auto;
  padding-inline: 50px;
  padding-block: clamp(1.25rem, -0.0245098039rem + 5.2287581699vw, 6.25rem);
}
@media screen and (max-width: 767px) {
  .p-news-article__body {
    padding-inline: 24px;
  }
}
.p-news-article .p-news-article-editor {
  text-align: right;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.8449074074rem + 0.1234567901vw, 0.9375rem);
  line-height: 2;
  margin-bottom: clamp(1.25rem, 0.6481481481rem + 2.4691358025vw, 2.5rem);
}
.p-news-article h2, .p-news-article h3, .p-news-article h4, .p-news-article h5, .p-news-article h6 {
  margin-top: clamp(1.25rem, 1.1296296296rem + 0.4938271605vw, 1.5rem);
}
.p-news-article h2:first-of-type {
  margin-top: 0;
}
.p-news-article h2 {
  color: #032141;
  font-size: clamp(1.5rem, 1.2592592593rem + 0.987654321vw, 2rem);
  line-height: 1.5;
  font-weight: 600;
  border-left: 3px solid #0971E5;
  padding-top: clamp(0.625rem, 0.5648148148rem + 0.2469135802vw, 0.75rem);
  padding-right: 0;
  padding-bottom: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  padding-left: clamp(1rem, 0.4884259259rem + 2.0987654321vw, 2.0625rem);
  margin-bottom: clamp(2.5rem, 2.0787037037rem + 1.7283950617vw, 3.375rem);
}
.p-news-article h3 {
  position: relative;
  color: #032141;
  font-size: clamp(1.125rem, 0.9444444444rem + 0.7407407407vw, 1.5rem);
  line-height: 1.5;
  font-weight: 600;
  padding-top: 14px;
  margin-top: 24px;
  margin-top: clamp(2.5rem, 2.0787037037rem + 1.7283950617vw, 3.375rem);
}
.p-news-article h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #D5DBE1;
}
.p-news-article h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background: #0971E5;
}
.p-news-article h4 {
  position: relative;
  color: #032141;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  padding-left: 30px;
  margin-top: 24px;
}
.p-news-article h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: #12BB4F;
}
.p-news-article h5 {
  color: #032141;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
}
.p-news-article h6 {
  color: #032141;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}
.p-news-article p:not(.c-heading-article-info__date-d):not(.c-heading-article-info__date-ym):not(.c-heading-article-info__date-y):not(.c-heading-article-info__date-md) {
  color: #032141;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  margin-top: clamp(1rem, 0.7592592593rem + 0.987654321vw, 1.5rem);
}
.p-news-article .c-heading-article {
  padding-inline: 0;
}
.p-news-article .c-heading-article-title__parent {
  margin-top: 0 !important;
}
.p-news-article .c-heading-article-title__base {
  font-size: clamp(1.75rem, 1.6225490196rem + 0.522875817vw, 2.25rem);
}
.p-news-article .photoBlock p {
  margin-top: clamp(1.5rem, 1.3194444444rem + 0.7407407407vw, 1.875rem);
}
.p-news-article .photoBlock p img {
  display: block;
  width: 100%;
  height: auto;
}
.p-news-article .photoBlock .capt p {
  color: #032141;
  font-size: 0.9375rem;
  line-height: 2;
  margin-top: clamp(0.125rem, 0.0648148148rem + 0.2469135802vw, 0.25rem);
}
.p-news-article .imgLeftBlock,
.p-news-article .imgRightBlock {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: clamp(1.25rem, 1.1296296296rem + 0.4938271605vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .p-news-article .imgLeftBlock,
  .p-news-article .imgRightBlock {
    flex-direction: column;
  }
}
.p-news-article .imgLeftBlock .photoarea,
.p-news-article .imgRightBlock .photoarea {
  flex-shrink: 0;
  width: 50%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-article .imgLeftBlock .photoarea,
  .p-news-article .imgRightBlock .photoarea {
    width: fit-content;
  }
}
.p-news-article .imgLeftBlock .photoarea .photo img,
.p-news-article .imgRightBlock .photoarea .photo img {
  display: block;
  width: 100%;
  height: auto;
}
.p-news-article .imgLeftBlock .photoarea .capt p,
.p-news-article .imgRightBlock .photoarea .capt p {
  text-align: center;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 2;
  margin-top: clamp(0.125rem, 0.0648148148rem + 0.2469135802vw, 0.25rem);
}
.p-news-article .imgLeftBlock .fTxtarea,
.p-news-article .imgRightBlock .fTxtarea {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-news-article .imgLeftBlock .fTxtarea,
  .p-news-article .imgRightBlock .fTxtarea {
    margin-top: clamp(1rem, 0.8796296296rem + 0.4938271605vw, 1.25rem);
  }
}
.p-news-article .imgLeftBlock .fTxtarea p,
.p-news-article .imgRightBlock .fTxtarea p {
  margin-top: 0;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
}
.p-news-article .imgLeftBlock .fTxtarea {
  padding-left: clamp(1.25rem, 0.9490740741rem + 1.2345679012vw, 1.875rem);
}
@media screen and (max-width: 767px) {
  .p-news-article .imgLeftBlock .fTxtarea {
    padding-left: 0;
  }
}
.p-news-article .imgRightBlock {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-news-article .imgRightBlock {
    flex-direction: column;
  }
}
.p-news-article .imgRightBlock .fTxtarea {
  padding-right: clamp(1.25rem, 0.9490740741rem + 1.2345679012vw, 1.875rem);
}
@media screen and (max-width: 767px) {
  .p-news-article .imgRightBlock .fTxtarea {
    padding-left: 0;
  }
}
.p-news-article .rowBlock {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: clamp(1.25rem, 1.1296296296rem + 0.4938271605vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .p-news-article .rowBlock {
    flex-direction: column;
  }
}
.p-news-article .rowBlock .rowBlockBox {
  flex-shrink: 0;
  width: 50%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-article .rowBlock .rowBlockBox {
    width: fit-content;
  }
}
.p-news-article .rowBlock .rowBlockBox:nth-child(odd) .photoarea {
  padding-right: clamp(0.625rem, 0.474537037rem + 0.6172839506vw, 0.9375rem);
}
@media screen and (max-width: 767px) {
  .p-news-article .rowBlock .rowBlockBox:nth-child(odd) .photoarea {
    padding-right: 0;
  }
}
.p-news-article .rowBlock .rowBlockBox:nth-child(even) .photoarea {
  padding-left: clamp(0.625rem, 0.474537037rem + 0.6172839506vw, 0.9375rem);
}
@media screen and (max-width: 767px) {
  .p-news-article .rowBlock .rowBlockBox:nth-child(even) .photoarea {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-news-article .rowBlock .rowBlockBox:not(:first-child) {
    margin-top: clamp(1.25rem, 1.1296296296rem + 0.4938271605vw, 1.5rem);
  }
}
.p-news-article .rowBlock .rowBlockBox .photoarea {
  margin-top: 0;
}
.p-news-article .rowBlock .rowBlockBox .photoarea img {
  display: block;
  width: 100%;
  height: auto;
}
.p-news-article .rowBlock .rowBlockBox .capt p {
  text-align: center;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 2;
  margin-top: clamp(0.125rem, 0.0648148148rem + 0.2469135802vw, 0.25rem);
}
.p-news-article .rowBlock .jointTxt {
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
}
.p-news-article .videoBlock {
  margin-top: clamp(1.25rem, 1.1296296296rem + 0.4938271605vw, 1.5rem);
}
.p-news-article .videoBlock .videoarea {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.p-news-article .videoBlock .videoarea iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-news-article .videoBlock .capt p {
  text-align: center;
  font-size: clamp(0.875rem, 0.8590686275rem + 0.0653594771vw, 0.9375rem);
  line-height: 2;
  margin-top: clamp(0.125rem, 0.0648148148rem + 0.2469135802vw, 0.25rem);
}

.p-news-article-pdf__button-wrapper {
  margin-top: clamp(1.25rem, 1.1296296296rem + 0.4938271605vw, 1.5rem);
}

.p-news-article-contact .c-contact-box {
  margin-inline: auto;
}

.p-news-article-teacher .c-teacher-list {
  justify-content: center;
  margin-top: clamp(1.25rem, 1.1296296296rem + 0.4938271605vw, 1.5rem);
}

.p-news-article-related-contents {
  width: fit-content;
  margin-inline: auto;
  min-width: 400px;
  border: 1px solid var(--box-border-gray);
  padding: clamp(1.5rem, 1.0185185185rem + 1.975308642vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .p-news-article-related-contents {
    min-width: auto;
    width: 100%;
  }
}
.p-news-article-related-contents__title {
  margin-top: 0;
  text-align: center;
  margin-bottom: clamp(1.5rem, 1.0185185185rem + 1.975308642vw, 2.5rem);
}
.p-news-article-related-contents__button-wrapper {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-news-article-related-contents__button-wrapper {
    justify-content: flex-start;
  }
}

.p-support-qualification-table th, .p-support-qualification-table td {
  text-align: center;
}
.p-support-qualification-table__col01 {
  width: 30%;
}
.p-support-qualification-table__col02 {
  width: 20%;
}
.p-support-qualification-table__col03 {
  width: 10%;
}
.p-support-qualification-table__col04 {
  width: 20%;
}
.p-support-qualification-table__col05 {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .p-support-qualification-table colgroup,
  .p-support-qualification-table thead {
    display: none;
  }
  .p-support-qualification-table table,
  .p-support-qualification-table tbody {
    display: block;
    width: 100%;
  }
  .p-support-qualification-table tr {
    display: block;
    margin-bottom: 24px;
    border: 1px solid #D5DBE1;
    border-radius: 5px;
    overflow: hidden;
  }
  .p-support-qualification-table th {
    display: block;
    padding-block: 10px;
  }
  .p-support-qualification-table td {
    display: flex;
    padding: 4px 8px 4px 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    text-align: left;
  }
  .p-support-qualification-table td::before {
    display: block;
    content: attr(data-label);
    flex-shrink: 0;
    margin-right: 16px;
    border-right: 1px solid #D5DBE1;
    text-align: center;
    font-weight: 500;
    width: 80px;
    font-size: 0.875rem;
  }
}

/* 地域連携プロジェクト
  ----------------------------------------------------------------- */
:root {
  --research-project-bg-height: 480px;
}

.p-research-project-about {
  margin-bottom: clamp(5rem, 4.681372549rem + 1.3071895425vw, 6.25rem);
}
.p-research-project-about__text {
  color: #032141;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
}
.p-research-project-about__text + .p-research-project-about__text {
  margin-top: clamp(1.5rem, 1.3406862745rem + 0.6535947712vw, 2.125rem);
}

.p-research-project-view {
  position: relative;
  display: block;
  min-height: var(--research-project-bg-height);
  overflow: hidden;
  margin-bottom: clamp(6.25rem, 5.612745098rem + 2.614379085vw, 8.75rem);
}

.p-research-project-bg {
  position: absolute;
  display: flex;
  min-height: var(--research-project-bg-height);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-research-project-bg {
    flex-direction: column;
    min-height: 240px;
  }
}
.p-research-project-bg__left, .p-research-project-bg__right {
  inset: 0;
  transition: opacity 0.3s ease;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-research-project-bg__left, .p-research-project-bg__right {
    width: 100%;
    height: auto;
    height: 240px;
  }
}
.p-research-project-bg__left img, .p-research-project-bg__right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-research-project-linkarea {
  position: absolute;
  bottom: 0;
  color: #fff;
  display: flex;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .p-research-project-linkarea {
    flex-direction: column;
    height: 100%;
  }
}
.p-research-project-linkarea__item {
  flex: 1;
  display: block;
  text-decoration: none;
  padding-top: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
  padding-bottom: clamp(1.5rem, 1.3406862745rem + 0.6535947712vw, 2.125rem);
  padding-inline: clamp(1.5rem, 0.2892156863rem + 4.9673202614vw, 6.25rem);
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-research-project-linkarea__item {
    display: grid;
    align-content: end;
  }
}
.p-research-project-linkarea__item:hover .p-research-project-linkarea__title::before {
  transform: translateY(-50%) translateX(20px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-research-project-linkarea__item:hover .p-research-project-linkarea__title::before {
    transform: translateY(-50%) translateX(14px) rotate(45deg);
  }
}
.p-research-project-linkarea__item:hover .p-research-project-linkarea__title::after {
  -webkit-mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary_hover.svg) no-repeat center/contain;
  background-color: #fff;
}
.p-research-project-linkarea__title {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1544117647rem + 0.3921568627vw, 1.625rem);
  line-height: 1.5;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-research-project-linkarea__title {
    padding-left: 55px;
  }
}
.p-research-project-linkarea__title::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #032141;
  border-right: 1px solid #032141;
  transition: transform 0.3s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-research-project-linkarea__title::before {
    left: 20px;
  }
}
.p-research-project-linkarea__title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 30px;
  -webkit-mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  mask: url(../img/common/icon_button-primary.svg) no-repeat center/contain;
  background-color: #fff;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-research-project-linkarea__title::after {
    width: 49px;
    height: 20px;
  }
}
.p-research-project-linkarea__text {
  font-size: clamp(0.8125rem, 0.7487745098rem + 0.2614379085vw, 1.0625rem);
  line-height: 2;
}

.p-research-project-view-outcampus {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #12BB4F;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-research-project-view-outcampus__path {
  position: relative;
  display: block;
  transition: 0.3s;
  width: 48%;
  height: var(--research-project-bg-height);
  max-width: 920px;
  overflow: hidden;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-research-project-view-outcampus__path {
    margin-left: 0;
  }
}
.p-research-project-view-outcampus__img-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 980px;
  height: var(--research-project-bg-height);
}
.p-research-project-view-outcampus__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-research-project-view-collaboration {
  position: absolute;
  left: 0;
  background-color: #0971E5;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-research-project-view-collaboration__path {
  position: relative;
  display: block;
  transition: 0.3s;
  width: 48%;
  height: var(--research-project-bg-height);
  max-width: 920px;
  overflow: hidden;
}
.p-research-project-view-collaboration__img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 980px;
  height: var(--research-project-bg-height);
}
.p-research-project-view-collaboration__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-research-project-view:has(.p-research-project-linkarea__item--outcampus:hover) .p-research-project-view-outcampus {
    opacity: 1;
  }
  .p-research-project-view:has(.p-research-project-linkarea__item--outcampus:hover) .p-research-project-linkarea__item--collaboration {
    opacity: 0.4;
  }
}

@media screen and (min-width: 768px) {
  .p-research-project-view:has(.p-research-project-linkarea__item--collaboration:hover) .p-research-project-view-collaboration {
    opacity: 1;
  }
  .p-research-project-view:has(.p-research-project-linkarea__item--collaboration:hover) .p-research-project-linkarea__item--outcampus {
    opacity: 0.4;
  }
}

/* 情報公表
  ----------------------------------------------------------------- */
.p-information .l-page-lead {
  margin-bottom: 0;
}
.p-information .c-information {
  padding-top: clamp(2.75rem, 2.431372549rem + 1.3071895425vw, 4rem);
}

/* 卒業生向け各種証明書について
  ----------------------------------------------------------------- */
.p-certification01-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  margin-top: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
}
.p-certification01-table th,
.p-certification01-table td {
  border: 1px solid var(--table-col02);
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-block: clamp(0.875rem, 0.7794117647rem + 0.3921568627vw, 1.25rem);
  padding-inline: clamp(0.625rem, 0.4656862745rem + 0.6535947712vw, 1.25rem);
  text-align: center;
}
.p-certification01-table th {
  font-weight: 600;
}
.p-certification01-table td:first-child {
  text-align: left;
}
.p-certification01-table thead {
  color: #fff;
  background-color: var(--table-col01);
}
.p-certification01-table thead tr th {
  vertical-align: middle;
  white-space: nowrap;
}
.p-certification01-table tbody {
  background-color: #fff;
}
.p-certification01-table .--sp-block {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-certification01-table .--sp-block {
    display: block;
  }
}

.p-certification02-table .c-list01 {
  margin-top: 0;
}
.p-certification02-table .c-list01 li {
  padding: 4px 0px 4px 24px;
}
.p-certification02-table .c-list01 li::before {
  top: 16px;
}

/* 各種お問い合わせ
  ----------------------------------------------------------------- */
.p-contact-free-number {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-contact-free-number img {
  margin-right: 8px;
}

.p-contact-link-icon img {
  margin-inline: auto;
}

.c-table03--contact {
  min-width: 600px;
}
@media screen and (max-width: 767px) {
  .c-table03--contact__col01 {
    width: 80px;
  }
  .c-table03--contact__col02 {
    width: 120px;
  }
  .c-table03--contact__col03 {
    width: 100px;
  }
  .c-table03--contact__col05 {
    width: 50px;
  }
  .c-table03--contact th {
    white-space: normal;
  }
}

@media screen and (max-width: 767px) {
  .c-table03.c-table03--contact thead th:first-child,
  .c-table03.c-table03--contact tbody th:first-child {
    white-space: normal;
  }
}

/* サイトポリシー
  ----------------------------------------------------------------- */
.p-policy-banner-link-wrap {
  margin-top: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.p-policy-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  padding-inline: clamp(2rem, 1.8725490196rem + 0.522875817vw, 2.5rem);
}
.p-policy-banner-link:hover .p-policy-banner-link__text {
  text-decoration: underline;
}
.p-policy-banner-link__img {
  max-width: 158px;
  padding-right: 25px;
}
.p-policy-banner-link__text {
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.9056372549rem + 0.1307189542vw, 1.0625rem);
  line-height: 2;
  color: #3993F6;
}

/* ------------------- サイトポリシー ------------------------------ */
.adobeBox {
  display: flex;
  align-items: center;
}

.adobeBox .imgBox {
  max-width: 158px;
  padding-right: 25px;
}

@media screen and (max-width: 480px) {
  .adobeBox {
    display: block;
  }
  .adobeBox .imgBox {
    padding-right: 0;
    margin: 4px auto 9px;
  }
}
.policyTbl th {
  width: 150px;
}

@media screen and (max-width: 600px) {
  .policyTbl th {
    width: 100%;
  }
}
:root {
  --eeducational-counseling-contact-color-emphasis: #CE4747;
}

.p-experience-table-prymary thead tr th:nth-child(1) {
  width: clamp(12.5rem, 10.2272727273rem + 9.696969697vw, 17.5rem);
  min-width: 200px;
  max-width: 300px;
}
.p-experience-table-prymary thead tr th:nth-child(2) {
  width: 4em;
  min-width: 4em;
}
.p-experience-table-prymary thead tr th:nth-child(3) {
  width: 4em;
  min-width: 4em;
}
.p-experience-table-prymary thead tr th:nth-child(4) {
  width: 9em;
  min-width: 9em;
}
.p-experience-table-prymary thead tr th:nth-child(5) {
  min-width: 390px;
}
.p-experience-table-prymary tbody th {
  white-space: normal;
}

.l-part {
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 1.1458333333vw;
  row-gap: 78px;
  margin-bottom: 80px;
}
@media (max-width: 1280px) {
  .l-part {
    column-gap: 4%;
  }
}
@media (max-width: 767px) {
  .l-part {
    row-gap: 40px;
  }
}

.c-part-job {
  width: 32.2580645161% !important;
  padding: 0 24px 58px !important;
  border: 1px solid #D5DBE1;
  border-radius: 5px 5px 4px 4px;
}
@media (max-width: 1280px) {
  .c-part-job {
    width: 48% !important;
  }
}
@media (max-width: 767px) {
  .c-part-job {
    width: 100% !important;
  }
}

.c-part-header {
  margin-inline: -24px;
  border-radius: 4px 4px 0 0;
}
.c-part-header__limit {
  font-size: 0.8125rem;
}

.c-part-table {
  width: 100%;
}
.c-part-table th {
  text-align: left;
}
.c-part-table a {
  color: #0971E5;
}
@media (min-width: 768px) {
  .c-part-table a[href^="tel:"] {
    pointer-events: none;
    color: #032141;
  }
}

.c-part-more {
  bottom: -18px !important;
  height: 37px;
  padding-left: 30px !important;
  background: #032141 !important;
  color: #fff !important;
  text-align: left !important;
}
.c-part-more.opened {
  background: #fff !important;
  color: #032141 !important;
}
.c-part-more::before, .c-part-more::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 13px;
  height: 1px;
  background: #fff !important;
  transition: transform 0.3s;
  z-index: 1;
}
.c-part-more::after {
  rotate: 90deg;
}
.c-part-more.opened::before {
  background: #032141 !important;
}
.c-part-more.opened::after {
  opacity: 0;
}

.value_n {
  opacity: 0.5;
}

#calendarBoxWrapper {
  position: relative;
}

.l-library-calendar {
  max-width: 1840px;
}
.l-library-calendar__img {
  width: 50%;
}
.l-library-calendar__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-library-calendar__contents {
  width: 50%;
}
@media (max-width: 1180px) {
  .l-library-calendar__container {
    display: block !important;
  }
  .l-library-calendar__img, .l-library-calendar__contents {
    width: 100%;
  }
  .l-library-calendar__img {
    aspect-ratio: 2/1;
  }
  .l-library-calendar__contents {
    padding: 30px 4.8913043478vw !important;
  }
}
@media (max-width: 767px) {
  .l-library-calendar__title {
    font-size: max(1.5rem, 5.2151238592vw) !important;
  }
}

.pop {
  position: relative;
}

.calendarBoxes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease;
}

.calendarBoxes.active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}

.c-calendar__header {
  position: relative;
  margin-bottom: -45px;
  z-index: 10;
}
.c-calendar__btn {
  cursor: pointer;
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  transition: 0.32s color, 0.32s background-color;
}
.c-calendar__btn--next {
  padding-right: 20px;
}
.c-calendar__btn--next::before {
  right: calc(50% - 25px);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4.65 7.88'%3E%3Cpolygon points='.71 7.88 0 7.17 3.23 3.94 0 .71 .71 0 4.65 3.94 .71 7.88' style='fill: %23fff;'/%3E%3C/svg%3E");
}
.c-calendar__btn--next::after {
  right: calc(50% - 25px);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4.65 7.88'%3E%3Cpolygon points='.71 7.88 0 7.17 3.23 3.94 0 .71 .71 0 4.65 3.94 .71 7.88' style='fill: %23032141;'/%3E%3C/svg%3E");
}
.c-calendar__btn--prev {
  padding-left: 20px;
}
.c-calendar__btn--prev::before {
  left: calc(50% - 25px);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4.65 7.88'%3E%3Cpolygon points='3.94 7.88 4.65 7.17 1.41 3.94 4.65 .71 3.94 0 0 3.94 3.94 7.88' style='fill: %23fff;'/%3E%3C/svg%3E");
}
.c-calendar__btn--prev::after {
  left: calc(50% - 25px);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4.65 7.88'%3E%3Cpolygon points='3.94 7.88 4.65 7.17 1.41 3.94 4.65 .71 3.94 0 0 3.94 3.94 7.88' style='fill: %23032141;'/%3E%3C/svg%3E");
}
.c-calendar__btn::before, .c-calendar__btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  width: 5px;
  height: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.32s opacity;
}
.c-calendar__btn:hover {
  background: #032141;
  color: #fff;
}
.c-calendar__btn:hover::before {
  opacity: 1;
}
.c-calendar__btn:hover::after {
  opacity: 0;
}
.c-calendar__current {
  text-align: center;
}
.c-calendar__table tbody td {
  font-weight: 500;
  text-align: center;
  padding: 15px 10px;
  font-size: 1.125rem;
  color: #032141;
  background: #f0f4f8;
}
.c-calendar__table tbody td:nth-of-type(1) {
  color: #ce4747;
  background: #fce8e8;
}
.c-calendar__table tbody td.grn {
  color: #12bb4f;
  background: #f0f4f8;
}
.c-calendar__table tbody td:nth-of-type(7) {
  color: #0971e5;
  background: #e1f5ff;
}
.c-calendar .pop .inner::after {
  font-size: 1rem;
  padding-left: 0;
}
@media (max-width: 500px) {
  .c-calendar {
    padding: 30px 10px !important;
  }
  .c-calendar__btn {
    width: 90px !important;
  }
}

.c-calendar-info__text {
  padding: 0 !important;
}
@media (max-width: 500px) {
  .c-calendar-info {
    flex-direction: column-reverse;
  }
  .c-calendar-info__text, .c-calendar-info__status {
    width: 100% !important;
  }
}

.c-calendar-status li {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 2px;
}
.c-calendar-status li span {
  display: inline-block;
  width: min(100px, 100%);
  text-align: center;
  border: 2px solid #fff;
  padding: 7px;
  flex-shrink: 0;
}
.c-calendar-status li.blc span {
  color: #032141;
  background: #f0f4f8;
}
.c-calendar-status li.grn span {
  color: #12bb4f;
  background: #dff3e7;
}
.c-calendar-status li.blu span {
  color: #0971e5;
  background: #e1f5ff;
}
.c-calendar-status li.red span {
  color: #ce4747;
  background: #fce8e8;
}

.p-home-news {
  width: min(1740px, 100%) !important;
  padding-top: 110px;
  padding-bottom: 100px;
}
.p-home-news__inner {
  display: flex;
}
.p-home-news__header {
  width: 28.8043478261%;
}
.p-home-news__content {
  width: 65.7608695652%;
}
.p-home-news .c-news-block-wrap {
  padding-left: 0;
}
.p-home-news .c-heading-secondary__title-wrap {
  margin-inline: auto;
}
.p-home-news .c-news-block-heading__button-wrap {
  margin-top: 50px;
  margin-inline: auto;
  padding-left: 40px;
}
@media screen and (max-width: 1279px) {
  .p-home-news .c-news-block-heading__button-wrap {
    padding-left: 10px;
  }
}
@media screen and (max-width: 1022px) {
  .p-home-news {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .p-home-news .c-heading-secondary__title-wrap {
    margin-left: 0;
  }
  .p-home-news .c-news-block-heading__button-wrap {
    position: absolute;
    bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
  }
  .p-home-news__inner {
    position: relative;
    flex-direction: column;
    row-gap: 50px;
    padding-bottom: 80px;
  }
  .p-home-news__header {
    width: 100%;
  }
  .p-home-news__content {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .p-home-news {
    padding-top: 0;
  }
  .p-home-news__inner {
    row-gap: 30px;
  }
}

.p-home-news-tabs-nav {
  border-bottom: 1px solid #0971e5;
}
.p-home-news-tabs-nav__inner {
  display: flex;
  column-gap: 50px;
}
.p-home-news-tabs-nav__item {
  position: relative;
  display: block;
  padding: 8px 4px;
  border-radius: 4px;
  cursor: pointer;
}
.p-home-news-tabs-nav__item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #0971e5;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-home-news-tabs-nav__item--active::after {
  opacity: 1;
}
@media screen and (max-width: 1919px) {
  .p-home-news-tabs-nav__inner {
    column-gap: 2.6041666667vw;
  }
}
@media screen and (max-width: 1279px) {
  .p-home-news-tabs-nav__inner {
    column-gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-home-news-tabs-nav {
    overflow-x: auto;
  }
  .p-home-news-tabs-nav__inner {
    min-width: 580px;
  }
}

/* ==========================================================================
  project
========================================================================== */
.u-pc-br {
  display: none;
}
@media screen and (min-width: 1023px) {
  .u-pc-br {
    display: block;
  }
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-margin-center {
  margin-inline: auto;
}

.u-text-white {
  color: #fff !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.text-break-menu-change::after,
.text-break::after {
  content: "\a";
  white-space: pre;
}

@media screen and (max-width: 767px) {
  .text-break::after {
    content: "";
  }
}
@media screen and (max-width: 1022px) {
  .text-break-menu-change::after {
    content: "";
  }
}
.text-break-pc-none::after {
  content: "\a";
  white-space: pre;
}

@media screen and (min-width: 768px) {
  .text-break-pc-none::after {
    content: "";
  }
}
.u-bg-white {
  background-color: #fff !important;
}

.u-bg-base {
  background-color: #032141 !important;
}

.u-text-color-base {
  color: #032141 !important;
}

.u-text-color-white {
  color: #fff !important;
}