@charset "UTF-8";
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 62.5%;
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  background: transparent;
  color: #000;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
th,
td {
  table-layout: fixed;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select,
option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

button {
  font: inherit;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

/* IE
-----------------------------------------------------------------*/
main {
  display: block;
}

.c-fadein {
  opacity: 0;
  transition: transform ease 1s, opacity ease 1s;
}

.c-fadein.to-top {
  transform: translateY(50px);
}

.c-fadein.to-bottom {
  transform: translateY(-50px);
}

.c-fadein.to-right {
  transform: translateX(-50px);
}

.c-fadein.to-left {
  transform: translateX(50px);
}

.c-fadein.to-rt {
  transform: translate(-50px, 50px);
}

.c-fadein.to-rb {
  transform: translate(-50px, -50px);
}

.c-fadein.to-lt {
  transform: translate(50px, 50px);
}

.c-fadein.to-lb {
  transform: translate(50px, -50px);
}

.c-fadein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-slidein {
  opacity: 0;
  transition: transform ease-out 0.5s, opacity ease-out 0.5s;
}

.c-slidein.to-top {
  transform: translateY(100vh);
}

.c-slidein.to-bottom {
  transform: translateY(-100vh);
}

.c-slidein.to-right {
  transform: translateX(-100vw);
}

.c-slidein.to-left {
  transform: translateX(100vw);
}

.c-slidein.to-rt {
  transform: translate(-100vw, 100vh);
}

.c-slidein.to-rb {
  transform: translate(-100vw, -100vh);
}

.c-slidein.to-lt {
  transform: translate(100vw, 100vh);
}

.c-slidein.to-lb {
  transform: translate(100vw, -100vh);
}

.c-slidein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-reveal {
  opacity: 0;
  transition: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.c-reveal.to-right {
  clip-path: inset(0 100% 0 0);
}

.c-reveal.to-left {
  clip-path: inset(0 0 0 100%);
}

.c-reveal.to-top {
  clip-path: inset(100% 0 0 0);
}

.c-reveal.to-bottom {
  clip-path: inset(0 0 100% 0);
}

.c-reveal.inview {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

body {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.025em;
  line-height: 2;
  min-width: 375px;
  scroll-behavior: auto !important;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

.inner {
  width: 100%;
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

.top {
  position: relative;
}
.top::before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pc-bg.jpg) center/cover no-repeat;
}

.top-wrap {
  position: relative;
  max-width: 650px;
  margin: auto;
}
.top-wrap::before, .top-wrap::after {
  position: fixed;
  content: "";
  top: 0;
  width: 25px;
  height: 100%;
  background: url(../img/pc-line.jpg) 0 0/50px 2200px;
}
.top-wrap::before {
  left: calc(50% - 325px);
  transform: translateX(-100%);
}
.top-wrap::after {
  right: calc(50% - 325px);
  transform: translateX(100%);
}

.top-mv img {
  width: 100%;
}

.top-reaction {
  background-color: #111;
  padding-top: 1px;
}
.top-reaction img {
  width: 100%;
}

.top-supported {
  position: relative;
  background: #111;
  background: linear-gradient(to bottom, transparent 54px, #111 54px);
  margin-top: -54px;
  /* モーダルの基本スタイル */
  /* スクロール位置を維持するためのダミーターゲット */
}
.top-supported__img {
  text-align: center;
  position: relative;
}
.top-supported__img img {
  width: 100%;
}
.top-supported-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 31px 0;
  max-width: 375px;
  margin: auto;
  padding: 8px 20px 30px;
}
.top-supported-item {
  width: 46.2686567164%;
  text-align: center;
}
.top-supported-item__img img {
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.top-supported-item__ttl {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #fff;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  padding-top: 9px;
}
.top-supported-item__detail {
  margin-top: 10px;
}
.top-supported-item__btn {
  position: relative;
  display: inline-block;
  width: 140px;
  font-weight: 700;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #fff;
  background: #000;
  padding: 6px 6px 5px;
  border-radius: 17.5px;
  cursor: pointer;
}
.top-supported-item__btn::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 11px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: url(../img/right-chevron.png) center/cover no-repeat;
  transition: all 0.2s;
}
.top-supported-item__btn:hover::after {
  right: 8px;
}
.top-supported-item__site {
  margin-top: 10px;
}
.top-supported-item__site a {
  position: relative;
  display: inline-block;
  width: 140px;
  font-weight: 700;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #111;
  background: #ffeb03;
  padding: 6px 6px 5px;
  border-radius: 17.5px;
  transition: all 0.2s;
}
.top-supported-item__site a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  background: url(../img/external-link.png) center/cover no-repeat;
}
.top-supported-item__site a:hover {
  color: #e80911;
}
.top-supported-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 1000;
}
.top-supported-modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.top-supported-modal.active {
  opacity: 1;
  visibility: visible;
}
.top-supported-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 100%;
}
.top-supported-modal__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: relative;
  margin-top: 10px;
}
.top-supported-modal__header img {
  border-radius: 5px;
  margin-top: 20px;
}
.top-supported-modal__header-ttl {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #fff;
  padding-top: 5px;
}
.top-supported-modal__close {
  position: absolute;
  top: 0;
  right: 12px;
  font-weight: 100;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}
