@charset "UTF-8";
/* fonts */
/* MIXIN */
@-webkit-keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* fonts */
/* MIXIN */
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
body {
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", system-ui, sans-serif;
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
  overflow: hidden;
}

.is-button {
  display: block;
  min-width: 200px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #4F8BCA;
  background-color: #4F8BCA;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
.is-button:hover {
  color: #fff;
  border: 1px solid #003E92;
  background-color: #003E92;
  cursor: pointer;
}
.is-button.is-dark {
  border: 1px solid #003E92;
  background-color: #003E92;
}
.is-button.is-dark:hover {
  opacity: 0.8;
}
.is-button.is-border {
  color: #353C45;
  border: 1px solid #353C45;
  background-color: transparent;
}
.is-button.is-border:hover {
  opacity: 0.8;
}
.is-button:disabled, .is-button:disabled:hover {
  border: 1px solid #aaa;
  background-color: #aaa;
  cursor: default;
}

.is-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.topicpath {
  display: none;
}

.note {
  font-size: 12px;
  font-size: 0.75rem;
}

/* fonts */
/* MIXIN */
header {
  position: relative;
  z-index: 5;
  height: 50px;
}
header .is-button {
  width: inherit;
  min-width: inherit;
  padding: 8px 28px;
  font-size: 14px;
  font-size: 0.875rem;
}

.main-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
}
.main-header_logo {
  width: 70px;
  height: auto;
}
.main-header_fujitsu {
  width: 56px;
  height: auto;
}
.main-header__functions {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.main-header__functions_buttons, .main-header__functions_language {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header__functions_buttons li {
  margin-right: 15px;
}
.main-header__functions_login {
  border: 1px solid #003E92;
  background-color: #fff;
  color: #003E92;
}
.main-header__functions_login:hover {
  color: #fff;
  background-color: #003E92;
}
.main-header__functions_language li {
  border-right: 1px solid #CDD4DD;
}
.main-header__functions_language li:last-of-type {
  border-right: 0;
}
.main-header__functions_language span {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  margin-left: 5px;
  padding: 5px 15px;
  color: #333;
  font-size: 13px;
  font-size: 0.8125rem;
}
.main-header__functions_language span:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4F8BCA;
  opacity: 0.15;
}

.main-nav {
  display: block;
}
.main-nav .main-header__functions {
  display: flex;
  width: 100%;
}
.main-nav .main-header__functions_buttons {
  margin-top: 30px;
}
.main-nav .main-header__functions_buttons li {
  margin-left: 5px;
  margin-right: 5px;
}
.main-nav .main-header__functions_language {
  margin-top: 30px;
}
.main-nav__humberger {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
  width: 50px;
  height: 50px;
  padding: 9px 0;
  background-color: #353C45;
  border: 0;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  font-size: 9px;
  font-size: 0.5625rem;
  text-align: center;
}
.main-nav__humberger::after {
  display: none;
}
.main-nav__humberger-line {
  display: block;
  width: 25px;
  height: 2px;
  opacity: 1;
  background-color: #fff;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  transition-property: all;
  transform-origin: center;
}
.main-nav__humberger-lines {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 25px;
  height: 18px;
  margin: auto;
  margin-bottom: 4px;
}
.main-nav__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
  flex-direction: column;
  position: fixed;
  z-index: 49;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 50px;
  overflow-y: auto;
  background-color: #fff;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-property: transform;
  transform-origin: top right;
  transform: translateX(104vw);
}
.main-nav__list-child {
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #CDD4DD;
}
.main-nav__list-child li {
  display: block;
  border-top: 1px solid #CDD4DD;
  font-size: 16px;
  font-size: 1rem;
}
.main-nav__list-child li.nav_level_2_head {
  display: none;
}
.main-nav__list-child span {
  position: relative;
  display: block;
  padding: 16px 20px;
  line-height: 1;
}
.main-nav__list-child a {
  color: #333;
}
.main-nav__list-child .main-nav__list-child {
  background: #fff;
}
.main-nav__list-child .main-nav__list-child li {
  font-size: 14px;
  font-size: 0.875rem;
}
.main-nav__list-child .main-nav__list-child li span::before, .main-nav__list-child .main-nav__list-child li span::after {
  display: none;
}
.main-nav__list-child .main-nav__list-child .main-nav__list-child li {
  position: relative;
}
.main-nav__list-child .main-nav__list-child .main-nav__list-child li:before {
  content: "";
  position: absolute;
  display: block;
  height: 0;
  width: 0;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-color: transparent #4F8BCA;
  border-style: solid;
  border-width: 5px 0 5px 6px;
}
.main-nav__list-child .main-nav__list-child .main-nav__list-child li span {
  margin-left: 15px;
}

.has-child.nav_level_1 span::before, .has-child.nav_level_1 span::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 12px;
  right: 10px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #4F8BCA;
}
.has-child.nav_level_1 span::after {
  transform: rotate(90deg);
}
.has-child.nav_level_1 ul {
  max-height: 0;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  transition-property: all;
  transform-origin: left top;
  overflow: hidden;
  height: auto;
}
.has-child.nav_level_1 .is-show {
  max-height: 800px;
}
.has-child.nav_level_1 .is-show ul {
  max-height: 800px;
}
.has-child.nav_level_2 {
  font-weight: bold;
}
.has-child.nav_level_2::before {
  display: none;
}
.has-child.nav_level_2 ul {
  font-weight: normal;
}

.is-active {
  position: fixed;
}
.is-active .main-nav__list {
  transform: translateX(0);
}
.is-active .main-nav__humberger-line1 {
  transform: translateY(8px) rotate(45deg);
}
.is-active .main-nav__humberger-line2 {
  opacity: 0;
}
.is-active .main-nav__humberger-line3 {
  transform: translateY(-8px) rotate(-45deg);
}

#nav_search {
  display: none;
}

