@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

a {
  text-decoration: none;
}

.inner {
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1199px) {
  .inner {
    max-width: calc(100% - 32px);
    margin: auto;
  }
}
@media (max-width: 767px) {
  .inner {
    max-width: calc(100% - 32px);
    margin: auto;
  }
}

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

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

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

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

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

.header-left {
  margin-right: auto;
  line-height: 1;
}
.header-left img {
  display: inline-block;
  width: 205px;
}
@media (max-width: 1199px) {
  .header-left img {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .header-left img {
    width: 148px;
  }
}

.header-right {
  margin-left: auto;
}

.header-nav-list li {
  list-style: none;
  display: inline-block;
}
@media (max-width: 767px) {
  .header-nav-list li {
    display: none;
  }
}
.header-nav-list li:not(:first-child) {
  margin-left: 40px;
}
.header-nav-list li a {
  color: #fff;
  text-decoration: none;
  position: relative;
}
.header-nav-list li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  width: 100%;
  background: transparent;
  transition: all 0.3s ease;
}
.header-nav-list li a:hover::after {
  background: #e81919;
}
.header-nav-list li a.is-active::after {
  background: #e81919;
}

.section {
  padding-top: 100px;
  padding-bottom: 80px;
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 0px;
  padding: 0 0 28px;
  position: relative;
  line-height: 1;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #3f51b5;
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  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;
  padding: 18px 20px;
  position: relative;
}
.drawer-content__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: transparent url(../img/arrow-b@3x.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;
}

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

.main-visual-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .main-visual-content {
    padding-left: 46px;
    padding-right: 46px;
  }
}

.main-visual-title {
  font-size: 64px;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .main-visual-title {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .main-visual-title {
    font-size: 36px;
  }
}

.main-visual-lead {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .main-visual-lead {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .main-visual-lead {
    font-size: 20px;
  }
}

.main-visual-btn {
  display: inline-block;
  margin-top: 38px;
  width: 384px;
  height: 72px;
  background: #3f51b5;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1199px) {
  .main-visual-btn {
    margin-top: 34px;
  }
}
@media (max-width: 767px) {
  .main-visual-btn {
    margin-top: 34px;
    width: 250px;
  }
}
.main-visual-btn a {
  color: #fff;
  font-size: 24px;
  line-height: 72px;
}
@media (max-width: 767px) {
  .main-visual-btn a {
    font-size: 20px;
  }
}

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

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

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

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

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

.card {
  background: #EFEFEF;
}

.card__items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 56px;
}

.card__item {
  width: calc(33.33333333% - 16px);
  margin-right: 24px;
  margin-top: 24px;
  background: #fff;
}
.card__item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1199px) {
  .card__item {
    width: calc(50% - 12px);
    margin-right: 24px;
  }
  .card__item:nth-child(3n) {
    margin-right: 24px;
  }
  .card__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .card__item {
    width: 100%;
    margin-right: 0;
  }
  .card__item:nth-child(3n) {
    margin-right: 0;
  }
}

.media {
  overflow: hidden;
  border-radius: 4px;
  padding: 16px 16px 14px;
  display: block;
  transition: all 0.3s ease 0s;
}

.card-img {
  text-align: center;
}
.card-img img {
  vertical-align: bottom;
}

.media-body {
  margin-top: 12px;
}

.media-title {
  font-size: 20px;
  font-weight: bold;
  color: #6F7579;
}

.media-lead {
  color: #6F7579;
  font-weight: bold;
  margin-top: 4px;
  line-height: 1.5;
}

.news-items {
  margin: 60px auto 0;
  width: 800px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .news-items {
    margin-top: 38px;
  }
}

.news-item {
  border-bottom: 1px solid #707070;
}
.news-item:last-child {
  border: none;
}

.info {
  display: flex;
  padding: 20px 0 10px;
}
@media (max-width: 767px) {
  .info {
    display: block;
    padding: 12px 0;
  }
}

.info-meta {
  display: flex;
  width: 185px;
}
@media (max-width: 767px) {
  .info-meta {
    width: 100%;
    padding-top: 0;
  }
}

.info-published {
  width: 105px;
  display: inline-block;
  padding-top: 3px;
}
@media (max-width: 767px) {
  .info-published {
    width: auto;
  }
}

.info-label {
  width: 80px;
}
@media (max-width: 767px) {
  .info-label {
    width: auto;
    margin-left: auto;
  }
}
.info-label a {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-weight: bold;
  background: #666666;
  padding: 8px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .info-label a {
    padding: 4px 8px;
  }
}
.info-label.info-label-type1 a {
  background: #3F51B5;
}
.info-label.info-label-type2 a {
  background: #E81919;
}

