@charset "UTF-8";

body {
  background: #f0f0f0;
}

/* noto-sans-jp-regular - japanese */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''),
    url('../fonts/NotoSansJP-Regular.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}
/* noto-sans-jp-500 - japanese */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(''),
    url('../fonts/NotoSansJP-Medium.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}
/* noto-sans-jp-700 - japanese */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(''),
    url('../fonts/NotoSansJP-Bold.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

.l-headlines {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
  box-sizing: content-box;
}

.l-headlines--primary {
  position: relative;
  padding-bottom: 0px;
  margin-bottom: 20px;
}

.l-headlines--secondary {
  position: relative;
  padding-top: 0px;
  padding-bottom: 40px;
}

.l-headlines--tertiary {
  padding-top: 40px;
  padding-bottom: 80px;
}

.l-headlines--tertiary.l-ranking {
  padding-top: 32px;
}

.l-tag-headlines--primary {
  position: relative;
  padding-bottom: 20px;
}

.l-tag-headlines--secondary {
  position: relative;
  padding-top: 32px;
  padding-bottom: 40px;
}

.l-tag-headlines--secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  height: 3px;
  background-color: var(--COLOR_GRAY_2);
}

.l-tag-headlines--tertiary {
  position: relative;
  padding-top: 32px;
  padding-bottom: 40px;
}

.l-tag-headlines--tertiary.l-ranking {
  padding-top: 32px;
}

.l-content {
  max-width: 1040px;
  margin: 20px auto 76px;
  padding-right: 40px;
  padding-left: 40px;
  box-sizing: content-box;
}

.l-content__main {
  padding: 35px 70px 50px 70px;
  border-radius: 20px;
  background-color: var(--COLOR_WHITE);
}

.l-content__event {
  padding-right: 25px;
  padding-left: 25px;
}

.l-breadclumb__primary {
  max-width: 1230px;
  margin: 16px auto 0;
  padding-right: 15px;
  padding-left: 15px;
}

.p-top {
  background: var(--COLOR_WHITE);
}

.p-top__controls {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 8px 18px;
}

.p-top__controls--no-member {
  background-color: #f5f5f5;
}

.p-top__controls--no-member .p-top__select-wrapper {
  width: 100px;
  margin-right: 16px;
}

.p-top__controls--no-member .p-top__select-wrapper::after {
  right: 0;
  background-image: url("../img/common/icon_select_gray.svg");
}

.p-top__controls--no-member .p-top__select {
  color: var(--COLOR_GRAY_4);
}

.p-top__controls--no-member .p-top__label {
  color: var(--COLOR_GRAY_4);
}

.p-top__controls--member {
  background-color: transparent;
}

.p-top__controls--member .p-top__select-wrapper {
  min-width: 128px;
  padding: 3px 18px;
  border-radius: 20px;
  background-color: var(--COLOR_GRAY_3);
}

.p-top__controls--member .p-top__select-wrapper::after {
  right: 12px;
  background-image: url("../img/common/icon_select_black.svg");
}

.p-top__controls--member .p-top__select {
  color: var(--COLOR_BLACK_2);
}

.p-top__controls--member .p-top__label {
  color: var(--COLOR_RED);
}

.p-top__select-wrapper {
  position: relative;
}

.p-top__select-wrapper::after {
  content: "";
  position: absolute;
  top: 32%;
  width: 12px;
  height: 11px;
  margin-left: 4px;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-top__select {
  width: 100%;
  height: 100%;
}

.p-top__read {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-right: 24px;
  margin-left: 20px;
}

.p-top__label {
  margin-left: 8px;
  transition: color var(--DEFAULT_EASING);
}

.p-top__toggle-switch {
  width: 60px;
  height: 24px;
  border-radius: 40px;
  border: 1px solid #b3b3b3;
  background-color: var(--COLOR_WHITE);
  transition: background-color var(--DEFAULT_EASING);
  overflow: hidden;
}

.p-top__toggle-switch span {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 1px;
  border-radius: 100%;
  background-color: var(--COLOR_GRAY_4);
  transition: transform var(--DEFAULT_EASING);
}

.p-top__toggle-switch[aria-checked="true"] {
  border-color: transparent;
  background-color: var(--COLOR_RED);
}

.p-top__toggle-switch[aria-checked="true"] span {
  transform: translateX(36px);
  background-color: var(--COLOR_WHITE);
}

.p-top__caution {
  position: relative;
  padding-left: 26px;
  color: var(--COLOR_BLACK_2);
}

.p-top__caution::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../img/common/icon_caution.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.p-top__caution span {
  display: inline-block;
  margin-left: 6px;
}

.p-top__caution a {
  position: relative;
  color: var(--COLOR_BLACK_2);
  transition: color var(--DEFAULT_EASING);
}

.p-top__caution a:hover {
  color: var(--COLOR_RED);
}

.p-top__caution a:hover::after {
  opacity: 0;
}

.p-top__caution a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 2px;
  background-color: var(--COLOR_BLACK_2);
  transition: opacity var(--DEFAULT_EASING);
}

.p-top__banner-wrapper--01 {
  max-width: 300px;
}

.p-top__banner-wrapper--02 {
  max-width: 300px;
  /* padding-top: 11px; */
}

.p-top__sub-link-area {
  position: relative;
  margin: 20px 0;
}

.p-top__sub-link-wrapper {
  position: absolute;
  background: #F2F2F2;
  top: 250px;
  width: 100%;
  padding: 20px;
}

.p-top__sub-link-wrapper {
  margin-bottom: 0;
}

.p-top__sub-link-item {
  background: #fff;
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 10px;
  height: 55px;
  line-height: 55px;
}

.p-top__sub-link-item::after {
  content: "";
  position: absolute;
  right: 20px;
  margin-top: 18px;
  transform: translate(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-top__sub-link-item span {
  border-left: 4px solid #222;
  padding-left: 10px;
}

.p-top__block {
  display: flex;
  flex: 1 1;
  border-bottom: 1px solid var(--COLOR_GRAY_1);
}

.p-top__main-article {
  width: 46%;
  margin-bottom: 20px;
}

.p-top__article-event {
  margin-top: 5px;
  border: 1.5px solid #666;
  padding: 0px 4px;
  font-size: 12px;
  font-weight: initial;
  width: 100px;
  text-align: center;
}

.p-article-event--main {
  border: 1.5px solid #fff;
}

.p-top__top-block {
  display: flex;
}

.p-top__feature{
  margin-top:11px;
  padding:0;
  background:#F3F3F3;
}

.p-top__feature-h2{
  background:#333;
  color:#fff;
  font-weight:bold;
  height:40px;
  line-height:40px;
  padding-left:1rem;
}

.p-top__feature-list-block{
  padding:22px;
}

.p-top__feature-list{
  display:flex;
}

.p-top__feature-list div {
  padding-top: 3px;
}

.p-top__feature-list li{
  margin-right:22px;
}

.p-top__feature-list li:last-child{
  margin-right:0;
}

.p-top__feature-list li h4{
  margin-top:5px;
  text-align:center;
}

.p-top__event{
  margin-top:11px;
  padding:0;
  background:#F3F3F3;
}

.p-top__event-h2{
  background:#333;
  color:#fff;
  font-weight:bold;
  height:40px;
  line-height:40px;
  padding-left:1rem;
}

.p-top__event-list-block{
  padding:22px;
}

.p-top__event-list{
  display:flex;
}

.p-top__event-list div {
  padding-top: 3px;
}

.p-top__event-list li{
  margin-right:22px;
  max-width: 260px;
}

.p-top__event-list li:last-child{
  margin-right:0;
}

.p-top__event-list li h4{
  margin-top:5px;
  text-align:center;
}

.p-top__article-list-wrapper {
  flex: 1 1;
  padding-right: 2.5%;
}

.p-top__content-more {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: end;
}

.p-top__content-more a {
  padding-right: 30px;
  padding-top: 10px;
}

.p-top__content-more span {
  content: "";
  position: absolute;
  top: 15px;
  right: -10px;
  transform: translate(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-top__bottom-block {
  display: flex;
}

.p-tag__pr-block {
  display: flex;
}

.p-top__ranking-wrapper {
  width: 300px;
  margin-top: 18px;
}

.p-top-ranking {
  width: 300px;
}

.p-top-ranking__title {
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 4px;
  background-color: var(--COLOR_BLACK_3);
  color: var(--COLOR_WHITE);
  text-align: center;
  font-size: 16px;
}

.p-post__column {
  display: flex;
}

.p-post__text {
  flex: 1 1;
}

.p-post-list--main {
  width: 54%;
  padding-left: 4.5%;
}

.p-post-list--main .c-icon {
  position: absolute;
  right: 8px;
  bottom: 12px;
}

.p-post-list--main li:first-child {
  padding-top: 0px;
}

.p-post-list--main li:nth-child(2) {
  border-bottom: none;
}

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

.p-post-list--main .c-article {
  border-bottom: 1px solid var(--COLOR_GRAY_1);
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-post-list--main .c-article:first-child {
  padding-top: 0px;
}

.p-post-list--sub {
  display: flex;
  border-bottom: 1px solid var(--COLOR_GRAY_1);
}

.p-post-list--sub .c-icon {
  position: absolute;
  right: 8px;
  bottom: 9px;
  margin: auto;
  width: 22px;
  height: 22px;
}

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

.p-post-list--sub .c-article:nth-of-type(1) {
  width: 50%;
}

.p-post-list--sub .c-article:nth-of-type(2) {
  width: 50%;
  margin-left: 10px;
}

.p-post-list--sub .c-article:nth-of-type(3) {
  width: 25%;
}

.p-post-list--sub .c-article:nth-of-type(3) .c-icon {
  right: 3%;
}

.p-post-list--pr {
  display: flex;
}

.p-post-list--pr .c-article {
  width: 50%;
}

.p-post-list--pr .c-article:not(:first-of-type) {
  margin-left: 10px;
}

.p-post-list--pr a {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-post-list--pr span {
  display: inline-block;
  margin-top: 4px;
  color: var(--COLOR_GRAY_4);
}

.p-post-list--pr .c-icon {
  position: absolute;
  top: 87px;
  right: 1%;
  width: 22px;
  height: 22px;
}

.p-magazine {
  padding-top: 66px;
  padding-bottom: 68px;
  background: var(--COLOR_GRAY_3);
}

.p-magazine__inner {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 60px;
  box-sizing: content-box;
}

.p-magazine__grid {
  display: grid;
  grid-template: "text image" auto "button image" 1fr / 1fr 231px;
  gap: 34px 0;
}

.p-magazine__text {
  grid-area: text;
  text-align: center;
}

.p-magazine__text a {
  color: var(--COLOR_BLACK_2);
}

.p-magazine__lead {
  display: inline-block;
  padding: 6.5px 20px;
  border-radius: 80px;
  background-color: var(--COLOR_BLACK_3);
  color: var(--COLOR_WHITE);
  font-weight: 500;
}

.p-magazine__title {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.75;
  font-weight: 500;
}

.p-magazine__title-main {
  display: block;
  font-size: 34px;
}

.p-magazine__title-sub {
  display: block;
  margin-top: 2px;
  font-size: 20px;
}

.p-magazine__image {
  grid-area: image;
}

.p-magazine__image img {
  width: 231px;
}

.p-magazine__button-list {
  grid-area: button;
  width: 100%;
}

/* 特集ページ */

.p-feature-articles__wrapper > section {
  border-bottom: 1px solid #6d6d6d;
  padding: 30px 0;
}

.p-feature-articles__wrapper > section:last-of-type {
  border: none;
}

.p-feature-articles__wrapper section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.p-feature-articles__inner {
  display: flex;
}

.p-feature-articles__image {
  width: 36%;
}

.p-feature-articles__outline {
  width: 64%;
  padding: 0 20px;
}

.p-feature-articles__outline dt {
  position: relative;
  margin-top: 10px;
  margin-bottom: 13px;
  padding-bottom: 2px;
  border-bottom: solid 1px var(--COLOR_GRAY_2);
  font-weight: bold;
  font-size: 16px;
}

.p-feature-articles__outline dt::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--COLOR_RED);
}

.p-feature-articles__outline dd ul li {
  position: relative;
  padding-left: 20px;
}

.p-feature-articles__outline dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  .l-headlines {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-headlines--tertiary {
    padding-top: 36px;
    padding-bottom: 50px;
  }
  .l-content {
    margin: 0 auto 44px;
    padding-right: 0;
    padding-left: 0;
  }
  .l-content__main {
    padding: 20px 20px 34px;
    border-radius: 0;
  }
  .p-post-list--sub .c-article:nth-of-type(2) {
    margin-left: 0px
  }
  .p-top__top-block {
    flex-direction: column;
    align-items: center;
  }
  .p-top__feature-list-block{
    padding:10px;
  }
  .p-top__feature-list li{
    margin-right:10px;
  }
  .p-top__article-list-wrapper {
    width: 100%;
    margin-top: 20px;
    padding-right: 0;
  }
  .p-top__ranking-wrapper {
    width: 100%;
    margin-top: 28px;
  }
  .p-top__bottom-block {
    flex-direction: column;
  }
  .p-top__controls {
    align-items: baseline;
    width: 100%;
    background-color: transparent;
  }
  .p-top__controls--no-member {
    padding: 9px 18px;
  }
  .p-top__controls--member {
    padding: 0;
  }
  .p-top__select-wrapper {
    width: 128px;
    height: 30px;
    margin-right: 20px;
    border-radius: 20px;
    background-color: var(--COLOR_GRAY_3);
  }
  .p-top__select-wrapper::after {
    right: 10px;
  }
  .p-top__read {
    margin-right: 0;
    margin-left: 0;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .p-top__caution {
    display: none;
  }
  .p-top__banner-wrapper--01 {
    order: -1;
  }
  .p-top__banner-wrapper--02 {
    width: 100%;
  }
  .p-top__block {
    flex-direction: column;
  }
  .p-top__pr {
    margin-top: 8px;
  }
  .p-top__main-article {
    width: 100%;
  }
  .p-post-list--main {
    width: 100%;
    padding: 0;
  }
  .p-top-ranking {
    margin-top: 20px;
    width: 100%;
  }
  .p-post-list--sub {
    flex-direction: column;
    border-bottom: none;
  }
  .p-post-list--sub .c-article:nth-of-type(1) {
    width: 100%;
    border-bottom: 1px solid var(--COLOR_GRAY_1);
  }
  .p-post-list--sub .c-article:nth-of-type(2) {
    width: 100%;
    border-bottom: 1px solid var(--COLOR_GRAY_1);
  }
  .p-post-list--sub .c-article:nth-of-type(3) {
    width: 100%;
    border-bottom: 1px solid var(--COLOR_GRAY_1);
  }
  .p-post-list--sub .c-icon {
    position: absolute;
    right: 8px;
    bottom: 12px;
  }
  .p-post-list--pr {
    flex-direction: column;
  }
  .p-post-list--pr a {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .p-post-list--pr .c-article {
    width: 100%;
  }
  .p-post-list--pr .c-article:not(:first-of-type) {
    border-top: solid 1px var(--COLOR_GRAY_1);
    margin-left: 0px;
  }
  .p-post__series-wrapper {
    margin-top: 34px;
  }
  .p-post__aside {
    padding-right: 20px;
    padding-left: 20px;
  }
  .p-magazine {
    padding-top: 40px;
    padding-bottom: 44px;
  }
  .p-magazine__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .p-magazine__grid {
    grid-template: "text" auto "image" 1fr "button" auto / 1fr;
    place-items: center;
  }
  .p-magazine__text {
    margin-left: 0;
  }
  .p-magazine__lead {
    padding: 7px 20px;
  }
  .p-magazine__title {
    margin-top: 10px;
  }
  .p-magazine__title-main {
    font-size: 24px;
  }
  .p-magazine__title-sub {
    margin-top: -3px;
    font-size: 18px;
  }
  .p-magazine__button-list {
    width: 100%;
    margin-left: 0;
  }
  .p-feature-articles__inner {
    display: block;
  }
  .p-feature-articles__image {
    width: 100%;
    padding: 0 0 10px;
  }
  .p-feature-articles__outline {
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 1199px) {
  .p-post__notes {
    margin-top: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .p-top__controls {
    width: 100%;
  }
  .p-top__block {
    align-items: center;
  }
  .p-top__banner-wrapper--01 {
    margin: 0 auto;
  }
  .p-top__sub-link-wrapper {
    top: 250px;
    margin-bottom: 20px;
  }
  .p-post-list--main {
    padding-right: 0;
  }
  .p-top__event-list{
    flex-flow: column;
  }
  .p-top__event-list li{
    border-bottom: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-right: 0;
    max-width: 100%;
  }
  .p-top__event-list li:first-child {
    padding-top: 0;
  }
  .p-top__event-list li:last-child {
    border-bottom: none;
  }
  .p-top__event-list li img {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .p-top {
    padding-top: 20px;
  }
  .p-top-tag__article-list-wrapper {
    min-width: 390px;
  }
  .p-tag__pr-block {
    flex-direction: column;
  }
  .p-top__sub-link-wrapper {
    top: 0;
  }
  .p-post__column {
    flex-direction: column-reverse;
  }
  .p-post__column--addbtm {
    flex-direction: column;
  }
  .p-post__text {
    margin-top: 20px;
    padding-right: 0;
  }
  .p-post__serialization::after {
    bottom: -4px;
  }
  .p-post__list {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .lead {
    margin-top: 36px;
    margin-bottom: 36px;
    padding-top: 8px;
    padding-bottom: 10px;
  }
  .p-post__body figure img {
    width: 100%;
  }
  .p-post__body figure:not([class]) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-post__body .left-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    float: none;
    margin-right: auto;
    margin-left: auto;
  }
  .p-post__body .right-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    float: none;
    margin-right: auto;
    margin-left: auto;
  }
  .p-post__body h2+.left-img {
    margin-top: 0;
  }
  .p-post__body h2+.right-img {
    margin-top: 0;
  }
  .p-post__body h3+.left-img {
    margin-top: 0;
  }
  .p-post__body h3+.right-img {
    margin-top: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}
@keyframes mmfadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
@keyframes mmfadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-10%);
    }
}
