@charset "UTF-8";
/** |READ ME| **************************************************************************************

"jpss.jp"

フロント用スタイル
/css/import_front.css

----------------------------------------------------------------------------------------------------

フロントエンドで使用するスタイルについては、基本的にこちらですべてforwardして1ファイルにまとめます。

************************************************************************************** |READ ME| **/
/* ----------------------------------------------
   common
---------------------------------------------- */
/* HTML要素設定用CSS */
/* 共通部分 */
/* リニューアル2017
---------------------------------------------- */
/* plugin */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #000;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx .hamburger-inner:after, .hamburger--3dx .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx.is-active .hamburger-inner {
  transform: rotateY(180deg);
  background-color: transparent;
}

.hamburger--3dx.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx-r .hamburger-inner:after, .hamburger--3dx-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx-r.is-active .hamburger-inner {
  transform: rotateY(-180deg);
  background-color: transparent;
}

.hamburger--3dx-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy .hamburger-inner:after, .hamburger--3dy .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy.is-active .hamburger-inner {
  transform: rotateX(-180deg);
  background-color: transparent;
}

.hamburger--3dy.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy-r .hamburger-inner:after, .hamburger--3dy-r .hamburger-inner:before {
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy-r.is-active .hamburger-inner {
  transform: rotateX(180deg);
  background-color: transparent;
}

.hamburger--3dy-r.is-active .hamburger-inner:before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--arrow.is-active .hamburger-inner:before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrow.is-active .hamburger-inner:after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowalt .hamburger-inner:before {
  transition: top 0.1s ease 0.15s, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner:after {
  transition: bottom 0.1s ease 0.15s, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease, transform 0.15s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowalt.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease, transform 0.15s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrowalt-r .hamburger-inner:before {
  transition: top 0.1s ease 0.15s, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner:after {
  transition: bottom 0.1s ease 0.15s, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease, transform 0.15s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease, transform 0.15s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner:after, .hamburger--boring .hamburger-inner:before {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.15s;
}

.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.27s;
  opacity: 0;
}

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s, transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  transform: rotate(-90deg);
}

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.15s;
}

.hamburger--collapse-r .hamburger-inner:after {
  top: -20px;
  transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(45deg);
}

.hamburger--collapse-r.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.27s;
  opacity: 0;
}

.hamburger--collapse-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s, transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.42s;
  transform: rotate(90deg);
}

.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-duration: 0.4s;
}

.hamburger--elastic .hamburger-inner:before {
  top: 10px;
  transition: opacity 0.15s ease 0.4s;
}

.hamburger--elastic .hamburger-inner:after {
  top: 20px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transition-delay: 0.1s;
  transform: translate3d(0, 10px, 0) rotate(135deg);
}

.hamburger--elastic.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner:after {
  transition-delay: 0.1s;
  transform: translate3d(0, -20px, 0) rotate(-270deg);
}

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-duration: 0.4s;
}

.hamburger--elastic-r .hamburger-inner:before {
  top: 10px;
  transition: opacity 0.15s ease 0.4s;
}

.hamburger--elastic-r .hamburger-inner:after {
  top: 20px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transition-delay: 0.1s;
  transform: translate3d(0, 10px, 0) rotate(-135deg);
}

.hamburger--elastic-r.is-active .hamburger-inner:before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner:after {
  transition-delay: 0.1s;
  transform: translate3d(0, -20px, 0) rotate(270deg);
}

.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.2s ease-in 0.25s;
}

.hamburger--emphatic .hamburger-inner:before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.2s, left 0.2s ease-in 0.25s;
}

.hamburger--emphatic .hamburger-inner:after {
  top: 10px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.2s, right 0.2s ease-in 0.25s;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic.is-active .hamburger-inner:before {
  top: -80px;
  left: -80px;
  transition: left 0.2s ease-out, top 0.05s linear 0.2s, transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
}

.hamburger--emphatic.is-active .hamburger-inner:after {
  top: -80px;
  right: -80px;
  transition: right 0.2s ease-out, top 0.05s linear 0.2s, transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
}

.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.2s ease-in 0.25s;
}

.hamburger--emphatic-r .hamburger-inner:before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.2s, left 0.2s ease-in 0.25s;
}

.hamburger--emphatic-r .hamburger-inner:after {
  top: 10px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.2s, right 0.2s ease-in 0.25s;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}

.hamburger--emphatic-r.is-active .hamburger-inner:before {
  top: 80px;
  left: -80px;
  transition: left 0.2s ease-out, top 0.05s linear 0.2s, transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
}

.hamburger--emphatic-r.is-active .hamburger-inner:after {
  top: 80px;
  right: -80px;
  transition: right 0.2s ease-out, top 0.05s linear 0.2s, transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) 0.25s;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
}

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: transform, opacity;
}

.hamburger--slider .hamburger-inner:after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner:after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: transform, opacity;
}

.hamburger--slider-r .hamburger-inner:after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner:before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner:after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s linear 0.15s;
}

.hamburger--spring .hamburger-inner:before {
  top: 10px;
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner:after {
  top: 20px;
  transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s, transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.32s;
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.32s;
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.15s;
}

.hamburger--spring-r .hamburger-inner:after {
  top: -20px;
  transition: top 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.3s, transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--spring-r.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s linear 0.32s;
  opacity: 0;
}

.hamburger--spring-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.12s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.18s, transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1) 0.32s;
  transform: rotate(90deg);
}

.hamburger--stand .hamburger-inner {
  transition: transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.22s, background-color 0s linear 0.1s;
}

.hamburger--stand .hamburger-inner:before {
  transition: top 0.1s ease-in 0.1s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.1s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand.is-active .hamburger-inner {
  transition: transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.22s;
  transform: rotate(90deg);
  background-color: transparent;
}

.hamburger--stand.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out 0.12s, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: rotate(-45deg);
}

.hamburger--stand.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out 0.12s, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: rotate(45deg);
}

.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.22s, background-color 0s linear 0.1s;
}

.hamburger--stand-r .hamburger-inner:before {
  transition: top 0.1s ease-in 0.1s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand-r .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.1s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand-r.is-active .hamburger-inner {
  transition: transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.22s;
  transform: rotate(-90deg);
  background-color: transparent;
}

.hamburger--stand-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out 0.12s, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: rotate(-45deg);
}

.hamburger--stand-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out 0.12s, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transform: rotate(45deg);
}

.hamburger--spin .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.3s;
}

.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.34s, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(225deg);
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s;
  opacity: 0;
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transform: rotate(-90deg);
}

.hamburger--spin-r .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.3s;
}

.hamburger--spin-r .hamburger-inner:before {
  transition: top 0.1s ease-in 0.34s, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.34s, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(-225deg);
}

.hamburger--spin-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.14s;
  opacity: 0;
}

.hamburger--spin-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transform: rotate(90deg);
}

.hamburger--squeeze .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.1s;
}

.hamburger--squeeze .hamburger-inner:before {
  transition: top 0.1s ease 0.14s, opacity 0.1s ease;
}

.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 0.1s ease 0.14s, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease, opacity 0.1s ease 0.14s;
  opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.14s;
  transform: rotate(-90deg);
}

.hamburger--vortex .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: 0.3s;
}

.hamburger--vortex .hamburger-inner:after, .hamburger--vortex .hamburger-inner:before {
  transition-delay: 0.1s;
  transition-timing-function: linear;
  transition-duration: 0s;
}

.hamburger--vortex .hamburger-inner:before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner:after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(765deg);
}

.hamburger--vortex.is-active .hamburger-inner:after, .hamburger--vortex.is-active .hamburger-inner:before {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(90deg);
}

.hamburger--vortex-r .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-duration: 0.3s;
}

.hamburger--vortex-r .hamburger-inner:after, .hamburger--vortex-r .hamburger-inner:before {
  transition-delay: 0.1s;
  transition-timing-function: linear;
  transition-duration: 0s;
}

.hamburger--vortex-r .hamburger-inner:before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner:after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(-765deg);
}

.hamburger--vortex-r.is-active .hamburger-inner:after, .hamburger--vortex-r.is-active .hamburger-inner:before {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*! Hint.css - v2.4.1 - 2016-11-08
* http://kushagragour.in/lab/hint/
* Copyright (c) 2016 Kushagra Gour */
[class*=hint--] {
  position: relative;
  display: inline-block;
}

[class*=hint--]:after, [class*=hint--]:before {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: 0.3s ease;
  transition-delay: 0s;
}

[class*=hint--]:hover:after, [class*=hint--]:hover:before {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
}

[class*=hint--]:before {
  content: "";
  position: absolute;
  background: 0 0;
  border: 6px solid transparent;
  z-index: 1000001;
}

[class*=hint--]:after {
  background: #383838;
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 12px;
  white-space: nowrap;
  text-shadow: 0 -1px 0 #000;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}

[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:after, [aria-label=""]:before, [data-hint=""]:after, [data-hint=""]:before {
  display: none !important;
}

.hint--top-left:before, .hint--top-right:before, .hint--top:before {
  border-top-color: #383838;
}

.hint--bottom-left:before, .hint--bottom-right:before, .hint--bottom:before {
  border-bottom-color: #383838;
}

.hint--top:after, .hint--top:before {
  bottom: 100%;
  left: 50%;
}

.hint--top:before {
  margin-bottom: -11px;
  left: calc(50% - 6px);
}

.hint--top:after {
  transform: translateX(-50%);
}

.hint--top:hover:before {
  transform: translateY(-8px);
}

.hint--top:hover:after {
  transform: translateX(-50%) translateY(-8px);
}

.hint--bottom:after, .hint--bottom:before {
  top: 100%;
  left: 50%;
}

.hint--bottom:before {
  margin-top: -11px;
  left: calc(50% - 6px);
}

.hint--bottom:after {
  transform: translateX(-50%);
}

.hint--bottom:hover:before {
  transform: translateY(8px);
}

.hint--bottom:hover:after {
  transform: translateX(-50%) translateY(8px);
}

.hint--right:before {
  border-right-color: #383838;
  margin-left: -11px;
  margin-bottom: -6px;
}

.hint--right:after {
  margin-bottom: -14px;
}

.hint--right:after, .hint--right:before {
  left: 100%;
  bottom: 50%;
}

.hint--right:hover:after, .hint--right:hover:before {
  transform: translateX(8px);
}

.hint--left:before {
  border-left-color: #383838;
  margin-right: -11px;
  margin-bottom: -6px;
}

.hint--left:after {
  margin-bottom: -14px;
}

.hint--left:after, .hint--left:before {
  right: 100%;
  bottom: 50%;
}

.hint--left:hover:after, .hint--left:hover:before {
  transform: translateX(-8px);
}

.hint--top-left:after, .hint--top-left:before {
  bottom: 100%;
  left: 50%;
}

.hint--top-left:before {
  margin-bottom: -11px;
  left: calc(50% - 6px);
}

.hint--top-left:after {
  transform: translateX(-100%);
  margin-left: 12px;
}

.hint--top-left:hover:before {
  transform: translateY(-8px);
}

.hint--top-left:hover:after {
  transform: translateX(-100%) translateY(-8px);
}

.hint--top-right:after, .hint--top-right:before {
  bottom: 100%;
  left: 50%;
}

.hint--top-right:before {
  margin-bottom: -11px;
  left: calc(50% - 6px);
}

.hint--top-right:after {
  transform: translateX(0);
  margin-left: -12px;
}

.hint--top-right:hover:after, .hint--top-right:hover:before {
  transform: translateY(-8px);
}

.hint--bottom-left:after, .hint--bottom-left:before {
  top: 100%;
  left: 50%;
}

.hint--bottom-left:before {
  margin-top: -11px;
  left: calc(50% - 6px);
}

.hint--bottom-left:after {
  transform: translateX(-100%);
  margin-left: 12px;
}

.hint--bottom-left:hover:before {
  transform: translateY(8px);
}

.hint--bottom-left:hover:after {
  transform: translateX(-100%) translateY(8px);
}

.hint--bottom-right:after, .hint--bottom-right:before {
  top: 100%;
  left: 50%;
}

.hint--bottom-right:before {
  margin-top: -11px;
  left: calc(50% - 6px);
}

.hint--bottom-right:after {
  transform: translateX(0);
  margin-left: -12px;
}

.hint--bottom-right:hover:after, .hint--bottom-right:hover:before {
  transform: translateY(8px);
}

.hint--large:after, .hint--medium:after, .hint--small:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word;
}

.hint--small:after {
  width: 80px;
}

.hint--medium:after {
  width: 150px;
}

.hint--large:after {
  width: 300px;
}

.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0 #592726;
}

.hint--error.hint--top-left:before, .hint--error.hint--top-right:before, .hint--error.hint--top:before {
  border-top-color: #b34e4d;
}

.hint--error.hint--bottom-left:before, .hint--error.hint--bottom-right:before, .hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d;
}

.hint--error.hint--left:before {
  border-left-color: #b34e4d;
}

.hint--error.hint--right:before {
  border-right-color: #b34e4d;
}

.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0 #6c5328;
}

.hint--warning.hint--top-left:before, .hint--warning.hint--top-right:before, .hint--warning.hint--top:before {
  border-top-color: #c09854;
}

.hint--warning.hint--bottom-left:before, .hint--warning.hint--bottom-right:before, .hint--warning.hint--bottom:before {
  border-bottom-color: #c09854;
}

.hint--warning.hint--left:before {
  border-left-color: #c09854;
}

.hint--warning.hint--right:before {
  border-right-color: #c09854;
}

.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0 #1a3c4d;
}

.hint--info.hint--top-left:before, .hint--info.hint--top-right:before, .hint--info.hint--top:before {
  border-top-color: #3986ac;
}

.hint--info.hint--bottom-left:before, .hint--info.hint--bottom-right:before, .hint--info.hint--bottom:before {
  border-bottom-color: #3986ac;
}

.hint--info.hint--left:before {
  border-left-color: #3986ac;
}

.hint--info.hint--right:before {
  border-right-color: #3986ac;
}

.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0 #1a321a;
}

.hint--success.hint--top-left:before, .hint--success.hint--top-right:before, .hint--success.hint--top:before {
  border-top-color: #458746;
}

.hint--success.hint--bottom-left:before, .hint--success.hint--bottom-right:before, .hint--success.hint--bottom:before {
  border-bottom-color: #458746;
}

.hint--success.hint--left:before {
  border-left-color: #458746;
}

.hint--success.hint--right:before {
  border-right-color: #458746;
}

.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible;
}

.hint--always.hint--top:before {
  transform: translateY(-8px);
}

.hint--always.hint--top:after {
  transform: translateX(-50%) translateY(-8px);
}

.hint--always.hint--top-left:before {
  transform: translateY(-8px);
}

.hint--always.hint--top-left:after {
  transform: translateX(-100%) translateY(-8px);
}

.hint--always.hint--top-right:after, .hint--always.hint--top-right:before {
  transform: translateY(-8px);
}

.hint--always.hint--bottom:before {
  transform: translateY(8px);
}

.hint--always.hint--bottom:after {
  transform: translateX(-50%) translateY(8px);
}

.hint--always.hint--bottom-left:before {
  transform: translateY(8px);
}

.hint--always.hint--bottom-left:after {
  transform: translateX(-100%) translateY(8px);
}

.hint--always.hint--bottom-right:after, .hint--always.hint--bottom-right:before {
  transform: translateY(8px);
}

.hint--always.hint--left:after, .hint--always.hint--left:before {
  transform: translateX(-8px);
}

.hint--always.hint--right:after, .hint--always.hint--right:before {
  transform: translateX(8px);
}

.hint--rounded:after {
  border-radius: 4px;
}

.hint--no-animate:after, .hint--no-animate:before {
  transition-duration: 0s;
}

.hint--bounce:after, .hint--bounce:before {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@keyframes bounce {
  from, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}

/* Back exits */
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

/* Lightspeed */
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

/* Rotating exits */
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

/* Specials */
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}

/* Zooming entrances */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}

/* Zooming exits */
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}

/* Sliding entrances */
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}

/* Sliding exits */
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

/* foundation layer: normalize.css */
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* settings, variables ... */
/* =============================================================================
   variable
============================================================================= */
/* ----------------------------------------------
   size
---------------------------------------------- */
/* ----------------------------------------------
   colors
---------------------------------------------- */
/* ----------------------------------------------
   font
---------------------------------------------- */
/* =============================================================================
   mixins
============================================================================= */
/* ----------------------------------------------
   clearfix
---------------------------------------------- */
/* ----------------------------------------------
   list reset default style
---------------------------------------------- */
/* ----------------------------------------------
   image hover
---------------------------------------------- */
/* =============================================================================
   css animation
============================================================================= */
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
/* tag level styling */
img {
  max-width: 100%;
}

input[type=submit] {
  cursor: pointer;
}

/* module */
/* =============================================================================
   modules
============================================================================= */
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: 0 0;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper [tabindex="0"] {
  outline: 0 !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus, .modaal-close:hover {
  outline: 0;
  background: #fff;
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #b93d0c;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:after, .modaal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

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

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

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: 0 0;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

.modaal-instagram .modaal-container {
  width: auto;
  background: 0 0;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: 0 0;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: 0;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: 0;
  background: #fff;
}

.modaal-gallery-control:focus:after, .modaal-gallery-control:focus:before, .modaal-gallery-control:hover:after, .modaal-gallery-control:hover:before {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:after, .modaal-gallery-control:before {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:after, .modaal-gallery-prev:before {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container embed, .modaal-video-container iframe, .modaal-video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

.modaal-loading-spinner {
  background: 0 0;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:after, .modaal-gallery-control:before {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
/* settings, variables ... */
/* ----------------------------------------------
   clearfix
---------------------------------------------- */
.clearfix, .clearFix {
  *zoom: 1;
}
.clearfix:after, .clearFix:after {
  content: "";
  display: block;
  clear: both;
}

/* ----------------------------------------------
   plugin
---------------------------------------------- */
.modaal-video-wrap {
  position: relative;
}

.modaal-inner-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.modaal-video-wrap .text-video-information {
  position: absolute;
  top: -2em;
  left: 0;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  color: #fff;
}
.modaal-video-wrap .text-video-information a {
  margin-right: 1em;
  color: #fff;
}

.modaal-video-container {
  overflow: auto;
  padding-bottom: 40%;
}

.slick-arrow button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0;
  background-color: transparent;
}

.slick-dots li {
  margin: 0;
  width: 20px;
  height: 10px;
}
.slick-dots li button {
  outline: none;
}
.slick-dots li button::before {
  content: "";
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 rgba(51, 51, 51, 0.6);
  opacity: 1;
}
.slick-dots li.slick-active button::before {
  background-color: #da3c1d;
  opacity: 1;
}

/* ----------------------------------------------
   既存ページの上書き
---------------------------------------------- */
.jpss2017r .univBannerHead {
  line-height: 1;
}
.jpss2017r .univBannerHead:first-child {
  padding-top: 0;
}

.jpss2017r-mod- {
  /* ----------------------------------------------
     rollover
  ---------------------------------------------- */
  /* ----------------------------------------------
     button
  ---------------------------------------------- */
  /* ----------------------------------------------
     title
  ---------------------------------------------- */
  /* ----------------------------------------------
     link
  ---------------------------------------------- */
  /* ----------------------------------------------
     text
  ---------------------------------------------- */
  /* ----------------------------------------------
     table
  ---------------------------------------------- */
  /*
  #DepBody .unvExamTable {
    text-align: left
  }

  .unvExamTable table {
    width: 100%;
    border-top: solid 1px #c8c8c8;
    border-left: solid 1px #c8c8c8;
    border-right: solid 1px #ccc;
    table-layout: fixed;
    text-align: left
  }

  .unvExamTable td,.unvExamTable th {
    border-left: solid 1px #fff;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #c8c8c8;
    padding: 9px 12px
  }

  #DepBody2,#DepBody2 .infoCntB .verticalBorder,#DepBody2 .infoCntC .verticalBorder,.depObjFull {
    border-bottom: solid 1px #ccc;
    border-left: solid 1px #ccc
  }

  .unvExamTable th {
    width: 30%;
    background-color: #fffffa;
    font-weight: 400;
    border-right: solid 1px #c8c8c8;
    color: #1d5696
  }

  .unvExamTable .noRBorderTh th {
    border-right: none
  }

  .unvExamTable td {
    width: 70%;
    background-color: #fffffa;
    word-wrap: break-word;
    border-right: solid 1px #fff;
    color: #3c3c3c
  }

  #DepBody .infoUnivCnt .depObj .depObjIn .whiteBase,#DepBody2,#DepBody2 .infoCntB .infoCntBIn .whiteBase .centerCol,#DepBody2 .infoCntB .infoCntBIn .whiteBase .leftCol,#DepBody2 .infoCntB .verticalBorder,#DepBody2 .infoCntC .infoCntCIn .whiteBase,#DepBody2 .infoCntC .verticalBorder,.depObjFull,.infoCntCRow .leftCol,.infoPointIn {
    border-right: solid 1px #ccc
  }

  .unvExamTable tr.evenTr th {
    background-color: #f0f0f0
  }

  .unvExamTable tr.evenTr td {
    background-color: #f5f5f5
  }

  .unvExamTable tr.apply th,.unvExamTable tr.department th {
    background-color: #d3e8ff
  }

  .unvExamTable tr.apply td,.unvExamTable tr.department td {
    background-color: #ecf5ff
  }
  */
  /* ----------------------------------------------
     icon
  ---------------------------------------------- */
  /* ----------------------------------------------
     text
  ---------------------------------------------- */
  /* ----------------------------------------------
     directregistbox
  ---------------------------------------------- */
  /* ----------------------------------------------
     induce scout
     induce scholarship
  ---------------------------------------------- */
  /* ----------------------------------------------
     中国語の時のフッターのリンク
  ---------------------------------------------- */
  /* ----------------------------------------------
     pager
  ---------------------------------------------- */
  /* ----------------------------------------------
     折りたたみテキストボックス
  ---------------------------------------------- */
  /* ----------------------------------------------
     規約表示ボックス
  ---------------------------------------------- */
}
.jpss2017r-mod-rollover:hover {
  opacity: 0.7;
}
.jpss2017r-mod-imgrollover:hover img {
  opacity: 0.7;
}
.jpss2017r-mod-btn__login {
  display: inline-block;
  padding: 0.4em 0.5em 0.3em;
  border: 1px solid #333;
  border-radius: 3px;
  color: #333;
  text-decoration: none;
  text-align: center;
}
.jpss2017r-mod-btn__regist {
  display: inline-block;
  padding: 0.4em 0.5em 0.3em;
  border: 1px solid #36b120;
  border-radius: 3px;
  background-color: #36b120;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.jpss2017r-mod-btn__cancel {
  display: inline-block;
  padding: 0.4em 0.5em 0.3em;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border: 1px solid #b2b2b2;
  text-shadow: 1px 1px 0 rgba(120, 120, 120, 0.75);
  background: #dcdcdc;
  background: linear-gradient(to bottom, #dcdcdc 0, #b2b2b2 100%);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.6);
  font-weight: 700;
  font-size: 21px;
}
.jpss2017r-mod-btn__next {
  display: inline-block;
  padding: 0.4em 0.5em 0.3em;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border: 1px solid #3d9248;
  text-shadow: 1px 1px 0 rgba(61, 145, 71, 0.75);
  background: #4db85a;
  background: linear-gradient(to bottom, #4db85a 0, #3b8c44 100%);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.6);
  font-weight: 700;
  font-size: 21px;
}
#memberRegister .btnContainer .jpss2017r-mod-btn__cancel, #memberRegister .btnContainer .jpss2017r-mod-btn__next {
  margin-left: 1em;
  padding-top: 0;
  padding-bottom: 0;
  min-width: 200px;
  height: 42px;
  line-height: 42px;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 21px;
  vertical-align: top;
  cursor: pointer;
  box-sizing: border-box;
}
#memberRegister .btnContainer .jpss2017r-mod-btn__cancel:first-child, #memberRegister .btnContainer .jpss2017r-mod-btn__next:first-child {
  margin-left: 0;
}
.jpss2017r-mod-title, .jpss2017r-top-title--top, .jpss2017r-top-title--top::before {
  position: relative;
  margin: 2.5em 0 1em;
  text-align: center;
  font-size: 26px;
}
.jpss2017r-mod-title:first-child, .jpss2017r-top-title--top:first-child, .jpss2017r-top-title--top:first-child::before {
  margin-top: 0;
}
.jpss2017r-mod-title::before, .jpss2017r-top-title--top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -2px;
  width: 100%;
  height: 3px;
  background-color: #1c2c3e;
}
.jpss2017r-mod-title__inner {
  position: relative;
  display: inline-block;
  padding: 0 1em;
  background-color: #fff;
}
.jpss2017r-mod-title__sub {
  margin-top: 1.5em;
  margin-bottom: 1em;
  padding-left: 0.5em;
  border-left: 3px solid #1c2c3e;
  line-height: 1.2;
  font-size: 16px;
}
.jpss2017r-mod-pagetitle {
  padding-bottom: 10px;
  border-bottom: solid 1px #e1e1e1;
  font-size: 123%;
}
.jpss2017r-mod-textlink--right {
  font-size: 14px;
  text-align: right;
}
.jpss2017r-mod-textlink--right a {
  text-decoration: none;
}
.jpss2017r-mod-textlink--right::before {
  content: "\f054";
  display: inline-block;
  margin-right: 0.5em;
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 1px #fff;
  font-size: 0.5em;
  vertical-align: middle;
  color: #e02f4b;
  text-decoration: none;
}
.jpss2017r-mod-textlink--right:hover {
  text-decoration: underline;
}
.jpss2017r-mod-text__searchcondition {
  margin: 1em 0 0;
  text-align: right;
  font-size: 14px;
}
.jpss2017r-mod-table {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #ccc;
  table-layout: fixed;
}
.jpss2017r-mod-table th, .jpss2017r-mod-table td {
  padding: 10px;
  border: solid 1px #ccc;
  text-align: left;
  vertical-align: top;
}
.jpss2017r-mod-table th img, .jpss2017r-mod-table td img {
  max-width: 100%;
}
.jpss2017r-mod-table__cell--photo {
  width: 40%;
  vertical-align: top;
}
.jpss2017r-mod-icon__schooltype {
  margin-right: 5px;
  line-height: 1;
  vertical-align: middle;
}
.jpss2017r-mod-icon__schooltype img {
  vertical-align: top;
}
.jpss2017r-mod-text__photolicense {
  font-size: 10px;
  color: #fff;
  opacity: 0.7;
}
.jpss2017r-mod-text__photolicense a {
  color: #fff;
}
.jpss2017r-mod-directregistbox {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: auto;
  padding: 20px;
  max-height: 100%;
  width: 480px;
  border: 4px solid #1c2c3e;
  border-radius: 3px;
  background: #fff url("/images/common/bg_graydot.gif") repeat 0 0;
  font-size: 14px;
  transform: translateY(100%);
  transition: transform 1000ms;
  box-sizing: border-box;
}
.jpss2017r-mod-directregistbox[aria-expanded=true] {
  transform: translateY(0);
}
.jpss2017r-mod-directregistbox__logo {
  margin-bottom: 25px;
  line-height: 1;
}
.jpss2017r-mod-directregistbox__logo img {
  width: 204px;
}
.jpss2017r-mod-directregistbox__contentimage {
  float: left;
  margin-right: 10px;
}
.jpss2017r-mod-directregistbox__contentbody {
  overflow: hidden;
}
.jpss2017r-mod-directregistbox__title {
  margin-bottom: 0.5em;
  line-height: 1.36;
  font-size: 26px;
  color: #1c2c3e;
}
.jpss2017r-mod-directregistbox__subtitle {
  font-size: 16px;
  color: #da3c1d;
}
.jpss2017r-mod-directregistbox p {
  color: #1c2c3e;
}
.jpss2017r-mod-directregistbox__txt--supply {
  margin-top: 1em;
  margin-left: 1em;
  font-size: 12px;
  text-indent: -1em;
}
.jpss2017r-mod-directregistbox__reasonlist {
  counter-reset: reason;
}
.jpss2017r-mod-directregistbox__reasonitem {
  margin-bottom: 0.5em;
  padding-left: 1em;
  font-size: 16px;
  font-style: italic;
  color: #1c2c3e;
}
.jpss2017r-mod-directregistbox__reasonitem::before {
  margin-left: -1em;
  counter-increment: reason;
  content: counters(reason, ".") ". ";
  color: #da3c1d;
}
.jpss2017r-mod-directregistbox__reasonitem em {
  margin: 0 0.2em;
  font-weight: bold;
  background-color: #ffff00;
}
.jpss2017r-mod-directregistbox__more {
  font-size: 14px;
  font-weight: bold;
  color: #1c2c3e;
}
.jpss2017r-mod-directregistbox__more::before {
  content: "\f054";
  display: inline-block;
  margin-right: 0.5em;
  color: #da3c1d;
  font-family: "FontAwesome";
  font-size: 12px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 1px #fff;
}
.jpss2017r-mod-directregistbox__form {
  margin-top: 20px;
}
.jpss2017r-mod-directregistbox__label {
  display: block;
  padding-bottom: 10px;
}
.jpss2017r-mod-directregistbox__input {
  display: block;
  padding: 0.5em;
  width: 100%;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
  line-height: 1.7;
}
.jpss2017r-mod-directregistbox__submitbtn {
  margin: 20px 0 0;
  width: 100%;
}
.jpss2017r-mod-directregistbox__submitbtn input[type=submit] {
  display: block;
  padding: 10px;
  width: 100%;
  line-height: 1.7;
  font-size: 16px;
}
.jpss2017r-mod-directregistbox__memberlogin {
  margin: 1em 0 0;
  text-align: center;
  font-size: 14px;
}
.jpss2017r-mod-directregistbox__closebtn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  background-color: #1c2c3e;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}
.jpss2017r-mod-directregistbox__closebtn .hamburger-box {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.jpss2017r-mod-directregistbox__closebtn .hamburger-box .hamburger-inner {
  width: 16px;
  height: 1px;
  background-color: #fff;
}
.jpss2017r-mod-directregistbox__closebtn .hamburger-box .hamburger-inner::before, .jpss2017r-mod-directregistbox__closebtn .hamburger-box .hamburger-inner::after {
  width: 16px;
  height: 1px;
  background-color: #fff;
}
.jpss2017r-mod-directregistbox__closebtn--line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 15px;
  height: 2px;
  background-color: #fff;
}
.jpss2017r-mod-directregistbox__layer {
  display: none;
}
.jpss2017r-mod-induce-scout, .jpss2017r-mod-induce-scholarship {
  position: absolute;
  top: 100%;
  right: 10px;
  z-index: 100;
  margin-top: -20px;
  max-width: 13em;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms;
  font-size: 20px;
  animation-fill-mode: none;
}
.jpss2017r-mod-induce-scout__inner, .jpss2017r-mod-induce-scholarship__inner {
  position: relative;
  z-index: 110;
  padding: 1.5em 2em 1em;
  background-color: #fff;
  border-radius: 5px;
  box-sizing: content-box;
  text-align: center;
}
.jpss2017r-mod-induce-scout::after, .jpss2017r-mod-induce-scholarship::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 45px;
  z-index: 105;
  margin-left: -5px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 1px 3px 0 rgba(51, 51, 51, 0.6);
}
.jpss2017r-mod-induce-scout[aria-expanded=true], .jpss2017r-mod-induce-scholarship[aria-expanded=true] {
  visibility: visible;
  opacity: 1;
}
.jpss2017r-mod-induce-scout[aria-expanded=false], .jpss2017r-mod-induce-scholarship[aria-expanded=false] {
  visibility: hide;
  opacity: 0;
}
.jpss2017r-mod-induce-scout__closebtn, .jpss2017r-mod-induce-scholarship__closebtn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 110;
  padding: 0.3em 0.5em;
  cursor: pointer;
  line-height: 1;
}
.jpss2017r-mod-induce-scout__closebtn .fa, .jpss2017r-mod-induce-scholarship__closebtn .fa {
  vertical-align: top;
  color: #999;
}
.jpss2017r-mod-induce-scholarship {
  max-width: 16em;
}
.jpss2017r-mod-box__link--cn {
  margin: auto;
  max-width: 1000px;
  line-height: 1.5;
  font-size: 12px;
}
.jpss2017r-mod-pager {
  margin-top: 30px;
  text-align: right;
  font-size: 0;
}
.jpss2017r-mod-pager__link, .jpss2017r-mod-pager__currentpage, .jpss2017r-mod-pager__notarget, .jpss2017r-mod-pager__firstpage, .jpss2017r-mod-pager__prevpage, .jpss2017r-mod-pager__nextpage, .jpss2017r-mod-pager__lastpage {
  display: inline-block;
  padding: 0 0.4em 0.1em;
  min-width: 1em;
  height: 1.6em;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  font-size: 14px;
}
.jpss2017r-mod-pager__link {
  margin-left: 14px;
  border: 1px solid #1c2c3e;
  background-color: #fff;
}
.jpss2017r-mod-pager__link:hover {
  text-decoration: underline;
}
.jpss2017r-mod-pager__prevpage + .jpss2017r-mod-pager__link {
  margin-left: 7px;
}
.jpss2017r-mod-pager__firstpage i, .jpss2017r-mod-pager__prevpage i, .jpss2017r-mod-pager__nextpage i, .jpss2017r-mod-pager__lastpage i, .jpss2017r-mod-pager__notarget i {
  padding: 0.1em 0;
  font-size: 20px;
}
.jpss2017r-mod-pager__firstpage:hover, .jpss2017r-mod-pager__prevpage:hover, .jpss2017r-mod-pager__nextpage:hover, .jpss2017r-mod-pager__lastpage:hover {
  opacity: 0.7;
}
.jpss2017r-mod-pager__firstpage, .jpss2017r-mod-pager__prevpage {
  padding-right: 0.5em;
}
.jpss2017r-mod-pager__lastpage {
  padding-left: 0.5em;
}
.jpss2017r-mod-pager__nextpage {
  margin-left: 14px;
}
.jpss2017r-mod-pager__notarget {
  color: #8a8a8a;
}
.jpss2017r-mod-pager__currentpage {
  margin-left: 14px;
  padding-right: 0;
  padding-left: 0;
  border: 1px solid transparent;
  color: #da3c1d;
  font-weight: bold;
}
.jpss2017r-mod-pager__notarget ~ .jpss2017r-mod-pager__currentpage {
  margin-left: 0;
  padding-left: 0.5em;
}
.jpss2017r-mod-pager__currentpage + .jpss2017r-mod-pager__notarget {
  padding-left: 1em;
}
.jpss2017r-mod-textaccordion {
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  font-size: 12px;
  transition: max-height 0.5s ease-out;
  max-height: 600px;
}
.jpss2017r-mod-textaccordion.closedAccordion {
  position: relative;
  max-height: 40px;
}
.jpss2017r-mod-textaccordion.closedAccordion p {
  height: auto;
  text-overflow: clip;
  white-space: normal;
}
.jpss2017r-mod-textaccordion.closedAccordion .txt-hide {
  display: block;
}
.jpss2017r-mod-textaccordion .txt-hide {
  display: none;
  height: 100%;
  background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 50%);
}
.jpss2017r-mod-textaccordion__btn--expand {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
  text-align: center;
  z-index: 998;
  cursor: pointer;
}
.closedAccordion .jpss2017r-mod-textaccordion__btn--expand {
  display: block;
}
.jpss2017r-mod-textaccordion__btn--expand .txt-hide {
  display: block;
}
.jpss2017r-mod-textaccordion__btn--inner {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  background-color: #1c2c3e;
  color: #fff;
}
.jpss2017r-mod-textaccordion__btn--inner .fa {
  font-size: 18px;
}
.jpss2017r-mod-termtextbox {
  overflow: auto;
  margin: 0.5em 0 1em;
  padding: 5px 12px;
  height: 150px;
  width: 100%;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* utility */
/* テキスト揃え */
.leftLay {
  text-align: left;
}

.centerLay {
  text-align: center;
}

.rightLay {
  text-align: right;
}

/* 回り込み設定 */
.leftBlock {
  float: left;
}

.rightBlock {
  float: right;
}

/* layout */
/** |READ ME| **************************************************************************************

"www.jpss.jp"

Cascading Style Sheet Setting File
/css/common.css

Ver.20120311

----------------------------------------------------------------------------------------------------

01.Block Elements Settings
ブロック要素設定

02.Inline Elements Settings
インライン要素設定

03.BothSides Elements Settings
両要素共通設定

************************************************************************************** |READ ME| **/
/** |01.Block Elements Settings| ********************************************************* START **/
* {
  margin: 0px;
  padding: 0px;
}

/* テキスト揃え */
.leftLay {
  text-align: left;
}

.centerLay {
  text-align: center;
}

.rightLay {
  text-align: right;
}

/* 回り込み設定 */
.leftBlock {
  float: left;
}

.rightBlock {
  float: right;
}

/* ロールオーバー設定 */
a:hover img.rollover, .searchButton input:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: “alpha(opacity=70) ”;
}

/* 全体のレイアウト ***********************************************************/
body {
  text-align: center;
}

/* Header ***********************************************************/
#Header {
  width: 986px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 5px;
  text-align: right;
}

#HeaderTit {
  width: 986px;
  padding-top: 8px;
}

#HeaderTit #PageTit {
  width: 576px;
  float: left;
  text-align: left;
}

#HeaderTit #PageTit h1 {
  font-size: 12px;
  color: #777777;
}

#HeaderTit #HeaderTop {
  width: 410px;
  float: right;
}

#HeaderTop #SMbtn {
  float: left;
  width: 155px;
  font-size: 85%;
}

