@charset "UTF-8";

.c-banner--x-wide {
  padding-top: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.c-grid {
  display: grid;
  grid-template: "pr sub" 1fr "main sub" auto/1fr 300px;
  gap: 18px 32px;
}

.c-grid__main {
  grid-area: main;
  border-bottom: 1px solid var(--COLOR_GRAY_1);
}

.c-grid__sub {
  grid-area: sub;
}

.c-grid__pr {
  grid-area: pr;
  margin-bottom: 20px;
}

.c-article {
  position: relative;
}

.c-article a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.c-article a:hover .c-article__title {
  color: var(--COLOR_RED);
}

.c-article a:hover .c-article__thumbnail img {
  transform: scale(1.1);
}

.c-article img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.c-article__text {
  flex: 1 1;
  padding-left: 10px;
  padding-right: 5%;
}

.c-article__title {
  font-weight: bold;
  transition: color var(--DEFAULT_EASING);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.c-article__label {
  display: inline-block;
  margin-top: 4px;
  color: var(--COLOR_BLACK_2);
  font-weight: bold;
}

.c-article__pr {
  display: inline-block;
  color: var(--COLOR_GRAY_4);
}

.c-article__number-wrapper {
  display: flex;
  justify-content: flex-end;
}

.c-article__thumbnail {
  width: 147px;
  overflow: hidden;
  margin-left: 10px;
}

.c-article__thumbnail img {
  object-fit: cover;
  width: 147px;
  height: 97px;
  transition: transform var(--DEFAULT_EASING);
}

.c-article--pr a {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
}

.c-article--pr .c-article__pr {
  margin-right: 12px;
  padding-right: 10px;
  border-right: solid 1px rgba(112, 114, 115, 0.1);
}

.c-article--main .c-article__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  word-break: break-all;
  width: 100%;
  padding: 12px 40px 12px 14px;
  background-color: rgba(0, 0, 0, 0.65);
  color: var(--COLOR_WHITE);
  line-height: 1.5;
  font-size: 16px;
}

.c-article--main .c-article__title h2 {
  max-height: 75px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.c-article--main .c-icon {
  position: absolute;
  right: 8px;
  bottom: 9px;
  width: 22px;
  height: 22px;
}

.c-article--column li {
  padding-top: 20px;
  padding-bottom: 20px;
}

.c-article--column li:first-child {
padding-top: 0px;
}

.c-article--column .c-article__column {
  display: flex;
  justify-content: space-between;
}

.c-article--column .c-article__title {
  flex: 1 1;
  padding-right: 5px;
}

.c-article--column .c-article__title h2 {
  max-height: 75px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.c-article--row a {
  padding-top: 20px;
  padding-bottom: 20px;
}

.c-article--row .c-article__title {
  padding-right: 0px;
}

.c-article--pr-list a {
  display: flex;
}

.c-article--primary-list a {
display: flex;
}

.c-article--ranking-pr a {
  position: relative;
  padding: 14px 14px 16px 28px;
}

.c-article--ranking-pr a::before {
  content: "PR";
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--COLOR_GRAY_4);
}

.c-article-list .c-article {
  border-bottom: 1px solid var(--COLOR_GRAY_1);
}

.c-article-list .c-icon {
  position: absolute;
  margin: 5px;
  right: 10px;
  bottom: 0px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}

.c-article-list .c-article-list__img {
  width: 147px;
}

.c-article-list--bottom {
  display: flex;
  flex-wrap: wrap;
}

.c-article-list--bottom .c-article {
  width: 48.5%;
}

.c-article-list--bottom .c-article:nth-of-type(2n) {
  margin-left: 3%;
}

.c-article-list--bottom a {
  display: flex;
  justify-content: space-between;
  padding-top: 11px;
  padding-bottom: 11px;
}

.c-article-list--main a {
  display: flex;
  justify-content: space-between;
  padding-top: 11px;
  padding-bottom: 11px;
}

.c-article-list--ranking {
  counter-reset: number;
  border-top: solid 1px var(--COLOR_GRAY_1);
}

.c-article-list--ranking .c-article::before {
  counter-increment: number;
  content: counters(number, ".") " ";
  position: absolute;
  top: 7px;
  left: 7px;
}

.c-article-list--ranking a {
  padding-top: 7px;
  padding-right: 12px;
  padding-bottom: 11px;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.5;
}

.c-top__info {
  font-weight: bold;
  color: #b84545;
  font-size: 15px;
}

.c-accordion__label {
  margin-top: 40px;
}

.c-accordion__contents {
  display: none;
}

.c-accordion__check:checked {
  display: none;
}

.c-accordion__check:checked + label {
  display: none;
}

.c-accordion__check:checked + label + div {
  display: block;
}

.c-icon .c-circle {
  transition: fill var(--DEFAULT_EASING);
}

.c-icon .c-icon__checkbox {
  display: none;
}

.c-icon .c-icon__checkbox:checked + .c-icon__label .c-circle {
  fill: var(--COLOR_OCHER);
}

.c-icon a:hover .c-circle {
  fill: var(--COLOR_OCHER);
}

.c-icon svg {
  width: 100%;
  height: 100%;
}

.c-button {
  display: inline-block;
  position: relative;
  width: 100%;
  border-radius: 24px;
  background-color: var(--COLOR_BLACK_2);
  color: var(--COLOR_WHITE);
  text-align: center;
  font-weight: bold;
  transition: background-color var(--DEFAULT_EASING);
}

.c-button:hover {
  background-color: var(--COLOR_RED);
}

.c-button--prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%) rotate(180deg);
  width: 6px;
  height: 10px;
  background-image: url("../img/common/icon_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.c-button--next::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background-image: url("../img/common/icon_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.c-button--primary {
  max-width: 240px;
  padding: 12px;
}

.c-button--secondary {
  max-width: 280px;
  padding: 14px;
  font-size: 14px;
}

.c-button--tertiary {
  max-width: 240px;
  padding: 12px;
}

.c-button--red {
  background-color: var(--COLOR_RED);
}

.c-button--red:hover {
  background-color: var(--COLOR_BLACK_2);
}

.c-button--white {
  background-color: var(--COLOR_WHITE);
  border: 1px solid var(--COLOR_BLACK_2);
  color: var(--COLOR_BLACK_2);
  padding: 12px;
}
.c-button--white:hover {
  background-color: var(--COLOR_BLACK_2);
  color: var(--COLOR_WHITE);
}

.c-button-border--red {
  background-color: var(--COLOR_WHITE);
  border: 1px solid var(--COLOR_RED);
  color: var(--COLOR_RED);
}

.c-button-border--red:hover {
  background-color: var(--COLOR_BLACK_2);
  color: var(--COLOR_WHITE);
  border: 1px solid var(--COLOR_BLACK_2);
}

.c-btnwrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.btn-history-box button {
  width: 240px;
  cursor: pointer;
}

.c-history-box {
  width: 300px;
  display: none;
  margin: auto;
}

.c-history-box ul li {
  display: flex;
}

.c-history-box ul li::before {
  display: none;
}

.c-history-box ul li .c-history-text {
  padding-left: 10px;
  margin-top: 0;
}

.c-history-box.appear {
  display: block;
}

.c-banner {
  max-width: 340px;
  float: right;
  background-color: #fff;
  border-bottom: 10px solid #fff;
  border-left: 30px solid #fff;
  position: relative;
  z-index: 100;
}

.c-banner img {
  margin: auto;
  transition: opacity var(--DEFAULT_EASING);
}

.c-banner a:hover img {
  opacity: 0.5;
}


.c-banner-first {
  max-width: 340px;
  float: right;
  background-color: #fff;
  border-bottom: 10px solid #fff;
  border-left: 30px solid #fff;
  position: relative;
  z-index: 100;
}

.c-banner-first img {
  margin: auto;
  transition: opacity var(--DEFAULT_EASING);
}

.c-banner-first a:hover img {
  opacity: 0.5;
}

.c-banner-second {
  max-width: 300px;
  margin: auto;
  background-color: #fff;
  border-top: 10px solid #fff;
  position: relative;
  z-index: 100;
}

.c-banner-second img {
  margin: auto;
  transition: opacity var(--DEFAULT_EASING);
}

.c-banner-second a:hover img {
  opacity: 0.5;
}

.c-authors__banner-second {
  float: right;
  margin-left: 30px;
}

.c-tag-banner {
  text-align: center;
}

.c-tag-banner img {
  margin: auto;
  transition: opacity var(--DEFAULT_EASING);
}

.c-tag-banner a:hover img {
  opacity: 0.5;
}

.c-number {
  border-radius: 30px;
  background-color: var(--COLOR_GRAY_3);
  color: var(--COLOR_BLACK_1);
}

.c-number.c-number--top {
  padding: 2px 12px;
  font-size: 14px;
}

.c-number.c-number--index {
  padding: 0 10px;
  font-size: 16px;
}

.c-magazine-button-list {
  display: flex;
  justify-content: center;
}

.c-magazine-button-list__item:not(:first-of-type) {
  margin-left: 19px;
}

.c-magazine-button-list__logo--fujisan {
  width: 100px;
}

.c-magazine-button-list__logo--amazon {
  width: 80px;
}

.c-magazine-button-list__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 176px;
  height: 64px;
  border-style: solid;
  border-width: 1px;
  border-color: #e7e7e7;
  background-color: var(--COLOR_WHITE);
  transition: border-color var(--DEFAULT_EASING);
}

.c-magazine-button-list__button:hover {
  border-color: #cc2c1e;
}

.c-magazine-button-list__button:hover g {
  stroke: #cc2c1e;
}

.c-magazine-button-list__button:hover path {
  stroke: #cc2c1e;
}

.c-magazine-button-list__svg {
  position: absolute;
  right: 9.5px;
  bottom: 9px;
}

.c-magazine-button-list__svg g {
  transition: stroke var(--DEFAULT_EASING);
}

.c-magazine-button-list__svg path {
  transition: stroke var(--DEFAULT_EASING);
}

.c-breadclumb__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  max-width: 1230px;
  margin: 16px auto 0;
  padding-right: 15px;
  padding-left: 15px;
}
.c-breadclumb__list li {
  line-height: 1.5;
  color: var(--COLOR_BLACK_2);
  font-size: 16px;
}

