@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 80px;
  }
}
body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.7;
  padding-top: 110px;
}
@media (min-width: 601px) and (max-width: 800px) {
  body {
    width: 800px;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.75;
}
ul {
  list-style: none;
}
address {
  font-style: normal;
}
/* ============================================================
Header
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  height: 110px;
}
.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.header__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  height: 100%;
}
.header__logo {
  position: absolute;
  top: 28px;
  left: 50px;
}
.header__logo-link {
  display: block;
  transition: opacity 0.2s ease;
}
.header__logo-link:hover {
  opacity: 0.75;
}
.header__logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.header__sub-nav {
  position: absolute;
  top: 23px;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.header__sub-nav-link {
  font-size: 0.875rem;
  color: #5f6369;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition-duration: 0.2s;
}
.header__sub-nav-link img {
  opacity: 0.5;
  transition-duration: 0.2s;
}
.header__sub-nav-link:hover {
  opacity: 1;
  color: #333;
}
.header__sub-nav-link:hover img {
  opacity: 1;
}
.header__menu {
  position: absolute;
  right: 30px;
  bottom: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu-item {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.header__menu-item > a {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding: 0 20px;
  height: 46px;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  white-space: nowrap;
  transition-duration: 0.2s;
  line-height: 1;
}
.header__menu-item > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 4px;
  background: #DAD5C2;
  opacity: 0;
  transition-duration: 0.2s;
}
.header__menu-item > a:hover {
  opacity: 1;
}
.header__menu-item > a:hover::after {
  opacity: 1;
}
.header__menu-item.active > a::after {
  opacity: 1;
}
.header__menu-item + .header__menu-item::before {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background-color: #ccc;
  flex-shrink: 0;
}
.header__menu-item:hover ul.depth2 {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header ul.depth2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}
.header ul.depth2 li {
  width: 100%;
}
.header ul.depth2 li + li {
  border-top: 1px solid #707278;
}
.header ul.depth2 li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  background: #5F6369;
  color: white;
  height: 40px;
}
.header ul.depth2 li a::after {
  position: absolute;
  top: 14px;
  right: 14px;
  display: block;
  content: "";
  background: transparent url(../media/images/common/arrow-white-right.svg) no-repeat;
  width: 7px;
  height: 10px;
  opacity: 0;
  transition-duration: 0.2s;
}
.header ul.depth2 li a:hover {
  opacity: 1;
  background-color: #44484E;
}
.header ul.depth2 li a:hover::after {
  opacity: 1;
}
.header__hamburger {
  position: absolute;
  top: 15px;
  right: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #707070;
}
.header__hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}
.header__hamburger.is-active .header__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.sp-menu.is-open {
  display: block;
  transform: translateX(0);
}
.sp-menu__inner {
  padding: 0 20px;
  margin: 0 auto;
}
.sp-menu__logo {
  display: flex;
  align-items: center;
  height: 80px;
}
.sp-menu__nav {
  padding: 14px 0;
}
.sp-menu__list {
  border-top: 1px solid #ccc;
}
.sp-menu__list .depth1 > a {
  display: block;
  padding: 13px 22px;
  font-weight: 700;
  position: relative;
}
.sp-menu__list .depth1 > a::after {
  position: absolute;
  top: calc(50% + 3px);
  right: 23px;
  transform: translatey(-50%);
  content: "";
  display: block;
  width: 16px;
  height: 16px;
}
.sp-menu__list .depth1 > a[href="./"]::after {
  right: 25px;
  background-image: url(../media/images/common/home.svg);
}
.sp-menu__list .depth1.has_children > a::after {
  top: calc(50% + 5px);
  background: transparent url(../media/images/common/down.svg) no-repeat;
}
.sp-menu__list .depth1.is-open > a::after {
  top: calc(50% + 2px);
  background-image: url(../media/images/common/up.svg);
}
.sp-menu__list .depth1:has(a[href="request/"]) {
  display: none;
}
.sp-menu__list .depth1.is-open > ul.depth2 {
  border-top: 1px solid #ccc;
}
.sp-menu__list li.depth2 > a {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
  padding: 10.5px 22px 10.5px 40px;
  font-size: 14px;
}
.sp-menu__list li.depth2 > a::before {
  display: block;
  width: 16px;
  height: 16px;
  background: transparent url(../media/images/common/chevron-right.svg) no-repeat;
  content: "";
}
.sp-menu__list li.depth2.first > a {
  padding-top: 17px;
}
.sp-menu__list li.depth2.last > a {
  padding-bottom: 17px;
}
.sp-menu__item {
  border-bottom: 1px solid #ccc;
}
.sp-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  transition: color 0.2s ease;
}
.sp-menu__link:hover {
  color: #a32b4b;
  opacity: 1;
}
.sp-menu__icon {
  flex-shrink: 0;
  color: #333;
}
.sp-menu__chevron {
  flex-shrink: 0;
  color: #5f6369;
  transition: transform 0.3s ease;
}
.sp-menu__accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans JP", sans-serif;
}
.sp-menu__accordion-toggle[aria-expanded="true"] .sp-menu__chevron {
  transform: rotate(180deg);
}
.sp-menu__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sp-menu__submenu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 14px 32px;
  font-size: 1rem;
  color: #5f6369;
  transition: color 0.2s ease;
}
.sp-menu__submenu-link:hover {
  color: #a32b4b;
  opacity: 1;
}
.sp-menu__submenu-arrow {
  flex-shrink: 0;
  color: #5f6369;
}
.sp-menu__sub {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 16px;
}
.sp-menu__sub-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13.5px;
  color: #5f6369;
  padding: 0 16px;
  border-radius: 4px;
  background-color: #ECECEC;
  transition: color 0.2s ease;
  width: 144px;
  height: 40px;
}
.sp-menu__sub-link img {
  opacity: 0.6;
}
.sp-menu__sub-link:hover {
  color: #a32b4b;
  opacity: 1;
}
.sp-menu__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.sp-menu__cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  background-color: #e50111;
  color: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.125rem;
  transition: background-color 0.2s ease;
  width: 295px;
  height: 64px;
  letter-spacing: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.sp-menu__cta a img {
  width: 22px;
}
.sp-menu__cta a:hover {
  background-color: #ed4c57;
}
.sp-menu__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  margin-top: 8px;
}
.sp-menu__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #707070;
  border-radius: 50%;
  transition: opacity 0.2s ease;
}
.sp-menu__sns-link:hover {
  opacity: 0.8;
}
.top_topic {
  background-color: #a32b4b;
}
.topic {
  background-color: #a32b4b;
}
.topic__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #fff;
  letter-spacing: 0.6px;
  flex-direction: column;
}
.topic__text {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans JP", sans-serif;
  font-size: 1.65rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.visual {
  position: relative;
  overflow: hidden;
  background-color: #F5F4F0;
}
.visual__inner-image img {
  width: 100%;
}
.department {
  background: linear-gradient(to bottom, #F5F4F0 164px, transparent 164px);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}
.department__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.department__list {
  display: flex;
  gap: 30px;
  margin-top: -114px;
}
.department__item {
  flex: 0 0 31.5%;
  border: 3px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.department__item--green {
  border-color: #8ec43e;
  background: linear-gradient(to top, rgba(142, 196, 62, 0.2) 68px, #fff 68px);
}
.department__item--green .department__arrow-icon {
  color: #81BC35;
}
.department__item--blue {
  border-color: #82C1EA;
  background: linear-gradient(to top, rgba(130, 193, 234, 0.2) 68px, #fff 68px);
}
.department__item--blue .department__arrow-icon {
  color: #71B6E5;
}
.department__item--pink {
  border-color: #F092AE;
  background: linear-gradient(to top, rgba(240, 146, 174, 0.2) 68px, #fff 68px);
}
.department__item--pink .department__arrow-icon {
  color: #ED85A9;
}
.department__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 20px;
  color: inherit;
  opacity: 1;
  height: 100%;
  text-decoration: none;
}
.department__link:hover .department__arrow-normal {
  display: none;
}
.department__link:hover .department__arrow-hover {
  display: flex;
}
.department__body {
  text-align: center;
  margin-bottom: 7px;
  width: 100%;
}
.department__title {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #333;
}
.department__title sup {
  vertical-align: top;
  position: relative;
  top: -0.15em;
}
.department__text {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 36px;
  color: #5f6369;
}
.department__image-wrap {
  width: 216px;
  height: 144px;
  overflow: hidden;
  margin-bottom: 0;
}
.department__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.department__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  margin-top: -22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.department__arrow-hover {
  display: none;
}
.department__arrow-icon {
  color: #333;
  font-size: 18px;
  width: 18px;
  height: 18px;
  line-height: 1;
  display: block;
}
.department__notice {
  text-align: center;
}
.department__notice .ninkashinsei {
  font-size: 1.25rem;
  margin: 12px auto 0;
  font-weight: bold;
}
.oc {
  background-color: #fff;
  padding: 104px 0 120px;
  overflow: hidden;
}
.oc__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
.oc__main {
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.oc__main a:hover {
  opacity: 0.85;
}
.oc__main::before {
  display: block;
  position: absolute;
  top: -94px;
  left: -74px;
  width: 240px;
  height: 240px;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: transparent url(../media/images/top/oc_ring_ornament.png) no-repeat;
}
.oc__main-image {
  position: relative;
  z-index: 10;
}
.oc__main-image::before {
  position: absolute;
  left: 0;
  top: -5px;
  content: "";
  width: 120px;
  height: 5px;
  background: white;
}
.oc__main-image::after {
  position: absolute;
  left: -5px;
  top: -5px;
  content: "";
  width: 5px;
  height: 45px;
  background: white;
}
.oc__sub {
  display: flex;
  justify-content: space-between;
  padding: 17px 0 0;
}
.oc__sub-item {
  position: relative;
  background: #fff;
  border: 1px solid #a32b4b;
  border-radius: 8px;
  width: calc(50% - 10px);
  height: 125px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  transition-duration: 0.2s;
}
.oc__sub-item:hover {
  opacity: 0.85;
}
.oc__sub-corner {
  position: absolute;
  top: -15px;
  left: -1px;
  background: white;
  width: 140px;
  height: 46px;
}
.oc__sub-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 36px;
  background-color: #a32b4b;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.12em;
  z-index: 1;
}
.oc__sub-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  color: inherit;
  opacity: 1;
  height: 100%;
  text-align: center;
}
.oc__sub-link:hover {
  opacity: 0.85;
}
.oc__sub-link:hover .oc__sub-title {
  color: #8b1435;
}
.oc__sub-title {
  font-size: 28px;
  font-weight: bold;
  color: #a32b4b;
  line-height: 1.3;
  padding: 10px 0 0;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}
.oc__sub-note {
  font-size: 18px;
  font-weight: normal;
  color: #a32b4b;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.oc__sub-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 19px;
  letter-spacing: 0.02em;
  font-weight: bold;
  color: #d194a4;
  margin: 6px 0 0;
}
.oc__sub-text::before, .oc__sub-text::after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #d194a4;
  flex-shrink: 0;
}
.news {
  background: #F5F4F0;
  padding: 40px 0 64px;
}
.news__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}
.news__inner::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 40px;
  width: 155px;
  height: 4px;
  background-color: #A32B4B;
}
.news__title {
  font-family: "Roboto", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #333;
  margin: 0 0 10px;
}
.news__body {
  display: flex;
  gap: 75px;
}
.news__sidebar {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 155px;
}
.news__categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.news__category-btn {
  background: none;
  border: none;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color 0.2s ease;
  position: relative;
  height: 33px;
  padding: 0 3px;
}
.news__category-btn::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
.news__category-btn:hover {
  color: #a32b4b;
}
.news__category-btn.is-active {
  color: #a32b4b;
  font-weight: bold;
}
.news__category-btn.is-active::before {
  background-color: #a32b4b;
}
.news__view-all {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid #ccc;
}
.news__view-all a {
  font-size: 0.9375rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.news__view-all a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../media/images/common/list.svg);
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.news__list {
  flex: 1;
  min-width: 0;
}
.news__list > a.text {
  pointer-events: none;
  cursor: text;
}
.news__item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}
.news__item:first-child {
  padding-top: 6px;
}
.news__item[style*="display: none"] {
  display: none !important;
}
.news__date {
  display: flex;
  align-items: center;
  font-family: "Roboto", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 19px;
  color: #666;
  min-width: 100px;
  padding: 0 15px;
}
.news__tag {
  font-size: 14px;
  line-height: 1;
  color: #333;
  background-color: #fff;
  border-radius: 20px;
  padding: 0;
  width: 106px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 15px;
}
.news__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  white-space: nowrap;
  border: 1px solid;
  width: 46px;
  height: 22px;
}
.news__badge--important {
  color: #e50111;
  border-color: #e50111;
}
.news__badge--important:empty {
  display: none;
}
.news__badge--new {
  color: #e50111;
  border-color: #e50111;
}
.news__badge--new.new::before {
  content: "新着";
}
.news__badge--new:not(.news__badge--new.new) {
  display: none;
}
.news__link {
  font-size: 1rem;
  color: #333;
  flex: 1;
  transition: color 0.2s ease;
}
.news__link:hover {
  color: #a32b4b;
  opacity: 1;
}
.access {
  background-color: #fff;
  padding: 70px 0;
}
.access__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}
.access__inner::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 40px;
  width: 155px;
  height: 4px;
  background-color: #A32B4B;
}
.access__title {
  font-family: "Roboto", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 39px;
}
.access__map-wrap {
  margin-bottom: 30px;
  overflow: hidden;
}
.access__map-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.access__campus-header {
  display: flex;
  align-items: baseline;
  gap: 25px;
}
.access__campus-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}
.access__address {
  font-size: 18px;
  color: #333;
}
.access__separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 16px 0 24px;
}
.access__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
  margin-bottom: 20px;
}
.access__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.access__route-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.access__route-icon {
  color: #a32b4b;
  font-size: 1rem;
}
.access__route-desc {
  font-size: 1rem;
  color: #333;
  padding: 0 0 0 38px;
  margin-bottom: 8px;
}
.access__bus-list {
  list-style: none;
  padding: 2px 0 0 42px;
}
.access__bus-list > li {
  font-size: 16px;
  color: #333;
  position: relative;
  padding-left: 18px;
}
.access__bus-list > li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #989e9a;
  font-size: 0.5rem;
}
.access__campus-img-wrap {
  flex: 0 0 368px;
  padding: 30px 0 0;
  overflow: hidden;
}
.access__campus-img {
  width: 100%;
  height: auto;
  display: block;
}
.access__note, .access .ninkashinsei {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
}
.access__route-train {
  flex-shrink: 0;
}
.top_oc-cta {
  display: none;
}
.links {
  background-color: #a32b4b;
  padding: 70px 0;
}
.links__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #fff;
  color: #666;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  padding: 20px;
  min-height: 80px;
  border-radius: 0;
  text-align: center;
  transition: opacity 0.2s ease;
}
.links__item:hover {
  opacity: 0.7;
}
.footer {
  background-color: #f5f4f0;
}
.footer-border {
  border-top: 8px solid #a32b4b;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  padding-bottom: 20px;
}
.footer__inner .ninkashinsei2 {
  font-size: 0.95rem;
  line-height: 1.35;
  float: right;
  text-indent: -0.95rem;
  margin-left: 0.95rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 307px 1fr;
  gap: 80px;
  padding: 62px 0 37px;
}
.footer__logo-block {
  display: flex;
  flex-direction: column;
}
.footer__logo-wrap {
  position: relative;
}
.footer__logo-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}
.footer__logo-link:hover {
  opacity: 0.75;
}
.footer__logo-img {
  width: 293px;
  height: 70px;
}
.footer__approval {
  position: absolute;
  right: 0;
  top: 20px;
  display: inline-block;
  border: 1px solid #a32b4b;
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 0.625rem;
  line-height: 1.2;
  color: #a32b4b;
  text-align: center;
  white-space: nowrap;
}
.footer__approval-note {
  font-size: 0.5625rem;
  color: #333;
  margin-top: 8px;
}
.footer__address {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.8;
  margin-top: 17px;
}
.footer__nav {
  display: flex;
  gap: 30px;
}
.footer__nav-column {
  /* 4/1開設当初は入試情報を隠すため*/
}
.footer__nav-column:nth-child(1) {
  flex: 0 0 138px;
}
.footer__nav-column:nth-child(2) {
  flex: 0 0 170px;
}
.footer__nav-column:nth-child(3) {
  flex: 0 0 178px;
}
.footer__nav-column:nth-child(3) {
  flex: 0 0 136px;
}
.footer__nav-title {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
}
.footer__nav-list li {
  position: relative;
  padding-left: 17px;
  margin: 0;
  padding: 2.8px 0 2.8px 18px;
  line-height: 1.2;
}
.footer__nav-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #989a9e;
}
.footer__nav-link {
  font-size: 0.875rem;
  color: #333;
  transition: color 0.2s ease;
}
.footer__nav-link:hover {
  color: #a32b4b;
  opacity: 1;
}
.footer__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 24px;
}
.footer__campus-btns {
  display: flex;
  gap: 10px;
}
.footer__campus-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 270px;
  height: 56px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  letter-spacing: 1px;
  transition-duration: 0.2s;
}
.footer__campus-btn:hover {
  opacity: 1;
  background-color: #E6E6E7;
}
.footer__campus-btn-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #989a9e;
}
.footer__middle-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer__bottom-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__bottom-nav-link {
  font-size: 0.875rem;
  color: #333;
  transition: color 0.2s ease;
}
.footer__bottom-nav-link:hover {
  color: #a32b4b;
  opacity: 1;
}
.footer__nav-divider {
  width: 1px;
  height: 14px;
  background-color: #999;
}
.footer__sns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #989a9e;
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  border-radius: 50%;
}
.footer__sns-link .path {
  transition-duration: 0.2s;
  fill: #989a9e;
}
.footer__sns-link:hover .path {
  fill: #333;
}
.footer__copyright-bar {
  background-color: #e6e4d8;
  text-align: center;
  padding: 16px 0;
}
.footer__copyright {
  font-family: "Roboto", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 0.875rem;
  color: #5f6369;
}
.page_top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.2s;
  z-index: 1000;
}
@media (max-width: 600px) {
  .page_top {
    bottom: 12px;
    right: 12px;
  }
}
.page_top.show {
  opacity: 1;
  pointer-events: auto;
}
.side-fixed {
  position: fixed;
  right: 0;
  top: max(calc(50% - 157px), 480px);
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
.side-btn__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: #E50111;
  color: #fff;
  width: 86px;
  height: 240px;
  padding: 34px 0 28px;
  border-radius: 12px 0 0 12px;
  box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease;
  text-decoration: none;
  opacity: 1;
}
.side-btn__link:hover {
  background-color: #ED4C57;
  opacity: 1;
}
.side-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.side-btn__icon img {
  width: 36px;
  height: 36px;
}
.side-btn__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 6px;
  color: #fff;
}
.side-sns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}
.side-sns__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  transition: 0.2s;
  background: #5F6369;
}
.side-sns__link:hover {
  background: #333333;
}
.page-title {
  background-color: #f5f4f0;
  padding: 40px 0 30px;
}
.page-title__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}
.page-title__label {
  position: relative;
  font-size: 1.25rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 16px;
}
.page-title__label::after {
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translatex(-50%);
  content: "";
  width: 455px;
  height: 1px;
  background: #ccc;
}
.page-title__separator {
  display: block;
  width: 600px;
  max-width: 100%;
  height: 1px;
  background-color: #333;
  margin: 0 auto 16px;
}
.page-title__heading {
  font-size: 2.25rem;
  letter-spacing: 5px;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
  padding-left: 1.8rem;
}
.page-title__heading sup {
  font-size: 1rem;
  font-weight: normal;
}
.page-title__notice {
  text-align: center;
  margin-top: 1rem;
}
.faculty-intro {
  position: relative;
  padding: 0 0 150px;
  background: white url(../media/images/faculty/intro-pc-bg.jpg) top center repeat-x;
}
.faculty-intro__inner {
  position: relative;
  z-index: 10;
  background: transparent url(../media/images/faculty/intro-pc.jpg) no-repeat center top;
}
.faculty-intro__text-area {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 534px;
  text-align: center;
}
.faculty-intro__title {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 48px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #a32b4b;
  margin-bottom: 37px;
  line-height: 1.4;
}
.faculty-intro__body {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 19px;
  line-height: 37px;
  color: #333;
  text-align: center;
  letter-spacing: 2px;
}
.faculty-intro__body p {
  margin-bottom: 32px;
}
.faculty-intro__body p:last-child {
  margin-bottom: 0;
}
.faculty-greeting {
  padding: 0 0 80px;
  background-color: #f7f5f3;
}
.faculty-greeting__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.faculty-greeting__heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}
.faculty-greeting__heading {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #333;
  white-space: nowrap;
  width: 456px;
  height: 80px;
  background: transparent url(../media/images/faculty/segment-pc.svg) no-repeat top center;
  text-align: center;
}
.faculty-greeting__heading-line {
  display: block;
  width: 60px;
  height: 1px;
  background-color: #333;
}
.faculty-greeting__content {
  margin: 110px auto 0;
  display: flex;
  gap: 62px;
  align-items: flex-start;
  max-width: 970px;
}
.faculty-greeting__profile {
  flex-shrink: 0;
}
.faculty-greeting__photo-wrap {
  width: 240px;
  margin-bottom: 22px;
}
.faculty-greeting__photo {
  width: 100%;
  height: auto;
  display: block;
}
.faculty-greeting__position {
  font-size: 1.125rem;
  color: #333;
}
.faculty-greeting__name {
  font-size: 24px;
  line-height: 33px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #333;
}
.faculty-greeting__name span {
  display: block;
  font-size: 0.9rem;
  font-weight: normal;
  letter-spacing: 0;
}
.faculty-greeting__text-area {
  flex: 1;
}
.faculty-greeting__quote {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}
.faculty-greeting__body {
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.faculty-greeting__body p {
  margin-bottom: 1em;
}
.faculty-greeting__body p:last-child {
  margin-bottom: 0;
}
.faculty-dept {
  padding: 80px 0 20px;
}
.faculty-dept__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faculty-dept__card {
  background: #fff;
  border-radius: 16px;
  border: 3px solid #ccc;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.faculty-dept__card sup {
  font-weight: normal;
  font-size: 1rem;
}
.faculty-dept__card > a {
  display: contents;
}
.faculty-dept__card > a .hover {
  display: none;
}
.faculty-dept__card > a:hover .hover {
  display: block;
}
.faculty-dept__card > a:hover .normal {
  display: none;
}
.faculty-dept__card--green {
  border-color: #8ec43e;
}
.faculty-dept__card--green .faculty-dept__card-skill-badge {
  background-color: #81bc35;
}
.faculty-dept__card--green .faculty-dept__card-skill-dot {
  color: #8ec43e;
}
.faculty-dept__card--green .faculty-dept__card-link {
  background-color: rgba(142, 196, 62, 0.2);
}
.faculty-dept__card--green .faculty-dept__card-arrow {
  color: #81BC35;
}
.faculty-dept__card--blue {
  border-color: #82C1EA;
}
.faculty-dept__card--blue .faculty-dept__card-skill-badge {
  background-color: #71b6e5;
}
.faculty-dept__card--blue .faculty-dept__card-skill-dot {
  color: #82c1ea;
}
.faculty-dept__card--blue .faculty-dept__card-link {
  background-color: rgba(130, 193, 234, 0.2);
}
.faculty-dept__card--blue .faculty-dept__card-arrow {
  color: #82C1EA;
}
.faculty-dept__card--pink {
  border-color: #F092AE;
}
.faculty-dept__card--pink .faculty-dept__card-skill-badge {
  background-color: #ed85a9;
}
.faculty-dept__card--pink .faculty-dept__card-skill-dot {
  color: #f092ae;
}
.faculty-dept__card--pink .faculty-dept__card-link {
  background-color: rgba(240, 146, 174, 0.2);
}
.faculty-dept__card--pink .faculty-dept__card-arrow {
  color: #F092AE;
}
.faculty-dept__card-body {
  padding: 42px 70px 36px 60px;
}
.faculty-dept__card-columns {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}
.faculty-dept__card-info {
  flex: 1;
}
.faculty-dept__card-name-wrap {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 25px;
}
.faculty-dept__card-name {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 6px;
  color: #333;
  line-height: 1.3;
}
.faculty-dept__card-name-en {
  font-family: "Roboto", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
  color: #989a9e;
}
.faculty-dept__card-subtitle {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
}
.faculty-dept__card-desc {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 18px;
  line-height: 29px;
  color: #333;
  margin-bottom: 20px;
}
.faculty-dept__card-divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin-bottom: 20px;
}
.faculty-dept__card-skills {
  margin-top: 15px;
  padding: 25px 0 0;
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 28px;
}
.faculty-dept__card-skill-badge {
  width: 205px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
  padding-left: 10px;
}
.faculty-dept__card-skill-label {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  transform: translatey(1px);
}
.faculty-dept__card-skill-value {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 5px;
}
.faculty-dept__card-skill-list {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.faculty-dept__card-image-wrap {
  width: 255px;
  height: 170px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
}
.faculty-dept__card-image {
  width: 100%;
  height: auto;
  display: block;
}
.faculty-dept__card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
}
.faculty-dept__card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%) scale(1.3);
}
.faculty-cta {
  padding: 60px 0 100px;
}
.faculty-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}
.faculty-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background-color: #e50111;
  color: #fff;
  font-size: 24px;
  letter-spacing: 5px;
  font-weight: 600;
  width: 640px;
  height: 100px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease;
  text-decoration: none;
  opacity: 1;
  padding-right: 12px;
}
.faculty-cta__btn:hover {
  background-color: #ed4c57;
  opacity: 1;
}
.faculty-cta__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.faculty-cta__text {
  line-height: 1;
}
@media (min-width: 801px) {
  body {
    overflow-x: hidden;
  }
}
@media (min-width: 601px) and (max-width: 1150px) {
  .header__logo {
    left: 20px;
  }
  .header__inner {
    padding: 0 20px;
    min-width: 800px;
  }
  .header__sub-nav {
    right: 20px;
  }
  .header__menu {
    right: 10px;
  }
  .header__menu-item a {
    font-size: 16px;
    padding: 0 10px;
  }
  .header ul.depth2 {
    min-width: 180px;
  }
  .header ul.depth2 li a {
    padding: 0 14px;
    height: 30px;
    font-size: 13px;
  }
  .header ul.depth2 li a::after {
    top: 10px;
    right: 10px;
  }
  .side-btn__link {
    width: 60px;
    height: 180px;
    padding: 24px 0 18px 4px;
  }
  .side-btn__icon img {
    width: 24px;
    height: 24px;
  }
  .side-btn__text {
    font-size: 18px;
  }
  .topic__text {
    font-size: 16px;
  }
  .department::after {
    position: absolute;
    width: 100%;
    height: 72px;
    content: "";
    background: white;
    bottom: 0;
  }
  .department:has(.ninkashinsei) .ninkashinsei {
    margin-bottom: 30px;
  }
  .department:has(.ninkashinsei)::after {
    height: 115px;
    z-index: -1;
  }
  .department__inner {
    padding: 0 20px;
  }
  .department__list {
    position: relative;
    z-index: 10;
    gap: 10px;
  }
  .department__item {
    flex-basis: calc(33.3% - 8px);
  }
  .department__link {
    padding: 10px 10px 10px;
  }
  .department__text {
    font-size: 14px;
  }
  .department__image-wrap {
    width: 180px;
    height: auto;
  }
  .oc {
    padding: 80px 0 60px;
  }
  .oc__inner {
    padding: 0 20px;
  }
  .oc__main::before {
    top: -64px;
    left: -50px;
    width: 180px;
    height: 180px;
    background-size: contain;
  }
  .oc__sub-item {
    height: 100px;
  }
  .oc__sub-link {
    padding: 8px 20px 0;
  }
  .oc__sub-title {
    font-size: 20px;
  }
  .oc__sub-note {
    font-size: 15px;
  }
  .oc__sub-text {
    margin-top: 3px;
    font-size: 14px;
  }
  .oc__sub-text::before, .oc__sub-text::after {
    width: 30px;
  }
  .news__body {
    gap: 30px;
  }
  .news__inner {
    padding: 0 20px;
  }
  .news__inner::before {
    left: 20px;
    width: 100px;
  }
  .news__title {
    font-size: 36px;
  }
  .news__sidebar {
    width: 145px;
  }
  .news__view-all a {
    font-size: 14px;
  }
  .news__item {
    padding: 10px 0;
  }
  .news__date {
    padding: 0 5px;
    font-size: 16px;
  }
  .news__link {
    font-size: 14px;
  }
  .news__tag {
    width: 90px;
    height: 24px;
    font-size: 12px;
    margin-right: 5px;
  }
  .access__address {
    font-size: 16px;
  }
  .access__route-desc {
    font-size: 14px;
  }
  .access__bus-list li {
    font-size: 14px;
  }
  .access__campus-img-wrap {
    flex-basis: 280px;
  }
  .links {
    padding: 40px 0;
  }
  .footer__top {
    display: block;
  }
  .footer__logo-block {
    margin-bottom: 30px;
  }
  .footer__nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer .ninkashinsei2 {
    float: none;
  }
  .footer__middle {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .faculty-intro__body {
    font-size: 16px;
  }
  .faculty-greeting__content {
    gap: 40px;
  }
  .faculty-greeting__quote {
    line-height: 1.4;
  }
  .faculty-greeting__body {
    font-size: 15px;
    line-height: 1.8;
  }
  .faculty-dept__card-body {
    padding: 32px 30px 36px 30px;
  }
  .faculty-dept__card-columns {
    display: block;
  }
  .faculty-dept__card-image-wrap {
    margin: 0 auto;
  }
  .faculty-dept__card-skills {
    display: block;
    margin-top: 25px;
    padding-top: 20px;
  }
  .faculty-dept__card-skill-list {
    margin-top: 10px;
    line-height: 1.5;
  }
}
@media (min-width: 601px) and (max-width: 1150px) and (max-width: 900px) {
  .header__logo-img {
    height: 58px;
  }
}
@media (min-width: 601px) and (max-width: 1150px) and (max-width: 900px) {
  .header__menu-item a {
    font-size: 14px;
  }
}
/*
@media (min-width: 641px) and (max-width: 960px) {
body {
padding-top: $header-height;
}

.header {
&__inner {
padding: 0 $tablet-padding;
}

&__logo-img {
height: 52px;
}

&__menu {
&-link {
font-size: 0.9375rem;
padding: 6px 10px;
}
}

&__sub-nav {
gap: 12px;
}
}

.topic {
&__inner {
padding-left: $tablet-padding;
padding-right: $tablet-padding;
}

&__text {
font-size: 1rem;
}
}

.visual {
&__image {
height: 460px;
}

&__text-box {
width: 240px;
padding: 30px 20px;
}

}

.department {
padding: 48px 0;

&__inner {
padding: 0 $tablet-padding;
}

&__list {
gap: 20px;
}

&__title {
font-size: 1.25rem;
}

&__image {
height: 150px;
}
}

.oc {
padding: 48px 0;

&__inner {
padding: 0 $tablet-padding;
grid-template-columns: 1fr;
gap: 16px;
}

&__title {
font-size: 2rem;
}

&__main {
height: 180px;
}

&__student-img {
height: 160px;
}
}

.news {
padding: 56px 0;

&__inner {
padding: 0 $tablet-padding;
}

&__title {
font-size: 2.25rem;
}

&__item {
flex-wrap: wrap;
}
}

.access {
padding: 56px 0 48px;

&__inner {
padding: 0 $tablet-padding;
}

&__title {
font-size: 2.25rem;
}

&__map-img {
height: 300px;
}

&__content {
grid-template-columns: 1fr;
}

&__campus-img-wrap {
max-width: 368px;
}
}

.links {
&__inner {
padding: 0 $tablet-padding;
}

&__item {
font-size: 1.0625rem;
padding: 16px;
}
}

.footer {
&__inner {
padding: 0 $tablet-padding;
}

&__top {
grid-template-columns: 200px 1fr;
gap: 40px;
}

&__nav {
grid-template-columns: repeat(2, 1fr);
}

&__middle {
flex-wrap: wrap;
gap: 16px;
}

&__campus-btn {
width: 220px;
height: 48px;
font-size: 0.875rem;
}
}

// --- Faculty (Tablet) ---
.page-title {
padding: 32px 0 48px;

&__label {
font-size: 1.125rem;
}

&__separator {
width: 400px;
}

&__heading {
font-size: 1.75rem;
}
}

.faculty-intro {
padding: 60px 0 80px;

&__image-grid {
gap: 8px;
min-height: 350px;
margin-bottom: 48px;
}

&__vertical-text {
font-size: 1.5rem;

&--sub {
font-size: 1.125rem;
}
}

&__title {
font-size: 2.25rem;
margin-bottom: 32px;
}

&__body {
font-size: 1.125rem;

br {
display: none;
}
}
}

.faculty-greeting {
padding: 60px 0;

&__content {
gap: 32px;
}

&__photo-wrap {
width: 200px;
}
}

.faculty-dept {
padding: 60px 0;

&__card-body {
padding: 24px 28px;
gap: 24px;
}

&__card-name {
font-size: 1.5rem;
}

&__card-subtitle {
font-size: 1.25rem;
}

&__card-desc {
font-size: 1rem;
}

&__card-image-wrap {
width: 260px;
}
}

.faculty-cta {
padding: 48px 0 60px;

&__btn {
font-size: 1.25rem;
width: 480px;
height: 80px;
}
}
}
*/
@media (max-width: 600px) {
  body {
    padding-top: 0;
  }
  .header {
    position: static;
    height: 80px;
  }
  .header__inner {
    padding: 0;
  }
  .header__logo {
    top: 15px;
    left: 20px;
  }
  .header__logo-img {
    height: 53px;
  }
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: flex;
    position: fixed;
    z-index: 100;
  }
  .sp-menu {
    display: block;
  }
  .topic__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .topic__inner .ninkashinsei {
    font-size: 0.8rem;
    margin: 1rem 8% 0;
    text-indent: -0.8rem;
    line-height: 1.35;
  }
  .topic__text {
    font-size: 21px;
    white-space: normal;
  }
  .topic__text span {
    display: block;
  }
  .visual__inner {
    flex-direction: column;
    position: relative;
  }
  .visual__inner-image img {
    width: 100%;
  }
  .department {
    background: #F5F4F0;
    padding: 0 0 40px;
  }
  .department::after {
    position: absolute;
    width: 100vw;
    height: 106px;
    content: "";
    background: white;
    bottom: 0;
  }
  .department .ninkashinsei {
    font-size: 15px;
  }
  .department:has(.ninkashinsei) .ninkashinsei {
    max-width: 335px;
    margin: 0 auto 30px;
  }
  .department:has(.ninkashinsei)::after {
    height: 204px;
    z-index: -1;
  }
  .department__inner {
    position: relative;
    z-index: 10;
    padding: 0 20px;
  }
  .department__list {
    display: block;
    margin-top: 0;
  }
  .department__item {
    margin: 0 auto 13px;
    width: 245px;
    height: 205px;
  }
  .department__item--green {
    background: linear-gradient(to top, rgba(142, 196, 62, 0.2) 50px, #fff 50px);
  }
  .department__item--blue {
    background: linear-gradient(to top, rgba(130, 193, 234, 0.2) 50px, #fff 50px);
  }
  .department__item--pink {
    background: linear-gradient(to top, rgba(240, 146, 174, 0.2) 50px, #fff 50px);
  }
  .department__link {
    padding: 0;
  }
  .department__title {
    font-size: 15px;
    letter-spacing: 3.5px;
    padding: 11px 0 0;
  }
  .department__title sup {
    position: static;
    vertical-align: baseline;
    transform: translateY(-0.15em);
    display: inline-block;
  }
  .department__text {
    font-size: 11px;
    line-height: 13px;
    padding: 0 0 5px;
  }
  .department__image-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .department__image-wrap img {
    width: 150px;
    height: 100px;
  }
  .department__image {
    height: 180px;
  }
  .department__arrow {
    transform: scale(0.7);
  }
  .oc {
    padding: 35px 0 79px;
    position: relative;
    z-index: 10;
    overflow: visible;
  }
  .oc__inner {
    display: block;
    max-width: 335px;
    margin: 0 auto;
    padding: 0;
  }
  .oc__main {
    height: auto;
  }
  .oc__main::before {
    width: 200px;
    height: 200px;
    background-size: contain;
    top: -70px;
    left: -70px;
  }
  .oc__main-image img {
    width: 100%;
  }
  .oc__sub {
    display: block;
    margin-top: 9px;
  }
  .oc__sub-item {
    width: 100%;
    height: auto;
    min-height: 74px;
  }
  .oc__sub-item + .oc__sub-item {
    margin-top: 21px;
  }
  .oc__sub-link {
    padding: 15px 20px;
  }
  .oc__sub-corner {
    width: 86px;
    height: 30px;
    top: -12px;
  }
  .oc__sub-label {
    padding-right: 10px;
    font-size: 11.5px;
    width: 80px;
    height: 24px;
  }
  .oc__sub-title {
    padding-top: 2px;
    font-size: 17px;
    letter-spacing: 0.5px;
  }
  .oc__sub-note {
    margin-left: 4px;
    font-size: 11px;
  }
  .oc__sub-text {
    font-size: 11px;
    margin: 0;
  }
  .oc__sub-text::before, .oc__sub-text::after {
    width: 30px;
  }
  .news {
    padding: 40px 0 65px;
  }
  .news__inner {
    padding: 0 20px;
  }
  .news__inner::before {
    left: 20px;
    width: 110px;
  }
  .news__title {
    font-size: 31px;
    line-height: 40px;
    margin-bottom: 23px;
  }
  .news__body {
    flex-direction: column;
    gap: 0;
  }
  .news__sidebar {
    display: contents;
  }
  .news__categories {
    flex-direction: row;
    width: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    order: 0;
    margin-bottom: 24px;
  }
  .news__category-btn {
    white-space: nowrap;
    width: 100px;
    height: 32px;
    padding: 0;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-size: 0.9375rem;
    background: none;
    color: #333;
  }
  .news__category-btn::before {
    display: none;
  }
  .news__category-btn.is-active {
    background-color: #fff;
    border-color: #fff;
    color: #a32b4b;
  }
  .news__view-all {
    display: flex;
    order: 2;
    margin: 20px 0 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    border: none;
  }
  .news__list {
    order: 1;
  }
  .news__item {
    display: block;
    position: relative;
    padding: 0 !important;
  }
  .news__date {
    position: absolute;
    top: 14px;
    left: 0;
    font-size: 18px;
    padding: 0;
  }
  .news__tag {
    position: absolute;
    top: 12px;
    right: 0;
    width: 100px;
    height: 24px;
    margin: 0;
  }
  .news__badge {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 4px;
  }
  .news__link {
    display: block;
    position: relative;
    flex-basis: 100%;
    width: 100%;
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.6;
    padding: 44px 0 10px;
  }
  .access {
    padding: 48px 0 40px;
  }
  .access .ninkashinsei {
    font-size: 0.85rem;
    text-indent: -0.85rem;
    margin-left: 0.85rem;
  }
  .access__inner {
    padding: 0 20px;
  }
  .access__inner::before {
    top: -48px;
    left: 20px;
    width: 110px;
  }
  .access__title {
    font-size: 32px;
    line-height: 25px;
    margin-bottom: 30px;
  }
  .access__map-wrap {
    height: 300px;
  }
  .access__map-wrap iframe {
    width: 100%;
    height: 100%;
  }
  .access__campus-header {
    flex-direction: column;
    gap: 4px;
  }
  .access__campus-name {
    font-size: 18px;
    margin: 0 0 3px;
    line-height: 20px;
  }
  .access__address {
    margin-bottom: 5px;
    font-size: 16px;
  }
  .access__note {
    font-size: 13px;
  }
  .access__separator {
    margin-top: 14px;
  }
  .access__content {
    display: block;
  }
  .access__route-title {
    font-size: 16px;
  }
  .access__route-title img {
    width: 24px;
  }
  .access__route-desc {
    font-size: 14px;
    padding-left: 33px;
  }
  .access__bus-list {
    padding-left: 32px;
  }
  .access__bus-list > li {
    font-size: 14.7px;
    line-height: 1.4;
  }
  .access__bus-list > li + li {
    margin-top: 5px;
  }
  .access__bus-list > li::before {
    top: 9px;
  }
  .access__campus-img {
    width: 245px;
  }
  .access__campus-img-wrap {
    display: flex;
    justify-content: center;
    padding-top: 15px;
  }
  .top_oc-cta {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px;
  }
  .top_oc-cta .oc-cta__btn {
    width: 295px;
    height: 64px;
    letter-spacing: 3px;
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #e50111;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease;
    text-decoration: none;
    opacity: 1;
  }
  .top_oc-cta .oc-cta__btn:hover {
    opacity: 0.85;
  }
  .top_oc-cta .oc-cta__btn img {
    width: 25px;
  }
  .links {
    padding: 30px 0 32px;
  }
  .links__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
    padding: 0 20px;
  }
  .links__item {
    width: 245px;
    min-height: 56px;
    padding: 0;
  }
  .footer__inner {
    padding: 0 20px;
    max-width: 375px;
    margin: 0 auto;
  }
  .footer .ninkashinsei2 {
    font-size: 0.8rem;
    float: none;
  }
  .footer__logo-img {
    width: 268px;
    height: 64px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 0 19px;
  }
  .footer__address {
    line-height: 24px;
  }
  .footer__nav {
    flex-wrap: wrap;
    gap: 25px;
  }
  .footer__nav-column {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .footer__nav-column:nth-child(odd) {
    flex-basis: 170px;
  }
  .footer__nav-column:nth-child(even) {
    flex-basis: 140px;
  }
  .footer__nav-title {
    padding-bottom: 7px;
    margin-bottom: 7px;
    font-size: 14.5px;
  }
  .footer__nav-list {
    font-size: 14.5px;
  }
  .footer__nav-list li {
    padding-bottom: 3.4px;
  }
  .footer__middle {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 35px;
  }
  .footer__campus-btns {
    display: block;
    width: 100%;
    padding: 3px 0;
  }
  .footer__campus-btn {
    width: auto;
    height: 48px;
    font-size: 0.875rem;
  }
  .footer__campus-btn + .footer__campus-btn {
    margin-top: 10px;
  }
  .footer__middle-right {
    width: 100%;
    justify-content: space-between;
  }
  .footer__copyright {
    font-size: 0.8125rem;
  }
  .side-fixed {
    display: none;
  }
  .page-title {
    padding: 15px 0 14px;
  }
  .page-title__inner {
    padding: 0 20px;
  }
  .page-title__label {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .page-title__separator {
    width: 100%;
    margin-bottom: 12px;
  }
  .page-title__heading {
    font-size: 21px;
    letter-spacing: 3px;
  }
  .page-title__notice {
    text-align: center;
    margin: 1rem 10% 0;
    font-size: 0.85rem;
  }
  .faculty-intro {
    padding-bottom: 73px;
  }
  .faculty-intro__inner {
    padding: 0 30px;
    background-image: url(../media/images/faculty/intro-sp.jpg);
    background-size: 567px auto;
  }
  .faculty-intro__text-area {
    padding-top: 566px;
  }
  .faculty-intro__title {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 27px;
    text-align: center;
  }
  .faculty-intro__body {
    font-size: 14.5px;
    letter-spacing: 1px;
    line-height: 25px;
    text-align: left;
  }
  .faculty-intro__body p {
    margin-bottom: 20px;
  }
  .faculty-intro__body br {
    display: none;
  }
  .faculty-greeting {
    padding: 0 0 56px;
  }
  .faculty-greeting__inner {
    padding: 0 30px;
  }
  .faculty-greeting__heading-wrap {
    margin-bottom: 32px;
    gap: 16px;
  }
  .faculty-greeting__heading {
    font-size: 20px;
    line-height: 1;
    width: 242px;
    height: 48px;
    background-image: url(../media/images/faculty/segment-sp.svg);
    background-size: contain;
  }
  .faculty-greeting__heading-line {
    width: 40px;
  }
  .faculty-greeting__content {
    margin-top: 58px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .faculty-greeting__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .faculty-greeting__photo-wrap {
    width: 240px;
    height: auto;
    margin-bottom: 12px;
  }
  .faculty-greeting__position {
    font-size: 14px;
  }
  .faculty-greeting__name {
    font-size: 18px;
    line-height: 24px;
  }
  .faculty-greeting__quote {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .faculty-greeting__body {
    font-size: 15px;
    line-height: 28px;
  }
  .faculty-dept {
    padding: 64px 0 48px;
  }
  .faculty-dept__inner {
    padding: 0 20px;
    gap: 16px;
  }
  .faculty-dept__card {
    border-radius: 12px;
  }
  .faculty-dept__card-columns {
    display: contents;
  }
  .faculty-dept__card-body {
    flex-direction: column;
    padding: 30px 21px 26px;
    gap: 20px;
  }
  .faculty-dept__card-name-wrap {
    display: block;
    margin-bottom: 13px;
  }
  .faculty-dept__card-name {
    font-size: 21px;
    letter-spacing: 4px;
  }
  .faculty-dept__card-name-en {
    margin-top: 2px;
    font-size: 13px;
    letter-spacing: 0.3px;
  }
  .faculty-dept__card-subtitle {
    font-size: 19px;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
  }
  .faculty-dept__card-desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
  }
  .faculty-dept__card-skills {
    margin: 0 0 0 -5px;
    padding-top: 14px;
    border-top: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .faculty-dept__card-skill-badge {
    width: 164px;
    height: 32px;
  }
  .faculty-dept__card-skill-label {
    font-size: 0.6875rem;
  }
  .faculty-dept__card-skill-value {
    font-size: 1rem;
  }
  .faculty-dept__card-skill-list {
    padding: 0 0 0 5px;
    font-size: 14px;
    line-height: 24px;
  }
  .faculty-dept__card-skill-dot {
    font-size: 0.875rem;
  }
  .faculty-dept__card-image-wrap {
    width: 240px;
  }
  .faculty-dept__card-link {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
  }
  .faculty-dept__card-arrow {
    position: absolute;
    top: 19px;
    right: 19px;
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    transform: scale(0.8);
  }
  .madoshita {
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem 8% 0;
  }
  .madoshita p {
    text-indent: -1rem;
    margin-left: 1rem;
    line-height: 1.35;
  }
  .faculty-cta {
    padding: 36px 0 48px;
  }
  .faculty-cta__inner {
    padding: 0 20px;
  }
  .faculty-cta__btn {
    font-size: 1.125rem;
    width: 100%;
    max-width: 400px;
    height: 72px;
  }
  .faculty-cta__icon {
    width: 28px;
    height: 28px;
  }
}
.dept-intro {
  padding: 0 0 75px;
  background-color: #fff;
}
.dept-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  max-width: 1072px;
  position: relative;
}
.dept-intro__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f7f5f3;
}
.dept-intro__image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 35px;
}
.dept-intro__image {
  width: 100%;
  height: auto;
  display: block;
}
.dept-intro__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.dept-intro__text {
  flex: 1;
}
.dept-intro__title {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin-bottom: 6px;
}
.dept-intro__body {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 18px;
  line-height: 32px;
  color: #333;
  margin-bottom: 0;
  letter-spacing: 0.4px;
}
.dept-intro__lead_plus {
  margin: 20px auto 0;
  padding: 24px 70px 20px;
}
.dept-intro__lead_plus.green {
  border: 4px #F1F8E8 solid;
}
.dept-intro__lead_plus.blue {
  border: 4px #EEF6FC solid;
}
.dept-intro__lead_plus.pink {
  border: 4px #FDF0F5 solid;
}
.dept-intro__lead_plus p {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 30px;
}
.dept-intro__skills {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 0 0 368px;
}
.dept-intro__skill-badge {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dept-intro__skill-badge.green {
  background-color: #81bc35;
}
.dept-intro__skill-badge.blue {
  background-color: #71b6e5;
}
.dept-intro__skill-badge.pink {
  background-color: #ed85a9;
}
.dept-intro__skill-label {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  padding-bottom: 1px;
}
.dept-intro__skill-value {
  font-size: 21px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  transform: translatex(2px);
}
.dept-intro__skill-list {
  list-style: none;
  padding-top: 8px;
}
.dept-intro__skill-item {
  margin-bottom: 9px;
  font-size: 18px;
  color: #333;
  line-height: 20px;
}
.dept-intro__skill-dot {
  color: #8ec43e;
  margin-right: 4px;
}
.dept-intro__skill-dot.blue {
  color: #71b6e5;
}
.dept-intro__skill-dot.pink {
  color: #ed85a9;
}
.dept-features {
  padding: 0 0 115px;
}
.dept-features__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  max-width: 1070px;
}
.dept-features__heading-area {
  position: relative;
  height: 140px;
}
.dept-features__heading-area::after {
  position: absolute;
  top: 73px;
  right: 0;
  display: block;
  content: "";
  width: calc(100% - 240px);
  height: 3px;
  background: #8ec43e;
}
.dept-features__heading-area.blue::after {
  background: #71b6e5;
}
.dept-features__heading-area.pink::after {
  background: #ed85a9;
}
.dept-features__heading {
  position: absolute;
  top: 0;
  left: 21px;
}
.dept-features__heading-text {
  font-size: 2.25rem;
  font-weight: bold;
  color: #333;
}
.dept-features__heading-en {
  position: absolute;
  top: 33px;
  right: 0;
  font-family: "Roboto", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16.5px;
  color: #989a9e;
  white-space: nowrap;
  margin-bottom: 4px;
}
.dept-features__card {
  position: relative;
  padding: 0;
  margin-bottom: 45px;
}
.dept-features__card:last-child {
  margin-bottom: 0;
}
.dept-features__card-point {
  position: absolute;
  top: -24px;
  right: 0;
  width: 141px;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #81bc35;
}
.dept-features__card-point.blue {
  border-color: #71B6E5;
}
.dept-features__card-point.pink {
  border-color: #ED85A9;
}
.dept-features__card-point-label {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 27px;
  font-weight: 500;
  color: #81bc35;
  line-height: 1;
}
.dept-features__card-point-label.blue {
  color: #71B6E5;
}
.dept-features__card-point-label.pink {
  color: #ED85A9;
}
.dept-features__card-point-number {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 42px;
  font-weight: 500;
  color: #81bc35;
  line-height: 1;
}
.dept-features__card-point-number.blue {
  color: #71B6E5;
}
.dept-features__card-point-number.pink {
  color: #ED85A9;
}
.dept-features__card-image-wrap {
  position: absolute;
  width: 360px;
  height: 240px;
  z-index: 10;
}
.dept-features__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dept-features__card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dept-features__card-bg {
  position: relative;
  margin: 52px 0 0 25%;
  padding: 49px 26px 32px 160px;
  background-color: rgba(142, 196, 62, 0.12);
}
.dept-features__card-bg.blue {
  background-color: rgba(113, 182, 229, 0.12);
}
.dept-features__card-bg.pink {
  background-color: rgba(237, 133, 169, 0.12);
}
.dept-features__card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  margin-bottom: 11px;
}
.dept-features__card-desc {
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.dept-curriculum {
  padding: 0 0 63px;
  background-color: #f5f4f0;
  margin-bottom: 48px;
}
.dept-curriculum__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.dept-curriculum__heading-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 56px;
}
.dept-curriculum__heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}
.dept-curriculum__heading-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: #333;
}
.dept-curriculum__image-wrap {
  margin-bottom: 50px;
  text-align: center;
  background-color: #fff;
  padding: 24px;
  border-radius: 0;
}
.dept-curriculum__image {
  width: 100%;
  height: auto;
  display: block;
}
.dept-curriculum__btn-wrap {
  text-align: center;
}
.dept-curriculum__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #5f6369;
  color: #f5f4f0;
  font-size: 16px;
  font-weight: bold;
  min-width: 310px;
  height: 56px;
  padding: 0 48px;
  border-radius: 8px;
  text-decoration: none;
  opacity: 1;
  transition: background-color 0.2s ease;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.dept-curriculum__btn:hover {
  background-color: #808286;
  opacity: 1;
}
.dept-curriculum__btn img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translatey(-50%);
}
.dept-curriculum__btn-text {
  line-height: 1;
}
.dept-curriculum__btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.dept-career {
  padding: 0 0 57px;
  background-color: rgba(142, 196, 62, 0.75);
  margin-bottom: 20px;
}
.dept-career.blue {
  background-color: rgba(113, 182, 229, 0.75);
}
.dept-career.pink {
  background-color: rgba(237, 133, 169, 0.75);
}
.dept-career__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.dept-career__heading-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.dept-career__columns {
  display: flex;
  gap: 24px;
}
.dept-career__box {
  flex: 1;
  background-color: #fff;
  padding: 24px 32px 27px;
  position: relative;
  margin-bottom: 0;
}
.dept-career__box-wide {
  flex: 1 1 300px;
}
@media (max-width: 1000px) {
  .dept-career__box-wide {
    flex-basis: 200px;
  }
}
.dept-career__box-title {
  position: relative;
  font-size: 20px;
  letter-spacing: 2.4px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  height: 56px;
}
.dept-career__box-title::before, .dept-career__box-title::after {
  content: "";
  flex: 1;
  height: 6px;
  border-top: 1px solid #8ec43e;
  border-bottom: 1px solid #8ec43e;
}
.dept-career__box-title::before {
  margin-right: 36px;
}
.dept-career__box-title::after {
  margin-left: 36px;
}
.dept-career__box-title.blue::before, .dept-career__box-title.blue::after {
  border-color: #71b6e5;
}
.dept-career__box-title.pink::before, .dept-career__box-title.pink::after {
  border-color: #ed85a9;
}
.dept-career__box-columns {
  display: flex;
  gap: 8px;
}
.dept-career__box-list {
  list-style: none;
}
.dept-career__box-item {
  font-size: 16px;
  line-height: 24px;
  color: #333;
  margin-bottom: 4px;
}
.dept-career__box-item > div {
  text-indent: -1em;
  margin-left: 1em;
}
.dept-career__box-item-columns {
  display: flex;
}
.dept-career__box-dot {
  color: #8ec43e;
  margin-right: 2px;
}
.dept-career__box-dot.blue {
  color: #71b6e5;
}
.dept-career__box-dot.pink {
  color: #ed85a9;
}
.dept-career__box-note-mark {
  font-size: 0.8125rem;
}
.dept-career__box-note {
  font-size: 0.8125rem;
  color: #333;
  margin-top: 4px;
}
.dept-career__box-detail {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-top: -2px;
}
@media (min-width: 601px) and (max-width: 1150px) {
  .dept-intro__inner {
    padding: 0 30px;
  }
  .dept-intro__title {
    font-size: 1.5rem;
  }
  .dept-intro__body {
    font-size: 1rem;
  }
  .dept-features__inner {
    padding: 0 30px;
  }
  .dept-features__heading {
    left: 0;
  }
  .dept-features__card-image-wrap {
    width: 280px;
    height: auto;
  }
  .dept-features__card-bg {
    padding: 49px 26px 32px 120px;
  }
  .dept-features__card-title {
    font-size: 18px;
  }
  .dept-features__card-desc {
    font-size: 15px;
    line-height: 26px;
  }
  .dept-career {
    padding: 0 0 60px;
  }
  .dept-career__inner {
    padding: 0 30px;
  }
}
@media (max-width: 640px) {
  .page-title__label::after {
    width: 235px;
  }
  .dept-intro {
    padding: 0 0 35px;
  }
  .dept-intro__inner {
    padding: 0;
  }
  .dept-intro__image-wrap {
    margin-bottom: 35px;
  }
  .dept-intro__content {
    padding: 0 20px;
    flex-direction: column;
    gap: 19px;
  }
  .dept-intro__title {
    font-size: 23.6px;
    margin-bottom: 2px;
  }
  .dept-intro__body {
    font-size: 16px;
    line-height: 29px;
  }
  .dept-intro__skills {
    gap: 16px;
    flex-basis: auto;
  }
  .dept-intro__skill-badge {
    width: 102px;
    height: 102px;
  }
  .dept-intro__skill-label {
    font-size: 12px;
  }
  .dept-intro__skill-value {
    font-size: 18px;
  }
  .dept-intro__skill-list {
    padding-top: 4px;
  }
  .dept-intro__skill-item {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .dept-intro__lead_plus {
    margin: 20px 6% 0;
    padding: 20px;
  }
  .dept-features {
    padding: 0 0 80px;
  }
  .dept-features__inner {
    padding: 0;
  }
  .dept-features__heading-area {
    height: 103px;
    margin-bottom: 22px;
  }
  .dept-features__heading-area::after {
    width: 100%;
    top: auto;
    bottom: 0;
  }
  .dept-features__heading {
    left: 50%;
    transform: translatex(-50%);
  }
  .dept-features__heading img {
    width: 137px;
  }
  .dept-features__heading-en {
    top: 68px;
    left: 50%;
    right: auto;
    transform: translatex(-50%);
    font-size: 14.5px;
  }
  .dept-features__card {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .dept-features__card-point {
    top: 79px;
  }
  .dept-features__card-image-wrap {
    width: 237px;
    height: 158px;
  }
  .dept-features__card-text {
    padding: 0;
  }
  .dept-features__card-bg {
    margin: 80px 0 0 40px;
    padding: 149px 22px 21px 33px;
  }
  .dept-features__card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .dept-features__card-desc {
    font-size: 15px;
    line-height: 28px;
  }
  .dept-curriculum {
    padding: 0 0 60px;
    margin-bottom: 38px;
  }
  .dept-curriculum__inner {
    padding: 0 20px;
  }
  .dept-curriculum__heading-wrap {
    margin-bottom: 25px;
  }
  .dept-curriculum__heading {
    font-size: 20px;
  }
  .dept-curriculum__image-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 17px;
  }
  .dept-curriculum__image {
    width: auto;
    max-width: 1000%;
    height: 350px;
  }
  .dept-curriculum__btn-wrap {
    padding: 0 20px;
  }
  .dept-curriculum__btn {
    width: 100%;
    min-width: 300px;
    height: 50px;
  }
  .dept-career {
    padding: 0 0 46px;
  }
  .dept-career__inner {
    padding: 0 40px;
  }
  .dept-career__heading-wrap {
    margin-bottom: 39px;
  }
  .dept-career__heading {
    font-size: 1.25rem;
  }
  .dept-career__columns {
    flex-direction: column;
    gap: 24px;
  }
  .dept-career__box {
    padding: 20px 20px 23px;
  }
  .dept-career__box-columns {
    flex-direction: column;
    gap: 0;
  }
  .dept-career__box-title {
    font-size: 16px;
    height: 39px;
    margin-bottom: 6px;
  }
  .dept-career__box-title::before {
    margin-right: 12px;
  }
  .dept-career__box-title::after {
    margin-left: 12px;
  }
  .dept-career__box-item {
    font-size: 15px;
    margin-bottom: 0;
  }
  .dept-career__box-item-columns {
    flex-direction: column;
  }
  .dept-career__box-dot {
    margin-right: 1px;
  }
  .dept-career__box-detail {
    padding: 0 0 0 17px;
    font-size: 15px;
    line-height: 23px;
  }
}
.dept-blue .dept-intro__skill-badge {
  background-color: #82c1ea;
}
.dept-blue .dept-intro__skill-dot {
  color: #82c1ea;
}
.dept-blue .dept-features__heading-number::before {
  box-shadow: -25px 25px 0 3px #82C1EA, -34px 12px 0 3px #82C1EA, -36px -3px 0 3px #82C1EA, -31px -18px 0 3px #82C1EA, -21px -29px 0 3px #82C1EA, -6px -35px 0 3px #82C1EA, 9px -35px 0 3px #82C1EA, 23px -28px 0 3px #82C1EA, 33px -15px 0 3px #82C1EA;
}
.dept-blue .dept-features__heading-line {
  background-color: #82C1EA;
}
.dept-blue .dept-features__card-point {
  border-bottom-color: #71b6e5;
}
.dept-blue .dept-features__card-point-label {
  color: #71b6e5;
}
.dept-blue .dept-features__card-point-number {
  color: #71b6e5;
}
.dept-blue .dept-features__card-text {
  background-color: rgba(130, 193, 234, 0.12);
}
.dept-blue .dept-career {
  background-color: rgba(130, 193, 234, 0.75);
}
.dept-blue .dept-career__box-dot {
  color: #82c1ea;
}
.dept-pink .dept-intro__skill-badge {
  background-color: #f092ae;
}
.dept-pink .dept-intro__skill-dot {
  color: #f092ae;
}
.dept-pink .dept-features__heading-line {
  background-color: #F092AE;
}
.dept-pink .dept-features__card-point {
  border-bottom-color: #ed85a9;
}
.dept-pink .dept-features__card-point-label {
  color: #ed85a9;
}
.dept-pink .dept-features__card-point-number {
  color: #ed85a9;
}
.dept-pink .dept-features__card-text {
  background-color: rgba(240, 146, 174, 0.12);
}
.dept-pink .dept-career {
  background-color: rgba(240, 146, 174, 0.75);
}
.dept-pink .dept-career__box-dot {
  color: #f092ae;
}
.dept-career__box-support {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px dashed #ddd;
  gap: 20px;
}
@media (max-width: 600px) {
  .dept-career__box-support {
    display: block;
  }
}
.dept-career__box-support-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  color: #333;
  width: 184px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: rgba(240, 146, 174, 0.2);
}
@media (max-width: 600px) {
  .dept-career__box-support-label {
    margin-bottom: 5px;
  }
}
.dept-career__box-support-list {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  padding-top: 4px;
}
@media (max-width: 600px) {
  .dept-career__box-support-list .dept-career__box-dot:not(:first-child)::before {
    content: "\a";
    white-space: pre;
  }
}
.grad-intro {
  position: relative;
  padding: 0 0 25px;
  background-color: #fff;
}
.grad-intro::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 150px;
  background-color: #f7f5f3;
  content: "";
}
.grad-intro__page-title {
  padding: 60px 0;
}
.grad-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 0;
  padding: 68px 65px;
  position: relative;
  z-index: 1;
  max-width: 1100px;
}
.grad-intro__content {
  flex: 1;
}
.grad-intro__en {
  font-family: "Roboto", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 18.6px;
  color: #ec715f;
  margin-bottom: 16px;
}
.grad-intro__title {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}
.grad-intro__body {
  font-family: "YuMincho", "Yu Mincho", serif;
  font-size: 18px;
  line-height: 32px;
  color: #333;
}
.grad-intro__image-wrap {
  flex-shrink: 0;
  width: 498px;
  padding: 48px 0 0;
}
.grad-intro__image {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}
.grad-major {
  padding: 0 0 107px;
  background-color: #F5F4F0;
}
.grad-major__heading-wrap {
  display: flex;
  justify-content: center;
  padding: 0 0 20px;
  text-align: center;
  margin-bottom: 12px;
}
.grad-major__heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
.grad-major__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  max-width: 1073px;
}
.grad-major__top-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 39px;
}
.grad-major__course {
  flex: 1;
}
.grad-major__course-title {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  color: #333;
  padding-bottom: 12px;
  border-bottom: 3px solid #ec715f;
  margin: 0 0 34px;
  display: inline-block;
}
.grad-major__course-title-sub {
  font-size: 18px;
  font-weight: normal;
  font-feature-settings: "palt";
}
.grad-major__course-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.grad-major__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  width: 325px;
}
.grad-major__info-item {
  border: 6px solid white;
  padding: 12px 24px;
  text-align: center;
}
.grad-major__info-label {
  display: block;
  font-size: 16px;
  color: #5f6369;
  margin-bottom: 1px;
}
.grad-major__info-value {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}
.grad-major__areas {
  display: flex;
  gap: 28px;
  margin-bottom: 50px;
}
.grad-major__area {
  flex: 1;
}
.grad-major__area-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EC715F;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  height: 44px;
  border-radius: 0;
  margin-bottom: 20px;
  text-align: center;
}
.grad-major__area-desc {
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.grad-major__topic {
  background-color: #fff;
  border-radius: 0;
  padding: 32px 40px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.grad-major__topic-badge {
  position: absolute;
  top: -26px;
  left: -15px;
}
.grad-major__topic-content {
  display: flex;
  align-items: flex-start;
  gap: 33px;
  margin: 0 70px;
}
.grad-major__topic-title {
  font-size: 20px;
  line-height: 38px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  flex-shrink: 0;
}
.grad-major__topic-title-line {
  display: block;
  position: relative;
}
.grad-major__topic-title-line::after {
  content: "";
  display: block;
  width: 197px;
  height: 10px;
  background-color: rgba(236, 113, 95, 0.2);
  margin-top: -13px;
  margin-left: -10px;
}
.grad-major__topic-desc {
  padding-top: 10px;
  font-size: 16px;
  line-height: 28px;
  color: #333;
}
.grad-consultation {
  padding: 70px 0 20px;
}
.grad-consultation__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  padding: 0 113px;
}
@media (max-width: 1180px) {
  .grad-consultation__inner {
    padding: 0 40px;
  }
}
@media (max-width: 1180px) {
  .grad-consultation__inner {
    padding: 0 40px;
  }
}
.grad-consultation__heading-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 26px;
  padding: 12px 0;
}
.grad-consultation__heading-wrap::after, .grad-consultation__heading-wrap::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #EC715F;
}
.grad-consultation__heading-wrap::before {
  top: 29px;
}
.grad-consultation__heading-wrap::after {
  top: 35px;
}
.grad-consultation__heading {
  position: relative;
  text-align: center;
  z-index: 10;
  font-size: 25px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #333;
  background: white;
  width: 280px;
}
.grad-consultation__content {
  display: flex;
  gap: 43px;
  margin-bottom: 34px;
}
.grad-consultation__left {
  flex: 1;
  border-right: 1px dotted #ccc;
}
.grad-consultation__right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 0;
  flex-shrink: 0;
}
.grad-consultation__dates {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.grad-consultation__date-row {
  display: flex;
  align-items: center;
  margin-bottom: 29px;
  gap: 18px;
}
.grad-consultation__date-row:last-child {
  margin-bottom: 0;
}
.grad-consultation__date-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ec715f;
  color: #fff;
  font-size: 14.7px;
  border-radius: 20px;
  width: 90px;
  height: 30px;
  line-height: 30px;
}
.grad-consultation__date-text {
  font-size: 18.6px;
  line-height: 19px;
  color: #333;
}
.grad-consultation__venue {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}
.grad-consultation__venue-info {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.grad-consultation__image-wrap {
  flex-shrink: 0;
  width: 225px;
  height: 150px;
}
.grad-consultation__image {
  width: 225px;
  height: 150px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.grad-consultation__note {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 20px;
}
.grad-consultation__note-dot {
  color: #ec715f;
  font-size: 1rem;
  line-height: 1.6;
  flex-shrink: 0;
}
.grad-consultation__note-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.grad-consultation__link {
  display: inline-block;
  color: #03c;
  border-bottom: 1px solid #03c;
  margin-left: 2px;
  transition: opacity 0.2s ease;
}
.grad-consultation__link:hover {
  opacity: 0.75;
}
.grad-consultation__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  padding-top: 39px;
}
.grad-consultation__btn {
  position: relative;
  display: block;
  text-align: center;
  gap: 8px;
  background-color: #5F6369;
  color: #fff;
  font-size: 16px;
  line-height: 56px;
  font-weight: 700;
  width: 310px;
  height: 56px;
  padding: 0;
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  transition: opacity 0.2s ease;
}
.grad-consultation__btn:hover {
  opacity: 0.75;
}
.grad-consultation__btn-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translatey(-50%);
  right: 20px;
}
.grad-photo {
  padding: 0 0 124px;
}
.grad-photo__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  max-width: 1090px;
}
.grad-photo__image {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}
@media (min-width: 601px) and (max-width: 960px) {
  .grad-intro {
    padding: 0 0 60px;
  }
  .grad-intro__inner {
    flex-direction: column;
    padding: 32px 30px;
    margin-top: -30px;
  }
  .grad-intro__image-wrap {
    width: 100%;
  }
  .grad-major {
    padding: 0 0 60px;
  }
  .grad-major__top-row {
    flex-direction: column;
    gap: 24px;
  }
  .grad-major__info {
    flex-direction: row;
    width: 100%;
    gap: 16px;
  }
  .grad-major__info-item {
    flex: 1;
  }
  .grad-major__areas {
    flex-direction: column;
    gap: 32px;
  }
  .grad-major__topic-content {
    flex-direction: column;
    gap: 12px;
    margin-left: 60px;
  }
  .grad-consultation__venue {
    font-size: 15px;
  }
  .grad-consultation__venue-info {
    font-size: 15px;
  }
  .grad-consultation__image {
    width: 100%;
    height: auto;
  }
  .grad-consultation__image-wrap {
    width: 180px;
    height: auto;
  }
  .grad-consultation__date-text {
    font-size: 15px;
  }
  .grad-consultation__date-row {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .grad-intro {
    padding: 0 0 57px;
  }
  .grad-intro__page-title {
    padding: 31px 0;
  }
  .grad-intro__inner {
    flex-direction: column;
    padding: 30px 20px;
    gap: 28px;
  }
  .grad-intro__en {
    text-align: center;
    font-size: 14.6px;
  }
  .grad-intro__title {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .grad-intro__body {
    font-size: 16px;
    line-height: 28px;
  }
  .grad-intro__image-wrap {
    padding-top: 0;
    width: 100%;
  }
  .grad-major {
    padding: 0 0 70px;
  }
  .grad-major__inner {
    padding: 0 20px;
  }
  .grad-major__heading-wrap {
    margin-bottom: 12px;
  }
  .grad-major__heading {
    font-size: 1.25rem;
  }
  .grad-major__top-row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  .grad-major__course-title {
    font-size: 1.25rem;
    margin-bottom: 23px;
  }
  .grad-major__course-title-sub {
    font-size: 1rem;
  }
  .grad-major__info {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .grad-major__info-item {
    padding: 12px 16px;
  }
  .grad-major__areas {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 46px;
  }
  .grad-major__area-label {
    font-size: 1rem;
    height: 36px;
    margin-bottom: 10px;
  }
  .grad-major__area-desc {
    font-size: 0.9375rem;
    line-height: 28px;
  }
  .grad-major__topic {
    padding: 32px 35px 34px;
    margin: 0 19px;
  }
  .grad-major__topic-badge {
    width: 90px;
    top: -22px;
    left: -19px;
  }
  .grad-major__topic-content {
    display: block;
    margin: 0;
  }
  .grad-major__topic-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.125rem;
    white-space: normal;
  }
  .grad-consultation {
    padding: 40px 0 0;
  }
  .grad-consultation__inner {
    padding: 0 20px;
  }
  .grad-consultation__heading-wrap {
    margin-bottom: 0;
  }
  .grad-consultation__heading-wrap::before {
    top: 26px;
  }
  .grad-consultation__heading-wrap::after {
    top: 32px;
  }
  .grad-consultation__heading {
    font-size: 1.25rem;
    width: 220px;
  }
  .grad-consultation__content {
    flex-direction: column;
    gap: 0;
    margin-bottom: 25px;
  }
  .grad-consultation__left {
    border-right: none;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ccc;
  }
  .grad-consultation__right {
    flex-direction: column;
    padding: 0 20px;
  }
  .grad-consultation__date-row {
    align-items: flex-start;
    gap: 11px;
    padding: 12px 20px;
    margin-bottom: -3px;
  }
  .grad-consultation__date-badge {
    flex: 0 0 124px;
    margin-top: 5px;
    width: 124px;
    height: 30px;
  }
  .grad-consultation__date-text {
    font-size: 16px;
    line-height: 22px;
  }
  .grad-consultation__venue {
    flex-direction: row;
    padding: 16px 0;
  }
  .grad-consultation__venue-badge {
    width: 82px;
    height: 30px;
  }
  .grad-consultation__note {
    margin-bottom: 6px;
  }
  .grad-consultation__note-text {
    font-size: 15px;
    line-height: 24px;
  }
  .grad-consultation__image-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .grad-consultation__image {
    height: auto;
  }
  .grad-consultation__buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 45px;
    margin-bottom: 65px;
  }
  .grad-consultation__btn {
    font-size: 14px;
    width: 295px;
    height: 48px;
    line-height: 48px;
  }
  .grad-consultation__btn-icon {
    right: 12px;
    width: 24px;
    height: 24px;
  }
  .grad-photo {
    padding: 0 0 104px;
  }
  .grad-photo__inner {
    padding: 0;
  }
}
#main .topic_list .page-title {
  padding: 62px 0 61px;
}
@media (max-width: 768px) {
  #main .topic_list .page-title {
    padding: 34px 0 28px;
  }
}
.news__wrap {
  position: relative;
  padding: 0;
}
@media (max-width: 768px) {
  .news__wrap {
    padding: 0;
  }
}
.news__wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 150px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f7f5f3;
}
@media (max-width: 901px) {
  .news__wrap::before {
    display: none;
  }
}
.news__wrap--inner {
  margin: 0 auto;
  padding: 10px;
  max-width: 900px;
  background-color: #fff;
}
.news__wrap--body {
  padding: 70px 20px 90px;
  background-color: #f7f5f3;
}
@media (max-width: 1024px) {
  .news__wrap--body {
    padding: 40px 15px 50px;
  }
}
@media (max-width: 767px) {
  .news__wrap--body {
    padding: 10px 15px 40px;
  }
}
.news__wrap .paging {
  padding: 0 10px;
}
@media (max-width: 768px) {
  .news__wrap .paging {
    padding: 0;
  }
}
.news__wrap .paging .pagination {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  align-items: center;
  margin: 80px 0;
  gap: 25px;
}
@media (max-width: 1024px) {
  .news__wrap .paging .pagination {
    margin: 45px 0;
  }
}
@media (max-width: 600px) {
  .news__wrap .paging .pagination {
    margin: 40px 0;
    gap: 15px;
  }
}
.news__wrap .paging .pagination li span, .news__wrap .paging .pagination li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  height: 100%;
}
.news__wrap .paging .pagination li:not(.prev):not(.next) {
  flex: 0 0 30px;
  aspect-ratio: 1;
}
.news__wrap .paging .pagination li:not(.prev):not(.next).page a, .news__wrap .paging .pagination li:not(.prev):not(.next).page span {
  border: 1px solid #a32b4b;
  color: #a32b4b;
}
.news__wrap .paging .pagination li:not(.prev):not(.next) span, .news__wrap .paging .pagination li:not(.prev):not(.next) a {
  border-radius: 50%;
}
.news__wrap .paging .pagination li:not(.prev):not(.next) a {
  border: 1px solid #a32b4b;
}
@media (hover: hover) and (pointer: fine) {
  .news__wrap .paging .pagination li:not(.prev):not(.next) a:hover {
    background-color: #a32b4b;
    color: #fff;
  }
}
.news__wrap .paging .pagination li.active span {
  background-color: #a32b4b;
  color: #fff;
}
.news__wrap .paging .pagination li.prev, .news__wrap .paging .pagination li.next {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 40px;
}
.news__wrap .paging .pagination li.prev a, .news__wrap .paging .pagination li.next a {
  color: #a32b4b;
}
.news__wrap .paging .pagination li a {
  text-decoration: none;
}
/* add */
@media (max-width: 768px) {
  .department__notice {
    margin: 1rem 6% 0;
  }
  .department__notice .ninkashinsei {
    font-size: 0.95rem;
  }
}
/*# sourceMappingURL=./style.css.map */