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

/* ===============================================
# about
=============================================== */
.about__top {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .about__top {
    margin-bottom: 24px;
  }
}
.about__top__p:not(:first-child) {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .about__top__p:not(:first-child) {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .about__top__p {
    font-size: 14px;
  }
}
.about__top__p.empha {
  font-weight: bold;
}
.about__top__p.s14 {
  font-size: 14px;
}
@media (max-width: 767px) {
  .about__top__p.s14 {
    font-size: 12px;
  }
}
.about__top__p a {
  display: inline-block;
  border-bottom: 1px solid #333;
  margin: 0px 4px;
  font-weight: bold;
}
.about__yokou {
  text-align: center;
  margin-top: 24px;
}
.about__yokou a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 16px 24px;
  border: 2px 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);
  background: -webkit-gradient(linear, left top, right top, from(#852d3d), to(#B63C53));
  background: linear-gradient(to right, #852d3d, #B63C53);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding-left: 64px;
  position: relative;
}
@media (max-width: 767px) {
  .about__yokou a {
    font-size: 16px;
    padding-left: 32px;
  }
}
.about__yokou a::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  rotate: -45deg;
}
@media (max-width: 767px) {
  .about__yokou a::before {
    width: 6px;
    height: 6px;
    left: 16px;
  }
}

/* ===============================================
# form
=============================================== */
.formError {
  z-index: 1;
}

.form__container {
  margin: 32px auto;
}
.form__container.entry {
  margin: 0px auto;
}

.form__items {
  border-top: 2px #9e9b9b solid;
  border-bottom: 2px #9e9b9b solid;
}
.form__items.no-border {
  border: none;
}

.form__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.form__dl:not(:last-child) {
  border-bottom: 1px #9e9b9b solid;
}
.form__dl.no-border {
  border-bottom: none;
}
@media (max-width: 1147px) {
  .form__dl {
    display: block;
  }
}

.form__label {
  width: 30%;
  font-weight: bold;
  background-color: #f6ecdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
}
@media (max-width: 1147px) {
  .form__label {
    width: 100%;
    background-color: #fff;
    padding: 16px 0px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 8px;
  }
}
.form__label__att {
  font-size: 14px;
}
.form__label .entry__label {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 2px;
  padding: 2px 10px;
}
@media (max-width: 1147px) {
  .form__label .entry__label {
    font-size: 12px;
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
  }
}
.form__label .entry__label.need {
  background-color: #B63C53;
}
.form__label .entry__label.conf {
  background-color: #3143e6;
}
.form__label .entry__label.optional {
  background-color: #333;
}

.form__input {
  width: 70%;
  height: 100%;
  padding: 24px;
}
@media (max-width: 1147px) {
  .form__input {
    margin-bottom: 24px;
    width: 100%;
    padding: 16px;
  }
}
.form__input .selectbox {
  display: inline-block;
  background-color: #eff9ff;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 767px) {
  .form__input .selectbox.birth {
    font-size: 12px;
  }
}
.form__input .selectbox.is-select {
  background-color: #fff;
}
.form__input .selectbox::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  right: 24px;
  top: calc(50% - 2px);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #9e9b9b;
  border-right: 2px solid #9e9b9b;
  z-index: 1;
}
@media (max-width: 767px) {
  .form__input .selectbox::after {
    width: 10px;
    height: 10px;
    right: 16px;
  }
}
.form__input select {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid #1729cc;
  background: transparent;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 3px;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
}
.form__input select.is-select {
  border: 1px solid #9e9b9b;
}
.form__input .grade {
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: 0.01em;
  border: none;
  pointer-events: none;
  font-size: 18px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 767px) {
  .form__input .grade {
    font-size: 16px;
  }
}
.form__input .school {
  width: 50%;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .form__input .school {
    width: 75%;
  }
}
.form__input.name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1147px) {
  .form__input.name {
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .form__input.name {
    display: block;
  }
}
.form__input.name .name__entry__label {
  width: 8%;
}
@media (max-width: 767px) {
  .form__input.name .name__entry__label {
    width: 100%;
  }
}
.form__input.name input {
  width: 42%;
}
.form__input.name input:first-of-type {
  margin-right: 52px;
}
@media (max-width: 767px) {
  .form__input.name input:first-of-type {
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .form__input.name input {
    width: 100%;
    margin-bottom: 16px;
  }
}
.form__input.radio {
  font-size: 18px;
}
.form__input.radio label {
  display: block;
}
.form__input.radio.checked {
  background-color: #fff;
}
.form__input.radio.juken_kaijou {
  font-size: 20px;
}
.form__input.radio.juken_kaijou label:not(:first-child) {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .form__input.radio.juken_kaijou {
    font-size: 18px;
  }
}
.form__input.radio.gender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__input.radio.kazoku {
  padding-left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__input.radio [type=radio]:required {
  width: 0%;
  padding: 1px;
}
.form__input.radio span {
  display: inline-block;
  padding-left: 26px;
  position: relative;
  margin-right: 36px;
}
@media (max-width: 767px) {
  .form__input.radio span {
    margin-bottom: 8px;
    margin-right: 24px;
  }
}
.form__input.radio span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #1729cc;
  background-color: #eff9ff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form__input.radio span::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #1C2688;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
.form__input.radio span.no-selected::before {
  background-color: #fff;
  border: 1px solid #9e9b9b;
}
.form__input.radio [type=radio]:checked + span::after {
  display: block;
}
.form__input.radio [type=radio]:checked + span::before {
  border: 2px solid #9e9b9b;
}
.form__input__detail {
  padding-left: 0px;
}
.form__input #kazoku_details {
  display: none;
}
.form__input [type=text][name=postal_code] {
  width: 200px;
}
.form__input [type=checkbox] {
  font-size: 18px;
  height: 0px;
  width: 0px;
  opacity: 0;
  position: absolute;
  padding: 0px;
  border: none;
}
.form__input [type=checkbox] + span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 200px;
  padding-left: 36px;
  position: relative;
  padding-top: 6px;
  padding-bottom: 6px;
}
.form__input [type=checkbox] + span::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__input [type=checkbox] + span::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(https://www.jasmec.co.jp/img/icon/form-check.png) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.form__input [type=checkbox]:checked + span::after {
  display: block;
}
.form__input.avail_class label input:valid {
  border: none;
}
.form__input input {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #9e9b9b;
  background-color: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 3px;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
}
.form__input input:required {
  border: 2px solid #1729cc;
  background-color: #eff9ff;
}
.form__input input::-webkit-input-placeholder {
  color: #B3B3B3;
}
.form__input input::-moz-placeholder {
  color: #B3B3B3;
}
.form__input input:-ms-input-placeholder {
  color: #B3B3B3;
}
.form__input input::-ms-input-placeholder {
  color: #B3B3B3;
}
.form__input input::placeholder {
  color: #B3B3B3;
}
.form__input input:valid {
  border: 1px solid #9e9b9b;
  background-color: #fff;
}

.form__input__item.address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .form__input__item.address {
    display: block;
  }
}
.form__input__item.address .address__entry__label {
  width: 15%;
}
@media (max-width: 767px) {
  .form__input__item.address .address__entry__label {
    width: 100%;
  }
}
.form__input__item.address .address__input {
  width: 85%;
}
@media (max-width: 767px) {
  .form__input__item.address .address__input {
    width: 100%;
  }
}
.form__input__item.address:not(:first-child) {
  margin-top: 16px;
}