.c-breadclumb__list li a {
  line-height: 1.5;
  color: var(--COLOR_BLACK_2);
  font-size: 16px;
}

.c-breadclumb__list li a:first-child {
  text-decoration: none;
}

.c-breadclumb__list li a:first-child:hover {
  color: var(--COLOR_RED);
  text-decoration: underline;
}

.c-breadclumb__list li:not(:last-child)::after {
  content: "＞";
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.c-title {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
}

.c-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--COLOR_RED);
}

.c-title span {
  display: block;
  color: var(--COLOR_RED);
  font-size: 16px;
  font-weight: 500;
}

.c-sub-title {
  position: relative;
  padding-bottom: 14px;
  font-size: 22px;
  font-weight: bold;
}

.c-sub-title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--COLOR_GRAY_2);
}

.c-sub-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--COLOR_RED);
}

.c-link {
  transition: color var(--DEFAULT_EASING);
}

.c-link:hover {
  color: var(--COLOR_RED);
}

.c-list-arrow {
  margin-top: 28px;
}

.c-list-arrow li {
  position: relative;
  padding-left: 1em;
}

.c-list-arrow li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-image: url("../img/word/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.c-list-arrow li:not(:first-of-type) {
  margin-top: 10px;
}

.c-list-arrow span {
  line-height: 1.75;
}

