/* layout */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  min-height: 100%;
  position: relative;
}

body {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 180%;
  color: #1E293B;
  background-color: #E2E8F0;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
}

a {
  display: inline-block;
  opacity: 1;
  transition: 0.3s all;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

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

.l-wrapper {
  padding: 0 140px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    padding: 0 24px;
  }
}

.header {
  background-color: #475569;
  text-align: center;
  padding: 16px;
}
.header__logo {
  display: inline-block;
}

.footer {
  background-color: #475569;
  text-align: center;
  padding: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
.footer__copy {
  font-size: 1.2rem;
  color: #E2E8F0;
}

.sns {
  padding-top: 90px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sns {
    padding-top: 50px;
    max-width: 272px;
  }
}
.sns__inner {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px 0;
}
@media screen and (max-width: 767px) {
  .sns__inner {
    padding-top: 24px;
  }
}
.sns__inner li {
  min-width: 272px;
}
.sns__inner li a {
  font-size: 1.4rem;
  display: block;
  border: 1px solid #94A3B8;
  border-radius: 999px;
  background-color: #fff;
  text-align: left;
  padding: 15px 0 15px 48px;
  position: relative;
}
.sns__inner li a:before {
  content: "";
  position: absolute;
  background: url("../image/ic-insta.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.sns__inner li a:after {
  content: "";
  position: absolute;
  background: url("../image/ic-arrow.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.sns__inner li a.x:before {
  background: url("../image/ic-x.svg") no-repeat;
  background-size: contain;
}
.sns__inner li a.site:before {
  background: url("../image/ic-site.svg") no-repeat;
  background-size: contain;
}/*# sourceMappingURL=style.css.map */