@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #333333;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 13px;
  position: relative;
  font-family: "Lato", sans-serif;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: #3F51B5;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section-title {
    font-size: 42px;
    padding-bottom: 18px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 42px;
    padding-bottom: 18px;
  }
}

.header {
  height: 100px;
  background: #3F51B5;
  position: fixed;
  width: 100%;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  z-index: 100;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__logo {
  width: 205px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 182px;
  }
}
.header__logo img {
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav li:not(:first-child) {
  margin-left: 40px;
}
.header__nav li a {
  color: #fff;
  text-decoration: none;
  position: relative;
}
.header__nav li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.header__nav li a:hover::after, .header__nav li a.is-active::after {
  background: #E81919;
  opacity: 0.7;
}

.main-visual {
  width: 100%;
  height: 600px;
  background: url(../img/mainvisual.png) no-repeat center center/cover;
  position: relative;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .main-visual {
    margin-top: 60px;
    height: 420px;
  }
}

.main-visual__content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.main-visual__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .main-visual__title {
    font-size: 32px;
  }
}

.main-visual__lesd {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .main-visual__lesd {
    font-size: 18px;
  }
}

.main-visual__button {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .main-visual__button {
    margin-top: 28px;
  }
}
.main-visual__button a {
  display: inline-block;
  width: 390px;
  height: 75px;
  line-height: 83px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #3F51B5;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.main-visual__button a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .main-visual__button a {
    width: 280px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
  }
}

.card {
  padding: 85px 0 120px;
  background: #efefef;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .card {
    padding: 50px 0 60px;
  }
}
@media (max-width: 767px) {
  .card {
    padding: 50px 0 60px;
  }
}

