* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  color: #333;
  font-size: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 375px;
  margin-inline: auto;
  background: url("./public/img/body-bg.png") no-repeat center bottom/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  body {
    max-width: 100%;
  }
}

.image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.image--h-auto {
  height: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 999;
}
.header__main {
  width: 100%;
  max-width: 375px;
  margin-inline: auto;
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .header__main {
    max-width: 100%;
  }
}
.header__hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  background-color: #000;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 7.5px;
  transform: translateY(-50%);
  cursor: pointer;
}
.header__hamburger span {
  position: relative;
  background-color: #fff;
  width: 20px;
  height: 3px;
  transform-origin: center;
  transition: all 0.3s ease;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__nav {
  background-color: #000;
  width: 100%;
  max-width: 375px;
  height: 100%;
  padding: 20px 7.5px;
  position: fixed;
  top: 60px;
  left: 50%;
  visibility: hidden;
  transform: translate(-50%, 150%);
  transition: all 0.5s ease;
  z-index: 999;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header__nav {
    max-width: 100%;
  }
}
.header__nav.is-active {
  visibility: visible;
  transform: translate(-50%, 0);
}
.header__nav-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.header__link {
  color: #fff;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
}
.header__logo {
  width: 100%;
  max-width: 115px;
  margin-inline: auto;
}

.footer__main {
  background-color: #000;
  color: #fff;
  padding: 60px 0 12px;
}
.footer__container {
  width: 100%;
  max-width: 278px;
  margin: 0 auto;
}
.footer__link-block {
  display: flex;
  gap: 75px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
.footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer__link.ls-20 {
  letter-spacing: 0.02em;
}
.footer__copyright {
  margin-top: 48px;
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.title__h2 {
  font: 500 5rem "Oswald", sans-serif;
  text-align: center;
  line-height: 1.74em;
  margin-bottom: 20px;
}
.title__svg {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 20px;
  height: 40px;
}
.title__h3 {
  color: #d20000;
  font: 500 2.8rem "Oswald", sans-serif;
}

.button {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 140px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-inline: auto;
  transition: 0.3s ease;
}
.button span {
  color: #ff4138;
  font: 500 1.4rem "Oswald", sans-serif;
  transition: 0.3s ease;
}
.button::after {
  content: "";
  -webkit-mask: url("./public/img/icons/btn-arrow.svg");
          mask: url("./public/img/icons/btn-arrow.svg");
  background: #ff4138;
  width: 19px;
  height: 5px;
  flex-shrink: 0;
}
.button:hover {
  background: #ff4138;
}
.button:hover span {
  color: #fff;
}
.button:hover::after {
  background: #fff;
}
.button__online-shop {
  background: #ff4138;
  color: #fff;
  width: 100%;
  max-width: 335px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  margin: 50px auto 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}
.button__online-shop .en {
  font: 500 3rem "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1em;
}
.button__online-shop:hover {
  box-shadow: unset;
}
.button__form-submit {
  width: 100%;
  max-width: 310px;
  height: 65px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff4138;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.banner {
  position: relative;
}
.banner__image {
  position: relative;
  width: 100%;
  aspect-ratio: 375/650;
  overflow: hidden;
}
.banner__image::before {
  content: "";
  background: linear-gradient(45deg, rgb(45, 20, 22) 7%, rgba(255, 255, 255, 0) 82%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  mix-blend-mode: multiply;
}
.banner__image.ol-r::before {
  background: linear-gradient(-45deg, rgb(45, 20, 22) 7%, rgba(255, 255, 255, 0) 82%);
}
.banner__content {
  width: 100%;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.banner__content.b-30 {
  bottom: 30px;
}
.banner__title-en {
  display: block;
  margin-bottom: 5px;
  color: #ff4138;
  font: 500 1.4rem "Oswald", sans-serif;
  text-transform: uppercase;
}
.banner__title-jp {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3666666667em;
}

.section {
  padding-block: 50px;
}
.section__container {
  padding: 0 10% !important;
}

.form__group {
  margin-bottom: 30px;
}
.form__group:last-child {
  margin-bottom: 0;
}
.form__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6875em;
  margin-bottom: 10px;
}
.form__label .required {
  color: #ff4138;
  margin-left: 8px;
}
.form__control {
  font-size: 1.6rem;
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  padding: 15px;
}
.form__control.textarea {
  height: 180px;
  resize: none;
}
.form__privacy-notice {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.9230769231em;
  letter-spacing: 0.08em;
  text-align: center;
}
.form__privacy-agreement {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 25px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.9230769231em;
}
.form__privacy-agreement input[type=checkbox] {
  width: 22px;
  height: 22px;
  border-color: #969696;
  margin-bottom: 3px;
}
.form__privacy-agreement label {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form__privacy-agreement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form__notes {
  width: 100%;
  max-width: 360px;
  margin: 35px auto 0;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.9230769231em;
  letter-spacing: 0.02em;
}
.form__notes .asterisk {
  color: #ff4138;
  font-size: 1.6rem;
}

.top__mv {
  overflow: hidden;
}
.top__mv-wrapper {
  position: relative;
  min-height: 100vh;
}
.top__mv-image {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 375/650;
  overflow: hidden;
}
.top__mv-image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(45, 20, 22) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.top__mv-title-wrapper {
  position: absolute;
  bottom: 55px;
  left: 9.6%;
}
.top__mv-title {
  font-size: clamp(32px, 6.5vw + 1rem, 36px);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
.top__about {
  padding-block: 90px 100px;
}
.top__section-image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 20px;
}
.top__section-button {
  margin-top: 20px;
}
.top__story {
  padding-bottom: 210px;
}
.top__lb {
  position: relative;
  padding-block: 120px;
  margin-top: -120px;
  z-index: 1;
}
.top__lb::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("./public/img/texture-gray.png");
  background-repeat: repeat;
  background-size: 375px 375px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  clip-path: polygon(52% 2%, 100% 0, 100% 100%, 0 100%, 0 4%);
}
.top__lb-h2 {
  margin-bottom: 0;
}
.top__lb-subtitle-block {
  background: #ff4138;
  width: 100%;
  max-width: 150px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px auto 20px;
}
.top__lb-subtitle {
  color: #fff;
  font: 500 2.6rem "Oswald", sans-serif;
  line-height: 1em;
  text-align: center;
}
.top__lb-subtitle .fs-20 {
  font-size: 2rem;
}
.top__lb-content {
  position: relative;
}
.top__lb-image {
  width: 100%;
  aspect-ratio: 335/420;
  overflow: hidden;
}
.top__lb-zoom {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: 6px;
  right: 7px;
  border: none;
  border-radius: 50%;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s ease;
}
.top__lb-zoom::after {
  content: "";
  background: url("./public/img/icons/magnifying.svg") no-repeat center/contain;
  width: 25px;
  height: 25px;
  transition: 0.3s ease;
}
.top__lb-zoom:hover::after {
  transform: scale(1.1);
}
.top__lb-popup-wrapper {
  position: fixed;
  padding-block: 60px;
  top: 60px;
  left: 50%;
  background: #fff;
  width: 100%;
  max-width: 375px;
  height: 100%;
  z-index: 99;
  transform: translate(-50%, 100%);
  transition: 0.6s ease;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .top__lb-popup-wrapper {
    max-width: 100%;
  }
}
.top__lb-popup-wrapper.is-show {
  transform: translate(-50%, 0);
}
.top__lb-popup-close {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 25px;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.top__lb-popup-close span {
  position: relative;
  background-color: #000;
  width: 20px;
  height: 3px;
  transform-origin: center;
  transition: all 0.3s ease;
}
.top__lb-popup-close span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.top__lb-popup-close span:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}
.top__products {
  position: relative;
  padding-bottom: 60px;
  z-index: 1;
}
.top__products-h2 {
  margin-bottom: 15px;
}
.top__products-h3 {
  color: #ff4138;
  line-height: 1.3214285714em;
  margin-bottom: 20px;
}
.top__products-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.top__products-card {
  position: relative;
  display: block;
  overflow: hidden;
}
.top__products-card:hover .top__products-image {
  transform: scale(1.1);
}
.top__products-card:hover .top__products-button {
  background: #ff4138;
}
.top__products-card:hover .top__products-button span {
  color: #fff;
}
.top__products-card:hover .top__products-button::after {
  background: #fff;
}
.top__products-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: 0.3s ease;
}
.top__products-image::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: color-burn;
}
.top__products-image.wears::before {
  background: linear-gradient(90deg, rgb(109, 156, 175) 0%, rgb(199, 170, 85) 100%);
}
.top__products-image.accessories::before {
  background: linear-gradient(90deg, rgb(127, 86, 41) 0%, rgb(118, 145, 93) 100%);
}
.top__products-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top__products-card-title {
  color: rgba(255, 255, 255, 0.7);
  font: 500 5.7rem "Oswald", sans-serif;
  line-height: 1em;
  margin-bottom: 15px;
  text-align: center;
}
.top__products-button {
  max-width: 90px;
}
.top__journal {
  position: relative;
  padding-bottom: 30px;
}
.top__journal_head {
  position: relative;
  margin-top: -90px;
  z-index: 2;
}
.top__journal-ig-icon {
  width: 35px;
  height: 35px;
  margin-inline: auto;
}
.top__journal-h2 {
  margin-block: 15px 50px;
}
.top__journal-ig-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about__banner {
  position: relative;
}
.about__banner-image {
  position: relative;
  width: 100%;
  aspect-ratio: 375/650;
  overflow: hidden;
}
.about__banner-image::before {
  content: "";
  background: linear-gradient(45deg, rgb(45, 20, 22) 7%, rgba(255, 255, 255, 0) 82%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
  mix-blend-mode: multiply;
}
.about__banner-image.ol-r::before {
  background: linear-gradient(-45deg, rgb(45, 20, 22) 7%, rgba(255, 255, 255, 0) 82%);
}
.about__banner-content {
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.about__banner-title-en {
  display: block;
  margin-bottom: 5px;
  color: #ff4138;
  font: 500 1.4rem "Oswald", sans-serif;
  text-transform: uppercase;
}
.about__banner-title-jp {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3666666667em;
}
.about__link-list {
  margin-top: 95px;
  width: 89.6%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.about__link-head {
  width: 100%;
  max-width: 227px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__link-head span {
  color: #ff4138;
  font: 500 2.8rem "Oswald", sans-serif;
}
.about__link-head img {
  width: 85px;
  height: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease;
}
.about__link-img {
  width: 100%;
  aspect-ratio: 336/160;
  overflow: hidden;
}
.about__link-img img {
  transition: 0.3s ease;
}
.about__link {
  transition: 0.3s ease;
}
.about__link:hover {
  opacity: 0.9;
}
.about__link:hover .about__link-head img {
  transform: translateX(5px);
}
.about__link:hover .about__link-img img {
  transform: scale(1.1);
}

.story__image {
  width: 100%;
  aspect-ratio: 375/300;
  overflow: hidden;
}
.story__title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1em;
  text-align: center;
  margin-bottom: 35px;
}

.products__section {
  padding-block: 120px;
}
.products__list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.products__block {
  margin-bottom: 180px;
}
.products__block.mb-0 {
  margin-bottom: 0;
}
.products__name {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 26px 7px;
  border-bottom: 1px solid #ff4138;
  margin-bottom: 20px;
}
.products__image {
  display: block;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-inline: auto;
  transition: 0.3s ease;
}
.products__image img {
  transition: 0.3s ease;
}
.products__image:hover img {
  transform: scale(1.1);
}
.products__button-os {
  margin-top: 70px;
}

.company__section {
  padding-block: 120px 100px;
}
.company__block {
  margin-bottom: 140px;
}
.company__title {
  margin-bottom: 60px;
}
.company__dl {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.6875em;
}
.company__row {
  display: flex;
  margin-bottom: 20px;
}
.company__row:last-child {
  margin-bottom: 0;
}
.company__dt, .company__dd {
  padding-bottom: 20px;
}
.company__dt {
  flex-shrink: 0;
  font-weight: 500;
  width: 100%;
  max-width: 72px;
  padding-inline: 10px;
  border-bottom: 2px solid #ff4138;
}
.company__dt.mw-195 {
  width: 100%;
  max-width: 212px;
}
.company__dd {
  font-weight: 700;
  width: 100%;
  padding-inline: 15px;
  border-bottom: 2px solid #fff;
}
.company__contact-intro {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9375em;
  letter-spacing: 0.08em;
  padding-left: 10px;
  margin-bottom: 50px;
}

.top__mv-splide .splide__list {
  height: 100vh;
}
.top__mv-splide .splide__pagination {
  bottom: 15px;
  gap: 8px;
}
.top__mv-splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 0;
}
.top__mv-splide .splide__pagination__page.is-active {
  transform: unset;
}

.top__lb-splide .splide__arrows {
  width: 100%;
  position: absolute;
  bottom: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.top__lb-splide .splide__arrow {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  transform: unset;
  background: none;
  width: unset;
  height: unset;
  border-radius: unset;
  opacity: 1;
  gap: 10px;
}
.top__lb-splide .splide__arrow--next {
  flex-direction: row-reverse;
}
.top__lb-splide .splide__arrow--prev::before, .top__lb-splide .splide__arrow--next::before {
  content: "";
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20data-name='Layer%202'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%207.36%2012.69'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20none;%20stroke:%20%23ff4138;%20stroke-miterlimit:%2010;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='_文字'%20data-name='文字'%3e%3cpolyline%20class='cls-1'%20points='1%2012.35%206.66%206.03%20.33%20.37'/%3e%3c/g%3e%3c/svg%3e") no-repeat center/cover;
  width: 6px;
  height: 12px;
  flex-shrink: 0;
}
.top__lb-splide .splide__arrow--prev::before {
  transform: scaleX(-1);
}
.top__lb-splide .splide__arrow--prev::after, .top__lb-splide .splide__arrow--next::after {
  color: #ff4138;
  font: 500 1.5rem "Oswald", sans-serif;
  line-height: 1em;
}
.top__lb-splide .splide__arrow--prev::after {
  content: "PREV";
}
.top__lb-splide .splide__arrow--next::after {
  content: "NEXT";
}
.top__lb-splide .splide__arrow svg {
  display: none;
}

.top__lb-popup-splide .splide__arrows {
  width: 100%;
  position: absolute;
  bottom: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.top__lb-popup-splide .splide__arrow {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  transform: unset;
  background: none;
  width: unset;
  height: unset;
  border-radius: unset;
  opacity: 1;
  gap: 10px;
}
.top__lb-popup-splide .splide__arrow--next {
  flex-direction: row-reverse;
}
.top__lb-popup-splide .splide__arrow--prev::before, .top__lb-popup-splide .splide__arrow--next::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20data-name='Layer%202'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%207.36%2012.69'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20none;%20stroke:%20%23ff4138;%20stroke-miterlimit:%2010;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='_文字'%20data-name='文字'%3e%3cpolyline%20class='cls-1'%20points='1%2012.35%206.66%206.03%20.33%20.37'/%3e%3c/g%3e%3c/svg%3e") no-repeat center/cover;
          mask: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='Layer_2'%20data-name='Layer%202'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%207.36%2012.69'%3e%3cdefs%3e%3cstyle%3e%20.cls-1%20{%20fill:%20none;%20stroke:%20%23ff4138;%20stroke-miterlimit:%2010;%20}%20%3c/style%3e%3c/defs%3e%3cg%20id='_文字'%20data-name='文字'%3e%3cpolyline%20class='cls-1'%20points='1%2012.35%206.66%206.03%20.33%20.37'/%3e%3c/g%3e%3c/svg%3e") no-repeat center/cover;
  background: #000;
  width: 6px;
  height: 12px;
  flex-shrink: 0;
}
.top__lb-popup-splide .splide__arrow--prev::before {
  transform: scaleX(-1);
}
.top__lb-popup-splide .splide__arrow--prev::after, .top__lb-popup-splide .splide__arrow--next::after {
  color: #000;
  font: 500 1.5rem "Oswald", sans-serif;
  line-height: 1em;
}
.top__lb-popup-splide .splide__arrow--prev::after {
  content: "PREV";
}
.top__lb-popup-splide .splide__arrow--next::after {
  content: "NEXT";
}
.top__lb-popup-splide .splide__arrow svg {
  display: none;
}

.splide__arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

.container {
  width: 100%;
  max-width: calc(1200px + 8%);
  padding: 0 5.3%;
  margin: 0 auto;
  box-sizing: border-box;
}

.text {
  font-size: 1.6rem;
  line-height: 1.6875em;
  letter-spacing: 0.02em;
}

.bold {
  font-weight: 700;
}

.black {
  color: #000;
}

.white {
  color: #fff;
}

.red {
  color: #ff4138;
}

.brown {
  color: #2d1416;
}

.brown-text-bg {
  background-image: url("./public/img/texture.png");
  background-repeat: repeat;
  background-size: 375px 375px;
}

.gray-text-bg {
  background-image: url("./public/img/texture-gray.png");
  background-repeat: repeat;
  background-size: 450px 450px;
}

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

.anchor {
  scroll-margin-top: 100px;
}

.block {
  display: block;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  font-size: 1.4rem;
  margin-top: 5px;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  background: #ff4138;
  color: #fff;
  padding: 15px 10px;
  font-size: 1.4rem;
  margin: 2em auto 1em;
  width: -moz-fit-content;
  width: fit-content;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #46b450;
}

.instagram-gallery-list.instagram-gallery-square {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}

.instagram-gallery-item,
.instagram-gallery-item__wrap {
  border-radius: 0 !important;
}

.instagram-gallery-item.instagram-gallery-item--cols-3 {
  width: 100% !important;
  aspect-ratio: 1/1 !important;
  overflow: hidden !important;
}

.instagram-gallery-item:hover {
  transform: unset !important;
}

.instagram-gallery-item:hover .instagram-gallery-item__media-mask {
  transition: 0.3s ease !important;
}

.instagram-gallery-item__media-mask--content {
  display: none !important;
}

.instagram-gallery-item__icon--link {
  top: 50% !important;
  left: 50% !important;
  bottom: unset !important;
  right: unset !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: none !important;
  cursor: pointer !important;
}

.instagram-gallery-item__icon {
  font-size: 20px !important;
  margin: 0 !important;
}

.instagram-gallery-item:hover .instagram-gallery-item__icon--link {
  opacity: 1 !important;
}

.instagram-gallery-modal__counter {
  display: none !important;
}