@charset "UTF-8";
:root {
  --font-family: "Roboto", sans-serif;
  --content-width: 1345px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --background-color: #f3f3f3;
  --gray-color: #f8f8f7;
  --green-color: #635c9a;
  --l-green-color: #f7f7f8;
  --beige-color: #fcf0d7;
  --l-beige-color: #fff9ec;
  --orange-color: #635c9a;
  --link-hover-color: #838379;

  /* --gray-color: #F8F8F7;
  --green-color: #BCD37D;
  --l-green-color: #F3F8E7;
  --beige-color: #FCF0D7;
  --l-beige-color: #FDF8EB;
  --orange-color: #F2CC79; */
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable value-keyword-case */
* {
  padding: 0px;
  margin: 0px;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

ul,
ul li {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input[type="submit"] {
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

.page__body {
  font-family: var(--font-family, sans-serif);
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 15px;
  font-weight: 400;
  background-color: var(--background-color);
  color: #000000;
  height: 100%;
}

p {
  line-height: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

a {
  color: inherit;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  outline: none;
}

a:not(.btn, ._d-h-op):hover {
  /* color: var(--green-color); */
  /* color: var(--link-hover-color); */
  opacity: 0.8;
}

input[type="submit"] {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.site-container {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

ul {
  list-style-type: none;
  padding: 0;
}

.anim-scale {
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition:
    transform 0.1s,
    -webkit-transform 0.1s;
}

.anim-scale:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.youtube-video {
  width: 100%;
  aspect-ratio: 16/9;
}

.body-disable-scroll {
  overflow-y: hidden;
}

.video-js {
  background: transparent;
}

.sect-p {
  padding: 60px 0;
}

.sect-m {
  margin: 60px 0;
}

.page-p {
  padding: 50px 0;
}

.page-m {
  margin: 50px 0;
}

._b-gray {
  background: var(--gray-color);
}

@media (min-width: 992px) {
  .content-box {
    font-size: 16px;
  }
}

.content-box > *:not(:last-child) {
  margin-bottom: 16px;
}

.content-box ul,
.content-box li {
  list-style: disc;
}

.content-box li {
  margin-left: 25px;
  line-height: 1.4;
}

.content-box li:not(:last-child) {
  margin-bottom: 3px;
}

.content-box img {
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  font-weight: 600;
  line-height: 1.2;
}
.content-box h2:not(:first-child),
.content-box h3:not(:first-child),
.content-box h4:not(:first-child),
.content-box h5:not(:first-child),
.content-box h6:not(:first-child) {
  padding-top: 10px;
}

.content-box h2 {
  font-size: 32px;
}

.content-box h3 {
  font-size: 24px;
}

.content-box h4 {
  font-size: 20px;
}

.content-box h5 {
  font-size: 16px;
}

.content-box h6 {
  font-size: 14px;
}
.content-box .wp-block-heading {
  margin-bottom: 1em;
}
@media (max-width: 575px) {
  .content-box h2 {
    font-size: 26px;
  }
  .content-box h3 {
    font-size: 20px;
  }
  .content-box h4 {
    font-size: 18px;
  }
}
.p-0 {
  padding: 0;
}

.p-page {
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .p-page {
    padding-bottom: 40px;
  }
}

.content-box .alignright {
  float: right;
  margin-bottom: 16px;
}

.content-box .alignleft {
  float: left;
  margin-bottom: 16px;
}

@media (min-width: 481px) {
  .content-box .alignright {
    padding-left: 16px;
  }
  .content-box .alignleft {
    padding-right: 16px;
  }
}
.content-box ol li {
  list-style: decimal;
}

.content-box a {
  text-decoration: underline;
}

.content-box a:hover {
  text-decoration: none;
}

/* .content-box > h1 {
  margin-bottom: 20px !important;
} */
.content-box table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid rgba(0, 0, 0, 0.2470588235);
  border-left: 1px solid rgba(0, 0, 0, 0.2470588235);
}

.content-box table td {
  padding: 3px;
  border-right: 1px solid rgba(0, 0, 0, 0.2470588235);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2470588235);
}

.header-s {
  margin-top: 10px;
}
.container-s {
  width: 1790px;
  padding: 0 15px;
  max-width: 100%;
  margin: 0 auto;
}
.header-s__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 8px;
  gap: 75px;
  min-height: 140px;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.4);
}
.header-s__logo {
  object-fit: contain;
}
.s-stock {
  margin: 100px 0px;
}
.s-stock__body {
  max-width: 640px;
  margin: 0 auto;
}
.s-stock__title {
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
}
.s-stock__content {
  text-align: center;
}
.s-stock__promo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 18px;
  background-color: white;
  gap: 15px;
  cursor: pointer;
  margin-top: 45px;

  font-weight: 900;
  font-size: 20px;
  transition: color 0.3s ease;
}
.s-stock__promo:hover {
  color: #635c9a;
}
.s-stock__promo .copy-btn {
  width: 24px;
  height: 24px;
}
.s-stock__promo .copy-btn svg {
  width: 100%;
  height: 100%;
}

.s-stock__shops {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 45px;
}
.s-stock__shop-item {
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  aspect-ratio: 1/0.4;
  user-select: none;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
}
.s-stock__shop-item-text {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  font-size: 18px;
  border-radius: 50px;
  background-color: white;
}
.s-stock__shop-item-text .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ecec42;
}
.s-stock__shop-item-text .circle svg {
  width: 12px;
  height: 12px;
}
.s-stock__shop-item-text span {
  padding-right: 15px;
}

@media (max-width: 1199px) {
  .s-stock {
    margin: 80px 0px;
  }
}
@media (max-width: 991px) {
  .header-s__wrapper {
    min-height: 90px;
    gap: 50px;
  }
  .s-stock__title {
    font-size: 32px;
  }
  .s-stock__promo {
    margin-top: 30px;
  }
  .s-stock__shop-item {
    padding: 12px;
  }
}
@media (max-width: 767px) {
  .header-s__wrapper {
    min-height: auto;
    gap: 30px;
  }
  .header-s__logo {
    width: 200px;
  }
  .s-stock {
    margin: 60px 0px;
  }
  .s-stock__title {
    font-size: 28px;
  }
  .s-stock__promo {
    font-size: 18px;
    padding: 15px;
  }
  .s-stock__promo .copy-btn {
    width: 20px;
    height: 20px;
  }
  .s-stock__shops {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .header-s__wrapper {
    gap: 25px;
  }
  .header-s__logo {
    width: 130px;
  }
  .s-stock__promo {
    font-size: 16px;
  }
  .s-stock__shops {
    gap: 20px;
  }
  .s-stock__shop-item {
    aspect-ratio: 1/0.5;
  }
  .s-stock__shop-item-text {
    font-size: 15px;
  }
  .s-stock__shop-item-text .circle {
    width: 30px;
    height: 30px;
  }
  .s-stock__shop-item-text .circle svg {
    width: 10px;
    height: 10px;
  }
}
