@charset "UTF-8";
/*
import global components
*/
/*
Thanks for Andy Bell (GitHub @hankchizljaw)
https://github.com/hankchizljaw/modern-css-reset
*/
/* Box sizing rules */
@import "global/_swiper-bundle.css";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
svg {
  vertical-align: bottom;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
#  scss mixin
1. background-image-retina
*/
/* about */
/*
    必須引数として「拡張子を除く画像パス」と「拡張子」を指定することで、メディアクエリのRetina対応コードを出力。
    */
/* usage */
/*
    // --- scss code
    .section--index.section--01.loaded {
        @include background-image-retina('../img/index/desktop/section--01', 'jpg');
        background-size: 1308px 600px;
    }

    // --- output css
    .section--index.section--01.loaded {
        background-image:url("../img/index/desktop/section--01.jpg");
        background-size:1308px 600px;
    }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi){
        .section--index.section--01.loaded {
            background-image:url("../img/index/desktop/section--01@2x.jpg");
        }
    }
    ---
    */
@keyframes pulsate {
  0%, to {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
#spotlight {
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  color: #fff;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: visibility 0.25s ease, opacity 0.25s ease;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  contain: layout size paint style;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}
#spotlight .preloader,
#spotlight .scene {
  top: 0;
  width: 100%;
  height: 100%;
}
#spotlight .arrow,
#spotlight .icon {
  cursor: pointer;
  background-repeat: no-repeat;
}
#spotlight.show {
  opacity: 1;
  visibility: visible;
  transition: none;
}
#spotlight.show .pane {
  will-change: transform;
}
#spotlight.show .scene {
  will-change: transform;
}
#spotlight.show .scene img {
  will-change: transform, opacity;
}
#spotlight .preloader {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 42px 42px;
  opacity: 0;
}
#spotlight .preloader.show {
  transition: opacity 0.1s linear 0.25s;
  opacity: 1;
}
#spotlight .scene {
  position: absolute;
  transition: transform 1s cubic-bezier(0.1, 1, 0.1, 1);
  contain: layout size style;
  pointer-events: none;
}
#spotlight .scene img {
  display: inline-block;
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  left: 50%;
  top: 50%;
  opacity: 1;
  margin: 0;
  padding: 0;
  border: 0;
  transform: translate(-50%, -50%) scale(1) perspective(100vw);
  transition: transform 1s cubic-bezier(0.1, 1, 0.1, 1), opacity 1s cubic-bezier(0.3, 1, 0.3, 1);
  transform-style: preserve-3d;
  contain: layout paint style;
  visibility: hidden;
}
#spotlight .header,
#spotlight .pane {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  contain: layout size style;
}
#spotlight .header {
  height: 70px;
  text-align: right;
  transform: translateY(-100px);
  transition: transform 0.35s ease-out;
  contain: layout size paint style;
}
#spotlight .header:hover {
  transform: translateY(0);
}
#spotlight.menu .header {
  transform: translateY(0);
}
#spotlight .header div {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  width: 80px;
  height: 80px;
  padding-right: 50px;
  opacity: 0.5;
}
#spotlight .progress {
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.45);
  transform: translateX(-100%);
  transition: transform 1s linear;
}
#spotlight .arrow {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.45);
}
@media (max-width: 639px) {
  #spotlight .arrow {
    display: none;
  }
}
#spotlight .footer {
  position: absolute;
  bottom: 0;
  line-height: 1.35em;
  padding: 20px 25px;
  text-align: left;
  pointer-events: none;
  contain: layout paint style;
}
#spotlight .footer .title {
  font-size: 125%;
  padding-bottom: 10px;
}
#spotlight .page {
  float: left;
  width: auto;
  padding-left: 20px;
  line-height: 50px;
}
#spotlight .icon {
  background-position: left center;
  transition: opacity 0.2s ease-out;
}
@media (max-width: 639px) {
  #spotlight .icon {
    background-size: 20px 20px;
  }
}
@media (min-width: 640px) {
  #spotlight .icon {
    background-size: 40px 40px;
  }
}
#spotlight .close {
  background-image: url(/svg/spotlight/close-thin.svg);
}
#spotlight .arrow {
  top: 50%;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-top: -25px;
  padding: 10px;
  transform: translateX(-100px);
  transition: transform 0.35s ease-out, opacity 0.2s ease-out;
  box-sizing: border-box;
  background-position: center center;
  background-size: 30px 30px;
  opacity: 0.65;
  background-image: url(/svg/spotlight/arrow.svg);
}
#spotlight .arrow-right {
  left: auto;
  right: 20px;
  transform: translateX(100px) scaleX(-1);
}
#spotlight.menu .arrow-left {
  transform: translateX(0);
}
#spotlight.menu .arrow-right {
  transform: translateX(0) scaleX(-1);
}
#spotlight .arrow:active, #spotlight .arrow:hover {
  opacity: 1;
  animation: none;
}
#spotlight .icon:active, #spotlight .icon:hover {
  opacity: 1;
  animation: none;
}
#spotlight.white {
  color: #fff;
  background-color: #fff;
}
#spotlight.white .arrow,
#spotlight.white .footer,
#spotlight.white .header,
#spotlight.white .preloader,
#spotlight.white .progress {
  filter: invert(1);
}

.hide-scrollbars {
  overflow: -moz-hidden-unscrollable;
  -ms-overflow-style: none;
}
.hide-scrollbars::-webkit-scrollbar {
  width: 0;
}

