@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;
  }
}

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

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

.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(#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(#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: #e68301;
}
@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;
}

/* ===============================================
# 共通パーツ
=============================================== */
table, td, th {
  border: 1px solid #9e9b9b;
  border-collapse: collapse;
  border-spacing: 0;
}

table {
  table-layout: auto;
}

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

.conversion__button {
  margin: 64px auto;
  text-align: center;
}
@media (max-width: 767px) {
  .conversion__button {
    margin: 48px auto;
  }
}
.conversion__button a {
  background-color: #fff;
  color: #123A8F;
  display: inline-block;
  padding: 16px 24px;
  color: #123A8F;
  border-radius: 3px;
  border: 2px solid #123A8F;
  -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;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .conversion__button a {
    padding: 8px 16px;
  }
}
.conversion__button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #B63C53;
  -webkit-animation: ripple 3s cubic-bezier(0.3, 0, 0.1, 1) infinite;
          animation: ripple 3s cubic-bezier(0.3, 0, 0.1, 1) infinite;
}
.conversion__button a:hover {
  background-color: #F2F3F5;
}

.conversion__button__zentouchu {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  padding-left: 32px;
}
@media (max-width: 767px) {
  .conversion__button__zentouchu {
    font-size: 20px;
    padding-left: 24px;
  }
}
.conversion__button__zentouchu::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../../../../img/zentou/zentou_hand_blue.png") no-repeat center center/contain;
}
@media (max-width: 767px) {
  .conversion__button__zentouchu::before {
    width: 16px;
  }
}

.conversion__button__t {
  font-weight: bold;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.05, 1.2);
            transform: scale(1.05, 1.2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.05, 1.2);
            transform: scale(1.05, 1.2);
    opacity: 0;
  }
}
/* ===============================================
# header
=============================================== */
.header__inner.zentochu {
  background: #123A8F;
  width: 1200px;
  background-image: none;
}

.header-left {
  color: #fff;
  padding-left: 60px;
  position: relative;
}
@media (max-width: 767px) {
  .header-left {
    padding-left: 30px;
  }
}
.header-left::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  top: 60%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../../../../img/zentou/zentou_hand_white.png") no-repeat center center/contain;
}
@media (max-width: 767px) {
  .header-left::before {
    height: 80%;
    left: -20px;
  }
}

.header__title {
  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 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .header__title {
    font-size: 20px;
    line-height: 26px;
  }
}
.header__title span {
  font-weight: normal;
}

.header-right {
  margin-left: auto;
  padding-top: 12px;
}
@media (max-width: 767px) {
  .header-right {
    padding-top: 0px;
  }
}

.header-ringt__banner__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .header-ringt__banner__wrap {
    display: block;
  }
}

.header-right__banner img {
  height: 60px;
}
@media (max-width: 767px) {
  .header-right__banner img {
    height: 28px;
  }
}
.header-right__banner a {
  margin-left: 8px;
}
@media (max-width: 767px) {
  .header-right__banner a {
    margin-left: 0px;
    margin-top: 8px;
  }
}

/* ===============================================
# event-summery
=============================================== */
.event__title__about {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .event__title__about {
    font-size: 14px;
    font-weight: normal;
  }
}

.event__title {
  text-align: center;
  color: #123A8F;
  margin: 40px 0px;
}
.event__title span {
  position: relative;
  padding-left: 36px;
  font-size: 32px;
  font-weight: bold;
}
.event__title span::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 100%;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../../../../img/zentou/zentou_hand_blue.png") no-repeat center center/contain;
}
@media (max-width: 767px) {
  .event__title span::before {
    width: 20px;
  }
}
@media (max-width: 767px) {
  .event__title span {
    font-size: 24px;
  }
}

.event-summery__items {
  background-color: #eaf1f5;
  padding: 20px;
  margin-top: 16px;
}

.event-summery__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event-summery__item:not(:first-child) {
  margin-top: 16px;
}
.event-summery__item:last-child {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .event-summery__item {
    display: block;
  }
}

.event-summery__title {
  font-size: 20px;
  font-weight: bold;
  width: 20%;
  padding-left: 36px;
  position: relative;
}
@media (max-width: 767px) {
  .event-summery__title {
    font-size: 16px;
    width: 100%;
    padding-left: 16px;
    font-weight: normal;
  }
}
.event-summery__title::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #123A8F;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .event-summery__title::before {
    width: 10px;
    height: 10px;
  }
}

