@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*1remを10pxに変更*/
  font-family: "Montserrat", sans-serif;
}

body.is-fixed {
  position: fixed;
}

a {
  text-decoration: none;
  color: #000000;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}

a.text-link:hover {
  opacity: .6;
}

p {
  font-size: 1.6rem;
}

img {
  width: 100%;
}

li {
  list-style: none;
}

.st-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 100;
}

.st-header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 40px;
}

@media screen and (max-width: 768px) {
  .st-header_content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 20px;
  }
}

.st-header_logo {
  display: inline-block;
}

.st-header_logo img {
  vertical-align: bottom;
  width: 37px;
}

.st-header_logo-text {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  margin-left: 10px;
}

.st-header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 500;
}

.st-header_nav-item {
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .st-header_nav {
    display: none;
  }
}

.st-header_menu {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.st-header_menu div {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #241e1c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.st-header_menu.is-on div:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 0;
  margin: auto;
}

.st-header_menu.is-on div:nth-of-type(2) {
  display: none;
}

.st-header_menu.is-on div:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  margin: auto;
}

.st-header_menu div:nth-of-type(1) {
  top: 0;
}

.st-header_menu div:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.st-header_menu div:nth-of-type(3) {
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .st-header_menu {
    display: block;
  }
}

.st-header_navsp {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 100;
  background: #000000cc;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
}

.st-header_navsp.is-on {
  opacity: 1;
  visibility: visible;
}

.st-header_navsp-list {
  max-width: 375px;
  width: calc(100% - 80px);
}

.st-header_navsp-item {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #ffffff;
}

.st-header_navsp-item a {
  font-size: 2rem;
  color: #ffffff;
}

.st-header_navsp-item.close {
  margin: 50px auto 0;
  border: none;
}

.st-header_navsp-item.close a {
  position: relative;
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 10px 10px 10px 40px;
}

.st-header_navsp-item.close a::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 30%;
  left: 20px;
  width: 2px;
  height: 20px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.st-header_navsp-item.close a::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 2px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.st-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}

.st-footer p {
  font-size: 2rem;
}

.title-fade {
  -webkit-animation: 2s titleFade forwards;
          animation: 2s titleFade forwards;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  opacity: 0;
}

.fade {
  opacity: 0;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.inview {
  opacity: 1;
  -webkit-animation: 1s fadeDown forwards;
          animation: 1s fadeDown forwards;
}

@-webkit-keyframes titleFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes titleFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  @-webkit-keyframes titleFade {
    0% {
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes titleFade {
    0% {
    }
    100% {
      opacity: 1;
    }
  }
}

@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -25px);
            transform: translate(0, -25px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -25px);
            transform: translate(0, -25px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/*# sourceMappingURL=common.css.map */