@media (max-width: 800px) {
  #spotlight .header div {
    width: 20px;
  }
  #spotlight .footer {
    font-size: 12px;
  }
  #spotlight .arrow {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
    background-size: 15px 15px;
  }
  #spotlight .preloader {
    background-size: 30px 30px;
  }
}
@media (max-width: 400px), (max-height: 400px) {
  #spotlight .fullscreen {
    display: none !important;
  }
}
.cta {
  display: grid;
}
@media (max-width: 639px) {
  .cta {
    gap: 10px;
    grid-template-columns: 1fr minmax(90px, 110px);
    grid-template-rows: auto auto;
    padding: 0 0 70px 0;
  }
}
@media (min-width: 640px) {
  .cta {
    gap: 20px;
    grid-template-columns: 1fr 330px 110px;
    padding: 80px 0;
  }
  .cta > div {
    position: relative;
  }
  .cta > div:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 10px;
    border-right: 1px solid #000;
  }
}
.cta .requirements {
  display: flex;
  align-items: center;
  text-align: left;
}
@media (max-width: 639px) {
  .cta .requirements {
    grid-column: 1/3;
    align-self: end;
    padding: 20px 0 60px 0;
  }
}
.cta .requirements .icons {
  display: flex;
  align-items: center;
}
@media (max-width: 639px) {
  .cta .requirements .icons {
    margin-right: 5px;
  }
}
@media (min-width: 640px) {
  .cta .requirements .icons {
    margin-right: 10px;
  }
}
.cta .requirements .icons > svg {
  margin-right: 5px;
}
@media (max-width: 639px) {
  .cta .requirements .icons > svg {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 640px) {
  .cta .requirements .icons > svg {
    width: 51px;
    height: 51px;
  }
}
.cta .requirements .text {
  line-height: 1.4;
}
@media (max-width: 639px) {
  .cta .requirements .text {
    font-size: 10px;
  }
}
@media (min-width: 640px) {
  .cta .requirements .text {
    padding-right: 20px;
    font-size: 16px;
  }
}
.cta .requirements .text .link {
  padding-left: 1rem;
  color: #000;
}
@media (max-width: 639px) {
  .cta.__bottom {
    padding: 60px 0 0 0;
  }
}
@media (max-width: 639px) {
  .cta.__bottom .requirements {
    display: none;
  }
}
@media (min-width: 640px) {
  .cta.__bottom .requirements .text a {
    display: none;
  }
}
.cta .price {
  text-align: left;
}
@media (min-width: 640px) {
  .cta .price {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 639px) {
  .cta .price .no-discount-label {
    font-size: 14px;
  }
}
@media (min-width: 640px) {
  .cta .price .no-discount-label {
    font-size: 16px;
  }
}
.cta .price .full_price {
  font-size: 16px;
}
.cta .price .full_price::before {
  content: "通常価格 ¥";
  font-size: 0.7em;
  padding-right: 2px;
}
.cta .price .full_price::after {
  content: "（税込）";
  position: relative;
  font-size: 0.7em;
  font-weight: normal;
}
.cta .price .discount {
  display: inline-block;
  position: relative;
  bottom: 5px;
  background-color: #000;
  font-size: 0.8em;
  color: #fff;
}
@media (max-width: 639px) {
  .cta .price .discount {
    padding: 0 0.5em 0 0.6em;
  }
}
@media (min-width: 640px) {
  .cta .price .discount {
    margin-right: 6px;
    padding: 0 0.7em 0 0.8em;
  }
}
.cta .price .current_price {
  font-weight: bold;
  color: #000;
}
@media (max-width: 639px) {
  .cta .price .current_price {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (min-width: 640px) {
  .cta .price .current_price {
    font-size: 45px;
    line-height: 0.8;
  }
}
.cta .price .current_price::before {
  content: "¥";
  padding-right: 2px;
  font-size: 0.7em;
  font-weight: normal;
}
.cta .price .current_price::after {
  content: "（税込）";
  position: relative;
  bottom: 2px;
  font-size: 10px;
  font-weight: normal;
}
@media only screen and (max-width: 400px) {
  .cta .price .current_price::after {
    display: none;
  }
}
.cta .price .open_price {
  font-weight: bold;
  color: #000;
}
@media (max-width: 639px) {
  .cta .price .open_price {
    font-size: 21px;
    line-height: 1.3;
  }
}
@media (min-width: 640px) {
  .cta .price .open_price {
    font-size: 30px;
    line-height: 1;
  }
}
.cta > .getfree {
  text-align: left;
}
.cta > .getfree > span {
  display: block;
  padding-top: 7px;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
}
@media (max-width: 639px) {
  .cta > .getfree > span {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (min-width: 640px) {
  .cta > .getfree > span {
    font-size: 45px;
    line-height: 0.8;
  }
}
.cta > .getfree > span::after {
  content: "無償で利用可能";
  position: relative;
  margin-left: 5px;
  font-weight: normal;
}
@media (max-width: 639px) {
  .cta > .getfree > span::after {
    font-size: 12px;
  }
}
@media (min-width: 640px) {
  .cta > .getfree > span::after {
    font-size: 16px;
  }
}
@media (max-width: 639px) {
  .cta > .getfree > .help {
    line-height: 1;
  }
}
@media (min-width: 640px) {
  .cta > .getfree > .help {
    padding-top: 4px;
  }
}
.cta > .getfree > .help a {
  color: #000;
}
@media (max-width: 639px) {
  .cta > .getfree > .help a {
    font-size: 12px;
  }
}
@media (min-width: 640px) {
  .cta > .getfree > .help a {
    font-size: 16px;
  }
}
.cta > .include_in {
  text-align: left;
}
@media (max-width: 639px) {
  .cta > .include_in {
    grid-column: 1/3;
  }
}
@media (min-width: 640px) {
  .cta > .include_in {
    grid-column: 2/4;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 639px) {
  .cta > .include_in > p {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media (min-width: 640px) {
  .cta > .include_in > p {
    padding-right: 20px;
    font-size: 16px;
    line-height: 1.4;
  }
}
.cta > .include_in > p > a {
  color: #000;
}
.cta .buy,
.cta .get {
  text-align: right;
}
.cta .buy a,
.cta .get a {
  position: relative;
  display: inline-block;
  height: 46px;
  border-radius: 23px;
  background-color: #0DB5C6;
  font-size: 20px;
  line-height: 46px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
@media (max-width: 639px) {
  .cta .buy a,
  .cta .get a {
    top: 14px;
    width: 100%;
    max-width: 110px;
  }
}
@media (min-width: 640px) {
  .cta .buy a,
  .cta .get a {
    top: 20px;
    width: 110px;
  }
}
@media (max-width: 639px) {
  .cta .get a {
    top: 0;
  }
}
@media (min-width: 640px) {
  .cta .get a {
    top: 2px;
  }
}
.cta .grade_btn {
  display: flex;
  align-items: center;
}
.cta .ultimate_btn {
  float: left;
  padding: 5px;
  background: #ff7a00;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  width: 150px;
  text-align: center;
}
.cta p.essential_btn {
  float: left;
  padding: 5px;
  background: #24284B;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  width: 150px;
  margin-right: 10px;
  text-align: center;
}

header {
  /*
  Brakepoint
  */
  /*
  Mixin
  */
  /*
  Style
  */
}
@media (max-width: 819px) {
  header {
    position: sticky;
    top: 0;
    box-shadow: rgba(50, 50, 93, 0.45) 0px 30px 60px -12px, rgba(0, 0, 0, 0.6) 0px 18px 36px -18px;
    z-index: 100;
  }
}
header .header-navigation {
  position: relative;
  z-index: 100;
  width: 100%;
}
@media (max-width: 819px) {
  header .header-navigation {
    height: 60px;
    padding: 0 9%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
  }
}
@media (min-width: 820px) {
  header .header-navigation {
    box-shadow: rgba(50, 50, 93, 0.45) 0px 30px 60px -12px, rgba(0, 0, 0, 0.6) 0px 18px 36px -18px;
    display: grid;
    justify-content: left;
    grid-template-columns: auto auto 1fr auto;
    grid-template-rows: 90px;
    height: 90px;
    padding: 0 5%;
    background-color: #fff;
    font-size: min(1.6vw, 18px);
    text-align: left;
  }
  header .header-navigation > div {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
@media (max-width: 819px) {
  header .header-navigation .wavesjapan {
    position: absolute;
    left: 50%;
    margin-left: -30px;
    width: 60px;
    text-align: center;
  }
  header .header-navigation .wavesjapan svg {
    width: 35.13px;
  }
}
@media (min-width: 820px) {
  header .header-navigation .wavesjapan {
    width: 56px;
    margin-right: 30px;
  }
  header .header-navigation .wavesjapan svg {
    width: 46px;
  }
}
@media (max-width: 819px) {
  header .header-navigation .categories {
    display: none;
  }
}
@media (min-width: 820px) {
  header .header-navigation .categories {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: min(3vw, 40px);
    margin-right: 30px;
  }
  header .header-navigation .categories span {
    display: inline-block;
    cursor: pointer;
  }
}
header .header-navigation .categories .category {
  line-height: 90px;
  height: 90px;
  text-decoration: none;
  color: #707070;
  cursor: pointer;
}
header .header-navigation .categories .category > a {
  text-decoration: none;
  color: #707070;
}
header .header-navigation .categories .category > a:hover {
  color: #0DB5C6;
}
header .header-navigation .categories .category:hover {
  color: #0DB5C6;
}
header .header-navigation .categories .category:hover > .dropdown_wrap {
  visibility: visible;
  opacity: 1;
}
header .header-navigation .categories .dropdown_wrap {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100vw;
  overflow: hidden;
  padding-bottom: 90px;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  cursor: default;
}
header .header-navigation .categories .dropdown_wrap .dropdown {
  padding: 20px 5% 40px;
  box-shadow: rgba(50, 50, 93, 0.45) 0px 30px 60px -12px, rgba(0, 0, 0, 0.6) 0px 18px 36px -18px;
  background: #fff;
}
header .header-navigation .categories .dropdown_wrap .dropdown--solutions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
}
header .header-navigation .categories .dropdown_wrap .dropdown--solutions ul {
  position: relative;
  padding-left: 20px;
  font-family: "Montserrat";
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  list-style: none;
}
header .header-navigation .categories .dropdown_wrap .dropdown--solutions ul::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  border-left: 1px solid #000;
}
header .header-navigation .categories .dropdown_wrap .dropdown--solutions ul li {
  padding: 8px 0;
}
header .header-navigation .categories .dropdown_wrap .dropdown--solutions ul li a {
  text-decoration: none;
  color: #000;
}
header .header-navigation .categories .dropdown_wrap .dropdown--solutions ul li a:hover {
  color: #0DB5C6;
}
header .header-navigation .categories .dropdown_wrap .dropdown--products {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
header .header-navigation .categories .dropdown_wrap .dropdown--products .link-group .link-group-title {
  display: block;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 8px;
}
header .header-navigation .categories .dropdown_wrap .dropdown--products .link-group .link-group-title > a {
  font-family: "Montserrat";
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  color: #000;
  text-decoration: none;
}
header .header-navigation .categories .dropdown_wrap .dropdown--products .link-group .link-group-title > a:hover {
  text-decoration: underline;
}
header .header-navigation .categories .dropdown_wrap .dropdown--products .link-group ul {
  margin: 0;
  padding: 0;
}
header .header-navigation .categories .dropdown_wrap .dropdown--products .link-group ul li {
  list-style: none;
  padding: 3.4px 0;
  font-size: 18px;
  line-height: 1.4;
}
header .header-navigation .categories .dropdown_wrap .dropdown--products .link-group ul li a {
  text-decoration: none;
  color: #707070;
}
header .header-navigation .categories .dropdown_wrap .dropdown--products .link-group ul li a:hover {
  color: #0DB5C6;
}
@media (max-width: 819px) {
  header .header-navigation .promotion {
    display: none;
  }
}
@media (min-width: 820px) {
  header .header-navigation .promotion a {
    display: block;
    text-decoration: none;
    line-height: 40px;
    color: #ff9e2c;
  }
  header .header-navigation .promotion a em {
    font-style: normal;
  }
  header .header-navigation .promotion a svg {
    width: 40px;
    height: 40px;
    fill: #ff9e2c;
  }
}
@media (min-width: 820px) and (max-width: 800px) {
  header .header-navigation .promotion a em {
    display: none;
  }
}
header .header-navigation .search-button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 819px) {
  header .header-navigation .search-button {
    width: 40px;
    height: 60px;
    justify-content: flex-start;
  }
  header .header-navigation .search-button > svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 820px) {
  header .header-navigation .search-button {
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  header .header-navigation .search-button svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 819px) {
  header .header-navigation .burger {
    width: 40px;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
  }
  header .header-navigation .burger div {
    transform: rotateY(0);
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  }
  header .header-navigation .burger .__patty {
    width: 22px;
    height: 2px;
    margin: 0 0 4px 0;
    background: #000;
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  }
  header .header-navigation .burger .__patty:last-child {
    margin-bottom: 0;
  }
  header .header-navigation .burger.burger--close div {
    transform: rotate(180deg);
  }
  header .header-navigation .burger.burger--close div .__patty:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  header .header-navigation .burger.burger--close div .__patty:nth-child(2) {
    opacity: 0;
  }
  header .header-navigation .burger.burger--close div .__patty:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
  }
}
@media (min-width: 820px) {
  header .header-navigation .burger {
    display: none;
  }
}
@media (max-width: 819px) {
  header .menu {
    position: fixed;
    top: 0;
    width: 100%;
    visibility: hidden;
    z-index: 50;
  }
  header .menu--active {
    visibility: visible;
  }
  header .menu .menu__list {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 110px 9% 200px;
    background-color: #0DB5C6;
    list-style-type: none;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    opacity: 0;
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  }
  header .menu .menu__list::-webkit-scrollbar {
    display: none;
  }
  header .menu .menu__list--active {
    opacity: 1;
  }
  header .menu .menu__item {
    transform: translate3d(500px, 0, 0);
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    color: #fff;
    border-bottom: 0.5px solid #fff;
    padding: 20px 0;
  }
  header .menu .menu__item--active {
    transform: translate3d(0, 0, 0);
  }
  header .menu .menu__item ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  header .menu .menu__item ul li {
    font-size: 15px;
    line-height: 2;
  }
  header .menu .menu__item ul li.sale > a {
    margin-top: 30px;
  }
  header .menu .menu__item ul li.sale > a::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    transform: rotate(-90deg) translateX(-4px);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2238.718%22%20height%3D%2238.707%22%20viewBox%3D%220%200%2038.718%2038.707%22%3E%3Cpath%20d%3D%22M47.35%2C31.4%2C27.407%2C11.483a4.563%2C4.563%2C0%2C0%2C0-3.334-1.32L13.6%2C10.433a3.479%2C3.479%2C0%2C0%2C0-3.39%2C3.394L9.965%2C24.288A4.521%2C4.521%2C0%2C0%2C0%2C11.3%2C27.6L31.247%2C47.521a4.543%2C4.543%2C0%2C0%2C0%2C6.424.036l9.683-9.695A4.589%2C4.589%2C0%2C0%2C0%2C47.35%2C31.4ZM17.084%2C22.352a3.57%2C3.57%2C0%2C1%2C1%2C5.049-.008A3.573%2C3.573%2C0%2C0%2C1%2C17.084%2C22.352Zm6.732%2C6.1a3.966%2C3.966%2C0%2C0%2C1-.968-1.478l1-.616a3.541%2C3.541%2C0%2C0%2C0%2C.822%2C1.347c.45.446.873.494%2C1.154.209.265-.273.213-.628-.126-1.331a2.014%2C2.014%2C0%2C0%2C1%2C.075-2.457c.731-.743%2C1.908-.7%2C2.935.312a3.8%2C3.8%2C0%2C0%2C1%2C.893%2C1.316l-1%2C.577a2.9%2C2.9%2C0%2C0%2C0-.707-1.1c-.427-.419-.822-.431-1.043-.2-.273.277-.15.64.2%2C1.406.486%2C1.043.45%2C1.8-.15%2C2.41C26.182%2C29.558%2C25.009%2C29.625%2C23.816%2C28.448Zm4.753%2C4.563.766-1.446-1.244-1.229-1.41.81-1.019-1.007L31.279%2C27.1l1.288%2C1.272L29.623%2C34.05Zm1.32%2C1.3%2C4.286-4.346.988.976-3.477%2C3.516%2C1.726%2C1.707-.81.826Zm9.146%2C2.042-1.695-1.671-.893.9%2C1.6%2C1.58-.79.8-1.6-1.58-1.015%2C1.031%2C1.786%2C1.766-.8.8L32.859%2C37.25l4.29-4.342%2C2.679%2C2.647Z%22%20transform%3D%22translate(-9.964%20-10.162)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M490.8%2C474.008l.96.948%2C1.233-2.256C492.677%2C472.89%2C490.8%2C474.008%2C490.8%2C474.008Z%22%20transform%3D%22translate(-471.804%20-454.427)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .menu .menu__item a {
    text-decoration: none;
    color: #fff;
  }
  header .menu .menu__item .title {
    margin: 0 auto 0 0;
    font-family: "Montserrat";
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
  }
  header .menu .menu__item .title > a {
    text-decoration: underline;
  }
  header .menu .menu__item .link-group .link-group-title {
    font-size: 22px;
    font-weight: bold;
  }
  header .menu .menu__item .link-group ul {
    margin-bottom: 10px;
  }
  header .menu__link {
    display: inline-block;
    position: relative;
    font-size: 30px;
    padding: 15px 0;
    font-weight: 300;
    color: white;
    text-decoration: none;
    color: white;
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  }
  header .menu__link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 10px;
    height: 2px;
    background: white;
    transform: translateX(-50%);
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  }
  header .menu__link:hover:before {
    width: 100%;
  }
}
@media (min-width: 820px) {
  header .menu {
    display: none;
  }
}
@media (max-width: 819px) {
  header .search-window {
    z-index: 200;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 66px;
    visibility: hidden;
    transition: opacity 0.2s;
    opacity: 0;
  }
  header .search-window.--active {
    visibility: visible;
    opacity: 1;
    background-color: white;
  }
  header .search-window .search-header {
    width: 100%;
    height: 60px;
    padding: 0 9% 0 5%;
    display: flex;
    justify-content: space-between;
    background-color: white;
    align-items: center;
    line-height: 1;
  }
  header .search-window .search-box {
    flex: 1;
    flex-shrink: 0;
  }
  header .search-window .search-box .search-input {
    width: 96%;
    height: 40px;
    padding: 0 20px 0 11vw;
    background-color: #f5f5f5;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: text;
    outline: none;
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  }
  header .search-window .search-box .search-btn {
    position: absolute;
    width: 40px;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    top: 0;
    left: 9%;
    padding: 0;
    background: none;
    border: none;
    outline: none;
  }
  header .search-window .search-close {
    width: 40px;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
  }
  header .search-window .search-close div {
    transform: rotate(180deg);
  }
  header .search-window .search-close .__patty {
    width: 22px;
    height: 2px;
    margin: 0 0 4px 0;
    background: #000;
  }
  header .search-window .search-close .__patty:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  header .search-window .search-close .__patty:nth-child(2) {
    opacity: 0;
  }
  header .search-window .search-close .__patty:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
  }
  header .search-window .search-close .__patty:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 820px) {
  header .search-window {
    z-index: 200;
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    visibility: hidden;
    transition: all 0.3s;
    opacity: 0;
    box-shadow: rgba(50, 50, 93, 0.45) 0px 30px 60px -12px, rgba(0, 0, 0, 0.6) 0px 18px 36px -18px;
  }
  header .search-window.--active {
    visibility: visible;
    opacity: 1;
    background-color: white;
  }
  header .search-window .search-header {
    width: 100%;
    height: 90px;
    padding: 0 5%;
    display: flex;
    background-color: white;
    align-items: center;
    line-height: 1;
  }
  header .search-window .search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
  }
  header .search-window .search-box .search-input {
    width: 100%;
    height: 40px;
    padding: 0 20px 0 60px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: text;
    outline: none;
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  }
  header .search-window .search-box .search-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    top: 0;
    left: 30px;
    padding: 0;
    background: none;
    border: none;
    outline: none;
  }
  header .search-window .search-close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  header .search-window .search-close div {
    transform: rotate(180deg);
  }
  header .search-window .search-close .__patty {
    width: 22px;
    height: 2px;
    margin: 0 0 4px 0;
    background: #000;
  }
  header .search-window .search-close .__patty:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  header .search-window .search-close .__patty:nth-child(2) {
    opacity: 0;
  }
  header .search-window .search-close .__patty:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
  }
  header .search-window .search-close .__patty:last-child {
    margin-bottom: 0;
  }
}

.prefooter {
  padding: 0;
  color: #fff;
}
@media (min-width: 640px) {
  .prefooter {
    width: 100%;
    max-width: 100%;
  }
}
.prefooter .sitemap {
  background: #222;
}
@media (max-width: 639px) {
  .prefooter .sitemap {
    padding: 60px 5% 40px 5%;
  }
}
@media (min-width: 640px) {
  .prefooter .sitemap {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 80px 5% 40px;
  }
}
@media (max-width: 639px) {
  .prefooter .sitemap > div {
    padding-bottom: 20px;
  }
}
@media (min-width: 640px) {
  .prefooter .sitemap > div {
    padding-bottom: 40px;
  }
}
.prefooter .sitemap > div .subtitle {
  padding: 0;
  font-family: "Montserrat";
}
@media (max-width: 639px) {
  .prefooter .sitemap > div .subtitle {
    margin: 0 auto;
    font-size: 20px;
  }
}
@media (min-width: 640px) {
  .prefooter .sitemap > div .subtitle {
    margin: 0 auto 10px 0;
    font-size: 22px;
  }
}
.prefooter .sitemap ul {
  margin: 0;
  padding: 0;
  font-size: 16px;
  list-style: none;
}
.prefooter .sitemap ul li a {
  text-decoration: none;
  color: #999;
}
.prefooter .social {
  padding: 40px 0;
  background: #0DB5C6;
}
.prefooter .social > div {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 639px) {
  .prefooter .social > div {
    width: 60%;
    min-width: 200px;
    margin: 0 auto;
  }
}
@media (min-width: 640px) {
  .prefooter .social > div {
    width: 50%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.prefooter .social a {
  display: block;
  background: no-repeat;
  text-decoration: none;
}
.prefooter .social a > svg {
  fill: #fff;
}
@media (max-width: 639px) {
  .prefooter .social a > svg {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 640px) {
  .prefooter .social a > svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 639px) {
  .prefooter .social a > svg.youtube {
    width: 100px;
  }
}
@media (min-width: 640px) {
  .prefooter .social a > svg.youtube {
    width: 120px;
  }
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 70px;
  text-align: center;
  background-color: #fff;
}
footer .media-integration {
  width: 121.67px;
  height: 50px;
}
footer .distributed {
  margin: 0;
  padding: 10px 0 0 0;
  font-size: 16px;
  font-weight: bold;
}
footer .distributed > a {
  color: #000;
  text-decoration: none;
}
footer .copyright {
  font-size: 10px;
  color: #707070;
}

.content_class_search .billboard {
  width: 100%;
  height: 50px;
  padding: 0;
  background-color: #0DB5C6;
}

.section__result {
  overflow: visible;
  padding: 0;
}
.section__result > .view-area {
  position: relative;
}
@media (max-width: 639px) {
  .section__result > .view-area {
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
  }
}
.section__result > .view-area > .result > .functions {
  position: relative;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions {
    width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions {
    padding-bottom: 20px;
  }
}
.section__result > .view-area > .result > .functions > .search {
  margin-bottom: 40px;
}
.section__result > .view-area > .result > .functions > .search > form {
  position: relative;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .search > form {
    width: 90%;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .search > form {
    width: 60%;
    max-width: 400px;
  }
}
.section__result > .view-area > .result > .functions > .search > form::before {
  content: "";
  position: absolute;
  display: block;
  top: 11px;
  left: 20px;
  width: 23px;
  height: 23px;
  background-size: 18px auto;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17.625" height="17.6" viewBox="0 0 17.625 17.6"><path fill="%23707070" d="M6,12.8A6.8,6.8,0,1,1,12.8,6,6.872,6.872,0,0,1,6,12.8ZM6,.8A5.164,5.164,0,0,0,.8,6,5.228,5.228,0,0,0,6,11.2,5.3,5.3,0,0,0,11.2,6,5.228,5.228,0,0,0,6,.8Z" transform="translate(0.8 0.8)"/><path fill="%23707070" d="M16,16.8a.764.764,0,0,1-.5-.2l-5-5a.778.778,0,0,1,1.1-1.1l5,5a.785.785,0,0,1,0,1.1A1.421,1.421,0,0,1,16,16.8Z" transform="translate(0.8 0.8)"/></svg>');
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .search > form::before {
    top: 11px;
    left: 15px;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .search > form::before {
    top: 11px;
    left: 20px;
  }
}
.section__result > .view-area > .result > .functions > .search > form > .search-input {
  -webkit-appearance: none;
  width: 100%;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 20px;
  cursor: text;
  outline: none;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .search > form > .search-input {
    padding: 0 20px 0 40px;
    font-size: 15px;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .search > form > .search-input {
    padding: 0 20px 0 50px;
    font-size: 18px;
  }
}
.section__result > .view-area > .result > .functions > .filter {
  position: relative;
  text-align: center;
}
.section__result > .view-area > .result > .functions > .filter > .category {
  padding-bottom: 20px;
}
.section__result > .view-area > .result > .functions > .filter > .category a {
  margin: 0 0.5rem;
  padding: 0 0.5rem;
  text-decoration: none;
  color: #000;
}
.section__result > .view-area > .result > .functions > .filter > .category.current_category_all a.category_all {
  border-bottom: 2px solid #000;
}
.section__result > .view-area > .result > .functions > .filter > .category.current_category_products a.category_products {
  border-bottom: 2px solid #000;
}
.section__result > .view-area > .result > .functions > .filter > .category.current_category_articles a.category_articles {
  border-bottom: 2px solid #000;
}
.section__result > .view-area > .result > .functions > .filter > .sort_button {
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 0.9rem;
  color: #000;
  cursor: pointer;
}
.section__result > .view-area > .result > .functions > .filter > .sort_button::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22.1" height="17.5" viewBox="0 0 22.1 17.5"><path d="M11.2,5.7a.908.908,0,0,0-.3-.7L6.3.3A.967.967,0,0,0,4.9.3L.3,5.1a.713.713,0,0,0-.3.6.908.908,0,0,0,.3.7.844.844,0,0,0,.7.2.6.6,0,0,0,.6-.3l1.9-2L4.8,2.8l-.1,2V16.5a.908.908,0,0,0,.3.7.967.967,0,0,0,1.4,0,.908.908,0,0,0,.3-.7V4.9l-.1-2L7.9,4.4l1.9,2a.864.864,0,0,0,.6.3,1.445,1.445,0,0,0,.7-.2C11.3,6.4,11.2,6,11.2,5.7Z"/><path d="M21.6,11.1a.844.844,0,0,0-.7-.2.713.713,0,0,0-.6.3l-1.9,2-1.3,1.6.1-2V.9a.6.6,0,0,0-.3-.6c-.2-.1-.4-.3-.6-.3a.908.908,0,0,0-.7.3.864.864,0,0,0-.3.6V12.6l.1,2L14.1,13l-1.9-2a.864.864,0,0,0-.6-.3.845.845,0,0,0-.6.2,1.072,1.072,0,0,0-.2.6.908.908,0,0,0,.3.7L15.7,17a.967.967,0,0,0,1.4,0l4.7-4.8a.908.908,0,0,0,.3-.7C21.9,11.5,21.8,11.3,21.6,11.1Z" fill="%230"/></svg>');
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .filter > .sort_button::before {
    top: 11px;
    width: 23px;
    height: 23px;
    background-size: 18px auto;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .filter > .sort_button::before {
    top: 11px;
    width: 27px;
    height: 27px;
  }
}
.section__result > .view-area > .result > .functions > .filter > .filter_button {
  position: relative;
  font-size: 0.9rem;
  color: #000;
  cursor: pointer;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .filter > .filter_button {
    margin-right: 10px;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .filter > .filter_button {
    display: none;
  }
}
.section__result > .view-area > .result > .functions > .filter > .filter_button::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 19 19"><path d="M4.4,7.6a.735.735,0,0,1-.6-.2.551.551,0,0,1-.2-.5.764.764,0,0,1,.2-.5.845.845,0,0,1,.6-.2H14.6a1.421,1.421,0,0,1,.6.2c.2.1.2.3.2.5a.764.764,0,0,1-.2.5.845.845,0,0,1-.6.2Zm1.4,3.2a1.421,1.421,0,0,1-.6-.2c-.2-.1-.2-.3-.2-.5a.764.764,0,0,1,.2-.5.845.845,0,0,1,.6-.2h7.5a1.421,1.421,0,0,1,.6.2c.2.1.1.2.1.5a.764.764,0,0,1-.2.5.845.845,0,0,1-.6.2ZM7.2,14a1.421,1.421,0,0,1-.6-.2.725.725,0,0,1,0-1,.845.845,0,0,1,.6-.2h4.6a1.421,1.421,0,0,1,.6.2c.2.1.2.3.2.5a.764.764,0,0,1-.2.5,1.421,1.421,0,0,1-.6.2Zm2.3,5a9.366,9.366,0,0,0,3.7-.7,8.125,8.125,0,0,0,3-2.1,12.468,12.468,0,0,0,2.1-3A11.56,11.56,0,0,0,19,9.5a9.465,9.465,0,0,0-.8-3.7,9.038,9.038,0,0,0-2.1-3,12.468,12.468,0,0,0-3-2.1A8.571,8.571,0,0,0,9.5,0,9.366,9.366,0,0,0,5.8.7a8.125,8.125,0,0,0-3,2.1,12.468,12.468,0,0,0-2.1,3A9.04,9.04,0,0,0,0,9.5a9.366,9.366,0,0,0,.7,3.7,8.125,8.125,0,0,0,2.1,3,12.468,12.468,0,0,0,3,2.1A9.04,9.04,0,0,0,9.5,19Z" fill="%230"/></svg>');
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .filter > .filter_button::before {
    top: 9px;
    width: 23px;
    height: 23px;
    background-size: 18px auto;
  }
}
.section__result > .view-area > .result > .functions > .filter > .sort_dropdown {
  position: absolute;
  z-index: 80;
  right: 0;
  width: 160px;
  margin: 0;
  background-color: #0DB5C6;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 50px;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: left;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .filter > .sort_dropdown {
    top: 43px;
    padding: 15px 28px;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .filter > .sort_dropdown {
    top: 50px;
    padding: 20px 28px;
  }
}
.section__result > .view-area > .result > .functions > .filter > .sort_dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: calc(70% - 10px);
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background-color: #0DB5C6;
}
.section__result > .view-area > .result > .functions > .filter > .sort_dropdown.__active {
  opacity: 1;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .filter > .sort_dropdown > li {
    margin: 6px 0;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .filter > .sort_dropdown > li {
    margin: 0;
  }
}
.section__result > .view-area > .result > .functions > .filter > .sort_dropdown > li > a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #fff;
}
.section__result > .view-area > .result > .products > .product {
  box-shadow: none;
  transition: box-shadow 0.3s, opacity 1.4s, transform 1s;
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .products > .product:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 50px;
  }
}
.section__result > .view-area > .result > .products > .product .ultimate {
  position: absolute;
  top: 0;
  left: 60px;
  background: #ff7a00;
  color: white;
  padding: 5px;
  margin: 5px;
  font-size: 0.5em;
  border-radius: 7px;
  font-weight: bold;
}
.section__result > .view-area > .result > .products > .product .ultimate_only {
  left: 0px;
}
.section__result > .view-area > .result > .products > .product .essential {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #24284B;
  color: white;
  padding: 5px;
  margin: 5px;
  font-size: 0.5em;
  border-radius: 7px;
  font-weight: bold;
}

.pagenation {
  position: relative;
  text-align: center;
}
@media (max-width: 639px) {
  .pagenation {
    width: 90%;
    height: 70px;
    margin: 0 auto;
    padding: 30px 0 0;
  }
}
@media (min-width: 640px) {
  .pagenation {
    height: 100px;
    padding: 60px 0 0;
  }
}
.pagenation > .big-button {
  display: block;
  height: 40px;
  border-radius: 20px;
  background-color: #0DB5C6;
  text-decoration: none;
  color: #fff;
  line-height: 40px;
}
@media (max-width: 639px) {
  .pagenation > .big-button {
    width: 150px;
    margin: 0 auto 0 0;
  }
}
@media (min-width: 640px) {
  .pagenation > .big-button {
    width: 160px;
    margin: 0 auto;
  }
}
.pagenation > .pagenation_prev_next {
  position: absolute;
  right: 0;
  width: 135px;
  height: 40px;
  display: grid;
  gap: 5px;
  justify-content: right;
  grid-template-columns: repeat(auto-fit, 40px);
}
@media (max-width: 639px) {
  .pagenation > .pagenation_prev_next {
    top: 30px;
  }
}
@media (min-width: 640px) {
  .pagenation > .pagenation_prev_next {
    top: 60px;
  }
}
.pagenation > .pagenation_prev_next > .button {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  line-height: 40px;
}
.pagenation > .pagenation_prev_next > .button.prev, .pagenation > .pagenation_prev_next > .button.next {
  background: #f3f4f5 no-repeat center center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="16.056" viewBox="0 0 9 16.056"><path d="M8.133,16.431a.914.914,0,0,1-.6-.239L.359,9.016A.658.658,0,0,1,0,8.418a.914.914,0,0,1,.239-.6L7.415.644A.93.93,0,1,1,8.731,1.96L2.153,8.418,8.731,15a.939.939,0,0,1,0,1.316A5.18,5.18,0,0,0,8.133,16.431Z" transform="translate(0 -0.375)" fill="%23707070"/></svg>');
  transition: background-color 0.5s;
}
.pagenation > .pagenation_prev_next > .button.prev:hover, .pagenation > .pagenation_prev_next > .button.next:hover {
  background-color: #0DB5C6;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="16.056" viewBox="0 0 9 16.056"><path d="M8.133,16.431a.914.914,0,0,1-.6-.239L.359,9.016A.658.658,0,0,1,0,8.418a.914.914,0,0,1,.239-.6L7.415.644A.93.93,0,1,1,8.731,1.96L2.153,8.418,8.731,15a.939.939,0,0,1,0,1.316A5.18,5.18,0,0,0,8.133,16.431Z" transform="translate(0 -0.375)" fill="%23ffffff"/></svg>');
}
.pagenation > .pagenation_prev_next > .button.next {
  transform: rotateZ(180deg);
}
.pagenation > .pagenation_prev_next > .button.current {
  border: 1px solid #f3f4f5;
  color: #707070;
}

.content_class_special.index main {
  background-color: #0DB5C6;
  background-image: url("/svg/waves.svg");
}
.content_class_special.index .overview {
  text-align: center;
}
@media (max-width: 639px) {
  .content_class_special.index .overview {
    overflow: visible;
    width: 90%;
    margin: 0 auto;
    padding: 100px 0 0;
    text-align: left;
  }
}
@media (min-width: 640px) {
  .content_class_special.index .overview {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 120px 0 0;
  }
}
.content_class_special.index .overview > .title {
  font-family: "Montserrat";
  font-weight: bold;
  color: #fff;
}
@media (max-width: 639px) {
  .content_class_special.index .overview > .title {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1;
  }
}
@media (min-width: 640px) {
  .content_class_special.index .overview > .title {
    margin-bottom: 20px;
    font-size: 66px;
    line-height: 76px;
  }
}
.content_class_special.index .overview > .tagline {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #fff;
}
.content_class_special.index .section_banner {
  padding: 0;
}
@media (max-width: 639px) {
  .content_class_special.index .section_banner > .view-area {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0 0;
  }
}
@media (min-width: 640px) {
  .content_class_special.index .section_banner > .view-area {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 80px 0;
  }
}
.content_class_special.index .section_banner > .view-area .banner {
  padding-bottom: 80px;
}
@media (min-width: 640px) {
  .content_class_special.index .section_banner > .view-area .banner {
    text-align: center;
  }
}
.content_class_special.index .section_banner > .view-area .banner .image_wrap {
  overflow: hidden;
}
@media (max-width: 639px) {
  .content_class_special.index .section_banner > .view-area .banner .image_wrap {
    box-shadow: rgba(50, 50, 93, 0.45) 0px 30px 40px -12px, rgba(0, 0, 0, 0.6) 0px 18px 36px -18px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .content_class_special.index .section_banner > .view-area .banner .image_wrap img {
    width: 100%;
    height: 68.18181818%;
  }
}
@media (min-width: 640px) {
  .content_class_special.index .section_banner > .view-area .banner .image_wrap {
    box-shadow: rgba(50, 50, 93, 0.45) 0px 30px 60px -12px, rgba(0, 0, 0, 0.6) 0px 18px 36px -18px;
    border-radius: 20px;
    margin-bottom: 40px;
  }
  .content_class_special.index .section_banner > .view-area .banner .image_wrap img {
    width: 100%;
    height: 53.66726297%;
  }
}
.content_class_special.index .section_banner > .view-area .banner > .title {
  font-family: "Montserrat";
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
}
@media (max-width: 639px) {
  .content_class_special.index .section_banner > .view-area .banner > .title {
    margin-bottom: 20px;
    font-size: 32px;
  }
}
@media (min-width: 640px) {
  .content_class_special.index .section_banner > .view-area .banner > .title {
    margin-bottom: 20px;
    font-size: 46px;
  }
}
.content_class_special.index .section_banner > .view-area .banner .button {
  width: 340px;
  height: 68px;
  background-color: #fff;
  border-radius: 34px;
  font-size: 1.4rem;
  line-height: 68px;
  text-align: center;
  text-decoration: none;
  color: #0DB5C6;
}
@media (max-width: 639px) {
  .content_class_special.index .section_banner > .view-area .banner .button {
    display: inline-block;
    width: auto;
    height: 54px;
    padding: 0 3rem;
    border-radius: 27px;
    font-size: 1.4rem;
    line-height: 54px;
  }
}
@media (min-width: 640px) {
  .content_class_special.index .section_banner > .view-area .banner .button {
    display: block;
    width: 340px;
    height: 68px;
    margin: 0 auto;
    border-radius: 34px;
    font-size: 1.4rem;
    line-height: 68px;
    transition: all 0.3s;
  }
  .content_class_special.index .section_banner > .view-area .banner .button:hover {
    background-color: #ff9e2c;
    color: #fff;
  }
}

/*
 * DEBAG CODE
*/
@media (max-width: 639px) {
  p.debag__code {
    margin-bottom: 2rem;
  }
}
@media (min-width: 640px) {
  p.debag__code {
    margin-top: -1.5rem;
    margin-bottom: 2rem;
  }
}
