.req:after {
  content: "*";
  color: #f00;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

:root {
  --blue: #00acec;
  --black: #101010;
  --blue-3: #a9d7eb;
  --grey-1: #2f2e2d;
  --grey-2: #5c5c5c;
  --grey-3: #898989;
  --popup-border-radius: 60px;
  --popup-padding: 40px 40px 10px 40px;
  --white: #fff;
  --transition: 0.3s all;
}

a {
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
  color: var(--black);
  background-color: var(--white);
  letter-spacing: 0.04em;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular-Alphabetic.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular-Alphabetic.woff") format("woff"), url("../fonts/NotoSansJP-Regular-Alphabetic.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium-Alphabetic.woff2") format("woff2"), url("../fonts/NotoSansJP-Medium-Alphabetic.woff") format("woff"), url("../fonts/NotoSansJP-Medium-Alphabetic.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold-Alphabetic.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold-Alphabetic.woff") format("woff"), url("../fonts/NotoSansJP-Bold-Alphabetic.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
#tToTop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10002;
  background: var(--blue);
  color: var(--bs-white);
  border: 1px solid var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
}

.card-clickable {
  position: relative;
}
.card-clickable-link:after {
  content: "";
  position: absolute;
  inset: 0;
}
.card-clickable-none {
  position: relative;
}

/* Fixed footer */
html,
html body.admin-bar {
  height: calc(100vh - 32px) !important;
}

html body {
  height: 100vh !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
}

/* /Fixed footer */
.popup-form-callback {
  --popup-width: 700px;
}
.popup-success {
  --popup-width: 700px;
  text-align: center;
}
.popup__wrap {
  padding: var(--popup-padding, 1rem) !important;
  border-radius: var(--popup-border-radius, 1rem) !important;
  width: var(--popup-width, 100%) !important;
  max-width: var(--popup-max-width, 900px) !important;
  --fancybox-content-color: var(--popup-color, #171717);
  --fancybox-content-bg: var(--popup-bg, #fff);
}
.popup__close {
  position: absolute;
  right: 2.2rem;
  top: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: none;
  color: #222;
}
.popup__icon {
  font-size: 4rem;
  color: #484;
  margin: 1rem 0;
}
.popup__icon svg {
  fill: currentColor;
}
.popup__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.sprite-icon {
  height: 1em;
  width: 1em;
  fill: currentColor;
}

.square {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
.square-child {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.rect {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
}
.rect-16-9 {
  aspect-ratio: 16/9;
}
.rect-9-16 {
  aspect-ratio: 9/16;
}
.rect-2-1 {
  aspect-ratio: 2/1;
}
.rect-4-3 {
  aspect-ratio: 4/3;
}
.rect-3-4 {
  aspect-ratio: 3/4;
}
.rect-child {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.circle {
  border-radius: 50%;
}

/* FancyBox */
.fancybox__container {
  --fancybox-bg: rgba(23, 23, 23, 0.76);
  width: 100vw;
}

.fancybox__slide.has-html .fancybox__content {
  padding: 0;
}

/* WordPress */
/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 2;
  padding: 1.25rem 0;
}
.header a {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 500;
}
.header a:hover {
  color: var(--blue);
}

.btn {
  background-color: var(--blue);
  color: var(--white);
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  padding: 1.125rem 2.5rem;
  border-radius: 120px;
}
.btn:hover {
  background-color: var(--blue-3);
  color: var(--black);
}
.btn_white {
  background-color: var(--white);
  color: var(--blue);
}

.banner {
  background-color: var(--blue);
  padding: 6.625rem 0 10rem;
}
.banner__wrapper {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  padding: 20.4375rem 0 6.0625rem;
}
.banner__wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  opacity: 0.001;
  -webkit-animation: bannerZoomOut 2s ease forwards;
          animation: bannerZoomOut 2s ease forwards;
}
.banner__wrapper .container {
  position: relative;
  z-index: 1;
}
.banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  color: var(--white);
  margin-bottom: 3.125rem;
}
.banner .btn {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}

.sticky-header {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
          box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.advantages {
  position: relative;
  top: -70px;
  border-radius: 80px 80px 0px 0px;
  -webkit-box-shadow: 0px -12px 20px 0px rgba(0, 42, 57, 0.15);
          box-shadow: 0px -12px 20px 0px rgba(0, 42, 57, 0.15);
  background-position: bottom 10% right;
  background-repeat: no-repeat;
  background-image: url("../img/adv-bg.webp");
  padding: 5.625rem 0;
  background-color: var(--white);
  overflow-y: hidden;
}
.advantages:before {
  content: "";
  position: absolute;
  bottom: 90px;
  left: 0;
  height: 810px;
  width: 40%;
  background-image: url("../img/adv-left.webp");
  background-position: center right;
  background-size: cover;
  border-radius: 0 80px 80px 0;
}
.advantages__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.75rem 2.5rem;
  font-size: 1.5rem;
  line-height: 100%;
  border-radius: 20px;
  background-size: cover;
  min-height: 216px;
}
.advantages__item_bg {
  background-position: bottom right;
  background-image: url("../img/adv-item.webp");
}
.advantages__item_bg:hover {
  background-image: url("../img/adv-item-blue.webp");
  color: var(--white);
}
.advantages__item_img {
  background-position: center;
}
.advantages__item_img:hover .advantages__logo {
  opacity: 1;
}
.advantages__number {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}
.advantages__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 3.125rem;
}

.products {
  position: relative;
  top: -70px;
  padding: 7.5rem 0 2.5rem;
  border-radius: 80px 80px 0px 0px;
  background-image: url("../img/products-bg.webp");
  background-position: top center;
  background-repeat: no-repeat;
}
.products__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
}

.card {
  border: none;
  line-height: 120%;
  font-size: 1.25rem;
  font-weight: 500;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  border-radius: 60px;
}
.card__front {
  padding: 2.5rem;
  border-radius: 60px;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
.card__front img {
  display: block;
  margin: 0 auto;
}
.card__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.5rem;
  border-radius: 60px;
  background-color: var(--blue);
  color: var(--white);
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.card img {
  border-radius: 20px;
}
.card__title {
  font-size: 1.5rem;
  font-weight: 700;
}
.card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--white);
}
.card__inner {
  position: relative;
  width: 100%;
  min-height: 550px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.card:hover .card__inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.card__size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--white);
}
.card__size span {
  padding: 0 0.3125rem;
  font-size: 1.25rem;
  border-right: 1px solid var(--white);
}
.card__size span:last-child {
  border: none;
}
.card__doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.25rem 0;
}
.card__doc svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-right: 8px;
}
.card__doc a {
  text-decoration: underline;
  color: var(--white);
}