.c-list-arrow h3 {
  display: inline;
}

.c-list-arrow a {
  text-decoration: underline;
  line-height: 1.75;
  transition: color var(--DEFAULT_EASING);
}

.c-list-arrow a:hover {
  color: var(--COLOR_RED);
}

.c-ranking {
  margin-top: 38px;
  padding: 36px 64px 40px;
  border-radius: 20px;
  box-sizing: content-box;
  background-color: var(--COLOR_WHITE);
}

.c-ranking__pr-article {
  margin-top: 34px;
}

.c-ranking__pr-article a {
  transition: color var(--DEFAULT_EASING);
}

.c-ranking__pr-article a:hover {
  color: var(--COLOR_RED);
}

.c-ranking__article a {
  transition: color var(--DEFAULT_EASING);
}

.c-ranking__article a:hover {
  color: var(--COLOR_RED);
}

.c-ranking__pr {
  margin-right: 4px;
  padding-right: 8px;
  border-right: solid 1px rgba(112, 112, 112, 0.1);
  color: var(--COLOR_GRAY_4);
}

.c-ranking__list {
  margin-top: 2px;
}

.c-ranking__item {
  position: relative;
  border-bottom: solid 1px var(--COLOR_GRAY_2);
}

.c-ranking__link {
  display: block;
  padding-top: 20px;
  padding-right: 80px;
  padding-bottom: 20px;
  transition: color var(--DEFAULT_EASING);
}

