@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* =============================================

基本設定

============================================= */
html {
  font-size: 0.625em;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

body {
  font-family: "YakuHanJP", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  line-height: 1;
  position: relative;
}
body.is-scroll-stop {
  overflow: hidden;
}

img {
  width: 100%;
  max-width: none;
  height: auto;
}

.sp {
  display: none;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

em {
  font-style: normal;
}

/* =============================================

ヘッダー

============================================= */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: background 1s;
}
.header.is-scrolled {
  background: #fff;
}
.header__inner {
  width: 100%;
  height: 9rem;
  padding: 0 3rem 0 2rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.27em;
}
.header__logo a {
  display: block;
  transition: opacity 0.3s;
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo img {
  display: block;
  width: 18.4rem;
  margin-bottom: 1rem;
}
.header__logo img.sp {
  display: none;
}
.header__logo span:nth-of-type(1) {
  letter-spacing: 0.27em;
}
.header__logo span:nth-of-type(2) {
  letter-spacing: 0.15em;
}
.header__access {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  width: 13rem;
  height: 4.6rem;
  margin-right: 2.5rem;
  margin-left: auto;
}
.header__access a {
  background: #ffff00;
  width: 100%;
  height: 100%;
  border: 0.2rem solid #fff;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.header__access a:hover {
  opacity: 0.8;
}
.header-menu {
  display: block;
  white-space: nowrap;
  position: relative;
  z-index: 50;
}
.header-menu__link {
  display: block;
  width: 5.3rem;
  height: 5.3rem;
  border: 1px solid #000;
  border-radius: 100%;
  position: relative;
}
.header-menu__line {
  background: #000;
  display: block;
  width: 1.5rem;
  height: 1px;
  position: absolute;
  top: 2.6rem;
  left: 1.8rem;
  transition: all 0.5s;
}
.header-menu__line::before, .header-menu__line::after {
  content: "";
  background: #000;
  display: block;
  width: 1.5rem;
  height: 1px;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.header-menu__line::before {
  top: -0.7rem;
}
.header-menu__line::after {
  top: 0.7rem;
}
.header-menu__link.is-open .header-menu__line {
  background-color: transparent;
}
.header-menu__link.is-open .header-menu__line::before {
  top: 0;
  transform: rotate(135deg);
}
.header-menu__link.is-open .header-menu__line::after {
  top: 0;
  transform: rotate(-135deg);
}

/* =============================================

グロナビ

============================================= */
.gnavi {
  width: 100%;
  height: 100vh;
  padding-top: 11rem;
  padding-right: 16.5rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s, opacity 0.3s, visibility 0.3s;
}
.gnavi::before {
  content: "";
  background: #ff8f00;
  width: 58rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.gnavi.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.gnavi-list {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  width: 34rem;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.gnavi-list__item {
  width: 100%;
  height: 7rem;
  margin-bottom: 1rem;
}
.gnavi-list__item a {
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 0 1.5rem;
  border: 1px solid #a6afb5;
  border-radius: 1rem;
  position: relative;
  display: flex;
  align-items: center;
}
.gnavi-list__item a::after {
  content: "";
  background: url("../img/common/bg-gnavi-arrow.svg") no-repeat center center/cover;
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.gnavi-list__item--map {
  width: 100%;
  height: 11.2rem;
}
.gnavi-list__item--map a {
  flex-direction: column;
  justify-content: center;
}
.gnavi-list__icon {
  width: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.gnavi-list__item--venue .gnavi-list__icon img {
  width: 4.4rem;
}
.gnavi-list__item--floor .gnavi-list__icon img {
  width: 2.4rem;
}
.gnavi-list__item--insta .gnavi-list__icon img {
  width: 3rem;
}
.gnavi-list__item--navi .gnavi-list__icon {
  width: 7rem;
}
.gnavi-list__item--navi .gnavi-list__icon img {
  width: 7rem;
}
.gnavi-list__txt {
  width: 20rem;
}
.gnavi-campus-date {
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
}
.gnavi-campus-date__md {
  font-family: "Roboto", serif;
  font-size: 2.9rem;
  font-weight: 500;
  margin-right: 0.5rem;
}
.gnavi-campus-date__md em {
  font-size: 3rem;
  line-height: 0;
  font-style: normal;
}
.gnavi-campus-date__day {
  font-size: 1.4rem;
  font-weight: 700;
  width: 1.9rem;
  height: 1.9rem;
  margin-bottom: 0.8rem;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnavi-campus-date__separator {
  display: inline-block;
  margin-left: 0.5rem;
  transform: translateY(-1rem);
}
.gnavi-campus-place {
  font-size: 1.6rem;
  line-height: 1.2631578947;
  font-weight: 700;
  background: #fff;
}
.gnavi-campus-place em {
  font-size: 2rem;
  display: inline-block;
}
.gnavi__faculty {
  font-size: 1.1rem !important;
  opacity: 1 !important;
  margin-top: 0.8rem;
  transform: none !important;
  transition: none !important;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.gnavi__faculty .campus-faculty__item {
  width: 12.6rem;
  height: 2rem;
  padding: 0.5rem;
  margin-bottom: 0;
}
.gnavi__faculty .campus-faculty__item--dental span {
  transform: scale(0.94, 1);
  white-space: nowrap;
}
.gnavi__reserve {
  width: 34rem;
  margin-left: auto;
}

/* =============================================

フッター

============================================= */
.footer {
  background: #ededed;
}
.footer__inner {
  width: 100%;
  max-width: 100rem;
  padding: 4rem 0;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer__logo {
  width: 30.6rem;
  margin-right: auto;
}
.footer-contact {
  margin-right: 7rem;
}
.footer-contact-address {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}
.footer-contact-address__heading {
  font-weight: 500;
}
.footer-contact-link {
  font-size: 1.4rem;
  font-weight: 300;
}
.footer-contact-link__item {
  margin-bottom: 1rem;
}
.footer-contact-link__item:last-child {
  margin-bottom: 0;
}
.footer-contact-link__item a {
  text-decoration: underline;
}
.footer-sns-list {
  display: flex;
  align-items: center;
}
.footer-sns-list__item {
  width: 4.2rem;
  margin-right: 3rem;
}
.footer-sns-list__item:last-child {
  margin-right: 0;
}
.footer-sns-list__item a {
  transition: opacity 0.3s;
}
.footer-sns-list__item a:hover {
  opacity: 0.7;
}

.copyright {
  font-size: 1.3rem;
  font-weight: 300;
  text-align: center;
  display: block;
  padding: 2.5rem;
}

.fadein {
  transition: transform 1s ease, opacity 1s ease;
  opacity: 0;
  transform: translateY(5rem);
}
.fadein.is-showin {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================

404

============================================= */
.error-404 {
  height: 80vh;
  padding: 12rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.error-404__inner {
  width: 100rem;
  margin-right: auto;
  margin-left: auto;
}
.error-404__inner dl {
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
}
.error-404__inner dl dt {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.error-404__inner dl dd {
  letter-spacing: 0.04em;
}
.error-404__inner dl dd a {
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}

@media only screen and (min-width: 0px) and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media only screen and (min-width: 0px) and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
    scroll-padding-top: 10rem;
  }
  body {
    padding-bottom: 13.6rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* =============================================

  ヘッダー

  ============================================= */
  .header__inner {
    height: 10rem;
    padding: 0 3rem 0 2rem;
  }
  .header__logo {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
  }
  .header__logo a {
    display: grid;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "logo-img logo-txt-01" "logo-img logo-txt-02";
  }
  .header__logo img {
    width: 10rem;
    margin-right: 2rem;
    margin-bottom: 0;
    grid-area: logo-img;
  }
  .header__logo img.pc {
    display: none;
  }
  .header__logo img.sp {
    display: block;
  }
  .header__logo span:nth-of-type(1) {
    letter-spacing: 0.04em;
    grid-area: logo-txt-01;
  }
  .header__logo span:nth-of-type(2) {
    letter-spacing: 0.04em;
    grid-area: logo-txt-02;
  }
  .header__access {
    font-size: 2.4rem;
    width: 17rem;
    height: 6rem;
    margin-right: 2rem;
  }
  .header-menu__link {
    width: 7rem;
    height: 7rem;
    border: 0.15rem solid #000;
  }
  .header-menu__line {
    width: 2rem;
    height: 0.15rem;
    top: 3.425rem;
    left: 2.35rem;
  }
  .header-menu__line::before, .header-menu__line::after {
    width: 2rem;
    height: 0.15rem;
  }
  .header-menu__line::before {
    top: -0.9rem;
  }
  .header-menu__line::after {
    top: 0.9rem;
  }
  /* =============================================

  グロナビ

  ============================================= */
  .gnavi {
    background: #ff8f00;
    padding-top: 12rem;
    padding-right: 0;
    padding-bottom: 27.2rem;
    justify-content: center;
    display: grid;
    align-items: start;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    overflow: scroll;
  }
  .gnavi::before {
    width: 100%;
  }
  .gnavi-list {
    font-size: 3.2rem;
    width: 68rem;
    margin-right: auto;
    display: block;
  }
  .gnavi-list__item {
    height: 16rem;
    margin-bottom: 2rem;
  }
  .gnavi-list__item a {
    padding: 0 2rem;
    border: 0.2rem solid #000;
    border-radius: 1rem;
  }
  .gnavi-list__item a::after {
    width: 3.6rem;
    height: 3.6rem;
    right: 3.4rem;
  }
  .gnavi-list__item--map {
    width: 100%;
    height: 18.6rem;
  }
  .gnavi-list__item--map a::after {
    top: 50%;
    bottom: auto;
    right: 3.4rem;
    transform: translateY(-50%);
  }
  .gnavi-list__icon {
    width: 14rem;
  }
  .gnavi-list__item--venue .gnavi-list__icon img {
    width: 6.8rem;
  }
  .gnavi-list__item--floor .gnavi-list__icon img {
    width: 3.8rem;
  }
  .gnavi-list__item--insta .gnavi-list__icon img {
    width: 6rem;
  }
  .gnavi-list__item--navi .gnavi-list__icon {
    width: 14rem;
  }
  .gnavi-list__item--navi .gnavi-list__icon img {
    width: 14rem;
  }
  .gnavi-list__txt {
    width: 36rem;
  }
  .gnavi-campus-date {
    margin-bottom: 0;
  }
  .gnavi-campus-date__md {
    font-size: 5.8rem;
    margin-right: 1rem;
  }
  .gnavi-campus-date__md em {
    font-size: 6rem;
    vertical-align: -0.2rem;
  }
  .gnavi-campus-date__day {
    font-size: 2.8rem;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
  }
  .gnavi-campus-place {
    font-size: 3.2rem;
  }
  .gnavi-campus-place em {
    font-size: 4rem;
    margin-top: 0.5rem;
  }
  .gnavi__reserve {
    width: 68rem;
    margin-right: auto;
  }
  .gnavi__faculty {
    font-size: 2.2rem !important;
  }
  .gnavi__faculty .campus-faculty__item {
    width: 25rem;
    height: 4rem;
    padding: 0 1rem;
  }
  /* =============================================

  フッター

  ============================================= */
  .footer__inner {
    padding: 0 0;
    flex-direction: column;
  }
  .footer__logo {
    width: 42.4rem;
    margin-bottom: 3rem;
    margin-left: auto;
    order: 2;
  }
  .footer-contact {
    order: 3;
    width: 100%;
    margin: 0;
  }
  .footer-contact-address {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
  }
  .footer-contact-link {
    font-size: 2.4rem;
    background: #e2e2e2;
    text-align: center;
    padding: 4rem 0;
  }
  .footer-contact-link__item {
    margin-bottom: 2rem;
  }
  .footer-sns {
    background: #fff;
    width: 100%;
    padding: 6rem 0;
    margin-bottom: 7rem;
    order: 1;
  }
  .footer-sns-list {
    width: 100%;
    justify-content: center;
  }
  .footer-sns-list__item {
    width: 6.8rem;
    margin-right: 4rem;
  }
  .copyright {
    font-size: 2.2rem;
    padding: 3rem;
  }
  /* =============================================

  404

  ============================================= */
  .error-404 {
    padding: 15rem 0;
  }
  .error-404__inner {
    width: 65rem;
  }
  .error-404__inner dl {
    font-size: 3.2rem;
  }
  .error-404__inner dl dt {
    font-size: 4.6rem;
    margin-bottom: 3rem;
  }
}
/* =============================================

メインビジュアル

============================================= */
.mainvisual {
  width: 100%;
  height: 78rem;
  position: relative;
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  opacity: 0;
}
.mainvisual::before {
  content: "";
  background: #ff8f00 url("../img/index/bg-mainvisual.png") no-repeat top center/auto 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mainvisual__inner {
  width: 100%;
  max-width: 128rem;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.mainvisual__title {
  font-family: "Roboto", serif;
  font-size: 8.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: absolute;
  top: 14rem;
  left: 6rem;
  z-index: 2;
  transition: opacity 1s 1.6s ease;
  opacity: 0;
}
.mainvisual__title small {
  font-family: "YakuHanJP", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: normal;
  display: block;
  margin-top: 0.5rem;
}
.mainvisual__catchcopy {
  width: 50rem;
  position: absolute;
  top: 40.6rem;
  left: 11.4rem;
  z-index: 2;
  opacity: 0;
}
.mainvisual__illust {
  width: 26.6rem;
  position: absolute;
  top: 18.6rem;
  left: 39.6rem;
  z-index: 1;
  opacity: 0;
}
.mainvisual-notice {
  background: rgba(255, 255, 15, 0.9);
  padding: 2rem;
  border-radius: 0.8rem;
  position: absolute;
  top: 29rem;
  left: 20rem;
  z-index: 10;
  transition: left 0.2s, right 0.2s;
}
.mainvisual-notice.is-hide {
  cursor: pointer;
}
.mainvisual-notice.is-hide::after {
  content: "";
  background: url("../img/index/btn-mv-notice-open.svg") no-repeat center center/cover;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%);
}
.mainvisual-notice dl {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 700;
  color: #000;
}
.mainvisual-notice dl dt {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #000;
}
.mainvisual-notice__btn-close {
  width: 2.2rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.mainvisual.is-showin {
  opacity: 1;
}
.mainvisual.is-showin .mainvisual__title {
  opacity: 1;
}
.mainvisual.is-showin .mainvisual__catchcopy {
  animation: mv-catchcopy 0.6s 1s cubic-bezier(0.5, 1, 0.89, 1) alternate forwards 1;
}
.mainvisual.is-showin .mainvisual__illust {
  animation: mv-illust1 1s cubic-bezier(0, 0.55, 0.45, 1) alternate forwards 1, mv-illust2 1.4s ease-in-out alternate-reverse forwards infinite;
  animation-delay: 0.6s, 2.6s;
}
.mainvisual.is-showin .campus {
  opacity: 1;
}
.mainvisual.is-showin .campus .campus__img {
  opacity: 1;
  transform: translateY(0);
}
.mainvisual.is-showin .campus .campus__place {
  opacity: 1;
  transform: translateY(0);
}
.mainvisual.is-showin .campus .campus-date {
  opacity: 1;
  transform: translateY(0);
}
.mainvisual.is-showin .campus .campus-faculty {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mv-catchcopy {
  0% {
    transform: translate(-20px, 20px);
    filter: blur(20px);
    opacity: 0.5;
  }
  70% {
    filter: blur(10px);
  }
  100% {
    transform: translate(0, 0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes mv-illust1 {
  0% {
    transform-origin: right top;
    transform: rotate(30deg) translate(10rem, 5rem);
    opacity: 0;
  }
  100% {
    transform-origin: right top;
    transform: rotate(0deg) translate(0, 0);
    opacity: 1;
  }
}
@keyframes mv-illust2 {
  0% {
    transform-origin: center;
    transform: rotate(8deg);
  }
  100% {
    transform-origin: center;
    transform: rotate(0deg);
  }
}
/* =============================================

キャンパス情報（メインビジュアル内）

============================================= */
.campus {
  width: 47.8rem;
  position: absolute;
  top: 13rem;
  left: 66rem;
  transition: opacity 1s 1.6s ease;
  opacity: 1;
  display: flex;
  justify-content: space-between;
}
.campus__item {
  background: #fff;
  width: 23.2rem;
  padding: 7rem 1.3rem 1.3rem;
  border: 0.2rem solid #000;
  border-radius: 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.campus__img {
  margin-top: auto;
  transition: transform 1s 2s ease, opacity 1s 2s ease;
  opacity: 0;
  transform: translateY(5rem);
}
.campus__place {
  font-size: 1.8rem;
  font-weight: 700;
  background: #fff;
  width: 100%;
  max-width: 19.4rem;
  height: 3.6rem;
  border: 0.2rem solid #000;
  border-radius: 0.8rem;
  position: absolute;
  top: 2.2rem;
  left: -1.2rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s 2s ease, opacity 1s 2s ease;
  opacity: 0;
  transform: translateY(5rem);
}
.campus-date {
  margin-top: -0.3rem;
  margin-bottom: 0.8rem;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  transition: transform 1s 2.3s ease, opacity 1s 2.3s ease;
  opacity: 0;
  transform: translateY(5rem);
}
.campus-date__md {
  font-family: "Roboto", serif;
  font-size: 5.4rem;
  font-weight: 500;
  margin-right: 0.5rem;
}
.campus-date__md em {
  font-size: 5.6rem;
  line-height: 0;
  font-style: normal;
}
.campus-date__day {
  font-size: 2.4rem;
  font-weight: 700;
  width: 3.2rem;
  height: 3.2rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.campus-date__time {
  font-family: "Roboto", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 100%;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.campus-date__separator {
  display: inline-block;
  transform: translateY(-1rem);
}
.campus-faculty {
  font-size: 1.8rem;
  font-weight: 500;
  transition: transform 1s 2.6s ease, opacity 1s 2.6s ease;
  opacity: 0;
  transform: translateY(5rem);
}
.campus-faculty__item {
  color: #fff;
  background: #000;
  height: 4.2rem;
  padding: 0 1rem 0.2rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
}
.campus-faculty__item--literature {
  background: #003d6b;
}
.campus-faculty__item--psychology {
  background: #b9364b;
}
.campus-faculty__item--health {
  background: #d95c01;
}
.campus-faculty__item--policy-studies {
  background: #006697;
}
.campus-faculty__item--commerce {
  background: #29861a;
}
.campus-faculty__item--business {
  background: #801017;
}
.campus-faculty__item--economics {
  background: #006667;
}
.campus-faculty__item--law {
  background: #601863;
}
.campus-faculty__item--pharmacy {
  background: #d98f00;
}
.campus-faculty__item--dental {
  background: #d9518d;
}
.campus-faculty__item--dental span {
  display: block;
  transform: scale(1, 0.96);
  transform-origin: left;
}
.campus-faculty__item--dentistry {
  background: #00a63c;
}

/* =============================================

LINE

============================================= */
.btn-line {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  background: #fff;
  width: 70rem;
  height: 14rem;
  margin-top: -7rem;
  margin-right: auto;
  margin-bottom: 11rem;
  margin-left: auto;
  border-radius: 1.2rem;
  position: relative;
  z-index: 1;
  animation: poyon 4s ease-in-out infinite;
}
.btn-line a {
  background: #00c300;
  width: 100%;
  height: 100%;
  padding-right: 3rem;
  border-radius: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.btn-line a::before {
  content: "";
  background: url("../img/index/icon-line.png") no-repeat center center/cover;
  width: 7.8rem;
  height: 7.8rem;
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
}
.btn-line a::after {
  content: "";
  background: url("../img/index/illust-line.png") no-repeat center center/cover;
  width: 35.4rem;
  height: 12.4rem;
  position: absolute;
  top: 3.2rem;
  right: 0.2rem;
  pointer-events: none;
}
.btn-line a:hover {
  opacity: 0.7;
}

@keyframes poyon {
  0% {
    transform: scale(1, 1);
  }
  7.5% {
    transform: scale(1.03, 0.95);
  }
  12.5% {
    transform: scale(0.98, 1.02);
  }
  17.5% {
    transform: scale(1.02, 0.98);
  }
  25% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* =============================================

PICK UPイベント

============================================= */
.pickup {
  background: url("../img/index/bg-stripe.png") repeat center center/2.9rem 2.9rem;
  width: 100%;
  max-width: 108rem;
  padding-bottom: 5rem;
  margin-right: auto;
  margin-bottom: 11rem;
  margin-left: auto;
  border-radius: 1.2rem;
}
.pickup__title {
  background: #fff;
  text-align: center;
  width: 70rem;
  height: 12.2rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  top: -4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pickup__title img {
  width: 36.2rem;
}
.pickup__title::before {
  content: "";
  background: url("../img/index/illust-pickup.png") no-repeat center center/cover;
  width: 14rem;
  height: 15.6rem;
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
}
.pickup__intro {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 7rem;
}
.pickup__intro p {
  background: #fff;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 0.8rem;
}
.pickup-list {
  width: 85rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
}
.pickup-list__item {
  width: 25rem;
  height: 30rem;
  margin-right: 5rem;
  margin-bottom: 5rem;
  position: relative;
  opacity: 0;
  transform: translateY(3rem);
  transition: transform 1s ease, opacity 1s ease;
}
.pickup-list__item:nth-of-type(3n) {
  margin-right: 0;
}
.pickup-list__item:nth-last-child(-n+3) {
  margin-bottom: 0;
}
.pickup-list__item a {
  background: #fff;
  display: block;
  height: 100%;
  padding-top: 5rem;
  border: 0.15rem solid #000;
  border-radius: 1.2rem;
  transition: transform 0.3s;
  scroll-behavior: smooth;
}
.pickup-list__item a:hover {
  transform: scale(1.05);
}
.pickup-list__num {
  font-family: "Roboto", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  background: #b81c2b;
  text-align: center;
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 100%;
  position: absolute;
  top: -3rem;
  left: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: transform 1s 0.6s ease, opacity 1s 0.6s ease;
  transform: translateY(3rem);
}
.pickup-list__num em {
  font-family: "YakuHanJP", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
}
.pickup-list__icon {
  width: 8.2rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s 1s ease;
}
.pickup-list__item--01 .pickup-list__icon {
  margin-top: -1rem;
  margin-bottom: -1rem;
  left: 1rem;
}
.pickup-list__title {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 700;
  text-align: center;
  min-height: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: transform 1s 1s ease, opacity 1s 1s ease;
  transform: translateY(3rem);
}
.pickup-list__item--02 .pickup-list__title, .pickup-list__item--03 .pickup-list__title {
  margin-top: 2rem;
}
.pickup-list__title-holizontal {
  width: 19rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.pickup-list__free {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  margin-right: 0.5rem;
  border: 1px solid #000;
  border-radius: 0.8rem;
}
.pickup-list__arrow {
  width: 2rem;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.pickup-list-faculty {
  font-size: 0.85rem;
  line-height: 1;
  text-align: left;
  margin: 0.2rem 0;
  transform: none;
  opacity: 1;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
.pickup-list-faculty .campus-faculty__item {
  width: 10rem;
  height: 1.6rem;
  padding: 0 0.3rem;
  margin-right: 0.2rem;
  margin-bottom: 0;
}
.pickup-list-faculty .campus-faculty__item:last-child {
  margin-right: 0;
}

.pickup-list__item.is-showin {
  opacity: 1;
  transform: translateY(0);
}
.pickup-list__item.is-showin .pickup-list__num {
  opacity: 1;
  transform: translateY(0);
}
.pickup-list__item.is-showin .pickup-list__icon {
  opacity: 1;
  animation: 0.8s 1.6s boing-anim linear 1;
}
.pickup-list__item.is-showin .pickup-list__title {
  opacity: 1;
  transform: translateY(0);
}

@keyframes boing-anim {
  10% {
    transform: scale(1.1, 0.9);
  } /*少し縮む*/
  40% {
    transform: scale(1.2, 0.8);
  } /*縮む*/
  50% {
    transform: scale(0.85, 1.15);
  } /*反動で縦長*/
  60% {
    transform: scale(1.1, 0.9);
  } /*また反動で縮む*/
  70% {
    transform: scale(0.95, 1.08);
  } /*反動が小さく*/
  90% {
    transform: scale(0.98, 1.02);
  } /*最後の震え*/
  100% {
    transform: scale(1, 1);
  } /*元に戻る*/
}
/* =============================================

イベント詳細

============================================= */
.event {
  margin-bottom: 12rem;
  overflow-x: clip;
  scroll-behavior: smooth;
}
.event__inner {
  width: 100%;
  max-width: 100rem;
  padding-top: 7rem;
  padding-bottom: 6rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.event__inner::before {
  content: "";
  background: url("../img/index/bg-stripe.png") repeat center center/2.9rem 2.9rem;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.event__inner--bgLeft::before {
  border-top-right-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
  right: -4rem;
}
.event__inner--bgRight::before {
  border-top-left-radius: 1.2rem;
  border-bottom-left-radius: 1.2rem;
  left: -4rem;
}
.event__inner--special::before {
  background: url("../img/index/bg-stripe-red.png") repeat center center/2.9rem 2.9rem;
}
.event-heading {
  background: #fff;
  width: 79rem;
  height: 14rem;
  margin-right: auto;
  margin-bottom: 2.5rem;
  margin-left: auto;
  border: 1px solid #000;
  border-radius: 1.2rem;
  position: relative;
  right: 0.5rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.event-heading__num {
  font-family: "Roboto", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background: #b81c2b;
  text-align: center;
  width: 14rem;
  height: 14rem;
  border-radius: 100%;
  position: absolute;
  top: -9.5rem;
  left: -5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s;
}
.event-heading__num em {
  font-family: "YakuHanJP", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
}
.event-heading__icon {
  width: 8.2rem;
  margin-right: 4rem;
  margin-left: 8rem;
  opacity: 0;
  transition: opacity 0.3s 1s cubic-bezier(0.5, 1, 0.89, 1);
  flex-shrink: 0;
}
.event-heading__icon--01 {
  margin-right: 4rem;
  margin-left: 5rem;
}
.event-heading__icon--02 {
  width: 7.2rem;
  margin-right: 4rem;
}
.event-heading__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.375;
  opacity: 0;
  transform: translateX(5rem);
  transition: transform 1s 0.6s ease, opacity 1s 0.6s ease;
}
.event#event-01 .event-heading {
  height: 16rem;
}
.event__inner--special .event-heading {
  height: 14rem;
}
.event__inner--special .event-heading__title img {
  width: 32.6rem;
}
.event__intro {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
}
.event__intro p {
  background: #fff;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 0.8rem;
}
.event-detail {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.event-detail--w950 {
  padding-right: 5rem;
}
.event-detail__item {
  width: 48rem;
  margin-bottom: 5rem;
}
.event-detail__item--horizontal {
  width: 100%;
  display: flex;
  align-items: center;
}
.event-detail__item--w460 {
  width: 46rem;
}
.event-detail__img {
  width: 48rem;
  border-radius: 1.2rem;
  overflow: hidden;
  flex-shrink: 0;
}
.event-detail__img--full {
  width: 100%;
}
.event-detail__item--horizontal .event-detail__img {
  width: 54rem;
}
.event-content {
  background: #fff;
  width: 38rem;
  padding: 3rem;
  margin-top: -7rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 1.2rem;
  position: relative;
  z-index: 1;
  transition-delay: 0.3s;
}
.event-content__title {
  font-size: 3.3rem;
  line-height: 1.3333333333;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #ffff96;
  text-decoration-thickness: 1.4rem;
  text-underline-offset: -1rem;
  text-align: center;
  max-width: 32rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
}
.event-content__title--05-02 {
  width: 34rem;
  max-width: none;
  margin-right: -1rem;
  margin-left: -1rem;
}
.event-content__title img {
  display: block;
}
.event-content__txt {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 500;
  text-align: justify;
  max-width: 32rem;
  margin: 0 auto;
}
.event-content__txt--heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.event-content__time {
  font-family: "Roboto", "YakuHanJP", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 2.8rem;
  line-height: 1.2857142857;
  font-weight: 500;
  color: #b81c2b;
  text-align: center;
  margin-top: 1rem;
  white-space: nowrap;
}
.event-content__time--alignLeft {
  text-align: left;
}
.event-content__time small {
  font-size: 1.8rem;
}
.event-content__time small.big {
  font-size: 2.1rem;
  line-height: 1.6666666667;
  display: block;
}
.event-content__time small.block {
  line-height: 1.4444444444;
  display: block;
}
.event-content__subtitle {
  font-size: 1.6rem;
  color: #000;
  display: block;
  margin-top: 0.5rem;
}
.event-content__paragraph {
  margin-bottom: 1rem;
}
.event-content__paragraph--alignCenter {
  text-align: center;
}
.event-content__btn {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #fff;
  text-align: center;
  width: 30.8rem;
  height: 5.2rem;
  margin: 0 auto;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}
.event-content__btn a {
  background: #b81c2b;
  width: 100%;
  height: 100%;
  padding-right: 3rem;
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-content__btn a::after {
  content: "";
  background: url("../img/common/arrow-right.svg") no-repeat center center/cover;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
}
.event-content__btn a:hover {
  opacity: 0.7;
}
.event-content__btn--disabled a {
  background: #a6afb5;
  padding: 0;
  pointer-events: none;
}
.event-content__btn--disabled a::after {
  content: none;
}
.event-detail__item--horizontal .event-content {
  width: 46rem;
  margin: 0;
  margin-left: -5rem;
}
.event-detail__item--w460 .event-content {
  width: 100%;
  margin-top: 0;
}
.event__illust {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.event__illust--01 {
  width: 34rem;
  right: 5.5rem;
  bottom: 9rem;
}
.event__illust--04 {
  width: 34.8rem;
  bottom: -2rem;
  left: 3rem;
}
.event__illust--05 {
  width: 50rem;
  right: -11rem;
  bottom: 18.6rem;
}
.event__illust--06 {
  display: none;
}

.banner-free-stay {
  margin-bottom: 0.5rem;
}

.shuttle-bus {
  margin-bottom: 1.5rem;
}

.study {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
}
.study--column {
  flex-direction: column;
}
.study__title:nth-of-type(odd) {
  margin-right: 3rem;
}
.study-faculty {
  font-size: 1rem;
  line-height: 1;
  text-align: left;
  margin: 0.5rem 0 0;
  transform: none;
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  white-space: nowrap;
}
.study-faculty .campus-faculty__item {
  width: 11rem;
  height: 2rem;
  padding: 0 0.5rem;
  margin-right: 0.2rem;
}
.study-faculty .campus-faculty__item--dental span {
  transform: scale(0.9, 1);
}
.study__free {
  font-size: 1.9rem;
  font-weight: 500;
  vertical-align: 0.4rem;
  width: 5.2rem;
  height: 3.2rem;
  border: 1px solid #000;
  border-radius: 0.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.event-heading.is-showin {
  opacity: 1;
}
.event-heading.is-showin .event-heading__num {
  animation: num-move 1.2s 0.3s cubic-bezier(0.5, 1, 0.89, 1) alternate forwards 1;
}
.event-heading.is-showin .event-heading__icon {
  opacity: 1;
  animation: 0.8s 1.6s boing-anim linear 1;
}
.event-heading.is-showin .event-heading__title {
  opacity: 1;
  transform: translateX(0);
}

.event__illust.is-showin {
  opacity: 1;
}
.event__illust--01.is-showin {
  animation: illust01 1s ease-in-out alternate forwards infinite;
}
.event__illust--04.is-showin {
  animation: illust04 1s ease-in-out alternate forwards infinite;
}
.event__illust--05.is-showin {
  animation: illust05 1s ease-in-out alternate forwards infinite;
  transform-origin: center bottom;
}
.event__illust--06.is-showin {
  animation: illust04 1s ease-in-out alternate forwards infinite;
}

@keyframes num-move {
  0% {
    transform: translateX(-3rem);
    opacity: 0;
  }
  50% {
    transform: translateX(1.5rem);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes illust01 {
  0% {
    transform: translateY(1rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes illust04 {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes illust05 {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0);
  }
}
/* =============================================

特別講座

============================================= */
.special-curriculum {
  width: 100%;
  max-width: 90rem;
  padding-top: 11rem;
  padding-bottom: 4rem;
  padding-left: 37rem;
  margin-top: -9.5rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.special-curriculum::before {
  content: "";
  background: #fff;
  width: 100vw;
  height: 100%;
  border-top-left-radius: 1.2rem;
  border-bottom-left-radius: 1.2rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.special-curriculum__speaker {
  width: 32rem;
  position: absolute;
  bottom: -6rem;
  left: 3rem;
}
.special-curriculum__intro {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.special-curriculum__title {
  width: 43.6rem;
  margin-bottom: 2rem;
  margin-left: -1.3rem;
}
.special-curriculum__profile {
  font-size: 1.6rem;
  line-height: 1.75;
  white-space: nowrap;
}

/* =============================================

各種ボタン

============================================= */
.venue {
  padding: 8rem 0;
}
.venue-list {
  color: #fff;
  width: 100%;
  max-width: 44.4rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.venue-list__item {
  width: 21rem;
  height: 24rem;
  position: relative;
}
.venue-list__item a {
  background: #b81c2b;
  width: 100%;
  height: 100%;
  padding-top: 2rem;
  border-radius: 1.2rem;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.venue-list__item a::after {
  content: "";
  background: url("../img/common/arrow-right.svg") no-repeat center center/cover;
  width: 2rem;
  height: 2rem;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.venue-list__item a:hover {
  opacity: 0.7;
}
.venue-list__icon {
  width: 5.2rem;
  margin-bottom: 2.5rem;
}
.venue-list__txt {
  font-size: 2.8rem;
  font-weight: 700;
}
.venue-campus-date {
  margin-bottom: 0.5rem;
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
}
.venue-campus-date__md {
  font-family: "Roboto", serif;
  font-size: 4rem;
  font-weight: 500;
  margin-right: 0.5rem;
}
.venue-campus-date__md em {
  font-size: 4.6rem;
  line-height: 0;
  font-style: normal;
  vertical-align: -0.2rem;
}
.venue-campus-date__day {
  font-size: 1.8rem;
  font-weight: 700;
  width: 2.4rem;
  height: 2.4rem;
  padding-bottom: 0.2rem;
  margin-bottom: 0.5rem;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.venue-campus-date__separator {
  display: inline-block;
  margin-left: 0.5rem;
  transform: translateY(-1rem);
}
.venue-campus-place {
  font-size: 2rem;
  line-height: 1.2142857143;
  font-weight: 700;
  text-align: center;
}
.venue-campus-place em {
  font-size: 2.6rem;
  display: inline-block;
  margin-top: 0.5rem;
}
.venue-faculty {
  font-size: 1.5rem;
  width: 19rem;
  margin-top: 1rem;
  opacity: 1;
  transform: none;
  transition: none;
}
.venue-faculty .campus-faculty__item {
  height: 2.6rem;
}
.venue-faculty .campus-faculty__item--dental span {
  transform: none;
}

/* =============================================

PR大使

============================================= */
.pr {
  background: url("../img/index/bg-stripe.png") repeat center center/2.9rem 2.9rem;
  padding: 7rem 0;
}
.pr-content {
  width: 100%;
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pr-content-heading {
  background: #fff;
  width: 49rem;
  padding: 2rem 3rem;
  margin-top: 7rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
}
.pr-content-heading__icon {
  width: 7.6rem;
  margin-right: 2.5rem;
}
.pr-content-heading__title {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 700;
}
.pr-content-heading__insta {
  width: 6.6rem;
  margin-left: auto;
}
.pr-content__img {
  width: 49rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
.pr-content__btn {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  width: 27rem;
  height: 4.5rem;
  border-radius: 9999px;
  overflow: hidden;
  position: absolute;
  bottom: 4.5rem;
  left: 11rem;
}
.pr-content__btn a {
  background: #b81c2b;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pr-content__btn a::after {
  content: "";
  background: url("../img/common/arrow-right.svg") no-repeat center center/cover;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
}
.pr-content__btn a:hover {
  opacity: 0.7;
}

/* =============================================

アクセス

============================================= */
.access {
  padding: 7rem 0 0;
}
.access__inner {
  width: 100%;
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
}
.access-title {
  background: #fff;
  width: 27rem;
  height: 9rem;
  margin-right: auto;
  margin-bottom: 8rem;
  margin-left: auto;
  border: 1px solid #000;
  border-radius: 1.2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.access-title__EN {
  padding-bottom: 1rem;
}
.access-title__EN img {
  width: 14.8rem;
}
.access-title__JA {
  font-feature-settings: "palt";
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  background: #000;
  width: 16rem;
  height: 4.8rem;
  border-radius: 0.8rem;
  position: absolute;
  top: calc(100% - 2rem);
  right: -2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.access-campus {
  width: 92rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.access-campus__item {
  width: 41rem;
  margin-bottom: 6rem;
}
.access-campus__gmap {
  margin-bottom: 2.5rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
.access-campus-detail {
  padding: 0 1rem;
}
.access-campus-detail__place {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.access-campus-detail__address {
  font-size: 1.6rem;
  line-height: 1.5;
}
.access-campus__btn {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 6rem;
  position: relative;
  overflow: hidden;
}
.access-campus__btn a {
  background: #b81c2b;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.access-campus__btn a::after {
  content: "";
  background: url("../img/common/arrow-right.svg") no-repeat center center/cover;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
}
.access-campus__btn a:hover {
  opacity: 0.7;
}
.access-campus__btn--schedule {
  font-size: 1.6rem;
  line-height: 1.375;
  margin-bottom: 1rem;
}
.access-campus__btn--schedule a {
  color: #b81c2b;
  background: #fff;
  border: 1px solid #b81c2b;
}
.access-campus__btn--schedule a::after {
  background: url("../img/common/arrow-right-red.svg") no-repeat center center/cover;
}
.access-campus__way {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #b81c2b;
  padding: 1rem 1rem 0;
  margin-bottom: 2rem;
}

/* =============================================

YouTubeチャンネル

============================================= */
.yt {
  padding: 7rem 0 4rem;
}
.yt.gakumoni {
  background: url("../img/index/bg-stripe.png") repeat center center/2.9rem 2.9rem;
}
.yt__title {
  width: 66.8rem;
  margin-right: auto;
  margin-bottom: 5.5rem;
  margin-left: auto;
}
.yt-slider {
  padding-bottom: 5rem;
}
.yt-slider__item {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
}
.yt-slider__item a {
  transition: opacity 0.3s;
}
.yt-slider__item a:hover {
  opacity: 0.7;
}
.yt-slider-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.yt-slider-nav__prev, .yt-slider-nav__next {
  width: 2.6rem;
  height: 2.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
}
.yt-slider-nav__prev {
  background: url("../img/index/slider-arrow-prev.svg") no-repeat center center/cover;
  transform: translate(calc(-50% - (100vw - 140px) / 3.8 / 2 - 1.3rem - 1.25rem), calc(-50% - 2.5rem));
}
.yt-slider-nav__next {
  background: url("../img/index/slider-arrow-next.svg") no-repeat center center/cover;
  transform: translate(calc(-50% + (100vw - 140px) / 3.8 / 2 + 1.3rem + 1.25rem), calc(-50% - 2.5rem));
}
.yt-slider-pager {
  width: 100%;
  position: absolute;
  top: auto !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.yt-slider-pager .swiper-pagination-bullet {
  background: #a0a0a0;
  width: 1rem;
  height: 1rem;
  margin: 0 0.8rem;
  border-radius: 100%;
  opacity: 1;
}
.yt-slider-pager .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #b81c2b;
}

/* =============================================

資料請求

============================================= */
.material a {
  color: #fff;
  background: #b81c2b;
  padding: 2.5rem 0;
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.material a:hover {
  opacity: 0.7;
}
.material-txt__heading {
  font-size: 3rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 2rem;
  position: relative;
}
.material-txt__heading::after {
  content: "";
  background: url("../img/common/arrow-right.svg") no-repeat center center/cover;
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  top: 50%;
  left: calc(100% + 2rem);
  transform: translateY(-50%);
}
.material-txt__body {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
}
.material__img {
  width: 20.4rem;
  margin-left: 7rem;
}

/* =============================================

固定リンク

============================================= */
.fixed {
  position: fixed;
  top: 11rem;
  right: 0;
  z-index: 10;
  pointer-events: none;
}
.fixed-list {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-left: auto;
  pointer-events: auto;
}
.fixed-list__item {
  width: 11rem;
  height: 11rem;
  margin-bottom: 0.2rem;
  overflow: hidden;
  transition: width 0.3s;
}
.fixed-list__item:last-child {
  margin-bottom: 0;
}
.fixed-list__item a {
  width: 10rem;
  height: 100%;
  margin-left: auto;
  border-top-left-radius: 1.2rem;
  border-bottom-left-radius: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s;
  transform-origin: right top;
}
.fixed-list__item a:hover {
  width: 11rem;
}
.fixed-list__item--line a {
  background: #00c300;
}
.fixed-list__item--line a img {
  width: 2.8rem;
  margin-bottom: 1.5rem;
}
.fixed-list__item--timetable a {
  background: #4c4948;
}
.fixed-list__item--map {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  height: 8rem;
  text-orientation: upright;
}
.fixed-list__item--map a {
  background: #b81c2b;
}

/* =============================================

PageTop

============================================= */
.pagetop {
  width: 5.4rem;
  position: fixed;
  right: 5rem;
  bottom: 5rem;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.pagetop.is-scrolled {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =============================================

メッセージ

============================================= */
.message {
  width: 100%;
  position: fixed;
  top: 9rem;
  left: 0;
  z-index: 5;
}
.message-list {
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
  width: 75%;
  margin: 0 auto;
}
.message-list__item {
  margin-bottom: 1rem;
  position: relative;
}
.message-list__item:last-child {
  margin-bottom: 0;
}
.message details {
  background: #fffe97;
  padding: 3.5rem 0;
  margin-bottom: 2px;
  position: relative;
}
.message details::before {
  content: "";
  background: url("../img/index/icon-message.svg") no-repeat center center/cover;
  width: 5.4rem;
  height: 5.4rem;
  position: absolute;
  top: 50%;
  left: 9rem;
  z-index: 1;
  transform: translateY(-50%);
}
.message details summary {
  background: #fffe97;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
}
.message details summary::after {
  content: "";
  background: url("../img/index/icon-message-arrow.svg") no-repeat center center/cover;
  width: 3.4rem;
  height: 3.4rem;
  position: absolute;
  top: 50%;
  right: 8rem;
  transform: translateY(-50%);
}
.message details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

/* =============================================

タイムテーブルのモーダルウィンドウ

============================================= */
.modal {
  display: none;
}
.modal-timetable-wrapper .modaal-container {
  background: #4c4948;
  width: 50rem;
  padding: 2rem 1rem;
  border: 0.15rem solid #fff;
  border-radius: 1.4rem;
}
.modal-timetable-wrapper .modaal-content-container {
  padding: 0;
}
.modal-timetable-wrapper .modaal-inner-wrapper {
  padding: 0;
}
.modal-timetable-wrapper .modaal-close {
  background: url("../img/index/btn-close.svg") no-repeat center center/cover;
  width: 3.4rem;
  height: 3.4rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.modal-timetable-wrapper .modaal-close::before, .modal-timetable-wrapper .modaal-close::after {
  content: none;
}
.modal-timetable__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
.modal-timetable-select {
  width: 45rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.modal-timetable-select__item {
  background: #fff;
  width: 22rem;
  border-radius: 1rem;
  border: 1px solid #000;
  overflow: hidden;
  transition: all 0.5s;
}
.modal-timetable-select__item--single {
  width: 15.2rem;
}
.modal-timetable-select__item > a {
  display: block;
  height: 100%;
}
.modal-timetable-select__item .campus__place {
  font-size: 2rem;
  line-height: 1.2941176471;
  min-width: 0;
  height: auto;
  padding: 0.5rem 0;
  margin: 0 0 1rem;
  position: static;
  opacity: 1;
  transform: none;
  flex-direction: column;
}
.modal-timetable-select__item .campus__place hr {
  background: #000;
  width: 100%;
  height: 1px;
  margin: 0.5rem 0;
}
.modal-timetable-select__item .campus__place em {
  font-size: 1.6rem;
  font-weight: 900;
  font-style: normal;
  color: #b81c2b;
}
.modal-timetable-select__item .campus-date {
  justify-content: center;
  margin-bottom: 1rem;
  opacity: 1;
  transform: none;
}
.modal-timetable-select__item .campus-date__md {
  font-size: 4.9rem;
}
.modal-timetable-select__item .campus-date__md em {
  font-size: 5rem;
}
.modal-timetable-select__item .campus-date__day {
  font-size: 2.4rem;
  width: 3.2rem;
  height: 3.2rem;
  padding-bottom: 0.2rem;
  margin-right: 0;
}
.modal-timetable-select__item .campus-faculty {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0;
  opacity: 1;
  transform: none;
}
.modal-timetable-select__item .campus-faculty__item {
  height: 6.4rem;
  padding: 0 1.5rem;
  margin-bottom: 0.2rem;
  position: relative;
}
.modal-timetable-select__item .campus-faculty__item::after {
  content: "";
  background: url("../img/common/arrow-right-tp.svg") no-repeat center center/cover;
  width: 2.6rem;
  aspect-ratio: 26/26;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.modal-timetable-select__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.4rem;
}
.modal-timetable__btn {
  width: 2.4rem;
  margin-top: 0.5rem;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
}
.modal-timetable__btn img {
  transform: rotate(-90deg);
}
.modal-bp-wrapper .modaal-container {
  background: #ffff00;
  width: 46rem;
  height: 70vh;
  max-height: 55rem;
  padding: 2rem 1rem;
  border-radius: 1.4rem;
}
.modal-bp-wrapper .modaal-content-container {
  padding: 0;
  height: 100%;
}
.modal-bp-wrapper .modaal-content {
  height: 100%;
}
.modal-bp-wrapper .modaal-inner-wrapper {
  padding: 0;
}
.modal-bp-wrapper .modaal-close {
  background: url("../img/index/btn-close-black.svg") no-repeat center center/cover;
  width: 3.4rem;
  height: 3.4rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.modal-bp-wrapper .modaal-close::before, .modal-bp-wrapper .modaal-close::after {
  content: none;
}
.modal-bp {
  font-size: 2.2rem;
  line-height: 2;
  font-weight: 700;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-club-wrapper .modaal-container {
  width: 75rem;
}
.modal-club-wrapper .modaal-content-container {
  padding: 0;
}
.modal-club-wrapper .modaal-inner-wrapper {
  padding: 8rem 0;
}
.modal-club-wrapper .modaal-close {
  background: url("../img/index/btn-close-black.svg") no-repeat center center/cover;
  width: 7rem;
  height: 7rem;
  position: fixed;
  top: 3rem;
  right: auto;
  left: calc(50% + 37.5rem - 7rem);
  transform: translateX(-50%);
}
.modal-club-wrapper .modaal-close::before, .modal-club-wrapper .modaal-close::after {
  content: none;
}
.modal-map-wrapper .modaal-container {
  background: #b81c2b;
  width: 38rem;
  padding: 2rem 2.5rem 4rem;
  border: 0.15rem solid #fff;
  border-radius: 1.4rem;
}
.modal-map-wrapper .modaal-content-container {
  padding: 0;
}
.modal-map-wrapper .modaal-inner-wrapper {
  padding: 0;
}
.modal-map-wrapper .modaal-close {
  background: url("../img/index/btn-close.svg") no-repeat center center/cover;
  width: 3.4rem;
  height: 3.4rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.modal-map-wrapper .modaal-close::before, .modal-map-wrapper .modaal-close::after {
  content: none;
}
.modal-map__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
}
.modal-map .select-date a {
  width: 15.6rem;
  height: 19rem;
  border: none;
  position: relative;
}
.modal-map .select-date a .campus-date {
  justify-content: center;
  margin-bottom: 1rem;
  opacity: 1;
  transform: none;
}
.modal-map .select-date a .campus-date__md {
  font-size: 4.2rem;
}
.modal-map .select-date a .campus-date__md em {
  font-size: 4.4rem;
}
.modal-map .select-date a .campus-date__day {
  font-size: 1.9rem;
  width: 2.4rem;
  height: 2.4rem;
  padding-bottom: 0.2rem;
  margin-right: 0;
}
.modal-map .select-date a .modal-timetable__btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.modal-map .select-date a:hover {
  background: #37bef0;
}

.select-date {
  display: flex;
  justify-content: space-between;
}
.select-date a {
  background: #fff;
  width: 10rem;
  height: 10rem;
  border: 1px solid #000;
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s;
}
.select-date a:hover {
  background: rgba(55, 190, 240, 0.5);
}

.modal-timetable-select__item--single .select-date a {
  width: 100%;
  height: 11.2rem;
}

.modal-timetable-select__item--single .campus-faculty__item {
  width: 100%;
}

/* =============================================

クラブ活動のモーダルウィンドウ

============================================= */
.club {
  width: 75rem;
  padding: 5rem;
  margin: 0 auto;
  position: relative;
}
.club__title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  background: #37bef0;
  width: 60rem;
  padding: 2.6rem 4rem;
  margin: 0 auto 4rem;
  border-radius: 1rem;
}
.club-schedule {
  padding: 3.8rem 2.8rem;
  border: 0.2rem solid #000;
  border-radius: 1.6rem;
}
.club-schedule__heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  background: #37bef0;
  text-align: center;
  width: 100%;
  height: 6rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.club-schedule__btn {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  background: #fff;
  text-align: center;
  width: 48rem;
  height: 8rem;
  margin: 0 auto 3.5rem;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}
.club-schedule__btn a {
  background: #b81c2b;
  width: 100%;
  height: 100%;
  padding-right: 3rem;
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.club-schedule__btn a::after {
  content: "";
  background: url("../img/common/arrow-right.svg") no-repeat center center/cover;
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.club-schedule__btn a:hover {
  opacity: 0.7;
}
.club-detail {
  margin-bottom: 3rem;
}
.club-detail__heading {
  font-size: 3.2rem;
  font-weight: 700;
  padding: 0 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.club-detail__txt {
  font-feature-settings: "palt";
  font-size: 2.8rem;
  line-height: 1.2857142857;
  font-weight: 500;
  padding: 0 1rem 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.2rem solid #000;
}
.club-detail__topics {
  font-size: 2.4rem;
  background: #ffff26;
  padding: 0.6rem 1.6rem;
  margin-left: 0.5em;
  border-radius: 1.2rem;
}
.club-detail__topics--culture {
  color: #fff;
  background: #ff0399;
}
.club-notice {
  font-feature-settings: "palt";
  font-size: 2.4rem;
  line-height: 1.3333333333;
  font-weight: 500;
  text-align: justify;
  width: 64rem;
  margin: 3rem auto 0;
}
.club-notice__item {
  text-indent: -1em;
  padding-left: 1em;
}

@media only screen and (min-width: 0px) and (max-width: 750px) {
  /* =============================================

  メインビジュアル

  ============================================= */
  .mainvisual {
    height: 148rem;
    overflow: hidden;
  }
  .mainvisual::before {
    background: #9ac83b url("../img/index/bg-mainvisual-sp.png") no-repeat top center/auto 100%;
  }
  .mainvisual__title {
    font-size: 10rem;
    line-height: 0.94;
    top: 13rem;
    left: 3rem;
  }
  .mainvisual__title small {
    font-size: 3.2rem;
    margin-top: 12rem;
  }
  .mainvisual__catchcopy {
    width: 45rem;
    top: 34rem;
    left: 22rem;
  }
  .mainvisual__illust {
    width: 31.2rem;
    top: 10rem;
    left: 45rem;
  }
  .mainvisual-notice {
    padding: 2.4rem;
    border-radius: 1rem;
    top: 18rem;
    left: auto;
    right: 2rem;
  }
  .mainvisual-notice.is-hide::after {
    width: 1.6rem;
    height: 1.6rem;
    right: auto;
    left: 0.4rem;
    transform: translateY(-50%) rotate(180deg);
  }
  .mainvisual-notice dl {
    font-size: 2.4rem;
    font-feature-settings: "palt";
  }
  .mainvisual-notice dl dt {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .mainvisual-notice__btn-close {
    width: 2.8rem;
    top: 2.4rem;
    right: 2.4rem;
  }
  /* =============================================

  キャンパス情報（メインビジュアル内）

  ============================================= */
  .campus {
    width: 68rem;
    top: 63rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .campus__item {
    width: 33.2rem;
    padding: 10rem 2rem 1.6rem;
    border-radius: 1.6rem;
  }
  .campus__right {
    width: 37rem;
  }
  .campus__place {
    font-size: 2.8rem;
    min-width: 28rem;
    height: 5.8rem;
    border-radius: 1rem;
    top: 2rem;
  }
  .campus-date {
    margin-top: -0.8rem;
    margin-bottom: 0.8rem;
  }
  .campus-date__md {
    font-size: 7.8rem;
    margin-right: 1rem;
  }
  .campus-date__md em {
    font-size: 8rem;
    vertical-align: -0.6rem;
  }
  .campus-date__day {
    font-size: 3.6rem;
    width: 4.6rem;
    height: 4.6rem;
    margin-right: 1rem;
    margin-bottom: 0.2rem;
  }
  .campus-date__time {
    font-size: 2.8rem;
    margin-top: 1rem;
  }
  .campus-faculty {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    white-space: nowrap;
  }
  .campus-faculty__item {
    height: 6rem;
    padding: 0 1.6rem;
    margin-bottom: 0.7rem;
  }
  /* =============================================

  LINE

  ============================================= */
  .btn-line {
    font-size: 4rem;
    line-height: 1.3;
    width: 68rem;
    height: 24rem;
    margin-top: -12rem;
    margin-bottom: 17rem;
    border-radius: 1.6rem;
  }
  .btn-line a {
    text-align: center;
    padding-right: 0;
    padding-bottom: 4rem;
    border-radius: 1.6rem;
  }
  .btn-line a::before {
    width: 15.6rem;
    height: 15.6rem;
    left: 3rem;
  }
  .btn-line a::after {
    background: url("../img/index/illust-line-sp.png") no-repeat center center/cover;
    width: 47.2rem;
    height: 16.8rem;
    top: 8rem;
    right: -1.2rem;
  }
  /* =============================================

  PICK UPイベント

  ============================================= */
  .pickup {
    background: url("../img/index/bg-stripe.png") repeat center center/2.9rem 2.9rem;
    padding-bottom: 8rem;
    margin-bottom: 13rem;
    border-radius: 0;
  }
  .pickup__title {
    width: 50rem;
    height: 17rem;
    padding-left: 21rem;
    top: -6rem;
    display: block;
  }
  .pickup__title img {
    width: 24.4rem;
  }
  .pickup__title::before {
    width: 18.6rem;
    height: 20.6rem;
  }
  .pickup__intro {
    font-size: 3.2rem;
    margin-bottom: 7rem;
    position: relative;
    z-index: 2;
  }
  .pickup__intro p {
    background: none;
    display: block;
    width: 61rem;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
    border-radius: 0;
  }
  .pickup__intro p span {
    background: #fff;
    display: inline-block;
    padding: 1rem 3rem;
    margin-bottom: 1.2rem;
    border-radius: 1rem;
  }
  .pickup__intro p span:last-of-type {
    margin-bottom: 0;
  }
  .pickup-list {
    width: 62.4rem;
    margin-right: 4rem;
    margin-left: auto;
    display: block;
    justify-content: space-between;
  }
  .pickup-list__item {
    width: 100%;
    height: 25rem;
    margin-bottom: 3rem;
    margin-right: 0;
  }
  .pickup-list__item:nth-last-child(-n+3) {
    margin-bottom: 3rem;
  }
  .pickup-list__item:last-child {
    margin-bottom: 0;
  }
  .pickup-list__item a {
    padding: 0 0 0 8rem;
    border: 0.2rem solid #000;
    border-radius: 1.6rem;
    display: flex;
    align-items: center;
  }
  .pickup-list__num {
    font-size: 1.6rem;
    width: 10rem;
    height: 10rem;
    top: 50%;
    left: -5rem;
    transform: translateY(-50%);
  }
  .pickup-list__num em {
    font-size: 4.2rem;
  }
  .pickup-list__icon {
    width: 10rem;
    margin: 0 6rem 0 0;
  }
  .pickup-list__item--02 .pickup-list__icon, .pickup-list__item--03 .pickup-list__icon {
    margin-right: 9rem;
  }
  .pickup-list__title {
    font-size: 2.8rem;
    line-height: 1.5;
    min-height: 8rem;
  }
  .pickup-list__item--02 .pickup-list__title, .pickup-list__item--03 .pickup-list__title {
    margin-top: 0;
  }
  .pickup-list__title-holizontal {
    width: 26rem;
  }
  .pickup-list__free {
    font-size: 2rem;
    padding: 0.4rem 1rem;
    margin-right: 1rem;
    border-radius: 0.8rem;
    flex-shrink: 0;
  }
  .pickup-list__arrow {
    width: 3.4rem;
    top: 50%;
    left: auto;
    right: 2rem;
    bottom: auto;
    transform: translateY(-50%);
  }
  .pickup-list-faculty {
    font-size: 1.2rem;
    margin: 0.2rem 0 0.5rem;
  }
  .pickup-list-faculty .campus-faculty__item {
    width: 14rem;
    height: 2.2rem;
    padding: 0 0.3rem;
  }
  .pickup-list__item.is-showin .pickup-list__num {
    opacity: 1;
    transform: translateY(-50%);
  }
  /* =============================================

  イベント詳細

  ============================================= */
  .event {
    margin-bottom: 12rem;
  }
  .event__inner {
    max-width: 65rem;
    padding-top: 7rem;
    padding-bottom: 6rem;
  }
  .event__inner--bgLeft::before {
    border-top-right-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
    right: -1.5rem;
  }
  .event__inner--bgRight::before {
    border-top-left-radius: 1.6rem;
    border-bottom-left-radius: 1.6rem;
    left: -1.5rem;
  }
  .event-heading {
    width: 60rem;
    height: 18rem;
    margin-bottom: 6rem;
    border: 0.2rem solid #000;
    border-radius: 1.6rem;
  }
  .event-heading__num {
    font-size: 2.4rem;
    width: 16rem;
    height: 16rem;
    top: -11rem;
    left: -4rem;
  }
  .event-heading__num em {
    font-size: 7.2rem;
  }
  .event-heading__icon {
    width: 8.2rem;
    margin-right: 4rem;
    margin-left: 9rem;
  }
  .event-heading__icon--01 {
    width: 10rem;
    margin-right: 3rem;
    margin-left: 5rem;
  }
  .event-heading__icon--02 {
    width: 10rem;
    margin-right: 4rem;
    margin-left: 6rem;
  }
  .event-heading__icon--03 {
    width: 12rem;
    margin-right: 4rem;
    margin-left: 6rem;
  }
  .event-heading__icon--04 {
    width: 7.2rem;
    margin-right: 5rem;
    margin-left: 7rem;
  }
  .event-heading__icon--05 {
    width: 6.2rem;
    margin-right: 4rem;
  }
  .event-heading__icon--06 {
    width: 6rem;
    margin-right: 3.2rem;
  }
  .event-heading__icon--07 {
    width: 13.2rem;
    margin-right: 2rem;
    margin-left: 3rem;
  }
  .event-heading__icon--08 {
    width: 9.2rem;
    margin-left: 6rem;
  }
  .event-heading__title {
    font-size: 4rem;
    line-height: 1.35;
  }
  .event#event-01 .event-heading {
    height: 28rem;
  }
  .event#event-05 .event-heading {
    height: 22rem;
  }
  .event__inner--special .event-heading {
    height: 20rem;
  }
  .event__inner--special .event-heading__title img {
    width: 28rem;
  }
  .event__intro {
    font-size: 3.2rem;
    text-align: left;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
  }
  .event__intro p {
    background: none;
    display: block;
    width: 61rem;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
    border-radius: 0;
  }
  .event__intro p span {
    background: #fff;
    display: inline-block;
    padding: 1rem 3rem;
    margin-bottom: 1.2rem;
    border-radius: 1rem;
  }
  .event__intro p span:last-of-type {
    margin-bottom: 0;
  }
  .event-detail {
    display: block;
  }
  .event-detail--w950 {
    padding-right: 0;
  }
  .event-detail__item {
    width: 100%;
    margin-bottom: 5rem;
  }
  .event-detail__item--horizontal {
    display: block;
  }
  .event-detail__item--w460 {
    width: 60rem;
    margin: 0 auto 5rem;
  }
  .event-detail__img {
    width: 70rem;
    border-radius: 1.6rem;
  }
  .event-detail__img--alignRightSP {
    margin-right: -5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .event-detail__img--alignLeftSP {
    margin-left: -5rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .event-detail__item--horizontal .event-detail__img {
    width: 70rem;
  }
  .event#event-04 .event-detail__item--horizontal .event-content {
    margin-top: -5rem;
  }
  .event#event-08 .event-detail__item--horizontal .event-detail__img {
    width: 70rem;
  }
  .event#event-08 .event-detail__item--horizontal .event-content {
    width: 60rem;
    margin-left: auto;
  }
  .event-content {
    width: 60rem;
    padding: 5rem;
    margin-top: -5rem;
    border-radius: 1.6rem;
  }
  .event-content__title {
    font-size: 5.2rem;
    text-decoration-thickness: 2.2rem;
    text-underline-offset: -2rem;
    max-width: 50rem;
    margin-bottom: 2rem;
  }
  .event-content__title--05-02 {
    width: 52rem;
    max-width: none;
  }
  .event-content__txt {
    font-size: 2.8rem;
    line-height: 1.5;
    max-width: none;
  }
  .event-content__time {
    font-size: 4.4rem;
    line-height: 1.2727272727;
    margin-top: 2rem;
  }
  .event-content__time--alignLeft {
    text-align: center;
  }
  .event-content__time small {
    font-size: 2.8rem;
  }
  .event-content__time small.big {
    font-size: 3.4rem;
  }
  .event-content__subtitle {
    font-size: 2.8rem;
  }
  .event-content__paragraph {
    margin-bottom: 2rem;
  }
  .event-content__btn {
    font-size: 2.4rem;
    width: 48rem;
    height: 8rem;
  }
  .event-content__btn a::after {
    width: 3.6rem;
    height: 3.6rem;
    right: 2.4rem;
  }
  .event-detail__item--horizontal .event-content {
    width: 60rem;
    margin: -5rem auto 0;
  }
  .event__illust--01 {
    width: 24rem;
    top: 31rem;
    right: -5rem;
    bottom: auto;
  }
  .event__illust--04 {
    display: none;
  }
  .event__illust--05 {
    display: none;
  }
  .event__illust--06 {
    display: block;
    width: 34.8rem;
    top: 15rem;
    right: -8rem;
    z-index: 5;
  }
  .banner-free-stay {
    margin-bottom: 2rem;
  }
  .shuttle-bus {
    margin-bottom: 3rem;
  }
  .study {
    display: block;
  }
  .study__title:nth-of-type(odd) {
    margin-right: 3rem;
  }
  .study-faculty {
    font-size: 1.2rem;
    margin: 1rem 0 0;
  }
  .study-faculty .campus-faculty__item {
    width: 14rem;
    height: 2.4rem;
    margin-bottom: 1rem;
  }
  /* =============================================

  特別講座

  ============================================= */
  .special-curriculum {
    width: 60rem;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    margin-top: -9rem;
    margin-right: auto;
    margin-left: auto;
    border-radius: 1.6rem;
    overflow: hidden;
  }
  .special-curriculum::before {
    content: none;
  }
  .special-curriculum__speaker {
    width: 56.4rem;
    position: relative;
    bottom: auto;
    left: auto;
  }
  .special-curriculum__intro {
    font-size: 3.2rem;
    line-height: 1.5;
    text-align: center;
    padding-top: 5rem;
    margin-bottom: 3rem;
    position: relative;
  }
  .special-curriculum__intro::before {
    content: "";
    background: #fff;
    width: 100%;
    height: 200rem;
    border-top-left-radius: 1.6rem;
    border-top-right-radius: 1.6rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .special-curriculum__title {
    width: 50rem;
    text-align: center;
    margin-right: auto;
    margin-bottom: 3rem;
    margin-left: auto;
  }
  .special-curriculum__profile {
    font-feature-settings: "palt";
    font-size: 2.8rem;
    line-height: 1.5;
    text-align: justify;
    white-space: normal;
    padding: 0 5rem 5rem;
  }
  /* =============================================

  各種ボタン

  ============================================= */
  .venue {
    padding: 8rem 0;
  }
  .venue-list {
    max-width: 68rem;
  }
  .venue-list__item {
    width: 33rem;
    height: 43rem;
  }
  .venue-list__item a {
    padding-top: 6rem;
    border-radius: 1.6rem;
  }
  .venue-list__item a::after {
    width: 3.6rem;
    height: 3.6rem;
  }
  .venue-list__icon {
    width: 8.4rem;
    margin-bottom: 3.5rem;
  }
  .venue-list__txt {
    font-size: 4rem;
  }
  .venue-campus-date {
    margin-bottom: 1rem;
  }
  .venue-campus-date__md {
    font-size: 6.8rem;
    margin-right: 1rem;
  }
  .venue-campus-date__md em {
    font-size: 7.2rem;
    vertical-align: -0.6rem;
  }
  .venue-campus-date__day {
    font-size: 3.4rem;
    width: 4.4rem;
    height: 4.4rem;
    margin-bottom: 0.5rem;
  }
  .venue-campus-place {
    font-size: 3.2rem;
  }
  .venue-campus-place em {
    font-size: 3.2rem;
    display: inline-block;
  }
  .venue .venue-faculty {
    width: 30rem;
    margin-top: 2rem;
  }
  .venue .venue-faculty .campus-faculty__item {
    height: 4rem;
  }
  /* =============================================

  PR大使

  ============================================= */
  .pr {
    padding: 6rem 0;
  }
  .pr-content {
    max-width: 66rem;
    display: block;
  }
  .pr-content-heading {
    width: 65rem;
    padding: 3rem;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 3rem;
    margin-left: auto;
    border-radius: 1.6rem;
  }
  .pr-content-heading__icon {
    width: 10.4rem;
    margin-right: 4rem;
  }
  .pr-content-heading__title {
    font-size: 4rem;
    line-height: 1.3;
  }
  .pr-content-heading__insta {
    width: 8.6rem;
  }
  .pr-content__img {
    width: 100%;
    margin-bottom: 5rem;
    border-radius: 1.6rem;
    overflow: hidden;
  }
  .pr-content__btn {
    font-size: 3.2rem;
    width: 48rem;
    height: 8rem;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    bottom: auto;
    left: auto;
  }
  .pr-content__btn a::after {
    width: 3.6rem;
    height: 3.6rem;
    right: 2.4rem;
  }
  /* =============================================

  アクセス

  ============================================= */
  .access {
    padding: 7rem 0;
  }
  .access__inner {
    max-width: 66rem;
  }
  .access-title {
    width: 36rem;
    height: 12rem;
    border: 0.2rem solid #000;
    border-radius: 1.6rem;
  }
  .access-title__EN {
    padding-bottom: 1rem;
  }
  .access-title__EN img {
    width: 20rem;
  }
  .access-title__JA {
    font-size: 3.2rem;
    width: 22rem;
    height: 6rem;
    border-radius: 1rem;
    top: calc(100% - 2.4rem);
    right: -3.4rem;
  }
  .access-campus {
    width: 100%;
    display: block;
  }
  .access-campus__item {
    width: 100%;
    margin-bottom: 6rem;
  }
  .access-campus__item:last-of-type {
    margin-bottom: 0;
  }
  .access-campus__gmap {
    margin-bottom: 3rem;
    border-radius: 1.6rem;
  }
  .access-campus__gmap iframe {
    width: 100%;
    height: 33rem;
  }
  .access-campus-detail {
    padding: 0 3rem;
  }
  .access-campus-detail__place {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  .access-campus-detail__address {
    font-size: 2.8rem;
    line-height: 1.5714285714;
  }
  .access-campus__btn {
    font-size: 2.8rem;
    width: 100%;
    height: 10rem;
  }
  .access-campus__btn a {
    padding-right: 3rem;
    border-radius: 1rem;
  }
  .access-campus__btn a::after {
    width: 20px;
    height: 20px;
    right: 2rem;
  }
  .access-campus__btn--schedule {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  .access-campus__way {
    font-size: 2.8rem;
    font-feature-settings: "palt";
    padding: 2rem 3rem 0;
    margin-bottom: 3rem;
  }
  /* =============================================

  YouTubeチャンネル

  ============================================= */
  .yt {
    padding: 7rem 0 6rem;
  }
  .yt__title {
    width: 66rem;
    margin-bottom: 6rem;
  }
  .yt-slider {
    padding-bottom: 7rem;
  }
  .yt-slider__item {
    border-radius: 1.6rem;
  }
  .yt-slider-nav__prev, .yt-slider-nav__next {
    width: 2.6rem;
    height: 2.6rem;
  }
  .yt-slider-nav__prev {
    transform: translate(calc(-50% - (100vw - 2.38rem) / 1.476 / 2 - 1.3rem - 1.25rem), calc(-50% - 3.5rem));
  }
  .yt-slider-nav__next {
    transform: translate(calc(-50% + (100vw - 2.38rem) / 1.476 / 2 + 1.3rem + 1.25rem), calc(-50% - 3.5rem));
  }
  .yt-slider-pager .swiper-pagination-bullet {
    width: 2rem;
    height: 2rem;
    margin: 0 1.5rem !important;
  }
  /* =============================================

  資料請求

  ============================================= */
  .material a {
    padding: 3rem 0;
  }
  .material-txt__heading {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
  .material-txt__body {
    font-size: 2.4rem;
  }
  .material__img {
    width: 22rem;
  }
  /* =============================================

  固定リンク

  ============================================= */
  .fixed {
    width: 100%;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
  .fixed-list {
    font-size: 2.4rem;
    line-height: 1.1666666667;
    height: 13.6rem;
    display: flex;
    justify-content: space-between;
  }
  .fixed-list__item {
    width: 16rem;
    height: 100%;
    margin-bottom: 0;
    border-radius: 0;
    border-left: 0.2rem solid #fff;
  }
  .fixed-list__item:first-child {
    width: 27rem;
    border-left: none;
  }
  .fixed-list__item a {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .fixed-list__item a:hover {
    width: 100%;
  }
  .fixed-list__item--line a img {
    width: 5.6rem;
    margin-right: 1rem;
    margin-bottom: 0;
  }
  .fixed-list__item--line a {
    flex-direction: row;
  }
  .fixed-list__item--map {
    font-size: 2.4rem;
    line-height: 1.2;
    text-align: center;
  }
  /* =============================================

  PageTop

  ============================================= */
  .pagetop {
    width: 7rem;
    right: 2rem;
    bottom: 16rem;
  }
  /* =============================================

  メッセージ

  ============================================= */
  .message {
    width: 100%;
    margin-bottom: 0;
    top: 10rem;
  }
  .message-list {
    font-size: 3.2rem;
    width: 65%;
  }
  .message details {
    padding: 5rem 0;
  }
  .message details::before {
    width: 7rem;
    height: 7rem;
    left: 4rem;
  }
  .message details summary::after {
    width: 4rem;
    height: 4rem;
    right: 4rem;
  }
  /* =============================================

  タイムテーブルのモーダルウィンドウ

  ============================================= */
  .modal-timetable-wrapper .modaal-container {
    width: 70rem;
    padding: 4rem 1.6rem;
    border: 0.2rem solid #fff;
    border-radius: 2rem;
  }
  .modal-timetable-wrapper .modaal-close {
    width: 4.8rem;
    height: 4.8rem;
    top: 3rem;
    right: 2rem;
  }
  .modal-timetable__title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
  .modal-timetable-select {
    width: 64rem;
    margin: 0 auto;
  }
  .modal-timetable-select__item {
    width: 31rem;
    margin-bottom: 0;
    border-radius: 2rem;
    border: 0.2rem solid #000;
  }
  .modal-timetable-select__item--single {
    width: 22.6rem;
  }
  .modal-timetable-select__item a {
    padding: 2.6rem 0;
  }
  .modal-timetable-select__item .campus__place {
    font-size: 2.8rem;
    max-width: none;
    margin: 0 0 2rem;
  }
  .modal-timetable-select__item .campus__place em {
    font-size: 2.2rem;
  }
  .modal-timetable-select__item .campus-date {
    margin-bottom: 1rem;
  }
  .modal-timetable-select__item .campus-date__md {
    font-size: 7rem;
  }
  .modal-timetable-select__item .campus-date__md em {
    font-size: 7.2rem;
    vertical-align: baseline;
  }
  .modal-timetable-select__item .campus-date__day {
    font-size: 2.6rem;
    width: 3.2rem;
    height: 3.2rem;
    padding-bottom: 0.2rem;
    margin-right: 0;
    margin-bottom: 0.8rem;
  }
  .modal-timetable-select__item .campus-faculty {
    font-size: 2.8rem;
  }
  .modal-timetable-select__item .campus-faculty__item {
    width: 15.2rem;
    height: 9rem;
    padding: 0 2rem;
    margin-bottom: 0.8rem;
  }
  .modal-timetable-select__item .campus-faculty__item--pharmacy, .modal-timetable-select__item .campus-faculty__item--dentistry, .modal-timetable-select__item .campus-faculty__item--dental {
    width: 100%;
  }
  .modal-timetable-select__item .campus-faculty__item::after {
    width: 3.6rem;
  }
  .modal-timetable-select__body {
    padding: 3rem 2rem;
  }
  .modal-timetable__btn {
    width: 3.6rem;
  }
  .modal-bp-wrapper .modaal-container {
    width: 70rem;
    max-height: 84rem;
    padding: 4rem 1.6rem;
    border-radius: 2rem;
  }
  .modal-bp-wrapper .modaal-close {
    width: 4.8rem;
    height: 4.8rem;
    top: 3rem;
    right: 2rem;
  }
  .modal-bp {
    font-size: 3.2rem;
  }
  .modal-club-wrapper .modaal-container {
    width: 72rem;
  }
  .modal-club-wrapper .modaal-inner-wrapper {
    padding: 1.5rem 0;
  }
  .modal-club-wrapper .modaal-close {
    right: 3rem;
    left: auto;
    transform: none;
  }
  .modal-map-wrapper .modaal-container {
    width: 56rem;
    padding: 3rem 4rem 6rem;
    border: 0.2rem solid #fff;
    border-radius: 2rem;
  }
  .modal-map-wrapper .modaal-close {
    width: 4.8rem;
    height: 4.8rem;
    top: 2rem;
    right: 2rem;
  }
  .modal-map__title {
    font-size: 3.2rem;
    margin-bottom: 3.5rem;
  }
  .modal-map .select-date a {
    width: 22.8rem;
    height: 28rem;
  }
  .modal-map .select-date a .campus-date {
    margin-bottom: 1rem;
  }
  .modal-map .select-date a .campus-date__md {
    font-size: 6rem;
  }
  .modal-map .select-date a .campus-date__md em {
    font-size: 6.4rem;
  }
  .modal-map .select-date a .campus-date__day {
    font-size: 2.8rem;
    width: 3.4rem;
    height: 3.4rem;
  }
  .modal-map .select-date a .modal-timetable__btn {
    bottom: 1.4rem;
  }
  .select-date a {
    width: 15.2rem;
    height: 15.2rem;
    border: 0.2rem solid #000;
    border-radius: 1rem;
  }
  .modal-timetable-select__item--single .select-date a {
    width: 100%;
    height: 17.4rem;
  }
  /* =============================================

  クラブ活動のモーダルウィンドウ

  ============================================= */
  .club {
    width: 72rem;
    padding: 5rem 1.5rem;
  }
}
@media only screen and (min-width: 751px) {
  .mb0pc {
    margin-bottom: 0rem !important;
  }
  .mb5pc {
    margin-bottom: 0.5rem !important;
  }
  .mb10pc {
    margin-bottom: 1rem !important;
  }
  .mb15pc {
    margin-bottom: 1.5rem !important;
  }
  .mb20pc {
    margin-bottom: 2rem !important;
  }
  .mb25pc {
    margin-bottom: 2.5rem !important;
  }
  .mb30pc {
    margin-bottom: 3rem !important;
  }
  .mb35pc {
    margin-bottom: 3.5rem !important;
  }
  .mb40pc {
    margin-bottom: 4rem !important;
  }
  .mb45pc {
    margin-bottom: 4.5rem !important;
  }
  .mb50pc {
    margin-bottom: 5rem !important;
  }
  .mb55pc {
    margin-bottom: 5.5rem !important;
  }
  .mb60pc {
    margin-bottom: 6rem !important;
  }
  .mb65pc {
    margin-bottom: 6.5rem !important;
  }
  .mb70pc {
    margin-bottom: 7rem !important;
  }
  .mb75pc {
    margin-bottom: 7.5rem !important;
  }
  .mb80pc {
    margin-bottom: 8rem !important;
  }
  .mb85pc {
    margin-bottom: 8.5rem !important;
  }
  .mb90pc {
    margin-bottom: 9rem !important;
  }
  .mb95pc {
    margin-bottom: 9.5rem !important;
  }
  .mb100pc {
    margin-bottom: 10rem !important;
  }
  .mb105pc {
    margin-bottom: 10.5rem !important;
  }
  .mb110pc {
    margin-bottom: 11rem !important;
  }
  .mb115pc {
    margin-bottom: 11.5rem !important;
  }
  .mb120pc {
    margin-bottom: 12rem !important;
  }
  .mb125pc {
    margin-bottom: 12.5rem !important;
  }
  .mb130pc {
    margin-bottom: 13rem !important;
  }
  .mb135pc {
    margin-bottom: 13.5rem !important;
  }
  .mb140pc {
    margin-bottom: 14rem !important;
  }
  .mb145pc {
    margin-bottom: 14.5rem !important;
  }
  .mb150pc {
    margin-bottom: 15rem !important;
  }
  .mb155pc {
    margin-bottom: 15.5rem !important;
  }
  .mb160pc {
    margin-bottom: 16rem !important;
  }
  .mb165pc {
    margin-bottom: 16.5rem !important;
  }
  .mb170pc {
    margin-bottom: 17rem !important;
  }
  .mb175pc {
    margin-bottom: 17.5rem !important;
  }
  .mb180pc {
    margin-bottom: 18rem !important;
  }
  .mb185pc {
    margin-bottom: 18.5rem !important;
  }
  .mb190pc {
    margin-bottom: 19rem !important;
  }
  .mb195pc {
    margin-bottom: 19.5rem !important;
  }
  .mb200pc {
    margin-bottom: 20rem !important;
  }
}
@media only screen and (max-width: 750px) {
  .mb0sp {
    margin-bottom: 0rem !important;
  }
  .mb5sp {
    margin-bottom: 0.5rem !important;
  }
  .mb10sp {
    margin-bottom: 1rem !important;
  }
  .mb15sp {
    margin-bottom: 1.5rem !important;
  }
  .mb20sp {
    margin-bottom: 2rem !important;
  }
  .mb25sp {
    margin-bottom: 2.5rem !important;
  }
  .mb30sp {
    margin-bottom: 3rem !important;
  }
  .mb35sp {
    margin-bottom: 3.5rem !important;
  }
  .mb40sp {
    margin-bottom: 4rem !important;
  }
  .mb45sp {
    margin-bottom: 4.5rem !important;
  }
  .mb50sp {
    margin-bottom: 5rem !important;
  }
  .mb55sp {
    margin-bottom: 5.5rem !important;
  }
  .mb60sp {
    margin-bottom: 6rem !important;
  }
  .mb65sp {
    margin-bottom: 6.5rem !important;
  }
  .mb70sp {
    margin-bottom: 7rem !important;
  }
  .mb75sp {
    margin-bottom: 7.5rem !important;
  }
  .mb80sp {
    margin-bottom: 8rem !important;
  }
  .mb85sp {
    margin-bottom: 8.5rem !important;
  }
  .mb90sp {
    margin-bottom: 9rem !important;
  }
  .mb95sp {
    margin-bottom: 9.5rem !important;
  }
  .mb100sp {
    margin-bottom: 10rem !important;
  }
  .mb105sp {
    margin-bottom: 10.5rem !important;
  }
  .mb110sp {
    margin-bottom: 11rem !important;
  }
  .mb115sp {
    margin-bottom: 11.5rem !important;
  }
  .mb120sp {
    margin-bottom: 12rem !important;
  }
  .mb125sp {
    margin-bottom: 12.5rem !important;
  }
  .mb130sp {
    margin-bottom: 13rem !important;
  }
  .mb135sp {
    margin-bottom: 13.5rem !important;
  }
  .mb140sp {
    margin-bottom: 14rem !important;
  }
  .mb145sp {
    margin-bottom: 14.5rem !important;
  }
  .mb150sp {
    margin-bottom: 15rem !important;
  }
  .mb155sp {
    margin-bottom: 15.5rem !important;
  }
  .mb160sp {
    margin-bottom: 16rem !important;
  }
  .mb165sp {
    margin-bottom: 16.5rem !important;
  }
  .mb170sp {
    margin-bottom: 17rem !important;
  }
  .mb175sp {
    margin-bottom: 17.5rem !important;
  }
  .mb180sp {
    margin-bottom: 18rem !important;
  }
  .mb185sp {
    margin-bottom: 18.5rem !important;
  }
  .mb190sp {
    margin-bottom: 19rem !important;
  }
  .mb195sp {
    margin-bottom: 19.5rem !important;
  }
  .mb200sp {
    margin-bottom: 20rem !important;
  }
}/*# sourceMappingURL=style.css.map */