@charset "UTF-8";

.p-index {
  max-width: 1200px;
  margin: 0 auto 35px;
  padding: 32px 0px 54px;
  box-sizing: content-box;
  border-radius: 20px;
  background-color: var(--COLOR_WHITE);
}

.p-index .c-article-list .c-icon {
  right: 20px;
}

.p-index--primary {
  max-width: 1040px;
}

.p-index--secondary {
  max-width: 1110px;
}

.p-index__inner {
  padding: 32px 6.7308% 54px;
  border-radius: 20px;
  box-sizing: content-box;
  background-color: var(--COLOR_WHITE);
}

.p-index__column {
  display: flex;
  justify-content: space-between;
}

.p-index__column:not(:first-of-type) {
  margin-top: 46px;
}

.p-index__single {
  position: relative;
}

.p-index__single:after {
  content: "";
  display: block;
  clear: both;
}

.p-index__single+* {
  margin-top: 50px;
}

.p-index__single h2 {
  position: relative;
  padding-bottom: 14px;
  font-size: 22px;
  font-weight: bold;
}

.p-index__single h2::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--COLOR_GRAY_2);
}

.p-index__single h2::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--COLOR_RED);
}

.p-index__single h2+ul {
  margin-top: 28px;
}

.p-index__single ul+h2 {
  margin-top: 30px;
}

.p-index__controls {
  max-width: 400px;
}

.p-index__pager {
  display: flex;
}

.p-index__block {
  flex: 1 1;
}

.p-index__block:not(:first-of-type) {
  margin-top: 30px;
}

.p-index__description {
  line-height: 1.75;
}

.p-index__sub-column {
  display: flex;
  margin-top: 38px;
}

.p-index__cover {
  flex-basis: 204px;
  margin-left: -8px;
}

.p-index__cover+.p-index__text {
  flex: 1 1;
  padding-left: 24px;
}

.p-index__price {
  margin-top: 4px;
  font-size: 16px;
  font-weight: bold;
}

.p-index__price span {
  font-size: 22px;
}

.p-index__subscription-button {
  margin-top: 26px;
}

.p-index__prev {
  border: solid 1px var(--COLOR_GRAY_2);
  border-radius: 4px;
  color: var(--COLOR_BLACK_2);
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 56px;
  height: 40px;
  min-width: 56px;
  padding-left: 27px;
}

.p-index__prev::before {
  content: "";
  position: absolute;
  top: 32%;
  left: 4px;
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
  background-image: url("../img/common/icon_arrow_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-index__next {
  border: solid 1px var(--COLOR_GRAY_2);
  border-radius: 4px;
  color: var(--COLOR_BLACK_2);
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 56px;
  height: 40px;
  min-width: 56px;
  padding-left: 12px;
}

.p-index__next::before {
  content: "";
  position: absolute;
  top: 32%;
  right: 4px;
  width: 16px;
  height: 16px;
  background-image: url("../img/common/icon_arrow_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-index__date {
  border: solid 1px var(--COLOR_GRAY_2);
  border-radius: 4px;
  color: var(--COLOR_BLACK_2);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  max-width: 268px;
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
}

.p-index__select {
  border: solid 1px var(--COLOR_GRAY_2);
  border-radius: 4px;
  color: var(--COLOR_BLACK_2);
  width: 100%;
  height: 40px;
  padding-right: 20px;
  padding-left: 20px;
}

.p-index__select-wrapper {
  position: relative;
  margin-top: 16px;
}

.p-index__select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background-image: url("../img/articles/icon_select.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-post__image {
  display: table;
  margin: auto;
}

.p-post__caption {
  margin-top: 12px;
  color: var(--COLOR_GRAY_4);
  text-align: left;
  display: table-caption;
  caption-side: bottom;
}

.p-post__serialization {
  position: relative;
  color: var(--COLOR_RED);
  font-weight: bold;
}

.p-post__serialization::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--COLOR_RED);
}

.p-post__title {
  margin-top: 16px;
  font-size: 30px;
  line-height: 1.5;
}

.p-post__meta {
  min-width: 560px;
  float: left;
  margin-top: 27px;
}

.p-post__update {
  margin-top: 2px;
}