.search__form {
  box-sizing: border-box;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.search__form form {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 15px;
}
.search__form input[type=search] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  padding: 15px 40px 15px 15px;
  font-size: 16px;
  font-size: 1rem;
  border: 2px solid #CDD4DD;
  border-radius: 4px;
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", system-ui, sans-serif;
  font-weight: normal;
}
.search__form button[type=submit] {
  position: absolute;
  right: 10px;
  background: none;
  border: 0;
  padding: 0;
  margin-left: -35px;
  font-size: 24px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* fonts */
/* MIXIN */
.footer {
  position: relative;
  margin-top: 120px;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  background-color: #EFEFEF;
}
.footer__topbtn {
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  margin: auto;
  width: 180px;
  height: 72px;
}
.footer a {
  color: #333;
  cursor: default;
}
.footer a[href]:not([href=""]) {
  cursor: pointer;
}
.footer a:hover {
  color: #003E92;
}
.footer__navigation {
  font-size: 13px;
  font-size: 0.8125rem;
}
.footer__navigation__address {
  text-align: center;
}
.footer__navigation__address_logo {
  width: 120px;
  height: auto;
  margin: auto;
  margin-bottom: 10px;
}
.footer__navigation__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-grow: 1;
}
.footer__navigation__list ul {
  margin-top: 20px;
  font-weight: bold;
  line-height: 1.2;
}
.footer__navigation__list ul li {
  margin-top: 0.8rem;
}
.footer__navigation__list ul ul {
  padding-left: 0.5rem;
  font-weight: normal;
}
.footer__navigation__list_col {
  width: 50%;
}
.footer__navigation__row {
  margin-top: 40px;
  text-align: center;
}
.footer__navigation__row .container {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #CDD4DD;
}
.footer__navigation__row__list ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.footer__navigation__row__list li {
  padding-right: 20px;
  padding-left: 20px;
  border-right: 1px solid #CDD4DD;
}
.footer__navigation__row__list li:last-of-type {
  border-right: 0;
}
.footer small {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: normal;
}
.footer__floating {
  z-index: 100;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transition-property: opacity;
  transition-duration: 0.5s;
  opacity: 0;
  background: rgba(255, 255, 255, 0.8);
}
.footer__floating.fadein {
  opacity: 1;
}
.footer__floating ul {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.footer__floating__btn a {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.footer__floating__btn img {
  display: block;
  width: 35px;
  height: auto;
}
.footer__floating__label {
  display: block;
  width: 6rem;
}
.footer__floating__label span {
  display: none;
}
.footer__floating__label._form1 {
  color: #47B5AB;
}
.footer__floating__label._form2 {
  color: #AAB952;
}
.footer__floating__label._form3 {
  color: #4CA0D1;
}
.footer__contact {
  margin-top: 60px;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  background-color: #EFF3F8;
  text-align: center;
}
.footer__contact h2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #003E92;
  line-height: 1.2;
}
.footer__contact h3 {
  margin-top: 20px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #003E92;
}
.footer__contact p {
  margin-top: 20px;
  font-size: 14px;
  font-size: 0.875rem;
}
.footer__contact_info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
}
.footer__contact ._tel, .footer__contact ._web {
  text-align: left;
  flex-grow: 1;
  padding-bottom: 20px;
}
.footer__contact ._web {
  border-top: 1px solid #CDD4DD;
}
.footer__contact dl {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
}
.footer__contact dt {
  margin-top: 16px;
  font-size: 16px;
  font-size: 1rem;
  width: 20%;
  font-weight: 700;
}
.footer__contact dd {
  margin-top: 16px;
  font-size: 24px;
  font-size: 1.5rem;
  width: 80%;
  font-family: "Roboto", system-ui, sans-serif;
  color: #4F8BCA;
  font-weight: 700;
}
.footer__contact .is-button {
  width: 100%;
  text-align: center;
  font-weight: normal;
}

/* fonts */
/* MIXIN */
.top__carousel {
  position: relative;
  width: 100vw;
  background-color: #ddd;
}
.top__carousel .swiper-wrapper a, .top__carousel .swiper-wrapper img {
  display: block;
}
.top__carousel .swiper-wrapper img {
  width: 100%;
  height: auto;
}
.top__carousel .swiper-pagination {
  display: none;
}
.top__content {
  margin-top: 60px;
}
.top__content__h2 {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
}
.top__content__h2 span {
  display: block;
}
.top__content__h2_en {
  margin-right: 20px;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.top__content__h2_en::first-letter {
  color: #4F8BCA;
}
.top__content__h2_ja {
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", system-ui, sans-serif;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}
.top__content {
  margin-top: 64px;
  padding-left: 20px;
  padding-right: 20px;
}
.top__content__list {
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-size: 0.875rem;
}
.top__content__list li {
  padding: 15px 20px;
  border-bottom: 1px solid #CCCCCC;
}
.top__content__list li:first-of-type {
  border-top: 1px solid #CCCCCC;
}
.top__content__list span {
  display: inline-block;
}
.top__content__list_title {
  display: block;
  margin-top: 10px;
}
.top__content__list_date {
  width: 5rem;
  margin-right: 30px;
  color: #333;
  font-weight: bold;
}
.top__content__list_type {
  width: 115px;
  padding: 2px 20px;
  margin-right: 30px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  background-color: #4F8BCA;
  text-align: center;
}
.top__content__list_type.is-news {
  background-color: #003E92;
}
.top__content__list_type.is-support {
  background-color: #4F8BCA;
}
.top__content__list_type a {
  color: #fff;
  text-decoration: none;
}
.top__content__list_new {
  padding: 2px 10px;
  border: 1px solid #B49800;
  color: #B49800;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-left: auto;
}
.top__content__list_index {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: right;
  margin-top: 20px;
}
.top__content__list_index:after {
  content: "";
  position: absolute;
  display: block;
  height: 0;
  width: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-color: transparent #4F8BCA;
  border-style: solid;
  border-width: 5px 0 5px 6px;
}
.top__content__list_index a {
  display: inline-block;
  margin-right: 15px;
  color: #333;
}
.top__content-full__half_text {
  margin-top: 30px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
}
.top__content-full__image {
  margin-top: 40px;
  height: 66vw;
  margin-left: -20px;
  margin-right: -20px;
  background-size: cover;
  background-position: center;
  background-color: #fff;
}

.top_anime_fi {
  position: relative;
}
.top_anime_fi.top__content__h2 {
  padding: 10px;
  padding-left: 0;
}
.top_anime_fi.top__content__h2::before, .top_anime_fi.top__content__h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition-duration: 0.3s;
  transition-property: transform;
  transform: scaleX(1);
  transform-origin: left top;
}
.top_anime_fi.top__content__h2::before {
  background-color: #fff;
  transition-delay: 0.3s;
  z-index: 3;
}
.top_anime_fi.top__content__h2::after {
  background-color: #003E92;
  transition-delay: 0.6s;
  z-index: 2;
}
.top_anime_fi.top__content__h2.top_anime_show::before, .top_anime_fi.top__content__h2.top_anime_show::after {
  transform: scaleX(0);
}
.top_anime_fi.top__content-full__image::before, .top_anime_fi.top__content-full__image::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition-duration: 0.5s;
  transition-delay: 0.3s;
  transition-property: transform opacity;
  transform: scaleX(1);
}
.top_anime_fi.top__content-full__image::before {
  background-color: #fff;
  transition-delay: 0.3s;
  z-index: 3;
}
.top_anime_fi.top__content-full__image::after {
  background-color: #003E92;
  transition-delay: 0.8s;
  z-index: 2;
}
.top_anime_fi.top__content-full__image.top_anime_right::before, .top_anime_fi.top__content-full__image.top_anime_right::after {
  transform-origin: right top;
}
.top_anime_fi.top__content-full__image.top_anime_left::before, .top_anime_fi.top__content-full__image.top_anime_left::after {
  transform-origin: left top;
}
.top_anime_fi.top__content-full__image.top_anime_show::before, .top_anime_fi.top__content-full__image.top_anime_show::after {
  transform: scaleX(0);
}

