@charset "UTF-8";

/* basic
------------------------- */
:root {
  --colorBlue: #005ab4;
  --colorGreen: #00a082;
  --colorOrange: #ff5213;
  --colorRed: #E41D35;
  --colorSkyblue: #01afd1;
  --colorYellow: #FAEF01;
  --fontFamily: "Noto Sans JP", sans-serif;
  --txtSizeS: 1.4rem;
  --txtSizeM: 1.6rem;
  --txtSizeL: 1.8rem;
  --lineHeight: 1.75;
  --breakTabLength: 768;
  --trans03S: all 0.3s ease-in-out;
  --colordGray: #555;
  --colorGray: #999;
  --colorlGray: #ccc;
  --colorBGLife: #f3efec;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: var(--fontFamily);
  font-size: var(--txtSizeM);
  font-feature-settings: "palt" 1;
  line-height: var(--lineHeight);
}

.small {
  font-size: var(--txtSizeS);
}

p {
  margin-bottom: 1em;
  font-size: var(--txtSizeM);
  font-weight: 500;
  line-height: 2;
  text-align: justify;
  text-justify: inter-character;
  word-break: normal;
  word-wrap: break-word;
}

div>p:last-child {
  margin-bottom: 0;
}

.text-right {
  text-align: right;
}

p.asterisk,
li.asterisk {
  margin: 0 0 0.25em 1.25em;
  font-size: var(--txtSizeS);
  font-weight: 500;
  line-height: 1.5em;
  text-indent: -1em;
}

p.asterisk::before,
li.asterisk::before {
  content: "※";
}

.text-s {
  font-size: var(--txtSizeS);
  font-weight: 500;
}

.pc_true {
  display: none;
}

.sp_true {
  display: block;
}

/* リンク */
a {
  transition: var(--trans03S);
}

a:hover,
a:active,
a:focus {
  color: var(--primary);
  text-decoration: none;
  opacity: 0.6;
}

a.link-round {
  background-color: var(--colorYellow);
  color: #000;
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 30px 60px;
  clip-path: polygon(10px 0%,
      /* 左上 */
      calc(100% - 10px) 0%,
      /* 右上 */
      100% 10px,
      /* 右上 */
      100% calc(100% - 10px),
      /* 右下 */
      calc(100% - 10px) 100%,
      /* 右下 */
      10px 100%,
      /* 左下 */
      0% calc(100% - 10px),
      /* 左下 */
      0% 10px);
}

a.link-round svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

a.link-border {
  color: var(--colorBlue);
  text-decoration: underline;
}

a.link-border:hover {
  text-decoration: none;
}

