/* font-family: 'Noto Sans JP', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
* {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  overflow-x: hidden;
  letter-spacing: .7px;
  color: #434343;
  background: #fff;
}

a {
  display: block;
  text-decoration: none;
}

ul li {
  list-style: none;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

.contactLink {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
}

.flash_success {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #E96800;
  margin: 0 0 32px 0;
  padding: 0 20px;
}

.flash_success::before {
  content: "";
  display: block;
  background-image: url(../img/contact/caution_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto 10px;
  width: 36px;
  height: 32px;
}

.flash_failure {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #E96800;
  margin: 0 0 16px 0;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .contactLink {
    width: 100px;
    height: 100px;
    -webkit-transition: 1s;
    transition: 1s;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
  }
  .contactLink:hover {
    opacity: .7;
  }
  .flash_success,
  .flash_failure {
    font-size: 28px;
    margin: 0 0 32px 0;
    padding: 0;
  }
  .flash_success {
    margin: 0 0 64px 0;
  }
  .flash_success::before {
    margin: 0 auto 20px;
    width: 72px;
    height: 64px;
  }
}

@media screen and (min-width: 1024px) {
  .contactLink {
    width: 160px;
    height: 160px;
    bottom: 30px;
    right: 30px;
  }
}

@media screen and (min-width: 1366px) {
  .contactLink {
    width: 200px;
    height: 200px;
  }
}

.guide {
  width: 1100px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  border-left: 1px dotted #222;
  border-right: 1px dotted #222;
  z-index: 1000;
}
/*# sourceMappingURL=style.css.map */