html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  aside {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  aside {
    padding-top: 80px;
    box-sizing: border-box;
    height: 100%;
    width: 300px;
    position: fixed;
    overflow: auto;
  }
  aside .logo {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  main {
    margin: 0 50px 0 300px;
  }
}
p {
  font-size: 14px;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
  padding: 0;
}
a {
  text-decoration: none;
  color: #000;
}
.full-width {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 1024px) {
  .full-width {
    margin: 0;
  }
}
.arrow {
  position: relative;
}
.arrow::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  transform: rotate(45deg);
  top: -4.5px;
  right: 0;
}
.arrow::after {
  content: '';
  width: 40px;
  height: 1px;
  border: 0px;
  background-color: #000;
  position: absolute;
  top: 1.3px;
  right: 0;
}
.arrow-white {
  position: relative;
}
.arrow-white::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  transform: rotate(45deg);
  top: -4.5px;
  right: 0;
}
.arrow-white::after {
  content: '';
  width: 40px;
  height: 1px;
  border: 0px;
  background-color: #fff;
  position: absolute;
  top: 1.3px;
  right: 0;
}
.heading__title {
  color: $color;
  font-size: 28px;
  letter-spacing: 0.1em;
  font-family: Poppins;
  line-height: 130%;
}
@media screen and (min-width: 1024px) {
  .heading__title {
    font-size: 50px;
  }
}
.heading__subtitle {
  font-size: 14px;
  margin: 6px 0 24px;
  letter-spacing: 0.1em;
}
.heading__lead {
  padding-bottom: 30px;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .heading__lead {
    font-size: 16px;
  }
}
.number__over {
  position: relative;
}
.number__over__back {
  font-family: Futura;
  font-weight: 500;
  font-size: 98px;
  color: #aab7c0;
  opacity: 0.3;
}
.number__over__title {
  font-size: 20px;
  line-height: 140%;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #222;
  position: absolute;
  bottom: 0px;
  left: 40px;
}
.number__description {
  font-size: 15px;
  line-height: 180%;
  margin: 16px 0 40px;
}
@media screen and (min-width: 1024px) {
  .form dl {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1024px) {
  .form dt {
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .form dt {
    clear: left;
    float: left;
    width: 20%;
  }
  .form dd {
    margin-left: 20%;
  }
}
.form__title {
  margin: 20px 0 12px;
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .form__title {
    margin: 0;
    line-height: 40px;
  }
}
.form__input {
  padding: 13px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #666;
  border-radius: 4px;
}
.form .half {
  width: 49%;
}
.form__radio {
  width: 20px;
  height: 20px;
  margin: 10px 0;
}
.form label {
  margin-right: 10px;
}
.form__textarea {
  width: 100%;
  height: 240px;
  box-sizing: border-box;
  padding: 13px;
}
.form__select {
  width: 100%;
  height: 43px;
  padding: 8px;
}
.form__btn {
  width: 100%;
  line-height: 55px;
  background: #000;
  color: #fff;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .form__btn {
    width: 60%;
  }
}
.must::after {
  content: '*';
  color: #f00;
  margin-left: 8px;
}
.agree {
  margin: 30px 0 10px;
}
@media screen and (min-width: 1024px) {
  .agree {
    margin-top: 70px;
  }
}
.agree__line {
  text-decoration: underline;
  margin-left: 10px;
}
.header {
  background-color: #fff;
  width: 100%;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto 20px;
  height: 100%;
}
.header__logo {
  width: 100px;
}
.header__toggle {
  position: absolute;
  right: 0;
  background-color: #f00;
  padding: 10px;
}
.drawer {
  position: absolute;
  right: 0;
  top: 0;
}
.drawer-hidden {
  display: none;
}
.drawer-open {
  display: flex;
  height: 70px;
  width: 70px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上に */
  cursor: pointer;
}
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}
.drawer-open span {
  background: rgba(255,255,255,0);
}
.drawer-open span:before {
  bottom: 6px;
}
.drawer-open span:after {
  top: 6px;
}
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
#drawer-check:checked ~ .nav {
  left: 0; /* メニューを画面に入れる */
}
.nav {
  margin-top: 70px;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: 0.5s;
}
.nav__list {
  text-align: center;
  height: calc(100% - 200px);
}
.nav__list__item {
  margin: 30px 0;
}
@media screen and (min-width: 1024px) {
  .nav__list__item {
    margin: 50px 0;
  }
}
.nav__bottom__btns {
  text-align: center;
  display: flex;
}
.nav__bottom__btn {
  line-height: 48px;
  background: #fff;
  border: 1px solid #222;
  width: 46%;
  margin: auto;
}
.nav__bottom__sns {
  text-align: center;
  margin-top: 20px;
}
.side {
  padding-top: 80px;
  text-align: center;
}
.side__logo {
  width: 50%;
  margin: auto;
}
.side__list {
  height: calc(100% - 200px);
}
.side__list__item {
  margin: 30px 0;
}
.side__bottom__btns {
  text-align: center;
  display: flex;
}
.side__bottom__btn {
  line-height: 48px;
  background: #fff;
  border: 1px solid #222;
  width: 46%;
  margin: auto;
}
.side__bottom__sns {
  text-align: center;
  margin-top: 20px;
}
.footer {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
  }
}
.footer__vision {
  margin-top: 55px;
}
@media screen and (min-width: 1024px) {
  .footer__vision {
    width: 300px;
  }
}
.footer__vision__logo {
  width: 50%;
  margin: 20px 0 10px;
}
.footer__address {
  margin: 40px auto;
  display: inline-block;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .footer__address {
    margin: 0 30px;
    width: 600px;
  }
}
.footer__address__map {
  margin: 10px 0 20px;
}
@media screen and (max-width: 1024px) {
  .footer__address__map {
    line-height: 20px;
  }
}
.footer__address__map a {
  color: #000;
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .footer__address__map a {
    margin-left: 20px;
  }
}
.footer__address__tel a {
  color: #000;
  text-decoration: underline;
}
.footer__btns {
  display: flex;
  justify-content: space-around;
}
.footer__btn {
  border: solid 1px #000;
  line-height: 48px;
  width: 170px;
  font-weight: bold;
  color: #000;
}
.footer__inc {
  display: inline-block;
  margin: 12px 0;
}
@media screen and (min-width: 1024px) {
  .footer__inc {
    margin-top: 50px;
    width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .sp-hidden {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .pc-hidden {
    display: none;
  }
}
.order {
  padding: 40px 24px;
}
@media screen and (min-width: 1024px) {
  .order {
    max-width: 800px;
    margin: auto;
  }
}
.order__lead {
  line-height: 160%;
}
.order__h4 {
  margin-top: 70px;
}
@media screen and (min-width: 1024px) {
  .order .heading {
    margin-left: -50px;
    margin-bottom: 50px;
  }
}
.order .finish {
  margin: 20px 0;
}
.order .budget {
  margin-right: 10px;
}
