@charset "UTF-8";
/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-header: 30;
  --z-index-default: 1;
  --z-index-negative: -1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
html {
  font-size: calc(100vw / 375);
}

@media (min-width: 768px) {
  html {
    font-size: calc(100vw / 1440);
  }
}

body {
  line-height: calc(24 / 16);
  font-size: 16rem;
  color: #4B5563;
  font-family: var(--font-family-base);
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-d-block {
  display: block;
}

/*!
component > title
------------------------------
*/
.c-title-level2-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-title-level2 {
  color: #000;
  font-weight: 700;
  font-size: 30rem;
  line-height: calc(36 / 30);
}

.c-title-level2--center {
  text-align: center;
}

/*!
component > lead
------------------------------
*/
.c-lead {
  text-align: center;
}

.c-lead--left {
  text-align: left;
}

/*!
component > button
------------------------------
*/
.c-button {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-weight: 500;
  padding: 11rem 23rem;
  border-radius: 8rem;
  background-color: #FF6B6B;
  border: 1rem solid #FF6B6B;
  transition: all 0.3s;
}

.c-button--large {
  width: 100%;
}

.c-button--white {
  background-color: #fff;
  border: 1rem solid #FF6B6B;
  color: #FF6B6B;
}

@media (any-hover: hover) {
  .c-button:hover,
  .c-button:focus {
    background-color: rgba(255, 107, 107, 0.9);
  }
}

@media (any-hover: hover) {
  .c-button--white:hover,
  .c-button--white:focus {
    background-color: #F9FAFB;
  }
}

/*!
component > link
------------------------------
*/
.c-link {
  font-weight: 500;
  color: #FF6B6B;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}

@media (any-hover: hover) {
  .c-link:hover {
    text-decoration: underline;
  }
}

.c-link::after {
  content: '';
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #FF6B6B;
}

.c-link--instagram::after {
  padding-inline: 4rem;
  width: 20rem;
  height: 20rem;
  mask-image: url('../img/icon_instagram.svg');
}

.c-link--arrow::after {
  padding-inline: 2rem;
  width: 20rem;
  height: 20rem;
  mask-image: url('../img/icon_arrow.svg');
}

/*!
component > like-button
------------------------------
*/
.c-like-button {
  display: inline-block;
  width: 32rem;
  height: 32rem;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 
    0 1rem 3rem rgba(0, 0, 0, 0.1),
    0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.c-like-button__icon-wrap {
  display: flex;
  width: 32rem;
  height: 32rem;
  padding: 4rem 3rem;
}

.c-like-button__icon {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .c-like-button:hover .c-like-button__icon {
    fill: #FF6B6B;
  }
}

/*!
component > label
------------------------------
*/
.c-label {
  display: inline-block;
  padding: 4rem 8rem;
  border-radius: 9999px;
  background-color: #FF6B6B;
  color: #fff;
  font-size: 12rem;
  line-height: calc(16 / 12);
}

.c-label--popular {
  background-color: #4ECDC4;
}

.c-label--limited {
  background-color: #1F2937;
}

/*!
component > sns-icon
------------------------------
*/
.c-sns-icon-wrap {
  display: inline-block;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .c-sns-icon-wrap:hover,
  .c-sns-icon-wrap:focus {
    background-color: #FF6B6B;
  }
}

/*!
layout > container
------------------------------
*/
.l-container {
  padding-inline: 16rem;
}

@media (min-width: 768px) {
  .l-container {
    padding-inline: 80rem;
  }
}

/*!
layout > header
------------------------------
*/
.l-header {
  padding-right: 15rem;
  padding-left: 16rem;
  height: 60rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .l-header {
    padding-right: 92rem;
    padding-left: 96rem;
  }
}

@media (min-width: 768px) {
  .l-header__nav-wrap {
    display: flex;
    align-items: center;
  }
}

.l-header__logo-wrap {
  width: 52rem;
  padding-top: 13rem;
  padding-left: 5rem;
}

.l-header__logo-link {
  display: block;
}

.l-header__nav {
  display: none;
}

@media (min-width: 768px) {
  .l-header__nav {
    display: block;
    margin-left: 40rem;
  }
}

@media (min-width: 768px) {
  .l-header__nav-list {
    display: flex;
    gap: 24rem;
  }
}

@media (min-width: 768px) {
  .l-header__nav-link {
    font-weight: 500;
    transition: all 0.3s;
  }
}

@media (any-hover: hover) {
  .l-header__nav-link:hover,
  .l-header__nav-link:focus {
    color: #FF6B6B;
  }
}

.l-header__area {
  display: flex;
  align-items: center;
}

.l-header__search {
  display: none;
}

@media (min-width: 768px) {
  .l-header__search {
    margin-left: 16rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    background-color: #F3F4F6;
    border-radius: 9999px;
    padding: 5rem 16rem 5rem 14rem;
    width: 256rem;
  }

  .l-header__search-input {
    border: none;
    font-size: 14rem;
    line-height: calc(17 / 14);
  }
  
  .l-header__search-input:focus {
    outline: none;
  }
  
  .l-header__search-input::placeholder {
    color: #9CA3AF;
  }
  
  .l-header__search-button {
    width: 20rem;
    height: 18rem;
  }
  
  .l-header__search-button::after {
    content: '';
    display: block;
    background-image: url('../img/icon_search.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20rem;
    height: 18rem;
  }
}

.l-header__icon {
  margin-left: 16rem;
  width: 24rem;
  height: 24rem;
}

.l-header__icon--cart {
  position: relative;
}

.l-header__icon--cart::after {
  content: '3';
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background-color: #FF6B6B;
  color: #fff;
  font-size: 12rem;
  line-height: calc(16 / 12);
}

.l-header__button {
  margin-top: 2.5rem;
  margin-left: 16rem;
  padding: 6rem 14rem;
  background-color: #FF6B6B;
  border-radius: 8rem;
  border: 1rem solid #FF6B6B;
  color: #fff;
  font-size: 14rem;
  font-weight: 500;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .l-header__button:hover,
  .l-header__button:focus {
    background-color: rgba(255, 107, 107, 0.9);
  }
}

@media (min-width: 768px) {
  .l-header__button {
    margin-left: 16rem;
    padding: 6rem 16rem;
  }
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  padding: 68rem 16rem 32rem;
  background-color: #111827;
  color: #9CA3AF;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .l-footer {
    padding: 65rem 96rem 32rem;
    grid-template-columns: 288rem 1fr;
    column-gap: 32rem;
  }
}

.l-footer__logo-wrap {
  width: 49rem;
}

.l-footer__text {
  margin-top: 7rem;
}

@media (min-width: 768px) {
  .l-footer__text {
    margin-top: 9rem;
  }
}

.l-footer__sns-list {
  margin-top: 23rem;
  display: flex;
  gap: 16rem;
}

@media (min-width: 768px) {
  .l-footer__sns-list {
    margin-top: 24rem;
  }
}

.l-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
  padding: 12rem 11rem;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: #1F2937;
}

@media (any-hover: hover) {
  .l-footer__sns-link:hover,
  .l-footer__sns-link:focus {
    background-color: #FF6B6B;
  }
}

.l-footer__menu-wrap {
  margin-top: 32rem;
  display: grid;
  gap: 32rem;
}

@media (min-width: 768px) {
  .l-footer__menu-wrap {
    margin-top: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-footer__menu-item-heading {
  font-size: 18rem;
  line-height: calc(28 / 18);
  color: #fff;
  font-weight: 700;
}

.l-footer__nav {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.l-footer__nav-link {
  transition: all 0.3s;
  display: block;
}

@media (any-hover: hover) {
  .l-footer__nav-link:hover,
  .l-footer__nav-link:focus {
    color: #fff;
  }
}

.l-footer__legal {
  border-top: 1rem solid #1F2937;
  padding-top: 30rem;
  margin-top: 50rem;
}

@media (min-width: 768px) {
  .l-footer__legal {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48rem;
  }
}

.l-footer__copyright {
  display: block;
  text-align: center;
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #6B7280;
}

.l-footer__card-brand {
  margin-top: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24rem;
}

@media (min-width: 768px) {
  .l-footer__card-brand {
    margin-top: 0;
    padding-right: 6rem;
  }
}

.l-footer__card-brand-item {
  width: 23rem;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  height: 600rem;
  position: relative;
}

.top-kv__content {
  position: absolute;
  top: 50%;
  left: 16rem;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .top-kv__content {
    left: 96rem;
    width: 504rem;
  }
}

.top-kv__copy {
  color: #1F2937;
  font-size: 36rem;
  font-weight: 700;
  line-height: calc(40 / 36);
}

@media (min-width: 768px) {
  .top-kv__copy {
    font-size: 48rem;
    line-height: 1;
  }
}

.top-kv__text {
  margin-top: 16rem;
  font-size: 18rem;
  line-height: calc(28 / 18);
}

.top-kv__button-list {
  margin-top: 32rem;
  display: flex;
  gap: 16rem;
}

.top-kv__img-wrap {
  height: 100%;
}

.top-kv__img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*!
page > top > top-category
------------------------------
*/
.top-category {
  background-color: #F9FAFB;
  padding: 64rem 0 92rem;
}

@media (min-width: 768px) {
  .top-category {
    padding-block: 64rem;
  }
}

.top-category__lead {
  margin-top: 12rem;
}

.top-category__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24rem;
  margin-top: 12rem;
}

@media (min-width: 768px) {
  .top-category__list {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40rem;
    padding-inline: 16rem;
  }
}

.top-category__card {
  display: block;
  overflow: hidden;
  height: 100%;
  border-radius: 16rem;
  background-color: #fff;
  transition: all 0.3s;
}

.top-category__item-img-wrap {
  overflow: hidden;
}

.top-category__item-img {
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-category__card:hover .top-category__item-img,
  .top-category__card:focus .top-category__item-img {
    scale: 1.05;
  }
}

.top-category__item-content {
  padding: 16rem;
}

.top-category__item-title {
  font-size: 18rem;
  font-weight: 500;
  line-height: calc(28 / 18);
  text-align: center;
}

.top-category__item-text {
  margin-top: 4rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
  text-align: center;
}

/*!
page > top > top-material
------------------------------
*/
.top-material {
  padding-block: 64rem;
}

.top-material__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48rem;
}

@media (min-width: 768px) {
  .top-material__item {
    grid-template-columns: 600rem 1fr;
    align-items: center;
    padding-inline: 16rem;
  }
}

.top-material__content {
  order: 1;
}

.top-material__title {
  font-size: 30rem;
  font-weight: 700;
  line-height: calc(36 / 30);
}

.top-material__lead {
  margin-top: 16rem;
}

.top-material__description {
  margin-top: 16rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem 26rem;
}

@media (min-width: 768px) {
  .top-material__description {
    gap: 16rem;
  }
}

.top-material__description-item {
  display: grid;
  grid-template-columns: 25.67rem 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 12rem;
}

@media (min-width: 768px) {
  .top-material__description-item {
    grid-template-columns: 40rem 1fr;
  }
}

.top-material__description-item::before {
  content: '';
  display: grid;
  place-items: center;
  background-size: 22rem;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FF6B6B;
  width: 25.67rem;
  height: 40rem;
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  background-color: rgba(255, 107, 107, 0.1);
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .top-material__description-item::before {
    width: 40rem;
    height: 40rem;
  }
}

.top-material__description-item--easy::before {
  background-image: url('../img/icon_like02.svg');
}

.top-material__description-item--size::before {
  background-image: url('../img/icon_cloth.svg');
}

.top-material__description-item--color::before {
  background-image: url('../img/icon_paints.svg');
}

.top-material__description-item--environment::before {
  background-image: url('../img/icon_recycle.svg');
}

.top-material__description-title {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  font-weight: 500;
}

.top-material__description-text {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  margin-top: 4rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.top-material__button {
  margin-top: 40rem;
}

.top-material__img-wrap {
  border-radius: 16rem;
  overflow: hidden;
  box-shadow: 
    0 4rem 6rem 0 rgba(0, 0, 0, 0.1),
    0 2rem 4rem 0 rgba(0, 0, 0, 0.1);
}

/*!
page > top > top-new-product
------------------------------
*/
.top-new-product {
  background-color: #F9FAFB;
  padding-block: 64rem;
}

@media (min-width: 768px) {
  .top-new-product {
    padding-inline: 16rem;
  }
}

.top-new-product__list {
  margin-top: 40rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24rem;
}

@media (min-width: 768px) {
  .top-new-product__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.top-new-product__item {
  border-radius: 16rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.top-new-product__item-img-wrap {
  position: relative;
}

.top-new-product__item-label {
  position: absolute;
  top: 12rem;
  left: 12rem;
}

.top-new-product__item-like {
  position: absolute;
  top: 12rem;
  right: 12rem;
}

.top-new-product__item-content {
  padding: 16rem;
}

.top-new-product__item-title {
  font-weight: 500;
}

.top-new-product__item-description {
  margin-top: 4rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.top-new-product__item-price-wrap {
  margin-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-new-product__item-price {
  font-weight: 700;
}

.top-new-product__item-cart {
  width: 32rem;
  height: 32rem;
  background-color: #FF6B6B;
  border-radius: 8rem;
  display: grid;
  place-items: center;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .top-new-product__item-cart:hover,
  .top-new-product__item-cart:focus {
    background-color: rgba(255, 107, 107, 0.9);
  }
}

.top-new-product__item-cart-icon {
  width: 25rem;
}

/*!
page > top > top-new-product
------------------------------
*/
.top-styling {
  padding-block: 64rem;
}

@media (min-width: 768px) {
  .top-styling {
    padding-inline: 16rem;
  }
}

.top-styling__lead {
  margin-top: 12rem;
}

.top-styling__list {
  margin-top: 12rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-styling__list {
    margin-top: 40rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-styling__item {
  overflow: hidden;
  border-radius: 16rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.002);
}

.top-styling__item-content {
  padding: 16rem;
}

.top-styling__item-title {
  font-size: 16rem;
  font-weight: 500;
  color: #1F2937;
}

.top-styling__item-text {
  margin-top: 4rem;
  font-size: 14rem;
  line-height: calc(20 / 14);
}

.top-styling__button {
  margin-top: 68rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .top-styling__button {
    margin-top: 40rem;
  }
}

/*!
page > top > top-instagram
------------------------------
*/
.top-instagram {
  padding-block: 64rem;
  background-color: #F9FAFB;
}

@media (min-width: 768px) {
  .top-instagram {
    padding-inline: 16rem;
  }
}

.top-instagram__lead {
  margin-top: 12rem;
}

.top-instagram__text {
  margin-top: 12rem;
  color: #000;
  text-align: center;
}

@media (min-width: 768px) {
  .top-instagram__text {
    margin-top: 24rem;
  }
}

.top-instagram__list {
  margin-top: 24rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem;
}

@media (min-width: 768px) {
  .top-instagram__list {
    margin-top: 40rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.top-instagram__link {
  display: block;
}

.top-instagram__item-img-wrap {
  overflow: hidden;
  border-radius: 16rem;
}

.top-instagram__text-link {
  margin-top: 68rem;
  text-align: center;
}

@media (min-width: 768px) {
  .top-instagram__text-link {
    margin-top: 40rem;
  }
}

/*!
page > top > top-blog
------------------------------
*/
.top-blog {
  padding-block: 64rem;
}

@media (min-width: 768px) {
  .top-blog {
    padding-inline: 16rem;
  }
}

.top-blog__lead {
  margin-top: 12rem;
}

.top-blog__list {
  margin-top: 40rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32rem;
}

@media (min-width: 768px) {
  .top-blog__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-blog__item {
  border-radius: 16rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  background-color: #fff;
  overflow: hidden;
}

.top-blog__item-content {
  padding: 20rem 24rem;
}

@media (min-width: 768px) {
  .top-blog__item-content {
    padding: 16rem 27rem;
  }
}

.top-blog__item-date {
  font-size: 12rem;
  line-height: calc(16 / 12);
  color: #6B7280;
}

.top-blog__item-title {
  margin-top: 7rem;
  font-size: 20rem;
  font-weight: 500;
  line-height: calc(28 / 20);
  color: #1F2937;
}

.top-blog__item-text {
  margin-top: 7rem;
}

.top-blog__item-link-text {
  margin-top: 16rem;
}

.top-blog__button {
  margin-top: 48rem;
  display: flex;
  justify-content: center;
}

/*!
page > top > top-newsletter
------------------------------
*/
.top-newsletter {
  padding-block: 64rem;
  background-color: rgba(255, 107, 107, 0.05);
}

.top-newsletter__lead {
  margin-top: 12rem;
}

.top-newsletter__form {
  margin-top: 30rem;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .top-newsletter__form {
    margin: 32rem auto 0;
    grid-template-columns: 1fr 112rem;
    gap: 16rem;
    max-width: 672rem;
  }
}

.top-newsletter__form-item:nth-of-type(n + 2) {
  margin-top: 15rem;
}

@media (min-width: 768px) {
  .top-newsletter__form-item:nth-of-type(n + 2) {
    margin-top: 0;
  }
}

.top-newsletter__form-input {
  width: 100%;
  padding: 13rem 16rem;
  background-color: #fff;
  border-radius: 16rem;
  border: 1rem solid #D1D5DB;
  font-size: 14rem;
}

.top-newsletter__form-input::placeholder {
  color: #9CA3AF;
}

.top-newsletter__form-privacy {
  margin-top: 26.6rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .top-newsletter__form-privacy {
    margin-top: 14rem;
    grid-column: 1 / 3;
  }
}

.top-newsletter__form-checkbox-text {
  font-size: 14rem;
  line-height: calc(20 / 14);
  color: #4B5563;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 10rem;
}

.top-newsletter__form-checkbox-text::before {
  content: "";
  display: inline-block;
  width: 20rem;
  height: 20rem;
  border-radius: 4rem;
  background-color: #fff;
  border: 2rem solid #E5E7EB;
  flex-shrink: 0;
}

.top-newsletter__form-checkbox:checked + .top-newsletter__form-checkbox-text::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 6rem;
  width: 8rem;
  height: 16rem;
  border-bottom: 2rem solid #FF6B6B;
  border-right: 2rem solid #FF6B6B;
  transform: rotate(45deg);
}