.text-gradient-yl-or {
  background: linear-gradient(to bottom right, var(--colorYellow), var(--colorOrange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-gr-bl {
  background: linear-gradient(to bottom right, #0cb56d, #0b56a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-lg-gr {
  background: linear-gradient(to bottom right, #e9c809, #0c997e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-yl-pr {
  background: linear-gradient(to bottom right, #ffc869, #a80063);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*--------------------------------
 tailwindcss風
--------------------------------*/
/* common */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.hidden {
  display: none !important;
}

/* width/height */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-full {
  max-width: 100%;
}

.w-90p {
  width: 90%;
}

.w-80p {
  width: 80%;
}

.max-w-md {
  max-width: 767px;
}

.min-h-screen {
  min-height: 100vh;
}

/* text */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-or {
  color: var(--colorOrange);
}

.text-white {
  color: #fff;
}

/* Position */
.flex-nowrap {
  flex-wrap: nowrap !important;

}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}


.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 10;
}

.-z-10 {
  z-index: -10;
}

.top-0 {
  top: 0;
}

.top-half {
  top: 50%;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


/* gap */
.gap-x-40 {
  column-gap: 40px !important;
}

.gap-x-60 {
  column-gap: 60px !important;
}

.gap-x-80 {
  column-gap: 80px !important;
}

.gap-x-100 {
  column-gap: 100px !important
}

.gap-y-40 {
  row-gap: 40px !important;
}

.gap-y-60 {
  row-gap: 60px !important;
}

.gap-y-80 {
  row-gap: 80px !important;
}

.gap-y-100 {
  row-gap: 100px !important
}

.bg-white {
  background-color: #fff;
}

/* img */
.object-fill {
  object-fit: fill;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-none {
  object-fit: none;
}

/* border */
.border {
  border: solid 1px var(--colorGray);
}

.border-gray-800 {
  border-color: var(--colordGray);
}

.border-gray-400 {
  border-color: var(--colorGray);
}

.border-gray-200 {
  border-color: var(--colorlGray);
}

.rounded-xs {
  border-radius: 5px;
}

.rounded-sm {
  border-radius: 10px;
}



/**
 * --------------------------------------------------------------------------
 * Site logo
 * --------------------------------------------------------------------------
 */
#pc-logo {
  transform: translateY(-50%);
  top: 50%;
  width: calc((100vw - 448px)/2);
  text-align: center;
}

/*--------------------------------
 オープニングアニメーション
--------------------------------*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  transition: transform 0.4s ease-in-out;
}

/*--------------------------------
 Layout
--------------------------------*/
body.modal-open {
  overflow: hidden;
}

.bg-around-campus {
  background-image: url('../img/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* header */
header {
  /*mediaクエリあり*/
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  background-color: #fff;
  z-index: 20;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: var(--widthMax);
  margin: 0 auto;
  padding: 0 10px;
}

.header-logo {
  margin-top: 10px;
  width: 200px;
}

/**
 * --------------------------------------------------------------------------
 * sp-navi
 * --------------------------------------------------------------------------
 */
/*hamburger*/
.hamburger {
  display: flex;
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--colorYellow);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10;
  top: 0;
  right: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 70px);
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}


/* slide-menu */
.slide-menu {
  position: fixed;
  top: 70px;
  right: -300px;
  width: 300px;
  height: calc(100vh - 70px);
  background: #fff;
  transition: right 0.3s ease;
  z-index: 99;
  padding: 20px 30px;
}

.slide-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slide-menu ul li {
  margin-bottom: 20px;
}

.slide-menu ul li a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.slide-menu.open {
  right: 0;
}

.sp-nav-nfulogo {
  width: 200px;
  height: auto;
}

/**
 * --------------------------------------------------------------------------
 * top-key-visual
 * --------------------------------------------------------------------------
 */

/* KV Swiper */
.kv-swiper {
  width: 100%;
  height: calc(100svh - 70px);
}

.kv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.kv_link,
button.kv_link {
  border: 1px solid #fff;
  border-radius: 100px;
  display: inline-block;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
}

/**
 * --------------------------------------------------------------------------
 * top-key-visualの下
 * --------------------------------------------------------------------------
 */
.text-kv-near {
  width: 75%;
  max-width: 420px;
}

.text-kv-16min {
  width: 75%;
  max-width: 420px;
  transform: rotate(1.5deg);
}

.text-kv-3station {
  width: 75%;
  max-width: 420px;
  transform: rotate(-3.1deg);
}

#top-kvtext {
  background-image: url(../img/bg_kt.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#top-kvtext ul li {
  opacity: 0;
  transform: scale(0.8);
}

#top-kvtext ul li.is-visible {
  animation: pop-in 0.5s ease-out forwards;
}

#top-kvtext ul li.is-visible:nth-child(2) {
  animation-delay: 0.3s;
}

#top-kvtext ul li.is-visible:nth-child(3) {
  animation-delay: 0.5s;
}


/**
 * --------------------------------------------------------------------------
 * ページ内ナビゲーション
 * --------------------------------------------------------------------------
 */
.text-nav-new {
  width: 85%;
  max-width: 420px;
}

.text-nav-16min {
  width: 85%;
  max-width: 420px;
}

.text-nav-around {
  width: 85%;
  max-width: 420px;
}


#top-nav ul li {
  animation: kaku-kaku 1.8s steps(1, end) infinite;
}

#top-nav ul li:nth-child(2) {
  animation-delay: 1.3s;
}

#top-nav ul li:nth-child(3) {
  animation-delay: 1.6s;
}

/**
 * --------------------------------------------------------------------------
 * コメント
 * --------------------------------------------------------------------------
 */
.comments-near li {
  width: 90%;
  max-width: 400px;
}

.comment-photo {
  width: 30%;
}

.comment-text {
  width: 70%;
}

.comment-text p {
  line-height: 1.6;
}

.comments-1 .absolute,
.comments-3 .absolute {
  top: 0;
  left: -20px;
}

.comments-1 p,
.comments-3 p {
  padding: 15px 20px 0 30px;
}

.comments-2 .absolute {
  top: 0;
  right: -20px;
}