.p-post__list {
  float: right;
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.p-post__item:not(:first-of-type) {
  margin-left: 24px;
}

.p-post__item:not(:last-of-type) {
  display: flex;
  align-items: center;
}

.p-post__item span {
  display: inline-block;
  margin-left: 8px;
  font-weight: bold;
}

.p-post__icon {
  width: 36px;
  height: 36px;
}

.p-post__thumbnail {
  position: relative;
}

.p-post__thumbnail::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--COLOR_BLACK_1);
  transition: background-color var(--DEFAULT_EASING);
}

.p-post__thumbnail::after {
  content: "";
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 22px;
  height: 22px;
  background-image: url("../img/post/icon_zoom.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-post__trigger {
  display: block;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
}

.p-post__trigger:hover .p-post__thumbnail::before {
  background-color: var(--COLOR_RED);
}

.p-post__body {
  position: relative;
  margin-top: 36px;
  position: relative;
}

.p-post__body::after {
  content: "";
  display: block;
  clear: both;
}

.p-post__body .lead {
  padding-top: 10px;
  padding-bottom: 14px;
  border-top: solid 2px var(--COLOR_GRAY_2);
  border-bottom: solid 2px var(--COLOR_GRAY_2);
  line-height: 1.75;
}

.p-post__body .lead span {
  font-weight: bold;
}

.p-post__body .toc {
  margin-top: 33px;
  padding: 27px 32px 30px;
  background-color: var(--COLOR_GRAY_3);
}

.p-post__body .toc ol {
  counter-reset: number;
  margin-top: 20px;
}

.p-post__body .toc li {
  padding-left: 0;
}

.p-post__body .toc li:not(:first-of-type) {
  margin-top: 13px;
}

.p-post__body .toc li::before {
  content: none;
}

.p-post__body .toc a {
  border-bottom: inherit !important;
  color: var(--COLOR_BLACK_2);
  font-weight: normal !important;
}

.p-post__body .toc a::before {
  counter-increment: number;
  content: counter(number) ".";
  position: inherit;
  width: inherit;
  height: inherit;
  background-color: inherit;
}

.p-post__body .toc+.lead {
  width: auto;
}

.p-post__body .toc+p {
  margin-top: 20px;
}

.p-post__body .toc-ttl {
  font-weight: bold;
}

.p-post__body div>h2 {
  position: relative;
  margin-top: 26px;
  margin-bottom: 26px;
  padding-bottom: 12px;
  border-bottom: solid 1px var(--COLOR_GRAY_2);
  font-weight: bold;
  font-size: 22px;
}

.p-post__body div>h2::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--COLOR_RED);
}

.p-post__body div>h3 {
  position: relative;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 1em;
  font-weight: bold;
  font-size: 18px;
}

.p-post__body div>h3::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 8px;
  height: 21px;
  border-radius: 12px;
  background-color: var(--COLOR_RED);
}

.p-post__body div>h4 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 18px;
}

.p-post__body div>h5 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 17px;
}

.p-post__body div>p {
  line-height: 1.75;
}

.p-post__body div>p+p {
  margin-top: 1em;
}

.p-post__body div>p+h3 {
  margin-top: 22px;
}

.p-post__body div>p>a:not([class]) {
  color: var(--COLOR_BLUE);
  position: relative;
  border-bottom: solid 2px var(--COLOR_BLUE);
  transition: border-color var(--DEFAULT_EASING), color var(--DEFAULT_EASING);
}

.p-post__body div>p>a:not([class]):hover {
  border-color: #ad0707;
  color: var(--COLOR_RED);
}

.p-post__body div>p>a:not([class])[target] {
  padding-right: .2em;
}

.p-post__body div>p>a:not([class])[target]::after {
  content: "";
  width: 11px;
  height: 11px;
  margin-left: 5px;
  display: inline-block;
  background-image: url(../img/post/icon_blank_blue.svg);
}

.p-post__body div>p>a:not([class])[target]:hover::after {
  background-image: url(../img/post/icon_blank_red.svg);
}

.p-post__body div>.lead+p {
  margin-top: 25px;
}

.p-post__body div>iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.p-post__body div>ul {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0.45em;
}

