@charset "UTF-8";
/* 共通の要素--------------------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

*:focus {
  outline: none;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}

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

.sp {
  display: none;
}

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

.wrap {
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

/*ヘッダー*/
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 90px;
}

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

.header__outer {
  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: 100%;
  margin: auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 150px;
  }
}

/*ハンバーガーメニュー--------------------------------------------------------------------*/
.hamburger {
  position: fixed;
  z-index: 20;
  top: 20px;
  right: 20px;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger__bar {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 7px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #5C6BD4;
}

.hamburger .top {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

.hamburger .bottom {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.hamburger .cross-top {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
  background-color: #fff;
}

.hamburger .cross-bottom {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
  background-color: #fff;
}

/*ハンバーガーメニュー内-----------------------------------------------------------------*/
.slide {
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  overflow-y: scroll;
  width: 400px;
  height: 100vh;
  padding: 80px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #5C6BD4;
}

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

.slide.show {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide__nav {
  padding: 0 15px;
}

.slide__menu {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: #fff;
  border-bottom: #fff solid 1px;
  font-family: 'Futura', 'century gothic';
}

.slide__none {
  overflow: hidden;
}

.footer-contact {
  margin: 120px auto 0;
  max-width: 280px;
  display: block;
}

.footer-contact:hover {
  opacity: 1;
}

.footer-contact:hover .footer-contact__img {
  -webkit-transform: translateX(-10px) translateY(-10px);
          transform: translateX(-10px) translateY(-10px);
}

.footer-contact__img {
  max-width: 190px;
  margin: 0 auto -50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .footer-contact__img {
    max-width: 150px;
    margin-bottom: -30px;
  }
}

.footer-contact__text {
  font-size: 1.6rem;
  color: #5C6BD4;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .footer-contact__text {
    font-size: 1.3rem;
  }
}

.footer {
  width: 100%;
  border-top: 1px solid #5C6BD4;
  padding-top: 40px;
  padding-bottom: 25px;
  margin-top: 40px;
}

.footer__nav {
  max-width: 665px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 20px;
    -webkit-column-gap: 40px;
            column-gap: 40px;
  }
}

.footer__nav--link img {
  max-height: 15px;
}

@media screen and (max-width: 767px) {
  .footer__nav--link img {
    max-height: 10px;
  }
}

.footer__copy {
  max-width: 235px;
  max-height: 15px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer__copy {
    max-width: 175px;
  }
}
/*# sourceMappingURL=common.css.map */