#HeaderTop #LangMenu {
  float: left;
  width: 255px;
  font-size: 85%;
}

#HeaderTop #LangMenu #LangMenuTitle {
  padding-top: 4px;
  float: right;
}

/* #HeaderTop #LangMenu select{background-color:#d7d7d7;border:none;} */
#HeaderTop #LangMenu #CultureSelect {
  float: right;
}

#HeaderTop #LangMenu #CultureSelect .dd {
  width: 120px !important;
}

#HeaderTop #LangMenu #CultureSelect .dd .ddTitle {
  padding: 0px;
  background-color: #d7d7d7;
  width: 120px !important;
}

#HeaderTop #LangMenu #CultureSelect .dd .ddTitle span.ddTitleText {
  font-size: 90%;
}

#HeaderTop #LangMenu #CultureSelect .dd .ddTitle img {
  vertical-align: -0.1em;
  margin-left: 2px;
}

#HeaderTop #LangMenu #CultureSelect .dd .ddChild {
  width: 120px !important;
}

#HeaderTop #LangMenu #CultureSelect .dd .ddChild a {
  font-size: 90%;
}

#HeaderTop #LangMenu #CultureSelect .ddOutOfVision {
  display: none;
}

/* #HeaderTop #LangMenu .superselect-container { */
/*   width: 100px; */
/* } */
/* #HeaderTop #LangMenu .superselect-options { */
/*   width: 98px; */
/*   text-align: left;     */
/* } */
/* #HeaderTop #LangMenu .superselect-option-with-image { */
/*     height: auto; */
/*     line-height: 10px; */
/* } */
/* #HeaderTop #LangMenu .dd { */
/* } */
#Logo { /* ロゴ */
  width: 365px;
  float: left;
  padding-top: 24px;
}

#Logo img {
  width: 365px;
}

#Gmenu {
  width: 600px;
  float: right;
  padding-top: 12px;
}

/* グローバルメニュー ***************************/
#Gmenu ul {
  width: 600px;
}

#Gmenu li {
  float: right;
}

#Gmenu #MenuHome {
  width: 48px;
}

#Gmenu #MenuNews {
  width: 67px;
}

#Gmenu #MenuSearch {
  width: 119px;
}

#Gmenu #MenuAcademic {
  width: 103px;
}

#Gmenu #MenuDocument {
  width: 138px;
}

#Gmenu #MenuMovie {
  width: 125px;
}

/* ログイン **************************************/
#Gmenu #MemberHeader {
  padding: 5px;
  background-color: #e1e1e1;
  border-radius: 5px;
}

#Gmenu #MemberHeader .loginMessage {
  padding: 3px 5px;
  float: left;
}

#Gmenu #MemberHeader .headerBtnCnt {
  float: right;
}

#MemberHeader .headerLogin {
  padding: 5px 10px;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#MemberHeader .headerLogin:hover,
#MemberHeader .headerLogin:active {
  opacity: 0.8;
  box-shadow: none;
}

#MemberHeader .headerLogin i {
  margin-right: 10px;
}

#MemberHeader .btnHeaderRegistration {
  background: #73c777; /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzczYzc3NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1Mzk5NTUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #73c777 0%, #539955 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#73c777", endColorstr="#539955",GradientType=0 ); /* IE6-8 */
}

#MemberHeader .btnHeaderLogin {
  background: #de4760; /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RlNDc2MCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiNDJkNDQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #de4760 0%, #b42d44 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#de4760", endColorstr="#b42d44",GradientType=0 ); /* IE6-8 */
}

#MemberHeader .btnHeaderMypage {
  background: #7cc0e3; /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdjYzBlMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2MWE5Y2YiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #7cc0e3 0%, #61a9cf 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#7cc0e3", endColorstr="#61a9cf",GradientType=0 ); /* IE6-8 */
}

#MemberHeader .btnHeaderLogout {
  background: #b1b1b1; /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IxYjFiMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4YjhiOGIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #b1b1b1 0%, #8b8b8b 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b1b1b1", endColorstr="#8b8b8b",GradientType=0 ); /* IE6-8 */
}

/* 日本語 */
/* 英語 */
/* 韓国語 */
/* 中文簡体 */
/* 中文繁体 */
/* Contents *********************************************************/
#Cnt {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
}

#CntIn {
  width: 986px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

#BreadC { /* パンくず */
  background: url("/images/icon_bc.gif") no-repeat 0px 17px;
  font-size: 85%;
  padding-top: 12px;
  padding-bottom: 15px;
  padding-left: 8px;
}

/* トップページのコンテンツ幅 *******************/
#TopLeftCnt {
  width: 182px;
  float: left;
  margin-top: 16px;
}

#TopMainCnt {
  width: 792px;
  float: right;
  background-color: #ffffff;
  margin-top: 16px;
  margin-bottom: 10px;
  padding-bottom: 24px;
  text-align: center;
}

#TopMainCntIn {
  width: 762px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 15px;
  text-align: left;
}

#TopMainCntIn .leftBlock {
  width: 600px;
}

#TopMainCntIn .rightBlock {
  width: 150px;
}

/* セカンドページ以降のコンテンツ幅 *************/
#MainCnt {
  border-right: 1px dotted #AAAAAA;
  float: left;
  text-align: left;
  width: 599px !important;
}

#SideMenu {
  float: left;
  text-align: left;
  width: 220px;
}

#Cnt #MainTextCnt {
  float: right;
  text-align: left;
  width: 688px;
  background-color: #ffffff;
}

.sCnt {
  width: 986px;
  background-color: #ffffff;
  margin-bottom: 36px;
  text-align: center;
}

.sCntIn {
  width: 930px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.sCntIn .leftBlock {
  width: 725px;
}

.sCntIn .rightBlock {
  width: 180px;
}

/* ページャー */
.pager {
  text-align: left;
  font-size: 116%;
}

.centerLay .pager {
  text-align: center;
}

/* サイドバナーエリア */
.univBannerHead {
  width: 180px;
  height: 21px;
  padding-top: 28px;
}

.lifeUnivBannerHead {
  width: 180px;
  height: 21px;
  padding-top: 10px;
}

.univBanner {
  width: 180px;
  background-color: #e7f2f5;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 4px;
}

/* 検索ボックス *********************************/
/* トップページ */
#TopLeftCnt .searchBox {
  width: 182px;
  background-color: #ffffff;
}

#TopLeftCnt .searchBox ul {
  margin-right: 1px;
  margin-left: 1px;
}

#TopLeftCnt .searchBox li {
  border-bottom: solid 1px #e7e7e7;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 8px;
}

#TopLeftCnt .searchBox #MapArrow {
  width: 172px;
  background: url("/images/icon_search_arrow.gif") no-repeat 162px 9px;
}

#TopLeftCnt .searchBox #MapArrow img {
  width: 23px;
  float: left;
}

#TopLeftCnt .searchBox #MapArrow a {
  display: block;
  width: 140px;
  float: right;
  padding-top: 6px;
  _padding-top: 7px;
  margin-bottom: 10px;
}

#TopLeftCnt .searchBox #MapArrow a:link, .searchBox #MapArrow a:visited {
  color: #333333;
  text-decoration: none;
}

#TopLeftCnt .searchBox #MapArrow a:hover, .searchBox #MapArrow a:active {
  width: 140px;
  color: #aaaaaa;
  text-decoration: none;
}

#leftSideList .leftSideListHead {
  width: 174px;
  padding: 4px 4px 2px;
  background: #6F7278 url("/images/top/top_left_list_head.gif") no-repeat;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
}

#leftSideList li {
  border-top: 1px solid #d5d5d5;
  border-left: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  background: #ffffff url("/images/top/top_left_list_icon.gif") no-repeat 8px 50%;
}

#leftSideList li a {
  height: 100%;
  padding: 11px 6px 11px 25px;
  display: block;
  color: #555555;
  font-size: 14px;
  text-decoration: none;
}

#leftSideList li a:hover {
  background: #dedede url("/images/top/top_left_list_icon.gif") no-repeat 8px 50%;
}

#leftSideList li.leftSideListLast {
  border: 1px solid #d5d5d5;
}

#MapArrow #SelectedSearchPrefCnt {
  float: right;
  width: 140px;
  display: none;
}

/* 2階層目以降 */
.sCnt .searchBox, .sCnt #MovieSideBox {
  width: 178px !important;
  width: 180px;
  background-color: #f7f7f7;
  border-right: solid 1px #d5d5d5;
  border-bottom: solid 1px #d5d5d5;
  border-left: solid 1px #d5d5d5;
}

.sCnt .searchBox li {
  border-bottom: solid 1px #e7e7e7;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 8px;
}

.sCnt .searchBox #MapArrow {
  width: 170px;
  background: url("/images/icon_search_arrow.gif") no-repeat 160px 9px;
}

.sCnt .searchBox #MapArrow img {
  width: 23px;
  float: left;
}

.sCnt .searchBox #MapArrow a {
  display: block;
  width: 138px;
  float: right;
  padding-top: 6px;
  _padding-top: 7px;
  margin-bottom: 10px;
}

.sCnt .searchBox #MapArrow a:link, .searchBox #MapArrow a:visited {
  color: #333333;
  text-decoration: none;
}

.sCnt .searchBox #MapArrow a:hover, .searchBox #MapArrow a:active {
  width: 138px;
  color: #aaaaaa;
  text-decoration: none;
}

.side-search-box__content {
  padding: 7px;
  text-align: center;
}
.side-search-box__btn--submit {
  margin: 0 0 2px;
  padding: 0;
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.side-search-box__btn--submit:hover {
  opacity: 0.7;
}

/* 最近見た学校リスト ***************************/
#Arecord {
  width: 180px;
  background-color: #efefef;
  text-align: center;
}

#Arecord ul {
  width: 152px;
  margin-right: auto;
  margin-left: auto;
  _margin-right: 0px;
  _margin-left: 0px;
  padding-bottom: 9px;
  text-align: left;
}

#Arecord li {
  border-bottom: solid 1px #e6e6e6;
  font-size: 93%;
  padding-top: 5px;
  padding-bottom: 7px;
  word-wrap: break-word;
}

/* 給付対象エリアの学校 ***************************/
#ScholarshipArea {
  width: 178px;
  background-color: #FFF1E6;
  text-align: center;
  border-right: solid 1px #DD761A;
  border-bottom: solid 1px #DD761A;
  border-left: solid 1px #DD761A;
}

#ScholarshipArea ul {
  width: 152px;
  margin-right: auto;
  margin-left: auto;
  _margin-right: 0px;
  _margin-left: 0px;
  padding-bottom: 9px;
  text-align: left;
}

#ScholarshipArea li {
  border-bottom: solid 1px #DD761A;
  font-size: 93%;
  padding-top: 5px;
  padding-bottom: 7px;
}

#ScholarshipArea .info {
  width: 160px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 7px;
}

/* 給付対象エリアの学校 ***************************/
#RightSideLifeMenu li.on a,
#LifeMenu li.on a, #RightSideLifeMenu li a:active, #RightSideLifeMenu li a:hover,
#LifeMenu li a:active,
#LifeMenu li a:hover {
  border-color: #e60101;
  background: #fff0ed;
  color: #ba4037;
  text-decoration: none;
}
#RightSideLifeMenu li.on a:after,
#LifeMenu li.on a:after, #RightSideLifeMenu li a:active:after, #RightSideLifeMenu li a:hover:after,
#LifeMenu li a:active:after,
#LifeMenu li a:hover:after {
  border-left-color: #ffd7d2;
}

#RightSideLifeMenu .menuH3,
#LifeMenu .menuH3 {
  margin-bottom: 5px;
}
#RightSideLifeMenu .menuH3 h3,
#LifeMenu .menuH3 h3 {
  font-weight: bold;
  font-size: 100%;
}
#RightSideLifeMenu .menuH3 h3 a,
#LifeMenu .menuH3 h3 a {
  display: inline-block;
  width: 100%;
  padding: 7px 5px 7px 3px;
  box-sizing: border-box;
  border-left: solid 9px #f27676;
  background: #ed4a4a;
  color: #fff;
  text-decoration: underline;
}
#RightSideLifeMenu .menuH3 h3 a:active, #RightSideLifeMenu .menuH3 h3 a:hover,
#LifeMenu .menuH3 h3 a:active,
#LifeMenu .menuH3 h3 a:hover {
  color: #fff8c7;
  text-decoration: none;
}
#RightSideLifeMenu .menuH4,
#LifeMenu .menuH4 {
  margin-bottom: 5px;
  padding: 15px 0 5px;
  border-bottom: 4px solid #e60101;
}
#RightSideLifeMenu .menuH4 h4,
#LifeMenu .menuH4 h4 {
  font-size: 108%;
  font-weight: bold;
}
#RightSideLifeMenu li,
#LifeMenu li {
  width: 100%;
  padding: 1px 0;
  border-bottom: 1px dotted #aaa;
}
#RightSideLifeMenu li:first-child,
#LifeMenu li:first-child {
  border-top: 1px dotted #aaa;
}
#RightSideLifeMenu li a,
#LifeMenu li a {
  display: inline-block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 15px 11px 8px;
  border-left: solid 7px #f1f1f1;
  background: #fcfcfc;
  color: #627eb2;
}
#RightSideLifeMenu li a:after,
#LifeMenu li a:after {
  display: block;
  position: absolute;
  top: 15px;
  right: 4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #ebebeb;
  content: "";
}
/* 先輩メッセージ *******************************/
#MovieSideBox #QTitle, #MovieSideBox ul {
  width: 162px;
  margin-right: auto;
  margin-left: auto;
}

#QTitle {
  padding-top: 5px;
  padding-bottom: 5px;
}

#QTitle #MicIcon {
  width: 15px;
  float: left;
}

#QTitle h3 {
  width: 144px;
  float: right;
  font-size: 12px;
}

#MovieSideBox li {
  padding-bottom: 5px;
}

#MovieSideBox .mThum .video {
  display: block;
  position: relative;
  cursor: pointer;
}

#MovieSideBox .mThum .playIcon {
  position: absolute;
  top: 22px;
  left: 57px;
}

.movUnvName {
  width: 162px;
  padding-top: 3px;
  padding-bottom: 5px;
  border-bottom: solid 1px #e7e7e7;
}

.movUnvName .leftBlock {
  width: 23px;
}

.movUnvName .rightBlock {
  width: 132px;
}

/* Footer ***********************************************************/
#FooterTop {
  width: 100%;
  background-color: #dedede;
  text-align: center;
}

#FooterTopIn {
  width: 986px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

#FooterTopIn .leftBlock {
  width: 730px;
  padding-top: 7px;
}

#FooterTopIn .rightBlock {
  width: 225px;
  text-align: right;
  padding-top: 9px;
  padding-bottom: 8px;
  font-size: 85%;
}

#FooterTopIn .rightBlock a .page_top_smp_icon {
  vertical-align: 0.03em;
}

#FooterTopIn .rightBlock a:link, #FooterTopIn .rightBlock a:visited {
  color: #7a7a7a;
  text-decoration: none;
}

#FooterTopIn .rightBlock a:hover, #FooterTopIn .rightBlock a:active {
  color: #7a7a7a;
  text-decoration: underline;
}

#FooterTopIn p {
  font-size: 85%;
}

#FooterTopIn p a:link, #FooterTopIn p a:visited {
  color: #7a7a7a;
  text-decoration: none;
}

#FooterTopIn p a:hover, #FooterTopIn p a:active {
  color: #7a7a7a;
  text-decoration: underline;
}

#FooterUnder { /* サイト運営者情報 */
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
}

#FooterUnderIn {
  width: 986px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: left;
}

#FooterUnderIn .leftBlock {
  width: 700px;
  padding-top: 15px;
}

#FooterUnderIn .rightBlock {
  width: 200px;
  padding-top: 15px;
}

#SeoFoot { /* SEO用フッターテキスト */
  width: 986px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 15px;
  border-bottom: solid 1px #dedede;
}

#SeoFoot p, #SeoFoot li {
  line-height: 1.5;
  font-size: 85%;
}
#SeoFoot p a:link, #SeoFoot p a:visited, #SeoFoot li a:link, #SeoFoot li a:visited {
  color: #555555;
  text-decoration: none;
}
#SeoFoot p a:hover, #SeoFoot p a:active, #SeoFoot li a:hover, #SeoFoot li a:active {
  color: #555555;
  text-decoration: underline;
}

#SeoFoot #SeoLeft {
  float: left;
  width: 483px;
}

#SeoFoot #SeoRight {
  float: right;
  width: 483px;
}

#conceptLink {
  padding-bottom: 5px;
}

#conceptLink a:link, #conceptLink a:visited {
  color: #555555;
  text-decoration: none;
}

#conceptLink a:hover, #conceptLink p a:active {
  color: #555555;
  text-decoration: underline;
}

.footerPageInfo {
  padding-bottom: 36px;
  background: #f1f1f1;
  text-align: left;
}
.footerPageInfo .footerPageInfoText {
  margin: 0 auto;
  padding: 1em;
  width: 986px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/** |01.Block Elements Settings| *********************************************************** END **/
/** |02.Inline Elements Settings| ******************************************************** START **/
/* 汎用テキスト設定 *******************/
/* テキストサイズ */
.ssText {
  font-size: 77%;
}

.sText {
  font-size: 85%;
}

.mText {
  font-size: 93%;
}

.lText {
  font-size: 108%;
}

.llText {
  font-size: 116%;
}

.xlText {
  font-size: 123%;
}

.xxlText {
  font-size: 150%;
}

.xxxlText {
  font-size: 220%;
}

/* テキストウェイト */
.bText {
  font-weight: bold;
}

.nText {
  font-weight: normal;
}

/* テキストカラー */
.redText {
  color: #ff0000;
}

.faYellowText {
  color: #ffe3a3;
}

.orangeText {
  color: #b0a60c;
}

.pinkText {
  color: #f58d9a;
}

/* 汎用ラインハイト */
.lineH16 {
  line-height: 1.6;
}

.lineH18 {
  line-height: 1.8;
}

.lineH20 {
  line-height: 2;
}

/* ボタンアライン設定 */
.mLineBtn1 {
  vertical-align: -0.1em;
}

.mLineBtn2 {
  vertical-align: -0.2em;
}

.mLineBtn3 {
  vertical-align: -0.3em;
}

.mLineBtn5 {
  vertical-align: -0.5em;
}

/* テキストカラー */
.redText {
  color: #d60018;
}

.pinkredText {
  color: #f56b64;
}

.whiteText {
  color: #ffffff;
}

.notDisp { /* テキスト非表示 */
  text-indent: -9999px;
  overflow: hidden;
}

img.leftFlo { /* 画像左回り込み */
  float: left;
  margin-right: 8px;
}

img.rightFlo { /* 画像右回り込み */
  float: right;
  margin-left: 10px;
}

/* フォーム周り設定 *******************/
input {
  /*height:20px;
  border:solid 1px #888888;*/
}

.textareaBoxS {
  width: 200px;
  height: 80px;
}

.textareaBoxM {
  width: 300px;
  height: 100px;
}

.textareaBoxL {
  width: 400px;
  height: 120px;
}

.checkBtn input {
  margin-right: 3px;
  vertical-align: -0.2em;
}

/* 入力エラーセル */
tr.inputNG td {
  background-color: #ffddef;
}

/* エラーメッセージ */
.error_list p, .error_list li {
  font-weight: bold;
  color: #ff5555;
}

div.warningBlock {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-right: auto;
  margin-left: auto;
  border: solid #ef3975 2px;
  background-color: #ffeef7;
}

/** |02.Inline Elements Settings| ********************************************************** END **/
/** |03.BothSides Elements Settings| ***************************************************** START **/
/* テキスト非表示 */
.noDisp h2, .noDisp p, .noDisp li, .noDisp span {
  text-indent: -9999px;
  overflow: hidden;
}

.clearFix { /* 回り込み解除 */
  display: block !important;
  display: inline-block; /* for IE */
}

.clearFix:after {
  content: ".";
  height: 0px;
  line-height: 0px;
  clear: both;
  display: block;
  visibility: hidden;
}

.clear { /* 回り込み解除 */
  clear: both;
}

/* 汎用ボックス */
.cenObj {
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

/* 汎用色指定 */
.stripeA {
  background-color: #f7f7f7;
}

/* 汎用幅指定 */
.w05p {
  width: 5%;
}

.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w20p {
  width: 20%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w35p {
  width: 35%;
}

.w40p {
  width: 40%;
}

.w50p {
  width: 50%;
}

.w60p {
  width: 60%;
}

.w65p {
  width: 65%;
}

.w70p {
  width: 70%;
}

.w75p {
  width: 75%;
}

.w80p {
  width: 80%;
}

.w85p {
  width: 85%;
}

.w90p {
  width: 90%;
}

.w50 {
  width: 50px;
}

.w54 {
  width: 54px;
}

.w80 {
  width: 80px;
}

.w120 {
  width: 120px;
}

.w136 {
  width: 136px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w200 {
  width: 200px;
}

.w300 {
  width: 300px;
}

.w400 {
  width: 400px;
}

.w500 {
  width: 500px;
}

.w550 {
  width: 550px;
}

.w560 {
  width: 560px;
}

.w564 {
  width: 564px;
}

.w582 {
  width: 582px;
}

.w600 {
  width: 600px;
}

.w660 {
  width: 660px;
}

/* 汎用マージン設定 */
.mar10 {
  margin: 10px;
}

.pad5 {
  padding: 5px;
}

.pad7 {
  padding: 7px;
}

.pad10 {
  padding: 10px;
}

.marT2 {
  margin-top: 2px;
}

.marT5 {
  margin-top: 5px;
}

.marT7 {
  margin-top: 7px;
}

.marT10 {
  margin-top: 10px;
}

.marT15 {
  margin-top: 15px;
}

.marT30 {
  margin-top: 30px;
}

.marT40 {
  margin-top: 40px;
}

.marR2 {
  margin-right: 2px;
}

.marR5 {
  margin-right: 5px;
}

.marR8 {
  margin-right: 8px;
}

.marR10 {
  margin-right: 10px;
}

.marR15 {
  margin-right: 15px;
}

.marR20 {
  margin-right: 20px;
}

.marR80 {
  margin-right: 80px;
}

.marB4 {
  margin-bottom: 4px;
}

.marB5 {
  margin-bottom: 5px;
}

.marB8 {
  margin-bottom: 8px;
}

.marB10 {
  margin-bottom: 10px;
}

.marB15 {
  margin-bottom: 15px;
}

.marB17 {
  margin-bottom: 17px;
}

.marB20 {
  margin-bottom: 20px;
}

.marB30 {
  margin-bottom: 30px;
}

.marL5 {
  margin-left: 5px;
}

.marL10 {
  margin-left: 10px;
}

.marL20 {
  margin-left: 20px;
}

.pad10 {
  padding: 10px;
}

.padT2 {
  padding-top: 2px;
}

.padT3 {
  padding-top: 3px;
}

.padT4 {
  padding-top: 4px;
}

.padT5 {
  padding-top: 5px;
}

.padT7 {
  padding-top: 7px;
}

.padT8 {
  padding-top: 8px;
}

.padT9 {
  padding-top: 9px;
}

.padT10 {
  padding-top: 10px;
}

.padT12 {
  padding-top: 12px;
}

.padT15 {
  padding-top: 15px;
}

.padT16 {
  padding-top: 16px;
}

.padT17 {
  padding-top: 17px;
}

.padT20 {
  padding-top: 20px;
}

.padT25 {
  padding-top: 25px;
}

.padT28 {
  padding-top: 28px;
}

.padT30 {
  padding-top: 30px;
}

.padT35 {
  padding-top: 35px;
}

.padT40 {
  padding-top: 40px;
}

.padT80 {
  padding-top: 80px;
}

.padR4 {
  padding-right: 4px;
}

.padR7 {
  padding-right: 7px;
}

.padR10 {
  padding-right: 10px;
}

.padR13 {
  padding-right: 13px;
}

.padR15 {
  padding-right: 15px;
}

.padR20 {
  padding-right: 20px;
}

.padR30 {
  padding-right: 30px;
}

.padB2 {
  padding-bottom: 2px;
}

.padB3 {
  padding-bottom: 3px;
}

.padB4 {
  padding-bottom: 4px;
}

.padB5 {
  padding-bottom: 5px;
}

.padB6 {
  padding-bottom: 6px;
}

.padB7 {
  padding-bottom: 7px;
}

.padB8 {
  padding-bottom: 8px;
}

.padB9 {
  padding-bottom: 9px;
}

.padB10 {
  padding-bottom: 10px;
}

.padB12 {
  padding-bottom: 12px;
}

.padB13 {
  padding-bottom: 13px;
}

.padB15 {
  padding-bottom: 15px;
}

.padB16 {
  padding-bottom: 16px;
}

.padB18 {
  padding-bottom: 18px;
}

.padB20 {
  padding-bottom: 20px;
}

.padB24 {
  padding-bottom: 24px;
}

.padB25 {
  padding-bottom: 25px;
}

.padB30 {
  padding-bottom: 30px;
}

.padB40 {
  padding-bottom: 40px;
}

.padB50 {
  padding-bottom: 50px;
}

.padB80 {
  padding-bottom: 80px;
}

.padL4 {
  padding-left: 4px;
}

.padL5 {
  padding-left: 5px;
}

.padL7 {
  padding-left: 7px;
}

.padL10 {
  padding-left: 10px;
}

.padL11 {
  padding-left: 11px;
}

.padL13 {
  padding-left: 13px;
}

.padL15 {
  padding-left: 15px;
}

.padL20 {
  padding-left: 20px;
}

.padL30 {
  padding-left: 30px;
}

/* =============================================================================
   タイトル
============================================================================= */
.pageTitleGradBox {
  margin-bottom: 30px;
  padding: 10px;
  font-size: 153.8%;
  border: 1px solid #c8c8c8;
  background-image: linear-gradient(to bottom, #fff, #f2f2f2);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#f2f2f2",GradientType=0 );
}

#Smp .pageTitleGradBox {
  margin-bottom: 12px;
}

.titleBorder {
  margin-bottom: 5px;
  padding: 5px 5px 5px 10px;
  border-left: 3px solid #2a9f2e;
  border-bottom: 3px solid #2a9f2e;
  font-size: 138.5%;
}

.titleSub {
  margin-bottom: 10px;
  font-size: 123.1%;
  color: #2a9f2e;
}

.titleGradBox {
  margin-top: 40px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 123.1%;
  background-image: linear-gradient(to bottom, #cbe5f6, #afd7f1);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#cbe5f6", endColorstr="#afd7f1",GradientType=0 );
  font-weight: bold;
  font-size: 123.1%;
}

/* =============================================================================
   ボタン
   スマホでロールオーバーしないようにするため、modernizr前提
============================================================================= */
.btnCheck {
  display: inline-block;
  padding: 0 10px;
  height: 50px;
  min-width: 80px;
  line-height: 50px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 1px 1px 4px rgba(102, 102, 102, 0.75);
  font-size: 107.7%;
}

.btnCheck.btnNext,
#btnShowResult {
  background-color: #33c238;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#32c137", endColorstr="#008600",GradientType=0 );
  color: #fff;
  text-decoration: none;
}

.btnCheck.btnBack {
  background-color: #b6b6b6;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b5b5b5", endColorstr="#7a7a7a",GradientType=0 );
  color: #fff;
  text-decoration: none;
}

.no-touch .btnCheck:hover {
  -ms-filter: "alpha(opacity=70)";
  opacity: 0.7;
}

#btnShowResult {
  padding: 0 50px;
  font-size: 138.5%;
}

#Smp #btnShowResult {
  padding: 0 30px;
}

.btnSearch a {
  position: relative;
  display: block;
  margin-top: 5px;
  padding: 0.5em 1.5em 0.5em 0.5em;
  border-radius: 4px;
  background-color: #78d87c;
  box-shadow: 1px 1px 4px rgba(102, 102, 102, 0.75);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#77d77b", endColorstr="#4bab4f",GradientType=0 );
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.btnSearch a:after {
  content: "\f002";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  margin-top: -0.5em;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: "fontAwesome";
  font-size: 110%;
}

.btnAdvance a {
  position: relative;
  display: block;
  margin-top: 5px;
  padding: 0.5em 1.5em 0.5em 0.5em;
  border-radius: 4px;
  background-color: #35cc3a;
  box-shadow: 1px 1px 4px rgba(102, 102, 102, 0.75);
  background-image: linear-gradient(to top, #089f0d, #35cc3a);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#089f0d", endColorstr="#35cc3a",GradientType=0 );
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.btnAdvance a:after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  margin-top: -0.5em;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: "fontAwesome";
  font-size: 110%;
}

.no-touch .btnSearch a:hover,
.no-touch .btnAdvance a:hover {
  -ms-filter: "alpha(opacity=70)";
  opacity: 0.7;
}

.btnRecommend {
  margin: 15px auto 0;
  text-align: center;
}

.btnRecommend a {
  display: inline-block;
  margin: 0 5px;
  padding: 0.8em 2.8em 0.8em 0.8em;
  width: auto;
  background-color: #36cd3b;
  font-size: 115.4%;
}

.btnRetry {
  margin-top: 60px;
  text-align: center;
}

.btnRetry a {
  display: inline-block;
  padding: 1em;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 1px 1px 4px rgba(102, 102, 102, 0.75);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#dcdcdc",GradientType=0 );
  font-size: 107.7%;
  color: #333;
  text-decoration: none;
}

.btnRetry a:before {
  content: "\f060";
  display: inline-block;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: "fontAwesome";
  font-size: 128.6%;
}

.no-cssgradients .btnRetry a {
  background-color: #efefef;
}

.no-touch .btnRetry a:hover {
  -ms-filter: "alpha(opacity=70)";
  opacity: 0.7;
}

/* =============================================================================
   リスト
   スマホでロールオーバーしないようにするため、modernizr.js読み込み前提
============================================================================= */
.depList.matchingDepList {
  margin-top: 10px;
  width: auto;
}

.depList.matchingDepList a {
  padding: 0 1.5em;
  border: solid 1px #cdcdcd;
  border-radius: 3px;
  background-color: #fff;
  background-image: linear-gradient(to top, rgba(89, 172, 236, 0.2), rgba(255, 255, 255, 0.2));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#e0effb",GradientType=0 );
  font-size: 92.3%;
  color: #555;
}

.no-touch .depList.matchingDepList a:hover {
  -ms-filter: "alpha(opacity=70)";
  opacity: 0.7;
  background-color: #fff;
  background-image: linear-gradient(to top, rgba(89, 172, 236, 0.2), rgba(255, 255, 255, 0.2));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#e0effb",GradientType=0 );
}

/* ----------------------------------------------
   おすすめ大学
---------------------------------------------- */
.wrapRecommendSchool {
  position: relative;
  border-bottom: 1px solid #6ad66d;
  *zoom: 1;
}

.wrapRecommendSchool:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #6ad66d;
}

.wrapRecommendSchool:after {
  content: "";
  display: block;
  clear: both;
}

.boxRecommendSchool {
  margin-top: 50px;
  padding-bottom: 15px;
  border: 1px solid #6ad66d;
}

.titleRecommendSchool {
  padding: 10px;
  background: #e8ffe9;
  border-bottom: 1px solid #6ad66d;
  font-weight: bold;
  font-size: 107.7%;
  color: #333;
}

.titleRecommendSchool {
  margin-bottom: 1px;
}

.itemRecommendSchool {
  float: left;
  padding: 10px;
  width: 50%;
  border: none;
  border-top: 1px solid #6ad66d;
  box-sizing: border-box;
}

.itemRecommendSchool:nth-child(2n+1) {
  clear: both;
}

.wrapRecommendSchool .clearItem {
  clear: both;
}

.itemRecommendSchool .imageUniv {
  float: left;
  width: 30%;
}

.infoRecommendSchool {
  float: right;
  width: 65%;
}

.infoRecommendSchool .univName {
  margin-bottom: 5px;
  font-size: 115.4%;
}

#Smp .boxRecommendSchool {
  float: none;
  width: auto;
}

#Smp .boxRecommendSchool {
  margin-top: 25px;
}

#Smp .imageUniv img {
  width: 100%;
  height: auto;
}

#Smp .wrapRecommendSchool:before,
#Smp .wrapRecommendSchool:after {
  content: none;
}

#Smp .itemRecommendSchool {
  float: none;
  padding: 10px 5px;
  width: 100%;
}

/** |03.BothSides Elements Settings| ******************************************************* END **/
/* =============================================================================
   modules
============================================================================= */
/* ----------------------------------------------
   シェアボタン
---------------------------------------------- */
.modSharebutton {
  margin-top: 20px;
  margin-right: 14px;
  text-align: right;
}
.modSharebuttonTitle, .modSharebuttonList, .modSharebuttonItem {
  display: inline-block;
  vertical-align: middle;
}
.modSharebuttonTitle {
  font-size: 16px;
}
.modSharebuttonItem {
  position: relative;
  margin-left: 7px;
}
.modSharebuttonItem a {
  overflow: hidden;
  display: block;
  width: 25px;
  height: 25px;
}
.modSharebuttonItem img {
  width: 100%;
}
.modSharebuttonQrcode {
  display: none;
  position: absolute;
  top: 133%;
  right: 0;
  z-index: 1000;
  padding: 10px;
  width: 170px;
  height: 170px;
  background: #fff;
  box-shadow: 0 0 3px 1px #ccc;
  box-sizing: border-box;
}
.modSharebuttonQrcode.is-active {
  display: block;
}
.modSharebuttonQrcode::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 11px;
  display: block;
  background: #fff;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}
.modSharebuttonContent {
  margin-top: 50px;
  margin-bottom: 25px;
  padding: 1em 0 2em;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  text-align: center;
}
.modSharebuttonContent .modSharebuttonTitle {
  display: block;
  margin-bottom: 0.5em;
  width: 100%;
  font-size: 20px;
}
.modSharebuttonContent .modSharebuttonItem {
  margin-left: 10px;
}
.modSharebuttonContent .modSharebuttonItem:first-child {
  margin-left: 0;
}
.modSharebuttonContent .modSharebuttonItem a {
  width: 38px;
  height: 38px;
}

/* settings, variables ... */
/* ----------------------------------------------
   日本語フォント
---------------------------------------------- */
@font-face {
  font-family: "Customyugothicm";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium");
}
@font-face {
  font-family: "CustomYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic");
}
body.jpss2017r {
  line-height: 1.5;
}

body#Laja.jpss2017r,
body.laja.jpss2017r {
  font-family: "Noto Sans JP", CustomYuGothicM, YuGothic, sans-serif;
  line-height: 1.7;
  color: #15212f;
}

body#Lavi.jpss2017r,
body.lavi.jpss2017r {
  font-family: "Segoe UI", "Arial", sans-serif;
}

/* ロールオーバー設定 */
a:hover img.rollover, .searchButton input:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: “alpha(opacity=70) ”;
}

a {
  color: #15212f;
}
a:hover {
  text-decoration: none;
}

/* ----------------------------------------------
   リニューアル対象ページのみ適用
---------------------------------------------- */
.jpss2017r-targetpage {
  overflow-x: hidden;
}

.jpss2017r-targetpage #CntIn {
  width: 100%;
}

/* ----------------------------------------------
   右カラムの上余白調整
---------------------------------------------- */
.jpss2017r .rightBlock.sideBlock {
  margin-top: 28px;
}
.jpss2017r .rightBlock.sideBlock h2:first-child {
  padding-top: 0;
}

.jpss2017r-targetpage .rightBlock.sideBlock {
  margin-top: 0;
}

/* ----------------------------------------------
   既存にも適用する変更
---------------------------------------------- */
.jpss2017r {
  background-color: #f1f1f1;
  text-align: left;
  /* 既存のみ上書き用
  ---------------------------------------------- */
}
.jpss2017r hr {
  display: none;
}
.jpss2017r #ContactCnTop {
  margin-bottom: 50px;
  padding-top: 0;
}
.jpss2017r #ContactCnIn {
  margin: auto;
  width: 100%;
  max-width: 1000px;
  background: #efefef;
  background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
  border: 1px solid #ccc;
  border-radius: 3px;
}
.jpss2017r #TopLink {
  margin-top: 30px;
  width: auto;
  max-width: 1000px;
}
.jpss2017r #TopLink h4 {
  padding: 0.5em;
  background: linear-gradient(to bottom, #ffffff 50%, #e5e5e5 100%);
  border-bottom: 2px solid #ccc;
  color: #444;
}
.jpss2017r #BreadC {
  background-position: 0 20px;
  line-height: 1.5;
}
.jpss2017r.is-navigation-open {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.jpss2017r #Arecord {
  padding-top: 5px;
  background: #fff;
  border: 1px solid #e7e7e7;
}
.jpss2017r .sideBlock .searchBox {
  background-color: #fff;
}
.jpss2017r #RightSideLifeMenu li a {
  border-color: #c5c5c5;
}
.jpss2017r #MapCnt ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r #MapCnt ul li {
  font-size: 12px;
}
.jpss2017r #MapCnt ul a {
  line-height: 17px;
}
.jpss2017r .sCnt {
  font-size: 13px;
  /* 先輩からのメッセージ */
}
.jpss2017r .sCnt ul {
  list-style: none;
}
.jpss2017r .sCnt .sideBlock {
  line-height: 1.22;
}
.jpss2017r .sCnt .sideBlock img {
  vertical-align: bottom;
}
.jpss2017r .sCnt #MainTextCnt {
  float: right;
  text-align: left;
  width: 688px;
}
.jpss2017r .sCnt #MovieBlock,
.jpss2017r .sCnt .mQuestionObj {
  line-height: 1.22;
}
.jpss2017r .sCnt .mMoreLine {
  line-height: 1px;
}