.form__input__p.juken_kaijou {
  font-size: 14px;
}
.form__input__p.juken_other {
  margin-top: 8px;
  font-size: 14px;
}
.form__input__p.grade {
  font-weight: normal;
  font-size: 14px;
  margin-top: 8px;
  color: #333;
}
@media (max-width: 767px) {
  .form__input__p.grade {
    font-size: 12px;
  }
}

.form__input__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form__input__wrap__block.birth {
  width: calc(33% - 10.6666666667px);
}
.form__input__wrap__block.birth:not(:first-child) {
  margin-left: 16px;
}
@media (max-width: 767px) {
  .form__input__wrap__block.birth {
    width: 100%;
    margin-bottom: 16px;
  }
  .form__input__wrap__block.birth:not(:first-child) {
    margin-left: 0px;
  }
}

.form__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 24px;
  border-bottom: 2px solid #9e9b9b;
}
@media (max-width: 1147px) {
  .form__privacy {
    display: block;
    padding: 16px 0px;
  }
}

.form__privacy__label {
  width: 30%;
}
@media (max-width: 767px) {
  .form__privacy__label {
    width: 100%;
  }
}

.form__privacy__content {
  width: 70%;
  margin-left: 24px;
}
@media (max-width: 1147px) {
  .form__privacy__content {
    width: 100%;
    margin-left: 0px;
    margin-top: 16px;
  }
}

.form__privacy__content-p a {
  font-weight: bold;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-bottom: 1px solid #9e9b9b;
}
.form__privacy__content-p a:hover {
  opacity: 0.7;
}

.form__privacy__check {
  margin-top: 24px;
  vertical-align: middle;
}
@media (max-width: 1147px) {
  .form__privacy__check {
    text-align: center;
  }
}
.form__privacy__check span {
  display: inline-block;
  padding-left: 36px;
  position: relative;
}
.form__privacy__check span::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__privacy__check span::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(https://www.jasmec.co.jp/img/icon/form-check.png) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.form__privacy__check [type=checkbox]:checked + span::after {
  display: block;
}

.form__button {
  margin-top: 40px;
  text-align: center;
  position: relative;
}
.form__button [type=submit] {
  height: 64px;
  width: 300px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #B63C53;
  position: relative;
}
.form__button [type=submit]::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../../../../img/icon/arrow_contact.png") no-repeat center center/contain;
}
.form__button [type=submit]:hover {
  opacity: 0.7;
}

.form__recaptcha {
  font-size: 12px;
  text-align: center;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ===============================================
# hs-contact
=============================================== */
.hs-contact {
  padding: 16px 32px;
  margin: 32px auto;
  width: 500px;
  background-color: #F2F3F5;
}
@media (max-width: 767px) {
  .hs-contact {
    width: 100%;
  }
}

.hs-contact-name {
  font-weight: bold;
  margin-bottom: 8px;
}