.p-post__body div>ul li strong {
  display: block;
  color: var(--COLOR_BLACK_2);
  font-weight: bold;
}

.p-post__body div>ul li span {
  display: block;
  margin-top: 4px;
  color: var(--COLOR_GRAY_4);
}

.p-post__body div>ol {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0.45em;
}

.p-post__body div>ol li strong {
  display: block;
  color: var(--COLOR_BLACK_2);
  font-weight: bold;
}

.p-post__body div>ol li span {
  display: block;
  margin-top: 4px;
  color: var(--COLOR_GRAY_4);
}

.p-post__body div>ol li ol {
  counter-reset: sub-number;
}

.p-post__body div>ol li ol li::before {
  counter-increment: sub-number;
  content: counters(sub-number, ".") ". ";
  position: absolute;
  top: 0;
  left: 0;
}

.p-post__body div>dl {
  margin-top: 24px;
}

.p-post__body div>dl dt {
  position: relative;
  padding-left: 1.3em;
  font-weight: bold;
}

.p-post__body div>dl dt::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 14px;
  height: 3px;
  background-color: var(--COLOR_RED);
}

.p-post__body div>dl dd {
  margin-top: 8px;
  line-height: 1.75;
}

.p-post__body small {
  display: inline-block;
  margin-top: 14px;
  color: var(--COLOR_GRAY_4);
  font-size: inherit;
  line-height: 1.75;
}

.p-post__body .caution {
  font-size: 14px;
}

.p-post__body figure {
  margin-top: 28px;
  margin-bottom: 28px;
}

.p-post__body figure:not([class]) {
  display: table;
  margin: 28px auto 28px;
}

.p-post__body figure:not([class]) img+figcaption {
  caption-side: bottom;
  display: table-caption;
}

.p-post__body figure figcaption+img {
  margin-top: 12px;
}

.p-post__body figure img+figcaption {
  margin-top: 12px;
}

.p-post__body figure iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.p-post__body figcaption {
  color: var(--COLOR_GRAY_4);
}

.p-post__body .left-img {
  max-width: 300px;
  float: left;
  clear: left;
  margin-right: 28px;
}

.p-post__body .right-img {
  max-width: 300px;
  float: right;
  clear: right;
  margin-left: 28px;
}

.p-post__body h2+.left-img {
  margin-top: 3px;
}

.p-post__body h2+.right-img {
  margin-top: 3px;
}

.p-post__body h3+.left-img {
  margin-top: 2px;
}

.p-post__body h3+.right-img {
  margin-top: 2px;
}

.p-post__body h3+p {
  margin-top: 10px;
}

.p-post__body h4+.left-img {
  margin-top: 2px;
}

.p-post__body h4+.right-img {
  margin-top: 2px;
}

.p-post__body h5+.left-img {
  margin-top: 2px;
}

.p-post__body h5+.right-img {
  margin-top: 2px;
}

.p-post__body blockquote {
  margin-top: 24px;
  padding: 24px 32px 28px;
  background-color: var(--COLOR_GRAY_3);
  line-height: 1.75;
  clear: both;
}

.p-post__body cite {
  display: block;
  margin-top: 14px;
  text-align: right;
}

.p-post__body ul li {
  position: relative;
  padding-left: 0.75em;
}

.p-post__body ul li>ul {
  margin-top: 14px;
  padding-left: 0.45em;
}

.p-post__body ul li>ul li::before {
  background-color: var(--COLOR_GRAY_4);
}

.p-post__body ul li>ul li>ul li::before {
  background-color: var(--COLOR_GRAY_2);
}

.p-post__body ul li>ol {
  margin-bottom: 1em;
  padding-left: 0.45em;
}

.p-post__body ul:not([class])>li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--COLOR_BLACK_2);
}

