@charset "UTF-8";
/* ===============================================
# reset
=============================================== */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0px;
}

input[type=radio],
input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

input[type=checkbox]:focus + span::before {
  outline: 1px solid #9e9b9b;
  background-color: #F2F3F5;
}

input[type=radio]:focus + span {
  background-color: #f0f0f0; /* focus時の背景色 */
  border-radius: 4px;
}
input[type=radio]:focus + span::before {
  background-color: #e0e0e0; /* focus時のチェックボックス背景色 */
  border-color: #505050; /* focus時のボーダー色 */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding-top: 138px;
}
@media (max-width: 767px) {
  body {
    padding-top: 84px;
    font-size: 14px;
  }
}
body.preload .wow {
  opacity: 0 !important;
}

[id] {
  scroll-margin-top: 100px;
}
@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 64px;
  }
}

/* ===============================================
# 共通パーツ
=============================================== */
@media (min-width: 1100px) {
  .hidden-pc {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1147px) {
  .hidden-tab {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
}

.inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1147px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.broadway {
  font-family: "Broadway", "Limelight", sans-serif;
}

.canvas {
  width: 1200px;
  margin: 0 auto;
  max-width: 100%;
}

.head {
  background-color: #1C2688;
  color: #fff;
  font-weight: bold;
  width: 1200px;
  max-width: 100%;
  margin: 64px auto 24px auto;
  padding-left: 50px;
  font-size: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .head {
    font-size: 16px;
    padding-left: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
  }
}
.head::before {
  content: "";
  position: absolute;
  background-color: #3143e6;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 98%;
}
@media (max-width: 767px) {
  .head::before {
    width: 10px;
  }
}

table, td, th {
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

table {
  table-layout: auto;
}

.container {
  margin: 0 24px;
}
@media (max-width: 767px) {
  .container {
    margin: 0px 16px;
  }
}

.to-top {
  position: fixed;
  z-index: 30;
  right: 50%;
  bottom: 24px;
  -webkit-transform: translateX(600px);
          transform: translateX(600px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1147px) {
  .to-top {
    right: 12px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    bottom: 12px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#3143e6), to(#1C2688));
  background: linear-gradient(to bottom, #3143e6, #1C2688);
  padding: 24px 16px 12px 16px;
  border-radius: 5px 5px 0px 0px;
}
@media (max-width: 767px) {
  .to-top a {
    padding: 16px 8px 4px 8px;
  }
}
.to-top a::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 12px;
  right: calc(50% - 6px);
  position: absolute;
  rotate: -45deg;
}
.to-top.premium a {
  background: -webkit-gradient(linear, left top, left bottom, from(#009077), to(#006060));
  background: linear-gradient(to bottom, #009077, #006060);
}

.return-top-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 64px auto;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  border-radius: 0px;
  width: 200px;
  height: 40px;
  font-weight: bold;
  border: 1px solid #ffffff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.3);
  background-image: linear-gradient(315deg, #3143e6, #1C2688);
}
@media (max-width: 767px) {
  .return-top-button a {
    margin: 32px auto;
  }
}
.return-top-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: 45deg;
}
.return-top-button.premium a {
  background-image: linear-gradient(315deg, #009077, #006060);
}

/* ===============================================
# breadcrumb
=============================================== */
.breadcrumb__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #9e9b9b;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0 0 0 20px;
  border-bottom: #9e9b9b 1px solid;
}
@media (max-width: 767px) {
  .breadcrumb__nav {
    display: none;
  }
}
.breadcrumb__nav li:not(:last-of-type)::after {
  content: ">>";
  color: #B3B3B3;
  margin-left: 12px;
  margin-right: 12px;
}

.cv {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .cv {
    margin-bottom: 32px;
  }
}
.cv__p {
  text-align: center;
  margin-bottom: 8px;
}
.cv__p span {
  position: relative;
}
.cv__p span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  bottom: 0px;
  left: -24px;
  background-color: #333;
  rotate: -20deg;
}
.cv__p span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  bottom: 0px;
  right: -24px;
  background-color: #333;
  rotate: 20deg;
}
.cv__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #1C2688;
  padding: 40px 0px;
}
@media (max-width: 767px) {
  .cv__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 20px;
  }
}
.cv__links a {
  font-size: 22px;
  letter-spacing: 0.01em;
  border: 1px solid #9e9b9b;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100px;
  width: 350px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 56px 0px 32px;
  font-weight: bold;
  border-radius: 8px;
  position: relative;
  background-color: #fff;
}
@media (max-width: 1147px) {
  .cv__links a {
    font-size: 18px;
    height: 80px;
    width: 300px;
  }
}
@media (max-width: 767px) {
  .cv__links a {
    width: 100%;
    height: 64px;
  }
  .cv__links a:not(:last-child) {
    margin-bottom: 24px;
  }
}
.cv__links a::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-bottom: 2px solid #1C2688;
  border-right: 2px solid #1C2688;
  rotate: -45deg;
}
@media (max-width: 1147px) {
  .cv__links a::after {
    width: 12px;
    height: 12px;
  }
}

/* ===============================================
# other-event
=============================================== */
.other-event__container {
  margin: 24px auto;
}
.other-event__category-title {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 18px;
}
.other-event__category-title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #009077;
}
.other-event__category-title.cn::before {
  background-color: #D96600;
}
@media (max-width: 767px) {
  .other-event__category-title {
    font-size: 16px;
  }
}
.other-event__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .other-event__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.other-event__item {
  height: auto;
  margin-bottom: 16px;
}
.other-event__item img {
  vertical-align: top;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
}
@media (min-width: 1100px) {
  .other-event__item {
    width: calc(25% - 18px);
  }
  .other-event__item:not(:nth-child(4n+1)) {
    margin-left: 24px;
  }
}
@media (max-width: 1147px) {
  .other-event__item {
    width: calc(33.3% - 16px);
  }
  .other-event__item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
}
@media (max-width: 767px) {
  .other-event__item {
    width: 70%;
    margin-bottom: 16px;
    margin-left: 0px;
  }
  .other-event__item:not(:nth-child(3n+1)) {
    margin-left: 0px;
  }
}

/* ===============================================
# building-list (SCSS)
=============================================== */
.building-list {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .building-list {
    margin-top: 16px;
  }
}
.building-list__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
}
.building-list__title {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), to(#cbaf4d)) 100%;
  background: linear-gradient(to bottom, transparent 60%, #cbaf4d) 100%;
  padding-left: 56px;
  line-height: 40px;
  font-size: 22px;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .building-list__title {
    font-size: 18px;
    padding-left: 48px;
  }
}
.building-list__title::before {
  content: "";
  background: url(https://www.jasmec.co.jp/img/icon/contact_t.png) center center/contain;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .building-list__title::before {
    width: 22px;
    height: 22px;
  }
}
.building-list__card {
  width: calc(25% - 18px);
  margin: 20px 0;
  border: 2px solid #1C2688;
  padding: 16px;
}
.building-list__card.premium {
  border-color: #006060;
}
.building-list__card.sirius {
  border-color: #B63C53;
}
@media (min-width: 1100px) {
  .building-list__card:not(:nth-child(4n+1)) {
    margin-left: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1147px) {
  .building-list__card {
    width: calc(33.3% - 10.6666666667px);
  }
  .building-list__card:not(:nth-child(3n+1)) {
    margin-left: 16px;
  }
}
@media (max-width: 767px) {
  .building-list__card {
    width: calc(50% - 4px);
    margin-top: 8px;
    padding: 16px 4px;
  }
  .building-list__card:nth-child(2n) {
    margin-left: 8px;
  }
}

.building-card__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .building-card__title {
    font-size: 16px;
  }
}
.building-card__title .border {
  padding: 6px 4px;
  border-bottom: 2px solid #1C2688;
}
@media (max-width: 767px) {
  .building-card__title .border {
    padding: 2px 3px;
  }
}
.building-card__title .border.sirius {
  border-color: #B63C53;
}
.building-card__title .border.premium {
  border-color: #006060;
}
.building-card__tel {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .building-card__tel {
    font-size: 16px;
  }
}
.building-card__tel a {
  display: block;
  position: relative;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .building-card__tel a {
    padding-left: 24px;
  }
}
.building-card__tel a:visited {
  color: #333;
}
.building-card__tel a::before {
  content: "";
  background: url(https://www.jasmec.co.jp/img/icon/guide-tel-icon.png) center center/cover;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .building-card__tel a::before {
    width: 18px;
    height: 18px;
  }
}
.building-card__minutes {
  font-size: 16px;
  font-weight: bold;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .building-card__minutes {
    font-size: 14px;
    padding-left: 24px;
  }
}
.building-card__minutes::before {
  content: "";
  background: url(https://www.jasmec.co.jp/img/icon/guide-map-icon.png) center center/cover;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .building-card__minutes::before {
    width: 18px;
    height: 18px;
  }
}
.building-card__address {
  font-size: 14px;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .building-card__address {
    display: none;
    font-size: 12px;
    padding-left: 24px;
  }
}
.building-card__btn a {
  display: inline-block;
  font-size: 14px;
  margin: 8px 16px 2px 28px;
  padding: 4px 48px 8px 16px;
  border-radius: 50px;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .building-card__btn a {
    margin: 4px auto;
    padding: 2px 38px 4px 12px;
  }
}
.building-card__btn a::before, .building-card__btn a::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.building-card__btn a::before {
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(40deg);
          transform: translateY(calc(-50% - 2px)) rotate(40deg);
  width: 8px;
  height: 2px;
}
@media (max-width: 767px) {
  .building-card__btn a::before {
    right: 6px;
  }
}
.building-card__btn a::after {
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 2px;
}
@media (max-width: 767px) {
  .building-card__btn a::after {
    width: 16px;
    right: 8px;
  }
}
.building-card__btn a:hover::before, .building-card__btn a:hover::after {
  right: 5px;
}
.building-card__detail-link {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.building-card__detail-link a {
  margin: 0;
  background-color: #B63C53;
}
.building-card__map-link {
  margin-top: 16px;
}
.building-card__map-link a {
  background-color: #B63C53;
}
.building-card__kousha-link a {
  background-color: #1C2688;
}
.building-card__kousha-link.premium a {
  background-color: #006060;
}

/* ===============================================
# zentou
=============================================== */
.zentou-other {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}
.zentou-other__text {
  margin-bottom: 8px;
}
.zentou-other__wrap {
  padding: 32px 0px;
  border-top: 1px solid #9e9b9b;
  border-bottom: 1px solid #9e9b9b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .zentou-other__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px 0px;
  }
}
.zentou-other__wrap li {
  width: calc(33.3% - 16px);
  text-align: center;
}
.zentou-other__wrap li:not(:first-child) {
  margin-left: 24px;
}
@media (max-width: 767px) {
  .zentou-other__wrap li {
    width: 100%;
  }
  .zentou-other__wrap li:not(:first-child) {
    margin-left: 0px;
    margin-top: 24px;
  }
}
.zentou-other__link {
  max-width: 100%;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  padding: 16px 24px 16px 72px;
  color: #fff;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.zentou-other__link::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../../../../img/zentou/zentou_hand_white.png") no-repeat center center/contain;
}
.zentou-other__link.zentosyo {
  background-color: #E60115;
}
.zentou-other__link.zentochu {
  background-color: #123A8F;
}
.zentou-other__link.zentoko {
  background-color: #019380;
}

/* ===============================================
# header
=============================================== */
.header {
  width: 1200px;
  position: fixed;
  top: 0;
  left: 50%;
  max-width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
}

.header__inner {
  background: url("https://www.jasmec.co.jp/img/sky.jpg") no-repeat top center/cover;
  width: 1200px;
  padding: 0 24px 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}
@media (max-width: 767px) {
  .header__inner {
    height: 64px;
  }
}

.header__title a {
  display: inline-block;
  vertical-align: middle;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1147px) {
  .header__title a {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .header__title a {
    font-size: 20px;
    line-height: 26px;
  }
}
.header__title a span {
  font-weight: normal;
}

.header-right {
  margin-left: auto;
}

.header__contact {
  width: 420px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}
@media (max-width: 767px) {
  .header__contact {
    display: none;
  }
}

.header__contact-p {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding-top: 2px;
}

.header__contact-content {
  padding: 3px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__contact-tel {
  width: calc(52% - 0.5px);
  padding-top: 3px;
  padding-left: 44px;
  position: relative;
}
.header__contact-tel::before {
  content: "";
  background: url("https://www.jasmec.co.jp/toshin/tsimg/header_tel-icon.png") no-repeat center center/cover;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__tel-num {
  font-size: 20px;
  font-weight: bold;
  line-height: 22px;
  letter-spacing: 0.03em;
}
@media (max-width: 1147px) {
  .header__tel-num {
    letter-spacing: 0;
  }
}

.header__tel-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  font-weight: bold;
  margin-top: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__tel-time-title {
  background-color: #B63C53;
  color: #fff;
  padding: 0px 6px;
}

.header__tel-time-p {
  font-size: 10px;
  font-weight: bold;
  margin: 0 3px;
}

.header__contact-bar {
  margin-top: 3px;
  width: 1px;
  height: 40px;
  background-color: #333;
}

.header__form-link {
  width: calc(48% - 0.5px);
  text-align: center;
  margin-top: 3px;
}
.header__form-link a {
  display: inline-block;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  padding: 8px 12px 8px 36px;
  color: #FFF;
  background: -webkit-gradient(linear, left top, left bottom, from(#B63C53), to(#852d3d));
  background: linear-gradient(#B63C53, #852d3d);
  border-radius: 5px;
  border: 1px solid #fff;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: relative;
}
.header__form-link a::before {
  content: "";
  background: url("https://www.jasmec.co.jp/toshin/tsimg/header_mail-icon.png") no-repeat center center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__form-link a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (min-width: 1100px) {
  .header__contact-sp {
    display: none;
  }
}
@media (max-width: 1147px) {
  .header__contact-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__contact-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__contact-sp-btn a img {
  width: 60px;
  margin-top: 16px;
  margin-left: 8px;
}

.header__bar {
  max-width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  background-color: #1C2688;
  text-align: right;
  font-weight: bold;
  color: #FFF;
  width: 100%;
  padding: 8px 20px 6px 0;
  position: relative;
}
@media (max-width: 767px) {
  .header__bar {
    font-size: 6px;
    padding: 4px 12px 2px 0;
  }
}
.header__bar::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .header__bar::before {
    height: 1px;
    top: 2px;
  }
}
.header__bar::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .header__bar::after {
    height: 1px;
    bottom: 2px;
  }
}

/* ===============================================
# footer
=============================================== */
.footer__wrap {
  margin-top: 64px;
  border-top: 1px solid #9e9b9b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 24px;
}
@media (max-width: 1147px) {
  .footer__wrap {
    display: block;
    padding-top: 0px;
  }
}

.footer__c-border {
  border-right: 1px solid #9e9b9b;
  margin: 0 16px;
}
@media (max-width: 1147px) {
  .footer__c-border {
    border-bottom: 1px solid #9e9b9b;
    margin: 16px 0;
  }
}

.footer__company {
  width: 33%;
  border-right: 1px solid #9e9b9b;
  padding: 16px;
  font-size: 14px;
}
@media (max-width: 1147px) {
  .footer__company {
    width: 100%;
    text-align: center;
    border-right: 0px;
    border-bottom: 1px solid #9e9b9b;
  }
}

.footer__company-name {
  font-size: 16px;
}

.footer__company-name-h {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer__company-email a {
  color: blue;
}

.footer__building-list {
  width: 47%;
  border-right: 1px solid #9e9b9b;
  padding: 16px;
}
@media (max-width: 1147px) {
  .footer__building-list {
    margin: 0 auto;
    width: 100%;
    border-right: 0px;
    border-bottom: 1px solid #9e9b9b;
  }
}

.footer__building-list-title {
  border-bottom: 1px dashed #9e9b9b;
  padding-left: 8px;
}
@media (max-width: 1147px) {
  .footer__building-list-title {
    text-align: center;
  }
}

.footer__building-list-logo {
  width: 30%;
  margin: 8px;
}
.footer__building-list-logo img {
  max-width: 150px;
}
@media (max-width: 767px) {
  .footer__building-list-logo img {
    width: 100%;
  }
}
@media (max-width: 1147px) {
  .footer__building-list-logo {
    text-align: center;
  }
}

.footer__building-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__building-list-ul {
  width: 70%;
  margin: 8px;
}
.footer__building-list-ul ul li {
  display: inline-block;
  margin-top: 8px;
  margin-right: 8px;
}

.footer__link {
  width: 20%;
  padding: 16px;
}
@media (max-width: 1147px) {
  .footer__link {
    width: 100%;
    text-align: center;
  }
}

.footer__link__button a {
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 5px;
  width: 200px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 64px;
  position: relative;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  margin: 0px auto 12px auto;
}
.footer__link__button a::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__link__button.nyujuku a {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#009077), to(#006060));
  background: linear-gradient(#009077, #006060);
}
.footer__link__button.nyujuku a::before {
  background: url("https://www.jasmec.co.jp/img/icon/link_white.png") no-repeat center center/contain;
}
.footer__link__button.gokaku a {
  color: #006060;
  border: 1px solid #F2F3F5;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#F2F3F5));
  background: linear-gradient(#fff, #F2F3F5);
}
.footer__link__button.gokaku a::before {
  background: url("https://www.jasmec.co.jp/img/icon/link_premium.png") no-repeat center center/contain;
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
.footer___sns-insta img {
  width: 36px;
}

.footer___sns-youtube img {
  height: 20px;
}

/* ===============================================
# 共通
=============================================== */
.topbar {
  border-bottom: 1px solid #9e9b9b;
  padding: 24px;
}
@media (max-width: 767px) {
  .topbar {
    padding: 16px;
  }
}
.topbar__title {
  font-size: 32px;
}
@media (max-width: 767px) {
  .topbar__title {
    font-size: 24px;
  }
}
.topbar__description {
  margin-top: 16px;
}

.column-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  margin: 32px auto;
}
@media (max-width: 767px) {
  .column-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 16px auto;
  }
}

.side-nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  position: sticky;
  top: 156px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 767px) {
  .side-nav {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 20px;
    position: static;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  .side-nav__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
}
.side-nav__link {
  display: block;
  width: 200px;
  padding: 10px 12px;
  margin-bottom: 4px;
  border: 1px #1C2688 solid;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #1C2688;
  background: #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.side-nav__link:hover {
  background: #1C2688;
  color: #ffffff;
}
.side-nav__link.active {
  background-color: #F0F1FC;
}
@media (max-width: 767px) {
  .side-nav__link {
    width: 100%;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 12px;
    /* 少し小さく */
    padding: 8px 4px;
    /* 余白を削減 */
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 44px;
    /* タップの最小推奨サイズ */
    background: #ffffff;
  }
}
.side-nav__link.current {
  background: #e0e0ff;
}

.fs20 {
  font-size: 20px;
}

.c-accent {
  color: #E71963;
}

.mg8 {
  margin-top: 8px;
}

.mg16 {
  margin-top: 16px;
}

.mg32 {
  margin-top: 32px;
}

.fs14 {
  font-size: 14px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex.jc_sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex.jc_se {
  justify-self: space-evenly;
}
.flex.gap16 {
  gap: 16px;
}
@media (max-width: 767px) {
  .flex.sp_fc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ===============================================
# main
=============================================== */
.main__contents {
  width: calc(100% - 220px);
}
@media (max-width: 767px) {
  .main__contents {
    width: 100%;
  }
}
.main__title {
  font-weight: bold;
  font-size: 18px;
  color: #E71963;
}
.main__scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .main__scroll {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main__scroll__button {
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  padding: 8px;
  padding-right: 40px;
  border-bottom: 1px solid #9e9b9b;
  position: relative;
}
.main__scroll__button.honda {
  color: #4455CC;
}
.main__scroll__button.honda::after {
  border-top: 5px solid #2D3BAF;
}
.main__scroll__button.honda::before {
  background-color: #C8CCF0;
}
.main__scroll__button.sirius {
  color: #E86698;
}
.main__scroll__button.sirius::after {
  border-top: 5px solid #D94480;
}
.main__scroll__button.sirius::before {
  background-color: #F8D0E4;
}
.main__scroll__button::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main__scroll__button::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.main__header1 {
  color: #ffffff;
  padding: 8px 16px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .main__header1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    font-size: 18px;
  }
}
.main__header1:first-of-type {
  margin-top: 16px;
}
.main__header1.honda {
  background-color: #161E76;
}
.main__header1.sirius {
  background-color: #991855;
}
.main__header1__icon {
  font-size: 14px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 16px;
  padding: 0px 12px;
  height: 24px;
}
@media (max-width: 767px) {
  .main__header1__icon {
    font-size: 12px;
  }
}
.main__header1__icon.honda {
  color: #1C2688;
}
.main__header1__icon.sirius {
  color: #C0306A;
}
.main__header1__icon__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.main__header2 {
  font-size: 22px;
  padding-left: 16px;
  color: #362d31;
}
@media (max-width: 767px) {
  .main__header2 {
    font-size: 18px;
  }
}
.main__header2.honda {
  border-left: 5px solid #1C2688;
}
.main__header2.sirius {
  border-left: 5px solid #C0306A;
}
.main__header2.green {
  border-left: 5px solid #22C48A;
}
.main__header2__sub {
  font-size: 18px;
  color: #B63C53;
}
@media (max-width: 767px) {
  .main__header2__sub {
    font-size: 16px;
  }
}
.main__header3__text {
  border-bottom: 2px dashed #1C2688;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main__header3__text__step {
  margin-right: 16px;
  margin-left: 2px;
  font-size: 14px;
  color: #2D3BAF;
  padding: 2px 8px;
}
.main__header4 {
  font-size: clamp(14px, 3.5cqw, 16px);
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 4px;
  container-type: inline-size;
}
.main__header4__text {
  white-space: nowrap;
}
.main__header4.honda {
  color: #1C2688;
  background-color: #F0F1FC;
}
.main__header4.sirius {
  color: #C0306A;
  background-color: #FDF0F5;
}
.main__header4__text {
  font-size: 16px;
}
.main__header4__icon {
  padding: 0px 8px;
  background-color: #fff;
  font-size: 12px;
  border-radius: 16px;
  white-space: nowrap;
  text-align: center;
}
.main__header4__icon.honda {
  color: #1C2688;
  border: 1px solid #1C2688;
}
.main__header4__icon.sirius {
  color: #C0306A;
  border: 1px solid #C0306A;
}
.main__header4__icon__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
  gap: 16px;
}
@media (max-width: 767px) {
  .main__header4__icon__wrap {
    margin-left: 0px;
    margin-top: 6px;
  }
}
.main__block {
  margin-top: 16px;
  padding-bottom: 16px;
}
.main__block.border-bottom {
  border-bottom: 1px solid #F2F3F5;
}
.main__content {
  margin-top: 16px;
}
.main__content__text--cv {
  font-size: 20px;
}
.main__content__link__wrap {
  margin-top: 16px;
}
.main__content__link__wrap.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main__content__link__kobetsu {
  width: 300px;
}
.main__content__link1 {
  font-size: 20px;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4455CC;
  position: relative;
  padding: 4px 12px;
  padding-right: 32px;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}
@media (max-width: 767px) {
  .main__content__link1 {
    font-size: 16px;
  }
}
.main__content__link1::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% + 1px);
  right: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/external-link.png") no-repeat center center/contain;
}
.main__content__link1:hover {
  color: #161E76;
}
.main__content__cv {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 320px;
  max-width: 100%;
  padding: 16px;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #E71963;
  border: 2px solid #E71963;
}
.main__content__cv:hover {
  background-color: #fff;
  color: #E71963;
}
.main__content__guidance {
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
}
.main__content__guidance.honda {
  border-left: 4px solid #1C2688;
  background-color: #F0F1FC;
}
.main__content__guidance.sirius {
  border-left: 4px solid #C0306A;
  background-color: #FDF0F5;
}
.main__content__guidance__link.honda {
  color: #1C2688;
  border-bottom: 1px solid #1C2688;
}
.main__content__guidance__link.sirius {
  color: #C0306A;
  border-bottom: 1px solid #C0306A;
}
.main__content__attention {
  padding: 16px;
  border-radius: 8px;
}
.main__content__attention.honda {
  background-color: #F0F1FC;
  border: 2px dashed #1C2688;
}
.main__content__attention.sirius {
  background-color: #FDF0F5;
  border: 2px dashed #C0306A;
}
.main__content__attention__head {
  font-weight: bold;
}
.main__content__attention__head.honda {
  color: #1C2688;
}
.main__content__attention__head.sirius {
  color: #C0306A;
}
.main__content__attention__block {
  margin-top: 16px;
}
.main__content__table__wrap {
  overflow-x: auto;
}
.main__content__banner.kobetsu {
  max-width: 300px;
  text-align: center;
}

/* ===============================================
# table
=============================================== */
table {
  font-size: 14px;
}
table th {
  padding: 8px 16px;
  border: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
  background-color: #F2F3F5;
  white-space: nowrap;
}
table td {
  vertical-align: middle;
  padding: 8px;
  border: 1px solid #ddd;
}

.schedule-table__month {
  width: 80px;
}
.schedule-table__title {
  font-weight: bold;
}

.recruitment-table {
  min-width: 650px;
  overflow-x: auto;
}
.recruitment-table__cell {
  text-align: center;
}
.recruitment-table th, .recruitment-table td {
  white-space: nowrap;
}
.recruitment-table th:first-child, .recruitment-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  font-weight: bold;
  background-color: #F2F3F5;
}
.recruitment-table thead th:first-child {
  z-index: 3;
}

.example-table {
  min-width: 100%;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .example-table {
    min-width: 520px;
  }
}
.example-table__header-cell {
  font-weight: bold;
  text-align: center;
  padding: 4px 12px;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
}
.example-table__cell {
  padding: 8px 16px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  text-align: center;
}
.example-table__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 24px;
  border: 1px solid #9e9b9b;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
}
.example-table__link:not(:last-child) {
  margin-right: 24px;
}
.example-table__link--answer {
  background-color: #F2F3F5;
}

/* --------------------------------------------------
★ オンライン説明会バナー (1120x328比率)
-------------------------------------------------- */
.online-banner-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  aspect-ratio: 1120/328;
  background: linear-gradient(135deg, #000066 0%, #0000b3 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 5% 8%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 128, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 128, 0.2);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 300px;
}

.online-banner-btn:hover {
  -webkit-transform: translateY(-2px) scale(1.01);
          transform: translateY(-2px) scale(1.01);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 128, 0.3);
          box-shadow: 0 8px 20px rgba(0, 0, 128, 0.3);
  background: linear-gradient(135deg, #000080 0%, #0000e6 100%);
}

/* キラリと光るエフェクト */
.online-banner-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 25%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: none;
  transition: none;
}

.online-banner-btn:hover::after {
  left: 140%;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.online-banner-btn .banner-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

/* オンラインを示す点 */
.online-banner-btn .banner-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff3366;
  border-radius: 50%;
  margin-right: 8px;
  -webkit-box-shadow: 0 0 8px #ff3366;
          box-shadow: 0 0 8px #ff3366;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.6;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.6;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.online-banner-btn .banner-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

/* 矢印アイコン */
.online-banner-btn .banner-arrow {
  position: absolute;
  right: 4%;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.online-banner-btn:hover .banner-arrow {
  -webkit-transform: translateY(50%) translateX(3px);
          transform: translateY(50%) translateX(3px);
  background: rgba(255, 255, 255, 0.25);
}

.material__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px 0px;
  border-bottom: 1px solid #ddd;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.material__item:hover {
  background-color: #F2F3F5;
}
.material__item .pdf-tag {
  background-color: #e60012;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 3px;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.material__item .web-tag {
  background-color: #2D3BAF;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 3px;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.material__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.material__title {
  font-weight: bold;
  font-size: 16px;
  color: #2D3BAF;
  text-decoration: underline;
  display: block;
}
.material__desc {
  font-size: 14px;
  color: #9e9b9b;
  margin-top: 4px;
}