.jpss2017r-layout- {
  /* =============================================================================
     グローバルヘッダー
  ============================================================================= */
  /* ログインユーザ名
  ---------------------------------------------- */
  /* ----------------------------------------------
     旧 言語切替メニュー
   ---------------------------------------------- */
  /* =============================================================================
     サイドカラム
  ============================================================================= */
  /* =============================================================================
     メインコンテンツ
  ============================================================================= */
  /* =============================================================================
     グローバルフッター
  ============================================================================= */
}
.jpss2017r-layout-global-header {
  position: relative;
  background-color: #fff;
  min-width: 1000px;
  /* ----------------------------------------------
     ロゴ／h1ページタイトル
  ---------------------------------------------- */
  /* ----------------------------------------------
     sns
  ---------------------------------------------- */
  /* ----------------------------------------------
     会員系ボタン
  ---------------------------------------------- */
  /* ----------------------------------------------
     ナビゲーション
  ---------------------------------------------- */
  /* ----------------------------------------------
     言語切替メニュー
   ---------------------------------------------- */
  /* ----------------------------------------------
     ヘッダーお知らせエリア
   ---------------------------------------------- */
}
.jpss2017r-layout-global-header__siteinfo {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0 0 0 -150px;
  width: 300px;
}
.jpss2017r-layout-global-header__siteutil {
  float: right;
  text-align: right;
}
.jpss2017r-layout-global-header__siteutil--upper {
  display: block;
  line-height: 1;
}
.jpss2017r-layout-global-header__pagetitle {
  margin: 0;
  padding-top: 12px;
  font-size: 8px;
  color: #7b7b7b;
  font-weight: normal;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.jpss2017r-layout-global-header__logo {
  padding-top: 5px;
}
.jpss2017r-layout-global-header__sns {
  display: inline-block;
  padding: 0 22px;
  min-height: 90px;
  border-left: 1px solid #cfcfcf;
  vertical-align: middle;
  line-height: 1;
}
.jpss2017r-layout-global-header__sns a {
  margin-right: 10px;
  line-height: 90px;
}
.jpss2017r-layout-global-header__sns a:last-child {
  margin-right: 0;
}
@media all and (max-width: 1100px) {
  .jpss2017r-layout-global-header__sns {
    display: none;
  }
}
.jpss2017r-layout-global-header__memberlink {
  display: inline-block;
  min-height: 90px;
  vertical-align: middle;
}
.jpss2017r-layout-global-header__memberlink--list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.jpss2017r-layout-global-header__memberlink--item {
  display: inline-block;
  line-height: 90px;
  width: 130px;
}
.jpss2017r-layout-global-header__memberlink--link {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  text-align: center;
}
.jpss2017r-layout-global-header__memberlink--link.jpss2017r-mod-btn__login {
  border-left: 1px solid #cfcfcf;
}
.jpss2017r-layout-global-header__memberlink--link img {
  vertical-align: middle;
}
.jpss2017r-layout-global-header__memberlink--logout {
  background: #f1f1f1;
}
.jpss2017r-layout-global-header__memberlink--mypage {
  background: #57a2c9;
}
.jpss2017r-layout-global-header__navigation {
  float: left;
}
.jpss2017r-layout-global-header__navigation--list, .jpss2017r-layout-global-header__navigation--item, .jpss2017r-layout-global-header__navigation--link {
  display: inline-block;
  line-height: 90px;
}
.jpss2017r-layout-global-header__navigation--btn {
  display: inline-block;
  padding: 0 30px;
  padding-top: 0;
  padding-bottom: 0;
  height: 90px;
  border-right: 1px solid #cfcfcf;
  vertical-align: top;
  outline: none;
}
.jpss2017r-layout-global-header__navigation--link {
  padding: 0 25px;
  border-right: 1px solid #cfcfcf;
  text-decoration: none;
  color: #1c2c3e;
}
.jpss2017r-layout-global-header__navigation--btntext {
  display: block;
  margin-top: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  color: #15212f;
}
.jpss2017r-layout-global-header__navigation--item {
  font-weight: bold;
  vertical-align: top;
}
@media all and (max-width: 1100px) {
  .jpss2017r-layout-global-header__navigation--item {
    display: none;
  }
}
.jpss2017r-layout-global-header__navigation--iconsearch {
  display: inline-block;
  margin-right: 0.5em;
  width: 22px;
  height: 22px;
  background: url("/images/common/icon_search_school.png") no-repeat 0 0;
  vertical-align: -5px;
}
.jpss2017r-layout-global-header__navigation .hamburger-box {
  width: 30px;
  vertical-align: middle;
}
.jpss2017r-layout-global-header__navigation .hamburger-inner,
.jpss2017r-layout-global-header__navigation .hamburger-inner:after,
.jpss2017r-layout-global-header__navigation .hamburger-inner:before {
  width: 30px;
  height: 3px;
}
.jpss2017r-layout-global-header__language {
  clear: both;
  position: relative;
  padding: 9px 10px;
  width: 100%;
  background-color: #1c2c3e;
  text-align: right;
  line-height: 1;
  font-size: 8px;
  box-sizing: border-box;
}
.jpss2017r-layout-global-header__language--list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r-layout-global-header__language--item {
  display: inline-block;
  margin-left: 7px;
  line-height: 1;
}
.jpss2017r-layout-global-header__language--link img {
  opacity: 0.7;
  transform: scale(0.8);
  transition: all 300ms;
  line-height: 1;
}
.jpss2017r-layout-global-header__language--link:hover img, .jpss2017r-layout-global-header__language--link[aria-selected=true] img {
  opacity: 1;
  transform: scale(1);
}
.jpss2017r-layout-global-header__language .hint--bottom-left::after, .jpss2017r-layout-global-header__language .hint--bottom-right::after, .jpss2017r-layout-global-header__language .hint--bottom::after {
  z-index: 98;
  padding-right: 2em;
  padding-left: 2em;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid #1c2c3e;
  color: #1c2c3e;
  text-shadow: none;
  box-shadow: none;
  font-size: 12px;
}
.jpss2017r-layout-global-header__language .hint--bottom-left::after:hover, .jpss2017r-layout-global-header__language .hint--bottom-right::after:hover, .jpss2017r-layout-global-header__language .hint--bottom::after:hover {
  transform: translateY(10px);
}
.jpss2017r-layout-global-header__language .hint--bottom-left::before, .jpss2017r-layout-global-header__language .hint--bottom-right::before, .jpss2017r-layout-global-header__language .hint--bottom::before {
  z-index: 99;
  margin-top: -13px;
  border-bottom-color: rgba(255, 255, 255, 0.9);
  border-top-width: 10px;
  border-right-width: 5px;
  border-bottom-width: 10px;
  border-left-width: 5px;
}
.jpss2017r-layout-global-header__language .hint--bottom::before,
.jpss2017r-layout-global-header__language .hint--bottom-left::before {
  left: calc(50% - 5px);
}
.jpss2017r-layout-global-header__language .hint--bottom:hover::after {
  transform: translateX(-50%) translateY(15px);
}
.jpss2017r-layout-global-header__language .hint--bottom-left:hover::after {
  transform: translateX(-100%) translateY(15px);
}
.jpss2017r-layout-global-header__notice {
  position: absolute;
  top: 50%;
  margin: -0.5em 0 0;
  color: #fff;
}
.jpss2017r-layout-global-header__notice a {
  color: #fff;
}
.jpss2017r-layout-loginname {
  padding: 2em 2.67em;
  background-color: #425162;
  font-size: 12px;
  color: #b9cde4;
}
.jpss2017r-layout-languagechoice {
  display: inline-block;
  margin-left: 5px;
  width: 152px;
  height: 20px;
  vertical-align: top;
}
.jpss2017r-layout-languagechoice .dd {
  width: 152px !important;
  height: 20px;
}
.jpss2017r-layout-languagechoice .dd .ddTitle {
  position: relative;
  padding: 0;
  height: 20px;
  background: #f4f4f4;
  border: none;
}
.jpss2017r-layout-languagechoice .dd .ddTitle .arrow {
  float: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 23px;
  height: 20px;
  background: #555 url() no-repeat center;
  color: #fff;
}
.jpss2017r-layout-languagechoice .dd .ddTitle > .ddTitleText {
  display: block;
  padding-right: 28px;
  padding-left: 5px;
  width: 152px !important;
  line-height: 20px;
  font-size: 10px;
  box-sizing: border-box;
}
.jpss2017r-layout-sidecolumn__lifemenu {
  margin-top: 35px;
}
.jpss2017r-layout-sidecolumn__lifemenu:first-child {
  margin-top: 0;
}
.jpss2017r-layout-section {
  margin: 0 auto;
  width: 1000px;
}
.jpss2017r-layout-maincontent {
  float: left;
  width: 765px;
}
.jpss2017r-layout-subcontent {
  float: right;
  width: 210px;
  box-sizing: border-box;
}
.jpss2017r-layout-subcontent__snsaccount {
  margin-bottom: 30px;
}
.jpss2017r-layout-subcontent__snsaccount--title {
  margin: 0 0 0.5em;
  font-size: 16px;
  color: #15212f;
}
.jpss2017r-layout-subcontent__snsaccount--name {
  color: #da3c1d;
}
.jpss2017r-layout-subcontent__snsaccount--list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r-layout-subcontent__snsaccount--item {
  display: inline-block;
  margin-right: 10px;
  width: 100px;
  font-size: 13px;
}
.jpss2017r-layout-subcontent__snsaccount--item:last-child {
  margin-right: 0;
}
.jpss2017r-layout-subcontent__snsaccount--link {
  display: block;
  padding: 1.5em 0;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.jpss2017r-layout-subcontent__snsaccount--link:hover {
  opacity: 0.7;
}
.jpss2017r-layout-subcontent__snsaccount--facebook {
  background-color: #305095;
}
.jpss2017r-layout-subcontent__snsaccount--twitter {
  background-color: #2fa6df;
}
.jpss2017r-layout-subcontent__snsaccount--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.jpss2017r-layout-subcontent__snsaccount--icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.jpss2017r-layout-subcontent__snsaccount--text {
  display: inline-block;
  vertical-align: middle;
}
.jpss2017r-layout-subcontent__snsaccount--twitter .jpss2017r-layout-subcontent__snsaccount--icon, .jpss2017r-layout-subcontent__snsaccount--facebook .jpss2017r-layout-subcontent__snsaccount--icon {
  margin-right: 5px;
}
.jpss2017r-layout-subcontent__inner {
  padding: 14px;
  border: 1px solid #b1b1b1;
}
.jpss2017r-layout-subcontent__inner .banner {
  margin-bottom: 15px;
  line-height: 1;
}
.jpss2017r-layout-subcontent__inner .banner:last-child {
  margin-bottom: 0;
}
.jpss2017r-layout-subcontent__inner img {
  width: 100%;
}
.jpss2017r-layout-footer__topcategorynav {
  background-color: #fff;
}
.jpss2017r-layout-footer__topcategorynav--list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 auto;
  padding: 40px 0 10px;
  width: 1000px;
  text-align: center;
  font-size: 0;
  line-height: 18px;
}
.jpss2017r-layout-footer__topcategorynav--item {
  overflow: hidden;
  display: inline-block;
  margin-right: -1px;
  padding-right: 0.8em;
  padding-left: 1em;
  border-right: 1px solid #15212f;
  border-left: 1px solid #15212f;
  font-size: 12px;
  line-height: 1.1;
}
.jpss2017r-layout-footer__topcategorynav--link {
  display: inline-block;
  text-decoration: none;
}
.jpss2017r-layout-footer__topcategorynav--link:hover {
  opacity: 0.7;
}
.jpss2017r-layout-global-footer {
  padding: 50px 0;
  min-width: 1000px;
  background: #15212f;
}
.jpss2017r-layout-global-footer__inner {
  margin: 0 auto;
  width: 1000px;
  color: #ddd;
}
.jpss2017r-layout-global-footer__pageinfo {
  margin: 0 0 25px;
}
.jpss2017r-layout-global-footer__pageinfo--text {
  margin: 0;
  font-size: 12px;
  color: #ccc;
}
.jpss2017r-layout-global-footer__searchlinks {
  *zoom: 1;
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
.jpss2017r-layout-global-footer__searchlinks:after {
  content: "";
  display: block;
  clear: both;
}
.jpss2017r-layout-global-footer__searchlinks--pref {
  float: left;
  width: 50%;
}
.jpss2017r-layout-global-footer__searchlinks--other {
  float: right;
  padding-bottom: 40px;
  width: 40%;
}
.jpss2017r-layout-global-footer__searchlinks--title {
  margin: 25px 0 10px;
  text-indent: -0.5em;
  font-size: 14px;
  font-weight: bold;
}
.jpss2017r-layout-global-footer__searchlinks--title:first-child {
  margin-top: 0;
}
.jpss2017r-layout-global-footer__searchlinks--subtitle {
  margin: 10px 0 5px;
  font-size: 12px;
  font-weight: bold;
}
.jpss2017r-layout-global-footer__searchlinks--title + .jpss2017r-layout-global-footer__searchlinks--subtitle {
  margin-top: 0;
}
.jpss2017r-layout-global-footer__searchlinks--list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 13px;
  font-size: 0;
}
.jpss2017r-layout-global-footer__searchlinks--item {
  display: inline-block;
  margin-right: -1px;
  padding-right: 0.7em;
  padding-left: 0.7em;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 12px;
  line-height: 1.1;
}
.jpss2017r-layout-global-footer__searchlinks--link {
  text-decoration: none;
  color: #ccc;
}
.jpss2017r-layout-global-footer__searchlinks--link:hover {
  opacity: 0.7;
}
.jpss2017r-layout-global-footer__admininfo {
  padding: 20px 0 0;
}
.jpss2017r-layout-global-footer__admininfo--title {
  float: left;
  margin: 0;
  width: 10%;
  font-size: 14px;
}
.jpss2017r-layout-global-footer__admininfo--body {
  float: right;
  width: 85%;
}
.jpss2017r-layout-global-footer__admininfo--description, .jpss2017r-layout-global-footer__admininfo--info {
  margin: 0 0 1em;
  font-size: 11px;
  color: #ccc;
}
.jpss2017r-layout-global-footer__admininfo--relatedlist {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r-layout-global-footer__admininfo--relateditem {
  display: inline-block;
  margin-right: 1em;
  font-size: 11px;
}
.jpss2017r-layout-global-footer__admininfo--relateditem .fa-chevron-right {
  margin-right: 0.5em;
}
.jpss2017r-layout-global-footer__admininfo--relateditem .fa-chevron-right::before {
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 1px #1c2c3e;
}
.jpss2017r-layout-global-footer__admininfo--relateditem .fa-envelope {
  margin: 0 0.5em 0 1em;
}
.jpss2017r-layout-global-footer__admininfo--inquiry, .jpss2017r-layout-global-footer__admininfo--relatedlink {
  color: #ccc;
}
.jpss2017r-layout-global-footer__admininfo--relatedlink:hover {
  opacity: 0.7;
}
.jpss2017r-layout-global-footer__admininfo-img {
  width: 94px;
  vertical-align: -0.3em;
}
.jpss2017r-layout-global-footer__snsaccount {
  position: absolute;
  right: 0;
  bottom: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.jpss2017r-layout-global-footer__snsaccount--item {
  display: inline-block;
  margin-right: 5px;
  line-height: 1;
}
.jpss2017r-layout-global-footer__snsaccount--item:last-child {
  margin-right: 0;
}
.jpss2017r-layout-copyright {
  padding: 1em 0;
  background-color: #fff;
}
.jpss2017r-layout-copyright__inner {
  margin: 0 auto;
  width: 1000px;
  text-align: right;
}
.jpss2017r-layout-copyright__text {
  font-size: 13px;
  color: #666;
}
.jpss2017r-layout-navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6000020;
  overflow-y: auto;
  width: 400px;
  height: 100%;
  background-color: #1c2c3e;
  overflow-scrolling: touch;
  transform: translateX(-400px);
  transition: transform 500ms ease;
  will-change: transform;
}
.jpss2017r-layout-navigation[aria-expanded=true] {
  transform: translateX(0);
}
.jpss2017r-layout-navigation__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r-layout-navigation__list--pcnotlogin {
  padding-top: 90px;
}
.jpss2017r-layout-navigation__link {
  display: block;
  padding: 1.5em 2em;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.jpss2017r-layout-navigation__link:hover {
  background-color: #da3c1d;
}
.jpss2017r-layout-navigation .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  padding: 22px;
  line-height: 1;
  transition-property: none;
}
.jpss2017r-layout-navigation .hamburger-box {
  width: 32px;
}
.jpss2017r-layout-navigation .hamburger-inner {
  width: 32px;
  height: 3px;
  background-color: #fff;
}
.jpss2017r-layout-navigation .hamburger-inner::before, .jpss2017r-layout-navigation .hamburger-inner::after {
  width: 32px;
  height: 3px;
  background-color: #fff;
}
.jpss2017r-layout-navigationbg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6000010;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 44, 62, 0.4);
  cursor: pointer;
}
.jpss2017r-layout-navigationbg[aria-hidden=false] {
  display: block;
}

/* page */
/** |READ ME| **************************************************************************************

"www.jpss.jp"

Cascading Style Sheet Setting File
/css/common.css

Ver.20120311

----------------------------------------------------------------------------------------------------

01.Top Elements Settings
トップページ設定

02.Search Elements Settings
検索結果表示設定

03.University Elements Settings
学校詳細ページ設定

04.Movie Elements Settings
先輩メッセージページ設定

05.News Elements Settings
ニュース／留学に役立つ情報ページ設定

06.Etc Elements Settings
その他の静的ページ設定

************************************************************************************** |READ ME| **/
/** |01.Top Elements Settings| *********************************************************** START **/
/* フリーワード検索 *****************************/
/* 特集コンテンツ *******************************/
/* 地図の設定 ***********************************/
/** |01.Top Elements Settings| ************************************************************* END **/
/* トップオプション枠 ***************************/
#TopOption {
  width: 600px;
  padding-top: 12px;
}

#TopMainCntIn .leftBlock #TopOption .leftBlock, #TopMainCntIn .leftBlock #TopOption .rightBlock {
  width: 300px;
}

.topOpObj {
  background: #f4f4f4 url("/images/top/bg_option.gif") no-repeat right top;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.topOpObjIn {
  width: 278px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.topOpObjIn .imgBox {
  width: 92px;
  float: left;
}

.topOpObjIn .textBox {
  width: 176px;
  float: right;
  font-size: 93%;
}

/* 留学先を探す枠 *******************************/
#TopOptionSearch {
  width: 600px;
  padding-top: 12px;
}

.topOpSearchObj {
  background: #f4f4f4 url("/images/top/bg_option_search.gif") repeat-y top;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

#TopOpSearchButton {
  padding-left: 14px;
  overflow: hidden;
}

#TopOpSearchButton li {
  margin-right: 5px;
  float: left;
  display: block;
}

/* トップニュース枠 *****************************/
#TopNewsObj {
  height: 372px;
  overflow-y: scroll;
  text-align: center;
}

#TopNewsObj dl {
  width: 556px;
  border-bottom: dotted 1px #dedede;
  margin-right: auto;
  margin-left: auto;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: left;
}

#TopNewsObj dt {
  display: block;
  width: 74px;
  float: left;
  font-size: 93%;
  padding-top: 2px;
  font-family: arial;
}

#TopNewsObj dd {
  width: 480px;
  float: right;
}

/* トップコンセプトテキスト枠 *****************************/
#TopTextObj {
  margin-top: 18px;
  padding: 10px 12px;
  border: solid #d7d7d7 1px;
  font-size: 12px;
}

#textConceptLink {
  text-align: right;
  font-size: 14px;
}

#textConceptLink a:link, #textConceptLink a:visited {
  color: #575757;
  text-decoration: none;
}

#textConceptLink a:hover, #textConceptLink a:active {
  color: #575757;
  text-decoration: underline;
}

/* ピックアップ枠 *****************************/
#Carousel {
  width: 600px;
  height: 338px;
  overflow: hidden;
  position: relative;
}

.carouselItem {
  position: relative;
  width: 600px;
  height: 338px;
}

.carouselItemThumbnail {
  width: 600px;
  height: 338px;
}

.carouselItemThumbnail,
.carouselItemVideo,
.carouselItemVideo iframe {
  z-index: 1;
}

.carouselItemFooter {
  position: absolute;
  bottom: 0px;
  width: 600px;
  height: 52px;
  color: #fff;
  background-color: #000;
  z-index: 100;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: “alpha(opacity=50) ”;
}

.carouselItemFooter p {
  padding-top: 18px;
  padding-left: 20px;
}

.carouselItemFooter p a {
  color: #fff;
  font-weight: bold;
}

.carouselControlButton a {
  display: none;
  width: 100%;
  height: 100%;
}

.carouselControlButton a.display {
  display: block;
  background-color: #000;
}

.carouselItem .playBtn img {
  display: none;
  width: 64px;
  height: 64px;
}

.carouselItem .playBtn img.display {
  display: block;
}

#CarouselControlPrev, #CarouselControlNext {
  z-index: 100;
  position: absolute;
  top: 150px;
  width: 40px;
  height: 40px;
  text-align: center;
}

#CarouselControlPrev {
  left: 0px;
}

#CarouselControlNext {
  right: 0px;
}

.carouselOverlay {
  opacity: 0.4;
  filter: alpha(opacity=40);
  -ms-filter: “alpha(opacity=40) ”;
}

#CarouselControlPrev img, #CarouselControlNext img {
  margin-top: 10px;
}

.carouselItem .playBtn { /* 再生ボタン */
  position: absolute;
  top: 137px;
  left: 268px;
  cursor: pointer;
  display: block;
}

#sb-title-inner p a { /* ポップアップ後の学校名 */
  color: #ffffff;
}

/* 新規登録促進バナー */
#entryBanner {
  position: fixed;
  top: 140px;
  left: 0;
  z-index: 999;
}

/** |02.Search Elements Settings| ******************************************************** START **/
#SearchCnt .leftBlock h2 {
  width: 725px;
  border-bottom: solid 1px #e1e1e1;
  font-size: 123%;
  padding-bottom: 10px;
}

/* 開始ボタン（背景画像に変える可能性有り） *****/
#TypeBtn {
  width: 725px;
  padding-bottom: 30px;
}

#TypeBtn div {
  width: 356px;
  float: left;
  padding-bottom: 7px;
}

#AllBtn, #GcBtn, #JcBtn {
  margin-right: 12px;
  margin-left: 1px;
}

/* 詳細検索 *************************************/
#SearchCnt {
  padding-bottom: 28px;
}

#SearchCnt .pager {
  padding-bottom: 15px;
}

#SearchCnt .scholarshipObj {
  width: 713px !important;
  width: 715px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  border: solid 1px #cfcfcf;
}

#SearchCnt .scholarshipObj h3 {
  background-color: #e9eaea;
  border-bottom: solid 1px #cfcfcf;
  padding: 10px 15px;
}

#SearchCnt .scholarshipObj h3 a {
  color: #555;
  text-decoration: none;
}

#SearchCnt .scholarshipObj h3 a:hover {
  text-decoration: underline;
}

#SearchCnt .scholarshipObjIn {
  width: 687px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 0px;
}

#SearchCnt .scholarshipObjIn .leftBlock {
  width: 194px;
  padding-top: 0px;
  padding-bottom: 0px;
}

#SearchCnt .scholarshipObjIn .rightBlock {
  width: 470px;
  line-height: 1.6em;
}

.scholarship-search__btn--submit {
  margin: 8px 0 12px;
  padding: 0;
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.scholarship-search__btn--submit:hover {
  opacity: 0.7;
}

#SearchDetail ul {
  width: 725px;
  background: url("/images/search/bg_search_top.gif") repeat-x left bottom;
}

#SearchDetail li {
  width: 141px;
  height: 36px;
  float: left;
  margin-left: 5px;
}

#SearchDetail li.nMargin {
  margin-left: 0px;
}

#SearchDetailIn {
  width: 725px;
  background-color: #f8f8f8;
  text-align: center;
}

#searchForm {
  padding-top: 25px;
}

#SearchStaticTitle + #searchForm {
  padding-top: 10px;
}

#SearchStaticTitle {
  font-size: 14px;
  text-align: left;
}

#SearchDetailIn .sDetailObj {
  width: 695px;
  border: solid 2px #cccccc;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  text-align: left;
}

#SearchDetailIn .sDetailObj table {
  width: 100%;
  border: solid 3px #ffffff;
  background-color: #ffffff;
}

#SearchDetailIn .sDetailObj th {
  border-right: none;
  background-color: #ededed;
  font-weight: normal;
}

#SearchDetailIn .sDetailObj th div {
  padding: 7px;
}

#SearchDetailIn .sDetailObj td {
  background-color: #ffffff;
  padding: 5px;
}

#SearchDetailIn .sDetailObj td.lDotLine {
  border-left: dotted 1px #cccccc;
  text-align: center;
}

#SearchDetailIn .sDetailObj td .gCu, #SearchDetailIn .sDetailObj td .uEn, #SearchDetailIn .sDetailObj td .gEt {
  white-space: nowrap;
}

#SearchDetailIn .addSearch {
  background: #f8f8f8 url("/images/search/bg_add_p2.gif") no-repeat left bottom;
  text-align: left;
  padding-left: 288px;
  overflow: hidden;
}

#SearchDetailIn .addSearch .open {
  display: block;
  padding-left: 40px;
  padding-bottom: 4px;
  color: #8a8a8a;
  font-size: 90%;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.titleSearchScholarship {
  display: none;
  margin-top: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
  font-size: 16px;
}

#LifeCnt .titleSearchScholarship {
  display: block;
}
#LifeCnt #searchForm {
  padding-top: 10px;
}
#LifeCnt #SearchDetailIn {
  margin-bottom: 50px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
  box-sizing: border-box;
}
#LifeCnt .sDetailObj {
  width: 100%;
  box-sizing: border-box;
}

#scholarshipDescription {
  margin-top: 18px;
  padding: 10px 12px;
  border: solid #d7d7d7 1px;
  font-size: 12px;
}

/* 検索結果 *************************************/
#SearchResult {
  width: 725px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 15px;
}

/* 検索結果オブジェクト ***************/
.resultObj {
  width: 725px;
  background: url("/images/search/bg_result.gif") no-repeat left top;
  padding-bottom: 23px;
  word-wrap: break-word;
  text-align: center;
}

.resultObj dl {
  width: 695px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 12px;
  text-align: left;
}

.resultObj dt {
  width: 695px;
  display: block;
  padding-bottom: 18px;
}

.resultObj dt .univTitle {
  width: 529px;
}

.resultObj dt .univTitleWrapper {
  float: left;
}

.resultObj dt .dlBtn {
  width: 166px;
  float: right;
  text-align: right;
}

.resultObj dt .univName {
  font-size: 130%;
  font-weight: bold;
  padding-bottom: 3px;
}

.resultObj dt img {
  margin-left: 7px;
  vertical-align: -0.2em;
}

#Lako .resultObj dt img,
#Lazhtw .resultObj dt img,
#Lazhcn .resultObj dt img {
  vertical-align: baseline;
}

.resultObj dt a:link, .resultObj dt a:visited {
  color: #424242;
  text-decoration: underline;
}

.resultObj dt a:hover, .resultObj dt a:active {
  color: #627eb2;
  text-decoration: none;
}

.resultBox {
  width: 695px;
  padding-bottom: 10px;
}

.resultObjFree .resultBox {
  display: inline;
  height: 0px;
  padding-bottom: 0px;
}

.resultBox .leftBlock {
  width: 185px;
}

.resultBox .rightBlock {
  width: 510px;
  font-size: 108%;
}

/* 学部リスト */
.depList {
  width: 695px;
}

.depList a, .depList .faculty {
  display: inline-block;
  height: 2.5em;
  line-height: 2.8em;
  text-decoration: none;
  border: solid 1px #e3e3e3;
  /*cursor:pointer;*/
  font-size: 86%;
  outline: 0 none;
  padding: 0 0.91em;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: normal;
  background: #f8f8f8 url("/images/search/bg_deplist.gif") repeat-x left top;
  margin-bottom: 5px;
  behavior: url(/css/PIE.htc);
  position: relative;
  box-shadow: 1px 1px 1px 0px #eeeeee;
  -webkit-box-shadow: 1px 1px 1px 0px #eeeeee;
  -moz-box-shadow: 1px 1px 1px 0px #eeeeee;
  -khtml-box-shadow: 1px 1px 1px 0px #eeeeee;
}

.depList a:hover {
  background: #d6d6d6 url("/images/search/bg_deplist_hover.gif") repeat-x left top;
  color: #555555;
  border: solid 1px #b3b3b5;
}

/* 無料掲載校 */
.resultObjFree {
  width: 725px;
  background: url("/images/search/bg_result_free.gif") no-repeat left top;
  padding-bottom: 23px;
  word-wrap: break-word;
  text-align: center;
}

.resultObjFree dl {
  width: 695px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 12px;
  text-align: left;
}

.resultObjFree dt {
  width: 695px;
  display: block;
  padding-bottom: 15px;
}

.resultObjFree dt .univTitle {
  width: 695px;
}

.resultObjFree dt .univTitleWrapper {
  float: left;
}

.resultObjFree dt .univName {
  font-size: 130%;
  font-weight: bold;
  padding-bottom: 3px;
}

.resultObjFree dt img {
  margin-left: 7px;
  vertical-align: -0.2em;
}

#Lako .resultObjFree dt img,
#Lazhtw .resultObjFree dt img,
#Lazhcn .resultObjFree dt img {
  vertical-align: baseline;
}

.resultObjFree dt a:link, .resultObjFree dt a:visited {
  color: #424242;
  text-decoration: underline;
}

.resultObjFree dt a:hover, .resultObjFree dt a:active {
  color: #627eb2;
  text-decoration: none;
}

/* 都道府県コンテンツ ***********************************************************/
.introPrefImg {
  display: block;
  height: 18px;
  width: 100%;
  cursor: pointer;
}

.introPrefTxt {
  height: 2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #8a8a8a;
  background-color: #f8f8f8;
  font-size: 90%;
  cursor: pointer;
}

/* 奨学金ヘッダー ***********************************************************/
.scholarHeadImg {
  display: block;
  height: 18px;
  width: 99.9%;
  cursor: pointer;
}

.scholarHeadTxt {
  height: 6em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #55556F;
  background-color: #ffffff;
  font-size: 100%;
  cursor: pointer;
}

.txt-hide {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 6em;
  display: block;
  background-size: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  background-color: transparent;
  cursor: pointer;
}

/* 地図から検索 ***************************************************************/
.map #sb-body, .map #sb-loading {
  background-color: #ffffff;
}

.map #sb-title, .map #sb-title-innder {
  height: 0px;
  line-height: 0px;
}

.map #sb-player {
  position: relative;
}

#sb-player .overlaySelectMap {
  background-color: #ffffff;
  text-align: center;
}

#MapCnt {
  width: 602px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

#MapCnt h2 {
  font-size: 123%;
  border-bottom: solid 1px #e1e1e1;
  padding-top: 12px;
  padding-bottom: 10px;
}

#MapBox {
  width: 594px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 5px;
}

#MapBoxIn {
  width: 594px;
  height: 494px;
  position: relative;
  background: url("/images/map/img_map.jpg") no-repeat left top;
}

#MapBoxIn li {
  font-size: 92%;
}

#MapBoxIn li.leftBlock {
  width: 91px;
  margin-right: 2px;
}

#MapBoxIn li.rightBlock {
  width: 91px;
}

#MapBoxIn li a {
  display: block;
  width: 77px !important;
  width: 91px;
  height: 17px !important;
  height: 19px;
  margin-bottom: 2px;
  padding-top: 2px;
  padding-left: 14px;
  color: #555555;
  text-decoration: none;
}

#MapBoxIn li a.mapRollover,
#MapBoxIn li a.selected,
#MapBoxIn li a:hover {
  color: #ffffff;
}

#MapBoxIn #Hokkaido { /* 北海道 */
  position: absolute;
  top: 100px;
  left: 475px;
}

#MapBoxIn #Tohoku { /* 東北 */
  position: absolute;
  top: 147px;
  left: 404px;
}

#MapBoxIn #Tohoku ul {
  width: 184px;
}

#MapBoxIn #Kanto { /* 関東 */
  position: absolute;
  top: 225px;
  left: 404px;
}

#MapBoxIn #Kanto ul {
  width: 184px;
}

#MapBoxIn #Tokai { /* 東海 */
  position: absolute;
  top: 345px;
  left: 350px;
}

#MapBoxIn #Tokai ul {
  width: 184px;
}

#MapBoxIn #Kansai { /* 関西 */
  position: absolute;
  top: 121px;
  left: 196px;
}

#MapBoxIn #Chugoku { /* 中国 */
  position: absolute;
  top: 200px;
  left: 85px;
}

#MapBoxIn #Shikoku { /* 四国 */
  position: absolute;
  top: 386px;
  left: 211px;
}

#MapBoxIn #Kyushu { /* 九州 */
  position: absolute;
  top: 323px;
  left: 12px;
}

#MapBoxIn #Okinawa { /* 沖縄 */
  position: absolute;
  top: 56px;
  left: 30px;
}

#MapBoxIn #SearchButton {
  position: absolute;
  top: 455px;
  left: 435px;
}

/* 学問 ***********************************************************************/
.academics #sb-body, .academics #sb-loading {
  background-color: #ffffff;
}

.academics #sb-title, .academics #sb-title-innder {
  height: 0px;
  line-height: 0px;
}

#sb-player .overlaySelectAcademics {
  background-color: #ffffff;
  text-align: center;
}

#AcademicsCnt {
  width: 716px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

#AcademicsCnt h2 {
  font-size: 123%;
  border-bottom: solid 1px #e1e1e1;
  padding-top: 12px;
  padding-bottom: 10px;
}

#ACategoryBox .categoryObj {
  width: 236px;
  float: left;
  padding-top: 20px;
  margin-right: 4px;
}

#ACategoryBox .noMar {
  margin-right: 0px;
}

#ACategoryBox #CatA li.titleLi {
  background-color: #cbe5f6;
}

#ACategoryBox #CatB li.titleLi {
  background-color: #ceebdf;
}

#ACategoryBox #CatC li.titleLi {
  background-color: #efd7f1;
}

#ACategoryBox .categoryObj ul {
  list-style: none;
  width: 100%;
  border-top: solid 1px #cfcfcf;
  border-left: solid 1px #cfcfcf;
}

#ACategoryBox .categoryObj li {
  border-right: solid 1px #cfcfcf;
  border-bottom: solid 1px #cfcfcf;
  padding: 11px;
}

#ACategoryBox .categoryObj li {
  padding: 6px;
}

#ACategoryBox .categoryObj li h3 {
  font-size: 98%;
}

#ACategoryBox .categoryObj li p {
  padding-top: 5px;
}

.catDetail .catSelectBox {
  width: 100%;
  background: #e0f1fc url("/images/search/bg_academics_category.gif") repeat-x left top;
  border: solid 1px #c0d7e6;
  margin-top: 20px;
}

.catDetail .catSelectBox h4 {
  padding: 9px;
}

.academicsBox {
  width: 100%;
  border: solid 1px #cfcfcf;
  margin-top: 10px;
}

.academicsBox h5 {
  font-size: 95%;
  background-color: #e2f0f9;
  padding: 5px;
}

.academicsList {
  width: 666px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
}

.academicsItem {
  width: 207px !important;
  width: 222px;
  float: left;
  padding-right: 15px;
  overflow: hidden;
  height: 4.4em;
}

body#Laen .academicsItem {
  height: 6em;
}

.academicsItem p {
  padding-bottom: 10px;
  font-size: 90%;
  line-height: 1.3;
}

.searchTop {
  text-align: right;
  padding: 7px 5px;
  background-color: #ededed;
  border-top: solid 1px #bfbfbf;
}

/** |02.Search Elements Settings| ********************************************************** END **/
/** |03.University Elements Settings| **************************************************** START **/
#schoolContainer {
  width: 685px;
  padding: 10px 19px 20px;
  margin-top: 30px;
  border: solid 1px #c8c8c8;
}

#UnivCnt {
  padding-bottom: 28px;
}

/* ページタイトル *******************************/
#SchoolName {
  width: 685px;
  border-bottom: solid 1px #e1e1e1;
  padding-bottom: 10px;
  position: relative;
}

#SchoolName .leftBlock {
  width: 507px;
}

#SchoolName h2 {
  color: #da1834;
  font-size: 180%;
}

#SchoolName p {
  font-size: 85%;
  padding-top: 5px;
  padding-left: 5px;
}

#SchoolName .rightBlock {
  width: 178px;
}

/* 学校プロフィール *****************************/
#SchoolHead {
  width: 685px;
  padding-top: 24px;
  word-wrap: break-word;
}

#SchoolHead .leftBlock {
  width: 322px;
}

#SchoolHead .rightBlock {
  width: 344px;
}

#SchoolHead .rightBlock h4 {
  color: #a03241;
}

#SchoolHead #OsLink {
  border: dotted 1px #d3d3cf;
  font-size: 90%;
}

#SchoolHead #OsLink .topOsLink {
  padding-left: 5px;
  border-bottom: dotted 1px #d3d3cf;
}

#SchoolHead #OsLink .bottomOsLink {
  padding: 5px 10px;
}

#SchoolHead #OsLink .bottomOsLink a {
  color: #a03241;
}

/* 学部一覧（学部選択メニュー） *****************/
#SchoolMenu {
  width: 685px;
  padding-top: 24px;
  padding-bottom: 15px;
}

#SchoolMenu ul {
  width: 685px;
}

#SchoolMenu li {
  width: 225px;
  float: left;
  height: 31px;
  font-size: 90%;
  margin-right: 5px;
}