.top-supported-modal__txt {
  margin-top: 8px;
}
.top-supported-modal__ttl {
  text-align: center;
}
.top-supported-modal__img {
  text-align: center;
  margin-top: 24px;
}
.top-supported-modal__img-ttl {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  color: #fff;
  background: url(../img/supported-modal-ribbon.png) center/100% 100% no-repeat;
  margin: -10px auto 0;
  padding: 5px 0 6px 8px;
  max-width: 322px;
}
.top-supported-modal__detail {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6875;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #fff;
  text-align: left;
  padding: 19px 37px;
}
.top-supported .pos-target {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.top-supported-coming {
  position: relative;
  text-align: center;
}
.top-supported-coming img {
  width: 100%;
}

.top-coming-soon {
  position: relative;
  color: #fff;
  background: #111;
  padding-bottom: 29px;
}
.top-coming-soon::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 104px;
  background: url(../img/listener-present-bg.png) center/cover no-repeat;
}
.top-coming-soon__ttl {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  padding: 11px 10px 13px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #111;
  width: 100%;
  text-align: center;
}
.top-coming-soon__ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%) rotate(90deg);
  width: 10px;
  height: 16px;
  background: url(../img/right-chevron.png) center/cover no-repeat;
  transition: transform 0.3s ease;
}
.top-coming-soon__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 18px;
}
.top-coming-soon__item {
  position: relative;
  padding-left: 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
.top-coming-soon__item span {
  display: inline-block;
}
.top-coming-soon__item::before {
  position: absolute;
  content: "";
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #ffeb03;
  border-radius: 50%;
}
.top-coming-soon__item + .top-coming-soon__item {
  margin-top: 13px;
}
.top-coming-soon .checkbox-accordion {
  overflow: hidden;
  margin-top: -38px;
  position: relative;
  z-index: 1;
}
.top-coming-soon .checkbox-accordion input {
  display: none; /* チェックボックスを非表示 */
}
.top-coming-soon .checkbox-accordion input:checked ~ .top-coming-soon__ttl::after {
  transform: translateY(-50%) rotate(-90deg);
}
.top-coming-soon .checkbox-accordion input:checked ~ .top-coming-soon__list {
  max-height: 500px; /* 十分な高さを指定 */
}

.top-gift {
  position: relative;
  background: #111;
}
.top-gift.top-gift--new::before {
  aspect-ratio: 375/615;
  background-image: url(../img/gift-bg02.png);
}
.top-gift::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 100%;
  aspect-ratio: 375/479;
  background: url(../img/gift-bg.png) top center/cover no-repeat;
}
.top-gift img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-gift__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5333333333vw;
}
.top-gift__line img {
  position: absolute;
}
.top-gift__ttl {
  position: relative;
  z-index: 1;
  padding-top: 40px;
}
.top-gift__txt {
  margin-top: -89px;
  padding-bottom: 43px;
}
.top-gift-list {
  margin-top: 16px;
  padding-bottom: 104px;
}
.top-gift-list::after {
  position: absolute;
  content: "";
  bottom: -60px;
  left: 0;
  width: 100%;
  aspect-ratio: 375/311;
  background: url(../img/rule-bg.png) center/cover no-repeat;
  z-index: 1;
}
.top-gift-list .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 5.223880597%;
  z-index: 2;
}
.top-gift-item {
  width: 29.8507462687%;
  color: #fff;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.top-gift-item__img {
  position: relative;
}
.top-gift-item__img img {
  border-radius: 50%;
}
.top-gift-item__name {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1;
  z-index: 1;
  paint-order: stroke fill;
  -webkit-text-stroke: 4px #111;
  word-break: break-word;
  text-align: center;
  margin: -11px -9px 0;
}
.top-gift-item__txt {
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  text-align: center;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  padding-top: 6px;
  margin: 0 -10px;
}
.top-gift-item:nth-child(2) .top-gift-item__name img {
  width: 91.5254237288%;
}
.top-gift-item:nth-child(3) .top-gift-item__name img {
  width: 68.6440677966%;
}
.top-gift-item:nth-child(4) .top-gift-item__name img {
  width: 41.5254237288%;
}
.top-gift-item:nth-child(5) .top-gift-item__name img {
  width: 65.2543220339%;
}
.top-gift-item:nth-child(6) .top-gift-item__name img {
  width: 29.6610169492%;
}
.top-gift-item:nth-child(7) .top-gift-item__name img {
  width: 77.9661016949%;
}
.top-gift-item:nth-child(8) .top-gift-item__name img {
  width: 67.7966949153%;
}
.top-gift-item:nth-child(9) .top-gift-item__name img {
  width: 74.5762711864%;
}
.top-gift-item:nth-child(9) .top-gift-item__txt {
  padding-top: 4px;
}