.event-summery__content {
  width: 80%;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .event-summery__content {
    font-size: 16px;
    width: 100%;
    font-weight: normal;
  }
}
.event-summery__content.fs32 {
  font-size: 28px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .event-summery__content.fs32 {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
}
.event-summery__content .fss {
  font-size: 18px;
  font-weight: bold;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .event-summery__content .fss {
    font-size: 14px;
    margin-right: 4px;
    font-weight: normal;
  }
}
.event-summery__content .attention {
  font-size: 14px;
}
@media (max-width: 767px) {
  .event-summery__content .attention {
    font-size: 10px;
    font-weight: normal;
  }
}
.event-summery__content .red {
  font-weight: bold;
  color: #B63C53;
}

.event-summery__nyuujuku__wrap {
  margin-top: 80px;
  margin-bottom: 32px;
  padding: 32px;
  border: 2px dashed #e68301;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 1147px) {
  .event-summery__nyuujuku__wrap {
    padding: 32px 16px;
  }
}
.event-summery__nyuujuku__wrap.ikkan {
  border: 2px dashed #E71963;
}

.event-summery__item__attention {
  font-size: 14px;
}
.event-summery__item__attention a {
  color: blue;
}

.event-summery__nyuujuku__title {
  position: absolute;
  top: -24px;
  left: 24px;
  font-weight: bold;
  font-size: 20px;
  padding: 8px 24px;
  color: #fff;
  background-color: #e68301;
  border-radius: 15px;
}
.event-summery__nyuujuku__title.ikkan {
  background-color: #E71963;
}
@media (max-width: 767px) {
  .event-summery__nyuujuku__title {
    font-size: 16px;
  }
}

.event-summery__nyuujuku__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .event-summery__nyuujuku__content {
    display: block;
  }
}

.event-summery__nyuujuku__p {
  width: 60%;
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
}
@media (max-width: 767px) {
  .event-summery__nyuujuku__p {
    width: 100%;
    font-size: 16px;
  }
}

.event-summery__nyuujuku__link {
  width: 40%;
}
@media (max-width: 767px) {
  .event-summery__nyuujuku__link {
    width: 100%;
    text-align: center;
  }
}
.event-summery__nyuujuku__link a {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  border: #123A8F;
  padding: 20px 60px 20px 28px;
  -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;
  background-color: #f8ebee;
  border: 1px solid #B63C53;
}
@media (max-width: 767px) {
  .event-summery__nyuujuku__link a {
    font-size: 18px;
    margin-top: 16px;
    padding: 20px 40px 20px 16px;
  }
}
.event-summery__nyuujuku__link a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #B63C53;
}
.event-summery__nyuujuku__link a::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-right: 2px solid #B63C53;
  border-bottom: 2px solid #B63C53;
  rotate: -45deg;
}
@media (max-width: 767px) {
  .event-summery__nyuujuku__link a::after {
    width: 10px;
    height: 10px;
    right: 10px;
  }
}
.event-summery__nyuujuku__link .event-summery__nyuujuku__link__p {
  font-weight: bold;
  font-size: 16px;
}
@media (max-width: 1147px) {
  .event-summery__nyuujuku__link .event-summery__nyuujuku__link__p {
    font-size: 14px;
  }
}

/* ===============================================
# event-appeal
=============================================== */
.event-appeal__top {
  font-size: 18px;
}
@media (max-width: 767px) {
  .event-appeal__top {
    font-size: 14px;
  }
}

.event-appeal__point__block:not(:first-child) {
  margin-top: 32px;
}

.event-appeal__point__title {
  margin: 40px 0px 24px 0px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .event-appeal__point__title {
    font-size: 16px;
  }
}

.event-appeal__point__block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #123A8F;
}
@media (max-width: 767px) {
  .event-appeal__point__block__title {
    font-size: 16px;
  }
}

.event-appeal__point__block__title-left {
  color: #fff;
  width: 15%;
  padding-left: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .event-appeal__point__block__title-left {
    padding-left: 8px;
    width: 20%;
  }
}

.event-appeal__point__block__title-right {
  background-color: #FAE6E8;
  width: 85%;
  padding-left: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .event-appeal__point__block__title-right {
    width: 80%;
    padding-left: 8px;
  }
}

.event-appeal__point__block__content-p {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin: 16px auto;
}
@media (max-width: 767px) {
  .event-appeal__point__block__content-p {
    font-size: 16px;
  }
}

.event-appeal__point__block__content-warp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .event-appeal__point__block__content-warp {
    display: block;
  }
}

.event-appeal__point__block__content-img {
  width: 30%;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .event-appeal__point__block__content-img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .event-appeal__point__block__content-img img {
    width: 50%;
  }
}

.event-appeal__point__block__content-n {
  width: 70%;
  padding: 16px;
}
@media (max-width: 767px) {
  .event-appeal__point__block__content-n {
    width: 100%;
    font-size: 14px;
  }
}