/* fonts */
/* MIXIN */
.category__header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 200px;
  background-color: #CDD4DD;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.category__header__h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  z-index: 1;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}
.category__header__h1 span {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.category__header__h1_en {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  text-transform: uppercase;
}
.category__header__h1_ja {
  width: 100%;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}
.category__header__h1_entrytitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
.category__header__h1_thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  height: 50px;
}
.category__header__h1_thumbnail img {
  display: block;
  height: 50px;
  width: auto;
}
.category__header__seminar {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  height: 200px;
  overflow: hidden;
}
.category__header__seminar img {
  display: block;
  width: auto;
  height: 200px;
  min-height: 200px;
}
.category__header__seminar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}
.category__header::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #003E92;
  opacity: 0.2;
}
.category_description {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.products {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.products__card {
  width: 100%;
  margin-right: 15px;
  margin-left: 15px;
  margin-top: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.products__card:hover {
  background-color: #EFF3F8;
}
.products__card:hover h3 {
  text-decoration: underline;
}
.products__card:hover img {
  transform: scale(1.1);
}
.products__card__image {
  position: relative;
  height: 192px;
  background-color: #fff;
  overflow: hidden;
}
.products__card__image img {
  display: block;
  height: 192px;
  margin-left: auto;
  margin-right: auto;
  transform-origin: center center;
  transition-property: transform;
  transition-duration: 0.4s;
  transform: scale(1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: auto;
}
.products__card__text {
  padding: 20px;
  padding-left: 30px;
  font-size: 14px;
  font-size: 0.875rem;
}
.products__card h3 {
  position: relative;
  font-weight: bold;
  padding: 8px 15px 8px 30px;
  margin: 5px;
  font-size: 20px;
  font-size: 1.25rem;
  font-feature-settings: "palt";
  border-bottom: 1px solid #CCCCCC;
}
.products__card h3::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  background-color: #4F8BCA;
  width: 12px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.products__card h3:after {
  content: "";
  position: absolute;
  display: block;
  height: 0;
  width: 0;
  left: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-color: transparent #fff;
  border-style: solid;
  border-width: 5px 0 5px 6px;
}
.products__card a {
  color: #333;
}

.recruit__index,
.corporate__index {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.recruit__index__card,
.corporate__index__card {
  width: 100%;
  height: 192px;
  margin-right: 15px;
  margin-left: 15px;
  margin-top: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.recruit__index__card__image,
.corporate__index__card__image {
  overflow: hidden;
  height: 192px;
}
.recruit__index__card__image img,
.corporate__index__card__image img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: inherit;
  width: 100%;
  height: 100%;
}
.recruit__index a,
.corporate__index a {
  position: relative;
  display: block;
  height: 192px;
  color: #fff;
  background-color: #CCCCCC;
}
.recruit__index a h3,
.corporate__index a h3 {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
}
.recruit__index a::before,
.corporate__index a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(53, 60, 69, 0.5);
}
.recruit__index a:hover h3,
.corporate__index a:hover h3 {
  text-decoration: underline;
}
.recruit__index a:hover::before,
.corporate__index a:hover::before {
  background: rgba(0, 62, 146, 0.5);
}
.seminar__item {
  padding-top: 15px;
  padding-bottom: 15px;
  clear: left;
  border-top: 1px solid #CCCCCC;
}
.seminar__item h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 8px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.seminar__item h3 a {
  color: #333;
}
.seminar__item h3::after {
  display: block;
  margin-left: 15px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #CCCCCC;
}
.seminar__item._top {
  padding-top: 10px;
  padding-bottom: 10px;
}
.seminar__item._top h3 {
  margin-top: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}
.seminar ._date_detail {
  float: left;
  margin-right: 20px;
}
.seminar ._date_detail time {
  width: 100px;
  height: 90px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #003E92;
}
.seminar ._date_detail span {
  display: block;
  line-height: 1;
}
.seminar ._date_detail ._year {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
}
.seminar ._date_detail ._date {
  margin-top: 8px;
  margin-bottom: 8px;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
.seminar ._date_detail ._day {
  font-size: 12px;
  font-size: 0.75rem;
}
.seminar ._date_detail._top time {
  width: 70px;
  height: 63px;
  padding: 10px;
}
.seminar ._date_detail._top ._year {
  font-size: 13px;
  font-size: 0.8125rem;
}
.seminar ._date_detail._top ._date {
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 16px;
  font-size: 1rem;
}
.seminar ._date_detail._top ._day {
  font-size: 12px;
  font-size: 0.75rem;
}
.seminar ._related {
  clear: both;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-top: 20px;
  font-size: 12px;
  font-size: 0.75rem;
}
.seminar ._related .fas {
  color: #CCCCCC;
}
.seminar ._related dt {
  flex-shrink: 0;
  margin-right: 15px;
}
.seminar ._related a {
  color: #333;
  text-decoration: underline;
}
.seminar ._type {
  display: inline-block;
  box-sizing: border-box;
  min-width: 140px;
  width: 140px;
  padding: 5px;
  text-align: center;
  background-color: #4F8BCA;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
}
.seminar ._type a {
  color: #fff;
  text-decoration: none;
}
.seminar ._pdf {
  margin-top: 15px;
  text-align: right;
}
.seminar ._pdf a {
  display: inline-block;
  width: 150px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  background-color: #EFEFEF;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333;
}
.seminar ._pdf .fas {
  font-size: 24px;
  font-size: 1.5rem;
  margin-right: 10px;
  vertical-align: middle;
}
.seminar ._pdf._top a {
  background-color: #fff;
}
.seminar__list {
  margin-top: 40px;
  margin-right: 20px;
  margin-left: 20px;
  border-bottom: 1px;
}

/* fonts */
/* MIXIN */
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
hr,
.clearHidden {
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
}

.entry {
  margin-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
.entry h2, .entry h3 {
  margin-top: 60px;
  font-weight: bold;
}
.entry h4, .entry h5 {
  margin-top: 40px;
  font-weight: bold;
}
.entry h1._no_header,
.entry h2:not([class^=acms-]) {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 15px;
  font-size: 24px;
  font-size: 1.5rem;
  border-top: 3px solid #4F8BCA;
  border-bottom: 1px solid #CCCCCC;
  line-height: 1.2;
}
.entry h1._no_header a,
.entry h2:not([class^=acms-]) a {
  color: #333;
}
.entry h1._no_header .h2__category,
.entry h2:not([class^=acms-]) .h2__category {
  display: inline-block;
  color: #CCCCCC;
  font-size: 16px;
  font-size: 1rem;
  margin-left: 20px;
}
.entry h3:not([class^=acms-]) {
  padding: 16px;
  border-left: 6px solid #003E92;
  background-color: #4F8BCA;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
.entry h4 {
  padding: 15px 20px;
  border-top: 3px solid #4F8BCA;
  border-bottom: 1px solid #CDD4DD;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}
.entry h5 {
  padding-left: 20px;
  font-size: 16px;
  font-size: 1rem;
  border-left: 3px solid #4F8BCA;
}
.entry table {
  width: 100%;
  margin-top: 28px;
  border-top: 1px solid #CCCCCC;
}
.entry table td, .entry table th {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #CCCCCC;
}
.entry table th {
  padding-right: 0;
  padding-left: 0;
  color: #003E92;
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
}
.entry table._bgcolor {
  border: 0;
}
.entry table._bgcolor td, .entry table._bgcolor th {
  padding-left: 8px;
  padding-right: 8px;
  border: 0;
  text-align: center;
  border: 1px solid #fff;
}
.entry table._bgcolor th {
  color: #fff;
  background-color: #4F8BCA;
}
.entry table._bgcolor td {
  background-color: #EFF3F8;
}
.entry table._headercolor {
  border: 0;
}
.entry table._headercolor tr:nth-of-type(1) {
  border: 0;
}
.entry table._headercolor tr:nth-of-type(1) th {
  padding-left: 8px;
  padding-right: 8px;
  color: #fff;
  background-color: #6D8DB1;
}
.entry table._headercolor td, .entry table._headercolor th {
  text-align: center;
  padding-left: 8px;
  padding-right: 8px;
  border: 1px solid #fff;
}
.entry table._headercolor th, .entry table._headercolor td {
  background-color: #EFF3F8;
}
.entry table .acms-cell-text-center {
  text-align: center;
}
.entry table .acms-cell-text-middle {
  vertical-align: middle;
}
.entry ul {
  margin-top: 40px;
  padding-left: 10px;
  list-style: none;
}
.entry ul li {
  position: relative;
  margin-top: 1rem;
  padding-left: 25px;
  font-size: 16px;
  font-size: 1rem;
}
.entry ul li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 8px;
  left: 0;
  background-color: #003E92;
  border-radius: 4px;
}
.entry ol {
  margin-top: 40px;
  padding-left: 10px;
  list-style: none;
  counter-reset: ol_counter;
  font-size: 16px;
  font-size: 1rem;
}
.entry ol li {
  position: relative;
  margin-top: 1rem;
  padding-left: 25px;
  counter-increment: ol_counter;
}
.entry ol li::before {
  position: absolute;
  left: 0;
  content: counter(ol_counter) ". ";
  color: #003E92;
}
.entry dl {
  margin-top: 30px;
}
.entry dl dt {
  margin-top: 30px;
  color: #003E92;
  font-weight: bold;
}
.entry dl dd {
  margin-top: 0.6rem;
}
.entry p {
  margin-top: 30px;
  line-height: 1.6;
  font-size: 16px;
  font-size: 1rem;
}
.entry p.caption {
  margin-top: 8px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
}
.entry strong {
  font-weight: 800;
  color: #AC3434;
}
.entry em {
  font-weight: 700;
  text-decoration: underline;
  font-style: normal;
}
.entry__back_index {
  margin-top: 40px;
}
.entry__column {
  margin-top: 30px;
}
.entry__column_inner {
  padding: 0 20px 20px;
  border: 3px solid #EFF3F8;
}
.entry__column_inner h2, .entry__column_inner h3, .entry__column_inner h4, .entry__column_inner h5, .entry__column_inner p, .entry__column_inner ol, .entry__column_inner ul, .entry__column_inner table {
  margin-top: 20px;
}
.entry .list__line_date {
  margin: 0;
  padding: 0;
  margin-top: 30px;
  list-style: none;
}
.entry .list__line_date li {
  position: static;
  margin-top: 0;
  padding-left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  border-bottom: 1px solid #CCCCCC;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}
.entry .list__line_date li::before {
  display: none;
}
.entry .list__line_date time {
  display: block;
  padding: 10px 20px 0;
  font-weight: bold;
  white-space: nowrap;
}
.entry .list__line_date a {
  position: relative;
  display: block;
  flex-grow: 1;
  padding: 10px 20px;
  color: #003E92;
}
.entry .list__line_date a:hover {
  text-decoration: underline;
}
.entry .list__line_date a::after {
  content: "";
  position: absolute;
  display: block;
  height: 0;
  width: 0;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-color: transparent #4F8BCA;
  border-style: solid;
  border-width: 5px 0 5px 6px;
}
.entry .list__line_date._high a {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
}
.entry ._text-center {
  display: block;
  text-align: center;
}
.entry .unit__minivideo {
  width: 100%;
  margin-top: 30px;
  border: 1px solid #353C45;
  border-radius: 3px;
}
.entry .unit__minivideo p {
  margin-top: 20px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
}
.entry .unit__minivideo_video {
  width: 100%;
  padding: 20px;
  background-image: url(../../images/minivideo_bg.jpg);
  background-size: cover;
  background-position: left top;
}
.entry .unit__minivideo_text {
  padding: 20px;
  background-color: #fff;
}
.entry .unit__minivideo_text h3 {
  padding: 5px 0 5px 20px;
  margin: 0;
  border-left-color: #4F8BCA;
  border-left-width: 3px;
  line-height: 1;
  background-color: transparent;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
.entry .unit__minivideo_text_info {
  margin-top: 15px;
  border-top: 1px solid #CCCCCC;
  text-align: center;
}
.entry .unit__minivideo_text_info h3 {
  padding: 0;
  margin-top: 20px;
  font-weight: normal;
  border-left: 0;
}
.entry .unit__minivideo_text_info ._tel {
  margin-top: 10px;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #4F8BCA;
}
.entry .unit__minivideo_text_info ._time {
  margin-top: 5px;
}
.entry .unit__minivideo_icon {
  display: block;
  text-align: right;
}
.entry .unit__minivideo_icon img {
  display: inline-block;
  width: 65px;
  height: auto;
}

.entry-body {
  margin-top: 40px;
}

[class^=column-media-] {
  margin-top: 30px;
}

.search_list {
  padding-left: 20px;
  padding-right: 20px;
}
.search_list dt {
  font-size: 18px;
  font-size: 1.125rem;
}
.search_list dd {
  padding-bottom: 20px;
  border-bottom: 1px dotted #CDD4DD;
  font-size: 14px;
  font-size: 0.875rem;
}

.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
}
.pager li {
  list-style: none;
  margin: 0;
  margin-top: 40px;
  padding: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.pager li::before {
  display: none;
}
.pager li a {
  color: #333;
}
.pager li .page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  margin-left: 6px;
  margin-right: 6px;
  background-color: #fff;
  border-radius: 13px;
}
.pager li.cur .page {
  font-size: 12px;
  font-size: 0.75rem;
  background-color: #003E92;
  color: #fff;
}

.inquiry_info {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: -30px;
  border: 3px solid #4F8BCA;
}
.inquiry_info__content {
  padding: 20px;
}
.inquiry_info ._tel {
  padding-bottom: 20px;
}
.inquiry_info ._web {
  padding-top: 20px;
  border-top: 1px solid #4F8BCA;
}
.inquiry_info h2 {
  padding: 16px;
  background-color: #4F8BCA;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.inquiry_info h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
.inquiry_info ._number {
  font-weight: bold;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  color: #4F8BCA;
  text-align: center;
}
.inquiry_info .is-button {
  margin-top: 10px;
  text-align: center;
}

/* fonts */
/* MIXIN */
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
#main-nav_member {
  display: block;
}

.member {
  padding-bottom: 40px;
}
.member .entry h1 {
  padding-bottom: 10px;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  border-bottom: 4px solid #003E92;
  color: #003E92;
}
.member .entry h2._simple {
  margin-bottom: -10px;
  padding: 0;
  border: 0;
  color: #003E92;
}
.member .entry table td, .member .entry table th {
  border: 1px solid #CDD4DD;
}
.member .entry h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  padding: 15px 10px;
  font-size: 15px;
  font-size: 0.9375rem;
}
.member .entry ul li {
  font-size: 15px;
  font-size: 0.9375rem;
}
.member .category__header {
  position: relative;
  background-position: left top;
  background-size: cover;
  background-color: #fff;
  height: auto;
}
.member .category__header .container {
  width: 100%;
  display: flex;
  align-items: center;
}
.member .category__header__h1 {
  display: block;
  color: #003E92;
  text-shadow: none;
  text-align: left;
  font-size: 32px;
  font-size: 2rem;
}
.member .category__header__h1 span {
  padding: 5px;
  background: rgba(255, 255, 255, 0.6);
}
.member .category__header__h1 ._category {
  font-size: 20px;
  font-size: 1.25rem;
}
.member__userinfo {
  position: relative;
  margin: 20px 10px;
  border: 3px solid #4F8BCA;
}
.member__userinfo_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #4F8BCA;
  color: #fff;
  line-height: 1;
}
.member__userinfo_header h2 {
  order: 2;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}
.member__userinfo_header h2 span {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}
.member__userinfo_modify {
  order: 1;
}
.member__userinfo_modify a {
  display: block;
  padding: 8px 10px;
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
}
.member__userinfo_body {
  padding: 5px 20px 20px 0;
  background-color: #fff;
  color: #333;
}
.member__userinfo_body dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-top: 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
.member__userinfo_body dt {
  margin-left: 20px;
  padding-right: 10px;
  font-weight: bold;
  white-space: nowrap;
  border-right: 1px solid #CDD4DD;
}
.member__userinfo_body dd {
  padding-left: 10px;
}
.member__userinfo_body dd span {
  display: block;
}
.member__header {
  display: none;
}
.member__content {
  margin-top: 30px;
}
.member__search {
  margin-top: 30px;
  padding: 15px;
  background-color: #EFF3F8;
}
.member__search .search__form {
  flex-grow: 1;
}
.member__search h3 {
  display: flex;
  align-items: center;
  margin-right: 20px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
.member__search h3 i {
  display: inline-block;
  margin-right: 15px;
  font-size: 32px;
  font-size: 2rem;
  color: #003E92;
}
.member__search form {
  margin-top: 10px;
}
.member__enkaku {
  margin-top: 50px;
  text-align: right;
}
.member button.is-button {
  line-height: 1.5;
}
.member__qa {
  padding-bottom: 40px;
}
.member__qa_entry {
  margin-top: 60px;
}
.member__qa_header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  font-size: 0.8125rem;
}
.member__qa_header time {
  display: block;
  margin-right: 1rem;
}
.member__qa_tags {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
}
.member__qa_tags span {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
  padding: 6px 10px 4px;
  background-color: #003E92;
  color: #fff;
}
.member__qa_tags span a {
  color: #fff;
}
.member__qa_body h3._question {
  position: relative;
  min-height: 2.5rem;
  margin-top: 5px;
  border-left: 0;
  padding: 0;
  padding-top: 0.5rem;
  padding-left: 3.5rem;
  line-height: 1.4;
  color: #003E92;
  background-color: transparent;
}
.member__qa_body h3._question a {
  color: #fff;
}
.member__qa_body h3._question ._label {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #003E92;
  border-radius: 1.25rem;
  color: #fff;
}
.member__qa_body ._answer {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 3.5rem;
  margin-top: 20px;
}
.member__qa_body ._answer ._label {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 100%;
  background-color: #CDD4DD;
  color: #003E92;
  font-weight: bold;
}
.member__qa_body ._answer p {
  margin: 0;
  line-height: 1.8;
}
.member__qa_result {
  text-align: center;
}
.member__category ._tags {
  margin-top: 20px;
}
.member__category ._tags li {
  margin-top: 10px;
}
.member .list__line_date {
  margin-top: 10px;
}
.member .list__line_date li {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  border-bottom-style: dotted;
}
.member .list__line_date ._title {
  font-size: 16px;
  font-size: 1rem;
}
.member .list__line_date ._title time {
  padding: 4px 20px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
}
.member .list__line_date ._description ._download {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: 20px;
  margin-right: 20px;
}
.member .list__line_date ._description ._download a {
  margin-top: 0;
  white-space: nowrap;
}
.member .list__line_date ._description .is-button {
  min-width: inherit;
  flex-grow: 0;
  margin: 0;
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
}
.member .list__line_date ._description .is-button::after {
  display: none;
}
.member .is-wide {
  padding: 15px 30px;
  width: 100%;
}
.member_logo {
  margin-top: 30px;
}

/* fonts */
/* MIXIN */
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.recruit__form {
  margin-top: 40px;
  padding: 30px 10px;
  background-color: #EFF3F8;
}
.recruit__form input[type=text],
.recruit__form textarea,
.recruit__form input[type=file],
.recruit__form input[type=checkbox], .recruit__form__select {
  margin-top: 5px;
}

.form__required {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.form__required_mark {
  display: inline-block;
  padding: 2px 0 1px 0.5rem;
  color: #fff;
  font-weight: normal;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.5rem;
  text-align: center;
  background-color: #AC3434;
  border-radius: 3px;
  vertical-align: middle;
}
.form__submit_box {
  margin-top: 20px;
}
.form__submit_box p {
  margin-top: 20px;
}
.form input[type=text],
.form textarea {
  width: 100%;
  padding: 10px;
  margin-right: 5px;
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  background-color: #fff;
}
.form input[type=text]._short,
.form textarea._short {
  width: 8rem;
}
.form textarea {
  height: 8rem;
}
.form input[type=file] {
  margin-top: 20px;
}
.form input[type=checkbox] {
  margin-right: 5px;
  transform: scale(1.3);
}
.form__select {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  background-color: #fff;
}
.form__select::after {
  position: absolute;
  content: "▼";
  display: block;
  height: 12px;
  right: 5px;
  margin: auto;
  bottom: 0;
  top: 0;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}
.form select {
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 20px 8px 8px;
  margin: 0;
  background-color: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
}
.form select::-ms-expand {
  display: none;
}
.form button[type=submit] {
  margin-top: 0;
  padding: 15px 40px;
}
.form ._error {
  margin-top: 5px;
  color: red;
  font-size: 12px;
  font-size: 0.75rem;
}

table.form {
  width: 100%;
  margin-top: 40px;
}
table.form tr {
  display: block;
  margin-top: 20px;
}
table.form th, table.form td {
  display: block;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
table.form th {
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
}
table.form td {
  margin-top: 5px;
  margin-left: 15px;
  vertical-align: baseline;
}
table.form.confirm td {
  padding-top: 20px;
}

._attention {
  display: inline-block;
  margin-top: 40px;
  padding: 15px;
  border: 1px solid #a00;
  border-radius: 2px;
  background-color: #fff;
  font-size: 16px;
  font-size: 1rem;
}

.case__card:hover {
  background-color: #fff;
}
.case__card:hover h3 {
  text-decoration: none;
}
.case__card:hover img {
  transform: none !important;
}
.case__card h3:hover {
  text-decoration: underline;
}
.case__card__img {
  position: relative;
  height: 192px;
  padding: 10px;
  background: linear-gradient(#EFEFEF 0%, #CDD4DD 100%);
  overflow: hidden;
}
.case__card__img img {
  position: absolute;
  display: block;
  height: calc(192px - 20px);
  margin-left: auto;
  margin-right: auto;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
}
.case__card ul {
  margin-bottom: 5px;
}
.case__card li {
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
  border-bottom: 1px solid #CCCCCC;
}
.case__card li:after {
  content: "";
  position: absolute;
  display: block;
  height: 0;
  width: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-color: transparent #4F8BCA;
  border-style: solid;
  border-width: 5px 0 5px 6px;
}
.case__card li a {
  display: block;
  padding: 20px;
  line-height: 1;
}
.case__card li a:hover {
  background-color: #EFF3F8;
}

@media screen and (min-width: 1024px) {
  /* fonts */
  /* MIXIN */
  @-webkit-keyframes spinAround {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
  @keyframes spinAround {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
  .is-button {
    display: inline-block;
  }

  .topicpath {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    margin-top: 20px;
    line-height: 1;
  }
  .topicpath__home-icon {
    width: 20px;
    height: auto;
    display: block;
  }
  .topicpath li {
    display: block;
    padding: 0;
    margin: 0;
  }
  .topicpath li:first-of-type a::before {
    display: none;
  }
  .topicpath a, .topicpath span {
    color: #333;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .topicpath a::before, .topicpath span::before {
    content: ">";
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* fonts */
  /* MIXIN */
  header {
    position: static;
    height: auto;
    transition-property: top;
    transition-duration: 0.5s;
    top: -160px;
  }

  body.fixed header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-bottom: 5px;
    background-color: #fff;
  }
  .main-header {
    justify-content: space-between;
    padding-top: 20px;
  }
  .main-header__functions {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: flex-end;
  }
  .main-header__functions_buttons {
    order: 2;
  }
  .main-header__functions_language {
    order: 1;
    margin-right: 50px;
  }
  .main-header_logo {
    width: 120px;
  }
  .main-header_fujitsu {
    width: 106px;
  }

  #main-nav {
    z-index: 20;
  }

  #main-nav_bg {
    transition-property: height;
    transition-duration: 0.5s;
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 0;
    background-color: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  }

  .main-nav .main-header__functions {
    display: none;
  }
  .main-nav__humberger {
    display: none;
  }
  .main-nav__list {
    display: block;
    position: static;
    transform: none;
    overflow-y: visible;
    padding-top: 10px;
  }
  .main-nav__list-child {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    border: 0;
    border-right: 1px solid #CCCCCC;
  }
  .main-nav__list-child li {
    display: block;
    flex-grow: 1;
    flex-shrink: 0;
    border: 0;
    font-size: 14px;
    font-size: 0.875rem;
    border-left: 1px solid #CCCCCC;
    border-bottom: 3px solid #fff;
  }
  .main-nav__list-child li.nav_level_2_head {
    display: block;
    width: 100% !important;
    padding-top: 40px;
    margin-bottom: 20px;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 32px;
    font-size: 2rem;
    text-transform: uppercase;
  }
  .main-nav__list-child li.nav_level_2_head::first-letter {
    color: #4F8BCA;
  }
  .main-nav__list-child li.nav_level_2_head::before {
    display: none !important;
  }
  .main-nav__list-child li.nav_level_2_head span {
    display: inline-block;
    font-family: Hiragino Sans, "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", system-ui, sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
  }
  .main-nav__list-child li:hover {
    border-bottom: 3px solid #003E92;
  }
  .main-nav__list-child span {
    padding: 0;
  }
  .main-nav__list-child a {
    display: block;
    padding: 8px 0;
    text-align: center;
  }
  .main-nav__list-child .main-nav__list-child {
    display: none;
    width: 100%;
    border-right: 0;
  }
  .main-nav__list-child .main-nav__list-child .main-nav__list-child {
    display: block;
    position: static;
    border-right: 0;
  }
  .main-nav__list-child .main-nav__list-child .main-nav__list-child .nav_level_3 {
    width: 100%;
  }
  .main-nav__list > .main-nav__search {
    display: none;
  }
  .has-child.nav_level_1 span::before, .has-child.nav_level_1 span::after {
    display: none;
  }
  .has-child.nav_level_1 ul {
    transition: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: absolute;
    z-index: 100;
    left: 0;
    background-color: transparent;
  }
  .has-child.nav_level_1 ul li {
    width: 33%;
    position: relative;
    border: 0;
  }
  .has-child.nav_level_1 ul li:before {
    content: "";
    position: absolute;
    display: block;
    height: 0;
    width: 0;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-color: transparent #4F8BCA;
    border-style: solid;
    border-width: 5px 0 5px 6px;
  }
  .has-child.nav_level_1 ul li span {
    margin-left: 15px;
    padding: 5px 15px;
    line-height: 1.2;
  }
  .has-child.nav_level_1 ul li a {
    text-align: left;
  }
  .has-child.nav_level_1 li {
    position: relative;
  }
  .has-child.nav_level_1 ul {
    transition-delay: 0.1s;
    transition-property: opacity;
    transition-duration: 0.3s;
    opacity: 0;
  }
  .has-child:hover {
    opacity: 1;
    max-height: 800px;
    background-color: #fff;
  }
  .has-child:hover .main-nav__list-child {
    max-height: 800px;
  }
  .has-child:hover .main-nav__list-child::after {
    content: "";
    display: block;
    width: 33%;
  }
  .has-child:hover ul {
    opacity: 1;
    padding-bottom: 50px;
  }
  .has-child.nav_level_2 {
    font-weight: bold;
  }
  .has-child.nav_level_2::before {
    display: none !important;
  }
  .has-child.nav_level_2[data-column="2"] {
    width: 66%;
  }
  .has-child.nav_level_2[data-column="2"] .main-nav__list-child {
    display: flex;
  }
  .has-child.nav_level_2[data-column="2"] .nav_level_3 {
    width: 50%;
  }
  .has-child.nav_level_2 > span {
    margin-left: 0 !important;
    margin-right: 30px;
    padding-left: 0 !important;
    font-size: 16px;
    font-size: 1rem;
    border-bottom: 1px solid #CDD4DD;
  }
  .has-child.nav_level_2 ul {
    font-weight: normal;
  }

  #nav_search {
    display: block;
  }

  /* fonts */
  /* MIXIN */
  .footer {
    padding-bottom: 0;
  }
  .footer__navigation {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .footer__navigation .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .footer__navigation__address {
    margin-right: 60px;
    text-align: left;
  }
  .footer__navigation__address_logo {
    margin-left: 0;
    text-align: left;
    margin-bottom: 20px;
  }
  .footer__navigation__list {
    flex-wrap: nowrap;
  }
  .footer__navigation__list ul {
    margin-top: 0.8rem;
  }
  .footer__navigation__list_col {
    width: 33%;
  }
  .footer__navigation__row {
    text-align: left;
  }
  .footer__navigation__row__list {
    justify-content: flex-start;
  }
  .footer__navigation__row__list li {
    padding-left: 0;
    margin-right: 20px;
  }
  .footer small {
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 11px;
    font-size: 0.6875rem;
    font-weight: normal;
  }
  .footer__floating {
    left: auto;
    right: -6rem;
    bottom: 50%;
    background-color: transparent;
  }
  .footer__floating ul {
    display: flex;
    flex-direction: column;
  }
  .footer__floating__btn {
    margin-top: 10px;
    padding: 0 5px;
    border: 1px solid #99B3B3;
    border-right: 0;
    border-radius: 3px 0 0 3px;
    background-color: #fff;
    overflow: hidden;
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateX(0);
  }
  .footer__floating__btn:hover {
    transform: translateX(-6rem);
  }
  .footer__floating__btn img {
    width: 50px;
    height: 50px;
  }
  .footer__floating__label {
    text-align: center;
  }
  .footer__floating__label span {
    display: inline;
  }
  .footer__contact {
    margin-top: 120px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer__contact h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .footer__contact h3 {
    margin-top: 30px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .footer__contact p {
    margin-top: 20px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .footer__contact_info {
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
  }
  .footer__contact ._tel, .footer__contact ._web {
    text-align: left;
    flex-grow: 1;
    padding: 0;
  }
  .footer__contact ._tel {
    width: 60%;
  }
  .footer__contact ._web {
    border: 0;
    width: 40%;
  }
  .footer__contact dl {
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1;
  }
  .footer__contact dt {
    margin-top: 16px;
    font-size: 16px;
    font-size: 1rem;
    width: 20%;
    font-weight: 700;
  }
  .footer__contact dd {
    margin-top: 16px;
    font-size: 24px;
    font-size: 1.5rem;
    width: 80%;
    font-family: "Roboto", system-ui, sans-serif;
    color: #4F8BCA;
    font-weight: 700;
  }
  .footer__contact .is-button {
    width: 100%;
    text-align: center;
    font-weight: normal;
  }

  /* fonts */
  /* MIXIN */
  .top__carousel {
    width: 100%;
    min-height: 40vw;
    margin-top: 10px;
    background-color: #ddd;
    overflow: hidden;
  }
  .top__carousel .swiper-pagination {
    display: block;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: auto;
  }
  .top__carousel .swiper-pagination-bullet {
    width: 40px;
    height: 8px;
    margin: 0 7px;
    background-color: #fff;
    border-radius: 0;
    opacity: 1;
  }
  .top__carousel .swiper-pagination-bullet-active {
    background-color: #4F8BCA;
  }
  .top__content {
    position: relative;
    margin-top: 84px;
    padding: 0;
  }
  .top__content__h2:first-of-type {
    margin-top: 0;
  }
  .top__content__list {
    margin-top: 26px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .top__content__list li {
    padding: 15px 20px;
    border-bottom: 1px solid #CCCCCC;
  }
  .top__content__list li:first-of-type {
    border-top: 1px solid #CCCCCC;
  }
  .top__content__list li a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  .top__content__list span {
    display: block;
  }
  .top__content__list_title {
    margin-top: 0;
  }
  .top__content__list_type {
    width: 115px;
    padding: 2px 20px;
    margin-right: 30px;
    font-size: 12px;
    font-size: 0.75rem;
    color: #fff;
    background-color: #4F8BCA;
    text-align: center;
  }
  .top__content__list_type.is-news {
    background-color: #003E92;
  }
  .top__content__list_type a {
    color: #fff;
    text-decoration: none;
  }
  .top__content__list_new {
    padding: 2px 10px;
    border: 1px solid #B49800;
    color: #B49800;
    font-size: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-left: auto;
  }
  .top__content__list_index {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
  }
  .top__content-full {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 455px;
    margin-top: 0;
    background-color: #EFEFEF;
  }
  .top__content-full .top_anime_fi.top__content__h2::before {
    background-color: #EFEFEF;
  }
  .top__content-full__half {
    width: 50%;
    display: flex;
    -ms-grid-column-align: center;
    justify-self: center;
    align-items: center;
  }
  .top__content-full__half_index {
    margin-top: 30px;
  }
  .top__content-full__half_index .is-button {
    margin-left: 10px;
    margin-right: 10px;
  }
  .top__content-full__half_index-short {
    position: relative;
    margin-top: 10px;
    padding-right: 15px;
    text-align: right;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
  }
  .top__content-full__half_index-short a {
    color: #333;
  }
  .top__content-full__half_index-short:after {
    content: "";
    position: absolute;
    display: block;
    height: 0;
    width: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-color: transparent #4F8BCA;
    border-style: solid;
    border-width: 5px 0 5px 6px;
  }
  .top__content-full__half_text {
    margin-top: 20px;
  }
  .top__content-full__half_container {
    max-width: 560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .top__content-full__half_container._no_max {
    max-width: inherit;
    width: calc(100% - 30px);
  }
  .top__content-full__half-right {
    order: 2;
  }
  .top__content-full__half-left {
    order: 1;
  }
  .top__content-full__image {
    margin: 0;
    height: 100%;
  }

  /* fonts */
  /* MIXIN */
  section {
    margin-top: 60px;
  }

  .products {
    margin-left: -15px;
    margin-right: -15px;
  }
  .products__card {
    width: 30%;
  }
  .products__card._half-size {
    width: 47%;
  }

  .category__header {
    margin-top: 10px;
  }
  .category__header__h1 {
    flex-direction: row;
  }
  .category__header__h1_entrytitle {
    font-size: 32px;
    font-size: 2rem;
  }
  .category__header__h1_thumbnail {
    height: 80px;
    margin-right: 20px;
  }
  .category__header__h1_thumbnail img {
    height: 80px;
  }
  .category__header__seminar img {
    width: 33.33%;
    height: auto;
  }

  .recruit__index__card,
.corporate__index__card {
    width: 30%;
  }

  .seminar__list {
    margin-top: 30px;
    margin-right: 0;
    margin-left: 0;
  }
  .seminar__list._top {
    margin-top: 20px;
    margin-bottom: -20px;
  }
  .seminar__item {
    position: relative;
  }
  .seminar__item h3 {
    justify-content: flex-start;
    margin-right: 200px;
  }
  .seminar ._date_detail {
    margin-left: 20px;
  }
  .seminar ._pdf {
    position: absolute;
    margin: 0;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .seminar ._related {
    clear: none;
    padding-top: 12px;
    margin-right: 200px;
  }

  /* fonts */
  /* MIXIN */
  @keyframes spinAround {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
  .entry__column {
    width: 100%;
    margin-top: 40px;
    box-sizing: border-box;
  }
  .entry__column_inner {
    padding: 0 30px 30px;
  }
  .entry__column_inner h2, .entry__column_inner h3, .entry__column_inner h4, .entry__column_inner h5, .entry__column_inner p, .entry__column_inner ol, .entry__column_inner ul, .entry__column_inner table {
    margin-top: 30px;
  }
  .entry table td, .entry table th {
    padding-left: 20px;
    padding-right: 20px;
  }
  .entry ._old-content {
    width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
  .entry ._original img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: auto;
  }
  .entry .clearHidden {
    display: none;
  }
  .entry .list__line_date li {
    flex-direction: row;
  }
  .entry .list__line_date time, .entry .list__line_date a {
    padding: 10px 20px;
  }
  .entry .unit__minivideo {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
  }
  .entry .unit__minivideo_video {
    padding: 30px;
  }
  .entry .unit__minivideo_video video {
    width: 480px;
    height: auto;
  }
  .entry .unit__minivideo_text {
    padding: 30px;
  }

  .inquiry_info {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .inquiry_info__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 30px 0;
  }
  .inquiry_info ._tel {
    padding: 0 60px;
    width: 55%;
    flex-shrink: 0;
  }
  .inquiry_info ._tel div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
  .inquiry_info ._tel p {
    margin-left: 10px;
    margin-right: 10px;
  }
  .inquiry_info ._web {
    padding: 0 60px;
    padding-left: 95px;
    flex-shrink: 0;
    width: 45%;
    border-top: 0;
    border-left: 1px solid #4F8BCA;
  }
  .inquiry_info ._number {
    font-weight: bold;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: 32px;
    font-size: 2rem;
    color: #4F8BCA;
    text-align: center;
  }
  .inquiry_info .is-button {
    width: 100%;
  }

  [class^=column-media-] {
    width: auto !important;
  }
  [class^=column-media-] img {
    display: inline !important;
  }

  .column-media-left {
    float: left;
  }
  .column-media-right {
    float: right;
  }
  .column-media-center {
    text-align: center;
  }

  #main-nav_member {
    display: none;
  }

  .member .category__header {
    height: 200px;
  }
  .member .category__header__h1 {
    padding-left: 20%;
    font-size: 40px;
    font-size: 2.5rem;
  }
  .member__userinfo {
    position: absolute;
    right: 20px;
    top: -50px;
    margin-top: -20px;
    margin-bottom: inherit;
    min-width: 400px;
  }
  .member__userinfo_header {
    padding: 10px 20px;
  }
  .member__userinfo_header h2 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .member__header {
    display: block;
  }
  .member__header_button {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 10px;
  }
  .member__header_button_logout {
    background-color: #79CAC0;
    border-color: #79CAC0;
  }
  .member__header_button li {
    margin-left: 20px;
  }
  .member__header_button li .is-button {
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .member__header_button br {
    display: none;
  }
  .member__search {
    padding: 25px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 30px;
    padding: 25px 50px;
    background-color: #EFF3F8;
  }
  .member__search .search__form {
    flex-grow: 1;
  }
  .member__search form {
    margin-top: 0;
  }
  .member .list__line_date ._title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
  }
  .member .list__line_date ._title time {
    padding: 4px 20px;
    font-weight: normal;
  }
  .member .list__line_date ._description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-grow: 1;
  }

  /* fonts */
  /* MIXIN */
  @keyframes spinAround {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }
  .recruit__form {
    margin-top: 80px;
    padding: 60px 10px;
  }
  .recruit__form input[type=text],
.recruit__form textarea {
    margin-top: 20px;
  }
  .recruit__form input[type=file] {
    margin-top: 20px;
  }
  .recruit__form input[type=checkbox] {
    margin-top: 10px;
  }
  .recruit__form__select {
    margin-top: 20px;
  }
  .recruit__form th {
    padding-top: 30px;
  }

  .form input[type=text]._mid,
.form textarea._mid {
    width: 50%;
  }

  table.form tr {
    display: table-row;
  }
  table.form th, table.form td {
    display: table-cell;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 18px;
    padding-top: 18px;
    border-bottom: 1px solid #CCCCCC;
  }
  table.form th {
    font-weight: normal;
  }
  table.form td {
    width: 75%;
    margin-left: 0;
    vertical-align: baseline;
  }
}
.fa-file-pdf {
  color: #AC3434;
}

html {
  text-rendering: unset;
}

select {
  text-rendering: auto !important;
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
  animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}
/*# sourceMappingURL=asu.css.map */