#SchoolMenu li.noMar {
  margin-right: 0px;
}

#SchoolMenu li a {
  display: block;
  height: 13px;
  background: url("/images/univ/bg_scmenu_off.gif") no-repeat left top;
  padding-top: 9px;
  padding-right: 10px;
  padding-bottom: 9px;
  padding-left: 25px;
  text-decoration: none;
  word-wrap: break-word;
  color: #666666;
}

#SchoolMenu li a:hover {
  display: block;
  height: 13px;
  background: url("/images/univ/bg_scmenu_on.gif") no-repeat left top;
  color: #00499a;
}

#SchoolMenu li span {
  display: block;
  height: 13px;
  background: url("/images/univ/bg_scmenu_on.gif") no-repeat left top;
  padding-top: 9px;
  padding-right: 10px;
  padding-bottom: 9px;
  padding-left: 25px;
  word-wrap: break-word;
  color: #00499a;
}

/* 学部ヘッダー *********************************/
#DepHead {
  width: 685px;
  border-top: solid 1px #c8c8c8;
}

#DepHead .leftBlock {
  width: 367px;
  padding-top: 18px;
  padding-bottom: 8px;
}

#DepHead .leftBlock h3 {
  color: #00499a;
  font-size: 140%;
  word-wrap: break-word;
  font-weight: bold;
}

#DepHead .rightBlock {
  width: 316px;
  padding-top: 10px;
  padding-bottom: 8px;
}

#DepHead #DepNews {
  width: 659px !important;
  width: 685px;
  clear: both;
  border: solid 1px #2e6fb8;
  border-top: solid 3px #2e6fb8;
  padding: 15px 12px 10px;
  margin-bottom: 15px;
  background: url("/images/univ/h4_news.gif") no-repeat left top;
}

#DepHead #DepNews.ja {
  background: url("/images/univ/h4_news_ja.gif") no-repeat left top;
}

#DepHead #DepNews #CopyFaculty .checkbox_list li, #DepHead #DepNews #CopyResearch .checkbox_list li {
  display: inline-block;
  margin: 2px;
  padding: 2px;
}

#DepHead #DepNews #CopyFaculty fieldset, #DepHead #DepNews #CopyResearch fieldset {
  border: 1px solid #c6c3c6;
}

#DepHead #DepNews #CopyFaculty legend, #DepHead #DepNews #CopyResearch legend {
  display: block;
  margin: 2px;
}

#DepHead p {
  font-size: 90%;
  white-space: normal;
  word-wrap: break-word;
  padding-top: 8px;
  color: #3c3c3c;
}

#DepHead .rightBlock #DepDl {
  width: 316px;
  float: right;
  text-align: right;
}

#TcHead { /* 専門学校用 */
  width: 685px;
  position: relative;
  border-top: solid 1px #c8c8c8;
  padding-top: 8px;
}

#TcHead #TcDl {
  position: absolute;
  top: 8px;
  right: 7px;
}

#DepDl img.leftImg {
  float: left;
}

#DepDl img.rightImg {
  float: right;
}

/* 学部メニュー *********************************/
#DepMenu ul {
  width: 685px;
  height: 43px;
  padding-bottom: 2px;
  _margin-bottom: -2px;
}

#DepMenu li {
  width: 137px;
  float: left;
  line-height: 0;
}

#DepMenu li.firstLi {
  width: 138px;
}

#DepMenu li.lastLi {
  width: 136px;
}

/* 学部コンテンツ *******************************/
#DepBody {
  width: 683px !important;
  width: 685px;
  word-wrap: break-word;
  text-align: center;
}

#DepBody .leftBlock {
  width: 468px;
}

#DepBody.facultyInfoCnt {
  border: solid 1px #c8c8c8;
  overflow: hidden;
}

#DepBody.facultyInfoCnt .leftBlock {
  border-right: solid 1px #c8c8c8;
  padding-bottom: 32768px;
  margin-bottom: -32768px;
  background-color: #fafafa;
}

#DepBody.facultyInfoCnt .rightBlock {
  width: 188px;
  padding: 20px 13px;
}

#DepBody.facultyInfoCnt .rightBlock img {
  max-width: 100%;
  width: 188px;
}

#DepBody.facultyInfoCnt .rightBlock p {
  font-size: 92%;
  color: #3c3c3c;
  margin-top: 8px;
  margin-bottom: 12px;
}

/* デフォルトタイトル */
.defaultTitle {
  width: 683px;
  margin-right: auto;
  margin-left: auto;
}

.defaultTitle h4 {
  padding: 8px;
  font-size: 112%;
  color: #666666;
}

/* デフォルトテーブル */
#DepBody .unvExamTable {
  width: 683px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.unvExamTable table {
  width: 100%;
  border-top: solid 1px #c8c8c8;
  border-left: solid 1px #c8c8c8;
  border-right: solid 1px #cccccc;
  table-layout: fixed;
  text-align: left;
}

.unvExamTable th, .unvExamTable td {
  border-left: solid 1px #ffffff;
  border-top: solid 1px #ffffff;
  border-bottom: solid 1px #c8c8c8;
  padding: 9px 12px 9px;
}

.unvExamTable th {
  width: 30%;
  background-color: #fffffa;
  font-weight: normal;
  border-right: solid 1px #c8c8c8;
  color: #1d5696;
}

.unvExamTable .noRBorderTh th {
  border-right: none;
}

.unvExamTable td {
  width: 70%;
  background-color: #fffffa;
  word-wrap: break-word;
  border-right: solid 1px #ffffff;
  color: #3c3c3c;
}

.unvExamTable tr.evenTr th {
  background-color: #f0f0f0;
}

.unvExamTable tr.evenTr td {
  background-color: #f5f5f5;
}

/* 入試情報オリジナル設定 */
.unvExamTable tr.department th, .unvExamTable tr.apply th {
  background-color: #d3e8ff;
}

.unvExamTable tr.department td, .unvExamTable tr.apply td {
  background-color: #ecf5ff;
}

/* 学部デフォルトオブジェクト */
.depObj {
  width: 428px !important;
  background: #265d9a url("/images/univ/bg_faculty_info_top.gif") no-repeat left top;
  margin-top: 5px;
  margin-bottom: 15px;
  padding-top: 10px;
}

.depObjIn {
  padding-bottom: 5px;
  background: url("/images/univ/bg_faculty_info_bottom.gif") no-repeat left bottom;
}

#DepBody .infoUnivCnt .depObj .depObjIn .whiteBase {
  width: 426px !important;
  width: 428px;
  background-color: #ffffff;
  border-right: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
  border-top: solid 1px #0c2541;
}

.depObj h5 {
  color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 103%;
}

.depObj p { /*font-size:95%*/
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 6px;
  padding-left: 20px;
}

.depObjFull {
  width: 663px;
  margin: 0 10px 20px;
  border-right: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
}

.depObjFull h5 {
  background-color: #2e6fb8;
  color: #ffffff;
  padding: 6px 12px;
}

.depObjFull p {
  padding-top: 9px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
}

/* 学部情報・研究科情報オリジナル設定 */
/* 学部コンテンツ（学部情報） *******************/
#DepBody2 {
  width: 643px !important;
  width/**/: 641px;
  padding: 20px !important;
  padding/**/: 19px;
  border-left: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
}

.infoUnivCnt {
  width: 426px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.infoUnivCnt .defaultTitle {
  width: 360px;
  margin-left: 3px;
}

.infoUnivCnt .defaultTitle img {
  margin-top: 5px;
  float: left;
}

.infoUnivCnt .defaultTitle h4 {
  margin-left: 30px;
  padding-top: 14px;
}

.infoUnivCnt .leftBlock {
  width: 463px;
}

.infoUnivCnt .rightBlock {
  width: 203px;
  margin-top: 15px;
}

.infoUnivCnt .rightBlock p {
  font-size: 89%;
  padding-top: 2px;
  padding-bottom: 5px;
  line-height: 1.2;
}

/* 在留学生情報 */
.infoCntB {
  width: 645px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  padding-top: 6px;
  background: #f0f0f0 url("/images/univ/bg_faculty_info_top2.gif") no-repeat top left;
  margin-bottom: 20px;
}

.infoCntBIn {
  background: #ffffff url("/images/univ/bg_faculty_info_bottom3.gif") no-repeat bottom left;
  padding-bottom: 4px;
  clear: both;
}

#DepBody2 .infoCntB .verticalBorder {
  border-right: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  padding-bottom: 6px;
}

#DepBody2 .infoCntB .infoCntBIn .whiteBase {
  width: 643px !important;
  width: 645px;
  background-color: #ffffff;
  border-right: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
}

#DepBody2 .infoCntB .infoCntBIn .whiteBase .leftCol,
#DepBody2 .infoCntB .infoCntBIn .whiteBase .centerCol {
  border-right: solid 1px #cccccc;
}

#DepBody2 .infoCntB .infoCntBIn .whiteBase .leftCol {
  width: 174px !important;
  width: 215px;
}

#DepBody2 .infoCntB .infoCntBIn .whiteBase .centerCol {
  width: 173px !important;
  width: 214px;
}

#DepBody2 .infoCntB .infoCntBIn .whiteBase .rightCol {
  width: 174px !important;
  width: 214px;
}

#DepBody2 .infoCntB .infoCntBIn .whiteBase .leftCol,
#DepBody2 .infoCntB .infoCntBIn .whiteBase .centerCol,
#DepBody2 .infoCntB .infoCntBIn .whiteBase .rightCol {
  padding: 6px 20px 5px;
  height: 13px;
  border-top: dashed 1px #cccccc;
  float: left;
}

#DepBody2 .infoCntB .infoCntBIn .whiteBase .firstRow {
  border-top: none;
}

#DepBody2 .infoCntB .infoCntBIn .whiteBase .countryName {
  float: left;
}

#DepBody2 .infoCntB .infoCntBIn .whiteBase .peopleCount {
  float: right;
}

.infoCntB .defaultTitle {
  width: 645px;
}

.infoCntB .defaultTitle img {
  float: left;
  margin-left: 8px;
  margin-top: 3px;
}

.infoCntB .defaultTitle h4 {
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 0;
  color: #2e6fb8;
  float: left;
}

.infoCntB h5 {
  font-size: 100%;
  padding-top: 8px;
  padding-right: 9px;
  padding-left: 9px;
  color: #2e6fb8;
}

.infoCntB p {
  background: url("/images/univ/icon_infob.gif") no-repeat 1.2em 0.5em;
  font-size: 95%;
  padding-right: 15px;
  padding-left: 28px;
}

/* 学科一覧 */
.infoCntC {
  width: 645px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.infoCntC .infoCntCFaculty {
  width: 645px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  padding-top: 6px;
  background: #f0f0f0 url("/images/univ/bg_faculty_info_top2.gif") no-repeat top left;
}

.infoCntC .defaultTitle {
  width: 643px;
}

.infoCntC .defaultTitle img {
  margin-left: 8px;
  margin-top: 3px;
  float: left;
}

.infoCntC .defaultTitle h4 {
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 0;
  color: #2e6fb8;
  float: left;
}

#DepBody2 .infoCntC .verticalBorder {
  border-right: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  padding-bottom: 6px;
}

.infoCntCIn {
  width: 643px !important;
  width: 645px;
  background-color: #f7f7f7;
  text-wrap: suppress;
  word-wrap: break-word;
  background: #ffffff url("/images/univ/bg_faculty_info_bottom4.gif") no-repeat bottom left;
  padding-bottom: 4px;
  clear: both;
}

.infoCntC .bgFIB2 {
  background: #ffffff url("/images/univ/bg_faculty_info_bottom2.gif") no-repeat bottom left;
}

#DepBody2 .infoCntC .infoCntCIn .whiteBase {
  width: 643px !important;
  width: 645px;
  background-color: #ffffff;
  border-right: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
}

.infoCntCIn .infoCntCRow {
  width: 643px;
  overflow: hidden;
  border-top: dashed 1px #cccccc;
  padding-bottom: 8px;
}

.infoCntCIn .firstRow {
  border-top-style: none;
}

.infoCntCIn .leftCol,
.infoCntCIn .rightCol {
  float: left;
  padding: 7px 20px;
  word-wrap: break-word;
}

.infoCntCIn .leftCol {
  width: 281px !important;
  width: 322px;
}

.infoCntCIn .rightCol {
  width: 281px !important;
  width: 321px;
}

.infoCntCRow .leftCol {
  padding-bottom: 32768px;
  margin-bottom: -32768px;
  border-right: solid 1px #cccccc;
}

.infoCntCIn h5 img {
  margin-right: 5px;
  vertical-align: -0.2em;
}

.infoCntC .departTitle {
  margin-top: 22px;
  padding: 5px 3px;
  background-color: #2e6fb8;
}

.infoCntC .departTitle img {
  float: left;
}

.infoCntC h5 {
  color: #ffffff;
  font-size: 97%;
  padding-left: 2px;
  font-weight: 600;
}

.infoCntC .courseTitle h5 {
  background-color: #ffffff;
  color: #555555;
  font-size: 102%;
  padding: 7px 20px 0;
  margin-top: 0px;
}

.infoCntC h5.xlText {
  font-size: 120%;
}

.infoPoint {
  width: 645px !important;
  width: 645px;
  background: #fafafa url("/images/univ/bg_faculty_info_depeartment_bottom.gif") no-repeat left bottom;
  padding-bottom: 5px;
}

.infoPointIn {
  padding: 10px 20px;
  border-top: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
}

.infoPointIn h6 {
  font-size: 97%;
  padding-bottom: 8px;
  color: #2e6fb8;
}

.infoPointIn p {
  line-height: 1.4;
  color: #3c3c3c;
}

/* 学部コンテンツ（学生生活サポート） ***********/
.sportCnt {
  width: 683px !important;
  width/**/: 683px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  border: solid 1px #c3c3c3;
  overflow: hidden;
}

#DepBody .sportCnt .leftBlock {
  width: 429px;
  border-right: solid 1px #cccccc;
  padding-bottom: 32768px;
  margin-bottom: -32768px;
}

.sportCnt .leftBlock {
  padding: 19px;
  border-right: solid 1px #c3c3c3;
}

.sportCnt .leftBlock .defaultTitle {
  width: 388px;
  margin: 0;
  padding: 0;
}

.sportCnt .leftBlock .defaultTitle img {
  float: left;
}

.sportCnt .leftBlock .depObj {
  background: #f5f5f5 url("/images/univ/bg_life_support_top.gif") no-repeat left top;
  padding-top: 5px;
}

.sportCnt .depObj .verticalBorder {
  border-right: solid 1px #cccccc;
  border-left: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  padding-bottom: 6px;
  background: #f5f5f5 url("/images/univ/bg_life_support_vt.gif") repeat-x left top;
}

.sportCnt .leftBlock .depObj h5 {
  color: #2e6fb8;
  padding: 3px 20px 2px;
}

.sportCnt .leftBlock .depObj .depObjIn {
  background: url("/images/univ/bg_life_support_bottom.gif") no-repeat left bottom;
  padding-bottom: 5px;
}

.sportCnt .leftBlock .depObj .depObjIn .grayBase {
  background-color: #fafafa;
  border-left: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
  border-top: solid 1px #ffffff;
  padding-bottom: 5px;
}

.sportCnt .rightBlock {
  width: 190px;
  padding: 15px 12px;
  background-color: #f0f0f0;
  padding-bottom: 32768px;
  margin-bottom: -32768px;
}

.sportCnt .rightBlock img {
  max-width: 100%;
  width: 188px;
}

.sportCnt .rightBlock p {
  font-size: 89%;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.2;
}

/* 学部コンテンツ（施設案内） *******************/
.facilitiesCnt {
  width: 683px !important;
  width/**/: 685px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 5px;
  text-align: left;
  border: solid 1px #c8c8c8;
}

.facilitiesCnt .defaultTitle {
  padding-left: 12px;
}

.facilitiesCnt .defaultTitle img {
  margin-top: 5px;
  float: left;
}

.facilitiesCnt .defaultTitle h4 {
  margin-left: 30px;
  padding-top: 14px;
  color: #666666;
}

.facilitiesCnt h4 {
  color: #a91529;
  font-size: 110%;
  padding-bottom: 7px;
}

.faciliObj {
  width: 645px !important;
  background: url("/images/univ/bg_facility_guide_top.gif") no-repeat left top;
  margin: 5px 18px 20px;
  padding-top: 5px;
}

.faciliObj .verticalBorder {
  padding: 5px 15px 8px;
  border-left: solid 1px #c8c8c8;
  border-right: solid 1px #c8c8c8;
  border-bottom: solid 1px #c8c8c8;
  background: #ecebeb url("/images/univ/bg_facility_guide_top_base.gif") repeat-x left top;
}

.faciliObjIn {
  padding-bottom: 5px;
  background: url("/images/univ/bg_facility_guide_bottom.gif") no-repeat left bottom;
}

.faciliObjIn .grayBase {
  padding: 10px 20px;
  background-color: #fafafa;
  border-top: solid 1px #ffffff;
  border-left: solid 1px #c8c8c8;
  border-right: solid 1px #c8c8c8;
}

.faciliObj h5 {
  font-size: 108%;
  color: #2e6fb8;
}

.faciliObjCnt {
  margin: 0 auto;
}

.faciliObjCnt {
  overflow: hidden;
  border-top: solid 1px #c8c8c8;
}

.faciliObjCount1,
.faciliObjCount2 {
  margin: 0 auto;
}

.faciliObjCount1 {
  width: 228px;
  border-left: solid 1px #c8c8c8;
}

.faciliObjCount2 {
  width: 456px !important;
  width/**/: 457px;
  border-left: solid 1px #c8c8c8;
}

.faciliObjL, .faciliObjC, .faciliObjR {
  float: left;
  width: 227px !important;
  background-color: #f5f5f5;
  padding-bottom: 32768px;
  margin-bottom: -32768px;
}

.faciliObjL, .faciliObjC {
  width/**/: 228px;
  border-right: solid 1px #c8c8c8;
}

.faciliObjCnt .imgBlock {
  border-bottom: solid 1px #c8c8c8;
}

.faciliObjCnt .textBlock {
  border-top: solid 1px #ffffff;
  padding: 10px 15px;
}

.faciliObjCnt .textBlock p {
  font-size: 95%;
  color: #3c3c3c;
}

/* 学部コンテンツ（アクセス） *******************/
.accessCnt {
  width: 663px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  border: solid 1px #c8c8c8;
  padding-left: 10px !important;
  padding-right: 9px !important;
}

.accessCnt .defaultTitle {
  width: 660px;
}

.accessCnt .defaultTitle img {
  float: left;
}

.accessCnt h5 {
  width: 623px !important;
  width/**/: 663px;
  color: #ffffff;
  font-size: 110%;
  background-color: #2e6fb8;
  padding: 6px 20px;
  margin-bottom: 1px;
}

.accessCnt mapCnt {
  border: solid 1px #c8c8c8;
}

.accessData {
  width: 664px !important;
  width/**/: 656px;
  margin-top: 5px;
}

.accessCnt .accessData .accessDataTop {
  background: #f5f5f5 url("/images/univ/bg_access_arrow_top.gif") no-repeat top left;
  padding-top: 8px;
}

.accessCnt .accessData .accessDataTopIn,
.accessCnt .accessData .accessDataOther {
  border: solid 1px #cbcbcb;
  background-color: #f5f5f5;
  padding-top: 2px;
  padding-left: 2px;
}

.accessCnt .accessData .accessDataTopIn {
  border-top-style: none;
}

.accessCnt .accessData .accessDataOther {
  border-top: solid 1px #ffffff;
}

.accessCnt h5 {
  font-size: 102%;
  padding-bottom: 5px;
}

.accessData dl {
  width: 661px !important;
  width: 654px;
}

.accessData dt {
  font-size: 90%;
}

.accessData dd {
  font-size: 97%;
}

.accessData dt {
  width: 52px;
  font-weight: bold;
  clear: both;
  float: left;
  padding-left: 6px;
}

.accessData dt.bText {
  color: #2e6fb8;
  /*margin-left: 8px;*/
  margin-top: 4px;
  padding-left: 0;
  text-align: center;
}

.accessData dd {
  width: 566px !important;
  width/**/: 588px;
  padding-top: 5px;
  padding-bottom: 8px;
  margin-left: 60px;
}

.schoolTextObj {
  margin: 0 0 10px;
  padding: 10px 12px;
  overflow: hidden;
  border: solid #d7d7d7 1px;
  background-color: #fafafa;
  font-size: 12px;
  transition: max-height 0.5s ease-out;
  max-height: 600px;
}
.schoolTextObj.closedAccordion {
  max-height: 60px;
  position: relative;
}
.schoolTextObj.closedAccordion .txt-hide {
  display: block;
  height: 100%;
  z-index: 1;
}
.schoolTextObj.closedAccordion p {
  height: 1.6em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.schoolTextObj.closedAccordion .introAccordionBtn {
  display: block;
  width: 100%;
  height: 18px;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.schoolTextObj .txt-hide {
  display: none;
}
.schoolTextObj .introAccordionBtn {
  display: none;
}

/* 専門学校 基本情報 *******************/
.techInfo {
  border: solid 1px #c3c3c3;
  padding-bottom: 20px;
}

.techInfo .infoCnt .defaultTitle h4 {
  padding-left: 14px;
  text-align: left;
  font-size: 120%;
}

#DepBody .techInfo .infoCnt .unvExamTable {
  width: 658px;
}

.techFaculty {
  border: solid 1px #c3c3c3;
}

.techFaculty .infoCnt .defaultTitle h4 {
  padding-left: 14px;
  text-align: left;
  font-size: 120%;
}

.techFaculty .infoCnt .infoCntC {
  width: 658px;
  margin-left: 12px;
}

.techFaculty .infoCntC h5 {
  background-color: #2e6fb8;
  color: #ffffff;
  padding: 4px 8px;
}

.techSport .sportCnt .defaultTitle h4 {
  padding-left: 14px;
  text-align: left;
  font-size: 120%;
}

/** |03.University Elements Settings| ****************************************************** END **/
/** |04.Movie Elements Settings| ********************************************************* START **/
#MovieCnt {
  padding-bottom: 25px;
}

#MovieCnt .leftBlock {
  padding-top: 25px;
}

#MovieCnt .leftBlock h2 {
  margin-bottom: 10px;
}

#MovieBlock {
  width: 725px;
  height: 530px;
  background: url("/images/movie/bg_movie_block.gif") no-repeat left top;
}

#MainFlash {
  padding-top: 8px;
  padding-bottom: 12px;
  padding-left: 8px;
}

#MovieBlock table {
  width: 725px;
}

#MovieBlock th {
  font-weight: bold;
  padding-top: 10px;
  padding-right: 15px;
  padding-left: 15px;
}

#MovieBlock th#MUnivName {
  width: 370px !important;
  width: 400px;
  padding-right: 15px;
  padding-left: 15px;
}

#MovieBlock td {
  font-size: 97%;
  padding-top: 5px;
  padding-right: 15px;
  padding-left: 15px;
}

#MovieQBox .mQuestionObj {
  padding-top: 25px;
}

#MovieQBox dl {
  width: 725px;
  border-top: solid 1px #d3d3d3;
  margin-bottom: 12px;
}

#MovieQBox dt {
  width: 118px;
  display: block;
  background: url("/images/movie/bg_q.gif") repeat-x left top;
  float: left;
  padding-top: 7px;
  padding-left: 7px;
  padding-bottom: 7px;
  font-weight: bold;
  box-sizing: border-box;
  -web-kit-box-sizing: border-box;
}

* + html #MovieQBox dt {
  width: 111px; /* for IE7 */
}

#MovieQBox dd {
  width: 607px;
  background: #e9eaea url("/images/movie/bg_q_arrow.gif") no-repeat left top;
  float: right;
  padding-top: 7px;
  padding-left: 24px;
  padding-bottom: 7px;
  font-weight: bold;
  box-sizing: border-box;
  -web-kit-box-sizing: border-box;
}

* + html #MovieQBox dd {
  width: 583px; /* for IE7 */
}

#MovieQBox .mThum {
  width: 725px;
}
#MovieQBox .mThum .video {
  width: 231px;
  margin-right: 16px;
  margin-bottom: 12px;
  float: left;
}
#MovieQBox .mThum .video .movieThumbCnt {
  display: block;
  position: relative;
  cursor: pointer;
}
#MovieQBox .mThum .video .movieThumbSchoolInfo,
#MovieQBox .mThum .video .movieThumbPersonInfo {
  margin-top: 5px;
  padding-right: 5px;
}
#MovieQBox .mThum .nMargin {
  margin-right: 0px;
}
#MovieQBox .mThum .playIcon {
  position: absolute;
  top: 33px;
  left: 84px;
}

#MovieQBox #oMore {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#MovieQBox .mMore {
  width: 179px;
  margin-right: auto;
  margin-left: auto;
}

#MovieQBox .mMore .more {
  display: block;
  width: 159px !important;
  width: 226px;
  height: 17px !important;
  height: 22px;
  font-weight: bold;
  font-size: 95%;
  color: #8a8a8a;
  background: #e9eaea url("/images/movie/bg_more_movie.gif") no-repeat left top;
  padding-top: 5px;
  padding-left: 20px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

/** |04.Movie Elements Settings| *********************************************************** END **/
/** |05.News Elements Settings| ********************************************************** START **/
#NewsCnt {
  padding-bottom: 30px;
}

#NewsCnt .leftBlock {
  padding-top: 25px;
  word-wrap: break-word;
}

#NewsCnt .leftBlock h2 {
  width: 725px;
  border-bottom: solid 1px #e1e1e1;
  font-size: 123%;
  padding-bottom: 10px;
}

#NewsList dl {
  width: 715px;
  border-bottom: dotted 1px #cccccc;
  margin-right: auto;
  margin-left: auto;
  padding-top: 14px;
  padding-bottom: 15px;
}

#NewsList dt {
  displya: block;
  width: 124px;
  float: left;
  font-weight: bold;
  font-size: 102%;
}

#NewsList dd {
  width: 591px;
  float: right;
  font-size: 102%;
}

/* 日本留学案内 ***************************************/
#LifeCnt .lifeH2 {
  height: 83px;
  width: 918px;
  background: url("/images/etc/bg_h2.jpg") no-repeat scroll left top transparent;
}
#LifeCnt .lifeH3 {
  width: 677px;
  margin-top: 24px;
  background: url("/images/etc/bg_h3.gif") no-repeat scroll left top #C30F0F;
}
#LifeCnt .lifeH3 h3 {
  padding: 10px;
  color: #FFFFFF;
}
#LifeCnt .lifeListH3 {
  width: 99%;
  margin-top: 24px;
  background: #c30f0f;
}
#LifeCnt .lifeListH3 h3 a {
  display: inline-block;
  padding: 10px;
  color: #FFFFFF;
}
#LifeCnt .lifeH4 {
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 2px;
}
#LifeCnt .lifeH4 h4 {
  padding: 5px 10px;
  border-left: solid 5px #e71010;
  color: #e71010;
  font-size: 108%;
}
#LifeCnt .lifeH5 h5 {
  color: #F56B64;
  font-size: 108%;
}
#LifeCnt .lifeH6 h6 {
  padding: 5px 10px 5px 0;
  color: #555555;
  font-size: 108%;
}
#LifeCnt .noLinkLife {
  padding-left: 15px;
}
#LifeCnt .noLinkLife h5 {
  color: #555;
}
#LifeCnt .listStyleDisc li,
#LifeCnt .listStyleDisc dt {
  list-style: disc;
}
#LifeCnt .listStyleDisc li,
#LifeCnt .listStyleDisc dd {
  margin-left: 20px;
}
#LifeCnt .listStyleDisc dt {
  display: list-item;
  margin-left: 16px;
}
#LifeCnt .listStyleDisc li,
#LifeCnt .listStyleDisc dt,
#LifeCnt .listStyleDisc dd {
  line-height: 1.5;
}
#LifeCnt .jobListType li {
  margin-left: 20px;
  line-height: 1.5;
}

#LifeCnt .lifeObj {
  width: 713px !important;
  width: 715px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  border: solid 1px #cfcfcf;
}

#LifeCnt .lifeObj h3 {
  background-color: #e9eaea;
  border-bottom: solid 1px #cfcfcf;
  padding: 10px 15px;
}

#LifeCnt .lifeObjIn {
  width: 687px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 0px;
}

#LifeCnt .lifeObjIn .leftBlock {
  width: 194px;
  padding-top: 0px;
  padding-bottom: 0px;
}

#LifeCnt .lifeObjIn .rightBlock {
  width: 470px;
}

#NewsDetail {
  width: 715px;
  margin-right: auto;
  margin-left: auto;
}

#NewsTitle {
  width: 709px !important;
  width: 715px;
  background-color: #f5f5f5;
  border-left: solid 6px #da1834;
  margin-top: 25px;
}

#NewsTitle p {
  font-weight: bold;
  padding-top: 12px;
  padding-right: 15px;
  padding-bottom: 12px;
  padding-left: 10px;
}

#NewsBody {
  padding-top: 20px;
  padding-bottom: 15px;
}

#NewsBody p {
  padding-right: 7px;
  padding-bottom: 15px;
  padding-left: 7px;
}

/** |05.News Elements Settings| ************************************************************ END **/
/** |06.Etc Elements Settings| *********************************************************** START **/
/* 日本語学校案内（大学付属日本語別科） ***************************************/
#JpSpCnt {
  padding-bottom: 20px;
}

.jpSpTit {
  margin-top: 28px;
}

.jpSpTit p {
  padding-top: 8px;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 0px;
}

/* 大学附属日本語別科案内 */
#JpSpCnt .jpSpCoObj, #JpSpCnt .jLSObj {
  width: 725px;
  background: url("/images/feature/univ_english/bg_engunivobj.gif") repeat-y left top;
  margin-top: 20px;
}

#JpSpCnt .jpSpCoObjIn {
  background: url("/images/feature/jp_spcourse/bg_jpspobj_head.gif") no-repeat left top;
  border-bottom: solid 1px #c8c8c8;
  position: relative;
  text-align: center;
}

#JpSpCnt .jpSpCoObjIn .officialBtn, #JpSpCnt .jLSObjIn .officialBtn {
  position: absolute;
  top: 0px;
  right: 0px;
}

#JpSpCnt .jpSpCoObjIn .jpSpCoDetail, #JpSpCnt .jLSObjIn .jLSDetail {
  width: 681px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 25px;
  padding-bottom: 15px;
  text-align: left;
}

#JpSpCnt .jpSpCoObjIn .jpSpCoDetail .imgBox, #JpSpCnt .jLSObjIn .jLSDetail .imgBox {
  width: 172px;
  float: left;
}

#JpSpCnt .jpSpCoObjIn .jpSpCoDetail .textBox, #JpSpCnt .jLSObjIn .jLSDetail .textBox {
  width: 492px;
  float: right;
  word-break: break-all;
}

#JpSpCnt .jpSpCoObjIn .jpSpCoDetail .textBox h3, #JpSpCnt .jLSObjIn .jLSDetail .textBox h3, #JpSpCnt .jpSpCoObjIn .jpSpCoDetail .textBox h3 a {
  width: 492px;
  background: url("/images/feature/univ_english/bg_h3_line.gif") repeat-x left bottom;
  color: #da1e39;
  font-size: 116%;
  padding-top: 10px;
  padding-bottom: 9px;
  word-break: break-all;
}

#JpSpCnt .jpSpCoObjIn .jpSpCoDetail .textBox h3 img {
  margin-right: 5px;
  vertical-align: -0.2em;
}

/* 専門学校日本語科・日本語学校 */
#JpSpCnt .jLSObjIn {
  background: url("/images/feature/jp_spcourse/bg_jplspobj_head.gif") no-repeat left top;
  border-bottom: solid 1px #c8c8c8;
  position: relative;
  text-align: center;
}

/* 英語で学べる大学 ***********************************************************/
#EngUnivCnt {
  padding-bottom: 20px;
}

#EngUnivTit {
  margin-top: 28px;
}

#EngUnivCnt .engUnivObj {
  width: 725px;
  background: url("/images/feature/univ_english/bg_engunivobj.gif") repeat-y left top;
  margin-top: 20px;
}

#EngUnivCnt .engUnivObjIn {
  background: url("/images/feature/univ_english/bg_engunivobj_head.gif") no-repeat left top;
  position: relative;
  text-align: center;
}

#EngUnivCnt .engUnivObjIn .officialBtn {
  position: absolute;
  top: 0px;
  right: 0px;
}

#EngUnivCnt .engUnivObjIn .engUnivDetail {
  width: 681px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: left;
}

#EngUnivCnt .engUnivObjIn .engUnivDetail .imgBox {
  width: 172px;
  float: left;
}

#EngUnivCnt .engUnivObjIn .engUnivDetail .textBox {
  width: 492px;
  float: right;
  word-break: normal;
}

#EngUnivCnt .engUnivObjIn .engUnivDetail .textBox h3 {
  width: 492px;
  background: url("/images/feature/univ_english/bg_h3_line.gif") repeat-x left bottom;
  color: #da1e39;
  font-size: 116%;
  padding-top: 10px;
  padding-bottom: 9px;
  word-break: normal;
}

#EngUnivCnt .engUnivObjIn .inLink {
  width: 723px;
  background: #ebebeb url("/images/feature/univ_english/bg_more.gif") no-repeat left top;
  border-bottom: solid 1px #c8c8c8;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 5px;
}

#EngUnivCnt .engUnivObjIn .inLinkIn {
  width: 683px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  text-align: left;
}

#EngUnivCnt .engUnivObjIn .inLinkIn .moreBtn {
  position: absolute;
  top: 0px;
  right: -20px;
}

#EngUnivCnt .engUnivObjIn .inLinkIn h4 {
  color: #da1834;
  padding-top: 20px;
  padding-bottom: 15px;
}

/** 中国百度広告（上部） ******************************************************/
#ContactCnTop {
  width: 100%;
  text-align: center;
  padding-top: 15px;
  font-size: 95%;
}

#ContactCn {
  width: 100%;
  text-align: center;
  padding-bottom: 15px;
  font-size: 95%;
}

#ContactCnIn {
  width: 988px;
  margin-left: auto;
  margin-right: auto;
  height: 35px;
  background: url("/images/bg_contact.gif") no-repeat top center;
}

#ContactCnIn img {
  vertical-align: -0.7em;
  margin-top: 3px;
}

#ContactCnIn .colorText {
  color: #00a2ff;
}

/** 中国百度広告（下部） ******************************************************/
#TopLink {
  width: 986px;
  margin-right: auto;
  margin-left: auto;
}

#TopLinkIn {
  background-color: #ffffff;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

#ChaneseLink {
  width: 966px !important;
  width: 986px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 25px;
  padding: 10px;
  background-color: #ffffff;
  line-height: 1.6;
}

/* サイトマップ */
#SitemapCnt, #TermsCnt {
  padding-bottom: 28px;
}

#SitemapCnt .leftBlock, #TermsCnt .leftBlock {
  padding-top: 25px;
}

#SitemapCnt .leftBlock {
  width: 725px;
  border-bottom: solid 1px #e1e1e1;
  font-size: 123%;
  padding-bottom: 10px;
}

#TermsCnt .leftBlock h2 {
  /*width:725px;*/
  width: 930px;
  border-bottom: solid 1px #e1e1e1;
  font-size: 123%;
  padding-bottom: 10px;
}

#SitemapIn, #TermsIn {
  padding-left: 30px;
}

/** 中国運営会社紹介 **********************************************************/
#ChCompanyCnt {
  padding-bottom: 28px;
}

#ChCompanyCnt .leftBlock h2 {
  width: 725px;
  border-bottom: solid 1px #e1e1e1;
  font-size: 123%;
  padding-bottom: 10px;
}

#ChCompanyCnt .leftBlock p {
  padding-top: 15px;
}

/* 語学学校留学プログラム *****************************************************/
/* JAPAN STUDY SUPPORTとは ******************************************/
.stBroadInfoObj {
  width: 725px !important;
  width: 727px;
  border: solid 1px #d2c6b9;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  padding-top: 1px;
}

.stBroadInfoObjIn {
  width: 723px;
  margin-right: auto;
  margin-left: auto;
}

#StBroadInfoA {
  background: url("/images/studyabroad/info/bg_01obj.png") no-repeat 538px 0px;
  padding-top: 8px;
  padding-left: 38px;
}

#StBroadInfoA p {
  padding-top: 13px;
  padding-right: 212px;
  padding-bottom: 24px;
}

.stBroadInfoBox {
  width: 647px;
  margin-right: auto;
  margin-left: auto;
}

.sdBinfoCBox {
  width: 647px;
}

.sdBinfoCBox h4 {
  text-indent: -9999px;
  overflow: hidden;
  height: 10px;
}

.sdBinfoCBox p {
  padding-right: 18px;
  padding-left: 270px;
}

/* en背景 */
.sdBinfoCaen {
  height: 92px;
  background: url("/images/studyabroad/info/bg_0301_en.png") no-repeat left top;
}

.sdBinfoCben {
  height: 92px;
  background: url("/images/studyabroad/info/bg_0302_en.png") no-repeat left top;
}

.sdBinfoCcen {
  height: 87px;
  background: url("/images/studyabroad/info/bg_0303_en.png") no-repeat left top;
}

.sdBinfoCden {
  height: 57px;
  background: url("/images/studyabroad/info/bg_0304_en.png") no-repeat left top;
}

.sdBinfoCeen {
  height: 108px;
  background: url("/images/studyabroad/info/bg_0305_en.png") no-repeat left top;
}

.sdBinfoCfen {
  height: 107px;
  background: url("/images/studyabroad/info/bg_0306_en.png") no-repeat left top;
}

.sdBinfoCgen {
  height: 107px;
  background: url("/images/studyabroad/info/bg_0307_en.png") no-repeat left top;
}

