@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=hoge");
.section-title,
.header-nav,
.news-more,
.button,
.footer-nav,
.footer-copyright {
  font-family: "Lato", sans-serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  color: #333333;
}

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

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

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

a {
  color: inherit;
  cursor: pointer;
}

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

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

@media (max-width: 767px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.section {
  padding: 80px 0 120px;
}

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

.section-title {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  padding-bottom: 14px;
  position: relative;
}

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

@media (max-width: 767px) {
  .section-title::after {
    width: 42px;
    height: 3px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 26px;
    padding-bottom: 18px;
  }
}

.button {
  margin-top: 30px;
  margin-bottom: 18px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .button {
    margin-top: 20px;
  }
}

.button a {
  display: inline-block;
  width: 382px;
  max-width: 100%;
  height: 72px;
  line-height: 72px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #3F51B5;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-decoration: none;
}

@media (max-width: 767px) {
  .button a {
    width: 280px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }
}

/*=========================
header
=========================*/
.header {
  background: #3F51B5;
  height: 100px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  z-index: 3;
}

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

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  width: 205px;
}

.header-logo img {
  display: block;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

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

.header-nav li:not(:first-child) {
  margin-left: 34px;
}

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

.header-nav li a::after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E81919;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-nav li a:hover {
  cursor: pointer;
}

.header-nav li a:hover::after {
  width: 100%;
}

.header-nav li a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: #E81919;
}

/*=========================
hero
=========================*/
.hero {
  width: 100%;
  height: 600px;
  background: url(mainvisual.png) no-repeat center center/cover;
  position: relative;
  margin-top: 100px;
}

@media (max-width: 767px) {
  .hero {
    margin-top: 60px;
    height: 500px;
  }
}

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

@media (max-width: 767px) {
  .hero-content {
    padding: 0 40px;
  }
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 30px;
  }
}

.hero-lead {
  font-size: 24px;
  font-weight: 700;
  margin-top: 6px;
}

@media (max-width: 767px) {
  .hero-lead {
    font-size: 18px;
    margin-top: 10px;
  }
}

.hero-button {
  margin-top: 20px;
}

.swiper-horizontal>.swiper-scrollbar {
  display: none;
}

.swiper-scrollbar {
  display: none;
}

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

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

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

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

.swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: transparent url(arrow-next.svg) no-repeat center center/contain;
  right: calc(50% - 600px);
    z-index: 2;
}

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

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

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

.swiper-pagination-bullet {
/*   width: 16px;
  height: 16px;
  background: #FFFFFF9E;
  opacity: 1; */
  display: none;
}

@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

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

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

/*=========================
card
=========================*/
/* .card {
  background: #EFEFEF;
  padding: 80px 0 60px;
}

.card-items {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .card-items {
    margin-top: 42px;
  }
}

.card-item {
  width: calc(33.3% - 24px * 2 / 3);
  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: 24px;
  }
}

@media (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 (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: 4px;
}

.card-text {
  color: #6F7579;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 4px;
} */

/*=========================
card
=========================*/
.card {
  background: #EFEFEF;
  padding: 80px 0 60px;
}

.card-items {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .card-items {
    margin-top: 42px;
  }
}

.card-item {
  width: calc(33.3% - 24px * 2 / 3);
  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: 24px;
  }
}

@media (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 (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: 4px;
}

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


/*=========================
News
=========================*/
.news {
  background: white;
}

.news-items {
  margin: 60px auto 0;
  width: 800px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .news-items {
    margin: 40px auto 0;
  }
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 185px;
}

.news-date {
  width: 105px;
  padding-top: 3px;
}

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

.news-label a:hover {
  opacity: 0.7;
}

.news-label a.is-blue {
  background: #3F51B5;
}

.news-label a.is-red {
  background: #E81919;
}

.news-title {
  width: calc(100% -185px);
  padding-left: 20px;
  padding-top: 3px;
}

.news-title a {
  text-decoration: none;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .news-title {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    margin-top: 6px;
  }
}

.news-more {
  margin-top: 37px;
  text-align: center;
}

.news-more a {
  text-decoration: none;
  color: #E81919;
  font-weight: 700;
  padding-right: 14px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.news-more a:hover {
  opacity: 0.7;
}

.news-more a::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 11px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(news-arrow.svg) no-repeat center center/contain;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .news-more {
    margin-top: 30px;
  }
}

/*=========================
price
=========================*/
.price {
  background: #EFEFEF;
}

.price-content {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .price-content {
    margin-top: 40px;
    display: block;
  }
}

.price-img {
  width: 37.83333%;
  height: auto;
}

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

.price-table {
  width: 61.5%;
  margin-left: auto;
}

@media (max-width: 767px) {
  .price-table {
    margin-top: 20px;
    width: 100%;
  }
}

.table {
  border-collapse: collapse;
  border: 1px solid #707070;
  background: #fff;
  width: 100%;
  table-layout: fixed;
  font-weight: 700;
}

.table th,
.table td {
  font-weight: 700;
  border: 1px solid #707070;
  padding: 0 18px;
  height: 58px;
  vertical-align: middle;
  
  @media (max-width: 767px) {
  padding: 0 12px;
  }
}

.table th {
  background: #999;
  color: #fff;
  text-align: center;
}

.table th:nth-child(1) {
  width: 172px;
}

@media (max-width: 767px) {
  .table th:nth-child(1) {
    width: 80px;
  }
}

.table td {
  text-align: right;
}

.table strong {
  color: #E81919;
  line-height: 1.2;
}

.table span {
  font-weight: 700;
  font-size: 13px;
  display: block;
  margin-top: 1px;
  line-height: 1.2;
}

.price-attention {
  font-size: 14px;
  margin-top: 10px;
}

.price-attention a {
  font-weight: 700;
}

/*=========================
Q&A
=========================*/
.question-items {
  margin: 80px auto 0;
  width: 901px;
  max-width: 100%;
}

.question-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #3F51B5;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 20px;
}

