@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
* {
  -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;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}

body.is-active {
  overflow: hidden;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.section-title {
  font-size: 48px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #3F51B5;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -13px;
}

@media screen and (max-width: 767px) {
  .section-title::after {
    width: 30px;
    height: 2px;
    bottom: -12px;
  }
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
}

.section {
  background-color: #FFFFFF;
  padding: 82px 0 118px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 50px 0 60px 0;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

/*==========================================
ヘッダー
=========================================*/
.header {
  height: 100px;
  background-color: #3F51B5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  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;
  height: 100px;
}

@media screen and (max-width: 767px) {
  .header__inner {
    height: 60px;
  }
}

.header__logo a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__logo a:hover {
  opacity: .7;
}

.header__logo a img {
  width: 205px;
  height: 40px;
}

.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
  .header__nav__list {
    display: none;
  }
}

.header__nav__list li {
  margin-left: 40px;
}

.header__nav__list li a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.header__nav__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__nav__list li a:hover::after, .header__nav__list li a.is-active::after {
  background-color: #E81919;
}

/*=========================================
ドロワーメニュー
============================================*/
.drawer__icon {
  width: 22px;
  height: 20px;
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 200;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block;
  }
}

.drawer__icon.is-active {
  right: 216px;
}

.drawer__icon.is-active .drawer__icon__bar1 {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer__icon.is-active .drawer__icon__bar2 {
  display: none;
}

.drawer__icon.is-active .drawer__icon__bar3 {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer__icon__bars {
  position: relative;
}

.drawer__icon__bar1,
.drawer__icon__bar2,
.drawer__icon__bar3 {
  width: 22px;
  height: 4px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.drawer__icon__bar1 {
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.drawer__icon__bar2 {
  top: 8px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.drawer__icon__bar3 {
  top: 16px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.drawer__content {
  width: 200px;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.drawer__content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__content__item {
  border-bottom: 1px dotted #707070;
  position: relative;
}

.drawer__content__item a {
  display: block;
  text-decoration: none;
  color: #707070;
  padding: 20px;
}

.drawer__content__item:after {
  content: "";
  width: 8px;
  height: 11px;
  background: transparent url(../img/arrow-b.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 21px;
}

.drawer__background {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 101;
  display: none;
}

.drawer__background.is-active {
  display: block;
}

/*=========================================
メインビジュアル
============================================*/
.main__visual {
  height: 600px;
  background-image: url(../img/mainvisual.png);
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .main__visual {
    margin-top: 60px;
    height: 480px;
  }
}

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

.main__copy {
  font-size: 64px;
  line-height: 64px;
  font-weight: bold;
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .main__copy {
    font-size: 30px;
  }
}

.main__text {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .main__text {
    font-size: 18px;
  }
}

.main__button {
  margin-top: 43px;
}

.main__button a {
  display: inline-block;
  width: 384px;
  max-width: 100%;
  height: 72px;
  line-height: 72px;
  background-color: #3F51B5;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main__button a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .main__button a {
    font-size: 18px;
    width: 180px;
    height: 58px;
    line-height: 58px;
  }
}

/*=====================================
スライダー
=====================================*/
.swiper-button-next {
  height: 40px;
  width: 40px;
  margin-top: 20px;
  background: transparent url(../img/arrow-next.png) no-repeat center center/contain;
  right: calc(50% - 600px);
}

.swiper-button-next::after {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-next {
    right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 10px;
  }
}

.swiper-button-prev {
  height: 40px;
  width: 40px;
  margin-top: 20px;
  background: transparent url(../img/arrow-prev.png) no-repeat center center/contain;
  left: calc(50% - 600px);
}

.swiper-button-prev::after {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-prev {
    left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 10px;
  }
}

.swiper-pagination-bullet {
  height: 16px;
  width: 16px;
  background: #fff;
  opacity: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}

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

/*===============================
カード  フレックスボックス
====================================*/
.card {
  background-color: #EFEFEF;
}

.card__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 92px;
}

@media screen and (max-width: 767px) {
  .card__items {
    margin-top: 40px;
  }
}

.card__item {
  background-color: #FFFFFF;
  padding: 16px 16px 12px 16px;
  border-radius: 4px;
  font-size: 0;
}

@media screen and (min-width: 1200px) {
  .card__item {
    width: calc(33.333% - 24px * 2 / 3);
  }
  .card__item:not(:nth-child(3n + 1)) {
    margin-left: 24px;
  }
  .card__item:nth-child(n + 4) {
    margin-top: 24px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .card__item {
    width: calc(50% - 24px * 1 / 2);
  }
  .card__item:not(:nth-child(2n + 1)) {
    margin-left: 24px;
  }
  .card__item:nth-child(n + 3) {
    margin-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  .card__item {
    width: 100%;
    margin-left: 0;
  }
  .card__item:nth-child(n + 2) {
    margin-top: 24px;
  }
}

.card__item__title {
  font-size: 20px;
  color: #6F7579;
  text-align: left;
  margin: 8px 0 6px 0;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .card__item__title {
    font-size: 18px;
  }
}

.card__item__text {
  font-size: 16px;
  color: #6F7579;
  text-align: left;
  line-height: 1.6;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .card__item__text {
    font-size: 14px;
  }
}

/*========================================
ニュース
=============================================*/
.news__section {
  background-color: #fff;
  padding-top: 84px;
}

.news__items {
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .news__items {
    margin-top: 54px;
  }
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0 11px;
}

.news__item:not(:first-child) {
  border-top: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .news__item {
    display: block;
  }
}

.news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 185px;
}

.news__date {
  width: 105px;
  text-align-last: left;
  font-family: "Lato", sans-serif;
}

.news__label a {
  display: inline-block;
  width: 80px;
  height: 32px;
  line-height: 32px;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  background-color: #666666;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.news__label a:hover {
  opacity: .7;
}

.news__label a.is-blue {
  background-color: #3F51B5;
}

.news__label a.is-red {
  background-color: #E81919;
}

.news__title {
  width: calc(100% - 185px);
  text-align-last: left;
  margin-left: 20px;
}

.news__title a {
  display: inline-block;
  text-decoration: none;
  line-height: 1.25;
  color: #333333;
  padding: 5px 1px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.news__title a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .news__title {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    padding: 0 16px;
  }
}

.news__link {
  margin-top: 44px;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
  .news__link {
    margin-top: 24px;
  }
}

.news__link a {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: #E81919;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.news__link a:hover {
  opacity: .7;
}

.news__link a::after {
  content: " ";
  width: 7px;
  height: 11px;
  background: url(../img/news-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -14px;
}

/*====================================
テーブル
======================================*/
.price__section {
  background-color: #EFEFEF;
  padding-top: 80px;
}

.price__content {
  width: 100%;
  margin-top: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .price__content {
    display: block;
    margin: 54px auto 0;
  }
}

.price__img {
  width: 454px;
  max-width: 100%;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .price__img {
    width: 100%;
  }
}

.price__table {
  width: 708px;
  max-width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .price__table {
    width: 100%;
    margin-top: 24px;
  }
}

.table {
  border: 1px solid #707070;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.table th,
.table td {
  border: 1px solid #707070;
  padding: 0 24px;
  height: 58px;
  vertical-align: middle;
}

.table th {
  background-color: #999999;
  color: #fff;
  font-weight: bold;
  font-family: "Lato", sans-serif;
}

.table th:first-child {
  width: 172px;
}

@media screen and (max-width: 767px) {
  .table th:first-child {
    width: 85px;
  }
}

.table td {
  text-align: right;
  font-weight: bold;
  line-height: 1.4375;
}

.table td span {
  display: block;
  font-size: 13px;
  line-height: 1.69231;
}

.table td strong {
  color: #E81919;
}

.price__attention {
  font-size: 14px;
  width: 100%;
  margin-top: 5px;
  text-align-last: left;
}

.price__attention a {
  font-weight: bold;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.price__attention a:hover {
  opacity: .7;
}

/*=====================================
マップ
========================================*/
.access__section {
  padding-top: 80px;
}

.access__map {
  margin: 90px auto 0;
  width: 800px;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .access__map {
    margin: 54px auto 0;
  }
}

.iframe__wrapper {
  width: 100%;
  position: relative;
  padding-top: 50%;
}

.iframe__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

.access__wrapper dt {
  width: 104px;
  font-weight: bold;
  text-align: left;
}

.access__wrapper dd {
  width: calc(100% - 32px - 72px);
}

.access__button {
  margin-top: 28px;
}

.access__button a {
  display: inline-block;
  text-decoration: none;
  width: 304px;
  height: 56px;
  line-height: 56px;
  font-weight: bold;
  color: #fff;
  background-color: #3F51B5;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.access__button a:hover {
  opacity: .7;
}

.access__button a:after {
  content: "";
  width: 17px;
  height: 16px;
  background: url(../img/button-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
}

/*=================================
コンタクト フォーム
=======================================*/
.contact__section {
  background-color: #EFEFEF;
}

.contact__item {
  margin: 93px auto 0;
  width: 800px;
  max-width: 100%;
  background-color: #FFFFFF;
  padding: 60px;
}

@media screen and (max-width: 767px) {
  .contact__item {
    margin: 54px auto 0;
    padding: 15px;
  }
}

.contact__list {
  width: 100%;
}

.required {
  display: inline-block;
}

.required:after {
  content: "必須";
  display: block;
  width: 44px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 4px;
  background-color: #E81919;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .required:after {
    display: inline-block;
    margin-left: 10px;
  }
}

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

@media screen and (max-width: 767px) {
  .contact__row {
    display: block;
  }
}

.contact__row:not(:first-child) {
  margin-top: 38px;
}

@media screen and (max-width: 767px) {
  .contact__row:not(:first-child) {
    margin-top: 30px;
  }
}

.contact__row:last-child {
  margin-top: 58px;
}

.contact__row dt {
  width: 160px;
  text-align: left;
  padding-top: 9px;
}

.contact__row dt label {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .contact__row dt {
    width: 100%;
    padding-top: 0;
    margin-bottom: 5px;
  }
}

.contact__row dd {
  width: calc(100% - (48px + 112px));
}

@media screen and (max-width: 767px) {
  .contact__row dd {
    width: 100%;
  }
}

.contact__row [type="text"] {
  width: 100%;
  height: 40px;
  padding: 12px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
  color: inherit;
  background-color: #fff;
}

.contact__row [type="email"] {
  width: 100%;
  height: 40px;
  padding: 12px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
  color: inherit;
  background-color: #fff;
}

.contact__row select {
  width: 100%;
  height: 40px;
  padding: 9px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #707070;
  font-size: 14px;
  font-family: inherit;
  color: inherit;
  background: transparent url(../img/select-arrow.png) no-repeat right 12px center/17px 14px;
}

.contact__row textarea {
  width: 100%;
  height: 240px;
  padding: 12px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #707070;
  font-size: 14px;
  font-family: inherit;
  -webkit-column-rule: inherit;
          column-rule: inherit;
  background-color: #fff;
  resize: none;
}

.contact__radio {
  text-align: left;
  margin-top: 22px;
}

.contact__radio [type="radio"] {
  display: none;
}

.contact__radio span {
  display: inline-block;
  padding-left: 28px;
  margin-right: 31px;
  position: relative;
}

.contact__radio span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.contact__radio span:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #3F51B5;
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

@media screen and (max-width: 767px) {
  .contact__radio span {
    margin-bottom: 5px;
  }
}

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

.contact__checkbox {
  margin-top: 55px;
}

@media screen and (max-width: 767px) {
  .contact__checkbox {
    margin-top: 30px;
  }
}

.contact__checkbox [type="checkbox"] {
  display: none;
}

.contact__checkbox span {
  display: inline-block;
  padding-left: 51px;
  position: relative;
}

.contact__checkbox span::before {
  content: "";
  width: 25px;
  height: 25px;
  border: 1px solid #707070;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact__checkbox span::after {
  content: "";
  width: 25px;
  height: 25px;
  background: transparent url(../img/checkbox.png) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

@media screen and (max-width: 767px) {
  .contact__checkbox span {
    padding-left: 38px;
  }
}

.contact__checkbox [type="checkbox"]:checked + span::after {
  display: block;
}

.contact__checkbox a {
  font-weight: bold;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact__checkbox a:hover {
  opacity: .7;
}

.contact__submit {
  margin-top: 29px;
}

.contact__submit [type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  border: none;
  font-size: inherit;
  font-family: inherit;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  width: 304px;
  height: 56px;
  line-height: 56px;
  background: #3F51B5 url(../img/button-arrow.png) no-repeat right 12px center/17px 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contact__submit [type="submit"]:hover {
  opacity: .7;
}

/*=================================
モーダル メソッドshow(),hide()で表示非表示
=======================================*/
.modal__contact {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 900px;
  max-width: 90%;
  height: 652px;
  background: #fff;
  color: #707070;
  padding: 60px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 102;
  text-align: center;
  display: none;
}

@media screen and (max-width: 767px) {
  .modal__contact {
    padding: 30px;
    max-height: 75%;
  }
}

.modal__head {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 24px;
  position: relative;
}

.modal__head:after {
  content: "";
  width: 100px;
  height: 2px;
  background: #3F51B5;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}

.modal__content {
  margin-top: 40px;
  height: calc(100% - 88px - 108px);
  overflow: auto;
}

.modal__content > :first-child {
  margin-top: 0;
}

.modal__sub__head {
  font-size: 20px;
  font-weight: bold;
  padding-left: 20px;
  text-align-last: left;
  position: relative;
  margin-top: 40px;
}

.modal__sub__head:after {
  content: "";
  width: 4px;
  height: 20px;
  background: #3F51B5;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.modal__text {
  padding: 16px;
  text-align: left;
}

.modal__button {
  margin-top: 60px;
}

.modal__button a {
  display: inline-block;
  width: 176px;
  max-width: 100%;
  height: 48px;
  line-height: 48px;
  color: #fff;
  background: #3F51B5;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.modal__icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -20px;
  right: -20px;
}

.modal__icon a {
  text-decoration: none;
}

.modal__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 101;
  display: none;
}

/*=================================
アコーディオン メニュー
=======================================*/
.qa__items {
  margin: 110px auto 0;
  width: 900px;
  max-width: 100%;
}

.qa__item:nth-child(n + 2) {
  margin-top: 24px;
}

.qa__title {
  background: #3F51B5;
  color: #fff;
  font-weight: bold;
  padding: 12px 16px 12px 56px;
  text-align: left;
  position: relative;
}

.qa__title:before {
  content: "Q";
  width: 11px;
  height: 16px;
  position: absolute;
  left: 20px;
}

.qa__icon {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa__icon.is-open .qa__icon__bar2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.qa__icon__bar1 {
  width: 14px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.qa__icon__bar2 {
  width: 2px;
  height: 14px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.qa__a {
  border: 1px solid #3F51B5;
  color: #3F51B5;
  font-weight: bold;
  text-align-last: left;
  padding: 16px 30px 16px 55px;
  position: relative;
  display: none;
}

.qa__a:before {
  content: "A";
  width: 10px;
  height: 16px;
  position: absolute;
  left: 20px;
}

/*====================================
フッター
==========================================*/
.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#333333));
  background: linear-gradient(to bottom, #666666, #333333);
  padding: 60px 0 24px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 12px;
  }
}

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

@media screen and (max-width: 767px) {
  .footer__content {
    display: block;
  }
}

.footer__left {
  width: 25%;
  text-align: left;
}

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

.footer__left a img {
  width: 205px;
}

.footer__logo a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__logo a:hover {
  opacity: .7;
}

.footer__address {
  margin-top: 32px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .footer__address {
    margin-top: 16px;
  }
}

.footer__tel {
  margin-top: 5px;
  font-size: 14px;
}

.footer__center {
  width: 50%;
}

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

.footer__center ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Lato", sans-serif;
}

.footer__center ul li:not(:last-child) {
  margin-right: 39px;
}

@media screen and (max-width: 767px) {
  .footer__center ul li:not(:last-child) {
    margin-right: 20px;
  }
}

.footer__center ul li a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__center ul li a:hover {
  opacity: .7;
}

.footer__right {
  width: 25%;
}

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

.footer__right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .footer__right ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__right ul li:not(:last-child) {
  margin-right: 16px;
}

.footer__right ul li a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__right ul li a:hover {
  opacity: .7;
}

.footer__right ul li a img {
  width: 30px;
}

.footer__copyright {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  margin-top: 33px;
}

@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 24px;
  }
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
}

.to-top.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .to-top {
    right: 12px;
    bottom: 12px;
  }
}

.to-top a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.to-top a:hover {
  opacity: .7;
}

.to-top a img {
  width: 60px;
}

@media screen and (max-width: 767px) {
  .to-top a img {
    width: 30px;
  }
}