.sdBinfoChen {
  height: 57px;
  background: url("/images/studyabroad/info/bg_0308_en.png") no-repeat left top;
}

.sdBinfoCazh-cn {
  height: 92px;
  background: url("/images/studyabroad/info/bg_0301_zh-cn.png") no-repeat left top;
}

.sdBinfoCbzh-cn {
  height: 92px;
  background: url("/images/studyabroad/info/bg_0302_zh-cn.png") no-repeat left top;
}

.sdBinfoCczh-cn {
  height: 92px;
  background: url("/images/studyabroad/info/bg_0303_zh-cn.png") no-repeat left top;
}

.sdBinfoCdzh-cn {
  height: 57px;
  background: url("/images/studyabroad/info/bg_0304_zh-cn.png") no-repeat left top;
}

.sdBinfoCezh-cn {
  height: 77px;
  background: url("/images/studyabroad/info/bg_0305_zh-cn.png") no-repeat left top;
}

.sdBinfoCfzh-cn {
  height: 77px;
  background: url("/images/studyabroad/info/bg_0306_zh-cn.png") no-repeat left top;
}

.sdBinfoCgzh-cn {
  height: 87px;
  background: url("/images/studyabroad/info/bg_0307_zh-cn.png") no-repeat left top;
}

.sdBinfoChzh-cn {
  height: 57px;
  background: url("/images/studyabroad/info/bg_0308_zh-cn.png") no-repeat left top;
}

.sdBinfoCazh-tw {
  height: 92px;
  background: url("/images/studyabroad/info/bg_0301_zh-tw.png") no-repeat left top;
}

.sdBinfoCbzh-tw {
  height: 92px;
  background: url("/images/studyabroad/info/bg_0302_zh-tw.png") no-repeat left top;
}

.sdBinfoCczh-tw {
  height: 57px;
  background: url("/images/studyabroad/info/bg_0303_zh-tw.png") no-repeat left top;
}

.sdBinfoCdzh-tw {
  height: 57px;
  background: url("/images/studyabroad/info/bg_0304_zh-tw.png") no-repeat left top;
}

.sdBinfoCezh-tw {
  height: 77px;
  background: url("/images/studyabroad/info/bg_0305_zh-tw.png") no-repeat left top;
}

.sdBinfoCfzh-tw {
  height: 77px;
  background: url("/images/studyabroad/info/bg_0306_zh-tw.png") no-repeat left top;
}

.sdBinfoCgzh-tw {
  height: 87px;
  background: url("/images/studyabroad/info/bg_0307_zh-tw.png") no-repeat left top;
}

.sdBinfoChzh-tw {
  height: 57px;
  background: url("/images/studyabroad/info/bg_0308_zh-tw.png") no-repeat left top;
}

/* 語学学校留学プログラム（学校リスト） *****************************/
.stBroadInfoObj .jScTit {
  width: 723px;
  height: 48px;
  background: url("/images/studyabroad/bg_h4.gif") no-repeat left top;
}

.stBroadInfoObj .jScTit h4 {
  color: #c4375f;
  padding-top: 16px;
  padding-right: 24px;
  padding-left: 32px;
}

.stBroadInfoObj .jScTit h4 span {
  font-weight: normal;
  color: #333333;
}

.jScDetail {
  width: 687px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
  padding-bottom: 10px;
}

.jScDetail .imgBox {
  float: left;
  width: 229px;
}

.jScDetail .textBox {
  float: right;
  width: 437px;
  word-break: break-all;
}

.jScDetail .textBox .dotLine {
  border-top: dotted 1px #ababab;
}

.jScDetailB {
  width: 687px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
  padding-bottom: 10px;
  border-top: dotted 1px #ababab;
}

.jScDetailB .leftBlock {
  width: 335px;
}

.jScDetailB .rightBlock {
  width: 335px;
}

.jscShowDetailobj {
  width: 333px !important;
  width: 335px;
  border: solid 1px #d9d9d9;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  padding-top: 1px;
}

.jscShowDetailobjIn {
  width: 331px;
  margin-right: auto;
  margin-left: auto;
}

.jscShowDetailobjIn p {
  padding-top: 7px;
  padding-right: 15px;
  padding-bottom: 12px;
  padding-left: 15px;
}

.jscShowDetailobjIn .shoDetailTit {
  background: #fdeef0 url("/images/studyabroad/bg_jscdetailb_h5.gif") repeat-x left top;
}

.jscShowDetailobjIn .shoDetailTit h5 {
  font-size: 100%;
  padding-top: 5px;
  padding-right: 9px;
  padding-bottom: 5px;
  padding-left: 9px;
}

.jscShowDetailobjIn .shoDetailTit h5 span {
  color: #c4375f;
}

.jscShowDetailobjIn table {
  width: 100%;
  border-top: solid 1px #ffffff;
  border-left: solid 1px #ffffff;
}

.jscShowDetailobjIn th {
  width: 50%;
  text-align: left;
  padding-left: 18px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 10px;
}

.jscShowDetailobjIn td {
  width: 50%;
  text-align: right;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 18px;
}

.jscShowDetailobjIn th, .jscShowDetailobjIn td {
  border-right: solid 1px #ffffff;
  border-bottom: solid 1px #ffffff;
}

.jscShowDetailobjIn .trA th, .jscShowDetailobjIn .trA td {
  background-color: #f5f5f5;
}

.jscShowDetailobjIn .trB th, .jscShowDetailobjIn .trB td {
  background-color: #ebebeb;
}

/* 索引検索 */
#IndexSearchCnt {
  padding-bottom: 30px;
}

#IndexSearchCnt .leftBlock {
  padding-top: 25px;
  word-wrap: break-word;
}

#IndexSearchCnt .leftBlock h2 {
  width: 725px;
  border-bottom: solid 1px #e1e1e1;
  font-size: 123%;
  padding-bottom: 10px;
}

#IndexSearchIn {
  padding-left: 30px;
}

#IndexSearchKanaTable {
  width: 520px;
  margin-left: 120px;
}

#IndexSearchKanaTable .IndexSearchLetterBox span, #IndexSearchKanaTable .IndexSearchLetterEBox, #IndexSearchKanaTable .IndexSearchLetterABox a {
  width: 52px;
  height: 40px;
  _width: 64px;
  _height: 62px;
  margin: 15px 15px 0;
  padding: 16px 5px 3px;
  font-size: 180%;
  text-align: center;
  vertical-align: middle;
  float: left;
}

#IndexSearchKanaTable .IndexSearchLetterBox span, #IndexSearchKanaTable .IndexSearchLetterABox a {
  border: solid 1px #dddddd;
}

#IndexSearchKanaTable .IndexSearchLetterEBox {
  border: solid 1px #ffffff;
}

#IndexSearchAlpTable .IndexSearchLetterBox span, #IndexSearchAlpTable .IndexSearchLetterABox a {
  width: 40px;
  height: 34px;
  _width: 52px;
  _height: 47px;
  margin: 15px 15px 0;
  padding: 8px 5px 3px;
  font-size: 180%;
  border: solid 1px #dddddd;
  text-align: center;
  vertical-align: middle;
  float: left;
}

#IndexSearchIn .IndexSearchLetterABox a:hover {
  background-color: #FEDBF1;
}

#IndexList dl {
  width: 715px;
  border-bottom: dotted 1px #cccccc;
  margin-right: auto;
  margin-left: auto;
  padding-top: 12px;
  padding-bottom: 11px;
}

#IndexList dt {
  display: block;
  width: 165px;
  float: left;
  font-size: 93%;
}

#IndexList dd {
  width: 550px;
  float: right;
  font-weight: bold;
  font-size: 120%;
}

#SideMenu #LifeMenu {
  width: 200px;
  margin-right: auto;
  margin-left: auto;
}

#LifeMenu .SchoolBanner {
  width: 180px;
  margin-right: auto;
  margin-left: auto;
}

/* サイトコンセプト ********************************/
#siteConceptPageHeader {
  padding-top: 15px;
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#siteConceptPageHeader h2 {
  font-size: 123%;
}

#conceptCnt .siteConceptTitle {
  padding-top: 15px;
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 2px;
}

#conceptCnt .siteConceptTitle h4 {
  font-size: 108%;
  color: #e71010;
  border-left: solid 5px #e71010;
  padding: 5px 10px;
}

#conceptCnt .contentsTitle {
  padding-top: 10px;
}

#conceptCnt .contentsTitle h5 {
  font-size: 108%;
  padding: 5px 10px;
}

#conceptCnt .conceptCol p {
  padding-top: 5px;
  padding-bottom: 10px;
  padding-left: 10px;
}

/* | 会員ページ | ************************/
#memberCnt {
  padding: 30px 30px 60px;
}

#memberCnt h2 {
  padding-bottom: 5px;
  font-size: 17px;
  color: #a03241;
  font-weight: bold;
  font-family: "Meiryo", "メイリオ", "sans-serif";
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: 20px;
  line-height: 1.6;
}

#memberCnt .leftBlock,
#memberCnt .centerBlock,
#memberCnt .rightBlock {
  width: 48%;
  border: 1px solid #c8c8c8;
}

#memberCnt .centerBlock {
  margin: 0 auto;
  display: block;
}

#memberCnt .headLine {
  height: 16px;
  padding: 11px 16px;
  background: #eee url(/images/member/bg_member_head.gif) repeat-x;
  border-bottom: 1px solid #c8c8c8;
  line-height: 20px;
}

#memberCnt .headLine h3 {
  padding-left: 12px;
}

#memberCnt .leftBlock .headLine h3 {
  border-left: 3px solid #a80000;
}

#memberCnt .rightBlock .headLine h3 {
  border-left: 3px solid #7ab868;
}

#memberCnt .loginBody {
  padding: 17px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #c8c8c8;
}

#memberCnt .forgetBody {
  height: 80px;
}

#memberCnt .loginBody table {
  width: 100%;
}

#memberCnt .loginBody tr {
  display: inline;
}

#memberCnt .leftBlock .loginBody table th,
#memberCnt .leftBlock .loginBody table td,
#memberCnt .centerBlock .loginBody table th,
#memberCnt .centerBlock .loginBody table td {
  display: block;
  margin-top: 10px;
  width: 100%;
  float: left;
  clear: both;
  *width: 50%;
}

#memberCnt .leftBlock .loginBody table th {
  font-weight: normal;
}

#memberCnt .leftBlock .loginBody table td {
  margin-bottom: 10px;
}

#memberCnt .loginBody table td input {
  width: 100%;
  border: 1px solid #c8c8c8;
  height: 22px;
  border-radius: 3px;
}

#memberCnt .rightBlock .loginBody p {
  height: 100%;
  line-height: 208px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f8f8f8;
  text-align: center;
}

#memberCnt .redDotList {
  display: list-item;
  float: right;
  margin-top: 10px;
  padding-left: -10px;
  color: #ba0606;
  list-style-type: square;
}

#memberCnt .redDot {
  display: list-item;
  margin-top: 10px;
  color: #ba0606;
  list-style-type: square;
}

.memberBtnCnt {
  padding: 20px;
  background: #ebebeb url(/images/member/bg_member_btn_cnt.gif);
}

#memberLoginBtn,
#memberRegisterBtn {
  margin: 0 auto;
  display: block;
  width: 335px;
  height: 42px;
  border-style: none;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.6);
  text-shadow: 0 0 1px rgba(200, 200, 200, 0.75);
  letter-spacing: 0.1em;
  line-height: 42px;
  text-decoration: none;
  text-align: center;
}

#memberLoginBtn:hover,
#memberRegisterBtn:hover {
  opacity: 0.8;
}

#memberLoginBtn {
  background: transparent url(/images/member/bg_btn_red.png) repeat-x;
}

#memberRegisterBtn {
  background: transparent url(/images/member/bg_btn_green.png) repeat-x;
}

#memberCnt .preRegisterMsg {
  margin: 20px 0;
}

#memberRegister table {
  border: 1px solid #c8c8c8;
}

#memberRegister table tr th,
#memberRegister table tr td {
  padding: 15px;
  border-top: 1px solid #c8c8c8;
}

#memberRegister table tr:first-child th,
#memberRegister table tr:first-child td {
  border-top-style: none;
}

#memberRegister table tr th {
  width: 25%;
  vertical-align: top;
}

#memberRegister table tr td {
  border-left: 1px solid #c8c8c8;
  line-height: 1.7;
}

#memberRegister table tr td input,
#memberRegister table tr td select {
  border: 1px solid #c8c8c8;
  border-radius: 3px;
}

#memberRegister table tr .academicsColumn div + div {
  margin-top: 20px;
}

#memberRegister table tr .academicsColumn div span {
  display: inline-block;
  margin-right: 20px;
}

#memberRegister table tr .academicsColumn input {
  width: auto;
  *border: none;
}

#memberRegister table tr .academicsColumn h4 {
  font-weight: bold;
  color: #ae1534;
}

#memberRegister table tr .academicsColumn .options {
  padding: 5px;
}

#memberRegister table tr:nth-child(odd) th {
  background-color: #ebebeb;
}

#memberRegisterStep {
  height: 63px;
  width: 765px;
  display: block;
  margin: 20px auto;
}

#memberRegisterStep p {
  float: left;
  display: block;
  height: 62px;
  padding-left: 70px;
  padding-top: 23px;
  height: 39px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  color: #969696;
}

#memberRegisterStep p.active {
  padding-left: 0;
  padding-top: 0;
  height: 62px;
}

#memberRegisterStep p a {
  display: block;
  height: 39px;
  padding-left: 70px;
  padding-top: 23px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  color: #fff;
  text-decoration: none;
}

#memberRegisterStep p.active span {
  display: block;
  height: 39px;
  padding-left: 70px;
  padding-top: 23px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  color: #fff;
  text-decoration: none;
}

#memberRegisterStep p.step1 {
  width: 243px;
  background: #b21b30 url(/images/member/img_step1_active_notext.gif);
}

#memberRegisterStep p.step1.finish {
  width: 173px;
}

#memberRegisterStep p.step1 input {
  display: block;
  height: 100%;
  width: 100%;
  padding-left: 70px;
  padding-top: 2px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  color: #fff;
  background: none;
  text-decoration: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

#memberRegisterStep p.step2 {
  width: 184px;
  background: #b21b30 url(/images/member/img_step2_normal_on_notext.gif);
}

#memberRegisterStep p.step2.active,
#memberRegisterStep p.step2.finish {
  width: 254px;
  background: #b21b30 url(/images/member/img_step2_active_notext.gif);
}

#memberRegisterStep p.step2.finish {
  width: 184px;
}

#memberRegisterStep p.step3 {
  width: 197px;
  background: #b21b30 url(/images/member/img_step3_normal_off_notext.gif);
}

#memberRegisterStep p.step2.active + p.step3 {
  background: #b21b30 url(/images/member/img_step3_normal_on_notext.gif);
}

#memberRegisterStep p.step3.finish {
  width: 197px;
  background: #b21b30 url(/images/member/img_step3_active_notext.gif);
}

#memberRegisterStep .finish {
  color: #fff;
}

#memberRegister {
  margin-top: 5px;
}

#memberRegister table {
  width: 100%;
}

#memberRegister .privacyPolicy {
  margin-top: 30px;
}

#memberRegister .privacyPolicy .privacyPolicyTxt {
  margin: 5px 0 8px;
  padding: 5px 12px;
  height: 150px;
  width: 100%;
  overflow-y: scroll;
  border: 1px solid #ccc;
}

#memberRegisterBtn2 {
  width: 100%;
  margin-top: 30px;
  height: 50px;
  font-size: 21px;
  border: 1px solid #ececec;
  background: #b41b29 url(/images/member/bg_register_btn.png) repeat-x;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

#memberRegisterBtn2:hover {
  opacity: 0.8;
}

#memberCnt .toTopText {
  margin-top: 12px;
}

#memberRegister .btnContainer {
  margin-top: 20px;
  text-align: center;
}

#memberRegister .btnContainer input {
  height: 42px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 21px;
  cursor: pointer;
}

#memberRegister .btnContainer .backBtn {
  /* width: 120px; */
  padding: 10px 30px;
  background: transparent url(/images/member/bg_btn_red.png) repeat-x;
}

#memberRegister .btnContainer .saveBtn {
  /* width: 180px; */
  padding: 10px 30px;
  margin-left: 30px;
  background: transparent url(/images/member/bg_btn_green.png) repeat-x;
}

#memberRegister .btnContainer .freeBtn {
  padding-left: 30px;
  padding-right: 30px;
  background: transparent url(/images/member/bg_btn_red.png) repeat-x;
}

#memberRegister .btnContainer input:hover {
  opacity: 0.8;
}

#memberRegister .th-gray {
  background-color: #EBEBEB;
}

/* 学校ページ お問合せ*/
#schoolContainer .contactBtnCnt {
  text-align: left;
  float: left;
  width: 91px;
}

#schoolContainer .contactBtnCnt a:hover {
  opacity: 0.8;
}

/* 会員ページ お気に入り一覧*/
#memberCnt .favSchoolList table {
  border-collapse: collapse;
  width: 100%;
  border: 2px solid #a3a3a3;
}

#memberCnt .favSchoolList table thead {
  background-color: #a3a3a3;
  width: 100%;
  color: #fff;
}

#memberCnt .favSchoolList table thead th {
  padding: 10px;
}

#memberCnt .favSchoolList table tbody td {
  padding: 8px 10px;
}

#memberCnt .favSchoolList table tbody td.deleteBtnCell {
  text-align: right;
}

#memberCnt .favSchoolList table tbody td.deleteBtnCell button {
  padding: 2px 8px;
  text-align: center;
  color: #555;
  text-shadow: 1px 1px 0 #fff;
  cursor: pointer;
}

#memberCnt .favSchoolList table tbody tr + tr {
  border-top: 1px solid #a3a3a3;
}

#memberCnt .favSchoolList table tbody tr:nth-child(odd) {
  background-color: #ededed;
}

/* 会員ページ お問合せ一覧*/
#memberCnt .inquiryList table {
  border-collapse: collapse;
  width: 100%;
  border: 2px solid #a3a3a3;
  font-size: 14px;
}

#memberCnt .inquiryList table thead {
  background-color: #a3a3a3;
  width: 100%;
  color: #fff;
}

#memberCnt .inquiryList table thead th {
  padding: 10px 5px;
}

#memberCnt .inquiryList table tbody td.deleteBtnCell {
  text-align: right;
}

#memberCnt .inquiryList table tbody td.deleteBtnCell button {
  padding: 2px 8px;
  text-align: center;
  color: #555;
  text-shadow: 1px 1px 0 #fff;
}

#memberCnt .inquiryList table tbody tr + tr {
  border-top: 1px solid #a3a3a3;
}

#memberCnt .inquiryList table tbody tr:nth-child(odd) {
  background-color: #ededed;
}

#memberCnt .inquiryList table tbody tr:hover {
  background-color: #e8f9fa;
}

#memberCnt .inquiryList table tbody tr td a {
  display: inline-block;
  padding: 10px 5px;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

#memberCnt .inquiryList table tbody tr:hover a {
  color: #3f63a5;
}

#memberCnt .inquiryList table tbody tr.unread a {
  font-weight: bold;
  color: #3f66af;
}

#memberCnt .inquiryList .replyArrow {
  margin-left: 8px;
}

#memberCnt .inquiryList table tbody tr td {
  min-width: 27px;
}

#memberCnt .inquiryList table tbody tr td.timeCell {
  width: 130px;
}

#memberCnt .inquiryList table tbody tr td.timeCell a {
  padding-right: 10px;
  text-align: right;
}

#memberCnt .inquiryList table thead tr th,
#memberCnt .inquiryList table tbody tr td {
  word-break: break-all;
}

/* 会員ページ お問合せ内容 */
#memberCnt .inquiryReply h3 {
  font-weight: normal;
}

#memberCnt .inquiryReply h3 span {
  font-weight: bold;
}

#memberCnt .inquiryReply table {
  width: 95%;
  margin: 10px auto;
  border: 2px solid #ccc;
}

#memberCnt .inquiryReply table tr td {
  border-top: 2px solid #ccc;
}

#memberCnt .inquiryReply table tr th,
#memberCnt .inquiryReply table tr td {
  padding: 8px;
  word-break: break-all;
}

#memberCnt .inquiryReply table th {
  background-color: #ededed;
}

#memberCnt .inquiryReply table .fromTr th {
  display: table-cell;
  width: auto;
}

#memberCnt .inquiryReply table .fromTr th + th {
  text-align: right;
  font-weight: normal;
}

#memberCnt .inquiryReply form {
  margin-top: 30px;
}

#memberCnt .inquiryReply form textarea {
  width: 95%;
  margin: 10px auto;
  padding: 8px;
  display: block;
  box-sizing: border-box;
  line-height: 1.4;
}

#memberCnt .inquiryReply form .formSubmitBlock {
  text-align: center;
}

#memberCnt .inquiryReply form .formSubmitBlock input {
  width: 260px;
  padding: 10px;
  font-size: 22px;
  border-style: none;
  color: #fff;
  border-radius: 3px;
  font-weight: bold;
  text-shadow: 1px 1px 0 #3d9248;
  cursor: pointer;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  background: #4db75a; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #4db75a 0%, #3d9248 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4db75a", endColorstr="#3d9248",GradientType=0 ); /* IE6-9 */
  border: 1px solid #3d9248;
}

#memberCnt .inquiryReply form .formSubmitBlock .backBtn {
  border: 1px solid #b2b2b2;
  text-shadow: 1px 1px 0 rgba(120, 120, 120, 0.75);
  background: #dcdcdc; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #dcdcdc 0%, #b2b2b2 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dcdcdc", endColorstr="#b2b2b2",GradientType=0 ); /* IE6-9 */
}

#memberCnt .inquiryReply form .formSubmitBlock input:hover {
  opacity: 0.9;
}

#memberCnt .inquiryReply form .formSubmitBlock input:active {
  box-shadow: 0 15px 20px 15px rgba(0, 0, 0, 0.2) inset;
}

/** like button */
.univResultObj dt .univTitle,
.univResultObjFree dt .univTitle,
.gradResultObj dt .univTitle,
.gradResultObjFree dt .univTitle {
  width: 440px;
}

.favBtn {
  position: relative;
  float: right;
  width: 82px;
}

.favBtn img {
  cursor: pointer;
}

.resultObj dt .favBtn img,
.resultObjFree dt .favBtn img {
  margin-left: 7px;
}

.favBtn .dropdown {
  position: absolute;
  right: 0;
  top: 27px;
  width: 165px;
  display: none;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 9999;
}

.favBtn .dropdown.open {
  display: block;
}

.favBtn .dropdown ul {
  overflow: hidden;
}

.favBtn .dropdown ul li label {
  padding: 8px;
  width: 100%;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
}

.favBtn .dropdown ul li + li {
  border-top: 1px dotted #ddd;
}

.favBtn .dropdown ul li input {
  margin-right: 5px;
}

.favBtn .dropdown ul li:hover {
  background-color: #ececec;
}

.favBtn .dropdown ul li.favRegisterBtn div {
  padding: 12px 20px;
  cursor: pointer;
}

#SchoolName .dlBtn {
  position: absolute;
  top: 0;
  right: 0;
}

#SchoolName .hasDlBtn {
  margin-top: 45px;
}

#JpSpCnt .jpSpCoObj .jpSpCoObjIn .textBox .titleWrapper h3 {
  width: 380px;
  background: transparent;
}

#JpSpCnt .jpSpCoObj .jpSpCoObjIn .textBox .titleWrapper {
  background: url("/images/feature/univ_english/bg_h3_line.gif") repeat-x left bottom;
}

#JpSpCnt .jpSpCoObj .jpSpCoObjIn .textBox .titleWrapper .hTitleCnt {
  float: left;
}

#JpSpCnt .jpSpCoObj .jpSpCoObjIn .textBox .titleWrapper .favBtn {
  margin-top: 5px;
}

#EngUnivCnt .engUnivObjIn .inLinkIn .titleWrapper {
  width: 100%;
}

#EngUnivCnt .engUnivObjIn .inLinkIn .titleWrapper .hTitleCnt {
  width: 560px;
  float: left;
}

#EngUnivCnt .engUnivObjIn .inLinkIn .titleWrapper .favBtn {
  margin-top: 32px;
}

/* member lp */
.lpWrap h3 {
  width: 870px;
  height: 135px;
  margin: 0 auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

#lpBigheadline_ja {
  background: url(/images/lp/big_headline_ja.png);
}

#lpBigheadline_zh-cn {
  background: url(/images/lp/big_headline_zh_cn.png);
}

#lpBigheadline_zh-tw {
  background: url(/images/lp/big_headline_zh_tw.png);
}

#lpBigheadline_ko {
  background: url(/images/lp/big_headline_ko.png);
}

#lpBigheadline_en {
  background: url(/images/lp/big_headline_en.png);
}

#lpBigheadline_vi {
  background: url(/images/lp/big_headline_vi.png);
}

#lpBigheadline_id {
  background: url(/images/lp/big_headline_id.png);
}

#lpBigheadline_th {
  background: url(/images/lp/big_headline_th.png);
}

.lpContent {
  margin: 0 auto;
  padding: 0 0 60px 0;
  width: 870px;
  background: url(/images/lp/lp_back_p.gif) repeat;
  /* CSS3 */
  border-bottom-left-radius: 10px; /* 左下 */
  border-bottom-right-radius: 10px; /* 右下 */
  /* Safari,Chrome */
  -webkit-border-bottom-left-radius: 10px; /* 左下 */
  -webkit-border-bottom-right-radius: 10px; /* 右下 */
  /* Firefox */
  -moz-border-radius-bottomleft: 10px; /* 左下 */
  -moz-border-radius-bottomright: 10px; /* 右下 */
}

.lpContent dl {
  margin: 0 auto;
  width: 780px;
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.2);
  /* CSS3 */
  border-bottom-left-radius: 10px; /* 左下 */
  border-bottom-right-radius: 10px; /* 右下 */
  /* Safari,Chrome */
  -webkit-border-bottom-left-radius: 10px; /* 左下 */
  -webkit-border-bottom-right-radius: 10px; /* 右下 */
  /* Firefox */
  -moz-border-radius-bottomleft: 10px; /* 左下 */
  -moz-border-radius-bottomright: 10px; /* 右下 */
}

.lpContent dl + dl {
  margin-top: 30px;
}

.lpContent dt {
  margin: 0 auto;
  width: 780px;
  height: 60px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.lpContent dd {
  margin: 0 auto;
  width: 740px;
  background: #fff;
  min-height: 70px;
  padding: 20px;
  font-size: 20px;
  line-height: 1.3;
  /* CSS3 */
  border-bottom-left-radius: 10px; /* 左下 */
  border-bottom-right-radius: 10px; /* 右下 */
  /* Safari,Chrome */
  -webkit-border-bottom-left-radius: 10px; /* 左下 */
  -webkit-border-bottom-right-radius: 10px; /* 右下 */
  /* Firefox */
  -moz-border-radius-bottomleft: 10px; /* 左下 */
  -moz-border-radius-bottomright: 10px; /* 右下 */
}

/* 日本語 */
#lpSubhead_ja_1 {
  background: url(/images/lp/subhead_ja_1.png);
}

#lpSubhead_ja_2 {
  background: url(/images/lp/subhead_ja_2.png);
}

/* 簡体語 */
#lpSubhead_zh-cn_1 {
  background: url(/images/lp/subhead_zh-cn_1.png);
}

#lpSubhead_zh-cn_2 {
  background: url(/images/lp/subhead_zh-cn_2.png);
}

/* 繁体語 */
#lpSubhead_zh-tw_1 {
  background: url(/images/lp/subhead_zh_tw_1.png);
}

#lpSubhead_zh-tw_2 {
  background: url(/images/lp/subhead_zh_tw_2.png);
}

/* 韓国語 */
#lpSubhead_ko_1 {
  background: url(/images/lp/subhead_ko_1.png);
}

#lpSubhead_ko_2 {
  background: url(/images/lp/subhead_ko_2.png);
}

/* 英語 */
#lpSubhead_en_1 {
  background: url(/images/lp/subhead_en_1.png);
}

#lpSubhead_en_2 {
  background: url(/images/lp/subhead_en_2.png);
}

/* ベトナム語 */
#lpSubhead_vi_1 {
  background: url(/images/lp/subhead_vi_1.png);
}

#lpSubhead_vi_2 {
  background: url(/images/lp/subhead_vi_2.png);
}

/* インドネシア語 */
#lpSubhead_id_1 {
  background: url(/images/lp/subhead_id_1.png);
}

#lpSubhead_id_2 {
  background: url(/images/lp/subhead_id_2.png);
}

/* タイ語 */
#lpSubhead_th_1 {
  background: url(/images/lp/subhead_th_1.png);
}

#lpSubhead_th_2 {
  background: url(/images/lp/subhead_th_2.png);
}

.lpContent p {
  text-align: center;
  margin: 20px 0 18px 0;
}

#subscribeGreen {
  margin: 0 auto;
  display: block;
  width: 770px;
  height: 64px;
  border-style: none;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid #3d9248;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.6);
  text-shadow: 1px 1px 0px #347c3d;
  letter-spacing: 0.1em;
  line-height: 64px;
  text-decoration: none;
  text-align: center;
  background: url("/images/lp/subscribe_green.png") repeat-x scroll 0 0 transparent;
}

#subscribeGreen:hover {
  opacity: 0.8;
}

.alreadyMember {
  font-size: 14px;
}

/* 学校お問合せ */
#memberInquiry form table tr td {
  padding: 5px 10px;
}

#memberInquiry form table tr th {
  padding-bottom: 5px;
}

#memberInquiry form table tr + tr th {
  padding-top: 10px;
}

#memberInquiry form .checkbox_list {
  padding: 3px 5px;
}

#memberInquiry form .checkbox_list li {
  float: left;
  white-space: nowrap;
  margin-right: 30px;
  line-height: 1.8;
}

#memberInquiry form .checkbox_list {
  display: block !important;
  display: inline-block; /* for IE */
}

#memberInquiry form .checkbox_list:after {
  content: ".";
  height: 0px;
  line-height: 0px;
  clear: both;
  display: block;
  visibility: hidden;
}

#memberInquiry form .checkbox_list label {
  cursor: pointer;
}

#memberInquiry form .checkbox_list li input {
  vertical-align: middle;
}

#memberInquiry form tr td textarea {
  width: 100%;
}

#memberInquiryConfirm table {
  margin-top: 10px;
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #ccc;
}

#memberInquiryConfirm table tr th {
  background-color: #ededed;
  border-bottom: 1px solid #ccc;
}

#memberInquiryConfirm table tr + tr th {
  border-top: 2px solid #ccc;
}

#memberInquiryConfirm table tr th,
#memberInquiryConfirm table tr td {
  padding: 10px;
  word-break: break-all;
}

#memberInquiry form tr td .error_list {
  margin-bottom: 10px;
}

#memberInquiry form tr td .error_list + ul,
#memberInquiry form tr td .error_list + textarea,
#memberCnt .inquiryReply .error_list + textarea {
  background-color: #ffdedf;
}

.memberInquiryBtnCnt {
  padding: 20px;
  text-align: center;
}

#memberInquiryBtn,
.memberInquiryBtnCnt .backBtn,
.memberInquiryBtnCnt .saveBtn {
  display: inline-block;
  width: 170px;
  height: 42px;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.6);
  letter-spacing: 0.1em;
  line-height: 42px;
  text-decoration: none;
  text-align: center;
}

#memberInquiryBtn,
.memberInquiryBtnCnt .saveBtn {
  text-shadow: 1px 1px 0 rgba(61, 145, 71, 0.75);
  border: 1px solid #3d9248;
  background: #4db85a; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #4db85a 0%, #3b8c44 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4db85a", endColorstr="#3b8c44",GradientType=0 ); /* IE6-9 */
}

.memberInquiryBtnCnt .backBtn {
  border: 1px solid #b2b2b2;
  text-shadow: 1px 1px 0 rgba(120, 120, 120, 0.75);
  background: #dcdcdc; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
  background: linear-gradient(to bottom, #dcdcdc 0%, #b2b2b2 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dcdcdc", endColorstr="#b2b2b2",GradientType=0 ); /* IE6-9 */
}

.memberInquiryBtnCnt .saveBtn {
  margin-left: 20px;
}

#memberInquiryBtn:hover,
.memberInquiryBtnCnt .backBtn:hover,
.memberInquiryBtnCnt .saveBtn:hover {
  opacity: 0.8;
}

/* 運営者情報ページ */
.contactManager table {
  border: 1px solid #ccc;
  width: 100%;
}

.contactManager table th {
  border-right: 1px solid #ccc;
  color: #1d5696;
  width: 15%;
}

.contactManager table td {
  width: 85%;
}

.contactManager table tr:nth-child(even) {
  background-color: #f0f0f0;
}

.contactManager table tr + tr th,
.contactManager table tr + tr td {
  border-top: 1px solid #ccc;
}

.contactManager table th,
.contactManager table td {
  padding: 9px 12px;
}

.inquiry-page__mail-img {
  width: 94px;
  vertical-align: -0.3em;
}

/** |06.Etc Elements Settings| ************************************************************* END **/
/* 印刷時の崩れを解消 */
.print-page-break {
  display: none;
}

@media print {
  @page {
    margin: 10.7mm 9.7mm;
  }
  .print-page-break {
    display: block;
    page-break-before: always;
    border: 0;
    height: 0;
    visibility: hidden;
  }
  /* 学部情報ページの在籍留学生情報一覧の崩れ修正 */
  #DepBody2 .infoCntB .infoCntBIn .whiteBase .leftCol,
  #DepBody2 .infoCntB .infoCntBIn .whiteBase .centerCol,
  #DepBody2 .infoCntB .infoCntBIn .whiteBase .rightCol {
    width: 170px !important;
    width: 210px;
    line-height: 1.2;
    padding-bottom: 6px;
    height: auto;
  }
  /* 学部情報ページのコース一覧の崩れ修正 */
  .infoCntCIn .leftCol {
    width: 280px !important;
    width: 320px;
  }
  .infoCntCIn .rightCol {
    width: 280px !important;
    width: 320px;
  }
  .infoCntCRow .leftCol {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #DepBody.facultyInfoCnt .leftBlock {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #DepBody .sportCnt .leftBlock {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #DepBody .sportCnt .rightBlock {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #DepBody .rightBlock img {
    max-width: 100%;
  }
  #DepBody.facultyInfoCnt .rightBlock {
    width: 175px;
    padding: 10px 8px;
  }
  .faciliObjL, .faciliObjC, .faciliObjR {
    padding-bottom: 0;
    margin-bottom: 0;
    width: 225px !important;
  }
  .faciliObjCnt {
    overflow: visible;
  }
  .faciliObjCnt img {
    max-width: 100%;
  }
  .mapCnt * {
    max-width: 100%;
  }
}
/* | 適学チェックページ | ************************/
/* matching.cssに記述 */
/* | 学問ページ | ************************/
#academicCnt {
  padding-bottom: 28px;
}

#academicCnt .leftBlock {
  padding-top: 28px;
  padding-bottom: 110px;
}

#academicCnt .boxAcademicsInner {
  margin-left: 10px;
}

/* | 学問扉ページ | ************************/
.academicEntrancePage .titleBorder {
  margin-top: 25px;
  margin-bottom: 15px;
}

.academicEntrancePage .titleBorder:first-child {
  margin-top: 0;
}

.academicIntroText {
  float: left;
  width: 455px;
}

.academicIntroText p {
  font-size: 123.1%;
}

.academicIntroBtn {
  float: right;
  width: 230px;
}

.boxSuppleInfo {
  margin-top: 15px;
}

.titleSuppleInfo {
  font-size: 107.7%;
}

.boxSuppleInfo p {
  font-size: 107.7%;
}

.academicEntrancePage .btnAdvance a {
  padding: 10px 40px;
  font-size: 138.5%;
}

/* | 学問一覧ページ | ************************/
.academicCategoryBox {
  position: relative;
  margin-right: -2px;
}

.academicInner {
  margin-left: 10px;
}

.academicCategory {
  float: left;
  margin-right: 2px;
  width: 233px;
  border: 2px solid #cbe5f6;
}

.titleAcademicCategory {
  padding: 10px;
  background-color: #cbe5f6;
  font-weight: bold;
  font-size: 123.1%;
}

.academicCategoryItem {
  padding: 5px 10px;
  border-top: 2px solid #cbe5f6;
}

.academicCategoryItem a {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  padding-left: 20px;
}

.academicCategoryItem a:before {
  content: "\f13a";
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 0.5em;
  color: #aaa;
  font-family: "fontAwesome";
}
.academicEntrancePage .academicCategoryItem a:before {
  content: "\f138";
}

.wrapAcademic {
  margin-top: 30px;
}

.wrapAcademic:first-child {
  margin-top: 0;
}

.wrapAcademic .titleBorder {
  margin-bottom: 15px;
  font-size: 123.1%;
}

.academicBox {
  margin-left: 10px;
  letter-spacing: -0.4em;
}

.academicBoxItem {
  display: inline-block;
  margin-bottom: 10px;
  padding-right: 3%;
  width: 30%;
  vertical-align: top;
  letter-spacing: normal;
}

.academicName {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  padding-left: 20px;
  font-weight: bold;
}

.academicName:before {
  content: "\f138";
  position: absolute;
  left: 1px;
  top: 0;
  margin-right: 0.5em;
  color: #aaa;
  font-family: "fontAwesome";
}

.btnPageTop {
  text-align: right;
}