.question-item:not(:first-child) {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .question-item {
    padding: 12px 14px;
  }
}

.question-title {
  margin-left: 25px;
}

.question-icon {
  margin-left: auto;
}

.question-icon.is-active .question-bar2 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.question-bars {
  position: relative;
  width: 14px;
  height: 100%;
}

.question-bar1,
.question-bar2 {
  width: 14px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.question-bar1 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.question-bar2 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.question-answer {
  background: #fff;
  color: #3F51B5;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px 16px 20px;
  border: 1px solid #3F51B5;
  display: none;
}

@media (max-width: 767px) {
  .question-answer {
    padding: 16px 14px 16px 14px;
  }
}

.question-text {
  padding-left: 35px;
  position: relative;
}

.question-text::before {
  content: 'A';
  position: absolute;
  top: 0;
  left: 0;
}

/*=========================
access
=========================*/
.access-map {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
}

@media (max-width: 767px) {
  .access-map {
    margin: 40px auto 0;
  }
}

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

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

.access-info {
  width: 800px;
  max-width: 100%;
  margin: 16px auto 0;
}

.access-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.access-info-row:not(first-child) {
  margin-top: 12px;
}

.access-info-row dt {
  margin: 0;
  padding: 0;
  font-weight: 700;
  width: 104px;
}

.access-info-row dd {
  margin: 0;
  padding: 0;
  width: calc(100% - 104px);
}

.access-button {
  text-align: center;
}

.access-button a {
  display: inline-block;
  position: relative;
  width: 304px;
  height: 56px;
  line-height: 56px;
  font-size: inherit;
}

.access-button a::after {
  position: absolute;
  content: "";
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 19px;
  background: url(button-arrow.svg) no-repeat center center/contain;
}

/*=========================
contact
=========================*/
.contact {
  background: #EFEFEF;
}

.contact__form {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
  background: #fff;
  padding: 60px;
}

@media (max-width: 767px) {
  .contact__form {
    margin: 40px auto 0;
    padding: 30px;
  }
}

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

@media (max-width: 767px) {
  .contact-form__row {
    display: block;
  }
}

.contact-form__row:not(:first-child) {
  margin-top: 60px;
}

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

.contact-form__label {
  width: 161px;
  padding-top: 5px;
}

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

.contact-form__label label {
  font-weight: 700;
}

.contact-form__label label.is-required {
  display: inline-block;
  position: relative;
}

.contact-form__label label.is-required::after {
  position: absolute;
  content: '必須';
  top: calc(100% + 2px);
  left: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #E81919;
  text-align: center;
  border-radius: 4px;
  padding: 3px 8px;
  line-height: 1;
}

@media (max-width: 767px) {
  .contact-form__label label.is-required::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: calc(100% + 6px);
    width: 44px;
  }
}

.contact-form__input {
  width: calc(100% - 161px);
  margin: 0;
  padding: 0;
}

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

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

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

.contact-form__input select {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  padding: 12px 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(select-arrow.svg) no-repeat right 12px center/17px 14px;
}

@media (max-width: 767px) {
  .contact-form__input select {
    width: 100%;
  }
}

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

@media (max-width: 767px) {
  .contact-form__input textarea {
    width: 100%;
  }
}

.contact-form__radio {
  margin-top: 32px;
}

@media (max-width: 767px) {
  .contact-form__radio {
    margin-top: 16px;
  }
}

.contact-form__radio [type="radio"] {
  display: none;
}

.contact-form__radio span {
  display: inline-block;
  padding-left: 26px;
  margin-right: 36px;
  position: relative;
}

@media (max-width: 767px) {
  .contact-form__radio span {
    margin-bottom: 8px;
  }
}

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

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

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