.p-post__body ul>li>a {
  position: relative;
  border-bottom: solid 1px var(--COLOR_BLUE);
  transition-property: border-color, color;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.p-post__body ul>li>a:hover {
  border-color: var(--COLOR_RED);
  color: var(--COLOR_RED);
}

.p-post__body ol {
  counter-reset: number;
}

.p-post__body ol li {
  position: relative;
  padding-left: 1.5em;
}

.p-post__body ol li>ol {
  margin-top: 14px;
  padding-left: 0.45em;
}

.p-post__body ol li>ul {
  margin-top: 14px;
  padding-left: 0.45em;
}

.p-post__body ol>li::before {
  counter-increment: number;
  content: counter(number) "．";
  position: absolute;
  top: 0;
  left: 0;
}

.p-post__body li:not(:first-of-type) {
  margin-top: 6px;
}

.p-post__body .column {
  display: flex;
  align-items: flex-start;
  margin-top: 18px;
}

.p-post__body .column strong {
  display: block;
  color: var(--COLOR_BLACK_2);
  font-weight: bold;
}

.p-post__body .column>img {
  max-width: 164px;
}

.p-post__body .column>div {
  padding-left: 40px;
}

.p-post__body .column p {
  line-height: 1.75;
}

.p-post__body .column p+p {
  margin-top: 10px;
}

.p-post__body .column p .btn-v2 {
  max-width: 164px;
  padding: 6px;
  font-size: 16px;
}

.p-post__body .column span {
  display: block;
  margin-top: 4px;
  color: var(--COLOR_GRAY_4);
}

.p-post__body .column+h3 {
  margin-top: 36px;
}

.p-post__body hr {
  height: 2px;
  margin-top: 40px;
  margin-bottom: 40px;
  border: unset;
  background-color: var(--COLOR_GRAY_1);
}

.p-post__body .btn-v2 {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 240px;
  padding: 11.75px;
  border-radius: 24px;
  background-color: var(--COLOR_BLACK_2);
  color: var(--COLOR_WHITE);
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  transition: background-color var(--DEFAULT_EASING);
}

.p-post__body .btn-v2:hover {
  background-color: var(--COLOR_RED);
}

.p-post__body .btn-v2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-post__body .btn-v2:not([target])::after {
  width: 5px;
  height: 8px;
  background-image: url("../img/common/icon_arrow_white.svg");
}

.p-post__body .btn-v2[target]::after {
  width: 11px;
  height: 11px;
  background-image: url("../img/post/icon_blank_white.svg");
}

.p-post__body *+p .btn-v2 {
  margin-top: 28px;
}

.p-post__body table {
  width: 100%;
  margin-top: 40px;
  border-collapse: collapse;
}

.p-post__body table th {
  width: 10%;
  min-width: 96px;
  padding: 12px;
  border-collapse: collapse;
  border: solid 1px var(--COLOR_GRAY_2);
  background-color: var(--COLOR_GRAY_3);
}

.p-post__body table td {
  padding: 12px;
  border-collapse: collapse;
  border: solid 1px var(--COLOR_GRAY_2);
}

.p-post__body .next_preview {
  display: flex;
  justify-content: center;
}

.p-post__body .next_preview a {
  width: 100%;
  max-width: 640px;
  padding: 12px;
  border-radius: 80px;
  background-color: var(--COLOR_BLACK_2);
  color: var(--COLOR_WHITE);
  text-align: center;
  transition: background-color var(--DEFAULT_EASING);
}

.p-post__body .next_preview a:hover {
  background-color: var(--COLOR_RED);
}

.p-post__body .next_preview a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: bottom;
  background-image: url("../img/post/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-post__body nav {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.p-post__body .p-list__pager {
  display: flex;
}

.p-post__body .c-item {
  padding-left: 0;
}

.p-post__body .c-item:not(:first-of-type) {
  margin-top: 0;
  margin-left: 10px;
}

.p-post__body .c-item span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: solid 1px var(--COLOR_BLACK_2);
  background-color: var(--COLOR_BLACK_2);
  color: var(--COLOR_WHITE);
}

.p-post__body .c-item a {
  display: inline-block;
  padding: 8px 14px;
  border: solid 1px var(--COLOR_GRAY_2);
  color: var(--COLOR_BLACK_2);
  transition-property: border-color, color;
  transition-duration: .3s;
  transition-timing-function: ease;
}

.p-post__body .c-item a svg {
  transition: transform var(--DEFAULT_EASING);
}