.info-title {
  line-height: 1.25;
  padding-top: 3px;
  width: calc(100% - 105px - 80px);
  margin-left: 20px;
}
@media (max-width: 767px) {
  .info-title {
    width: auto;
    margin-top: 6px;
    padding: 0;
    overflow-wrap: break-word;
  }
}
.info-title a {
  color: #333333;
  transition: all 0.3s ease 0s;
}
.info-title:hover {
  opacity: 0.7;
}

.news-link {
  text-align: center;
  margin-top: 40px;
}
.news-link a {
  color: #e81919;
  transition: all 0.3s ease 0s;
  font-weight: bold;
}
.news-link a::after {
  content: "";
  width: 7px;
  height: 11px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-top: -1px;
  background: url(../img/news-arrow@2x.png) no-repeat center center/contain;
}

.price {
  background: #EFEFEF;
}

.table-content {
  margin-top: 56px;
  display: flex;
}
@media (max-width: 767px) {
  .table-content {
    display: block;
    margin-top: 52px;
  }
}

.table-img {
  width: 454px;
  margin-right: 40px;
  text-align: center;
}
@media (max-width: 1199px) {
  .table-img {
    margin-right: 62px;
  }
}
@media (max-width: 767px) {
  .table-img {
    width: 100%;
    margin-top: 0;
    margin-bottom: 32px;
  }
}

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

.table-default {
  width: 100%;
  table-layout: fixed;
  background: #fff;
  border-collapse: collapse;
  border: 1px solid #707070;
}
.table-default th,
.table-default td {
  padding: 18px 24px;
  border: 1px solid #707070;
  vertical-align: middle;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .table-default th,
.table-default td {
    padding: 16px;
  }
}
.table-default th {
  text-align: center;
  background: #999999;
  color: #fff;
}
.table-default th:first-child {
  width: 172px;
}
@media (max-width: 1199px) {
  .table-default th:first-child {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .table-default th:first-child {
    width: 80px;
  }
}
.table-default td {
  text-align: right;
}
.table-default td.table-default__multiline {
  padding-top: 10px;
  padding-bottom: 8px;
}
.table-default td span.m-active {
  color: #e81919;
}
.table-default td span.m-small {
  font-size: 13px;
}

.table-attention {
  font-size: 14px;
}
.table-attention a {
  font-weight: 700;
  color: #333333;
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}

.map__iframe {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
}

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

.map__info {
  margin: 8px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 800px;
  max-width: 100%;
}
.map__info dt,
.map__info dd {
  padding: 3px 0;
  margin: 0;
}
.map__info dt {
  font-weight: 700;
  width: 104px;
}
.map__info dd {
  width: calc(100% - 118px);
}

.map__link {
  text-align: center;
  margin-top: 22px;
}
.map__link a {
  width: 304px;
  height: 56px;
  border-radius: 8px;
  display: inline-block;
  background: #3f51b5;
  text-align: center;
  padding: 16px 12px;
  color: #fff;
  transition: all 0.3s ease 0s;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.map__link a:hover {
  opacity: 0.7;
}
.map__link a::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 16px;
  background: url(../img/button-arrow@2x.png) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .map__link a {
    width: 240px;
  }
}

.qa {
  background: #EEEEEE;
}

.qa__items {
  width: 900px;
  max-width: 100%;
  margin: 80px auto 0;
}

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

.qa-box {
  border: 1px solid #3f51b5;
}

.qa-box__q {
  padding: 12px 56px;
  background: #3f51b5;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.qa-box__q::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 12px;
}

.qa-box__icon {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.qa-box__icon.is-open .qa-box__bar2 {
  transform: rotate(90deg);
}

.qa-box__bar1 {
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

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

.qa-box__a {
  padding: 16px 30px 16px 20px;
  background: #fff;
  line-height: 1.5;
  display: none;
}

.qa-box__content {
  color: #3f51b5;
  font-weight: 700;
  padding-left: 35px;
  position: relative;
}
.qa-box__content::before {
  content: "A";
  position: absolute;
  color: #3f51b5;
  left: 0px;
  top: 0px;
  font-weight: 700;
}

.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-top: 40px;
    padding: 24px;
  }
}

.contact-form__row {
  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: 160px;
  padding: 5px 0 0;
  margin: 0;
}
@media (max-width: 767px) {
  .contact-form__label {
    width: 100%;
  }
}
.contact-form__label label {
  font-weight: 700;
  position: relative;
}
.contact-form__label label.is-reqired {
  position: relative;
}
.contact-form__label label.is-reqired::after {
  content: "必須";
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  font-size: 14px;
  text-align: center;
  padding: 2px 8px;
  line-height: 1;
  color: #fff;
  background: #e81919;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .contact-form__label label.is-reqired::after {
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 6px);
    width: 44px;
  }
}