.contact-form__check {
  margin-top: 63px;
  text-align: center;
}

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

.contact-form__check [type="checkbox"] {
  display: none;
}

.contact-form__check span {
  display: inline-block;
  padding-left: 49px;
  position: relative;
}

@media (max-width: 767px) {
  .contact-form__check span {
    padding-left: 28px;
  }
}

.contact-form__check span a {
  font-weight: 700;
}

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

.contact-form__check span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: transparent url(check.svg) no-repeat center center/contain;
  display: none;
}

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

.contact-form__button {
  margin-top: 35px;
  text-align: center;
}

.contact-form__button [type="submit"] {
  display: inline-block;
  background: #3F51B5 url(button-arrow.svg) no-repeat right 12px center/17px 16px;
  width: 304px;
  height: 56px;
  font-weight: 700;
  color: #fff;
  border: 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);
  font-family: inherit;
  font-size: 16PX;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: relative;
}

@media (max-width: 767px) {
  .contact-form__button [type="submit"] {
    width: 100%;
  }
}

/*=========================
modal
=========================*/
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 900px;
  height: 652px;
  max-width: calc(100% - 24px * 2);
  max-height: calc(100% - 24px * 2);
  background: #fff;
  -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: 300;
  display: none;
}

.modal-area {
  width: 100%;
  padding: 60px;
  position: relative;
}

@media (max-width: 767px) {
  .modal-area {
    padding: 40px;
  }
}

.modal-icon {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 40px;
  height: 40px;
  background: #3F51B5;
  border-radius: 50%;
}

.modal-icon__bars {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-icon__bar1,
.modal-icon__bar2 {
  width: 14px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
}

.modal-icon__bar1 {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-icon__bar2 {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.modal-title {
  color: #707070;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 24px;
  text-align: center;
}

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

.modal-content {
  margin-top: 40px;
  color: #707070;
  height: calc(652px - 168px * 2);
  overflow: auto;
}

.modal-content__title {
  font-size: 20px;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}

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

.modal-content__title:not(:first-child) {
  margin-top: 24px;
}

.modal-content__text {
  padding: 16px 0 0 20px;
}

.modal-button {
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-top: 60px;
}

.modal-button:hover {
  opacity: 0.7;
}

.modal-button a {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  background: #3F51B5;
  padding: 16px 0;
  width: 176px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px #00000029;
          box-shadow: 0 3px 6px #00000029;
  text-decoration: none;
}

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

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

@media (max-width: 767px) {
  .footer {
    padding: 30px 40px 14px;
  }
}

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

@media (max-width: 767px) {
  .footer-wrapper {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .footer-wrapper {
    display: block;
  }
}

.footer-left {
  width: 34%;
}

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

.footer-logo img {
  width: 205px;
  height: 40px;
  margin: 0;
  max-width: 100%;
}

.footer-address,
.footer-tel,
.footer-copyright {
  font-size: 14px;
}

.footer-address {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .footer-address {
    margin-top: 12px;
  }
}

.footer-tel {
  margin-top: 10px;
}

.footer-center {
  width: 52%;
}

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

@media (min-width: 768px) and (max-width: 1199px) {
  .footer-center {
    margin-top: 24px;
  }
}

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

@media (max-width: 767px) {
  .footer-nav {
    display: block;
  }
}

.footer-nav li {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer-nav li:hover {
  opacity: 0.7;
}

.footer-nav li:not(:first-child) {
  margin-left: 40px;
}

@media (max-width: 767px) {
  .footer-nav li:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}

.footer-nav a {
  text-decoration: none;
}

.footer-right {
  width: 12%;
  margin-top: 24px;
}

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

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

@media (max-width: 767px) {
  .footer-sns {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.footer-sns li {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer-sns li:hover {
  opacity: 0.7;
}

.footer-sns li:not(:first-child) {
  margin-left: 16px;
}

.footer-sns li img {
  width: 30px;
  height: 30px;
}

.footer-copyright {
  text-align: center;
  margin-top: 46px;
}

.to-top {
  z-index: 100;
  position: fixed;
  bottom: 24px;
  right: 24px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

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

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

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

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

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

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

/*=========================
drawer
=========================*/
.drawer-icon {
  position: fixed;
  right: 16px;
  top: 20px;
  z-index: 200;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .drawer-icon {
    display: none;
  }
}

@media (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon.is-active {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.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 {
  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;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-contents {
  background: #fff;
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  -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: 199;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

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

.drawer-icon__item {
  border-bottom: #707070 dotted 2px;
}

.drawer-icon__item a {
  display: block;
  color: #707070;
  padding: 18px 20px;
  position: relative;
}

.drawer-icon__item a::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 21px;
  width: 8px;
  height: 11px;
  background: transparent url(arrow-b.svg) 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: 198;
  display: none;
}

.drawer-background.is-active {
  display: block;
}