.p-post__body .c-item a path {
  transition: stroke var(--DEFAULT_EASING);
}

.p-post__body .c-item a:hover {
  border-color: var(--COLOR_BLUE);
  color: var(--COLOR_BLUE);
}

.p-post__body .c-item a:hover path {
  stroke: var(--COLOR_BLUE);
}

.p-post__body .c-item:first-of-type a {
  padding: 9px 6px;
  border: inherit;
}

.p-post__body .c-item:first-of-type a:hover svg {
  transform: translateX(-2px);
}

.p-post__body .c-item:last-of-type a {
  padding: 9px 6px;
  border: inherit;
}

.p-post__body .c-item:last-of-type a:hover svg {
  transform: translateX(2px);
}

.p-post__reaction-wrapper {
  margin-top: 38px;
}

.p-reaction .p-reaction__title {
  position: relative;
  padding-left: 1em;
  font-weight: bold;
  font-size: 18px;
}

.p-reaction .p-reaction__title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 8px;
  height: 21px;
  border-radius: 12px;
  background-color: var(--COLOR_RED);
}

.p-reaction .p-reaction__list {
  display: flex;
  margin-top: 40px;
  column-gap: 20px;
}

.p-reaction .p-reaction__item .p-reaction__button::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-reaction .p-reaction__item--01 .p-reaction__button::before {
  width: 42px;
  height: 34px;
  margin-right: 16px;
  background-image: url("../img/post/icon01.svg");
}

.p-reaction .p-reaction__item--02 .p-reaction__button::before {
  width: 36px;
  height: 36px;
  margin-right: 16px;
  background-image: url("../img/post/icon02.svg");
}

.p-reaction .p-reaction__item--03 .p-reaction__button::before {
  width: 34px;
  height: 34px;
  margin-right: 16px;
  background-image: url("../img/post/icon03.svg");
}

.p-reaction .p-reaction__button {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 256px;
  padding: 10px 16px;
  border-radius: 80px;
  background-color: var(--COLOR_GRAY_3);
  font-weight: bold;
  transition: opacity .4s ease;
}

.p-reaction .p-reaction__button.is-active .p-reaction__onepoint {
  animation: fade 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.p-reaction .p-reaction__button.is-disabled {
  opacity: 0.4;
}

.p-reaction .p-reaction__point {
  position: absolute;
  top: -16px;
  right: 0;
  z-index: 1;
  width: 64px;
  border-radius: 80px;
  background-color: var(--COLOR_BLACK_3);
  color: var(--COLOR_WHITE);
  text-align: center;
}

.p-reaction .p-reaction__point span {
  font-size: 12px;
}

.p-reaction .p-reaction__onepoint {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: absolute;
  top: -40px;
  right: -8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffd800;
  transition: opacity var(--DEFAULT_EASING);
}

.p-reaction .p-reaction__onepoint::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border: solid 2px var(--COLOR_BLACK_2);
  border-radius: 50%;
}

.p-reaction .p-reaction__onepoint span {
  font-size: 12px;
}

.p-post__series-wrapper {
  margin-top: 40px;
}

.p-series__title {
  position: relative;
  padding-bottom: 12px;
  border-bottom: solid 1px var(--COLOR_GRAY_2);
  font-weight: bold;
  font-size: 22px;
}

.p-series__title::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--COLOR_RED);
}

.p-series__article {
  display: flex;
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: solid 1px var(--COLOR_GRAY_2);
  text-align: left;
}

.p-series__article a {
  flex: 1 1;
  padding-top: 3px;
  padding-left: 24px;
  transition: color var(--DEFAULT_EASING);
}

.p-series__article a:hover {
  color: var(--COLOR_RED);
}

.p-series__time {
  min-width: 144px;
  padding: 3px 8px;
  border-radius: 80px;
  background-color: var(--COLOR_BLACK_3);
  color: var(--COLOR_WHITE);
  text-align: center;
}

.p-series__button-wrapper {
  text-align: center;
}

.p-post__author-wrapper {
  margin-top: 44px;
}

.p-author__title {
  position: relative;
  padding-bottom: 12px;
  border-bottom: solid 1px var(--COLOR_GRAY_2);
  font-weight: bold;
  font-size: 22px;
}