.card__items {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .card__items {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .card__items {
    margin-top: 40px;
  }
}

.card__item {
  width: calc(33.3% - 16px);
  background: #fff;
  padding: 16px;
  border-radius: 4px;
}
@media (min-width: 1200px) {
  .card__item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .card__item:nth-child(n+4) {
    margin-top: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .card__item {
    width: calc(50% - 12px);
  }
  .card__item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .card__item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .card__item {
    width: 100%;
    margin-left: 0;
  }
  .card__item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.card__img img {
  width: 100%;
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  color: #6F7579;
  margin-top: 7px;
}

.card__text {
  font-weight: 700;
  color: #6F7579;
  margin-top: 6px;
  line-height: 1.5;
}

.news {
  padding: 100px 0 115px;
  background: #fff;
}
@media (max-width: 767px) {
  .news {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.news__head {
  margin: -18px 0;
}

.news__items {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .news__items {
    margin-top: 40px;
  }
}

.news__item {
  display: flex;
  padding: 20px 0 12px;
}
.news__item:not(:first-child) {
  border-top: #707070 solid 1px;
}
@media (max-width: 767px) {
  .news__item {
    display: block;
  }
}

.news__meta {
  display: flex;
  width: 185px;
}

.news__date {
  width: 105px;
  padding-top: 3px;
  font-family: "Lato", sans-serif;
}

.news__label a {
  display: inline-block;
  width: 80px;
  height: 32px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  background: #666666;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.news__label a:hover {
  opacity: 0.7;
}
.news__label a.is-blue {
  background: #3F51B5;
}
.news__label a.is-led {
  background: #E81919;
}

.news__title {
  width: calc(100% - 185px);
  padding-left: 20px;
  line-height: 1.3;
  margin-top: 3px;
}
.news__title a {
  text-decoration: none;
  line-height: 20px/16px;
}
@media (max-width: 767px) {
  .news__title {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    margin-top: 6px;
  }
}

.news__more {
  margin-top: 44px;
  text-align: center;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .news__more {
    margin-top: 30px;
  }
}
.news__more a {
  text-decoration: none;
  color: #E81919;
  font-weight: 700;
  padding-right: 14px;
  position: relative;
  transition: all 0.3s ease 0s;
}
.news__more a:hover {
  opacity: 0.7;
}
.news__more a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 11px;
  background: url(../img/news-arrow.png) no-repeat center center/contain;
}

.price {
  padding: 86px 0 114px;
  background: #EFEFEF;
}
@media (max-width: 767px) {
  .price {
    padding: 50px 0 60px;
  }
}

.price__content {
  display: flex;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .price__content {
    display: block;
    margin-top: 40px;
  }
}

.price__imge {
  width: 37.8333333333%;
}
@media (max-width: 767px) {
  .price__imge {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

.price__table {
  width: 59.25%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .price__table {
    width: 100%;
  }
}

.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.table th,
.table td {
  height: 57px;
  font-weight: 700;
  border: #707070 1px solid;
  vertical-align: middle;
}
.table th {
  color: #fff;
  background: #999999;
  font-family: "Lato", sans-serif;
}
.table th:first-child {
  width: 175px;
}
.table td {
  text-align: right;
  padding-right: 24px;
}

.is-led {
  color: #E81919;
  line-height: 15px;
}
.is-led span {
  color: #333333;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.peice__attention {
  margin-top: 8px;
  font-size: 14px;
}
.peice__attention a {
  font-weight: 700;
  transition: all 0.3s ease 0s;
}
.peice__attention a:hover {
  opacity: 0.7;
}

.access {
  padding: 88px 0 120px;
}
@media (max-width: 767px) {
  .access {
    padding: 50px 0 60px;
  }
}

.access__map {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .access__map {
    margin-top: 40px;
  }
}

.iframe-wrap {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__info {
  margin: 11px auto 0;
  width: 800px;
  max-width: 100%;
}

.access__info-row {
  display: flex;
  align-items: center;
}
.access__info-row:not(:first-child) {
  margin-top: 8px;
}
.access__info-row dt {
  font-weight: 700;
  margin: 0;
  padding: 0;
  width: 104px;
}
.access__info-row dd {
  margin: 0;
  padding: 0;
  width: calc(100% - 104px);
}

.access__button {
  width: 100%;
  text-align: center;
  margin-top: 22px;
}

.button {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #3F51B5;
  display: inline-block;
  text-align: center;
  padding: 17px;
  border-radius: 8px;
  width: 305px;
  height: 56px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease 0s;
}
.button:hover {
  opacity: 0.7;
}
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 18px;
  height: 27px;
  background: transparent url(../img/button-arrow.png) no-repeat center center/contain;
}
.button a {
  text-decoration: none;
}

.contact {
  background: #EFEFEF;
  padding: 88px 0 120px;
}
@media (max-width: 767px) {
  .contact {
    padding: 50px 0 60px;
  }
}

.contact__from {
  max-width: 800px;
  width: 100%;
  margin: 80px auto 0;
  background: #fff;
  padding: 43px 60px 58px;
}
@media (max-width: 767px) {
  .contact__from {
    margin-top: 40px;
    padding: 24px;
  }
}

.contact-from__row {
  display: flex;
}
@media (max-width: 767px) {
  .contact-from__row {
    display: block;
  }
}
.contact-from__row:not(:first-child) {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .contact-from__row:not(:first-child) {
    margin-top: 30px;
  }
}

.contact-from__label {
  width: 160px;
  padding: 7px 0 0;
  margin: 0;
}
@media (max-width: 767px) {
  .contact-from__label {
    width: 100%;
  }
}
.contact-from__label label {
  font-weight: 700;
}
.contact-from__label label.is-riquired {
  display: inline-block;
  position: relative;
}
.contact-from__label label.is-riquired::after {
  content: "必須";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #E81919;
  border-radius: 4px;
  padding: 3px 8px;
  line-height: 1;
}
@media (max-width: 767px) {
  .contact-from__label label.is-riquired::after {
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 6px);
    width: 44px;
  }
}

.contact-from__input {
  width: calc(100% - 160px);
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .contact-from__input {
    width: 100%;
    margin-top: 5px;
  }
}
.contact-from__input [type=text] {
  box-shadow: none;
  border: solid 1px #707070;
  background: #fff;
  padding: 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}
.contact-from__input [type=email] {
  box-shadow: none;
  border: solid 1px #707070;
  background: #fff;
  padding: 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}
.contact-from__input select {
  box-shadow: none;
  border: solid 1px #707070;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  background: #fff url(../img/select-arrow.png) no-repeat right 12px center/17px 14px;
}
.contact-from__input textarea {
  height: 240px;
  box-shadow: none;
  border: solid 1px #707070;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  resize: none;
}

.contact-from__radio {
  margin-top: 22px;
}
@media (max-width: 767px) {
  .contact-from__radio {
    margin-top: 16px;
  }
}
.contact-from__radio [type=radio] {
  display: none;
}
.contact-from__radio span {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  margin-right: 34px;
}
@media (max-width: 767px) {
  .contact-from__radio span {
    margin-bottom: 8px;
    margin-right: 20px;
  }
}
.contact-from__radio span::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
}
.contact-from__radio span::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #3F51B5;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}

[type=radio]:checked + span::after {
  display: block;
}

.contact-from__check {
  margin-top: 57px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-from__check {
    margin-top: 24px;
  }
}
.contact-from__check a {
  font-weight: 700;
}
.contact-from__check [type=checkbox] {
  display: none;
}
.contact-from__check span {
  display: inline-block;
  position: relative;
  padding-left: 49px;
}
.contact-from__check span::before {
  content: "";
  width: 25px;
  height: 25px;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.contact-from__check span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: transparent url(../img/checkbox.png) no-repeat center center/contain;
  display: none;
}
.contact-from__check [type=checkbox]:checked + span::after {
  display: block;
}

.contact-from__button {
  margin-top: 30px;
  text-align: center;
  transition: all 0.3s ease 0s;
}
.contact-from__button:hover {
  opacity: 0.7;
}
.contact-from__button [type=submit] {
  background: #3F51B5 url(../img/button-arrow.png) no-repeat right 12px center/17px 16px;
  display: inline-block;
  color: #fff;
  width: 304px;
  border-radius: 8px;
  font-weight: 700;
  padding: 16px 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: none;
  font-size: 16px;
}

.footer {
  padding: 60px 0 24px;
  width: 100%;
  background: linear-gradient(to bottom, #666666, #333333);
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 14px;
  }
}

.footer__content {
  display: flex;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .footer__content {
    display: block;
  }
}

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

.footer__logo img {
  width: 205px;
}

.footer__address,
.footer__tel {
  font-size: 14px;
}

.footer__address {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .footer__address {
    margin-top: 13px;
  }
}

.footer__tel {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .footer__tel {
    margin-top: 6px;
  }
}

.footer__center {
  width: 60%;
}
@media (max-width: 767px) {
  .footer__center {
    width: 100%;
    margin-top: 24px;
  }
}

.footer__nav {
  display: flex;
}
.footer__nav li:not(:first-child) {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .footer__nav li:not(:first-child) {
    margin-left: 20px;
  }
}
.footer__nav li a {
  text-decoration: none;
}

.footer__right {
  width: 10%;
}
@media (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-top: 24px;
  }
}

.footer__sns {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer__sns {
    margin-top: 14px;
    justify-content: center;
  }
}
.footer__sns li:not(:first-child) {
  margin-left: 16px;
}
.footer__sns li img {
  width: 30px;
}

.copy {
  margin-top: 46px;
  text-align: center;
  font-size: 14px;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .copy {
    margin-top: 23px;
  }
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease 0s;
}
@media (max-width: 767px) {
  .to-top {
    right: 12px;
    bottom: 12px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a img {
  width: 60px;
}
@media (max-width: 767px) {
  .to-top a img {
    width: 40px;
  }
}

.swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: transparent url(../img/arrow-next.png) no-repeat center center/contain;
  right: calc(50% - 600px);
}
@media (max-width: 767px) {
  .swiper-button-next {
    right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-next {
    right: 10px;
  }
}
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: transparent url(../img/arrow-prev.png) no-repeat center center/contain;
  left: calc(50% - 600px);
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-prev {
    left: 10px;
  }
}
.swiper-button-prev::after {
  display: none;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.6196078431);
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 8px;
  margin-right: 8px;
}

.swiper-pagination-bullet-active {
  background: #2F7DC8;
}

/* drawer------------------------------------ */
.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translateX(-200px);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content__item {
  border-bottom: 1px dotted #707070;
}
.drawer-content__item a {
  display: block;
  color: #707070;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
.drawer-content__item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: url(/img/arrow-b.png) no-repeat center center/contain;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/* modal---------------------------------------------- */
.modal-contact {
  position: fixed;
  z-index: 501;
  width: 900px;
  max-width: calc(100% - 48px);
  height: 652px;
  max-height: calc(100% - 48px);
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 60px;
  color: #707070;
  display: none;
}
@media (max-width: 767px) {
  .modal-contact {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.modal-contact__head {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 24px;
  position: relative;
  text-align: center;
}
.modal-contact__head::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background: #3F51B5;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.modal-contact__content {
  margin-top: 40px;
  height: calc(100% - 84px - 108px);
  overflow: auto;
}
.modal-contact__content > :first-child {
  margin-top: 0;
}

.modal-contact__sud-head {
  font-size: 20px;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
  margin-top: 40px;
}
.modal-contact__sud-head::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #3F51B5;
}

.modal-contact__text {
  margin-top: 16px;
  line-height: 1.5;
  padding-left: 20px;
}

.modal-contact__button {
  margin-top: 60px;
  text-align: center;
}
.modal-contact__button a {
  text-decoration: none;
  display: inline-block;
  width: 176px;
  color: #fff;
  padding: 14px;
  text-align: center;
  background: #3F51B5;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.modal-contact__icon {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -20px;
  top: -20px;
}
.modal-contact__icon a {
  text-decoration: none;
}
.modal-contact-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 500;
  display: none;
}

/* ------------------------------
tab
---------------------------------- */
.tab {
  padding: 56px 0 142px;
}
@media (max-width: 767px) {
  .tab {
    padding-top: 36px;
    padding-bottom: 100px;
  }
}

.tab__nav {
  margin-top: 80px;
  height: 68px;
  overflow: auto;
  border-bottom: 3px solid #3F51B5;
}
@media (max-width: 767px) {
  .tab__nav {
    border-width: 2px;
    height: 66px;
  }
}
.tab__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.tab__nav ul li a,
.tab__nav ul li span {
  text-decoration: none;
  color: #3F51B5;
  border-radius: 12px 12px 0 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  width: 206px;
  max-width: 100%;
  display: block;
  border: 3px solid #3F51B5;
  border-bottom: none;
  padding: 12px;
  transition: width 0.3s ease 0s;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .tab__nav ul li a,
.tab__nav ul li span {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .tab__nav ul li a,
.tab__nav ul li span {
    width: 120px;
    border-width: 2px;
    padding: 12px;
  }
}
.tab__nav ul li a.is-active,
.tab__nav ul li span.is-active {
  font-size: 20px;
  width: 252px;
  color: #fff;
  background: #3F51B5;
  padding: 16px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .tab__nav ul li a.is-active,
.tab__nav ul li span.is-active {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .tab__nav ul li a.is-active,
.tab__nav ul li span.is-active {
    width: 150px;
    padding: 16px;
  }
}
.tab__nav ul li a:hover,
.tab__nav ul li span:hover {
  color: #fff;
  background: #3F51B5;
}

.tab-item {
  padding: 58px 0;
  display: none;
}
.tab-item.is-active {
  display: block;
}

.tab-item__lead {
  text-align: center;
}
.tab-item__lead span {
  font-size: 20px;
  font-weight: 700;
  padding: 0 24px;
  display: inline-block;
  position: relative;
}
.tab-item__lead span::before, .tab-item__lead span::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 26px;
  background: #3f51b5;
  top: 50%;
  transform: translateY(-50%);
}
.tab-item__lead span::before {
  left: 0;
  transform: translateY(-50%) rotate(-10deg);
}
.tab-item__lead span::after {
  right: 0;
  transform: translateY(-50%) rotate(10deg);
}

.tab-item__body {
  display: flex;
  margin-top: 36px;
}
@media (max-width: 767px) {
  .tab-item__body {
    display: block;
  }
}

.tab-item__img {
  width: 50%;
}
.tab-item__img img {
  width: 574px;
}
@media (max-width: 767px) {
  .tab-item__img {
    width: 100%;
    text-align: center;
  }
}

.tab-item__content {
  width: 50%;
  margin-left: auto;
  padding: 26px 42px 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .tab-item__content {
    padding-right: 0;
    padding-top: 16px;
  }
}
@media (max-width: 767px) {
  .tab-item__content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.tab-item__title {
  font-size: 18px;
  font-weight: 700;
}

.tab-item__info {
  margin-top: 14px;
  line-height: 1.5;
}

.tab-item__link {
  text-align: center;
  margin-top: 20px;
}