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

ul.list {
  font-weight: 500;
  line-break: normal;
  line-height: 1.6;
  font-size: 0.875rem;
  list-style-position: outside;
  color: #323232;
  padding-left: 1em;
}
ul.list li::before {
  display: inline-block;
  content: "・";
  font-weight: bold;
  margin-left: -1em;
  width: 14px;
}

ul.list--bold {
  font-weight: 700;
  line-break: normal;
  line-height: 1.6;
  font-size: 0.875rem;
  list-style-position: outside;
  color: #323232;
  padding-left: 1em;
}
ul.list--bold li::before {
  display: inline-block;
  content: "・";
  font-weight: bold;
  margin-left: -1em;
  width: 14px;
}

ul.list--mark {
  font-weight: 500;
  line-break: normal;
  line-height: 1.6;
  font-size: 0.875rem;
  list-style-position: outside;
  color: #323232;
  padding-left: 1em;
}
ul.list--mark li::before {
  display: inline-block;
  content: "※";
  font-weight: bold;
  margin-left: -1em;
  width: 14px;
}

ol.olist {
  font-weight: 500;
  line-break: normal;
  line-height: 1.6;
  font-size: 0.875rem;
  list-style-position: outside;
  list-style-type: decimal;
  padding-left: 1em;
}

ol.olist--bold {
  font-weight: 700;
  line-break: normal;
  line-height: 1.6;
  font-size: 0.875rem;
  list-style-position: outside;
  list-style-type: decimal;
  padding-left: 1em;
}

/* .table-membership */
.table-membership {
  display: block;
  padding-right: 25px;
  table-layout: fixed;
  border-collapse: collapse;
  width: 1000px;
  margin: 60px 25px 30px 25px;
}
.table-membership tbody {
  width: 100%;
  display: block;
}
.table-membership tr {
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border-top: solid 1px #e8e8e8;
  border-bottom: solid 1px #e8e8e8;
}
.table-membership th {
  font-weight: 700;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
  display: block;
  box-sizing: border-box;
  border-right: solid 1px #e8e8e8;
  background: #fafafa;
  vertical-align: middle;
  text-align: center;
  color: #323232;
  padding: 12px 10px;
}
.table-membership th:last-child {
  border-right: none;
}
.table-membership th.nb {
  border-left: none;
}
.table-membership th:nth-of-type(1) {
  width: 467px;
}
.table-membership th:nth-of-type(2) {
  width: 133px;
}
.table-membership th:nth-of-type(3) {
  width: 133px;
}
.table-membership th:nth-of-type(4) {
  width: 133px;
}
.table-membership th:nth-of-type(5) {
  width: 133px;
}
.table-membership td {
  font-weight: normal;
  line-break: strict;
  line-height: 1.6;
  font-size: 0.75rem;
  display: block;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
  color: #323232;
  border-right: solid 1px #e8e8e8;
  padding: 12px 10px;
}
.table-membership td:last-child {
  border-right: none;
}
.table-membership td.left {
  text-align: left;
  border-left: none;
}
.table-membership td span {
  color: #323232;
}
.table-membership td.nb {
  border-left: none;
}

.news-detail {
  padding-bottom: 150px;
  padding-top: 40px;
}
.news-detail__eyecatch {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.news-detail__eyecatch img {
  width: 100%;
  height: auto;
}
.news-detail__head {
  margin-bottom: 35px;
}
.news-detail__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.news-detail__cat-list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.news-detail__cat-list li {
  margin-right: 10px;
}
.news-detail__content p {
  line-height: 160%;
  margin-bottom: 30px;
  font-size: 0.875rem;
}
.news-detail__content p a {
  will-change: transform opacity;
  font-weight: 500;
  color: #323232;
  text-decoration: underline;
  line-break: auto !important;
  word-break: break-all;
}
.news-detail__ttl {
  font-weight: 700;
  line-break: strict;
  line-height: 1.8;
  font-size: 1.125rem;
}
.news-detail__date {
  font-weight: normal;
  line-break: strict;
  line-height: 1;
  font-size: 0.875rem;
}
.news-detail__img {
  width: 100%;
  margin-bottom: 20px;
}
.news-detail__text {
  font-weight: 700;
  line-break: strict;
  line-height: 2;
  font-size: 0.75rem;
  margin-bottom: 20px;
}
@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: 21px;
  }
  .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;
  }
  ul.list {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  ul.list li::before {
    width: 14px;
  }
  ul.list--bold {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  ul.list--bold li::before {
    width: 14px;
  }
  ul.list--mark {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  ul.list--mark li::before {
    width: 14px;
  }
  ol.olist {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  ol.olist--bold {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .table-membership {
    width: 100%;
    margin: 60px 0 30px 0;
    padding: 0;
  }
  .table-membership th {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .table-membership th {
    padding: 12px 10px;
  }
  .table-membership td {
    line-height: 1.6;
    font-size: 0.75rem;
  }
  .table-membership td {
    padding: 12px 20px;
  }
  .news-detail {
    padding-bottom: 200px;
  }
  .news-detail__eyecatch {
    margin-bottom: 48px;
  }
  .news-detail__content p {
    margin-bottom: 30px;
    font-size: 0.875rem;
  }
  .news-detail__ttl {
    line-height: 1.8;
    font-size: 1.125rem;
  }
  .news-detail__date {
    line-height: 1;
    font-size: 0.875rem;
  }
  .news-detail__text {
    line-height: 2;
    font-size: 0.75rem;
  }
}
@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;
  }
  ul.list {
    line-height: 1.6;
    font-size: 1rem;
  }
  ul.list li::before {
    width: 16px;
  }
  ul.list--bold {
    line-height: 1.6;
    font-size: 1rem;
  }
  ul.list--bold li::before {
    width: 16px;
  }
  ul.list--mark {
    line-height: 1.6;
    font-size: 1rem;
  }
  ul.list--mark li::before {
    width: 16px;
  }
  ol.olist {
    line-height: 1.6;
    font-size: 1rem;
  }
  ol.olist--bold {
    line-height: 1.6;
    font-size: 1rem;
  }
  .table-membership th {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .table-membership td {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .news-detail {
    padding-bottom: 200px;
  }
  .news-detail {
    padding-top: 68px;
  }
  .news-detail__head {
    margin-bottom: 35px;
  }
  .news-detail__meta {
    margin-bottom: 25px;
  }
  .news-detail__cat-list li {
    margin-right: 20px;
  }
  .news-detail__content p {
    font-size: 1.125rem;
  }
  .news-detail__ttl {
    line-height: 1.8;
    font-size: 1.25rem;
  }
  .news-detail__date {
    line-height: 1;
    font-size: 1rem;
  }
  .news-detail__img {
    margin-bottom: 40px;
  }
  .news-detail__text {
    line-height: 2;
    font-size: 1.25rem;
  }
  .news-detail__text {
    margin-bottom: 40px;
  }
}
@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;
  }
  .news-detail__content p a:hover {
    animation: blinking 0.5s ease 0s both;
  }
}