.comments-2 p {
  padding: 25px 35px 0 20px;
}

.comments-near li {
  opacity: 0;
  transform: scale(0.8);
}

.comments-near li.is-visible {
  animation: pop-in 0.5s ease-out forwards;
}

.comments-near li.is-visible:nth-child(2) {
  animation-delay: 0.3s;
}

.comments-near li.is-visible:nth-child(3) {
  animation-delay: 0.5s;
}

/**
 * --------------------------------------------------------------------------
 * campus
 * --------------------------------------------------------------------------
 */

.campusIndexRead {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #01afd1;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 5px;
  flex-direction: column;
}

.campusIndexRead .new {
  font-size: 1.5rem;
  background: #FAEF01;
  padding: 5px 10px;
}

.campusIndexTitle {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 30px 0;
  text-align: center;
}

/**
 * --------------------------------------------------------------------------
 * ループスライドイメージ
 * --------------------------------------------------------------------------
 */
.mv-slide {
  width: 100%;
  margin-top: 10px;
  background-image: url("../img/mv-slide.jpg");
  background-size: auto 100%;
  aspect-ratio: 6825 / 300;
  height: min(300px, 30vw);
  position: relative;
  animation: bgSlider 200s linear infinite;
}



/**
 * --------------------------------------------------------------------------
 * access
 * --------------------------------------------------------------------------
 */
.access-minutes-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.access-minutes-flex div.access-minutes,
.access-minutes-flex div.access-text {
  width: 100%;
}

.access-minutes-nagoya {
  width: 100%;
  border: solid 1px #000;
  border-radius: 5px;
  padding: 20px 0;
  background-color: #fff;
}

.access-minutes-flex-sub {
  display: flex;
  justify-content: space-between;
}

.access-minutes-flex-sub div {
  width: 32%;
  padding: 20px 0;
  border-radius: 5px;
  border: solid 1px #000;
  background-color: #fff;
}


.access-minutes div p {
  text-align: center;
  font-size: var(--txtSizeL);
  line-height: 1.5;
}

.access-minutes div p span.access-address {
  font-size: 1.8rem;
}

.access-minutes div p strong {
  font-size: 2.4rem;
  color: var(--colorSkyblue);
}

.access-minutes div.access-minutes-nagoya p {
  font-size: var(--txtSizeL);
  letter-spacing: 0.05em;
}

.access-minutes div.access-minutes-nagoya p span.access-address {
  font-size: 2.2rem;
}

.access-minutes div.access-minutes-nagoya p strong {
  font-size: 2.8rem;
  color: var(--colorSkyblue);
}

/**
 * --------------------------------------------------------------------------
 * TOKAI CAMPUS
 * --------------------------------------------------------------------------
 */
#nav-map {
  background-color: var(--colorBGLife);
}

#nav-map ul {
  gap: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.category-link {
  display: block;
  height: 43px;
  border: 1.5px solid #000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-left: 15px
}

.category-all {
  background-color: #FFF;
}

a.category-cafe {
  background-color: #FFC172;
}

a.category-shopping {
  background-color: #FFC4EA;
}

a.category-culture {
  background-color: #A9BFE3;
}

span.ico {
  position: relative;
}

span.ico img {
  position: relative;
  top: -2px;
}

#shops-list {
  overflow-x: auto;
}

#shops-list ul {
  gap: 15px;
  height: 160px;
}

#shops-list ul li.shop-item {
  flex-shrink: 0;
  width: 120px;
  transition: opacity 0.5s ease;
}

#shops-list ul li.shop-item p {
  font-size: 1.4rem;
  line-height: 1.4;
}

/**
 * --------------------------------------------------------------------------
 * マップ
 * --------------------------------------------------------------------------
 */
.move-map {
  overflow: hidden;
  height: 360px;
  text-align: center;
  margin: 0 auto;
}

.move-map .move-map-img img {
  height: 360px;
  object-fit: cover;
}

.map-spot-list {
  z-index: 10;
  width: 375px;
  margin: 0 auto;
}

.map-spot {
  width: 38px;
  height: auto;
  position: absolute;
  top: 0;
}

#spot-yoshino {
  top: 92px;
  left: 99px;
}

#spot-starbucks {
  top: 41px;
  left: 137px;
}

#spot-kurasotto {
  top: 264px;
  left: 138px;
}