.p-author__title::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--COLOR_RED);
}

.p-author__column {
  display: flex;
  margin-top: 36px;
}

.p-author__image {
  width: 150px;
}

.p-author__text {
  flex: 1 1;
  padding-left: 38px;
}

.p-author__serialization {
  position: relative;
  color: var(--COLOR_RED);
  font-weight: bold;
}

.p-author__serialization::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--COLOR_RED);
}

.p-author__author {
  margin-top: 18px;
}

.p-author__author a {
  position: relative;
  color: var(--COLOR_BLUE);
  font-weight: bold;
  background: linear-gradient(transparent 96%, var(--COLOR_BLUE) 0%);
}

.p-author__list {
  margin-top: 30px;
}

.p-article__bottom .p-top-ranking {
  margin: 20px 20px 0px 0px;
  width: 100%;
}

/* p-banner__rectangle */
.p-banner__rectangle{
  width: calc(100% - 340px);
}

/* p-modal */
.p-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-modal__container {
  position: relative;
  padding: 40px;
  max-width: 1140px;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: content-box;
}
.p-modal__close {
  position: absolute;
  top: 38px;
  right: 8px;
  width: 24px;
  height: 24px;
}

/* micromodal */
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden="false"] .p-modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .p-modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide[aria-hidden="true"] .p-modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .p-modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide .p-modal__container,
.micromodal-slide .p-modal__overlay {
  will-change: transform;
}