.top-rule {
  position: relative;
  margin-top: -35px;
  background: #111;
}
.top-rule__container {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 2px solid #e80911;
  border-radius: 10px;
  padding-bottom: 15px;
  overflow: hidden;
}
.top-rule__ttl {
  position: relative;
  background: url(../img/rule-ttl-bg.jpg) center/cover no-repeat;
  text-align: center;
  padding: 9px;
}
.top-rule-list {
  margin-top: 18px;
  padding: 0 5px 0 16px;
}
.top-rule-item {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6875;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  padding-left: 14px;
}
.top-rule-item::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #e80911;
  border-radius: 50%;
}
.top-rule-item .underline {
  background: linear-gradient(transparent 75%, #ffeb03 75%, #ffeb03 95%, transparent 95%);
}
.top-rule-item .block {
  display: inline-block;
}
.top-rule-item--narrow {
  letter-spacing: 0.06em;
}
.top-rule-item + .top-rule-item {
  margin-top: 12px;
}
.top-rule__img {
  text-align: center;
  margin-top: 7px;
}
.top-rule__note {
  text-align: center;
  margin-top: -30px;
}

.top-judge {
  position: relative;
  padding-top: 36px;
  background: #111;
}
.top-judge::before {
  position: absolute;
  content: "";
  top: 109px;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  aspect-ratio: 375/311;
  background: url(../img/rule-bg.png) center/cover no-repeat;
}
.top-judge__container {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 2px solid #1077f2;
  border-radius: 10px;
  padding-bottom: 20px;
  overflow: hidden;
}
.top-judge__ttl {
  position: relative;
  background: url(../img/judge-ttl-bg.jpg) center/cover no-repeat;
  text-align: center;
  padding: 8px 8px 9px;
}
.top-judge__subttl {
  text-align: center;
  margin-top: 19px;
}
.top-judge__img {
  text-align: center;
  margin: 13px 0 0 7px;
}
.top-judge-list {
  margin-top: 18px;
  padding: 0 15px 0 20px;
}
.top-judge-list--first {
  padding: 0 10px 0 17px;
}
.top-judge-list--listener {
  margin-top: 10px;
}
.top-judge-item {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6875;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  padding-left: 14px;
}
.top-judge-item::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #1077f2;
  border-radius: 50%;
}
.top-judge-item--narrow {
  letter-spacing: 0.06em;
}
.top-judge-item span {
  display: inline-block;
}
.top-judge-item + .top-judge-item {
  margin-top: 12px;
}