.contact-form__input {
  width: calc(100% - 160px);
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .contact-form__input {
    width: 100%;
    margin-top: 5px;
  }
}
.contact-form__input [type=text] {
  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] {
  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 {
  box-shadow: none;
  border: 1px solid #707070;
  background: #fff url(../img/select-arrow@2x.png) no-repeat right 12px center/17px 14px;
  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 textarea {
  height: 240px;
  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%;
  resize: none;
}

.contact-form__radio {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .contact-form__radio {
    margin-top: 20px;
  }
}
.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-right: 20px;
    margin-bottom: 8px;
  }
}
.contact-form__radio span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
}
.contact-form__radio span::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #3f51b5;
  position: absolute;
  left: 5px;
  top: 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: 30px;
  }
}
.contact-form__check [type=checkbox] {
  display: none;
}
.contact-form__check span {
  display: inline-block;
  padding-left: 49px;
  position: relative;
}
.contact-form__check span a {
  color: #333333;
  font-weight: bold;
  -webkit-text-decoration: solid;
          text-decoration: solid;
}
.contact-form__check span::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border: 1px solid #707070;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}
.contact-form__check span::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url(../img/check@2x.png) no-repeat center center/contain;
  display: none;
}
.contact-form__check [type=checkbox]:checked + span::after {
  display: block;
}

.contact-form__button {
  margin-top: 30px;
  text-align: center;
}
.contact-form__button [type=submit] {
  background: #3f51b5 url(../img/button-arrow@2x.png) no-repeat right 12px center/17px 16px;
  display: inline-block;
  width: 304px;
  height: 56px;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .contact-form__button [type=submit] {
    width: 240px;
  }
}

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

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

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

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

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

.modal-contact-button {
  margin-top: 60px;
  text-align: center;
  transition: all 0.3s ease 0s;
}
.modal-contact-button a {
  display: inline-block;
  width: 176px;
  padding: 14px;
  text-align: center;
  color: #fff;
  background: #3f51b5;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.modal-contact-button:hover {
  opacity: 0.7;
}

.modal-contact__icon {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -20px;
  top: -20px;
}
.modal-contact__icon img {
  width: 40px;
}

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

.footer {
  background: linear-gradient(to bottom, #666, #333);
  padding: 48px 0 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 62px;
    padding-bottom: 24px;
  }
}

.footer-container {
  display: flex;
  padding: 24px 40px;
}
@media (max-width: 767px) {
  .footer-container {
    display: block;
  }
}

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

.footer-logo a {
  transition: all 0.3s ease 0s;
}
.footer-logo img {
  width: 205px;
}

.footer-info {
  color: #fff;
  font-size: 14px;
  margin: 22px;
}
@media (max-width: 767px) {
  .footer-info {
    margin-top: 20px;
  }
}
.footer-info p {
  margin-top: 0;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .footer-info p {
    margin-bottom: 6px;
  }
}
.footer-info p:last-child {
  margin-bottom: 0;
}

.footer-center {
  width: 50%;
  padding: 8px 10px 0;
}
@media (max-width: 767px) {
  .footer-center {
    margin-top: 52px;
    padding: 0;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .footer-nav li {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .footer-nav li {
    margin-right: 16px;
  }
}
.footer-nav li:last-child {
  margin-right: 0;
}
.footer-nav li a {
  color: #fff;
  transition: all 0.3s ease 0s;
}

.footer-right {
  width: 20%;
  padding: 12px 0;
}
@media (max-width: 1199px) {
  .footer-right {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .footer-right {
    width: 100%;
    margin-top: 24px;
    padding: 0;
  }
}

.footer-sns {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .footer-sns {
    justify-content: center;
  }
}
.footer-sns li {
  margin-right: 16px;
}
.footer-sns li:last-child {
  margin-right: 0;
}
.footer-sns li a {
  transition: all 0.3s ease 0s;
}
.footer-sns li img {
  width: 30px;
  vertical-align: bottom;
}

.footer-copyright {
  text-align: center;
  color: #fff;
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer-copyright {
    margin-top: 40px;
  }
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  visibility: visible;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .to-top {
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 767px) {
  .to-top {
    right: 10px;
    bottom: 10px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.to-top img {
  width: 60px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .to-top img {
    width: 42px;
  }
}
/*# sourceMappingURL=style.css.map */