@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;
}

/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: -ms-grid;
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10;
  /* always overlap slide content */
  pointer-events: none;
  /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  font-size: 0.875rem;
  line-height: 1.875rem;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.pswp {
  --pswp-bg: #F2E0EA;
  --pswp-icon-color: #323232;
  --pswp-icon-color-secondary: #fff;
  --pswp-icon-stroke-color: #323232;
}

.instagram-suzuka-btn {
  will-change: transform opacity;
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #323232;
  position: relative;
  text-align: left;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.6;
  padding: 0;
  padding-right: 15px;
  font-size: 1rem;
  font-family: "Inter";
  font-weight: 700;
  font-feature-settings: "palt";
  color: #E00075;
}
.instagram-suzuka-btn::before {
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23a)' fill='%23E00075'%3e%3cpath d='M13 2.343c3.471 0 3.882.013 5.253.076 1.268.057 1.956.269 2.414.447.607.236 1.04.518 1.495.972.455.455.737.888.972 1.495.178.458.39 1.147.448 2.414.062 1.37.076 1.782.076 5.254 0 3.47-.014 3.882-.076 5.253-.058 1.267-.27 1.956-.448 2.414a4.032 4.032 0 0 1-.972 1.495 4.02 4.02 0 0 1-1.495.972c-.458.178-1.146.39-2.414.447-1.37.063-1.782.076-5.253.076s-3.883-.013-5.253-.076c-1.268-.057-1.956-.269-2.414-.447a4.034 4.034 0 0 1-1.495-.972 4.02 4.02 0 0 1-.972-1.495c-.178-.458-.39-1.147-.448-2.414-.062-1.37-.076-1.782-.076-5.254 0-3.47.014-3.882.076-5.253.058-1.267.27-1.956.448-2.414.235-.607.517-1.04.972-1.495a4.016 4.016 0 0 1 1.495-.972c.458-.178 1.146-.39 2.414-.447 1.37-.063 1.782-.076 5.253-.076ZM13 0C9.47 0 9.027.015 7.64.079 6.256.142 5.31.362 4.484.683a6.367 6.367 0 0 0-2.302 1.5 6.371 6.371 0 0 0-1.5 2.302c-.32.827-.54 1.772-.604 3.155C.015 9.027 0 9.47 0 13c0 3.531.015 3.974.078 5.36.063 1.384.283 2.33.605 3.156.332.855.776 1.58 1.5 2.303a6.37 6.37 0 0 0 2.302 1.5c.827.32 1.772.54 3.155.604C9.027 25.986 9.47 26 13 26c3.531 0 3.974-.015 5.36-.078 1.384-.063 2.33-.283 3.156-.605a6.366 6.366 0 0 0 2.303-1.5 6.371 6.371 0 0 0 1.5-2.302c.32-.826.54-1.772.604-3.155.063-1.387.078-1.83.078-5.36 0-3.531-.015-3.974-.078-5.36-.063-1.384-.283-2.33-.605-3.156a6.366 6.366 0 0 0-1.5-2.303 6.372 6.372 0 0 0-2.302-1.5c-.826-.32-1.772-.54-3.155-.604C16.974.015 16.53 0 13 0H13Z'/%3e%3cpath d='M13 6.324a6.675 6.675 0 1 0 0 13.351 6.675 6.675 0 0 0 0-13.35Zm0 11.01a4.333 4.333 0 1 1 0-8.667 4.333 4.333 0 0 1 0 8.666ZM19.939 7.62a1.56 1.56 0 1 0 0-3.12 1.56 1.56 0 0 0 0 3.12Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='a'%3e%3cpath fill='white' d='M0 0h26v26H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  transition: all 0.15s;
  content: "";
  display: inline-block;
  margin: auto;
  position: relative;
  top: -1px;
  margin-right: 11px;
  width: 21px;
  height: 21px;
}
.instagram-suzuka-btn::after {
  transition: right 0.3s 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: 0px;
  width: 8px;
  height: 8px;
}
.instagram-suzuka-btn.primary {
  color: #323232;
}
.instagram-suzuka-btn.primary::after {
  border-color: #323232;
}
.instagram-suzuka-btn.secondary {
  color: #969696;
}
.instagram-suzuka-btn.secondary::after {
  border-color: #969696;
}
.instagram-suzuka-btn span {
  color: #323232;
}
.instagram-suzuka-btn::after {
  border-color: #E00075;
}

