/* COLORS */
/* Screen Sizes */
* {
  margin: 0;
  padding: 0;
}

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

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.u-gutter > * + * {
  margin-top: 2rem;
}

.heading-primary {
  font-size: 6rem;
  font-size: clamp(4.5rem, calc(5vw + 1.5rem), 7rem);
  line-height: 1;
  text-transform: uppercase;
}

.heading-secondary {
  text-align: center;
  font-size: 5rem;
  font-size: clamp(4rem calc(5vw + 1.5rem), 6.5rem);
  color: #17353d;
  margin-bottom: 7rem;
}

.heading-tertiary {
  font-size: 4rem;
  font-size: clamp(3rem, calc(5vw + 1.5rem), 5.5rem);
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  line-height: 1.1;
}

.btn, .btn:link, .btn:visited {
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  background: #faa700;
  color: #fff;
  border-radius: 0.5rem;
  -webkit-transition: opacity 0.5s linear, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s linear, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s linear;
  transition: transform 0.5s ease-in-out, opacity 0.5s linear, -webkit-transform 0.5s ease-in-out;
}

.btn:hover, .btn:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.9;
}

.split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.split > * {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  min-width: 24rem;
}

.container {
  width: 85%;
  max-width: 104rem;
  margin: 0 auto;
}

.hero {
  color: #fff;
  text-align: center;
  padding: 20rem 0;
  background: #222;
}

@supports (background-blend-mode: multiply) {
  .hero {
    background: url(../img/shoe-3.png), radial-gradient(#444, #111);
    background-blend-mode: multiply;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

.hero p {
  font-size: 2rem;
}

/**** 
    Hero End 
****/
section {
  padding: 10rem 0 6rem 0;
}

.featured {
  background: #eee;
}

.featured__item {
  display: block;
  position: relative;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  text-decoration: none;
  color: #333;
  text-align: center;
  line-height: 1.2;
}

.featured__item:hover, .featured__item:focus {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.featured__item:hover .featured__details, .featured__item:focus .featured__details {
  opacity: 1;
}

.featured__item::after {
  content: "";
  position: absolute;
  padding: 75% 75% 0 0;
  background: #2193b0;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  z-index: -1;
}

.featured__details {
  opacity: 0;
  -webkit-transition: opacity .35s linear;
  transition: opacity .35s linear;
  font-size: 1.6rem;
}

.featured__details span {
  display: block;
  font-weight: 700;
  font-size: 3rem;
  text-shadow: 0 0 0.5rem white;
}

/**** 
   Featured Product End 
****/
.products__item {
  background: radial-gradient(#83e286, #4CAF50);
  padding: 5rem;
  border-radius: 4rem;
  text-align: center;
}

.products__item:not(:last-child) {
  margin-bottom: 8rem;
}

.products__item--red {
  background: radial-gradient(#faa700, #e48d00);
}

.products__item--red .btn {
  background: #a1173c;
}

.products__item--white {
  background: radial-gradient(#fce4b3, #eac886);
}

.products__item--white .btn {
  background: #2f4858;
}

.products__item--blue {
  background: radial-gradient(#6dd5ed, #2193b0);
}

.products__item--blue .btn {
  background: #008951;
}

.products__img {
  margin-top: -10rem;
}

@media (min-width: 45em) {
  .products .products__item {
    text-align: left;
  }
  .products .products__img {
    float: right;
    width: 60%;
  }
}

.products__description {
  font-size: 1.5rem;
}

/**** 
    Products End 
****/
footer {
  background: #eee;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.6rem;
}

footer a {
  display: inline-block;
}

footer a, footer a:hover, footer a:visited {
  text-decoration: none;
  color: #333;
  opacity: 0.9;
}

footer a:hover {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

footer .copyleft {
  display: inline-block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
/*# sourceMappingURL=main.css.map */