.event-appeal__tokutai {
  padding: 30px;
  margin-top: 40px;
  border: 2px solid #E71963;
}
@media (max-width: 1147px) {
  .event-appeal__tokutai {
    padding: 20px;
  }
}

.event-appeal__tokutai__title__wrap {
  text-align: center;
}

.event-appeal__tokutai__title-p {
  position: relative;
  color: #E71963;
  font-weight: bold;
}
.event-appeal__tokutai__title-p::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 80%;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #E71963;
  rotate: -10deg;
}
.event-appeal__tokutai__title-p::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 80%;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #E71963;
  rotate: 10deg;
}

.event-appeal__tokutai__title {
  font-size: 20px;
  font-weight: bold;
}

.event-appeal__tokutai__content {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .event-appeal__tokutai__content {
    font-size: 14px;
  }
}

.event-appeal__tokutai__content__link {
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .event-appeal__tokutai__content__link {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: unset;
    transition: unset;
  }
}
.event-appeal__tokutai__content__link a {
  border: 2px solid #E71963;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  padding: 12px 24px 12px 48px;
}
@media (max-width: 767px) {
  .event-appeal__tokutai__content__link a {
    padding: 8px 12px 8px 24px;
    font-size: 14px;
  }
}
.event-appeal__tokutai__content__link a span {
  position: relative;
  font-weight: bold;
}
.event-appeal__tokutai__content__link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-80%) translateY(-25px);
          transform: translateX(-80%) translateY(-25px);
  background: #E71963;
}
@media (max-width: 767px) {
  .event-appeal__tokutai__content__link a::before {
    -webkit-transform: translateX(-90%) translateY(-25px);
            transform: translateX(-90%) translateY(-25px);
    -webkit-transition: unset;
    transition: unset;
  }
}
.event-appeal__tokutai__content__link a:hover {
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.event-appeal__tokutai__content__link a:hover::before {
  width: 400px;
  height: 400px;
  -webkit-transform: translateX(-1%) translateY(-175px);
          transform: translateX(-1%) translateY(-175px);
}
@media (max-width: 767px) {
  .event-appeal__tokutai__content__link a:hover::before {
    -webkit-transform: none;
            transform: none;
    -webkit-transition: unset;
    transition: unset;
  }
}

/* ===============================================
# guideline
=============================================== */
.guideline__container {
  margin: 24px auto;
}
@media (max-width: 767px) {
  .guideline__container {
    margin: 16px auto;
  }
}

.guideline__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 32px 0px;
}
@media (max-width: 767px) {
  .guideline__content {
    display: block;
  }
}
.guideline__content.hani {
  display: block;
}

.guideline__content-title {
  width: 150px;
  height: 40px;
  text-align: center;
  background-color: #F2F3F5;
  border: 2px solid #1C2688;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  margin-right: 56px;
  line-height: 38px;
}
@media (max-width: 1147px) {
  .guideline__content-title {
    margin-right: 24px;
    width: 120px;
  }
}
@media (max-width: 767px) {
  .guideline__content-title {
    width: auto;
    font-size: 14px;
    height: 32px;
    line-height: 30px;
    margin-right: 0px;
  }
}
.guideline__content-title::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #D9D9D9;
  top: -5px;
  left: -5px;
  z-index: -1;
}

.guideline__content-p {
  width: calc(100% - 150px - 56px);
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 767px) {
  .guideline__content-p {
    width: 100%;
    font-size: 16px;
    margin-top: 8px;
    font-weight: normal;
  }
}
.guideline__content-p .content-p-s {
  font-weight: normal;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 767px) {
  .guideline__content-p .content-p-s {
    font-size: 14px;
    width: 500px;
  }
}
.guideline__content-p .content-p-red {
  color: #B63C53;
}
.guideline__content-p .content-p-red.muryou {
  font-weight: bold;
}
.guideline__content-p.hani {
  width: 100%;
}
.guideline__content-p .kyoshitsu__attention {
  font-size: 14px;
}
@media (max-width: 767px) {
  .guideline__content-p .kyoshitsu__attention {
    font-size: 12px;
  }
}
.guideline__content-p__block .kaijyou {
  font-size: 16px;
}
.guideline__content-p__block:not(:first-child) {
  margin-top: 16px;
}
.guideline__content-p__block__p {
  position: relative;
}
.guideline__content-p__block__p::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #9e9b9b;
  z-index: -1;
}
.guideline__content-p__block__p .line {
  background-color: #FFF;
  padding-right: 16px;
}
.guideline__content-p__block__k {
  font-weight: normal;
}