@media screen and (max-width: 1024px) {
  .p-index__sub-column {
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
  }
  .p-index__cover {
    max-width: 218px;
    margin-right: auto;
    margin-left: auto;
  }
  .p-index__cover+.p-index__text {
    margin-top: 10px;
    padding-left: 0;
  }
  .p-index__subscription-button {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
}

@media screen and (max-width: 959px) {
  .p-index {
    padding-top: 1px;
  }
  .p-index .c-title {
    width: 100%;
    max-width: 100%;
  }
  .p-index .c-banner {
    float: none;
    margin-right: auto;
    margin-left: auto;
  }
  .p-index__inner {
    padding: 20px 20px 34px;
    border-radius: inherit;
  }
  .p-index__column {
    flex-direction: column-reverse;
  }
  .p-index__column:not(:first-of-type) {
    margin-top: 26px;
  }
  .p-index__single {
    margin-top: 28px;
  }
  .p-index__single::before {
    content: none;
  }
  .p-index__single .c-banner {
    position: static;
    margin-bottom: 30px;
  }
  .p-index__controls {
    max-width: inherit;
  }
  .p-index__block {
    margin-top: 30px;
    padding-right: 0;
  }
  .p-index__date {
    max-width: inherit;
  }
  .p-post__title {
    margin-top: 8px;
    font-size: 24px;
  }
  .p-post__meta {
    min-width: auto;
    margin-top: 12px;
    font-weight: 500;
  }
  .p-post__author {
    line-height: 1.625;
  }
  .p-post__item:not(:first-of-type) {
    margin-left: 16px;
  }
  .p-banner__rectangle{
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .p-index .p-post-list--main {
    width: 53.1696%;
  }
  .p-index .p-top__main-article {
    width: 46.8305%;
  }
  .p-article__bottom {
    display: flex;
  }
}

@media screen and (max-width: 769px) {
  .p-post__body {
    margin-top: 10px;
  }
  .p-post__body .toc {
    margin-top: 36px;
    padding: 24px 20px;
  }
  .p-post__body .toc ol {
    margin-top: 12px;
  }
  .p-post__body .toc a {
    line-height: 1.5;
  }
  .p-post__body div>h2 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 20px;
  }
  .p-post__body div>h3 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .p-post__body div>h4 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .p-post__body div>p+p {
    margin-top: 1em;
  }
  .p-post__body div>p>a:not([class])[target]::before {
    top: 27%;
  }
  .p-post__body div>p>a:not([class])[target]::after {
    top: 13%;
  }
  .p-post__body div>ul {
    line-height: 1.5;
  }
  .p-post__body div>ol {
    line-height: 1.5;
  }
  .p-post__body div>dl {
    line-height: 1.5;
  }
  .p-post__body div>table th {
    display: block;
    width: 100%;
    padding: 16px;
    border-right: none;
  }
  .p-post__body div>table td {
    display: block;
    width: 100%;
    border-top: solid 1px var(--COLOR_GRAY_2);
    padding: 12px;
  }
  .p-post__body ul li>ul {
    margin-top: 16px;
    padding-left: 0.2em;
  }
  .p-post__body ul li>ul li:not(:first-of-type) {
    margin-top: 8px;
  }
  .p-post__body ul li>ol {
    margin-top: 16px;
    padding-left: 0.2em;
  }
  .p-post__body ol li>ol {
    margin-top: 16px;
    padding-left: 0.2em;
  }
  .p-post__body ol li>ul {
    margin-top: 16px;
    padding-left: 0.2em;
  }
  .p-post__body li:not(:first-of-type) {
    margin-top: 14px;
  }
  .p-post__body small {
    margin-top: 16px;
  }
  .p-post__body figure {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .p-post__body blockquote {
    padding: 22px 20px 24px;
  }
  .p-post__body .btn-v2 {
    max-width: 335px;
    padding: 17.75px;
    border-radius: 30px;
  }
  .p-post__body .table-scroll {
    padding-bottom: 24px;
    overflow: scroll;
  }
  .p-post__body .table-scroll table {
    min-width: 900px;
  }
  .p-post__body .table-scroll::-webkit-scrollbar {
    width: 0;
    height: 4px;
  }
  .p-post__body .table-scroll::-webkit-scrollbar-track {
    background-color: var(--COLOR_GRAY_3);
  }
  .p-post__body .table-scroll::-webkit-scrollbar-thumb {
    background-color: var(--COLOR_RED);
  }
  .p-post__body hr {
    height: 1px;
  }
  .p-post__body .next_preview a {
    padding: 16px;
  }
  .p-post__body nav {
    margin-top: 28px;
  }
  .p-post__body .column {
    flex-direction: column;
    align-items: center;
  }
  .p-post__body .column>img {
    max-width: 196px;
  }
  .p-post__body .column>div {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
  .p-post__body .column p+p {
    margin-top: 12px;
  }
  .p-post__body .column p .btn-v2 {
    max-width: 335px;
    padding: 16px;
    font-size: 14px;
  }
  .p-post__body p .btn-v2 {
    display: block;
    max-width: 335px;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    padding: 16px;
  }
  .p-post__image {
    margin-top: 36px;
    display: block;
  }
  .p-post__caption {
    text-align: left;
    display: block;
  }
  .p-post__trigger::before {
    width: 18px;
    height: 18px;
  }
  .p-post__reaction-wrapper {
    margin-top: 36px;
  }
  .p-post__author-wrapper {
    margin-top: 34px;
  }
  .p-reaction__title {
    font-size: 17px;
  }
  .p-reaction__list {
    flex-direction: column;
    margin-top: 36px;
  }
  .p-reaction__button {
    justify-content: center;
    max-width: 335px;
    padding: 11px 16px;
  }
  .p-reaction__item {
    display: flex;
    justify-content: center;
  }
  .p-reaction__item:not(:first-of-type) {
    margin-top: 24px;
    margin-left: 0;
  }
  .p-series__title {
    font-size: 20px;
  }
  .p-series__article {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-series__article a {
    margin-top: 8px;
    padding-left: 0;
    line-height: 1.625;
  }
  .p-author__title {
    font-size: 20px;
  }
  .p-author__column {
    flex-direction: column;
    margin-top: 32px;
    padding-top: 0;
  }
  .p-author__image {
    width: 160px;
    margin-right: auto;
    margin-left: auto;
  }
  .p-author__text {
    margin-top: 32px;
    padding-left: 0;
  }
  .p-author__author {
    margin-top: 14px;
  }
  .p-author__author a {
    line-height: 2;
  }
  .p-author__list {
    margin-top: 26px;
  }
  .p-modal__container {
    padding: 0;
    overflow-y: visible;
  }
  .p-modal__close {
    top: -38px;
    right: 16px;
    width: 20px;
    height: 20px;
  }
}