.c-ranking__link:hover {
  color: var(--COLOR_RED);
}

.c-ranking__block {
  display: flex;
  align-items: center;
}

.c-ranking__number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--COLOR_WHITE);
}

.c-ranking__number--01 {
  background-color: #b39736;
}

.c-ranking__number--02 {
  background-color: var(--COLOR_RED);
}

.c-ranking__number--03 {
  background-color: var(--COLOR_BLACK_3);
}

.c-ranking__number--04 {
  background-color: var(--COLOR_GRAY_4);
}

.c-ranking__number--05 {
  background-color: var(--COLOR_GRAY_4);
}

.c-ranking__number-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.c-ranking__title {
  flex: 1 1;
  padding-left: 16px;
}

.c-ranking__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.c-pr__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 42px;
  padding-right: 2.5%;
}

.c-pr__link {
  display: flex;
  flex-direction: column;
}

.c-pr__link:hover .c-pr__thumbnail img {
  transform: scale(1.1);
}

.c-pr__link:hover .c-pr__title {
  color: var(--COLOR_RED);
}

.c-pr__title {
  margin-top: 26px;
  line-height: 1.625;
}

.c-pr__thumbnail {
  order: -1;
  overflow: hidden;
}

.c-pr__thumbnail img {
  transition: transform var(--DEFAULT_EASING);
}

.c-event {
  margin-top: 36px;
}

.c-event__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 42px;
  margin-top: 35px;
}

.c-event__link {
  display: flex;
  flex-direction: column;
}

.c-event__link:hover .c-event__thumbnail img {
  transform: scale(1.1);
}

.c-event__title {
  margin-top: 26px;
  color: var(--COLOR_BLACK_2);
  line-height: 1.625;
}

.c-event__time {
  margin-top: 8px;
  color: var(--COLOR_BLACK_1);
}

.c-event__thumbnail {
  order: -1;
  overflow: hidden;
}

.c-event__thumbnail img {
  transition: transform var(--DEFAULT_EASING);
}

.c-relation {
  margin-top: 36px;
}

.c-relation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 36px;
}

.c-anchornav {
  display: flex;
  flex-wrap: wrap;
}

.c-anchornav__item {
  margin: 8px 16px 8px 0;
}

.c-anchornav__item a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  border: solid 1px var(--COLOR_GRAY_2);
  font-weight: bold;
  transition: color var(--DEFAULT_EASING);
}

.c-anchornav__item a:hover {
  color: var(--COLOR_RED);
}

