@charset "UTF-8";
/* header height */
/* sub-header height */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blinking-s {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-zoom-out {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-clip-left {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-right {
  from {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-up {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-down {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fade-clip-center {
  from {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}
@keyframes fade-clip-circle {
  from {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    opacity: 0;
  }
  to {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}
@keyframes fade-clip-skew {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    opacity: 1;
  }
}
@keyframes fade-clip-wave {
  from {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0);
            clip-path: polygon(0 0, 0 0, 0 0);
    transition: all 0.5s cubic-bezier(0.55, 0.06, 0.33, 1.85);
    transform: translateX(-30px) scale(0.8) skew(8deg);
    opacity: 0;
  }
  to {
    -webkit-clip-path: polygon(0 0, 200% 0, 0 200%);
            clip-path: polygon(0 0, 200% 0, 0 200%);
    transform: translateX(0) scale(1) skew(0);
    opacity: 1;
  }
}
@keyframes cover-left {
  0%, 20% {
    transform-origin: 0 50%;
  }
  20%, 100% {
    transform-origin: 100% 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-right {
  0%, 20% {
    transform-origin: 100% 50%;
  }
  20%, 100% {
    transform-origin: 0 50%;
  }
  20% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes cover-up {
  0%, 20% {
    transform-origin: 50% 100%;
  }
  20%, 100% {
    transform-origin: 50% 0;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes cover-down {
  0%, 20% {
    transform-origin: 50% 0;
  }
  20%, 100% {
    transform-origin: 50% 100%;
  }
  20% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
@keyframes hover-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes hover-zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hover-zoom-in-blink {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes hover-zoom-out-blink {
  0% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.label {
  display: inline-block;
  text-align: center;
  vertical-align: bottom;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0 10px 10px 0;
  font-weight: bold;
  font-size: 0.6875rem;
  padding: 5px 9px;
}
.label.large {
  font-weight: bold;
  font-size: 0.75rem;
  padding: 10px 15px;
}
.label.xlarge {
  font-weight: bold;
  font-size: 0.875rem;
  padding: 10px 15px;
}
.label.xxlarge {
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 15px;
}
.label.round {
  border-radius: 100vh;
  background-color: #fff;
  color: #969696;
  border: 1px solid #969696;
}
.label.accent {
  background-color: #DC0000;
  border: 1px solid #DC0000;
  color: #fff;
}
.label.primary {
  background-color: #323232;
  color: #323232;
  border: 1px solid #323232;
  background-color: #f5f5f5;
}
.label.secondary {
  color: #fff;
  border: 1px solid #969696;
  background-color: #969696;
}

.c-policy {
  font-weight: bold;
  font-size: 0.875rem;
  padding: 28px 33px;
  border-radius: 100vh;
  background-color: #fff;
  color: #969696;
  border: 1px solid #969696;
  background-color: #323232;
  color: #323232;
  border: 1px solid #323232;
  background-color: #f5f5f5;
  color: #323232;
  vertical-align: top;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-flex;
  align-items: center;
  text-align: left;
  width: 100%;
}
.c-policy span {
  display: block;
  color: #323232;
  margin-right: 20px;
}

.labal-circle-q {
  font-family: "Roboto";
  font-weight: 500;
  font-feature-settings: "palt";
  background: #000;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  width: 32px;
  height: 32px;
  line-height: 2rem;
  font-size: 0.875rem;
  background-color: #323232;
}
.labal-circle-q.accent {
  background: #323232;
}

.labal-circle-a {
  font-family: "Roboto";
  font-weight: 500;
  font-feature-settings: "palt";
  background: #000;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  width: 32px;
  height: 32px;
  line-height: 2rem;
  font-size: 0.875rem;
  background-color: #323232;
}
.labal-circle-a.accent {
  background: #323232;
}

.labal-q {
  background-image: url("data:image/svg+xml,%3csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.544 18.632c-.538 0-1-.19-1.385-.568a1.84 1.84 0 0 1-.569-1.386 1.82 1.82 0 0 1 .569-1.367 1.904 1.904 0 0 1 1.385-.569c.521 0 .974.19 1.36.569a1.867 1.867 0 0 1 .31 2.353 2.04 2.04 0 0 1-.71.71c-.29.172-.61.258-.96.258ZM7.238 12.327h2.984l1.767 2.291 1.261 1.492L16.28 20h-3.197l-2.06-2.611-.88-1.243-2.904-3.82Zm9.476-2.984c0 1.96-.367 3.638-1.101 5.035-.729 1.392-1.723 2.457-2.984 3.198-1.255.74-2.68 1.11-4.272 1.11-1.593 0-3.02-.37-4.28-1.11-1.256-.747-2.25-1.815-2.985-3.207C.364 12.973 0 11.297 0 9.344c0-1.96.364-3.635 1.092-5.027.735-1.397 1.73-2.466 2.984-3.206C5.337.37 6.764 0 8.357 0c1.593 0 3.017.37 4.272 1.11 1.26.74 2.255 1.809 2.984 3.206.734 1.392 1.101 3.067 1.101 5.027Zm-3.313 0c0-1.38-.216-2.543-.648-3.49-.426-.954-1.018-1.673-1.776-2.159-.758-.49-1.631-.737-2.62-.737-.989 0-1.862.246-2.62.737C4.98 4.18 4.384 4.9 3.952 5.853c-.426.947-.64 2.11-.64 3.49 0 1.38.214 2.546.64 3.499.432.947 1.027 1.667 1.785 2.158.758.486 1.631.728 2.62.728.989 0 1.862-.242 2.62-.728.758-.491 1.35-1.21 1.776-2.158.432-.953.648-2.12.648-3.5Z' fill='%235594F6'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 18px;
  height: 16px;
}

.labal-circle-num {
  font-family: "Roboto";
  font-weight: 500;
  font-feature-settings: "palt";
  background: #000;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  width: 32px;
  height: 32px;
  line-height: 2rem;
  font-size: 0.875rem;
  background-color: #fff;
  color: #323232;
  border: 1px solid #323232;
}
.labal-circle-num.accent {
  background: #323232;
}
.labal-circle-num.fill {
  color: #fff;
  background: #323232;
}

.label-step {
  font-family: "Roboto";
  font-weight: 500;
  font-feature-settings: "palt";
  display: inline-block;
  box-sizing: border-box;
  font-weight: bold;
  line-height: 1;
  color: #323232;
  font-size: 2rem;
}
.label-step > span {
  vertical-align: 7px;
  margin: 0 12px 0 0;
  font-size: 0.625rem;
}

.label-zone1 {
  display: inline-block;
  color: #323232;
  text-align: left;
  font-weight: 700;
  line-height: 1.6;
  font-size: 0.875rem;
}
.label-zone1::before {
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='36' height='18' viewBox='0 0 36 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23E4F4FD' stroke='%23323232' stroke-width='2.5' d='M1.25 1.25h33.5v15.5H1.25z'/%3e%3c/svg%3e");
  width: 30px;
  height: 15px;
  content: "";
  display: inline-block;
  vertical-align: -3px;
  margin-right: 10px;
}
.label-zone1.primary {
  color: #323232;
}
.label-zone1.primary::after {
  border-color: #323232;
}
.label-zone1.secondary {
  color: #969696;
}
.label-zone1.secondary::after {
  border-color: #969696;
}

.label-zone2 {
  display: inline-block;
  color: #323232;
  text-align: left;
  font-weight: 700;
  line-height: 1.6;
  font-size: 0.875rem;
}
.label-zone2::before {
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='36' height='18' viewBox='0 0 36 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='white' stroke='%23323232' stroke-width='2.5' d='M1.25 1.25h33.5v15.5H1.25z'/%3e%3c/svg%3e");
  width: 30px;
  height: 15px;
  content: "";
  display: inline-block;
  vertical-align: -3px;
  margin-right: 10px;
}
.label-zone2.primary {
  color: #323232;
}
.label-zone2.primary::after {
  border-color: #323232;
}
.label-zone2.secondary {
  color: #969696;
}
.label-zone2.secondary::after {
  border-color: #969696;
}

.label-cal-closeday {
  font-weight: normal;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.875rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  color: #323232;
  text-align: left;
}
.label-cal-closeday::before {
  content: "";
  background: #ebebeb;
  border-radius: 2px;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 10px;
  width: 30px;
  height: 15px;
}

.label-contact {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-weight: 700;
  line-height: 1.6;
  font-size: 1.875rem;
}
.label-contact::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='26' height='20' viewBox='0 0 26 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23 20H3c-1.654 0-3-1.346-3-3V3c0-1.654 1.346-3 3-3h20c1.654 0 3 1.346 3 3v14c0 1.654-1.346 3-3 3ZM3 2a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3Z' fill='%23323232'/%3e%3cpath d='M13 11.748c-.464 0-.928-.094-1.306-.284L.552 5.894l.894-1.788 11.14 5.57c.192.096.632.096.824 0l11.14-5.57.894 1.788-11.14 5.57c-.378.19-.842.284-1.306.284H13Z' fill='%23323232'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 21px;
  height: 16px;
  margin-right: 14px;
}

.label-contact-en {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-weight: 700;
  line-height: 1.6;
  font-size: 1.875rem;
}
.label-contact-en::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='26' height='20' viewBox='0 0 26 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23 20H3c-1.654 0-3-1.346-3-3V3c0-1.654 1.346-3 3-3h20c1.654 0 3 1.346 3 3v14c0 1.654-1.346 3-3 3ZM3 2a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H3Z' fill='%23323232'/%3e%3cpath d='M13 11.748c-.464 0-.928-.094-1.306-.284L.552 5.894l.894-1.788 11.14 5.57c.192.096.632.096.824 0l11.14-5.57.894 1.788-11.14 5.57c-.378.19-.842.284-1.306.284H13Z' fill='%23323232'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 21px;
  height: 16px;
  margin-right: 14px;
}

.label-news-mark--all {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.75rem;
}
.label-news-mark--all::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%23323232' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.label-news-mark--news {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.75rem;
}
.label-news-mark--news::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%235594F6' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.label-news-mark--event {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.75rem;
}
.label-news-mark--event::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%23FB5F5F' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.label-news-mark--mobilegame {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.75rem;
}
.label-news-mark--mobilegame::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%23FFBB33' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.label-news-mark--product {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.75rem;
}
.label-news-mark--product::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%2338B572' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.label-news-mark--all__mid {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.875rem;
}
.label-news-mark--all__mid::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%23323232' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.label-news-mark--news__mid {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.875rem;
}
.label-news-mark--news__mid::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%235594F6' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.label-news-mark--event__mid {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.875rem;
}
.label-news-mark--event__mid::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%23FB5F5F' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.label-news-mark--mobilegame__mid {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.875rem;
}
.label-news-mark--mobilegame__mid::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%23FFBB33' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.label-news-mark--product__mid {
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.875rem;
}
.label-news-mark--product__mid::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='5' cy='5' r='3.5' stroke='%2338B572' stroke-width='3'/%3e%3c/svg%3e");
  background-size: 100%;
  width: 10px;
  height: 10px;
  margin-right: 9px;
}

.icon-oarrow-label-sg-left {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-sg-left::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-sg-left::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-sg-left::after {
  transform: rotate(225deg);
  right: 16px;
}
.icon-oarrow-label-sg-left::before {
  border: 1px solid rgba(0, 176, 81, 0.5);
  background-color: transparent;
}
.icon-oarrow-label-sg-left::after {
  border-top: 2px solid #38B572;
  border-right: 2px solid #38B572;
}

.icon-oarrow-label-sg-right {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-sg-right::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-sg-right::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-sg-right::before {
  border: 1px solid rgba(0, 176, 81, 0.5);
  background-color: transparent;
}
.icon-oarrow-label-sg-right::after {
  border-top: 2px solid #38B572;
  border-right: 2px solid #38B572;
}

.icon-oarrow-label-sb-left {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-sb-left::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-sb-left::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-sb-left::after {
  transform: rotate(225deg);
  right: 16px;
}
.icon-oarrow-label-sb-left::before {
  border: 1px solid rgba(50, 50, 50, 0.5);
  background-color: transparent;
}
.icon-oarrow-label-sb-left::after {
  border-top: 2px solid #323232;
  border-right: 2px solid #323232;
}

.icon-oarrow-label-sb-right {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-sb-right::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-sb-right::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-sb-right::before {
  border: 1px solid rgba(50, 50, 50, 0.5);
  background-color: transparent;
}
.icon-oarrow-label-sb-right::after {
  border-top: 2px solid #323232;
  border-right: 2px solid #323232;
}

.icon-oarrow-label-sw-left {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-sw-left::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-sw-left::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-sw-left::after {
  transform: rotate(225deg);
  right: 16px;
}
.icon-oarrow-label-sw-left::before {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
}
.icon-oarrow-label-sw-left::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.icon-oarrow-label-sw-right {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-sw-right::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-sw-right::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-sw-right::before {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
}
.icon-oarrow-label-sw-right::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.icon-oarrow-label-fb-left {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-fb-left::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-fb-left::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-fb-left::after {
  transform: rotate(225deg);
  right: 16px;
}
.icon-oarrow-label-fb-left::before {
  background-color: #323232;
}
.icon-oarrow-label-fb-left::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.icon-oarrow-label-fb-right {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-fb-right::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-fb-right::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-fb-right::before {
  background-color: #323232;
}
.icon-oarrow-label-fb-right::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.icon-oarrow-label-fw-left {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-fw-left::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-fw-left::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-fw-left::after {
  transform: rotate(225deg);
  right: 16px;
}
.icon-oarrow-label-fw-left::before {
  background-color: #fff;
}
.icon-oarrow-label-fw-left::after {
  border-top: 2px solid #323232;
  border-right: 2px solid #323232;
}

.icon-oarrow-label-fw-right {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.icon-oarrow-label-fw-right::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-fw-right::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-fw-right::before {
  background-color: #fff;
}
.icon-oarrow-label-fw-right::after {
  border-top: 2px solid #323232;
  border-right: 2px solid #323232;
}

.icon-oarrow-label {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}
.icon-oarrow-label::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label::before {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
}
.icon-oarrow-label::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.icon-oarrow-label.sg {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
}
.icon-oarrow-label.sg::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label.sg::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label.sg::before {
  border: 1px solid rgba(0, 176, 81, 0.5);
  background-color: transparent;
}
.icon-oarrow-label.sg::after {
  border-top: 2px solid #38B572;
  border-right: 2px solid #38B572;
}

.icon-oarrow-label-sb {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}
.icon-oarrow-label-sb::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.icon-oarrow-label-sb::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
  right: 18px;
  width: 6px;
  height: 6px;
}
.icon-oarrow-label-sb::before {
  border: 1px solid rgba(50, 50, 50, 0.5);
  background-color: transparent;
}
.icon-oarrow-label-sb::after {
  border-top: 2px solid #323232;
  border-right: 2px solid #323232;
}

.thumb-corner-label {
  border: none;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 0.875rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
  font-feature-settings: "palt";
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0em;
  text-align: center;
  vertical-align: middle;
  color: #323232;
  padding: 0;
  padding: 0 52px 0 0;
  text-align: right;
  color: #fff;
  pointer-events: none;
  margin-left: -5px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.thumb-corner-label.small {
  border: none;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.thumb-corner-label.large {
  border: none;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1rem;
}
.thumb-corner-label::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.thumb-corner-label::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
}
.thumb-corner-label::before {
  left: auto;
  right: 0;
}
.thumb-corner-label::after {
  left: auto;
  right: 18px;
}
.thumb-corner-label.left {
  padding: 0;
  padding: 0 0 0 52px;
}
.thumb-corner-label.left::before {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border: 1px solid #989898;
  background: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.thumb-corner-label.left::after {
  transition: border-color 0.3s, background-color 0.3s;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2c2c2c;
  border-right: 2px solid #2c2c2c;
  opacity: 1;
  transform: rotate(45deg);
}
.thumb-corner-label.left::before {
  left: 0;
  right: auto;
}
.thumb-corner-label.left::after {
  right: auto;
  left: 17px;
}
.thumb-corner-label.accent {
  color: #DC0000;
}
.thumb-corner-label.accent::before {
  border: 1px solid #DC0000;
  background-color: transparent;
}
.thumb-corner-label.accent::after {
  border-color: #DC0000;
}
.thumb-corner-label::before {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.thumb-corner-label::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.suzuka .newslist__item {
  border-color: rgba(224, 0, 117, 0.1);
}
.suzuka .newslist__item__meta {
  width: 10%;
}
.suzuka .newslist__item__text {
  width: 100%;
}
.suzuka .newslist__item:first-child {
  border-color: rgba(224, 0, 117, 0.1);
}
.suzuka .newslist__item a {
  background-color: #F2E0EA;
}

.newslist {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.newslist__item {
  width: 100%;
  border-bottom: 2px solid #fff;
}
.newslist__item:first-child {
  border-top: 2px solid #fff;
}
.newslist__item a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
.newslist__item__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 24px;
  padding-bottom: 22px;
}
.newslist__item__meta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 10%;
  margin-bottom: 10px;
}
.newslist__item__label {
  display: block;
  margin-right: 20px;
}
.newslist__item__time {
  font-weight: normal;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-right: 15px;
}
.newslist__item__text {
  font-weight: normal;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.875rem;
  font-weight: 700;
  width: 100%;
}
.newslist__foot {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-top: 30px;
  padding-bottom: 38px;
}

/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-navigation-size: 34.5px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.home-en .swiper-button-prev, .home-en .swiper-button-next {
  top: 37%;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 34%;
  width: calc(var(--swiper-navigation-size) / 69 * 43);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  display: block;
  background-size: 100%;
  width: 100%;
  height: 100%;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 17.5px;
  right: auto;
}
.swiper-button-prev::before,
.swiper-container-rtl .swiper-button-next::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='43' height='69' viewBox='0 0 43 69'%3e%3cg fill='none' stroke-linecap='square'%3e%3cpath d='M34.5 8.5l-26 26 26 26' stroke='white' stroke-width='12' opacity='.5'/%3e%3cpath d='M34.5 8.5l-26 26 26 26' stroke='black' stroke-width='4'/%3e%3c/g%3e%3c/svg%3e");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 17.5px;
  left: auto;
}
.swiper-button-next::before,
.swiper-container-rtl .swiper-button-prev::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='43' height='69' viewBox='0 0 43 69'%3e%3cg fill='none' stroke-linecap='square'%3e%3cpath d='M8.5 8.5l26 26-26 26' stroke='white' stroke-width='12' opacity='.5'/%3e%3cpath d='M8.5 8.5l26 26-26 26' stroke='black' stroke-width='4'/%3e%3c/g%3e%3c/svg%3e");
}

.swiper-button-prev::before,
.swiper-button-next::before {
  box-sizing: content-box;
  border: 10px solid transparent;
  margin: -10px;
}

.swiper-button-lock {
  display: none;
}

:root {
  --swiper-theme-color: #000000;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-size: 10px;
}

.swiper-container {
  padding-bottom: 44px;
}

.swiper-wrapper {
  padding-bottom: 0px;
}

.swiper-pagination {
  bottom: 0px !important;
}

.swiper-wrapper img {
  width: 100%;
}

.swiper-button-next {
  right: 9px;
  width: 40px;
  height: 60px;
}
.swiper-button-next::before {
  background-image: url("data:image/svg+xml,%3csvg width='49' height='74' viewBox='0 0 49 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m12 12 25 25-25 25' stroke='white' stroke-width='16' stroke-linecap='square'/%3e%3cpath d='m12 12 25 25-25 25' stroke='%23323232' stroke-width='4' stroke-linecap='square'/%3e%3c/svg%3e");
  background-size: 100%;
  width: inherit;
  height: inherit;
}

.swiper-button-prev {
  left: 9px;
  width: 40px;
  height: 60px;
}
.swiper-button-prev::before {
  background-image: url("data:image/svg+xml,%3csvg width='49' height='74' viewBox='0 0 49 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M37 12 12 37l25 25' stroke='white' stroke-width='16' stroke-linecap='square'/%3e%3cpath d='M37 12 12 37l25 25' stroke='%23323232' stroke-width='4' stroke-linecap='square'/%3e%3c/svg%3e");
  background-size: 100%;
  width: inherit;
  height: inherit;
}

.swiper-pagination .swiper-pagination-split {
  position: relative;
  height: 23px;
  width: 1px;
  margin: 0 10px;
  opacity: 0.5;
}
.swiper-pagination .swiper-pagination-split::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 0;
  background-color: #000;
  height: inherit;
  width: inherit;
}

.home__slider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: auto;
}

.hero-bg-video {
  position: relative;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  height: auto;
  margin-bottom: 17px;
}
.hero-bg-video:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/video-overlay.png");
  background-repeat: repeat;
  display: none;
}
.hero-bg-video video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: inherit;
  transition: opacity 0.2s ease-out 0.2s;
  opacity: 0;
}
.hero-bg-video video::-moz-picture-in-picture-button {
  display: none !important;
}
.hero-bg-video.is-video-ready video {
  opacity: 1;
}
.hero-bg-video .home-recruit-btn {
  position: absolute;
  z-index: 20;
  bottom: 20px;
  right: 10px;
}

.grid2 {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px 5px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5px;
  padding-right: 5px;
}
.grid2__item {
  -ms-grid-row-align: stretch;
      align-self: stretch;
  overflow: hidden;
}

.category__panel {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.category__panel__img {
  transition: transform 0.3s ease;
  position: relative;
  top: 0;
  left: 0;
}
.category__panel__img img {
  width: 100%;
  height: auto;
}
.category__panel__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.category__panel__label.goods {
  margin-top: 0px;
}
.category__panel__label.goods .category__panel__subttl {
  width: 96px;
  margin-top: -10px;
}
.category__panel__label.bakken .category__panel__subttl {
  width: 110px;
}
.category__panel__label.youtube {
  margin-top: -4px;
}
.category__panel__label.youtube .category__panel__subttl {
  white-space: nowrap;
  margin-top: -4px;
}
.category__panel__ttl {
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1.5rem;
}
.category__panel__ttl.black {
  color: #323232;
}
.category__panel__subttl {
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.625rem;
}
.category__panel__subttl.black {
  color: #323232;
}
.category__panel__subttl img {
  width: 100%;
  height: auto;
}
.category__panel .icon-oarrow-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.foot-recruit {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5px;
  padding-right: 5px;
  display: block;
  width: 100%;
  height: auto;
  margin-top: 5px;
}
.foot-recruit a {
  display: block;
  will-change: transform opacity;
  position: relative;
  top: 0;
  left: 0;
}
.foot-recruit__img {
  width: 100%;
  height: auto;
}
.foot-recruit__img img {
  width: 100%;
  height: auto;
}
.foot-recruit .icon-oarrow-label {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 10px;
}
.foot-recruit .icon-oarrow-label::before {
  border: 1px solid rgba(50, 50, 50, 0.5);
  background-color: transparent;
}
.foot-recruit .icon-oarrow-label::after {
  border-top: 2px solid #323232;
  border-right: 2px solid #323232;
}

.home__contact {
  padding: 48px 5px;
}

.banner-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px 20px;
  padding: 0px 5px 167px 5px;
}
.banner-list li {
  list-style: none;
}
.banner-list li.animefastival {
  width: 100%;
  height: auto;
}
.banner-list li a {
  display: block;
  will-change: transform opacity;
}
.banner-list li img {
  width: 100%;
  height: auto;
}
@media (min-width: 640px) {
  .label {
    margin: 0 10px 10px 0;
  }
  .c-policy span {
    margin-right: 20px;
  }
  .labal-circle-q {
    width: 32px;
    height: 32px;
    line-height: 2rem;
    font-size: 0.875rem;
  }
  .labal-circle-a {
    width: 32px;
    height: 32px;
    line-height: 2rem;
    font-size: 0.875rem;
  }
  .labal-q {
    width: 23px;
    height: 20px;
  }
  .labal-circle-num {
    width: 32px;
    height: 32px;
    line-height: 2rem;
    font-size: 0.875rem;
  }
  .label-step {
    font-size: 2rem;
  }
  .label-step > span {
    vertical-align: 7px;
    font-size: 0.625rem;
    margin: 0px 12px 0 0;
  }
  .label-cal-closeday {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .label-contact::before {
    margin-right: 14px;
  }
  .label-contact-en::before {
    margin-right: 14px;
  }
  .icon-oarrow-label-sg-left::after {
    right: 19px;
  }
  .icon-oarrow-label-sb-left::after {
    right: 19px;
  }
  .icon-oarrow-label-sw-left::after {
    right: 19px;
  }
  .icon-oarrow-label-fb-left::after {
    right: 19px;
  }
  .icon-oarrow-label-fw-left::after {
    right: 19px;
  }
  .thumb-corner-label::before {
    width: 50px;
    height: 50px;
  }
  .thumb-corner-label::after {
    width: 9px;
    height: 9px;
  }
  .thumb-corner-label {
    padding: 0 62px 0 0;
  }
  .thumb-corner-label::after {
    right: 22px;
  }
  .thumb-corner-label.left::before {
    width: 50px;
    height: 50px;
  }
  .thumb-corner-label.left::after {
    width: 9px;
    height: 9px;
  }
  .thumb-corner-label.left {
    padding: 0 0 0 65px;
  }
  .thumb-corner-label.left::after {
    left: 20px;
  }
  .newslist__item__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .newslist__item__time {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .newslist__item__text {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .newslist__foot {
    padding-left: 30px;
    padding-right: 30px;
  }
  :root {
    --swiper-navigation-size: 40px;
  }
  .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 45px;
  }
  .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 45px;
  }
  .swiper-container {
    padding-bottom: 22px;
  }
  .swiper-wrapper {
    padding-bottom: 30px;
  }
  .swiper-button-next {
    right: 37px;
    width: 49px;
    height: 74px;
  }
  .swiper-button-prev {
    left: 37px;
    width: 49px;
    height: 74px;
  }
  .swiper-pagination .swiper-pagination-split {
    height: 30px;
    margin: 0 15px;
  }
  .swiper-pagination .swiper-pagination-split::after {
    top: -8px;
  }
  .hero-bg-video:after {
    display: block;
  }
  .hero-bg-video .home-recruit-btn {
    bottom: 29px;
    right: 21px;
  }
  .grid2 {
    grid-gap: 10px 10px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .category__panel__label.goods {
    margin-top: -14px;
  }
  .category__panel__label.goods .category__panel__subttl {
    margin-top: -10px;
    width: 150px;
  }
  .category__panel__label.bakken .category__panel__subttl {
    width: 190px;
  }
  .category__panel__label.youtube {
    margin-top: -11px;
  }
  .category__panel__label.youtube .category__panel__subttl {
    margin-top: -4px;
  }
  .category__panel__ttl {
    line-height: 1.6;
    font-size: 2.5rem;
  }
  .category__panel__subttl {
    line-height: 1.6;
    font-size: 0.8125rem;
  }
  .category__panel .icon-oarrow-label {
    bottom: 21px;
    right: 21px;
  }
  .foot-recruit {
    margin-top: 10px;
  }
  .foot-recruit .icon-oarrow-label {
    bottom: 21px;
    right: 21px;
  }
  .home__contact {
    padding: 80px 0px;
  }
  .banner-list {
    flex-direction: row;
  }
  .banner-list li.animefastival {
    width: 310px;
    height: 74px;
  }
}
@media (min-width: 1100px) {
  .label {
    font-size: 0.8125rem;
    padding: 5px 11px 4px;
  }
  .label.large {
    font-size: 0.875rem;
    padding: 11px 20px 10px;
  }
  .label.xlarge {
    font-size: 1rem;
    padding: 11px 20px 10px;
  }
  .label.xxlarge {
    font-size: 1.125rem;
    padding: 11px 20px 10px;
  }
  .c-policy {
    font-size: 1rem;
    padding: 28px 39px 27px;
  }
  .c-policy {
    width: 700px;
  }
  .labal-circle-q {
    width: 40px;
    height: 40px;
    line-height: 2.5rem;
    font-size: 1.125rem;
  }
  .labal-circle-a {
    width: 40px;
    height: 40px;
    line-height: 2.5rem;
    font-size: 1.125rem;
  }
  .labal-circle-num {
    width: 40px;
    height: 40px;
    line-height: 2.5rem;
    font-size: 1.125rem;
  }
  .label-zone1 {
    font-size: 1rem;
  }
  .label-zone1::before {
    width: 36px;
    height: 18px;
  }
  .label-zone2 {
    font-size: 1rem;
  }
  .label-zone2::before {
    width: 36px;
    height: 18px;
  }
  .label-cal-closeday {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .label-cal-closeday {
    flex-direction: column;
  }
  .label-cal-closeday::before {
    width: 40px;
    height: 20px;
    margin: 0 0 10px 0;
  }
  .label-contact {
    font-size: 2.5rem;
  }
  .label-contact::before {
    width: 26px;
    height: 20px;
    margin-right: 16px;
  }
  .label-contact-en {
    font-size: 2.5rem;
  }
  .label-contact-en::before {
    width: 26px;
    height: 20px;
    margin-right: 16px;
  }
  .label-news-mark--all {
    font-size: 0.75rem;
  }
  .label-news-mark--all::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .label-news-mark--news {
    font-size: 0.75rem;
  }
  .label-news-mark--news::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .label-news-mark--event {
    font-size: 0.75rem;
  }
  .label-news-mark--event::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .label-news-mark--mobilegame {
    font-size: 0.75rem;
  }
  .label-news-mark--mobilegame::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .label-news-mark--product {
    font-size: 0.75rem;
  }
  .label-news-mark--product::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .label-news-mark--all__mid {
    font-size: 1rem;
  }
  .label-news-mark--all__mid::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .label-news-mark--news__mid {
    font-size: 1rem;
  }
  .label-news-mark--news__mid::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .label-news-mark--event__mid {
    font-size: 1rem;
  }
  .label-news-mark--event__mid::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .label-news-mark--mobilegame__mid {
    font-size: 1rem;
  }
  .label-news-mark--mobilegame__mid::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .label-news-mark--product__mid {
    font-size: 1rem;
  }
  .label-news-mark--product__mid::before {
    width: 10px;
    height: 10px;
    margin-right: 9px;
  }
  .icon-oarrow-label-sg-left {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-sg-left::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-sg-right {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-sg-right::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-sb-left {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-sb-left::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-sb-right {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-sb-right::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-sw-left {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-sw-left::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-sw-right {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-sw-right::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-fb-left {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-fb-left::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-fb-right {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-fb-right::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-fw-left {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-fw-left::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-fw-right {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-fw-right::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label.sg {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label.sg::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-sb {
    width: 50px;
    height: 50px;
  }
  .icon-oarrow-label-sb::after {
    right: 22px;
    width: 9px;
    height: 9px;
  }
  .icon-oarrow-label-sb {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .thumb-corner-label {
    font-size: 1rem;
  }
  .thumb-corner-label.small {
    font-size: 0.875rem;
  }
  .thumb-corner-label.large {
    font-size: 1.125rem;
  }
  .thumb-corner-label {
    margin-left: -5px;
    font-size: 1rem;
  }
  .suzuka .newslist__item__meta {
    width: 15%;
  }
  .suzuka .newslist__item__text {
    width: 85%;
  }
  .newslist__item__inner {
    max-width: 1250px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .newslist__item__inner {
    flex-direction: row;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 22px;
  }
  .newslist__item__meta {
    width: 22%;
    margin-bottom: 0px;
  }
  .newslist__item__label {
    margin-right: 15px;
  }
  .newslist__item__time {
    line-height: 1.6;
    font-size: 1rem;
  }
  .newslist__item__time {
    margin-right: 15px;
  }
  .newslist__item__text {
    line-height: 1.6;
    font-size: 1rem;
  }
  .newslist__item__text {
    width: 78%;
  }
  .newslist__foot {
    max-width: 1250px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .newslist__foot {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .home-en .swiper-button-prev, .home-en .swiper-button-next {
    top: 45%;
  }
  .swiper-button-prev,
.swiper-button-next {
    top: 39%;
  }
  .hero-bg-img {
    height: calc(100dvh - 140px);
  }
  .hero-bg-video {
    height: calc(100dvh - 140px);
    margin-bottom: 50px;
  }
  .grid2 {
    grid-gap: 10px 10px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .grid2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .category__panel__label.goods {
    margin-top: -14px;
  }
  .category__panel__label.goods .category__panel__subttl {
    margin-top: -10px;
    width: 266px;
  }
  .category__panel__label.bakken .category__panel__subttl {
    width: 330px;
  }
  .category__panel__label.youtube {
    margin-top: -11px;
  }
  .category__panel__label.youtube .category__panel__subttl {
    margin-top: -4px;
  }
  .category__panel__ttl {
    line-height: 1.6;
    font-size: 3.75rem;
  }
  .category__panel__subttl {
    line-height: 1.6;
    font-size: 1.25rem;
  }
  .foot-recruit {
    padding-left: 10px;
    padding-right: 10px;
  }
  .home__contact {
    margin-left: 75px;
  }
  .banner-list {
    padding: 0px 0px 100px;
    margin-left: 75px;
  }
}
@media (hover: hover) {
  .icon-oarrow-label-sg-left:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-sg-left:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-sg-right:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-sg-right:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-sb-left:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-sb-left:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-sb-right:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-sb-right:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-sw-left:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-sw-left:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-sw-right:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-sw-right:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-fb-left:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-fb-left:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-fb-right:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-fb-right:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-fw-left:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-fw-left:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-fw-right:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-fw-right:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label.sg:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label.sg:hover::after {
    border-color: #fff;
  }
  .icon-oarrow-label-sb:hover::before {
    border-color: #323232;
    background-color: #323232;
  }
  .icon-oarrow-label-sb:hover::after {
    border-color: #fff;
  }
  .thumb-corner-label.accent:hover::before {
    background: #DC0000;
    border-color: #DC0000;
  }
  .thumb-corner-label.accent:hover::after {
    border-color: #fff;
  }
  .thumb-corner-label:hover::before {
    background: #2c2c2c;
    border-color: #2c2c2c;
  }
  .thumb-corner-label:hover::after {
    border-color: #fff;
  }
  .suzuka .newslist__item a:hover {
    background-color: #eecfdf;
  }
  .newslist__item a:hover {
    background-color: #fcfcfc;
  }
  .hero-bg-video .home-recruit-btn {
    will-change: transform opacity;
  }
  .hero-bg-video .home-recruit-btn:hover .home-recruit-btn-label::before {
    border-color: #fff;
    background-color: #fff;
  }
  .hero-bg-video .home-recruit-btn:hover .home-recruit-btn-label::after {
    border-color: #323232;
  }
  .category__panel__img:hover {
    transform: scale(1.1);
  }
  .category__panel:hover .icon-oarrow-label::before {
    border-color: #fff;
    background-color: #fff;
  }
  .category__panel:hover .icon-oarrow-label::after {
    border-color: #323232;
  }
  .foot-recruit a:hover {
    animation: blinking 0.5s ease 0s both;
  }
  .foot-recruit:hover .icon-oarrow-label::before {
    border-color: #323232 !important;
    background-color: #323232 !important;
  }
  .foot-recruit:hover .icon-oarrow-label::after {
    border-color: #fff !important;
  }
  .banner-list li a:hover {
    animation: blinking 0.5s ease 0s both;
  }
}
@media (hover: hover) and (hover: hover) {
  .hero-bg-video .home-recruit-btn:hover {
    animation: blinking 0.5s ease 0s both;
  }
}