#spot-subway {
  top: 38px;
  left: 94px;
}

#spot-panfield {
  top: 273px;
  left: 318px;
}

#spot-forest-mall {
  top: 4px;
  left: 80px;
}

#spot-sorato {
  top: 297px;
  left: 240px;
}

#spot-cainz {
  top: 80px;
  left: 46px;
}

#spot-feel {
  top: 11px;
  left: 118px;
}

#spot-tokai-arts {
  top: 279px;
  left: 164px;
}

/**
 * --------------------------------------------------------------------------
 * マップのポップアップ
 * --------------------------------------------------------------------------
 */
.shop-popup-list {
  z-index: 20;
  top: 50px;
  width: 320px;
  left: calc(50% - 160px);
}

.shop-popup {
  border: 1.5px solid #000;
  border-radius: 15px;
  background-color: #fff;
  padding: 30px 30px 20px 30px;
  width: 320px;
}

.pop-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -20px;
  left: -20px;
}

.pop-close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 8px;
  right: 10px;
}

.pop-close img {
  vertical-align: baseline;
}

.shop-popup p {
  line-height: 1.6;
}

.shop-popup {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.shop-popup.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/**
 * --------------------------------------------------------------------------
 * 過ごし方
 * --------------------------------------------------------------------------
 */
#top-campuslife {
  background-color: var(--colorBGLife);
}

.bg-campuslife {
  background-image: url(../img/bg_campluslife.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 340px auto;
}

.w-casetext {
  width: 160px;
  height: auto;
}

.case-card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: 0;
  margin: 0;
}

.case-card ul li:before {
  content: "●";
  margin-right: 5px;
  color: #757CBB;
}

.case-cards-slider {
  overflow: hidden;
}

.swiper-pagination {
  position: static !important;
  margin-top: 10px;
  font-size: 3rem;
}

.swiper-pagination .swiper-pagination-current {
  position: relative;
  top: -5px;
  font-weight: bold;
  margin-right: 10px;
  font-style: italic;
}

.swiper-pagination .swiper-pagination-total {
  position: relative;
  bottom: -5px;
  margin-left: 10px;
  font-style: italic;
}

.swiper-button-prev,
.swiper-button-next {
  color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: -35px;
}

.swiper-button-next {
  right: -35px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 24px;
}

/**
 * --------------------------------------------------------------------------
 * gakubu
 * --------------------------------------------------------------------------
 */
.link-bg-sogo {
  background-image: linear-gradient(130deg, rgba(196, 138, 154, 1), rgba(151, 48, 77, 1));
}

.link-bg-shakai {
  background-image: linear-gradient(130deg, rgba(95, 172, 173, 1), rgba(0, 122, 124, 1));
}

.link-bg-keizai {
  background-image: linear-gradient(130deg, rgba(199, 181, 93, 1), rgba(167, 139, 0, 1));
}

.link-bg-kokusai {
  background-image: linear-gradient(130deg, rgba(141, 159, 97, 1), rgba(88, 114, 22, 1));
}

.link-bg-kango {
  background-image: linear-gradient(130deg, rgba(207, 135, 133, 1), rgba(190, 92, 88, 1));
}

.link-bg-kenko {
  background-image: linear-gradient(130deg, rgba(162, 155, 185, 1), rgba(106, 95, 142, 1));
}

.link-bg-kougaku {
  background-image: linear-gradient(130deg, rgba(115, 146, 179, 1), rgba(46, 92, 142, 1));
}

.link-bg-kyoiku {
  background-image: linear-gradient(130deg, rgba(206, 151, 170, 1), rgba(170, 75, 107, 1));
}

.link-bg-sports {
  background-image: linear-gradient(130deg, rgba(124, 176, 155, 1), rgba(42, 127, 93, 1));
}

.link-bg-fukushi {
  background-image: linear-gradient(130deg, rgba(203, 162, 168, 1), rgba(165, 93, 103, 1));
}


.gakubu-box {
  width: 100%;
  position: relative;
}