.c-paywall {
  position: relative;
  max-width: 960px;
  margin: 0 auto 40px auto;
  padding: 26px 38px;
  border: solid 2px var(--COLOR_RED);
  border-radius: 8px;
  background: var(--COLOR_WHITE);
  z-index: 90;
  clear: both;
}

.c-paywall::before {
  content: "";
  width: 102%;
  height: 160px;
  background: linear-gradient(0deg, var(--COLOR_WHITE), rgba(255, 255, 255, 0) 85%);
  position: absolute;
  top: -165px;
  left: -3px;
  display: block;
  z-index: 1;
}

.c-paywall li.c-paywall__item:not(:first-of-type) {
  margin-top: 9px;
}

.c-paywall__title {
  color: var(--COLOR_RED);
  font-weight: bold;
  font-size: 22px;
}

.c-paywall__column {
  max-width: 820px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px auto 0px auto;
}

.c-paywall__item {
  position: relative;
  padding-left: 1em;
}

.c-paywall__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background-color: #1c1c1c;
}

.c-paywall__notes {
  margin-top: 4px;
  color: var(--COLOR_OCHER);
  text-align: center;
  font-weight: bold;
}

.c-paywall__sub-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 188px;
  min-height: 40px;
  padding-right: 10px;
  padding-left: 10px;
  background-color: var(--COLOR_GRAY_3);
  font-weight: bold;
}

.c-paywall__sub-block:not(:first-of-type) {
  margin-top: 6px;
}

.c-paywall__price {
  color: var(--COLOR_RED);
  font-size: 20px;
}