.btnPageTop a {
  display: inline-block;
  margin-top: 20px;
  padding: 0.5em 1em;
  box-shadow: 1px 1px 4px rgba(102, 102, 102, 0.75);
  border-radius: 4px;
  background-image: linear-gradient(to bottom, #ffffff, #dcdcdc);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#dcdcdc",GradientType=0 );
  text-decoration: none;
  color: #333;
}

.btnPageTop a:after {
  content: "\f062";
  margin-left: 0.5em;
  font-family: "fontAwesome";
}

/* ----------------------------------------------
   .categoryHumanities
---------------------------------------------- */
.academicCategory.categoryHumanities {
  border-color: #cbe5f6;
}

.categoryHumanities .titleAcademicCategory {
  background-color: #cbe5f6;
}

.categoryHumanities .academicCategoryItem {
  border-color: #cbe5f6;
}

.categoryHumanities .titleBorder {
  border-color: #cbe5f6;
}

.categoryHumanities .titleGradBox {
  background-image: linear-gradient(to bottom, #cbe5f6, #afd7f1);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#cbe5f6", endColorstr="#afd7f1",GradientType=0 );
}

/* ----------------------------------------------
   .categoryScience
---------------------------------------------- */
.academicCategory.categoryScience {
  border-color: #ceebdf;
}

.categoryScience .titleAcademicCategory {
  background-color: #ceebdf;
}

.categoryScience .academicCategoryItem {
  border-color: #ceebdf;
}

.categoryScience .titleBorder {
  border-color: #ceebdf;
}

.categoryScience .titleGradBox {
  background-image: linear-gradient(to bottom, #ceebdf, #b4e0ce);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ceebdf", endColorstr="#b4e0ce",GradientType=0 );
}

/* ----------------------------------------------
   .categoryHas
---------------------------------------------- */
.academicCategory.categoryHas {
  border-color: #efd7f1;
}

.categoryHas .titleAcademicCategory {
  background-color: #efd7f1;
}

.categoryHas .academicCategoryItem {
  border-color: #efd7f1;
}

.categoryHas .titleBorder {
  border-color: #efd7f1;
}

.categoryHas .titleGradBox {
  background-image: linear-gradient(to bottom, #efd7f1, #e6c2e9);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#efd7f1", endColorstr="#e6c2e9",GradientType=0 );
}

/* | 学問詳細ページ | ************************/
.academicDetailCnt .titleBorder {
  margin-bottom: 20px;
}

.academicDetailCnt .textAcademics {
  line-height: 2;
}

/* 推奨環境についてのページ ***************************************/
#BrowserPage {
  padding-bottom: 30px;
}
#BrowserPage .leftBlock {
  padding-top: 25px;
}
#BrowserPage .leftBlock h2 {
  width: 930px;
  max-width: 100%;
  padding-bottom: 10px;
  border-bottom: solid 1px #e1e1e1;
  font-size: 123%;
}

#BrowserPageIn {
  padding-left: 30px;
}

.page-browser__device {
  border-bottom: 1px solid #ccc;
}
.page-browser__title-category {
  font-size: 1.17em;
}
.page-browser__title-browser {
  font-size: 1em;
}

#Smp #BrowserPageIn {
  padding-left: 0;
}

/* | 学問 扉ページ スマホ | ************************/
#Smp .academicEntrancePage .titleBorder {
  margin-top: 40px;
}

#Smp .academicEntrancePage .titleBorder:first-child {
  margin-top: 0;
}

#Smp .academicIntroText,
#Smp .academicIntroBtn {
  float: none;
  width: 100%;
}

#Smp .academicIntroBtn {
  margin-top: 10px;
}

/* | 学問一覧ページ スマホ | ************************/
#Smp .academicCategory {
  float: none;
  margin-right: 0;
  margin-bottom: 10px;
  width: 100%;
}

#Smp .academicCategory:last-child {
  margin-bottom: 0;
}

#Smp .academicInner {
  margin-left: 0;
}

#Smp .academicBox {
  letter-spacing: normal;
}

#Smp .academicBoxItem {
  display: block;
  padding-right: 0;
  width: 100%;
}

/* | 学問詳細ページ スマホ | ************************/
#Smp #academicCnt .leftBlock {
  padding-bottom: 50px;
}

#Smp #academicCnt .boxAcademicsInner {
  margin-left: 0;
}

#Smp #academicCnt .boxAcademicsInner .boxAcademicsInner {
  margin-left: 10px;
}

#Smp .academicDetailCnt .btnRecommend {
  margin-top: 20px;
}

/* settings, variables ... */
/* module */
/* =============================================================================
   トップページ
============================================================================= */
/* ----------------------------------------------
   トップページメインビジュアルのアニメーション
 ---------------------------------------------- */
@keyframes mvZoom {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.jpss2017r-top- {
  /* メインビジュアル
  ---------------------------------------------- */
  /* 学校を探すエリア
  ---------------------------------------------- */
  /* 学校を探すエリア
  ---------------------------------------------- */
  /* ニュース
  ---------------------------------------------- */
  /* 日本留学お役立ち情報
  ---------------------------------------------- */
  /* 日本留学お役立ち情報
  ---------------------------------------------- */
  /* ページ下部のカルーセルバナー
  ---------------------------------------------- */
  /* サイト説明部分
  ---------------------------------------------- */
  /* 新型コロナウイルスに関するお知らせ
  ---------------------------------------------- */
}
.jpss2017r-top-mainvisual {
  overflow: hidden;
  position: relative;
  margin-bottom: 70px;
  width: 100%;
  height: 600px;
  background-color: #1c2c3e;
}
.jpss2017r-top-mainvisual__bgslide {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition-delay: 0;
  transition-duration: 500ms;
  transition-property: opacity;
}
.jpss2017r-top-mainvisual__bgslide.slick-initialized {
  opacity: 1;
}
.jpss2017r-top-mainvisual__bgslide--item {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.jpss2017r-top-mainvisual__bgslide--itemimg {
  width: 100%;
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transform: scale(1.2);
}
.jpss2017r-top-mainvisual__bgslide--item.is-active .jpss2017r-top-mainvisual__bgslide--itemimg {
  animation-duration: 18s;
  animation-name: mvZoom;
  animation-timing-function: cubic-bezier(0.11, 0.23, 0.78, 0.75);
}
.jpss2017r-top-mainvisual__bgslide--item01 .jpss2017r-top-mainvisual__bgslide--itemimg {
  background-image: url("/images/top/img_mainvisual01.jpg");
}
.jpss2017r-top-mainvisual__bgslide--item02 .jpss2017r-top-mainvisual__bgslide--itemimg {
  background-image: url("/images/top/img_mainvisual02.jpg");
}
.jpss2017r-top-mainvisual__bgslide--item03 .jpss2017r-top-mainvisual__bgslide--itemimg {
  background-image: url("/images/top/img_mainvisual03.jpg");
}
.jpss2017r-top-mainvisual__bgslide--item04 .jpss2017r-top-mainvisual__bgslide--itemimg {
  background-image: url("/images/top/img_mainvisual04.jpg?20241211");
}
.jpss2017r-top-mainvisual__photolicense {
  position: absolute;
  top: 1em;
  right: 2em;
}
.jpss2017r-top-mainvisual__copylist {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.jpss2017r-top-mainvisual__copy01 {
  position: absolute;
  top: 199px;
  left: 50%;
  margin-left: -500px;
  opacity: 0;
  transform: translateY(30px);
  transition: 1000ms 2000ms all ease;
}
.jpss2017r-top-mainvisual__copy02 {
  position: absolute;
  top: 243px;
  left: 50%;
  margin-left: -500px;
  opacity: 0;
  transform: translateY(30px);
  transition: 1000ms 2800ms all ease;
}
.jpss2017r-top-mainvisual.is-ready .jpss2017r-top-mainvisual__copy01, .jpss2017r-top-mainvisual.is-ready .jpss2017r-top-mainvisual__copy02 {
  opacity: 1;
  transform: translateY(0);
}
.jpss2017r-top-mainvisual__inner {
  margin: 0 auto;
  padding: 44px 0;
  width: 1000px;
}
.jpss2017r-top-mainvisual__video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  background-color: rgba(28, 44, 62, 0.65);
}
.jpss2017r-top-mainvisual__video .CarouselIn {
  visibility: hidden;
  height: 100px;
}
.jpss2017r-top-mainvisual__video .CarouselIn.slick-initialized {
  visibility: visible;
  height: auto;
}
.jpss2017r-top-mainvisual__video .slick-list {
  overflow: visible;
}
.jpss2017r-top-mainvisual__video--title {
  position: absolute;
  top: -2.3em;
  right: 0;
  left: 0;
  overflow: hidden;
  margin: 0 auto;
  width: 1000px;
  min-height: 2em;
  font-size: 18px;
}
.jpss2017r-top-mainvisual__video--titleinner {
  display: inline-block;
  padding: 0.7em 7.5em 0.05em;
  height: 100%;
  background-color: rgba(28, 44, 62, 0.65);
  line-height: 1.6;
  font-weight: 200;
  color: #fff;
  box-sizing: border-box;
}
.jpss2017r-top-mainvisual__video--link:hover .jpss2017r-top-mainvisual__video--detail {
  height: 100%;
  min-height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.jpss2017r-top-mainvisual__video--link:hover .jpss2017r-top-mainvisual__video--studentname {
  margin-bottom: 0 !important;
}
.jpss2017r-top-mainvisual__video--detail {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  display: table;
  width: 100%;
  height: 3em;
  min-height: 3em;
  background-color: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  font-size: 14px;
  color: #1c2c3e;
  transition: all 300ms;
}
.jpss2017r-top-mainvisual__video--detailinner {
  display: table-cell;
  padding: 0.5em 1em;
  width: 100%;
  box-sizing: border-box;
  vertical-align: bottom;
}
.jpss2017r-top-mainvisual__video--schoolname {
  display: block;
  padding-bottom: 0.2em;
  font-weight: bold;
}
.jpss2017r-top-mainvisual__video--studentname {
  position: relative;
  display: block;
  box-sizing: border-box;
  transition: margin-bottom 300ms 50ms ease;
  will-change: margin-bottom;
}
.jpss2017r-top-mainvisual__video--studentnameinner {
  display: block;
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px solid #1c2c3e;
}
.jpss2017r-top-mainvisual__video--iconplay {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 52px;
  height: 53px;
  background: url("/images/movie/icon_movie_play.png") no-repeat 0 0;
}
.jpss2017r-top-mainvisual__video [class*=hint--][aria-label]:after {
  padding: 1em;
  width: 100%;
  white-space: normal;
  line-height: 1.5;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #1c2c3e;
  box-shadow: 0 0 3px 3px rgba(255, 255, 255, 0.64);
  font-size: 13px;
}
.jpss2017r-top-mainvisual__video [class*=hint--][aria-label]:before {
  border-top-color: #1c2c3e;
}
.jpss2017r-top-entrybanner {
  position: fixed;
  top: 140px;
  left: 0;
  z-index: 999;
}
.jpss2017r-top-searcharea-find-univ {
  display: block;
  margin-bottom: 20px;
  border: 8px solid #e2e7ed;
  padding: 17px 16px;
  text-decoration: none;
}
.jpss2017r-top-searcharea-find-univ__container {
  display: flex;
  justify-content: space-between;
}
.jpss2017r-top-searcharea-find-univ__left {
  width: 210px;
}
.jpss2017r-top-searcharea-find-univ__right {
  width: calc(100% - 235px);
}
.jpss2017r-top-searcharea-find-univ__title {
  color: #da3c1d;
  margin-bottom: 6px;
  line-height: 1.44;
}
.jpss2017r-top-searcharea-find-univ__fair-intro {
  margin-top: 12px;
  color: #da3c1d;
}
.jpss2017r-top-searcharea-find-univ__details-link-container {
  text-align: right;
}
.jpss2017r-top-searcharea-find-univ__details-link {
  position: relative;
  padding-right: 60px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
}
.jpss2017r-top-searcharea-find-univ__details-link::before, .jpss2017r-top-searcharea-find-univ__details-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
}
.jpss2017r-top-searcharea-find-univ__details-link::before {
  right: 0;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4371d6 0%, #ac9ad1 100%);
  border-radius: 50%;
  transform: translate(0, -50%);
}
.jpss2017r-top-searcharea-find-univ__details-link::after {
  right: 10px;
  background-image: url("/images/finduniv/icon-next.png");
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  background-size: cover;
  transform: translate(-50%, -50%);
}
.jpss2017r-top-searcharea-find-univ:hover {
  text-decoration: underline;
}
.jpss2017r-top-searcharea-find-univ:hover .jpss2017r-top-searcharea-find-univ__title {
  text-decoration: none;
}
.jpss2017r-top-searcharea-find-univ:hover .jpss2017r-top-searcharea-find-univ__details-link::before {
  background: #111;
}
.jpss2017r-top-searcharea {
  padding: 20px;
  background-color: #f4f4f4;
}
.jpss2017r-top-searcharea__first {
  float: left;
  width: 453px;
}
.jpss2017r-top-searcharea__second {
  float: right;
  width: 245px;
}
.jpss2017r-top-searcharea__title {
  margin: 1.5em 0 0.5em;
  font-size: 18px;
}
.jpss2017r-top-searcharea__title:first-child {
  margin-top: 0;
}
.jpss2017r-top-searcharea__area {
  position: relative;
  padding: 20px;
  background-color: #fff;
  width: 100%;
  height: 345px;
  box-sizing: border-box;
}
.jpss2017r-top-searcharea__area--list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r-top-searcharea__area--item {
  position: absolute;
  z-index: 100;
}
.jpss2017r-top-searcharea__area--link {
  position: relative;
  display: inline-block;
  padding: 0.2em 1.5em 0.2em 1em;
  border-width: 2px;
  border-style: solid;
  border-radius: 2px;
  background-color: #fff;
  font-size: 13px;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.jpss2017r-top-searcharea__area--link::after {
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  margin-top: -0.5em;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-size: 10px;
  font-family: "FontAwesome";
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 1px #fff;
}
.jpss2017r-top-searcharea__area--link.is-active {
  color: #fff !important;
}
.jpss2017r-top-searcharea__area--hokkaido-tohoku {
  top: 91px;
  left: 326px;
}
.jpss2017r-top-searcharea__area--hokkaido-tohoku .jpss2017r-top-searcharea__area--link {
  max-width: 89px;
  color: #21548a;
}
.jpss2017r-top-searcharea__area--hokkaido-tohoku .jpss2017r-top-searcharea__area--link.is-active {
  background-color: #21548a;
  border-color: #21548a;
}
.jpss2017r-top-searcharea__area--hokkaido-tohoku .jpss2017r-top-searcharea__area--link.is-active::after {
  -webkit-text-stroke: 1px #21548a;
}
.jpss2017r-top-searcharea__area--kanto-koshinetsu {
  top: 228px;
  left: 311px;
}
.jpss2017r-top-searcharea__area--kanto-koshinetsu .jpss2017r-top-searcharea__area--link {
  color: #b978b0;
}
.jpss2017r-top-searcharea__area--kanto-koshinetsu .jpss2017r-top-searcharea__area--link.is-active {
  background-color: #b978b0;
  border-color: #b978b0;
}
.jpss2017r-top-searcharea__area--kanto-koshinetsu .jpss2017r-top-searcharea__area--link.is-active::after {
  -webkit-text-stroke: 1px #b978b0;
}
.jpss2017r-top-searcharea__area--tokai-hokuriku {
  top: 141px;
  left: 126px;
}
.jpss2017r-top-searcharea__area--tokai-hokuriku .jpss2017r-top-searcharea__area--link {
  color: #3db26f;
}
.jpss2017r-top-searcharea__area--tokai-hokuriku .jpss2017r-top-searcharea__area--link.is-active {
  background-color: #3db26f;
  border-color: #3db26f;
}
.jpss2017r-top-searcharea__area--tokai-hokuriku .jpss2017r-top-searcharea__area--link.is-active::after {
  -webkit-text-stroke: 1px #3db26f;
}
.jpss2017r-top-searcharea__area--kinki {
  top: 288px;
  left: 217px;
}
.jpss2017r-top-searcharea__area--kinki .jpss2017r-top-searcharea__area--link {
  color: #89bb5e;
}
.jpss2017r-top-searcharea__area--kinki .jpss2017r-top-searcharea__area--link.is-active {
  background-color: #89bb5e;
  border-color: #89bb5e;
}
.jpss2017r-top-searcharea__area--kinki .jpss2017r-top-searcharea__area--link.is-active::after {
  -webkit-text-stroke: 1px #89bb5e;
}
.jpss2017r-top-searcharea__area--chugoku-shikoku {
  top: 290px;
  left: 79px;
}
.jpss2017r-top-searcharea__area--chugoku-shikoku .jpss2017r-top-searcharea__area--link {
  max-width: 90px;
  color: #f29839;
}
.jpss2017r-top-searcharea__area--chugoku-shikoku .jpss2017r-top-searcharea__area--link.is-active {
  background-color: #f29839;
  border-color: #f29839;
}
.jpss2017r-top-searcharea__area--chugoku-shikoku .jpss2017r-top-searcharea__area--link.is-active::after {
  -webkit-text-stroke: 1px #f29839;
}
.jpss2017r-top-searcharea__area--kyushu-okinawa {
  top: 182px;
  left: 20px;
}
.jpss2017r-top-searcharea__area--kyushu-okinawa .jpss2017r-top-searcharea__area--link {
  color: #e9544f;
}
.jpss2017r-top-searcharea__area--kyushu-okinawa .jpss2017r-top-searcharea__area--link.is-active {
  background-color: #e9544f;
  border-color: #e9544f;
}
.jpss2017r-top-searcharea__area--kyushu-okinawa .jpss2017r-top-searcharea__area--link.is-active::after {
  -webkit-text-stroke: 1px #e9544f;
}
.jpss2017r-top-searcharea__area--mapimage {
  position: absolute !important;
  top: 14px;
  left: 64px;
  background-repeat: no-repeat;
}
.jpss2017r-top-searcharea__schooltype--list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r-top-searcharea__schooltype--item {
  display: inline-block;
  margin-right: 4%;
  margin-bottom: 10px;
  width: 48%;
  font-size: 14px;
  text-align: center;
  vertical-align: top;
}
.jpss2017r-top-searcharea__schooltype--item:nth-child(2n) {
  margin-right: 0;
}
.jpss2017r-top-searcharea__schooltype--link {
  position: relative;
  display: block;
  padding: 0.8em 2em;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
}
.jpss2017r-top-searcharea__schooltype--link::after {
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  margin-top: -0.5em;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-size: 10px;
  font-family: "FontAwesome";
  -webkit-font-smoothing: antialiased;
}
.jpss2017r-top-searcharea__schooltype--univ {
  background-color: #84c5d5;
}
.jpss2017r-top-searcharea__schooltype--univ::after {
  -webkit-text-stroke: 1px #84c5d5;
}
.jpss2017r-top-searcharea__schooltype--grad {
  background-color: #5685b4;
}
.jpss2017r-top-searcharea__schooltype--grad::after {
  -webkit-text-stroke: 1px #5685b4;
}
.jpss2017r-top-searcharea__schooltype--tech {
  background-color: #cc9b1b;
}
.jpss2017r-top-searcharea__schooltype--tech::after {
  -webkit-text-stroke: 1px #cc9b1b;
}
.jpss2017r-top-searcharea__schooltype--jc {
  background-color: #be6699;
}
.jpss2017r-top-searcharea__schooltype--jc::after {
  -webkit-text-stroke: 1px #be6699;
}
.jpss2017r-top-searcharea__keyword {
  font-size: 14px;
}
.jpss2017r-top-searcharea__keyword input {
  padding: 0 0.5em;
  width: 260px;
  line-height: 2.5;
  border: 1px solid #d9d9d9;
  border-right: none;
  box-sizing: border-box;
}
.jpss2017r-top-searcharea__keyword--btn button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 1.5em;
  background: #da3c1d;
  border: 1px solid #da3c1d;
  line-height: 2.5;
  color: #fff;
  cursor: pointer;
}
.jpss2017r-top-searcharea__keyword--btn button::before {
  content: "\f002";
  margin-right: 0.5em;
  line-height: 1;
  font-family: "FontAwesome";
  -webkit-font-smoothing: antialiased;
}
.jpss2017r-top-searcharea__commit {
  margin-top: 2em;
}
.jpss2017r-top-searcharea__title + .jpss2017r-top-searcharea__commit {
  margin-top: 0;
}
.jpss2017r-top-searcharea__commit--title {
  margin: 0 0 0.5em;
  padding: 0.4em 1em;
  background: #1c2c3e;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}
.jpss2017r-top-searcharea__commit--info a {
  display: block;
  text-decoration: none;
  color: #15212f;
}
.jpss2017r-top-searcharea__commit--info a:hover {
  text-decoration: underline;
}
.jpss2017r-top-searcharea__commit--img {
  float: left;
  margin-right: 1em;
  width: 92px;
  line-height: 1;
}
.jpss2017r-top-searcharea__commit--text {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.7;
}
.jpss2017r-top-searcharea__commit--text p {
  margin: 0;
}
.jpss2017r-top-searcharea__commit--btn {
  margin: 0.5em 0 0;
}
.jpss2017r-top-searcharea__commit--btn a {
  position: relative;
  display: block;
  padding: 0.3em 2.3em 0.3em 2em;
  background-color: #fff;
  color: #15212f;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
}
.jpss2017r-top-searcharea__commit--btn a::after {
  content: "\f138";
  position: absolute;
  top: 50%;
  right: 8px;
  display: block;
  margin-top: -0.5em;
  width: 1.1em;
  height: 1.1em;
  line-height: 1.1;
  font-size: 13px;
  font-family: "FontAwesome";
  color: #da3c1d;
  -webkit-text-stroke: 1px #e02f4b;
  -webkit-font-smoothing: antialiased;
}
.jpss2017r-top-searcharea__academics--block {
  float: left;
  margin-right: 4%;
  width: 48%;
}
.jpss2017r-top-searcharea__academics--block:nth-child(2n) {
  margin-right: 0;
}
.jpss2017r-top-searcharea__academics--title {
  margin: 1em 0 0.5em;
  font-size: 13px;
  font-weight: bold;
}
.jpss2017r-top-searcharea__academics--list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r-top-searcharea__academics--item {
  overflow: hidden;
  display: inline-block;
  margin-right: -1px;
  padding-right: 0.8em;
  padding-left: 1em;
  border-right: 1px solid #15212f;
  border-left: 1px solid #15212f;
  font-size: 13px;
  line-height: 1.1;
}
.jpss2017r-top-searcharea__academics--item:last-child {
  padding-right: 1em;
}
.jpss2017r-top-searcharea__academics--link {
  display: inline-block;
  text-decoration: none;
  color: #15212f;
}
.jpss2017r-top-searcharea__academics--link:hover {
  opacity: 0.7;
}
.jpss2017r-top-searcharea__academics--bnr {
  float: left;
  margin: 0;
  padding-top: 1em;
}
.jpss2017r-top-searcharea__icon {
  display: inline-block;
  margin-right: 0.3em;
  vertical-align: -2px;
}
.jpss2017r-top-searcharea__icon--searcharea {
  width: 13px;
  height: 17px;
  background: url("/images/top/icon_search_area.gif") no-repeat 0 0;
}
.jpss2017r-top-searcharea__icon--searchschooltype {
  width: 20px;
  height: 14px;
  background: url("/images/top/icon_search_schooltype.gif") no-repeat 0 0;
}
.jpss2017r-top-searcharea__icon--searchkeyword {
  width: 17px;
  height: 17px;
  background: url("/images/top/icon_search_keyword.gif") no-repeat 0 0;
}
.jpss2017r-top-searcharea__icon--searchcommit {
  width: 11px;
  height: 17px;
  background: url("/images/top/icon_search_commit.gif") no-repeat 0 0;
}
.jpss2017r-top-searcharea__icon--searchacademic {
  width: 18px;
  height: 14px;
  background: url("/images/top/icon_search_academics.gif") no-repeat 0 0;
}
.jpss2017r-top-jur-banner {
  margin-top: 30px;
  font-size: 14px;
}
.jpss2017r-top-jur-banner__text-top {
  margin-bottom: 4px;
}
.jpss2017r-top-jur-banner__text-bottom {
  margin-top: 4px;
}
.jpss2017r-top-newsarea {
  overflow-y: scroll;
  height: 22em;
}
.jpss2017r-top-newsarea__pickuplist {
  *zoom: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 35px;
}
.jpss2017r-top-newsarea__pickuplist:after {
  content: "";
  display: block;
  clear: both;
}
.jpss2017r-top-newsarea__pickuplist--item {
  float: left;
  margin-right: 20px;
  width: 241px;
  text-align: left;
}
.jpss2017r-top-newsarea__pickuplist--item:last-child {
  margin-right: 0;
}
.jpss2017r-top-newsarea__pickuplist--link {
  display: block;
  color: #15212f;
  text-decoration: none;
}
.jpss2017r-top-newsarea__pickuplist--link:hover .jpss2017r-top-newsarea__pickuplist--body {
  text-decoration: underline;
}
.jpss2017r-top-newsarea__pickuplist--img {
  display: block;
  margin-bottom: 10px;
}
.jpss2017r-top-newsarea__pickuplist--date {
  margin-right: 1em;
  font-size: 12px;
  color: #a2a2a2;
}
.jpss2017r-top-newsarea__pickuplist--category {
  display: inline-block;
  margin-top: 2px;
  margin-right: 2em;
  padding: 0.1em 0;
  width: 8em;
  border: 1px solid currentColor;
  font-size: 10px;
  text-align: center;
}
.jpss2017r-top-newsarea__pickuplist--category.type-news {
  color: #da3c1d;
}
.jpss2017r-top-newsarea__pickuplist--category.type-help {
  color: #e4a243;
}
.jpss2017r-top-newsarea__pickuplist--category.type-event {
  color: #96baa3;
}
.jpss2017r-top-newsarea__pickuplist--category.type-job {
  color: #9ea5bc;
}
.jpss2017r-top-newsarea__pickuplist--category.type-education {
  color: #4e7f8a;
}
.jpss2017r-top-newsarea__pickuplist--body {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.jpss2017r-top-newsarea__pinned-news-area {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 14px;
}
.jpss2017r-top-newsarea__pinned-news-area-box {
  *zoom: 1;
  border: 1px solid #333;
  padding: 8px;
}
.jpss2017r-top-newsarea__pinned-news-area-box:after {
  content: "";
  display: block;
  clear: both;
}
.jpss2017r-top-newsarea__pinned-news-area-link {
  color: #15212f;
  text-decoration: none;
}
.jpss2017r-top-newsarea__pinned-news-area-link:hover .jpss2017r-top-newsarea__pinned-news-area-body {
  text-decoration: underline;
}
.jpss2017r-top-newsarea__pinned-news-area-body {
  overflow: hidden;
  display: block;
}
.jpss2017r-top-newsarea__pinned-news-area-icon {
  vertical-align: -0.2em;
}
.jpss2017r-top-newsarea__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r-top-newsarea__list--item {
  *zoom: 1;
  margin-bottom: 15px;
  text-align: left;
  font-size: 14px;
}
.jpss2017r-top-newsarea__list--item:after {
  content: "";
  display: block;
  clear: both;
}
.jpss2017r-top-newsarea__list--link {
  color: #15212f;
  text-decoration: none;
}
.jpss2017r-top-newsarea__list--link:hover .jpss2017r-top-newsarea__list--body {
  text-decoration: underline;
}
.jpss2017r-top-newsarea__list--date, .jpss2017r-top-newsarea__list--category, .jpss2017r-top-newsarea__list--body {
  float: left;
}
.jpss2017r-top-newsarea__list--date {
  width: 7em;
}
.jpss2017r-top-newsarea__list--category {
  margin-top: 2px;
  margin-right: 2em;
  padding: 0.1em 0;
  width: 8em;
  border: 1px solid currentColor;
  font-size: 10px;
  text-align: center;
}
.jpss2017r-top-newsarea__list--category.type-news {
  color: #da3c1d;
}
.jpss2017r-top-newsarea__list--category.type-help {
  color: #e4a243;
}
.jpss2017r-top-newsarea__list--category.type-event {
  color: #96baa3;
}
.jpss2017r-top-newsarea__list--category.type-job {
  color: #9ea5bc;
}
.jpss2017r-top-newsarea__list--category.type-education {
  color: #4e7f8a;
}
.jpss2017r-top-newsarea__list--body {
  overflow: hidden;
  display: block;
}
.jpss2017r-top-newsarea__btn {
  margin: 25px 0 0;
  font-size: 14px;
  text-align: center;
}
.jpss2017r-top-newsarea__btn a {
  display: block;
  padding: 0.5em;
  border-radius: 3px;
  background-color: #f4f4f4;
  color: #15212f;
  text-decoration: none;
}
.jpss2017r-top-newsarea__btn a::after {
  content: "\f138";
  margin-left: 0.5em;
  font-family: "FontAwesome";
  font-size: 1.2em;
  color: #da3c1d;
  -webkit-text-stroke: 1px #e02f4b;
  -webkit-font-smoothing: antialiased;
}
.jpss2017r-top-life__item {
  position: relative;
  margin-bottom: 35px;
}
.jpss2017r-top-life__content {
  float: left;
  padding-bottom: 3.7em;
  width: 380px;
}
.jpss2017r-top-life__image {
  float: right;
  width: 350px;
  line-height: 1;
}
.jpss2017r-top-life__title {
  margin: 0 0 0.5em;
  color: #da3c1d;
}
.jpss2017r-top-life__linklist {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ccc;
}
.jpss2017r-top-life__linklist--item {
  border-bottom: 1px solid #ccc;
}
.jpss2017r-top-life__linklist--link {
  position: relative;
  display: block;
  padding: 0.5em 0.5em 0.5em 1.8em;
  text-decoration: none;
}
.jpss2017r-top-life__linklist--link::before {
  content: "\f054";
  position: absolute;
  top: 50%;
  left: 10px;
  display: inline-block;
  margin-top: -0.5em;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 1px #fff;
  font-size: 0.8em;
  vertical-align: middle;
  color: #e02f4b;
}
.jpss2017r-top-life__linklist--link:hover {
  text-decoration: underline;
}
.jpss2017r-top-life__more {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 380px;
  font-size: 14px;
  text-align: center;
}
.jpss2017r-top-life__more a {
  position: relative;
  display: block;
  padding: 0.5em 2.5em;
  border-radius: 3px;
  background-color: #ffeeeb;
  text-decoration: none;
  font-weight: bold;
}
.jpss2017r-top-life__more a::after {
  content: "\f138";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  height: 1em;
  line-height: 1;
  font-family: "FontAwesome";
  font-size: 1.2em;
  color: #da3c1d;
  -webkit-text-stroke: 1px #e02f4b;
  -webkit-font-smoothing: antialiased;
}
.jpss2017r-top-scholarship {
  margin-bottom: 15px;
  padding: 10px;
  border: 2px solid #d9d9d9;
}
.jpss2017r-top-scholarship__table {
  width: 100%;
}
.jpss2017r-top-scholarship__table th,
.jpss2017r-top-scholarship__table td {
  padding: 1em;
  font-size: 14px;
  text-align: left;
}
.jpss2017r-top-scholarship__table th {
  background-color: #f4f4f4;
}
.jpss2017r-top-scholarship__table .jpss2017r-top-scholarship__submitarea {
  padding: 0;
  vertical-align: bottom;
}
.jpss2017r-top-scholarship__submitbtn {
  padding: 1em 2em;
  border: 0;
  background-color: #da3c1d;
  color: #fff;
  cursor: pointer;
}
.jpss2017r-top-scholarship__submitbtn::before {
  content: "\f002";
  margin-right: 0.5em;
  line-height: 1;
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
}
.jpss2017r-top-scholarship input[type=text] {
  width: 100%;
}
.jpss2017r-top-scholarship select, .jpss2017r-top-scholarship textarea {
  width: 100%;
}
.jpss2017r-top-lowerbanner {
  position: relative;
  margin-top: 35px;
  padding: 35px 0 20px;
  background-color: #eee;
}
.jpss2017r-top-lowerbanner__inner {
  *zoom: 1;
  margin: 0 auto;
  padding: 0 20px;
  width: 1000px;
}
.jpss2017r-top-lowerbanner__inner:after {
  content: "";
  display: block;
  clear: both;
}
.jpss2017r-top-lowerbanner__item {
  overflow: hidden;
  float: left;
  margin: 0 10px;
  width: 300px;
}
.jpss2017r-top-lowerbanner__item img {
  width: 100%;
}
.jpss2017r-top-lowerbanner__btn {
  position: absolute;
  top: 43%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
}
.jpss2017r-top-lowerbanner__btn:hover {
  opacity: 0.7;
}
.jpss2017r-top-lowerbanner__btn--prev {
  right: 50%;
  margin-right: 485px;
}
.jpss2017r-top-lowerbanner__btn--next {
  left: 50%;
  margin-left: 485px;
}
.jpss2017r-top-lowerbanner__btn--link {
  cursor: pointer;
}
.jpss2017r-top-lowerbanner .slick-dotted.slick-slider {
  margin-bottom: 45px;
}
.jpss2017r-top-lowerbanner .slick-dots {
  bottom: -40px;
}
.jpss2017r-top-lowerbanner .slick-dots li {
  margin: 0;
}
.jpss2017r-top-lowerbanner .slick-dots li button:before {
  color: #fff;
  opacity: 1;
}
.jpss2017r-top-lowerbanner .slick-dots li.slick-active button:before {
  color: #da3c1d;
}
.jpss2017r-top-sitedescription {
  position: relative;
  padding: 55px 0;
  background: #efefef url("../images/top/bg_sitedescription.jpg") no-repeat center;
  min-width: 1000px;
}
.jpss2017r-top-sitedescription__inner {
  margin: 0 auto;
  padding: 35px 30px 35px 35px;
  width: 1000px;
  background-color: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  box-shadow: 0 5px 10px 0 rgba(100, 100, 100, 0.6);
}
.jpss2017r-top-sitedescription__photolicense {
  position: absolute;
  right: 2em;
  bottom: 1em;
}
.jpss2017r-top-sitedescription__title, .jpss2017r-top-sitedescription__body {
  display: inline-block;
  vertical-align: middle;
}
.jpss2017r-top-sitedescription__title {
  padding: 0 40px 0 5px;
  width: 235px;
}
.jpss2017r-top-sitedescription__body {
  padding-left: 35px;
  width: 610px;
  border-left: 1px solid #da3c1d;
  font-size: 14px;
  line-height: 2;
}
.jpss2017r-top-sitedescription__btn--concept {
  margin: 1em 0 0;
  text-align: right;
}
.jpss2017r-top-sitedescription__btn--concept a {
  color: #15212f;
  text-decoration: none;
}
.jpss2017r-top-sitedescription__btn--concept a::before {
  content: "\f054";
  display: inline-block;
  margin-right: 0.5em;
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 1px #fff;
  font-size: 0.5em;
  vertical-align: middle;
  color: #e02f4b;
  text-decoration: none;
}
.jpss2017r-top-sitedescription__btn--concept a:hover {
  text-decoration: underline;
}
.jpss2017r-top-sitedescription__subtitle {
  margin: 1em 0 0.5em;
  font-size: 18px;
  color: #da3c1d;
}
.jpss2017r-top-sitedescription__text--member {
  float: left;
  width: 67%;
}
.jpss2017r-top-sitedescription__btn--member {
  float: right;
  width: 190px;
}
.jpss2017r-top-sitedescription__btn--member a {
  display: block;
  padding: 0.5em;
  background-color: #36b120;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  font-size: 18px;
}
.jpss2017r-top-sitedescription__btn--member a:hover {
  opacity: 0.7;
}
.jpss2017r-top-announcement {
  margin-top: 20px;
}
.jpss2017r-top-announcement__title {
  padding: 10px 13px 0 36px;
  position: relative;
  line-height: 1.38;
  font-size: 14px;
}
.jpss2017r-top-announcement__title::before {
  left: 0;
  top: 7px;
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  background-image: url("/images/top/icon_announcement.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.jpss2017r-top-announcement__list {
  margin-top: 9px;
  padding: 2px 13px 5px 30px;
  border: 1px solid #b1b1b1;
  line-height: 1.3;
}
.jpss2017r-top-announcement__item {
  padding: 10px 0;
}
.jpss2017r-top-announcement__item ~ .jpss2017r-top-announcement__item {
  border-top: 1px solid #b1b1b1;
}
.jpss2017r-top-announcement__link {
  color: #da3c1d;
  text-decoration: none;
  font-size: 13px;
}
.jpss2017r-top-announcement__link:hover {
  text-decoration: underline;
}

/* =============================================================================
   プラグインなどの上書き
============================================================================= */
.jpss2017r {
  /* ----------------------------------------------
     トップページ
  ---------------------------------------------- */
  /* slick
  ---------------------------------------------- */
  /* shadowbox
  ---------------------------------------------- */
}
.jpss2017r.jpss2017r-page-top {
  background-color: #fff;
}
.jpss2017r #Carousel {
  overflow: visible;
  position: relative;
  width: 100%;
  height: 158px;
}
.jpss2017r #Carousel .slick-slide {
  overflow: hidden;
  margin: 0 16px 0 0;
  padding: 0;
  opacity: 1;
  width: 280px;
  height: 158px;
}
.jpss2017r #CarouselIn {
  z-index: 101;
  opacity: 0;
  margin-bottom: 0;
  width: 100%;
  height: 158px;
}
.jpss2017r #CarouselIn.slick-initialized {
  opacity: 1;
}
.jpss2017r #CarouselIn ul {
  margin: 0;
  padding: 0;
}
.jpss2017r .carouselItem {
  position: relative;
  width: 660px;
  height: 372px;
}
.jpss2017r .carouselItemThumbnail {
  width: 100%;
  height: 100%;
}
.jpss2017r .carouselItemLink:hover .jpss2017r-top-mainvisual__video--iconplay {
  background-image: url("/images/movie/icon_movie_play_on.png");
}
.jpss2017r .carouselItemThumbnail,
.jpss2017r .carouselItemVideo,
.jpss2017r .carouselItemVideo iframe {
  z-index: 1;
}
.jpss2017r .carouselControlButton a {
  width: 100%;
  height: 100%;
}
.jpss2017r #CarouselControlPrev, .jpss2017r #CarouselControlNext {
  z-index: 100;
  position: absolute;
  top: -51px;
  left: 50%;
  width: 34px;
  height: 34px;
}
.jpss2017r #CarouselControlPrev img, .jpss2017r #CarouselControlNext img {
  margin: 0;
  width: 34px;
  height: 34px;
}
.jpss2017r #CarouselControlPrev:hover, .jpss2017r #CarouselControlNext:hover {
  background-color: #fff;
}
.jpss2017r #CarouselControlPrev:hover img, .jpss2017r #CarouselControlNext:hover img {
  opacity: 0.8;
}
.jpss2017r #CarouselControlPrev {
  margin-left: 430px;
}
.jpss2017r #CarouselControlNext {
  margin-left: 466px;
}
.jpss2017r .carouselOverlay {
  opacity: 0.4;
  filter: alpha(opacity=40);
  -ms-filter: “alpha(opacity=40) ”;
}
.jpss2017r .carouselItem .playBtn { /* 再生ボタン */
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -42px;
  margin-left: -42px;
  cursor: pointer;
  display: block;
}
.jpss2017r .carouselItem .playBtn img {
  display: none;
  width: 83px;
  height: 83px;
}
.jpss2017r .carouselControlButton img {
  margin-top: 0;
}
.jpss2017r .carouselControlButton a.display {
  background: transparent;
}
.jpss2017r #sb-title-inner { /* ポップアップ後の学校名 */ }
.jpss2017r #sb-title-inner .carouselLabel,
.jpss2017r #sb-title-inner br {
  display: none;
}
.jpss2017r #sb-title-inner p {
  display: inline;
}
.jpss2017r #sb-title-inner a {
  color: #fff;
}
.jpss2017r-top-scholarship-banner {
  text-align: center;
}
.jpss2017r-top-scholarship-banner__link {
  display: inline-block;
}

