* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: #f7f7f7;
  color: #121212;
  background-image: url("../../images/common/bg-white.webp");
  background-repeat: no-repeat;
  background-position: top right;
  background-attachment: fixed;
}
body.bg-black {
  background-color: #121212;
  color: #fff;
  background-image: url("../../images/common/bg-black.webp");
}

p.title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 8.4px;
  display: flex;
  gap: 16px;
  color: #121212;
  margin: 6px auto 48px auto;
  width: 1208px;
}
@media screen and (max-width: 1023px) {
  p.title {
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 5.6px;
    margin-bottom: 40px;
    padding-left: 5%;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  p.title {
    display: none;
  }
}

svg.title-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  svg.title-sp {
    display: block;
    margin-left: 5%;
    margin-bottom: 40px;
  }
  svg.title-sp > path {
    fill: #121212;
  }
}

h1 {
  font-family: "Be Vietnam Pro", sans-serif;
  display: flex;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 4px;
  gap: 16px;
  color: #121212;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  h1 {
    font-size: 24px;
    letter-spacing: 2.4px;
    gap: 8px;
  }
}
h1 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.4px;
  color: #121212;
}
@media screen and (max-width: 1023px) {
  h1 span {
    font-size: 11px;
    letter-spacing: 1.1px;
  }
}
h1.title-vertical {
  flex-direction: column;
  align-items: center;
  gap: 0;
}

body.bg-black h1 {
  color: #fff;
}
body.bg-black h1 span {
  color: #bbb;
}
body.bg-black p.title {
  color: #fff;
}

.wrap {
  display: flex;
  margin: auto;
}
.wrap.w-845 {
  width: 845px;
}
@media screen and (max-width: 1023px) {
  .wrap.w-845 {
    width: 100%;
  }
}
.wrap.w-1068 {
  width: 1068px;
}
@media screen and (max-width: 1023px) {
  .wrap.w-1068 {
    width: 100%;
  }
}
.wrap.w-1124 {
  width: 1124px;
}
@media screen and (max-width: 1023px) {
  .wrap.w-1124 {
    width: 100%;
  }
}
.wrap.w-1133 {
  width: 1133px;
}
@media screen and (max-width: 1023px) {
  .wrap.w-1133 {
    width: 100%;
  }
}
.wrap.w-1208 {
  width: 1208px;
}
@media screen and (max-width: 1023px) {
  .wrap.w-1208 {
    width: 100%;
  }
}

.back-to-top .link {
  text-align: center;
}
.back-to-top .link a {
  display: inline-block;
  padding: 8px 0;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 1.3px;
  text-decoration: none;
  border-bottom: 1px solid #555;
  position: relative;
}
.back-to-top .link a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.7s cubic-bezier(0.4, 0, 0, 1);
}
.back-to-top .link a:hover::after {
  width: 100%;
}/*# sourceMappingURL=common.css.map */