.top-flow {
  position: relative;
  padding-top: 36px;
  background: #111;
}
.top-flow::before {
  position: absolute;
  content: "";
  top: 104px;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  aspect-ratio: 375/311;
  background: url(../img/rule-bg.png) center/cover no-repeat;
}
.top-flow__container {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 2px solid #ffeb03;
  border-radius: 10px;
  padding-bottom: 3px;
  overflow: hidden;
}
.top-flow__ttl {
  position: relative;
  background: url(../img/flow-ttl-bg.jpg) center/cover no-repeat;
  text-align: center;
  padding: 8px 8px 9px;
}
.top-flow-list {
  padding: 23px 10px 31px 15px;
}
.top-flow-item {
  position: relative;
  padding-left: 48px;
  background-image: radial-gradient(circle, #e80911 2px, transparent 2px);
  background-size: 4px 9px;
  background-repeat: repeat-y;
  background-position: left 15px bottom 7px;
  counter-increment: num;
}
.top-flow-item__ttl {
  position: relative;
}
.top-flow-item__ttl::before {
  position: absolute;
  content: counter(num, decimal-leading-zero);
  top: -3px;
  left: -48px;
  width: 35px;
  height: 35px;
  background: #e80911;
  border-radius: 50%;
  font: 600 16px "Outfit", sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-flow-item__txt {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9285714286;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  padding: 10px 3px 0 3px;
}
.top-flow-item:last-child .top-flow-item__ttl::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 22px;
  top: -17px;
  left: -42px;
  background: url(../img/crown.png) center/cover no-repeat;
}
.top-flow-item + .top-flow-item {
  padding-top: 35px;
}

.top-caution {
  position: relative;
  background: #111;
  padding: 43px 0 47px;
}
.top-caution::before {
  position: absolute;
  content: "";
  top: -61px;
  left: 0;
  transform: scale(1, -1);
  width: 100%;
  aspect-ratio: 375/311;
  background: url(../img/rule-bg.png) center/cover no-repeat;
}
.top-caution__ttl {
  position: relative;
  text-align: center;
}
.top-caution-list {
  margin-top: 23px;
}
.top-caution-item {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  color: #fff;
  padding-left: 14px;
}
.top-caution-item::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #ffeb03;
  border-radius: 50%;
}
.top-caution-item + .top-caution-item {
  margin-top: 18px;
}

.top-powered {
  position: relative;
  background: #111;
  display: inline-block;
  width: 100%;
  padding-bottom: 34px;
}
.top-powered::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/powered-bg.png) center/cover no-repeat;
}
.top-powered__ttl {
  position: relative;
  text-align: center;
  padding-top: 43px;
}
.top-powered__ttl::before {
  position: absolute;
  content: "";
  top: -19px;
  left: 5px;
  width: 299px;
  height: 99px;
  background: url(../img/powered-ttl-bg.png) center/cover no-repeat;
}
.top-powered-slider {
  margin-top: 8px;
}
.top-powered-slider__wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.top-powered-slider__list {
  display: flex;
}
@keyframes infinity-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.top-powered-slider__item {
  width: 200px;
  margin: 0 7.5px;
  position: relative;
}
.top-powered-slider__item a:hover {
  transition: opacity 0.2s ease;
}
.top-powered-slider__item a:hover:hover {
  opacity: 0.7;
}
.top-powered-slider__item img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.top-powered__copyright {
  position: relative;
  text-align: center;
  margin-top: 35px;
}
@media screen and (min-width: 751px){
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 960px){
  .pc-none {
    display: none !important;
  }
  .c-fadein.sp-only,
  .c-slidein.sp-only,
  .c-reveal.sp-only {
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 959px) and (min-width: 751px){
  .tb-none {
    display: none !important;
  }
}
@media screen and (max-width: 750px){
  .sp-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .c-slidein {
    transition-duration: 0.4s;
  }
  .c-reveal {
    transition-duration: 0.4s;
  }
  .c-fadein.pc-only,
  .c-slidein.pc-only,
  .c-reveal.pc-only {
    opacity: 1;
    transform: none;
  }
  body {
    font-size: 15px;
  }
  .top::before {
    content: none;
  }
  .top-wrap {
    max-width: 100%;
    overflow: hidden;
  }
  .top-wrap::before, .top-wrap::after {
    content: none;
  }
  .top-gift__ttl {
    transform: translateX(13px);
  }
  .top-gift__ttl img {
    width: 91.4666666667%;
  }
  .top-gift__txt {
    transform: translateX(46px);
  }
  .top-gift__txt img {
    width: 87.7333333333%;
  }
  .top-gift-list::after {
    bottom: 0;
  }
  .top-gift-item__txt {
    font-size: 12px;
  }
}