.c-paywall__buttons {
  margin-top: 28px;
  padding-top: 32px;
  padding-bottom: 14px;
  border-top: 1px solid var(--COLOR_GRAY_2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-paywall__buttons-library {
  border-top: none;
  margin: 5px 0;
  padding: 0;
}

.c-paywall__button {
  width: 240px;
}

.c-paywall__button:not(:first-of-type) {
  margin-left: 30px;
}

.c-button--wide {
width: 300px;
}

.c-video-content {
  margin: 20px 0;
}

.c-video-content iframe {
  aspect-ratio:16 / 9;
  width:100%;
  height:100%;
}

.c-specialterms {
  width: 80%;
  margin: 20px auto 0px;
  overflow: auto;
  height: 120px;
  padding: 5px;
  border-top-width: 2px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #9A9A9A;
  border-right-color: #9A9A9A;
  border-bottom-color: #9A9A9A;
  border-left-color: #9A9A9A;
}

@media screen and (max-width: 1024px) {
  .c-grid {
    display: grid;
    grid-template: "pr" auto "main" 1fr "sub" 1fr;
  }
  .c-magazine-button-list--magazines {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 295px;
  }
  .c-magazine-button-list__item {
    width: 100%;
  }
  .c-magazine-button-list__item:not(:first-of-type) {
    margin-top: 14px;
    margin-left: 0;
  }
  .c-magazine-button-list__button {
    width: 100%;
  }
  .p-top__banner-wrapper--01 {
    margin: auto;
  }
}

@media screen and (max-width: 959px) {
  .c-banner {
    float: none;
    width: 300px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    border: none; }
  .c-banner--x-wide {
    display: none; }
  .c-tag-banner {
    margin-top: 40px;} 
  .c-authors__banner-second {
    float: inherit;
    margin-left: 0px;
    }
  }

@media screen and (max-width: 768px) {
  .c-grid {
    display: grid;
    grid-template: "pr" auto "main" 1fr "sub" auto;
    gap: 0;
  }
  .c-grid__main {
    margin-top: 0px;
  }
  .c-article img {
    height: auto;
    object-fit: cover;
  }
  .c-article__text {
    padding-left: 10px;
    padding-right: 7.5%;
  }
  .c-icon {
    top: inherit;
    bottom: 8px;
    transform: inherit;
  }
  .c-banner-article {
    float: none;
    max-width: 300px;
    margin: auto;
    border-left: none;
  }
  .c-banner-first {
    border-left: none;
    max-width: 300px;
    margin: auto;
    margin-top: 40px;
    float: inherit;
  }
  .c-banner-second {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .c-article--pr .c-article__pr {
    margin-top: 0;
    margin-right: 10px;
  }
  .c-article--column li {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .c-article--column .c-article__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .c-article--row a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .c-article-list--main {
    width: 100%;
    padding-right: 0;
  }
  .c-article-list--main a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .c-article-list--bottom {
    flex-direction: column;
  }
  .c-article-list--bottom a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .c-article-list--bottom .c-article {
    width: 100%;
  }
  .c-article-list--bottom .c-article:nth-of-type(2n) {
    margin-left: 0;
  }
  .c-article-list--ranking a {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 13px;
  }
  .c-article__thumbnail {
    width: 100px;
  }
  .c-article__thumbnail img {
    width: 100px;
  }
.c-article-list .c-article-list__img {
    width: 100px;
  }
  .c-breadclumb__list {
    display: none;
  }
  .c-top__info {
    padding-bottom: 10px;
  }
  .c-accordion__label {
    margin-top: 0;
  }
  .c-button {
    padding: 18px;
    border-radius: 30px;
  }
  .c-button--primary {
    max-width: 335px;
    padding: 18.5px;
  }
  .c-button--secondary {
    max-width: 335px;
    padding: 20px;
  }
  .c-button--tertiary {
    max-width: 295px;
    padding: 18.5px;
  }
  .c-number.c-number--index {
    padding: 2px 8px;
  }
  .c-magazine-button-list {
    flex-direction: column;
  }
  .c-magazine-button-list__item {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .c-magazine-button-list__item:not(:first-of-type) {
    margin-top: 14px;
    margin-left: 0;
  }
  .c-magazine-button-list__button {
    width: 100%;
    height: 60px;
    max-width: 295px;
  }
  .c-title {
    font-size: 24px;
  }
  .c-title span {
    margin-bottom: 4px;
  }
  .c-sub-title {
    font-size: 20px;
  }
  .c-ranking {
    margin: 20px;
    padding: 26px 20px 44px;
    border-radius: 10px;
  }
  .c-ranking__link {
    padding-right: 0;
  }
  .c-ranking__block {
    align-items: flex-start;
  }
  .c-ranking__number-wrapper {
    display: flex;
    justify-content: flex-end;
    position: static;
    top: inherit;
    transform: inherit;
    margin-top: 5px;
  }
  .c-event {
    margin: 20px;
  }
  .c-event__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px 42px;
    margin-top: 35px;
  }
  .c-event__title {
    margin-top: 16px;
  }
  .c-relation {
    margin: 20px;
  }
  .c-relation__grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 32px;
  }
  .c-word-nav .c-word-nav__item {
    margin: 6.5px;
  }
  .c-paywall {
    padding: 26px 18px 38px;
    border-radius: 10px;
  }
  .c-paywall li.c-paywall__item:not(:first-of-type) {
    margin-top: 0;
  }
  .c-paywall__title {
    font-size: 20px;
  }
  .c-paywall__column {
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
  }
  .c-paywall__item {
    line-height: 2;
  }
  .c-paywall__item::before {
    top: 15px;
  }
  .c-paywall__block {
    width: 100%;
    margin-top: 20px;
  }
  .c-paywall__sub-block {
    padding-right: 16px;
    padding-left: 14px;
  }
  .c-paywall__sub-block:not(:first-of-type) {
    margin-top: 8px;
  }
  .c-paywall__notes {
    margin-top: 12px;
  }
  .c-paywall__buttons {
    flex-direction: column;
    margin-top: 32px;
    padding-bottom: 0;
  }
  .c-paywall__button {
    width: 100%;
  }
  .c-paywall__button:not(:first-of-type) {
    margin-top: 16px;
    margin-left: 0;
  }
  .c-pr__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px 42px;
    margin-top: 35px;
  }
  .c-pr__title {
    margin-top: 16px;
  }
}
