@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400..800&family=Outfit:wght@400..900&family=Noto+Sans+JP:wght@400..900&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

:root {
  --text: #030303;
  --background: #f3f5f8;
  --primary: #1f3bb3;
  --secondary: #f95f53;
  --effect: #17c9e9;
  --up: #4da761;
  --down: #aaa;
  --border: #dfdfdf;
  --box: #f9f9f9 ;
}

html, input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.material-symbols-sharp {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

html {
  width: 100%;
  background-color: var(--background);
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: var(--text);
}
@media screen and (min-width: 769px) {
  html {
    font-size: clamp(1px, 0.78125vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  -webkit-overflow-scrolling: touch;
  overflow-x: clip;
  font-size: 1.4rem;
}
body.is-fixed {
  height: 100vh;
  overflow: hidden;
}

#wrapper.is-resize * {
  transition: none !important;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
}

svg {
  fill: currentColor;
}

@media (any-hover: hover) {
  a,
  button {
    transition: 0.4s all;
  }
  a:hover,
  button:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

input,
textarea {
  font-weight: 500;
}

button {
  cursor: pointer;
  color: var(--text);
}

.l-header {
  position: relative;
}

.l-header__inner {
  display: flex;
}
@media screen and (min-width: 769px) {
  .l-header__inner {
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem 3.5rem;
    border-bottom: 0.3rem solid var(--primary);
  }
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 0 0;
  }
}

.l-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .l-header__logo {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    flex-direction: column;
    gap: 1rem;
  }
}
.l-header__logo .main {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .l-header__logo .main {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo .main {
    font-size: 3rem;
  }
}
.l-header__logo .main .trend {
  color: var(--primary);
}
.l-header__logo .sub {
  position: relative;
  padding: 0.2rem 1.6rem 0.2rem 1.2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .l-header__logo .sub {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo .sub {
    font-size: 1.1rem;
  }
}
.l-header__logo .sub::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  border-right: 0.6rem solid var(--effect);
  background-color: var(--primary);
  transform: skewX(-20deg);
  z-index: -1;
}

@media screen and (min-width: 769px) {
  .l-header__nav {
    margin-left: auto;
  }
}
.l-header__nav__btn {
  display: none;
}
.l-header__nav__menu {
  display: flex;
}
@media screen and (min-width: 769px) {
  .l-header__nav__menu {
    align-items: center;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__menu {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .l-header__nav__ranking {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__ranking {
    display: none;
  }
}
.l-header__nav__list {
  display: flex;
}
@media screen and (min-width: 769px) {
  .l-header__nav__list {
    align-items: center;
    gap: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list {
    padding: 1px 0 3px;
    gap: 1px;
    background-color: var(--primary);
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item {
    flex: 1;
  }
}
.l-header__nav__list__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .l-header__nav__list__item a {
    gap: 1.2rem;
    height: 4rem;
    padding-inline: 2.4rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border);
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item a {
    gap: 0.4em;
    height: 4rem;
  }
}
.l-header__nav__list__item a .arrow {
  position: relative;
  display: block;
  aspect-ratio: 0.55/1;
}
@media screen and (min-width: 769px) {
  .l-header__nav__list__item a .arrow {
    width: 0.55rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item a .arrow {
    width: 0.45rem;
  }
}
.l-header__nav__list__item a .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: var(--text);
}
@media screen and (min-width: 769px) {
  .l-header__nav__list__item a .txt {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav__list__item a .txt {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
  }
}

.l-main {
  position: relative;
  display: flex;
}
@media screen and (min-width: 769px) {
  .l-main {
    flex-direction: row-reverse;
    min-height: calc(100dvh - 9.6rem);
    padding-block: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .l-main {
    flex-direction: column;
    gap: 4rem;
    padding-block: 2.4rem;
  }
}

.l-main__txt {
  line-height: 2;
  color: var(--primary);
}
@media screen and (min-width: 769px) {
  .l-main__txt {
    margin-bottom: 3.2rem;
    font-size: 1.6rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .l-main__txt {
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
  }
}
.l-main__txt .border {
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed var(--primary);
}

.l-main__side {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.04);
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .l-main__side {
    width: 28rem;
    padding: 3.2rem 1.6rem;
    border-radius: 0 0.8rem 0.8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .l-main__side {
    margin-inline: 1.6rem;
    padding: 3.2rem 2.4rem;
    border-radius: 0.8rem;
  }
}

.l-main__contents {
  flex: 1;
  opacity: 0;
  translate: 0 2rem;
  transition: 0.4s all ease-in-out;
}
@media screen and (min-width: 769px) {
  .l-main__contents {
    padding-inline: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .l-main__contents {
    padding-inline: 1.6rem;
  }
}

.is-loaded .l-main__contents {
  translate: 0 0;
  opacity: 1;
}

.l-footer {
  padding-block: 4rem;
}

.l-footer__copyright {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.c-breadcrumbs {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 769px) {
  .c-breadcrumbs {
    margin-bottom: -4rem;
    padding: 2rem 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-breadcrumbs {
    margin-bottom: -2.4rem;
    padding: 1.6rem 2rem;
  }
}

.c-breadcrumbs__list {
  display: flex;
  gap: 1.2rem;
}

.c-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.c-breadcrumbs__item + .c-breadcrumbs__item::before {
  content: "";
  display: block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-top: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
  rotate: 45deg;
}
.c-breadcrumbs__item a {
  display: block;
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
}

.c-rapidRise {
  position: sticky;
  inset: 0 0 auto;
  background-color: #fff;
  border-top: 0.3rem solid var(--primary);
  border-bottom: 0.1rem solid var(--border);
  z-index: 50;
}
@media screen and (min-width: 769px) {
  .c-rapidRise {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-rapidRise {
    display: none;
  }
}
.c-rapidRise__head {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  margin-left: -1rem;
  padding: 0 2.4rem 0 3.2rem;
  white-space: nowrap;
  border-right: 0.1rem solid #f9f2c1;
  background-color: #fffded;
  transform: skewX(-20deg);
  z-index: 10;
}
.c-rapidRise__head .txt {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 2;
  transform: skewX(20deg);
}
.c-rapidRise__inner {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.c-rapidRise__inner:hover .c-rapidRise__list {
  animation-play-state: paused;
}
.c-rapidRise__list {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 5rem;
  padding-left: 100dvw;
  white-space: nowrap;
  animation: 50s rapidRiseList 0s linear infinite;
}
@keyframes rapidRiseList {
  100% {
    translate: -100% 0;
  }
}
.c-rapidRise__list li {
  position: relative;
  padding-inline: 3.2rem;
}
.c-rapidRise__list li::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 0.2rem;
  height: 60%;
  margin-block: auto;
  background-color: var(--border);
  transform: skewX(-20deg);
}
.c-rapidRise__list li a {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.c-rapidRise__list li a .arrow {
  position: relative;
  display: block;
  width: 0.55rem;
  height: 1rem;
}
.c-rapidRise__list li a .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: var(--text);
}
.c-rapidRise__list li a .title {
  font-size: 1.5rem;
  font-weight: 700;
}
.c-rapidRise__list li a .diff {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-variant-numeric: tabular-nums;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--up);
}
.c-rapidRise__list li a .diff::before {
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.6rem;
  background-color: var(--up);
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
  clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
}

.c-ranking {
  border-radius: 0.8rem;
  background-color: white;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 769px) {
  .c-ranking {
    padding: 3.2rem 3.2rem 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking {
    padding: 2.4rem 1.6rem 3.2rem;
  }
}
.c-ranking__header {
  display: flex;
}
@media screen and (min-width: 769px) {
  .c-ranking__header {
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
    padding-block: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__header {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.c-ranking__header .head {
  position: relative;
  display: flex;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .c-ranking__header .head {
    align-items: center;
    gap: 3.2rem;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__header .head {
    align-items: flex-start;
    gap: 2rem;
    font-size: 2.6rem;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) {
  .c-ranking__header .head .small {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__header .head .small {
    font-size: 2rem;
  }
}
.c-ranking__header .head .x-small {
  display: inline-block;
  margin-inline: 0.2rem;
}
@media screen and (min-width: 769px) {
  .c-ranking__header .head .x-small {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__header .head .x-small {
    font-size: 1.6rem;
  }
}
.c-ranking__header .head .icn {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  aspect-ratio: 2.1/2.4;
  transform-origin: left bottom;
  transform: skewX(-20deg);
}
@media screen and (min-width: 769px) {
  .c-ranking__header .head .icn {
    width: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__header .head .icn {
    width: 1.6rem;
    translate: 0 45%;
  }
}
.c-ranking__header .head .icn::before {
  content: "";
  display: block;
  width: 33.3333333333%;
  aspect-ratio: 1/2;
  background-color: var(--primary);
}
.c-ranking__header .head .icn::after {
  content: "";
  display: block;
  width: 47.619047619%;
  aspect-ratio: 1/2.4;
  background-color: var(--effect);
}
.c-ranking__header .date {
  position: relative;
  display: flex;
  border-radius: 0.8rem;
  border: 0.1rem solid var(--border);
  background-color: #fff;
  overflow: hidden;
  z-index: 2;
}
.c-ranking__header .date__txt {
  display: flex;
  align-items: center;
  height: 4rem;
  padding: 0 1.6rem;
  background-color: #fff;
  font-variant-numeric: tabular-nums;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}
.c-ranking__header .date__icn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  border-right: 0.1rem solid var(--border);
  background-color: #fff;
  color: #ccc;
}
.c-ranking__header .date__icn svg {
  width: 2rem;
}
.c-ranking__header .date__input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}
.c-ranking__header .date__input input {
  outline: 0;
  opacity: 0;
}
.c-ranking__summary {
  display: none;
  margin-bottom: 3.2rem;
  padding: 2.4rem;
  background-color: var(--box);
  border-radius: 0.8rem;
}
@media screen and (min-width: 769px) {
  .c-ranking__summary {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__summary {
    padding: 1.6rem;
    font-size: 1.4rem;
  }
}
.c-ranking__summary .title {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 769px) {
  .c-ranking__summary .title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__summary .title {
    font-size: 1.6rem;
  }
}
.c-ranking__summary .text {
  line-height: 1.8;
  color: #334155;
}
.c-ranking__list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .c-ranking__list {
    gap: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__list {
    gap: 1.6rem;
  }
}
@media screen and (min-width: 769px) {
  .c-ranking__list li.top10 a {
    padding-block: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__list li.top10 a {
    padding-block: 2.4rem;
  }
}
.c-ranking__list li.top10 .rank {
  width: 4.8rem;
  margin-right: 2rem;
  margin-left: 0;
  font-size: 2rem;
}
.c-ranking__list li.top10 .title {
  font-size: 2rem;
}
.c-ranking__list li.top1 .rank, .c-ranking__list li.top2 .rank, .c-ranking__list li.top3 .rank {
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
  font-size: 2.8rem;
  color: #fff;
  overflow: hidden;
}
.c-ranking__list li.top1 .rank::before, .c-ranking__list li.top2 .rank::before, .c-ranking__list li.top3 .rank::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%);
  rotate: -60deg;
}
.c-ranking__list li.top1 .title, .c-ranking__list li.top2 .title, .c-ranking__list li.top3 .title {
  font-size: 2.4rem;
}
.c-ranking__list li.top1 .views, .c-ranking__list li.top2 .views, .c-ranking__list li.top3 .views {
  text-shadow: 0.2rem 0.2rem 0 white;
  font-size: 3.2rem;
}
.c-ranking__list li.top1 a {
  border: 0.2rem solid rgba(249, 208, 51, 0.6);
  padding-block: 4rem;
  background: linear-gradient(0deg, #f7f3e7, #fff);
}
.c-ranking__list li.top1 .rank {
  border-color: #f9d033;
  background-color: #f9d033;
}
.c-ranking__list li.top1 .title {
  font-size: 2.8rem;
}
.c-ranking__list li.top2 a {
  border: 0.2rem solid rgba(156, 156, 156, 0.3);
  background: linear-gradient(0deg, rgba(233, 238, 245, 0.6), #fff);
}
.c-ranking__list li.top2 .rank {
  border-color: #9c9c9c;
  background-color: #9c9c9c;
}
.c-ranking__list li.top3 a {
  border: 0.2rem solid rgba(181, 94, 29, 0.2);
  background: linear-gradient(0deg, rgba(181, 94, 29, 0.05), #fff);
}
.c-ranking__list li.top3 .rank {
  border-color: #b55e1d;
  background-color: #b55e1d;
}
.c-ranking__list li a {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(223, 223, 223, 0.75);
  border-radius: 0.8rem;
  background: linear-gradient(0deg, rgba(238, 238, 238, 0.5), #fff);
}
@media screen and (min-width: 769px) {
  .c-ranking__list li a {
    padding-inline: 2.4rem;
    padding-block: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__list li a {
    gap: 2rem;
    padding-inline: 1.6rem;
    padding-block: 1.2rem;
  }
}
.c-ranking__list li a .column {
  flex: 1;
  display: flex;
}
@media screen and (min-width: 769px) {
  .c-ranking__list li a .column {
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__list li a .column {
    flex-direction: column;
  }
}
.c-ranking__list li a .top {
  display: flex;
  align-items: center;
}
.c-ranking__list li a .bottom {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-ranking__list li a .bottom {
    justify-content: flex-end;
  }
}
.c-ranking__list li a:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.06);
  opacity: 1;
}
.c-ranking__list li a .rank {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.2rem solid var(--border);
  background-color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .c-ranking__list li a .rank {
    width: 4rem;
    margin-right: 2.4rem;
    margin-left: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__list li a .rank {
    width: 3.2rem;
    margin-right: 1.2rem;
    font-size: 1.4rem;
  }
}
.c-ranking__list li a .title {
  flex: 1;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .c-ranking__list li a .title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__list li a .title {
    font-size: 1.6rem;
  }
}
.c-ranking__list li a .change {
  margin-left: 1.6rem;
  font-family: "Outfit", sans-serif;
}
.c-ranking__list li a .change.is-new {
  padding-inline: 0.6rem;
  border-radius: 0.4rem;
  border: 0.1rem solid rgba(249, 95, 83, 0.3);
  background-color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(249, 95, 83, 0.8);
}
.c-ranking__list li a .change.is-new::before {
  content: "NEW";
}
.c-ranking__list li a .change.is-up, .c-ranking__list li a .change.is-down {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: right;
}
.c-ranking__list li a .change.is-up::before, .c-ranking__list li a .change.is-down::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.4rem;
}
.c-ranking__list li a .change.is-up {
  color: var(--up);
}
.c-ranking__list li a .change.is-up::before {
  background-color: var(--up);
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
  clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
}
.c-ranking__list li a .change.is-down {
  color: var(--down);
}
.c-ranking__list li a .change.is-down::before {
  background-color: var(--down);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.c-ranking__list li a .diff {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  font-variant-numeric: tabular-nums;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .c-ranking__list li a .diff {
    min-width: 6rem;
    margin-left: auto;
  }
}
.c-ranking__list li a .diff::before {
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.6rem;
}
.c-ranking__list li a .diff.is-up {
  color: var(--up);
}
.c-ranking__list li a .diff.is-up::before {
  background-color: var(--up);
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
  clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
}
.c-ranking__list li a .diff.is-down {
  color: var(--down);
}
.c-ranking__list li a .diff.is-down::before {
  background-color: var(--down);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.c-ranking__list li a .views {
  font-variant-numeric: tabular-nums;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .c-ranking__list li a .views {
    min-width: 13rem;
    margin-left: 1.6rem;
    padding-right: 3.2rem;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__list li a .views {
    min-width: 13rem;
    margin-left: 1.6rem;
    font-size: 2.4rem;
  }
}
.c-ranking__list li a .views::after {
  content: "views";
  margin-left: 0.8rem;
  color: #999;
}
@media screen and (min-width: 769px) {
  .c-ranking__list li a .views::after {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__list li a .views::after {
    font-size: 1.2rem;
  }
}
.c-ranking__list li a .arrow {
  position: relative;
  display: block;
  width: 0.6rem;
  height: 1.1rem;
}
.c-ranking__list li a .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: var(--text);
}
.c-ranking__footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .c-ranking__footer {
    gap: 2.4rem;
    padding: 6rem 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-ranking__footer {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.6rem;
    padding: 4rem 0 2rem;
  }
}
.c-ranking__footer .btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: 4rem;
  padding-inline: 1.6rem;
  border-radius: 0.8rem;
  border: 0.1rem solid var(--border);
}
@media screen and (max-width: 768px) {
  .c-ranking__footer .btn {
    width: 14.7525rem;
    justify-content: center;
  }
}
.c-ranking__footer .btn:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.06);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-ranking__footer .btn.prev {
    order: 2;
  }
}
.c-ranking__footer .btn.prev::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 1.1rem;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: var(--text);
  scale: -1;
}
@media screen and (max-width: 768px) {
  .c-ranking__footer .btn.next {
    order: 3;
  }
}
.c-ranking__footer .btn.next::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 1.1rem;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: var(--text);
}
.c-ranking__footer .btn:disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
.c-ranking__footer .btn__txt {
  font-size: 1.4rem;
  font-weight: 400;
}
.c-ranking__footer .date {
  position: relative;
  display: flex;
  border-radius: 0.8rem;
  border: 0.1rem solid var(--border);
  background-color: #fff;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-ranking__footer .date {
    order: 1;
    width: 100%;
  }
}
.c-ranking__footer .date__txt {
  display: flex;
  align-items: center;
  height: 4rem;
  padding: 0 1.6rem;
  background-color: #fff;
  font-variant-numeric: tabular-nums;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}
.c-ranking__footer .date__icn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  border-right: 0.1rem solid var(--border);
  background-color: #fff;
  color: #ccc;
}
.c-ranking__footer .date__icn svg {
  width: 2rem;
}
.c-ranking__footer .date__input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 1;
}
.c-ranking__footer .date__input input {
  outline: 0;
  opacity: 0;
}

.c-article {
  background-color: #ffffff;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.04), 0 0.4rem 1.2rem rgba(0, 0, 0, 0.02);
  font-size: 1.6rem;
  border: 1px solid rgba(var(--border), 0.5);
}
@media screen and (min-width: 769px) {
  .c-article {
    padding: 6.4rem;
    border-radius: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article {
    padding: 2.4rem;
    border-radius: 1.2rem;
  }
}

.c-article__related__head, .c-article__news__head, .c-article__record__head, .c-article__recent__head, .c-article__wiki__head {
  font-weight: 800;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 769px) {
  .c-article__related__head, .c-article__news__head, .c-article__record__head, .c-article__recent__head, .c-article__wiki__head {
    margin-bottom: 3.2rem;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__related__head, .c-article__news__head, .c-article__record__head, .c-article__recent__head, .c-article__wiki__head {
    margin-bottom: 2.4rem;
    font-size: 1.8rem;
  }
}
.c-article__related__head::before, .c-article__news__head::before, .c-article__record__head::before, .c-article__recent__head::before, .c-article__wiki__head::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 2.4rem;
  background-color: var(--primary);
  border-radius: 0.2rem;
}

@media screen and (min-width: 769px) {
  .c-article__header {
    margin-bottom: 6.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__header {
    margin-bottom: 4rem;
  }
}
.c-article__header .head {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #0f172a;
  border-bottom: 2px solid rgba(var(--border), 0.4);
}
@media screen and (min-width: 769px) {
  .c-article__header .head {
    font-size: 3.6rem;
    padding-bottom: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__header .head {
    font-size: 2.4rem;
    padding-bottom: 1.6rem;
  }
}

@media screen and (min-width: 769px) {
  .c-article__wiki {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__wiki {
    margin-bottom: 4.8rem;
  }
}
.c-article__wiki__inner {
  display: flex;
}
@media screen and (min-width: 769px) {
  .c-article__wiki__inner {
    gap: 4.8rem;
    align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .c-article__wiki__inner {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.c-article__wiki__photo {
  flex-shrink: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(var(--border), 0.3);
}
@media screen and (min-width: 769px) {
  .c-article__wiki__photo {
    width: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__wiki__photo {
    width: 100%;
  }
}
.c-article__wiki__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.c-article__wiki__txt {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.c-article__wiki__txt .summary {
  line-height: 1.8;
  color: #334155;
}
@media screen and (min-width: 769px) {
  .c-article__wiki__txt .summary {
    margin-bottom: 3.2rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__wiki__txt .summary {
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
  }
}
.c-article__wiki__txt .categories {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .c-article__wiki__txt .categories {
    gap: 1.2rem;
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__wiki__txt .categories {
    gap: 0.8rem;
    margin-bottom: 2.4rem;
  }
}
.c-article__wiki__txt .categories li {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--background);
  background-color: var(--box);
  border-radius: 100vmax;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .c-article__wiki__txt .categories li {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__wiki__txt .categories li {
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
  }
}
.c-article__wiki__txt .wiki-link {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .c-article__wiki__txt .wiki-link {
    margin-top: auto;
  }
}
.c-article__wiki__txt .wiki-link a {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.c-article__wiki__txt .wiki-link .arrow {
  position: relative;
  display: block;
  aspect-ratio: 0.55/1;
  width: 0.6rem;
}
.c-article__wiki__txt .wiki-link .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: var(--primary);
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 769px) {
  .c-article__meta {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__meta {
    margin-bottom: 4.8rem;
  }
}
.c-article__meta__period {
  display: flex;
}
@media screen and (min-width: 769px) {
  .c-article__meta__period {
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__meta__period {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2.4rem;
  }
}
.c-article__meta__period .label {
  display: inline-flex;
  align-items: center;
  border-radius: 0.6rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-article__meta__period .txt {
  font-weight: 500;
  color: #475569;
}
@media screen and (min-width: 769px) {
  .c-article__meta__period .txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__meta__period .txt {
    font-size: 1.4rem;
  }
}
.c-article__meta__summary {
  display: grid;
}
@media screen and (min-width: 769px) {
  .c-article__meta__summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__meta__summary {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.c-article__meta__summary .card {
  border-radius: 1.6rem;
  background-color: var(--box);
  border: 1px solid var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .c-article__meta__summary .card {
    padding: 3.2rem 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__meta__summary .card {
    padding: 2.4rem;
  }
}
.c-article__meta__summary .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-color: rgba(var(--primary), 0.2);
}
.c-article__meta__summary .card .label {
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.c-article__meta__summary .card .value {
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-feature-settings: "tnum";
}
@media screen and (min-width: 769px) {
  .c-article__meta__summary .card .value {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__meta__summary .card .value {
    font-size: 3.2rem;
  }
}
.c-article__meta__none {
  background-color: var(--box);
  border-radius: 1.2rem;
  color: #64748b;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .c-article__meta__none {
    padding: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__meta__none {
    padding: 2.4rem;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 769px) {
  .c-article__recent {
    margin-bottom: 6.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__recent {
    margin-bottom: 4.8rem;
  }
}
.c-article__recent__inner .period {
  margin-bottom: 2.4rem;
  color: #64748b;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .c-article__recent__inner .period {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__recent__inner .period {
    font-size: 1.3rem;
  }
}
.c-article__recent__inner .list {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-article__recent__inner .list {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.c-article__recent__inner .list th,
.c-article__recent__inner .list td {
  border-bottom: 1px dotted var(--border);
  text-align: left;
}
@media screen and (min-width: 769px) {
  .c-article__recent__inner .list th,
  .c-article__recent__inner .list td {
    padding: 1.2rem 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__recent__inner .list th,
  .c-article__recent__inner .list td {
    padding: 1.2rem 1.6rem;
  }
}
.c-article__recent__inner .list th.rank,
.c-article__recent__inner .list td.rank {
  text-align: center;
}
.c-article__recent__inner .list th.views,
.c-article__recent__inner .list td.views {
  text-align: right;
}
.c-article__recent__inner .list th {
  background-color: var(--box);
  color: #475569;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .c-article__recent__inner .list th {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__recent__inner .list th {
    font-size: 1.2rem;
  }
}
.c-article__recent__inner .list td {
  color: #334155;
  font-weight: 500;
  font-feature-settings: "tnum";
}
@media screen and (min-width: 769px) {
  .c-article__recent__inner .list td {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__recent__inner .list td {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .c-article__recent__inner .list td.date {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__recent__inner .list td.date {
    font-size: 1.2rem;
  }
}

.c-article__record__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.c-article__record__list li {
  display: flex;
  background-color: var(--box);
  border-radius: 0.8rem;
  border: 1px solid var(--background);
  transition: all 0.2s ease;
}
@media screen and (min-width: 769px) {
  .c-article__record__list li {
    align-items: center;
    gap: 1.6rem;
    padding: 1.6rem 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__record__list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.6rem;
  }
}

@media screen and (min-width: 769px) {
  .c-article__record {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__record {
    margin-bottom: 4.8rem;
  }
}
.c-article__record__list li .label {
  font-weight: 700;
  color: var(--primary);
}
@media screen and (min-width: 769px) {
  .c-article__record__list li .label {
    font-size: 1.4rem;
    min-width: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__record__list li .label {
    font-size: 1.3rem;
  }
}
.c-article__record__list li .txt {
  font-weight: 600;
  color: #334155;
}
@media screen and (max-width: 768px) {
  .c-article__record__list li .txt {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 769px) {
  .c-article__news {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__news {
    margin-bottom: 4.8rem;
  }
}
.c-article__news__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-article__news__list li {
  display: flex;
  border: 1px dotted var(--border);
  border-radius: 0.8rem;
}
@media screen and (min-width: 769px) {
  .c-article__news__list li {
    align-items: center;
    gap: 1.6rem;
    padding: 1.6rem 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__news__list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.6rem;
  }
}
.c-article__news__list .date {
  white-space: nowrap;
  color: #64748b;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .c-article__news__list .date {
    font-size: 1.3rem;
    min-width: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__news__list .date {
    font-size: 1.2rem;
  }
}
.c-article__news__list .title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: #1e293b;
  font-weight: 600;
  text-decoration: none;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .c-article__news__list .title {
    font-size: 1.4rem;
  }
}
.c-article__news__list .title:hover span:first-child {
  color: var(--primary);
}
.c-article__news__list .title span:first-child {
  transition: color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .c-article__news__list .title span:first-child {
    display: block;
    width: 100%;
  }
}
.c-article__news__list .source {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background-color: #e2e8f0;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  color: #475569;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.c-article__related {
  margin-bottom: 4rem;
}
.c-article__related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.c-article__related__list a {
  display: flex;
  align-items: center;
  border-radius: 100vmax;
  border: 1px dotted var(--border);
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 1.4rem;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .c-article__related__list a {
    padding: 0.8rem 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-article__related__list a {
    padding: 0.6rem 1.6rem;
  }
}

.c-sidebarRanking__head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .c-sidebarRanking__head {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .c-sidebarRanking__head {
    font-size: 1.8rem;
  }
}
.c-sidebarRanking__head::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: 0.2rem;
}
.c-sidebarRanking__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(249, 208, 51, 0.6);
}
@media screen and (min-width: 769px) {
  .c-sidebarRanking__list {
    margin-inline: -1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-sidebarRanking__list {
    margin-inline: -2.4rem;
  }
}
.c-sidebarRanking__list li {
  border-bottom: 1px solid #fff;
}
.c-sidebarRanking__list li a {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(223, 223, 223, 0.75);
  background: linear-gradient(0deg, rgba(238, 238, 238, 0.5), rgba(238, 238, 238, 0.3));
  padding: 1.2rem 1.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-sidebarRanking__list li a:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.06);
}
.c-sidebarRanking__list li a .top {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}
.c-sidebarRanking__list li a .top .rank {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.2rem solid var(--border);
  background-color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 1.2rem;
}
.c-sidebarRanking__list li a .top .title {
  flex: 1;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  word-break: break-all;
}
.c-sidebarRanking__list li a .bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.c-sidebarRanking__list li a .bottom .views {
  font-variant-numeric: tabular-nums;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
}
.c-sidebarRanking__list li a .bottom .views::after {
  content: "views";
  margin-left: 0.4rem;
  color: #999;
  font-size: 1.1rem;
}
.c-sidebarRanking__list li.top1 a {
  border-bottom: 1px solid rgba(249, 208, 51, 0.6);
  background: linear-gradient(0deg, rgba(247, 243, 231, 0.5), rgba(247, 243, 231, 0.3));
}
.c-sidebarRanking__list li.top1 a .rank {
  border-color: #f9d033;
  background-color: #f9d033;
  color: #fff;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
}
.c-sidebarRanking__list li.top2 a {
  border-bottom: 1px solid rgba(156, 156, 156, 0.3);
  background: linear-gradient(0deg, rgba(233, 238, 245, 0.5), rgba(233, 238, 245, 0.3));
}
.c-sidebarRanking__list li.top2 a .rank {
  border-color: #9c9c9c;
  background-color: #9c9c9c;
  color: #fff;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
}
.c-sidebarRanking__list li.top3 a {
  border-bottom: 1px solid rgba(181, 94, 29, 0.2);
  background: linear-gradient(0deg, rgba(181, 94, 29, 0.05), rgba(181, 94, 29, 0.03));
}
.c-sidebarRanking__list li.top3 a .rank {
  border-color: #b55e1d;
  background-color: #b55e1d;
  color: #fff;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
}
.c-sidebarRanking__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.c-sidebarRanking__btn .arrow {
  position: relative;
  display: block;
  aspect-ratio: 0.55/1;
}
@media screen and (min-width: 769px) {
  .c-sidebarRanking__btn .arrow {
    width: 0.55rem;
  }
}
@media screen and (max-width: 768px) {
  .c-sidebarRanking__btn .arrow {
    width: 0.45rem;
  }
}
.c-sidebarRanking__btn .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: var(--text);
}
.c-sidebarRanking__btn .txt {
  font-size: 1.2rem;
  font-weight: 400;
}

.c-intro {
  margin-bottom: 4rem;
}
@media screen and (min-width: 769px) {
  .c-intro__inner {
    padding-inline: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-intro__inner {
    padding-inline: 1.6rem;
  }
}

.c-intro__head {
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}
@media screen and (min-width: 769px) {
  .c-intro__head {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-intro__head {
    margin-bottom: 1.2rem;
    font-size: 2.2rem;
    line-height: 1.825;
  }
}

.c-intro__txt {
  line-height: 2.4;
  color: #444;
}
@media screen and (min-width: 769px) {
  .c-intro__txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-intro__txt {
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=style.css.map */