.suzuka {
  padding-bottom: 60px;
  background-color: #F2E0EA;
}
.suzuka .sec__ttl {
  color: #E00075;
}
.suzuka__head__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.suzuka__hero {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 50px 0 30px;
}
.suzuka__hero__img {
  margin: 0 auto;
  width: 80%;
}
.suzuka__hero__img img {
  width: 100%;
  height: auto;
}
.suzuka__profile {
  width: 100%;
}
.suzuka__profile__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 60px;
}
.suzuka__profile__head__deco {
  width: 100%;
  margin-left: 16px;
}
.suzuka__profile__head__deco img {
  width: 100%;
  height: auto;
}
.suzuka__profile__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 35px;
}
.suzuka__profile__content__head {
  width: 66%;
  margin-bottom: 47px;
}
.suzuka__profile__content__head__img {
  width: 100%;
}
.suzuka__profile__content__head__img img {
  width: 100%;
  height: auto;
}
.suzuka__profile__content__body {
  width: 100%;
}
.suzuka__profile__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 23px;
}
.suzuka__profile__job {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
  color: #E00075;
}
.suzuka__profile__name {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 1.125rem;
  margin-left: 20px;
}
.suzuka__profile__text {
  font-weight: normal;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.8125rem;
  margin-bottom: 20px;
}
.suzuka__profile__foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.suzuka__profile__foot__deco {
  width: 100%;
}
.suzuka__profile__foot__deco img {
  width: 100%;
  height: auto;
}
.suzuka .grid3 {
  display: -ms-grid;
  display: grid;
  align-items: flex-start;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px 0px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.suzuka .grid3__item {
  -ms-grid-row-align: stretch;
      align-self: stretch;
  overflow: hidden;
}
.suzuka .movie-wrapper {
  margin: 17px 0 32px;
}
.suzuka .movie-container {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.suzuka .movie-container video {
  width: 100%;
  height: auto;
}
.suzuka .gallery {
  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;
  padding: 0 5px;
  margin: 17px 0 0px;
}
.suzuka .gallery__item {
  -ms-grid-row-align: stretch;
      align-self: stretch;
  overflow: hidden;
}
.suzuka .gallery__img {
  display: inline-block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.suzuka .gallery__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  transform: scale(1.1);
}
.suzuka__foot__img {
  margin: 0 auto;
  width: 100%;
}
.suzuka__foot__img 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;
  }
  .instagram-suzuka-btn {
    font-size: 1rem;
  }
  .instagram-suzuka-btn::before {
    margin-right: 11px;
    width: 26px;
    height: 26px;
  }
  .instagram-suzuka-btn::after {
    right: 0px;
    width: 10px;
    height: 10px;
  }
  .suzuka {
    padding-bottom: 60px;
  }
  .suzuka__head__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .suzuka__profile__content {
    flex-direction: row;
    padding: 34px 0 45px;
  }
  .suzuka__profile__content__head {
    margin-bottom: 0px;
    width: 270px;
  }
  .suzuka__profile__content__body {
    padding-left: 30px;
    width: auto;
  }
  .suzuka__profile__job {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .suzuka__profile__name {
    line-height: 1.6;
    font-size: 1.125rem;
  }
  .suzuka__profile__text {
    line-height: 1.6;
    font-size: 0.8125rem;
  }
  .suzuka__profile__foot {
    margin-bottom: 70px;
  }
  .suzuka .grid3 {
    grid-gap: 0px 30px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .suzuka .gallery {
    grid-gap: 10px 10px;
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  .suzuka__foot__img {
    width: 60%;
    padding-bottom: 100px;
  }
}
@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;
  }
  .instagram-suzuka-btn {
    font-size: 1.125rem;
  }
  .instagram-suzuka-btn::before {
    margin-right: 8px;
    width: 26px;
    height: 26px;
  }
  .suzuka {
    padding-bottom: 60px;
  }
  .suzuka__head__inner {
    max-width: 1250px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .suzuka__head__inner {
    padding-top: 23px;
    padding-bottom: 23px;
  }
  .suzuka__hero {
    padding: 132px 0 50px;
  }
  .suzuka__hero__img {
    width: 780px;
  }
  .suzuka__profile__head {
    padding-top: 100px;
  }
  .suzuka__profile__head__deco {
    margin-left: 14px;
  }
  .suzuka__profile__content__body {
    padding-left: 80px;
  }
  .suzuka__profile__meta {
    margin-bottom: 35px;
  }
  .suzuka__profile__job {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .suzuka__profile__name {
    line-height: 1.6;
    font-size: 1.3125rem;
  }
  .suzuka__profile__name {
    margin-left: 20px;
  }
  .suzuka__profile__text {
    line-height: 1.6;
    font-size: 1.125rem;
  }
  .suzuka__profile__text {
    margin-bottom: 30px;
  }
  .suzuka .grid3 {
    grid-gap: 0px 30px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .suzuka .movie-wrapper {
    margin: 17px 0 64px;
  }
  .suzuka .gallery {
    grid-gap: 10px 10px;
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  .suzuka .gallery {
    padding: 0 10px;
    margin: 17px 0 64px;
  }
  .suzuka__foot__img {
    width: 900px;
  }
}
@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;
  }
  .instagram-suzuka-btn:hover {
    animation: blinking 0.5s ease 0s both;
  }
  .instagram-suzuka-btn:hover::after {
    right: -2px;
  }
  .suzuka .gallery__img img:hover {
    transform: scale(1.4);
  }
}