.gakubu-box a {
  display: flex;
  flex-direction: row;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.gakubu-box a img {
  width: 40%;
}

.gakubu-text {
  font-weight: bold;
  padding: 0 20px;
  width: 60%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.gakubu-text p {
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.3;
}

.gakubu-text p span {
  font-size: 1.6rem;
  opacity: 0.8;
}


.gakubu-text p.campus {
  font-size: 1.4rem;
  font-weight: normal;
  width: 100%;
}

.bg-yellow {
  background-color: #FDFCD9;
  border-radius: 20px;
  padding: 20px;
}

#gakubu-opencampus {
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}




/**
 * --------------------------------------------------------------------------
 * common popup
 * --------------------------------------------------------------------------
 */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.popup-content {
  width: calc(100% - 20px);
  background: #fff;
  padding: 2rem;
  position: relative;
}

.popup-content button.close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  background-color: var(--colorSkyblue);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content-flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-direction: column;
  flex-wrap: wrap;
}

.popup-content-flex>div {
  width: 100%;
}

.popup-content-flex h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.popup-content-flex p.h3-sub {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0;
}

.pop-inner-p {
  font-size: var(--txtSizeM);
  line-height: 1.6;
}

.popup-content-flex>div.switch-image {
  position: relative;
  width: 80%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}


/* top-floormap popup */
.f-popup-content {
  width: calc(100% - 40px);
  max-width: 500px;
  background: #fff;
  padding: 35px;
  position: relative;
}

.f-popup-content button.close {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  background-color: var(--colorSkyblue);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-popup-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 2rem 0;
  text-align: center;
  line-height: 1.4;
}

.image-box {
  text-align: center;
}

.f-popup-content .image-box img {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

#campus-overview {
  padding-bottom: 100px;
}

.campus-guide h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--colorSkyblue);
}

.campus-guide ul {
  margin-bottom: 50px;
}

.campus-guide ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.campus-guide ul li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #ccc;
  border-radius: 5px;
}



/**
 * --------------------------------------------------------------------------
 * Footer
 * --------------------------------------------------------------------------
 */
a.link-bt-border {
  height: 100px;
  border: 2px solid var(--colorYellow);
  display: flex;
  align-items: center;
  position: relative;
  font-weight: bold;
  background-color: #fff;
}

a.link-bt-border .link-bt-border-img {
  width: 96px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.link-bt-border .link-bt-border-text {
  margin-left: 20px;
}

a.link-bt-border svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/**
 * --------------------------------------------------------------------------
 * Loading Movie
 * --------------------------------------------------------------------------
 */
#loading {
  background-color: rgba(255, 255, 255, 1);
  z-index: 999;
}

#loading::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border: 3px solid #000;
  border-top-color: transparent;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: loading-spinner 1s linear infinite;
}

/* 動画の準備ができたらスピナーを消す */
#loading.video-ready::after {
  display: none;
}

@keyframes loading-spinner {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#loading-video {
  object-fit: cover;
}

#loading-skip {
  bottom: 30px;
  right: 30px;
  opacity: 0;
}

/**
 * --------------------------------------------------------------------------
 * 767px以下
 * --------------------------------------------------------------------------
 */
@media screen and (max-width: 767px) {

  #pc-nav,
  #pc-logo {
    display: none;
  }

  .bg-around-campus {
    background-image: none;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    z-index: 20;
  }
}

/**
 * --------------------------------------------------------------------------
 * 767px以上
 * --------------------------------------------------------------------------
 */
@media screen and (min-width: 768px) {
  #loading-video {
    object-fit: contain;
  }

  #loading-skip {
    left: calc(50% + 80px);
  }

  main {
    border-left: solid 1px var(--colorGray);
    border-right: solid 1px var(--colorGray);
  }

  .max-w-md {
    width: 448px;
  }

  header {
    width: 446px;
    left: 50%;
    transform: translateX(-50%);
  }

  #hamburger {
    display: none;
  }
}

/**
 * --------------------------------------------------------------------------
 * PC-Nav
 * --------------------------------------------------------------------------
 */
#pc-nav {
  left: 50%;
  margin-left: 225px;
  top: 30px;
  width: 230px;
  height: 360px;
  background: url(../img/bg_pcnav.svg) top left no-repeat;
}

.pcnav-list a {
  display: block;
  font-size: 1.4rem;
}

.pc-nav-nfulogo {
  width: 140px;
  height: auto;
}

/**
 * --------------------------------------------------------------------------
 * Animation
 * --------------------------------------------------------------------------
 */
/* スライド */
@keyframes bgSlider {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -6825px 0;
  }
}

/* ポップに出現 */
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  80% {
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* カクカクと動く */
@keyframes kaku-kaku {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(1.5deg);
  }
}