/* settings, variables ... */
/* =============================================================================
   検索ページ
============================================================================= */
.jpss2017r-page-search #CntIn {
  width: 986px;
}
.jpss2017r-page-search .sCnt .sCntIn {
  margin-top: 0;
  padding-top: 28px;
}
.jpss2017r-page-search #SearchCnt {
  padding-top: 15px;
}
.jpss2017r-page-search #SearchCnt.sCnt {
  padding-top: 0;
}
.jpss2017r-page-search .jpss2017r-mod-textaccordion {
  margin-bottom: 20px;
}
.jpss2017r-page-search #searchForm {
  padding-top: 0;
}
.jpss2017r-page-search #SearchDetailIn {
  margin-top: -9px;
  padding: 20px 13px 17px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
}
.jpss2017r-page-search #SearchDetailIn .addSearch {
  padding: 0;
  background: #f1f1f1;
  text-align: center;
}
.jpss2017r-page-search #SearchDetailIn .addSearch .open {
  display: block;
  padding: 0 0 0.1em 0;
  font-size: 14px;
  font-weight: normal;
}
.jpss2017r-page-search #SearchDetailIn .addSearch .open::before {
  content: "\f055";
  display: inline-block;
  margin-right: 0.5em;
  width: 1em;
  height: 1em;
  font-family: "FontAwesome";
  color: #8a8a8a;
  vertical-align: top;
}
.jpss2017r-page-search #SearchDetailIn .sDetailObj {
  width: 100%;
  box-sizing: border-box;
}
.jpss2017r-page-search #SearchDetailIn .sDetailObj th, .jpss2017r-page-search #SearchDetailIn .sDetailObj td {
  font-size: 14px;
}
.jpss2017r-page-search #SearchDetailIn .sDetailObj th input, .jpss2017r-page-search #SearchDetailIn .sDetailObj th select, .jpss2017r-page-search #SearchDetailIn .sDetailObj td input, .jpss2017r-page-search #SearchDetailIn .sDetailObj td select {
  height: auto;
  font-size: 16px;
}
.jpss2017r-page-search #AcademicsCnt ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jpss2017r-search-contentcolumn {
  width: 725px;
}
.jpss2017r-search-schooltypetab {
  margin: 0;
  padding: 0;
  list-style: none;
  background: none;
}
.jpss2017r-search-searchdetail__btn--submit {
  margin-top: 15px;
  padding: 0;
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.jpss2017r-search-searchdetail__btn--submit:hover {
  opacity: 0.7;
}
.jpss2017r-search-result ~ .jpss2017r-search-result {
  margin-top: 0;
}
.jpss2017r-search-result {
  margin-top: 30px;
  margin-bottom: 25px;
  padding: 25px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  text-align: left;
}
.jpss2017r-search-result__schoolattr {
  margin-bottom: 5px;
}
.jpss2017r-search-result__schoolattr--item img {
  height: 15px;
  vertical-align: -3px;
}
.jpss2017r-search-result__heading {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f1f1;
}
.jpss2017r-search-result__heading--schoolinfo {
  float: left;
  width: 415px;
  line-height: 1.4;
}
.jpss2017r-search-result__heading--actionbtns {
  float: right;
  font-size: 0;
  line-height: 1;
}
.jpss2017r-search-result__heading--actionbtns .dropdown {
  line-height: 1.7;
}
.jpss2017r-search-result__heading--download, .jpss2017r-search-result__heading--favorite {
  float: none;
  display: inline-block;
  font-size: 14px;
  vertical-align: top;
}
.jpss2017r-search-result__heading--download {
  margin-left: 10px;
}
.jpss2017r-search-result__heading--favorite .dropdown {
  font-size: 14px;
}
.jpss2017r-search-result__schoolattr {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jpss2017r-search-result__schoolattr--item {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 12px;
  vertical-align: top;
  line-height: 18px;
}
.jpss2017r-search-result__schoolattr--item img {
  line-height: 1;
  font-size: 10px;
}
.jpss2017r-search-result__schoolname {
  font-weight: bold;
  font-size: 18px;
}
.jpss2017r-search-result__schoolname a {
  text-decoration: none;
  color: #da3c1d;
}
.jpss2017r-search-result__schoolname a:hover {
  text-decoration: underline;
}
.jpss2017r-search-result__titledep {
  margin-top: 1.5em;
  margin-bottom: 0.78em;
  padding-left: 0.5em;
  border-left: 3px solid #1c2c3e;
  line-height: 1.2;
  font-size: 18px;
}
.jpss2017r-search-result__body {
  font-size: 14px;
}
.jpss2017r-search-result__image {
  float: left;
  margin-right: 25px;
  width: 220px;
}
.jpss2017r-search-result__description {
  overflow: hidden;
  line-height: 1.715;
}
.jpss2017r-search-result__description--title {
  margin-bottom: 0.5em;
  font-size: 18px;
}
.jpss2017r-search-result__deplist {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -8px;
  font-size: 0;
}
.jpss2017r-search-result__deplistitem {
  display: inline-block;
  margin: 0 8px 8px 0;
}
.jpss2017r-search-result__deplistitem a {
  position: relative;
  display: block;
  margin: 0;
  padding: 0.2em 1.9em 0 1.5em;
  height: 100%;
  border: 1px solid #002e73;
  border-radius: 3px;
  background: #eff5ff;
  font-size: 11px;
  line-height: 2.4;
  color: #002e73;
  text-decoration: none;
}
.jpss2017r-search-result__deplistitem a::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  margin-top: -7px;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 14px;
  font-family: "FontAwesome";
  -webkit-font-smoothing: antialiased;
}
.jpss2017r-search-result__deplistitem a:hover {
  border: 1px solid #002e73;
  background: #002e73;
  color: #fff;
}
.jpss2017r-search-result__deplistitem a:empty {
  display: none;
}

/* settings, variables ... */
/* =============================================================================
   学校ページ
============================================================================= */
.jpss2017r-school- {
  /* ----------------------------------------------
     学部一覧
  ---------------------------------------------- */
  /* ----------------------------------------------
     最近見た学校一覧
  ---------------------------------------------- */
  /* ----------------------------------------------
     関連のある大学
  ---------------------------------------------- */
  /* ----------------------------------------------
     オフィシャルサイトへのリンク
  ---------------------------------------------- */
}
.jpss2017r-school-visualinfo {
  float: left;
  width: 300px;
}
.jpss2017r-school-visualinfo__img--large {
  margin-bottom: 10px;
  text-align: center;
}
.jpss2017r-school-visualinfo__img--largeinner {
  position: relative;
  display: table-cell;
  width: 300px;
  height: 190px;
  text-align: center;
  vertical-align: middle;
}
.jpss2017r-school-visualinfo__img--largeinner img {
  display: block;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 300px;
  max-height: 100%;
}
.slick-initialized .jpss2017r-school-visualinfo__img--largeinner img {
  position: absolute;
}
.jpss2017r-school-visualinfo__img--thumb {
  margin: 0 50px;
}
.jpss2017r-school-visualinfo__img--thumb .slick-slide {
  margin: 0 5px;
}
.jpss2017r-school-visualinfo__img--thumb.is-noanimation .slick-track {
  width: auto !important;
  transform: none !important;
  text-align: center;
}
.jpss2017r-school-visualinfo__img--thumb.is-noanimation .slick-slide {
  float: none;
  display: inline-block;
}
.jpss2017r-school-visualinfo__img--thumbinner {
  outline: none;
}
.jpss2017r-school-visualinfo__img--thumb img {
  width: 65px;
  height: 42px;
  cursor: pointer;
}
.jpss2017r-school-visualinfo__img--thumb .slick-arrow {
  width: 30px;
  height: 30px;
}
.jpss2017r-school-visualinfo__img--thumb .slick-arrow::before {
  content: none;
}
.jpss2017r-school-visualinfo__img--thumb .slick-prev {
  left: -50px;
  background: url("/images/common/icon_carousel_arrow_l.png") no-repeat 0 0;
}
.jpss2017r-school-visualinfo__img--thumb .slick-next {
  right: -50px;
  background: url("/images/common/icon_carousel_arrow_r.png") no-repeat 0 0;
}
.jpss2017r-school-visualinfo__video {
  margin-top: 50px;
}
.jpss2017r-school-visualinfo__video iframe {
  max-width: 100%;
}
.jpss2017r-school-relatedinfo {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px dashed #f1f1f1;
}
.jpss2017r-school-relatedinfo__title {
  margin: 1.5em 0 0.2em;
  font-size: 12px;
  font-weight: normal;
  color: #7c7c7c;
}
.jpss2017r-school-relatedinfo__title:first-child {
  margin-top: 0;
}
.jpss2017r-school-schoolinfo {
  font-size: 14px;
  line-height: 1.8;
}
.jpss2017r-school-deparea {
  text-align: left;
}
.jpss2017r-school-relatedlinks + .jpss2017r-school-deparea {
  margin-top: 30px;
}
.jpss2017r-school-deparea__deplist {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -8px;
  font-size: 0;
}
.jpss2017r-school-deparea__deplist--item {
  display: inline-block;
  margin: 0 15px 15px 0;
  width: 215px;
  vertical-align: top;
}
.jpss2017r-school-deparea__deplist--item--top {
  margin: 0 15px 30px 0;
  width: 100%;
}
.jpss2017r-school-deparea__deplist--item:nth-child(3n) {
  margin-right: 0;
}
.jpss2017r-school-deparea__deplist--item a, .jpss2017r-school-deparea__deplist--item--top a {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin: 0;
  padding: 0.7em 2em 0.5em;
  height: 100%;
  width: 100%;
  border: 1px solid #002e73;
  border-radius: 3px;
  background: #eff5ff;
  font-size: 12px;
  line-height: 2.2;
  color: #002e73;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.jpss2017r-school-deparea__deplist--item a::after, .jpss2017r-school-deparea__deplist--item--top a::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  margin-top: -7px;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 14px;
  font-family: "FontAwesome";
  -webkit-font-smoothing: antialiased;
}
.jpss2017r-school-deparea__deplist--item a:hover, .jpss2017r-school-deparea__deplist--item--top a:hover {
  border: 1px solid #002e73;
  background: #002e73;
  color: #fff;
}
.jpss2017r-school-deparea__deplist--currentinner {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  display: block;
  margin: 0;
  padding: 0.7em 2em 0.5em;
  height: 100%;
  width: 100%;
  border-radius: 3px;
  font-size: 12px;
  line-height: 2.2;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid #002e73;
  background: #002e73;
  color: #fff;
}
.jpss2017r-school-deparea__school-info-table {
  border: 1px solid #ccc;
}
.jpss2017r-school-deparea__button-container {
  padding: 0 10px 10px 0;
  width: 180px;
  float: left;
}
.jpss2017r-school-deparea__school-info {
  width: 495px;
  float: right;
  font-size: 11px;
}
.jpss2017r-school-deparea__school-info-item ~ .jpss2017r-school-deparea__school-info-item {
  margin-top: 10px;
}
.jpss2017r-school-deparea__school-info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.jpss2017r-school-deparea__school-info-heading {
  padding: 3px 3px;
  border-bottom: 1px solid #ccc;
  font-weight: 500;
  color: #010b58;
  background-color: #f0f0f0;
  text-align: center;
}
.jpss2017r-school-deparea__school-info-heading ~ .jpss2017r-school-deparea__school-info-heading {
  border-left: 1px solid #ccc;
}
.jpss2017r-school-deparea__school-info-heading--list {
  padding: 3px 3px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-weight: 500;
  color: #010b58;
  background-color: #f0f0f0;
  text-align: left;
}
.jpss2017r-school-deparea__school-info-data {
  padding: 3px 3px;
  font-size: 10px;
  text-align: center;
}
.jpss2017r-school-deparea__school-info-data ~ .jpss2017r-school-deparea__school-info-data {
  border-left: 1px solid #ccc;
}
.jpss2017r-school-deparea__school-info-data--list {
  padding: 3px 3px;
  font-size: 10px;
  text-align: left;
}
.jpss2017r-school-deparea__school-info-data--list ul {
  display: inline;
  flex-wrap: wrap;
}
.jpss2017r-school-deparea__school-info-data--list li {
  display: inline;
}
.jpss2017r-school-deparea__school-info-data--list li::after {
  content: ", ";
  margin-right: 0.2em;
}
#Lazhcn .jpss2017r-school-deparea__school-info-data--list li::after, #Lazhtw .jpss2017r-school-deparea__school-info-data--list li::after {
  content: "、";
}
.jpss2017r-school-deparea__school-info-data--list li:last-child::after {
  display: none;
  margin-right: 0;
}
.jpss2017r-school-recentview {
  text-align: left;
}
.jpss2017r-school-recentview__list {
  font-size: 0;
}
.jpss2017r-school-recentview__item {
  display: inline-block;
  margin: 0 5% 10px 0;
  width: 45%;
  font-size: 12px;
  vertical-align: top;
}
.jpss2017r-school-recentview__item:nth-child(2n) {
  margin-right: 0;
}
.jpss2017r-school-recentview__link {
  display: block;
  text-decoration: none;
}
.jpss2017r-school-recentview__link:hover {
  opacity: 0.7;
}
.jpss2017r-school-recentview__img {
  position: relative;
  float: left;
  margin-right: 15px;
  height: 69px;
  width: 100px;
}
.jpss2017r-school-recentview__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.jpss2017r-school-recentview__schoolname {
  overflow: hidden;
}
.jpss2017r-school-relatedschool {
  text-align: left;
}
.jpss2017r-school-relatedschool__list {
  font-size: 0;
}
.jpss2017r-school-relatedschool__item {
  display: inline-block;
  margin: 0 2.6% 0 0;
  width: 23%;
  font-size: 12px;
  vertical-align: top;
}
.jpss2017r-school-relatedschool__item:last-child {
  margin-right: 0;
}
.jpss2017r-school-relatedschool__link {
  display: block;
  text-decoration: none;
}
.jpss2017r-school-relatedschool__link:hover {
  opacity: 0.7;
}
.jpss2017r-school-relatedschool__img {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  height: 102px;
}
.jpss2017r-school-relatedschool__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.jpss2017r-school-relatedschool__schoolname {
  margin-bottom: 7px;
  line-height: 1.4;
  font-weight: bold;
}
.jpss2017r-school-relatedschool__facultylist {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  font-size: 0;
}
.jpss2017r-school-relatedschool__facultylist--item {
  display: inline-block;
  margin-right: 5px;
  font-size: 10px;
  line-height: 1.5;
}
.jpss2017r-school-relatedschool__facultylist--link {
  padding: 0.1em 0.5em;
  background-color: #eff5ff;
  color: #002e73;
  line-height: 2.2;
  text-decoration: none;
}
.jpss2017r-school-relatedschool__facultylist--link::before {
  content: "\f105";
  display: inline;
  margin-right: 0.5em;
  font-family: "FontAwesome";
}
.jpss2017r-school-relatedschool__facultylist--link:hover {
  opacity: 0.7;
}
.jpss2017r-school-relatedschool-other-search--second {
  margin-top: 20px;
}
.jpss2017r-school-relatedschool-other-search__item {
  text-decoration: none;
}
.jpss2017r-school-relatedschool-other-search__item:hover {
  text-decoration: underline;
}
.jpss2017r-school-relatedlinks {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 0.5em 0;
  text-align: right;
}
.jpss2017r-school-relatedlinks__item {
  padding-bottom: 0.5em;
  color: #7c7c7c;
  text-align: right;
  font-size: 12px;
}
.jpss2017r-school-relatedlinks__item:last-child {
  padding-bottom: 0;
}
.jpss2017r-school-relatedlinks__item a {
  margin-left: 0.5em;
}

.jpss2017r-page-school #CntIn {
  width: 1000px;
}
.jpss2017r-page-school #UnivCnt {
  margin: auto;
  width: 930px;
  background: transparent;
}
.jpss2017r-page-school .jpss2017r-mod-textaccordion {
  margin-bottom: 35px;
}
.jpss2017r-page-school #DepHead {
  padding-top: 20px;
  border-top: 0;
}
.jpss2017r-page-school #DepHead .leftBlock {
  padding: 0 0 10px;
}
.jpss2017r-page-school #DepHead .leftBlock h3 {
  color: #15212f;
}
.jpss2017r-page-school #DepHead .rightBlock {
  padding: 0 0 10px;
}
.jpss2017r-page-school #TcHead {
  border-top: 0;
}
.jpss2017r-page-school #schoolContainer {
  margin-top: 0;
  padding-top: 25px;
  border: 0;
  background: #fff;
}
.jpss2017r-page-school #SchoolHead {
  padding-top: 20px;
}
.jpss2017r-page-school #SchoolHead .rightBlock h4 {
  margin: 0 0 1em;
  font-size: 18px;
  color: #1c2c3e;
}
.jpss2017r-page-school .jpss2017r-mod-title__sub {
  margin: 60px 0 20px;
}
.jpss2017r-page-school #SchoolName {
  padding-bottom: 20px;
}
.jpss2017r-page-school #SchoolName p {
  padding-left: 0;
}
.jpss2017r-page-school #SchoolName .favBtn, .jpss2017r-page-school #SchoolName .contactBtnCnt {
  line-height: 1;
}
.jpss2017r-page-school #SchoolName h2 {
  line-height: 1.7;
}
.jpss2017r-page-school .schoolTextObj.closedAccordion {
  position: relative;
  max-height: 40px;
}
.jpss2017r-page-school .schoolTextObj.closedAccordion p {
  height: auto;
  text-overflow: clip;
  white-space: normal;
}
.jpss2017r-page-school .schoolTextObj {
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  font-size: 12px;
  transition: max-height 0.5s ease-out;
  max-height: 600px;
}
.jpss2017r-page-school .txt-hide {
  background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 50%);
}

/* =============================================================================
   留学に役立つ情報ページ
============================================================================= */
.jpss2017r-life-searchschool__wrap {
  padding-bottom: 3em;
}
.jpss2017r-life-searchschool__subtitle {
  text-align: center;
}
.jpss2017r-life-searchschool__btnlist {
  margin: 0 auto;
  width: 96%;
  max-width: 725px;
  text-align: left;
}
.jpss2017r-life-searchschool__btnlist--item {
  display: inline-block;
  margin-right: 2%;
  margin-bottom: 10px;
  width: 49%;
  text-align: left;
  vertical-align: top;
}
.jpss2017r-life-searchschool__btnlist--item:nth-child(2n) {
  margin-right: 0;
}
.jpss2017r-life-searchschool__btnlist--item img {
  max-width: 100%;
}
.jpss2017r-life-matchingbnr {
  text-align: center;
}

/* =============================================================================
   奨学金ページ
============================================================================= */
.jpss2017r-page-scholarship .jpss2017r-life-searchschool__wrap {
  display: none;
}

/* =============================================================================
   写真のライセンスページ
============================================================================= */
.jpss2017r-photolisence-content .leftBlock {
  padding-top: 25px;
  padding-bottom: 28px;
}

/* settings, variables ... */
/* =============================================================================
   マイページ > 会員登録のメリット
============================================================================= */
.jpss2017r-myabout-merititem {
  margin: 0 auto;
  width: 780px;
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.jpss2017r-myabout-merititem + .jpss2017r-myabout-merititem {
  margin-top: 30px;
}
.jpss2017r-myabout-merititem .jpss2017r-myabout-merititem__heading {
  text-indent: 0;
}
.jpss2017r-myabout-merititem__heading {
  width: 100%;
  height: 100%;
}
.jpss2017r-myabout-merititem__heading--scholarship {
  background: #53a9d3 url(/images/lp/subhead_scholarship.png) no-repeat left top;
}
.jpss2017r-myabout-merititem__heading div {
  margin-left: 80px;
  white-space: normal;
  line-height: 60px;
  color: #006699;
  font-weight: 900;
  font-size: 30px;
  text-shadow: 2px 2px 2px #fff, -2px 2px 2px #fff, 2px -2px 2px #fff, -2px -2px 2px #fff, 2px 0 2px #fff, -2px 0 2px #fff, 0 -2px 2px #fff, 0 2px 2px #fff, 1px 1px 2px #fff, -1px 1px 2px #fff, 1px -1px 2px #fff, -1px -1px 2px #fff, 1px 0 2px #fff, -1px 0 2px #fff, 0 -1px 2px #fff, 0 1px 2px #fff;
}
.jpss2017r-myabout-merititem__body--scholarship {
  text-align: center;
}
.lpContent .jpss2017r-myabout-merititem__body--scholarship {
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 16px;
}
.jpss2017r-myabout-merititem__body--scholarship p {
  margin: 0;
  line-height: 1.75;
  color: #7f7f7f;
}
.jpss2017r-myabout-merititem__pickuptitle {
  margin-bottom: 1em;
  font-style: italic;
  font-size: 24px;
  font-weight: bold;
}
.jpss2017r-myabout-merititem__pickuptitle--inner {
  display: inline-block;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #15212f;
}
.jpss2017r-myabout-merititem__scholarshiplist {
  margin: 2.5em auto 0;
  max-width: 19em;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.jpss2017r-myabout-merititem__scholarshipitem {
  display: block;
  margin: 0 auto 1em;
  border-radius: 1.25em;
  line-height: 2.5;
  background-color: #ccc;
  color: #fff;
}
.jpss2017r-myabout-merititem__scholarshipitem:last-child {
  margin-bottom: 0;
}
.jpss2017r-myabout-merititem__scholarshipitem:nth-child(1) {
  background-color: #c0ad31;
}
.jpss2017r-myabout-merititem__scholarshipitem:nth-child(2) {
  background-color: #ccc;
}
.jpss2017r-myabout-merititem__scholarshipitem:nth-child(3) {
  background-color: #dab372;
}
.jpss2017r-myabout-merititem__suppletext {
  text-align: center;
  font-size: 12px;
}
.lpContent .jpss2017r-myabout-merititem__suppletext {
  margin: 1em 0 0;
}

/* =============================================================================
   マイページ > 奨学金募集要項
============================================================================= */
.scholarship-application-container {
  padding: 30px 30px 60px;
}
.scholarship-application-main-visual__photo {
  padding: 75px 56px;
  width: 50%;
  height: 500px;
  background: #f0f2f9 url(/images/scholarship-application/scholarship_lp_main_photo.jpg);
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
  float: right;
}
.scholarship-application-main-visual__photo-message {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  width: 350px;
}
.scholarship-application-main-visual__photo-message img {
  max-width: 100%;
}
.scholarship-application-main-visual__content {
  padding: 52px 56px;
  width: 50%;
  height: 500px;
  background-color: #00213b;
  color: #fff;
  text-align: center;
  float: left;
  box-sizing: border-box;
}
.scholarship-application-main-visual__heading {
  font-size: 28px;
}
.scholarship-application-main-visual__heading span {
  display: inline-block;
}
.scholarship-application-main-visual__list {
  margin: 40px 0;
  list-style-type: none;
}
.scholarship-application-main-visual__list-item--gold, .scholarship-application-main-visual__list-item--silver, .scholarship-application-main-visual__list-item--bronze {
  padding: 11px;
  font-size: 18px;
  border-radius: 5px;
  font-weight: 800;
}
.scholarship-application-main-visual__list-item--silver, .scholarship-application-main-visual__list-item--bronze {
  margin-top: 14px;
}
.scholarship-application-main-visual__list-item--gold {
  background-color: #c0ad31;
}
.scholarship-application-main-visual__list-item--silver {
  background-color: #ccc;
}
.scholarship-application-main-visual__list-item--bronze {
  background-color: #dab372;
}
.scholarship-application-main-visual__text {
  font-size: 18px;
}
.scholarship-application-main {
  padding: 0 0 30px;
  background: #f0f2f9 url(/images/scholarship-application/scholarship_lp_bg.gif);
}
.scholarship-application-header {
  padding: 45px 10px 40px;
  margin-bottom: 10px;
  color: #1c2c3e;
  border-bottom: 4px solid #1c2c3e;
}
.scholarship-application-header__heading {
  text-align: center;
  font-size: 32px;
}
.scholarship-application-header__sub-heading {
  margin-top: 8px;
  text-align: center;
  font-size: 19px;
}
.scholarship-application-item {
  padding: 20px 20px 30px;
  color: #1c2c3e;
  background-color: #fff;
}
.scholarship-application-item + .scholarship-application-item {
  margin-top: 50px;
}
.scholarship-application-item__heading {
  margin-bottom: 25px;
  padding: 10px;
  border-bottom: 3px solid #1c2c3e;
  text-align: center;
  font-size: 25px;
}
.scholarship-application-item__text {
  font-size: 14px;
}
.scholarship-application-item__list--square, .scholarship-application-item__list--medal {
  list-style-type: none;
}
.scholarship-application-item__list--square > li, .scholarship-application-item__list--medal > li {
  margin: 20px 0;
}
.scholarship-application-item__list--square > li {
  position: relative;
  padding: 0 0 0 18px;
}
.scholarship-application-item__list--square > li::before {
  position: absolute;
  display: inline-block;
  width: 25px;
  top: 10px;
  left: 2px;
  height: 7px;
  width: 7px;
  background-color: #1c2c3e;
  content: "";
}
.scholarship-application-item__list--medal {
  list-style-type: none;
}
.scholarship-application-item__list--medal > li {
  position: relative;
  padding: 0 0 0 40px;
}
.scholarship-application-item__list--medal > li::before {
  position: absolute;
  display: inline-block;
  width: 18px;
  height: 24px;
  left: 8px;
  top: 1px;
  background-size: 18px 24px;
  content: "";
}
.scholarship-application-item__list-item-medal--gold::before {
  background: url(/images/scholarship-application/scholarship_lp_badge_gold.png) no-repeat;
}
.scholarship-application-item__list-item-medal--silver::before {
  background: url(/images/scholarship-application/scholarship_lp_badge_silver.png) no-repeat;
}
.scholarship-application-item__list-item-medal--bronze::before {
  background: url(/images/scholarship-application/scholarship_lp_badge_bronze.png) no-repeat;
}
.scholarship-application-item__procedures-heading {
  display: inline-block;
  padding: 4px 20px;
  margin: 15px 0 15px;
  min-width: 50%;
  font-size: 15px;
  border-bottom: 1px solid #1c2c3e;
  box-sizing: border-box;
}
.scholarship-application-item__procedures-list {
  list-style-type: none;
}
.scholarship-application-item__procedures-list > li {
  padding: 0 12px;
}
.scholarship-application-item__procedures-date-list {
  list-style-type: none;
}
.scholarship-application-item__procedures-date-list > li {
  padding: 0 12px;
}
.scholarship-application-item__procedures-date-list > li + li {
  margin-top: 20px;
}
.scholarship-application-item__procedures-date-header {
  font-weight: 800;
}
.scholarship-application-item__step-list {
  display: table;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 60px;
  width: 60%;
}
.scholarship-application-item__step-list > li {
  display: table-row;
}
.scholarship-application-item__step-heading {
  display: table-cell;
  padding: 20px 32px;
  width: 70px;
  font-size: 24px;
  text-align: center;
  background-color: #1c2c3e;
  color: #fff;
}
.scholarship-application-item__step-text, .scholarship-application-item__step-text--next {
  display: table-cell;
  width: 100%;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
}
.scholarship-application-item__step-text--next {
  position: relative;
}
.scholarship-application-item__step-text--next::before {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border-left: 10px solid #1c2c3e;
  border-bottom: 10px solid #1c2c3e;
  left: 50%;
  top: -50px;
  margin-left: -14px;
  transform: rotate(-45deg);
  content: "";
}
.scholarship-application-item__step-text-strong {
  font-weight: 800;
}
.scholarship-application-footer {
  padding: 50px 10px 25px;
  text-align: right;
}
.scholarship-application-footer__register-container {
  display: block;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}
.scholarship-application-footer__register-button {
  display: block;
  padding: 10px 15px;
  margin: 0 auto 30px;
  width: 100%;
  font-size: 19px;
  text-align: center;
  max-width: 600px;
  color: #fff;
  background-color: #36b120;
  box-sizing: border-box;
  text-decoration: none;
}
.scholarship-application-footer__login-button {
  display: block;
  padding: 10px 15px;
  margin: 0 auto 30px;
  width: 100%;
  font-size: 19px;
  text-align: center;
  max-width: 600px;
  color: #fff;
  background-color: #c73a1e;
  box-sizing: border-box;
  text-decoration: none;
}
.scholarship-application-footer__application-button {
  display: block;
  padding: 10px 15px;
  margin: 0 auto 30px;
  width: 100%;
  font-size: 19px;
  text-align: center;
  max-width: 600px;
  color: #fff;
  background-color: #c73a1e;
  box-sizing: border-box;
  text-decoration: none;
}
.scholarship-application-footer__applied-button {
  display: block;
  padding: 10px 15px;
  margin: 0 auto 30px;
  width: 100%;
  font-size: 19px;
  text-align: center;
  max-width: 600px;
  color: #fff;
  background-color: #c1c1c1;
  box-sizing: border-box;
  text-decoration: none;
  cursor: default;
}
.scholarship-application-footer__register-about {
  text-decoration: underline;
}
.scholarship-application-footer__register-notes {
  max-width: 600px;
  margin: auto;
  text-align: left;
}
.scholarship-application-footer__register-notes p {
  padding-left: 1em;
  text-indent: -1em;
}

/* Modal Library
---------------------------------------------------- */
/**************************\
  Basic Modal Styles
\**************************/
.p-find-univ-modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}
.p-find-univ-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}
.p-find-univ-modal__container {
  background-color: #fff;
  padding: 10px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
@media only screen and (min-width: 375px) {
  .p-find-univ-modal__container {
    padding: 15px;
  }
}
@media only screen and (min-width: 600px) {
  .p-find-univ-modal__container {
    padding: 30px;
  }
}
.p-find-univ-modal__header {
  display: flex;
  justify-content: end;
  align-items: center;
}
.p-find-univ-modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}
.p-find-univ-modal__close {
  background: transparent;
  border: 0;
  cursor: pointer;
}
.p-find-univ-modal__header .p-find-univ-modal__close:before {
  content: "✕";
}
.p-find-univ-modal__content {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 600px) {
  .p-find-univ-modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.p-find-univ-modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}