.card__front, .card__back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  overflow: hidden;
}

.producer {
  padding: 7.5rem 0 11.875rem;
  border-radius: 80px 80px 0px 0px;
  background-color: var(--blue);
  -webkit-box-shadow: 0px -12px 20px 0px rgba(0, 42, 57, 0.15);
          box-shadow: 0px -12px 20px 0px rgba(0, 42, 57, 0.15);
  background-image: url("../img/producer-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
}
.producer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: 20px;
  min-height: 200px;
}

.slide {
  padding: 0 0.625rem;
}

.slick-dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
}

.slick-dots button {
  font-size: 0;
  background-color: var(--white);
  border: none;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50%;
}

.slick-dots .slick-active button {
  background-color: var(--blue-3);
}

.callback {
  position: relative;
  top: -70px;
  padding-top: 7.5rem;
  margin-bottom: 2.5rem;
  border-radius: 80px 80px 0px 0px;
  -webkit-box-shadow: 0px -12px 10px 0px rgba(0, 42, 57, 0.15);
          box-shadow: 0px -12px 10px 0px rgba(0, 42, 57, 0.15);
  background-color: var(--white);
  background-image: url("../img/callback-left.webp");
  background-position: bottom left;
  background-repeat: no-repeat;
  overflow: hidden;
}
.callback .section-title {
  margin-bottom: 7.5rem;
}
.callback__text {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.callback__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 3.75rem;
}
.callback__info {
  color: var(--white);
  position: relative;
  z-index: 2;
}
.callback__info a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
}
.callback__info a:hover {
  color: var(--blue-3);
}
.callback__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  border: 2px solid var(--white);
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.callback:before {
  content: "";
  position: absolute;
  bottom: 25px;
  right: 0;
  min-height: 720px;
  width: 42%;
  border-radius: 80px 0 0 80px;
  background-image: url("../img/callback-right.png");
  background-position: center left;
  background-size: cover;
}

.input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--grey-3);
  padding: 0.625rem 1.75rem;
  line-height: 110%;
  margin-top: 1.25rem;
  background-color: transparent;
  outline: none;
}
.input:focus {
  background-color: rgba(0, 172, 236, 0.05);
  border-color: var(--blue);
}

textarea {
  resize: none;
  height: 150px;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid {
  border: 1px solid rgba(255, 0, 0, 0.5);
  background: rgba(255, 0, 0, 0.05);
}

.footer {
  background: var(--blue);
  color: var(--white);
  padding: 2.8125rem 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
}
.footer a {
  color: var(--white);
}

@-webkit-keyframes bannerZoomOut {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes bannerZoomOut {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fade-in linear 1.7s forwards;
  animation: fade-in linear 1.7s forwards;
  opacity: 0;
}

.cookiegdpr {
  --gdpr-btn-color: #fff;
  --gdpr-btn-bg: var(--blue);
  --gdpr-btn-border: 1px solid var(--blue);
  --gdpr-btn-border-radius: .375rem;
  --gdpr-btn-padding: .375rem .75rem;
  --gdpr-btn-bg-hover: #fff;
  --gdpr-btn-color-hover: var(--blue);
  --gdpr-btn-border-color-hover: #fff;
  --gdpr-bottom: 1rem;
  --gdpr-border-radius: .375rem;
  --gdpr-z-index: 10001;
  --gdpr-bg: rgba(255, 255, 255, .88);
  --gdpr-padding: .625rem;
  --gdpr-link-color: var(--blue);
}
.acceptance {
  margin-top: 5px;
  font-size: 14px;
}
.acceptance a {
  color: var(--blue);
}