:root {
  font-size: 62.5%;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  background: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

.btn {
  display: inline-block;
  padding: 0.5em 1.2em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: bold;
}
.btn--primary {
  background-color: #e69c05;
}
.btn--primary:hover {
  opacity: 0.9;
}
.btn--secondary {
  background-color: #a82336;
}
.btn--secondary:hover {
  opacity: 0.8;
}

.primary-heading {
  font-size: clamp(4rem, 5vw + 1rem, 5.6rem);
  text-align: left;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
}

.secondary-heading {
  font-size: clamp(2rem, 5vw + 1rem, 4.6rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2em;
  color: #17353d;
}

.products__primary-heading {
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(4rem, 5vw + 1rem, 4.5rem);
}

.products__product {
  background-color: #ee9900;
  padding: 6em 3em;
}
@media (max-width: 898px) {
  .products__product {
    padding: 2em 3em;
  }
}

.featured {
  background-color: #eeeeee;
  padding: 5em 0;
  z-index: 2;
}
.featured__description {
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.featured__products {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 525px) {
  .featured__products {
    justify-content: center;
  }
}
.featured__details {
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
  color: #17353d;
}
.featured__details::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 10%;
  background: blue;
  width: 10em;
  height: 10em;
  border-radius: 50%;
  z-index: -1;
}
.featured__details:hover .featured__description, .featured__details:hover .featured__product-image {
  opacity: 1;
  transform: scale(1.2);
}
.featured__product-image {
  transform: scale(1);
  max-width: 14em;
  flex: 0 1 30%;
  height: auto;
  position: relative;
}
.featured__price {
  font-size: 3rem;
  font-weight: 800;
}

.product__image {
  width: 65%;
  text-align: left;
}
@media (max-width: 898px) {
  .product__image {
    width: 100%;
    display: block;
  }
}

.product__image--left {
  float: left;
  margin: 0 0 0 -5em;
}
@media (max-width: 898px) {
  .product__image--left {
    margin: 0 0 0 0;
    float: none;
  }
}

.product__image--right {
  float: right;
  margin-right: -5em;
}
@media (max-width: 898px) {
  .product__image--right {
    margin-right: 0;
    float: none;
  }
}

.products__description {
  margin: 2em 0;
  text-align: left;
}

.container {
  width: 85%;
  max-width: 60em;
  margin: 0 auto;
}

.spacing > * + * {
  margin-top: 3.5em;
}

.spacing--lg > * + * {
  margin-top: 6.3em;
}

.text-center {
  text-align: center;
}

.hero {
  padding: 11em 0 4em 0;
  min-height: 100vh;
  background: black;
  background: url(/img/shoe-3.png), radial-gradient(#444, #111);
  background-attachment: fixed;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  color: white;
  background-size: 100%;
  background-position: center center;
  text-align: center;
}

.main {
  margin-bottom: 3em;
}/*# sourceMappingURL=style.css.map */