.hani__table {
  border: 1px solid #9e9b9b;
  width: 100%;
  margin: 16px auto;
  font-weight: normal;
}

.hani__table__gakunen {
  background-color: #123A8F;
  color: #fff;
  border: 1px solid #123A8F;
  font-weight: bold;
}
@media (max-width: 767px) {
  .hani__table__gakunen {
    font-size: 16px;
  }
}

.hani__table__title {
  vertical-align: middle;
  font-weight: normal;
  background-color: #F2F3F5;
}
.hani__table__title.kyouka {
  width: 15%;
}
.hani__table__title.hani {
  width: 65%;
}
.hani__table__title.time-score {
  width: 20%;
}
@media (max-width: 767px) {
  .hani__table__title {
    font-size: 14px;
  }
}

.hani__table__td {
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .hani__table__td {
    font-size: 14px;
  }
}
.hani__table__td.hani {
  text-align: start;
  padding: 8px;
}

/* ===============================================
# contact
=============================================== */
.contact__wrap {
  background-color: #f8ebee;
  padding: 24px;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .contact__wrap {
    padding: 8px;
  }
}

.contact__way:last-child {
  margin-bottom: 32px;
}

.contact__way__title {
  font-weight: bold;
  padding-left: 40px;
  position: relative;
  font-size: 18px;
}
.contact__way__title::before {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 40px;
  background-color: #123A8F;
  color: #fff;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
.contact__way__title.way1::before {
  content: "1";
}
.contact__way__title.way2::before {
  content: "2";
}

.contact__way__info {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .contact__way__info {
    font-size: 14px;
  }
}

.contact__way__link__wrap {
  margin-top: 16px;
  margin-bottom: 32px;
}

.contact__way__link__course__name {
  margin-top: 16px;
  position: relative;
}
.contact__way__link__course__name::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #9e9b9b;
  z-index: 0;
}
.contact__way__link__course__name span {
  position: relative;
  padding: 4px 36px 4px 36px;
  display: inline-block;
  background-color: #f8ebee;
  z-index: 1;
}
.contact__way__link__course__name span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50px;
  border: 1px solid #fff;
}
.contact__way__link__course__name span.honda::before {
  background-color: #1C2688;
}
.contact__way__link__course__name span.premium::before {
  background-color: #006060;
}
.contact__way__link__course__name span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../../../../others/map/img/pen_icon.png") no-repeat center center/80%;
  border-radius: 50px;
  border: 1px solid #fff;
}

.contact__way__link__building-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 16px;
}
@media (max-width: 767px) {
  .contact__way__link__building-lists {
    padding: 8px 0px;
  }
}

.contact__way__link__building-name {
  position: relative;
  margin-top: 8px;
}
@media (min-width: 1100px) {
  .contact__way__link__building-name {
    width: 20%;
  }
}
@media (max-width: 1147px) {
  .contact__way__link__building-name {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  .contact__way__link__building-name {
    font-size: 14px;
    width: 50%;
  }
}
@media (min-width: 1100px) {
  .contact__way__link__building-name:nth-child(5n+1) {
    border-left: 1px solid #9e9b9b;
  }
}
@media (min-width: 768px) and (max-width: 1147px) {
  .contact__way__link__building-name:nth-child(3n+1) {
    border-left: 1px solid #9e9b9b;
  }
}
@media (max-width: 767px) {
  .contact__way__link__building-name:nth-child(2n+1) {
    border-left: 1px solid #9e9b9b;
  }
}
.contact__way__link__building-name a {
  display: inline-block;
  padding: 8px 8px;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #9e9b9b;
  border-right: 1px solid #9e9b9b;
  border-bottom: 1px solid #9e9b9b;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  position: relative;
}
.contact__way__link__building-name a::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 48%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-right: 1px solid #1C2688;
  border-bottom: 1px solid #1C2688;
  rotate: -45deg;
}
.contact__way__link__building-name a.honda:hover {
  background-color: #1C2688;
  color: #fff;
}
.contact__way__link__building-name a.premium:hover {
  background-color: #006060;
  color: #fff;
}

.contact__way__info__about {
  margin: 8px 0px;
}

.contact__way__building-link {
  margin-top: 16px;
}
.contact__way__building-link a {
  display: inline-block;
  background-color: #fff;
  padding: 8px 64px 8px 16px;
  border: 2px solid #123A8F;
  border-radius: 2px;
  position: relative;
}
.contact__way__building-link a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #123A8F;
  border-bottom: 0;
  top: 35%;
  right: 0px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.footer__wrap {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.footer__company {
  width: 40%;
  border-right: none;
}
@media (max-width: 1147px) {
  .footer__company {
    width: 100%;
  }
}