.p-find-univ-modal__btn:focus, .p-find-univ-modal__btn:hover {
  transform: scale(1.05);
}
.p-find-univ-modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}
.p-find-univ-modal-micromodal-slide {
  display: none;
}
.p-find-univ-modal-micromodal-slide.is-open {
  display: block;
}
.p-find-univ-modal-micromodal-slide[aria-hidden=false] .p-find-univ-modal__overlay {
  animation: findUnivMMfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-find-univ-modal-micromodal-slide[aria-hidden=false] .p-find-univ-modal__container {
  animation: findUnivMMslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-find-univ-modal-micromodal-slide[aria-hidden=true] .p-find-univ-modal__overlay {
  animation: findUnivMMfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-find-univ-modal-micromodal-slide[aria-hidden=true] .p-find-univ-modal__container {
  animation: findUnivMMslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.p-find-univ-modal-micromodal-slide .p-find-univ-modal__container, .p-find-univ-modal-micromodal-slide .p-find-univ-modal__overlay {
  will-change: transform;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes findUnivMMfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes findUnivMMfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes findUnivMMslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes findUnivMMslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
/* Common
---------------------------------------------------- */
.p-find-univ-main {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  background: rgb(251, 250, 255);
  background: linear-gradient(90deg, rgb(251, 250, 255) 0%, rgb(226, 231, 237) 100%);
  position: relative;
}
.p-find-univ-main-pttn {
  background: url("/images/finduniv/sand.png") repeat;
}
.p-find-univ-main h1, .p-find-univ-main h2, .p-find-univ-main h3, .p-find-univ-main h4, .p-find-univ-main h5, .p-find-univ-main h6, .p-find-univ-main p, .p-find-univ-main div, .p-find-univ-main ul, .p-find-univ-main li, .p-find-univ-main a {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  overflow-wrap: break-word;
}
.p-find-univ-main ul li {
  list-style: none;
}
.p-find-univ-inner {
  display: block;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 375px) {
  .p-find-univ-inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 600px) {
  .p-find-univ-inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-inner {
    padding: 0 10vw;
  }
}
.p-find-univ-sec-ttl {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 5.5vw;
  letter-spacing: 0.015rem;
  line-height: 1.025;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-sec-ttl {
    font-size: 4vw;
    line-height: 0.95;
  }
}
.p-find-univ-modal {
  display: none;
}
.p-find-univ-modal.is-open {
  display: block;
}

/* Navigation
---------------------------------------------------- */
.p-find-univ-nav {
  position: sticky;
  top: 0;
  padding: 40px 0;
  z-index: 500;
  pointer-events: none;
}
.p-find-univ-nav-list {
  position: absolute;
  right: 4.5vw;
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 37.5px;
  box-shadow: 0px 5px 10px -8px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  box-sizing: border-box;
  padding: 0 8px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-nav-list {
    padding: 24px 28px;
    left: 4.5vw;
    right: 4.5vw;
  }
}
@media only screen and (min-width: 680px) {
  .p-find-univ-nav-list {
    right: 10vw;
    left: auto;
  }
}
.p-find-univ-nav-list li a {
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  text-decoration: none;
  transition: 0.25s ease;
}
.p-find-univ-nav-list li a:hover {
  color: #4371D6;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-nav-list li a {
    padding: 10px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-nav-list li a {
    padding: 10px 15px;
    font-size: 16px;
  }
}
.p-find-univ-nav-item {
  display: none;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-nav-item {
    display: list-item;
  }
}
.p-find-univ-nav-mobile-item {
  display: list-item;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-nav-mobile-item {
    display: none;
  }
}
.p-find-univ-nav-mobile-btn {
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  padding: 24px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.p-find-univ-nav-smp-wrapper {
  width: 320px;
  max-width: 100%;
}
.p-find-univ-nav-smp-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-find-univ-nav-smp-list li {
  width: 100%;
  text-align: center;
}
.p-find-univ-nav-smp-link {
  display: inline-block;
  padding: 15px;
  width: 100%;
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  padding: 24px;
  background-color: transparent;
  text-decoration: none;
  border: none;
  border-radius: 50px;
}
.p-find-univ-nav-smp-link:hover {
  background-color: #eee;
}

/* Key visual
---------------------------------------------------- */
.p-find-univ-kv {
  padding: 40px 0 70px;
  position: relative;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-kv {
    padding: 115px 0 70px;
  }
}
.p-find-univ-kv::before {
  content: "";
  background: url("/images/finduniv/kv_map.png") no-repeat;
  position: absolute;
  top: 180px;
  right: 5vw;
  height: 568px;
  width: 490px;
  z-index: 0;
}
.p-find-univ-kv-deco01, .p-find-univ-kv-deco02 {
  position: absolute;
}
.p-find-univ-kv-deco01 {
  bottom: 210px;
  right: 1vw;
}
.p-find-univ-kv-deco02 {
  bottom: -70px;
  right: 20vw;
}
.p-find-univ-kv-ttl {
  margin-bottom: 35px;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-kv-ttl {
    margin-bottom: 70px;
  }
}
.p-find-univ-kv-ttl h2 {
  color: #000;
  font-size: 9.5vw;
  letter-spacing: -1px;
  line-height: 1.025;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-kv-ttl h2 {
    font-size: 8vw;
    line-height: 0.95;
  }
}
.p-find-univ-kv-ttl h3 {
  color: #000;
  font-size: 4vw;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-kv-ttl h3 {
    font-size: 2.5vw;
  }
}
.p-find-univ-kv-ttl h4 {
  font-size: 7vw;
  line-height: 1;
  text-align: center;
  color: #000;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-kv-ttl h4 {
    font-size: 5vw;
  }
}
.p-find-univ-kv-ttl-fair {
  width: 20vw;
  vertical-align: -0.34em;
  margin-left: -0.15em;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-kv-ttl-fair {
    width: 16.7vw;
    margin-left: -0.1em;
  }
}
.p-find-univ-kv-subttl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.p-find-univ-kv-subttl-en, .p-find-univ-kv-subttl-ja {
  display: none;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-kv-subttl-en, .p-find-univ-kv-subttl-ja {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-kv-subttl-en, .p-find-univ-kv-subttl-ja {
    display: block;
    width: 47%;
  }
}
.p-find-univ-kv-subttl-en {
  letter-spacing: 0.025rem;
  line-height: 1.75;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-kv-subttl-en {
    line-height: 2;
  }
}
.p-find-univ-kv-subttl-ja {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075rem;
  line-height: 1.95;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-kv-subttl-ja {
    line-height: 2.25;
  }
}
.p-find-univ-kv-subttl-sp {
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
  width: 100%;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-kv-subttl-sp {
    display: none;
  }
}

.p-find-univ-intro-text {
  position: relative;
}

/* Fair Contents List
---------------------------------------------------- */
.p-find-univ-contents-info__contents-list {
  position: relative;
  margin: 50px auto 0;
  padding: 0;
  max-width: 1200px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-contents-info__contents-list {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-contents-info__contents-list {
    padding: 0 60px;
  }
}
.p-find-univ-contents-info__item {
  display: flex;
  margin-top: 15px;
}
.p-find-univ-contents-info__title-box {
  display: flex;
  width: 160px;
  padding: 12px 0;
  background-color: #1f2c3c;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-contents-info__title-box {
    width: 180px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-contents-info__title-box {
    flex-direction: row;
    padding: 20px 0;
    width: 280px;
  }
}
.p-find-univ-contents-info__icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 40px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-contents-info__icon-box {
    width: 40px;
    height: 45px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-contents-info__icon-box {
    width: 100px;
  }
}
.p-find-univ-contents-info__icon {
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.p-find-univ-contents-info__title {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  margin-top: 8px;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-contents-info__title {
    width: 180px;
    margin-top: 0;
    font-size: 18px;
    justify-content: left;
    text-align: left;
  }
}
.p-find-univ-contents-info__desc {
  flex: 1;
  padding: 15px 10px;
  background-color: #fff;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-contents-info__desc {
    padding: 20px;
  }
}

/* Checks
---------------------------------------------------- */
.p-find-univ-checks {
  padding: 70px 0 0;
  position: relative;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-checks {
    padding: 70px 0 60px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-checks {
    padding: 70px 0 85px;
  }
}
.p-find-univ-checks::before {
  content: "";
  background: url("/images/finduniv/checks_deco_01.png") no-repeat;
  position: absolute;
  top: 380px;
  right: 0;
  height: 380px;
  width: 330px;
  z-index: 0;
}
.p-find-univ-checks .p-find-univ-sec-ttl {
  margin-bottom: 40px;
}
.p-find-univ-checks-intro {
  position: relative;
  color: #222;
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 75px;
}
.p-find-univ-checks-tab > ul {
  display: flex;
  background: #fff;
  border-radius: 40px;
  margin: 0 auto 45px;
  position: relative;
  padding: 2.5px;
  height: 80px;
  width: 992px;
  max-width: 100%;
  box-sizing: border-box;
}
.p-find-univ-checks-tab > ul::before {
  content: "";
  height: 72px;
  width: 50%;
  background: #4371D6;
  position: absolute;
  top: 6px;
  border-radius: 40px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s cubic-bezier(0.15, 0.88, 0.15, 0.97);
}
.p-find-univ-checks-tab > ul > li {
  height: 100%;
  width: 50%;
  text-align: center;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.p-find-univ-checks-tab > ul > li > a {
  padding: 0 20px;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s ease;
  box-sizing: border-box;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-checks-tab > ul > li > a {
    font-size: 16px;
  }
}
.p-find-univ-checks-tab ul.tab01::before {
  transform: translate3d(6px, 0px, 0px);
}
.p-find-univ-checks-tab ul.tab01 li:first-child a {
  color: #fff;
}
.p-find-univ-checks-tab ul.tab02::before {
  transform: translate3d(calc(100% - 9px), 0px, 0px);
}
.p-find-univ-checks-tab ul.tab02 li:last-child a {
  color: #fff;
}
.p-find-univ-checks-tab-body {
  display: none;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: start;
  width: 100%;
}
.p-find-univ-checks-tab-body-item, .p-find-univ-checks-tab-body-item--link {
  display: flex;
  justify-content: flex-start;
  background: #fff;
  border-radius: 4px;
  margin-top: 20px;
  padding: 28px 20px;
  text-decoration: none;
  overflow-wrap: break-word;
  position: relative;
  transition: 0.5s ease;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-checks-tab-body-item, .p-find-univ-checks-tab-body-item--link {
    margin-top: 0;
    width: calc((100% - 60px) / 2);
    margin-left: 30px;
  }
  .p-find-univ-checks-tab-body-item:nth-child(2n+1), .p-find-univ-checks-tab-body-item--link:nth-child(2n+1) {
    margin-left: 0;
  }
  .p-find-univ-checks-tab-body-item:nth-child(n+3), .p-find-univ-checks-tab-body-item--link:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-checks-tab-body-item, .p-find-univ-checks-tab-body-item--link {
    padding: 34px 30px 23px;
    width: calc((100% - 96px) / 3);
    margin-left: 48px;
  }
  .p-find-univ-checks-tab-body-item:nth-child(2n+1), .p-find-univ-checks-tab-body-item--link:nth-child(2n+1) {
    margin-left: 48px;
  }
  .p-find-univ-checks-tab-body-item:nth-child(3n+1), .p-find-univ-checks-tab-body-item--link:nth-child(3n+1) {
    margin-left: 0;
  }
  .p-find-univ-checks-tab-body-item:nth-child(3), .p-find-univ-checks-tab-body-item--link:nth-child(3) {
    margin-top: 0;
  }
  .p-find-univ-checks-tab-body-item:nth-child(n+4), .p-find-univ-checks-tab-body-item--link:nth-child(n+4) {
    margin-top: 30px;
  }
}
.p-find-univ-checks-tab-body-item--link:hover, .p-find-univ-checks-tab-body-item--link--link:hover {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}
.p-find-univ-checks-tab-body-item-left, .p-find-univ-checks-tab-body-item--link-left {
  width: 30px;
}
.p-find-univ-checks-tab-body-item-left img, .p-find-univ-checks-tab-body-item--link-left img {
  width: 28px;
}
.p-find-univ-checks-tab-body-item-right, .p-find-univ-checks-tab-body-item--link-right {
  padding-left: 20px;
  width: calc(100% - 30px);
  box-sizing: border-box;
}
.p-find-univ-checks-tab-body-item-right--link, .p-find-univ-checks-tab-body-item--link-right--link {
  padding-left: 20px;
  width: 70%;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-checks-tab-body-item-right--link, .p-find-univ-checks-tab-body-item--link-right--link {
    width: 68%;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-checks-tab-body-item-right--link, .p-find-univ-checks-tab-body-item--link-right--link {
    width: 75%;
  }
}
.p-find-univ-checks-tab-body-item-right-ttl, .p-find-univ-checks-tab-body-item--link-right-ttl {
  color: #222;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 15px;
}
.p-find-univ-checks-tab-body-item-right-txt, .p-find-univ-checks-tab-body-item--link-right-txt {
  color: #222;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
}
.p-find-univ-checks-tab-body-item-arrow, .p-find-univ-checks-tab-body-item--link-arrow {
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 5vw;
  transform: translateY(-50%);
}
@media only screen and (min-width: 600px) {
  .p-find-univ-checks-tab-body-item-arrow, .p-find-univ-checks-tab-body-item--link-arrow {
    right: 2.75vw;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-checks-tab-body-item-arrow, .p-find-univ-checks-tab-body-item--link-arrow {
    right: 1.5vw;
  }
}
.p-find-univ-checks-tab-body-item-movie-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  margin-top: 20px;
  padding: 10px 0 0;
  border-top: 1px solid #E6E6E6;
}
.p-find-univ-checks-tab-body-item-movie-title {
  padding: 10px 10px 10px 0;
  font-size: 18px;
  color: #222;
  font-weight: 700;
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-checks-tab-body-item-movie-title {
    padding: 14px 10px 14px 0;
  }
}
.p-find-univ-checks-tab-body-item-movie-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.22;
  justify-content: end;
}
.p-find-univ-checks-tab-body-item-movie-list li {
  padding: 5px;
}
.p-find-univ-checks-tab-body-item-movie-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 72px;
  padding: 8px;
  border: 1px solid #4371D6;
  border-radius: 2px;
  color: #4371D6;
  font-size: 16px;
  text-decoration: none;
  background-color: #fff;
  transition: 0.5s ease;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-checks-tab-body-item-movie-link {
    width: 82px;
    padding: 10px;
  }
}
.p-find-univ-checks-tab-body-item-movie-link::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 20px;
  background: url("/images/finduniv/icon-movie.png");
  background-size: cover;
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-checks-tab-body-item-movie-link::before {
    width: 33px;
    height: 24px;
  }
}
.p-find-univ-checks-tab-body-item-movie-link:hover {
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15);
}
.p-find-univ-checks-tab-body.is-active {
  display: flex;
  animation-name: displayAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Videos
---------------------------------------------------- */
.p-find-univ-videos {
  padding: 110px 0 0;
  background-image: url("/images/finduniv/videos_deco01.png"), url("/images/finduniv/videos_deco02.png");
  background-repeat: no-repeat, no-repeat;
  background-position: -70px 125px, 105% 110px;
  background-size: 50%, 15%;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos {
    padding: 120px 0 0;
    background-size: 33%, 15%;
  }
}
.p-find-univ-videos .p-find-univ-sec-ttl {
  line-height: 1.15;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos .p-find-univ-sec-ttl {
    margin-bottom: 60px;
  }
}
.p-find-univ-videos-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  color: #ffffff;
  list-style-type: none;
}
.p-find-univ-videos-list::after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 205px;
  height: 140px;
  background: url("/images/finduniv/videos_deco04.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos-list li:nth-child(2n+1).p-find-univ-videos-bg-item {
    display: none;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-videos-list li:nth-child(2n+1).p-find-univ-videos-bg-item {
    display: list-item;
  }
  .p-find-univ-videos-list li:nth-child(3n+1).p-find-univ-videos-bg-item {
    display: none;
  }
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-videos-list li:nth-child(3n+1).p-find-univ-videos-bg-item {
    display: list-item;
  }
  .p-find-univ-videos-list li:nth-child(4n+1).p-find-univ-videos-bg-item {
    display: none;
  }
}
.p-find-univ-videos-bg-item {
  display: none;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos-bg-item {
    display: list-item;
    margin-left: 10px;
    margin-top: 10px;
    min-height: 240px;
    width: calc((100% - 10px) / 2);
    background-image: url("/images/finduniv/videos_deco03.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-videos-bg-item {
    width: calc((100% - 20px) / 3);
    min-height: 280px;
  }
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-videos-bg-item {
    width: calc((100% - 30px) / 4);
    min-height: 300px;
  }
}
.p-find-univ-videos-item {
  position: relative;
  display: flex;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
}
.p-find-univ-videos-item:nth-child(n+1) {
  margin-top: 10px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos-item {
    width: calc((100% - 10px) / 2);
  }
  .p-find-univ-videos-item:nth-child(n+1) {
    margin-top: 0;
  }
  .p-find-univ-videos-item:not(:nth-child(2n-1)) {
    margin-left: 10px;
  }
  .p-find-univ-videos-item:nth-child(n+3) {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-videos-item {
    width: calc((100% - 20px) / 3);
  }
  .p-find-univ-videos-item:not(:nth-child(2n-1)) {
    margin-left: 0;
  }
  .p-find-univ-videos-item:nth-child(n+3) {
    margin-top: 0;
  }
  .p-find-univ-videos-item:not(:nth-child(3n-2)) {
    margin-left: 10px;
  }
  .p-find-univ-videos-item:nth-child(n+4) {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-videos-item {
    width: calc((100% - 30px) / 4);
  }
  .p-find-univ-videos-item:not(:nth-child(3n-2)) {
    margin-left: 0;
  }
  .p-find-univ-videos-item:nth-child(n+4) {
    margin-top: 0;
  }
  .p-find-univ-videos-item:not(:nth-child(4n-3)) {
    margin-left: 10px;
  }
  .p-find-univ-videos-item:nth-child(n+5) {
    margin-top: 10px;
  }
}
.p-find-univ-videos-item-link {
  display: flex;
  align-items: stretch;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  min-height: 200px;
  width: 100%;
  background-size: cover;
  background-position: 5% center;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos-item-link {
    min-height: 240px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-videos-item-link {
    min-height: 280px;
  }
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-videos-item-link {
    min-height: 300px;
  }
}
.p-find-univ-videos-item-link .p-find-univ-videos-item-txt {
  font-family: "Robot", sans-serif;
}
.p-find-univ-videos-item-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  bottom: 17px;
  width: 40px;
  height: 40px;
  background-image: url("/images/finduniv/videos_icon_playback.png");
  background-size: cover;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos-item-link::after {
    left: 24px;
    bottom: 26px;
    width: 62px;
    height: 61px;
  }
}
.p-find-univ-videos-item-link:hover .p-find-univ-videos-item-inner {
  background-color: rgba(0, 0, 0, 0.85);
}
.p-find-univ-videos-item-inner {
  padding: 28px 16px 74px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  box-sizing: border-box;
  transition: background-color 230ms liner;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos-item-inner {
    padding: 42px 24px 110px;
  }
}
.p-find-univ-videos-item-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos-item-header {
    flex-direction: row;
    margin-bottom: 44px;
  }
}
.p-find-univ-videos-item-header-num {
  padding-top: 5px;
  font-size: 16px;
  font-family: "Robot", sans-serif;
}
.p-find-univ-videos-item-header-ttl {
  font-size: 24px;
  margin-left: 0;
  line-height: 1.33;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-videos-item-header-ttl {
    margin-left: 20px;
  }
}
.p-find-univ-videos-item-txt {
  letter-spacing: -0.01em;
  line-height: 1.5;
  word-break: break-word;
}

/* Schools
---------------------------------------------------- */
.p-find-univ-schools {
  position: relative;
  margin-top: 120px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools {
    margin-top: 160px;
  }
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools {
    margin-top: 180px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-schools {
    margin-top: 200px;
  }
}
.p-find-univ-schools::before {
  content: "";
  display: block;
  width: 95%;
  height: 25vw;
  min-height: 270px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/images/finduniv/schools_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 40%;
  z-index: 3;
}
@media only screen and (min-width: 375px) {
  .p-find-univ-schools::before {
    min-height: 300px;
  }
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools::before {
    min-height: 380px;
  }
}
.p-find-univ-schools .p-find-univ-sec-ttl {
  color: #4371d6;
  transform: translateY(-50%);
}
.p-find-univ-schools-header {
  position: relative;
  margin-bottom: 20px;
  z-index: 4;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-header {
    padding: 0 40px;
    margin-bottom: 60px;
  }
}
.p-find-univ-schools-header-intro {
  margin-bottom: 10px;
  color: #fff;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-header-intro {
    margin-bottom: 20px;
    width: 50%;
    min-width: 380px;
  }
}
.p-find-univ-schools-icon-info-btn {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  display: inline-flex;
  justify-content: start;
  align-items: center;
  text-decoration: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.p-find-univ-schools-icon-info-btn-i {
  width: 28px;
  height: 28px;
  color: #4371d6;
  background-color: #fff;
  font-size: 21px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-icon-info-btn-i {
    width: 43px;
    height: 43px;
    font-size: 31px;
  }
}
.p-find-univ-schools-icon-info-btn-text {
  margin-left: 10px;
  color: #fff;
  text-decoration: underline;
  font-size: 18px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-icon-info-btn-text {
    font-size: 24px;
  }
}
.p-find-univ-schools-icon-info-btn:hover .p-find-univ-schools-icon-info-btn-text {
  text-decoration: none;
}
.p-find-univ-schools-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 4;
}
.p-find-univ-schools-item {
  width: 100%;
}
.p-find-univ-schools-item:nth-child(n+2) {
  margin-top: 40px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-item:nth-child(n+2) {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-schools-item {
    width: calc((100% - 60px) / 2);
  }
  .p-find-univ-schools-item:nth-child(n+1) {
    margin-top: 0;
  }
  .p-find-univ-schools-item:nth-child(2n) {
    margin-left: 60px;
  }
  .p-find-univ-schools-item:nth-child(n+3) {
    margin-top: 80px;
  }
}
.p-find-univ-schools-item-img-link {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-item-img-link {
    margin-bottom: 40px;
  }
}
.p-find-univ-schools-item-img {
  border-radius: 4px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}
.p-find-univ-schools-name-link {
  display: block;
  font-size: 26px;
  text-decoration: none;
  margin-bottom: 20px;
  line-height: 1.025;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-name-link {
    font-size: 36px;
  }
}
.p-find-univ-schools-icon-list {
  display: flex;
  margin-bottom: 20px;
}
.p-find-univ-schools-icon, .p-find-univ-schools-icon--disabled {
  width: 40px;
  height: 28px;
  border-radius: 3px;
  background: linear-gradient(135deg, #4371d6 0%, #ac9ad1 100%);
  text-align: center;
  font-size: 18px;
  color: #fff;
}
.p-find-univ-schools-icon ~ .p-find-univ-schools-icon, .p-find-univ-schools-icon ~ .p-find-univ-schools-icon--disabled, .p-find-univ-schools-icon--disabled ~ .p-find-univ-schools-icon, .p-find-univ-schools-icon--disabled ~ .p-find-univ-schools-icon--disabled {
  margin-left: 7px;
}
.p-find-univ-schools-icon--disabled {
  opacity: 0.3;
}
.p-find-univ-schools-item-intro {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.66;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-item-intro {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
.p-find-univ-schools-item-intro-link {
  text-decoration: none;
}
.p-find-univ-schools-item-intro-link:hover {
  text-decoration: underline;
}
.p-find-univ-schools-details-link-container {
  text-align: right;
}
.p-find-univ-schools-details-link {
  position: relative;
  padding-right: 60px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-details-link {
    font-size: 20px;
    padding-right: 80px;
  }
}
.p-find-univ-schools-details-link::before, .p-find-univ-schools-details-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
}
.p-find-univ-schools-details-link::before {
  right: 0;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4371d6 0%, #ac9ad1 100%);
  border-radius: 50%;
  transform: translate(0, -50%);
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-details-link::before {
    width: 60px;
    height: 60px;
  }
}
.p-find-univ-schools-details-link::after {
  right: 10px;
  background-image: url("/images/finduniv/icon-next.png");
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  background-size: cover;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 600px) {
  .p-find-univ-schools-details-link::after {
    width: 20px;
    height: 20px;
  }
}
.p-find-univ-schools-details-link:hover {
  text-decoration: underline;
}
.p-find-univ-schools-details-link:hover::before {
  background: #111;
}
.p-find-univ-schools-icon-desc-intro {
  font-size: 16px;
  margin-bottom: 20px;
}
.p-find-univ-schools-icon-desc-list {
  display: flex;
  flex-wrap: wrap;
}
.p-find-univ-schools-icon-desc-list dt {
  padding: 10px 0;
  width: 15%;
  min-width: 66px;
}
.p-find-univ-schools-icon-desc-list dd {
  padding: 11px 0;
  width: 85%;
  max-width: calc(100% - 66px);
  font-size: 14px;
}
.p-find-univ-schools-icon-desc-list dd ~ dt,
.p-find-univ-schools-icon-desc-list dd ~ dd {
  border-top: 1px solid #999;
}
.p-find-univ-schools-icon-desc-label {
  display: inline-block;
  width: 40px;
  height: 28px;
  border-radius: 3px;
  background: linear-gradient(135deg, #4371d6 0%, #ac9ad1 100%);
  text-align: center;
  font-size: 18px;
  color: #fff;
}

/* Planning Sheet
---------------------------------------------------- */
.p-find-univ-planning {
  position: relative;
  padding: 130px 0 0;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-planning {
    padding: 260px 0 0;
  }
}
.p-find-univ-planning-header {
  position: absolute;
  display: inline-flex;
  top: 70px;
  width: 100%;
  min-height: 120px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("/images/finduniv/planning_sheet_bg.png");
  background-repeat: repeat-x;
  background-size: 200%;
  background-position: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 375px) {
  .p-find-univ-planning-header {
    top: 60px;
    min-height: 140px;
    background-size: 150%;
  }
}
@media only screen and (min-width: 600px) {
  .p-find-univ-planning-header {
    background-size: contain;
    top: 140px;
    min-height: 240px;
  }
}
.p-find-univ-planning-main {
  padding: 40px 0;
  background-color: #fff;
}
@media only screen and (min-width: 375px) {
  .p-find-univ-planning-main {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 600px) {
  .p-find-univ-planning-main {
    padding: 100px 0 80px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-planning-main {
    padding: 120px 0 100px;
  }
}
.p-find-univ-planning-container {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  justify-content: space-between;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-planning-container {
    flex-direction: row;
  }
  .p-find-univ-planning-container::after {
    content: "";
    display: block;
    position: absolute;
    height: 90%;
    width: 1px;
    left: 50%;
    top: 5%;
    background-color: #d8d8d8;
  }
}
.p-find-univ-planning-box--left, .p-find-univ-planning-box--right {
  width: 100%;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-planning-box--left, .p-find-univ-planning-box--right {
    width: 45%;
  }
}
.p-find-univ-planning-box--left::after {
  content: "";
  margin-top: 30px;
  display: block;
  height: 1px;
  width: 100%;
  background-color: #d8d8d8;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-planning-box--left::after {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-planning-box--left::after {
    display: none;
  }
}
.p-find-univ-planning-box--right {
  margin-top: 30px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-planning-box--right {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-planning-box--right {
    margin-top: 0;
  }
}
.p-find-univ-planning-intro ~ .p-find-univ-planning-intro {
  margin-top: 20px;
}
.p-find-univ-planning-item ~ .p-find-univ-planning-item {
  margin-top: 26px;
}
.p-find-univ-planning-pdf-link {
  display: flex;
  justify-content: left;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 15px 80px 15px 20px;
  min-height: 80px;
  font-size: 18px;
  border-radius: 5px;
  background: linear-gradient(90deg, #4371d6 0%, #ac9ad1 100%);
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  line-height: 1.33;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-planning-pdf-link {
    padding: 25px 100px 25px 33px;
    min-height: 114px;
    font-size: 24px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-planning-pdf-link {
    padding: 25px 100px 25px 33px;
    font-size: 22px;
  }
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-planning-pdf-link {
    padding: 25px calc(100% - 280px) 25px 33px;
    font-size: 24px;
  }
}
.p-find-univ-planning-pdf-link::before, .p-find-univ-planning-pdf-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
}
.p-find-univ-planning-pdf-link::before {
  right: 25px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(0, -50%);
}
@media only screen and (min-width: 600px) {
  .p-find-univ-planning-pdf-link::before {
    width: 60px;
    height: 60px;
  }
}
.p-find-univ-planning-pdf-link::after {
  right: 27px;
  background-image: url("/images/finduniv/icon-pdf.png");
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  background-size: cover;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 600px) {
  .p-find-univ-planning-pdf-link::after {
    right: 32px;
    width: 23px;
    height: 23px;
  }
}
.p-find-univ-planning-pdf-link:hover {
  background: #111;
}

/* SENGEN
---------------------------------------------------- */
.p-find-univ-sengen {
  padding: 100px 0 120px;
  background-image: url("/images/finduniv/sengen_deco01.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 70px;
  background-size: 20%;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen {
    padding: 140px 0 160px;
    background-position: calc(100% - 50px) 85px;
    background-size: 8%;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-sengen {
    padding: 200px 0 200px;
  }
}
.p-find-univ-sengen-intro {
  margin-top: 30px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen-intro {
    margin-top: 60px;
  }
}
.p-find-univ-sengen-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-sengen-container {
    flex-direction: row;
  }
}
.p-find-univ-sengen-box--left {
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen-box--left {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-sengen-box--left {
    margin-bottom: 0;
    width: 40%;
  }
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-sengen-box--left {
    width: 35%;
  }
}
.p-find-univ-sengen-box--right {
  width: 100%;
  position: relative;
}
.p-find-univ-sengen-box--right::after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: -40px;
  height: 100px;
  width: 100px;
  background-image: url("/images/finduniv/sengen_deco02.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen-box--right::after {
    left: -30px;
    bottom: -80px;
    height: 160px;
    width: 160px;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-sengen-box--right {
    width: 50%;
  }
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen-ttl-container {
    padding: 0 30px 0 40px;
  }
}
.p-find-univ-sengen-box-left-bg-container {
  padding: 0 0 60px;
  background-image: url("/images/finduniv/just-do-it.png");
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 95% 90%;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen-box-left-bg-container {
    padding: 0 30px 80px 40px;
    background-size: calc(14% + 250px);
    background-position: 95% 70%;
  }
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-sengen-box-left-bg-container {
    background-size: contain;
    padding: 0 30px 0 40px;
    background-position: 55% 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-sengen-box-left-bg-container {
    background-size: contain;
  }
}
.p-find-univ-sengen-form-link-container {
  padding: 30px 0;
  width: 100%;
  text-align: right;
  box-sizing: border-box;
}
@media only screen and (min-width: 1025px) {
  .p-find-univ-sengen-form-link-container {
    padding: 25% 0;
  }
}
@media only screen and (min-width: 1280px) {
  .p-find-univ-sengen-form-link-container {
    padding: 25% 0 30%;
  }
}
.p-find-univ-sengen-form-link {
  position: relative;
  padding-right: 60px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen-form-link {
    font-size: 20px;
    padding-right: 80px;
  }
}
.p-find-univ-sengen-form-link::before, .p-find-univ-sengen-form-link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
}
.p-find-univ-sengen-form-link::before {
  right: 0;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(0, -50%);
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen-form-link::before {
    width: 60px;
    height: 60px;
  }
}
.p-find-univ-sengen-form-link::after {
  right: 10px;
  background-image: url("/images/finduniv/icon-next-black.png");
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  background-size: cover;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen-form-link::after {
    width: 20px;
    height: 20px;
  }
}
.p-find-univ-sengen-form-link:hover {
  text-decoration: underline;
}
.p-find-univ-sengen-form-link:hover::before {
  background: #111;
}
.p-find-univ-sengen-form-link:hover::after {
  background-image: url("/images/finduniv/icon-next.png");
}
.p-find-univ-sengen-coming-soon-img {
  position: relative;
  z-index: 2;
}
.p-find-univ-sengen-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}
.p-find-univ-sengen-item {
  width: calc(33.33% - 6.6666666667px);
  height: auto;
  margin-left: 10px;
}
.p-find-univ-sengen-item:nth-child(3n+1) {
  margin-left: 0;
}
.p-find-univ-sengen-item:nth-child(n+4) {
  margin-top: 10px;
}
@media only screen and (min-width: 600px) {
  .p-find-univ-sengen-item {
    width: calc(33.33% - 13.3333333333px);
    margin-left: 20px;
  }
  .p-find-univ-sengen-item:nth-child(3n+1) {
    margin-left: 0;
  }
  .p-find-univ-sengen-item:nth-child(n+4) {
    margin-top: 20px;
  }
}
.p-find-univ-sengen-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.p-pre-arrival-admissions__point-title {
  margin-top: 15px;
  padding-right: 40px;
  padding-left: 40px;
}
.p-pre-arrival-admissions__point-sub {
  margin-top: 10px;
  padding-right: 40px;
  padding-left: 40px;
}
.p-pre-arrival-admissions__admission-box {
  margin: 20px 0 0;
  padding: 10px;
  background-color: #eaeaea;
  border: 1px solid #aaa;
}
.p-pre-arrival-admissions__admission-list {
  margin-top: 15px;
  margin-left: 1.5rem;
  list-style-type: disc !important;
}
.p-pre-arrival-admissions__admission-link-container {
  text-align: right;
}

/* ----------------------------------------------
   pages
   ---------------------------------------------- */
/* 各ページ固有部分 */
/* キャンペーンページ用CSS */
/* @forward url("special.scss"); */
/* ----------------------------------------------
   components
---------------------------------------------- */
/* 認証ボタン */
.auth-navigation {
  padding: 50px 10px 25px;
  text-align: right;
}

.auth-navigation__catchphrase {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.auth-navigation__container {
  display: block;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}

.auth-navigation__login-button {
  display: block;
  padding: 10px 15px;
  margin: 0 auto 30px;
  width: 100%;
  font-size: 19px;
  text-align: center;
  max-width: 600px;
  color: #fff;
  background-color: #c73a1e;
  box-sizing: border-box;
  text-decoration: none;
}

.auth-navigation__register-button {
  display: block;
  padding: 10px 15px;
  margin: 0 auto 30px;
  width: 100%;
  font-size: 19px;
  text-align: center;
  max-width: 600px;
  color: #fff;
  background-color: #36b120;
  box-sizing: border-box;
  text-decoration: none;
}

.auth-navigation__register-about {
  text-decoration: underline;
}

/* ----------------------------------------------
   plugin and tool
   ---------------------------------------------- */
/* shadowbox */
#sb-title-inner, #sb-info-inner, #sb-loading-inner, div.sb-message {
  font-family: "HelveticaNeue-Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  color: #fff;
}

#sb-container {
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: left;
  visibility: hidden;
  display: none;
}

#sb-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}

#sb-wrapper {
  position: absolute;
  visibility: hidden;
  width: 100px;
}

#sb-wrapper-inner {
  position: relative;
  border: 1px solid #303030;
  overflow: hidden;
  height: 100px;
}

#sb-body {
  position: relative;
  height: 100%;
}

#sb-body-inner {
  position: absolute;
  height: 100%;
  width: 100%;
}

#sb-player.html {
  height: 100%;
  overflow: auto;
}

#sb-body img {
  border: none;
}

#sb-loading {
  position: relative;
  height: 100%;
}

#sb-loading-inner {
  position: absolute;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
  top: 50%;
  margin-top: -12px;
  width: 100%;
  text-align: center;
}

#sb-loading-inner span {
  background: url(/js/lib/shadowbox/loading.gif) no-repeat;
  padding-left: 34px;
  display: inline-block;
}

#sb-body, #sb-loading {
  background-color: #060606;
}

#sb-title, #sb-info {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#sb-title, #sb-title-inner {
  height: 26px;
  line-height: 26px;
}

#sb-title-inner {
  font-size: 16px;
}

#sb-info, #sb-info-inner {
  height: 20px;
  line-height: 20px;
}

#sb-info-inner {
  font-size: 12px;
}

#sb-nav {
  float: right;
  height: 16px;
  padding: 2px 0;
  width: 45%;
}

#sb-nav a {
  display: block;
  float: right;
  height: 16px;
  width: 16px;
  margin-left: 3px;
  cursor: pointer;
  background-repeat: no-repeat;
}

#sb-nav-close {
  background-image: url(/js/lib/shadowbox/close.png);
}

#sb-nav-next {
  background-image: url(/js/lib/shadowbox/next.png);
}

#sb-nav-previous {
  background-image: url(/js/lib/shadowbox/previous.png);
}

#sb-nav-play {
  background-image: url(/js/lib/shadowbox/play.png);
}

#sb-nav-pause {
  background-image: url(/js/lib/shadowbox/pause.png);
}

#sb-counter {
  float: left;
  width: 45%;
}

#sb-counter a {
  padding: 0 4px 0 0;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}

#sb-counter a.sb-counter-current {
  text-decoration: underline;
}

div.sb-message {
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

div.sb-message a:link, div.sb-message a:visited {
  color: #fff;
  text-decoration: underline;
}

/* jquery.msdropdown */
/************** Skin 1 *********************/
.dd {
  /*display:inline-block !important;*/
  text-align: left;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  float: left;
}

.dd .ddTitle {
  background: #f2f2f2;
  border: 1px solid #c3c3c3;
  padding: 3px;
  text-indent: 0;
  cursor: default;
  overflow: hidden;
  height: 16px;
}

.dd .ddTitle span.arrow {
  background: url(dd_arrow.gif) no-repeat 0 0;
  float: right;
  display: inline-block;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.dd .ddTitle span.ddTitleText {
  text-indent: 1px;
  overflow: hidden;
  line-height: 16px;
}

.dd .ddTitle span.ddTitleText img {
  text-align: left;
  padding: 0 2px 0 0;
}

.dd .ddTitle img.selected {
  padding: 0 3px 0 0;
  vertical-align: top;
}

.dd .ddChild {
  position: absolute;
  border: 1px solid #c3c3c3;
  border-top: none;
  display: none;
  margin: 0;
  width: auto;
  overflow: auto;
  overflow-x: hidden !important;
  background-color: #ffffff;
}

.dd .ddChild .opta a, .dd .ddChild .opta a:visited {
  padding-left: 10px;
}

.dd .ddChild a {
  display: block;
  padding: 2px 0 2px 3px;
  text-decoration: none;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  height: 15px;
}

.dd .ddChild a:hover {
  background-color: #66CCFF;
}

.dd .ddChild a img {
  border: 0;
  padding: 0 2px 0 0;
  vertical-align: middle;
}

.dd .ddChild a.selected {
  background-color: #66CCFF;
}

.hidden {
  display: none;
}

.dd .borderTop {
  border-top: 1px solid #c3c3c3 !important;
}

.dd .noBorderTop {
  border-top: none 0 !important;
}

/************** Skin 2 *********************/
.dd2 {
  /*display:inline-block !important;*/
  text-align: left;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  float: left;
}

.dd2 .ddTitle {
  background: transparent url(../images/msDropDown.gif) no-repeat;
  padding: 0 3px;
  text-indent: 0;
  cursor: default;
  overflow: hidden;
  height: 36px;
}

.dd2 .ddTitle span.arrow {
  background: transparent url(../images/icon-arrow.gif) no-repeat 0 0;
  float: right;
  display: inline-block;
  width: 27px;
  height: 27px;
  cursor: pointer;
  top: 5px;
  position: relative;
  right: 2px;
}

.dd2 .ddTitle span.ddTitleText {
  text-indent: 1px;
  overflow: hidden;
  line-height: 33px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  _position: relative;
  _top: 4px;
}

.dd2 .ddTitle span.ddTitleText img {
  text-align: left;
  padding: 0 2px 0 0;
}

.dd2 .ddTitle img.selected {
  padding: 0 2px 0 0;
  vertical-align: top;
}

.dd2 .ddChild {
  position: absolute;
  border: 1px solid #c3c3c3;
  border-top: none;
  display: none;
  margin: 0;
  width: auto;
  overflow: auto;
  overflow-x: hidden !important;
  background-color: #ffffff;
  font-size: 14px;
}

.dd2 .ddChild .opta a, .dd2 .ddChild .opta a:visited {
  padding-left: 10px;
}

.dd2 .ddChild a {
  display: block;
  padding: 3px 0 3px 3px;
  text-decoration: none;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.dd2 .ddChild a:hover {
  background-color: #66CCFF;
}

.dd2 .ddChild a img {
  border: 0;
  padding: 0 2px 0 0;
  vertical-align: middle;
}

.dd2 .ddChild a.selected {
  background-color: #66CCFF;
}

.dd2 .borderTop {
  border-top: 1px solid #c3c3c3 !important;
}

.dd2 .noBorderTop {
  border-top: none 0 !important;
}

/************* use sprite *****************/
.dd .ddChild a.sprite, .dd .ddChild a.sprite:visited {
  background-image: url(../icons/sprite.gif);
  background-repeat: no-repeat;
  padding-left: 24px;
}

.dd .ddChild a.calendar, .dd .ddChild a.calendar:visited {
  background-position: 0 -404px;
}

.dd .ddChild a.shoppingcart, .dd .ddChild a.shoppingcart:visited {
  background-position: 0 -330px;
}

.dd .ddChild a.cd, .dd .ddChild a.cd:visited {
  background-position: 0 -439px;
}

.dd .ddChild a.email, .dd .ddChild a.email:visited {
  background-position: 0 -256px;
}

.dd .ddChild a.faq, .dd .ddChild a.faq:visited {
  background-position: 0 -183px;
}

.dd .ddChild a.games,
.dd .ddChild a.games:visited {
  background-position: 0 -365px;
}

.dd .ddChild a.music, .dd .ddChild a.music:visited {
  background-position: 0 -146px;
}

.dd .ddChild a.phone, .dd .ddChild a.phone:visited {
  background-position: 0 -109px;
}

.dd .ddChild a.graph, .dd .ddChild a.graph:visited {
  background-position: 0 -73px;
}

.dd .ddChild a.secured, .dd .ddChild a.secured:visited {
  background-position: 0 -37px;
}

.dd .ddChild a.video, .dd .ddChild a.video:visited {
  background-position: 0 0;
}

/*******************************/
/* fontawesome */
/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.3.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  transform: scale(1, -1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before, .fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before, .fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before, .fa-users:before {
  content: "\f0c0";
}

.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before, .fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before, .fa-usd:before {
  content: "\f155";
}

.fa-rupee:before, .fa-inr:before {
  content: "\f156";
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158";
}

.fa-won:before, .fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before, .fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before, .fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-genderless:before, .fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before, .fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

/* ----------------------------------------------
   override
   ---------------------------------------------- */
/* shadowbox for IE6 */
#sb-title {
  border: 0px solid;
}

#sb-info {
  border: 0px solid;
}
