/* Variable Style */

/* トップページ */
.owned-media {
  width: calc(100% - var(--header-width));
  margin-left: var(--header-width);
  box-sizing: border-box;
  min-height: 100vh;
  padding: 3.85rem 0 10rem;
}

.article-container {
  margin: 0 auto;
  max-width: var(--article-container-width);
  padding: 0 var(--content-padding);
}

@media (max-width: 833px) {
  .owned-media {
    width: 100%;
    margin-left: 0;
    padding: var(--header-sp-height) 0 4.8rem;
  }

  .article-container {
    max-width: 100%;
  }
}

/* ヘッダー */
.owned-media__header {
  width: 12rem;
  height: 100vh;
  padding: 4rem 0;
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--color-light-blue);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 100;
}

.header-sp__icon--wrapper {
  display: none;
}

@media (max-width: 833px) {
  .owned-media__header {
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    background-color: var(--color-light-blue);
    z-index: 100;
  }

  .header-sp__icon--wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.4rem;
  }
}

.header__logo {
  margin-bottom: 3.2rem;
}

.header__logo img {
  max-width: 7.6rem;
  height: auto;
}

.header__description {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin-bottom: 3.2rem;
  font-weight: 500;
}

.header__category {
  width: 100%;
  margin-bottom: 3.2rem;
}

.header__category ul {
  list-style: none;
  text-align: center;
}

.header__category li {
  margin-bottom: 1.6rem;
  text-align: center;
}

.header__category li:last-child {
  margin-bottom: 0;
}

.header__category a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.25rem;
  padding-bottom: 0.3rem;
  background-image: linear-gradient(
    var(--color-category1),
    var(--color-category1)
  );
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 0.1rem;
  transition: background-size 0.3s ease;
  position: relative;
  z-index: 0;
}

.header__category a span {
  position: absolute;
  width: 1.295rem;
  height: 1.228rem;
  top: -0.2rem;
  left: -0.6rem;
  z-index: -1;
}

.header__category a.category1 {
  background-image: linear-gradient(
    var(--color-category1),
    var(--color-category1)
  );
}

.header__category a.category1 .link-bg-category1 {
  background-image: url("../../images/header-link-category1.svg");
}

.header__category a.category2 {
  background-image: linear-gradient(
    var(--color-category2),
    var(--color-category2)
  );
}

.header__category a.category2 .link-bg-category2 {
  background-image: url("../../images/header-link-category2.svg");
  top: auto;
  left: auto;
  bottom: 0;
  right: -0.6rem;
}

.header__category a.category3 {
  background-image: linear-gradient(
    var(--color-category3),
    var(--color-category3)
  );
}

.header__category a.category3 .link-bg-category3 {
  background-image: url("../../images/header-link-category3.svg");
}

.header__category a.category4 {
  background-image: linear-gradient(
    var(--color-category4),
    var(--color-category4)
  );
}

.header__category a.category4 .link-bg-category4 {
  background-image: url("../../images/header-link-category4.svg");
  top: auto;
  left: auto;
  bottom: 0;
  right: -0.6rem;
}

.header__category a:hover {
  background-position: bottom left;
  background-size: 100% 0.1rem;
}

.tag-search {
  margin-bottom: 2rem;
}

.tag-search button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 7.2rem;
  height: 7.2rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: 50%;
  text-align: center;
  padding-bottom: 0.5rem;
}

.tag-search button > img {
  width: 2rem;
  height: 2rem;
}

.tag-search button > p {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.07rem;
  font-weight: 500;
}

.header__sns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
}

.header__sns--title {
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.07rem;
  font-family: var(--font-jost);
  font-weight: 700;
  display: inline-block;
  position: relative;
  margin-bottom: 0 !important;
}

.header__sns--title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%) skewX(20deg);
  width: 0.15rem;
  height: 0.73rem;
  background-color: var(--color-text);
}

.header__sns--title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%) skewX(-20deg);
  width: 0.15rem;
  height: 0.73rem;
  background-color: var(--color-text);
}

.header__sns a {
  margin: 0 0.5rem;
}

@media (max-width: 833px) {
  .header__logo {
    width: 100%;
    margin-bottom: 0;
  }

  .header__logo img {
    vertical-align: middle;
    max-width: 100%;
  }

  .owned-media__header .header__description {
    display: none;
  }

  .owned-media__header .header__category {
    display: none;
  }

  .owned-media__header .tag-search {
    display: none;
  }

  .owned-media__header .header__sns {
    display: none;
  }
}

/* ヘッダーSP */

/* ドロワーメニュー */
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100svh - var(--header-sp-height));
  padding: 2.4rem 0;
  padding-inline-end: 0.8rem;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--color-white);
  z-index: 98;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
.sp-menu.open {
  transform: translateY(calc(0% + var(--header-sp-height)));
}

.sp-menu .categories {
  margin: 2.4rem 0 !important;
}

.sp-menu .header__tags {
  padding-top: 1.5rem;
  padding-inline-start: 1.6rem;
  padding-inline-end: 0.8rem;
}

.sp-menu .header__tags.scrollbar {
  overflow-x: hidden;
}

.sp-menu .tag__content--wrapper {
  margin-bottom: 2.4rem;
  padding-inline: 0;
  padding-block-end: 0;
}

.sp-menu .tags__container {
  padding: 1.6rem;
  margin-top: -3rem;
}

@media (min-width: 834px) {
  .sp-menu {
    display: none;
  }
}

@media (max-width: 833px) {
  .header__sns {
    margin-top: 2.4rem;
  }
}

/* FV */
.owned-media__top--content {
  width: 100%;
  overflow: hidden;
  padding-top: 7vw;
}

.owned-media__fv {
  width: calc(100% - 10rem);
  margin: 0 auto;
  position: relative;
}

.owned-media__fv::before {
  position: absolute;
  content: "";
  background-image: url("../../images/fv-slide-bg-left.svg");
  width: 16rem;
  height: 10rem;
  top: -30.41%;
  left: 22.69%;
  z-index: 1;
}

.owned-media__fv::after {
  position: absolute;
  content: "";
  background-image: url("../../images/fv-slide-bg-right.svg");
  width: 11rem;
  height: 8rem;
  bottom: 7%;
  right: 23%;
  z-index: -1;
}

@media (max-width: 1800px) {
  .owned-media__top--content {
    padding-top: 15rem;
  }

  .owned-media__fv::before {
    top: -28.41%;
    left: 16.69%;
  }

  .owned-media__fv::after {
    bottom: 9%;
    right: 16%;
  }
}

@media (max-width: 1600px) {
  .owned-media__fv::before {
    top: -28.41%;
    left: 10.69%;
  }

  .owned-media__fv::after {
    bottom: 9%;
    right: 12%;
  }
}

@media (max-width: 1280px) {
  .owned-media__fv::before {
    transform: translateX(-20%) translateY(-20%);
  }

  .owned-media__fv::after {
    transform: translateX(6%) translateY(-15%);
  }
}

@media (max-width: 1024px) {
  .owned-media__fv::after {
    transform: translateX(20%) translateY(-30%);
  }
}

@media (max-width: 833px) {
  .owned-media__fv {
    padding-top: 8rem;
    width: 100%;
  }

  .owned-media__fv::before,
  .owned-media__fv::after {
    display: none;
  }

  .owned-media__top--content {
    padding-top: 0;
  }
}

/* スライダー */
.swiper {
  width: 100%;
  max-width: none;
  overflow: visible !important;
  position: relative;
  z-index: 1;
}

.swiper-wrapper {
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}

.swiper-slide {
  width: calc(33.333334%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: transform 1.2s ease-in-out !important;
  padding-bottom: 2rem;
}

.slide {
  overflow: hidden;
}

.slide__media {
  max-width: 100%;
  height: auto;
  margin-bottom: 2.4rem;
}

.slide__media img {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.slide__content {
  width: 100%;
}

.slide__title {
  height: 2lh;
  font-size: 2.4rem;
  line-height: 3.6rem;
  margin-bottom: 1.6rem !important;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.slide__content--info {
  width: 100%;
  display: flex;
  align-items: center;
}

.slide__content--info time {
  font-size: 1rem;
}

.slide__category--tag {
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  margin-right: 0.8rem;
  line-height: 1.8rem;
  color: var(--color-text);
}

.category-category1 {
  background-color: var(--color-category1);
}

.category-category2 {
  background-color: var(--color-category2);
}

.category-category3 {
  background-color: var(--color-category3);
}

.category-category4 {
  background-color: var(--color-category4);
}

.swiper-slide-active {
  -webkit-animation: scaleUp 1s forwards;
  animation: scaleUp 1s forwards;
}

.swiper-slide-prev,
.swiper-slide-next {
  -webkit-animation: scaleDown 1s forwards;
  animation: scaleDown 1s forwards;
}

@-webkit-keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}

@-webkit-keyframes scaleDown {
  0% {
    transform: scale(1.25);
  }
  30% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scaleDown {
  0% {
    transform: scale(1.25);
  }
  30% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.swiper-slide-active a .slide .slide__content {
  display: block;
  -webkit-animation: fadeIn 0.5s forwards;
  animation: fadeIn 0.5s forwards;
}

.swiper-slide-prev a .slide .slide__content,
.swiper-slide-next a .slide .slide__content {
  -webkit-animation: fadeOut 0.5s forwards;
  animation: fadeOut 0.5s forwards;
}

.swiper-slide:not(.swiper-slide-active) a .slide .slide__content {
  display: none;
}

/* Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  top: 38% !important;
  transform: translateY(-10%);
  width: 40px !important;
  height: 40px !important;
  background: var(--color-blue);
  border-radius: 50%;
}

.swiper-button-prev {
  left: 28% !important;
}

.swiper-button-next {
  right: 28% !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: url("../../images/icon-arrow.svg") !important;
  width: 2rem;
  height: 2rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev::after {
  transform: rotate(180deg);
  font-size: 2rem !important;
  position: relative;
  top: -0.2rem;
  left: -0.1rem;
}

.swiper-button-next::after {
  font-size: 2rem !important;
  position: relative;
  top: 0.2rem;
  left: 0.1rem;
}

@media (max-width: 1800px) {
  .swiper-slide {
    width: 50% !important;
    max-width: 66rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: transform 1.2s ease-in-out !important;
    padding-bottom: 2rem;
  }

  .swiper-button-prev {
    left: 22% !important;
  }

  .swiper-button-next {
    right: 22% !important;
  }
}

@media (max-width: 1700px) {
  .swiper-button-prev {
    left: 20.5% !important;
  }

  .swiper-button-next {
    right: 20.5% !important;
  }
}

@media (max-width: 1600px) {
  .swiper-button-prev {
    left: 18.5% !important;
  }

  .swiper-button-next {
    right: 18.5% !important;
  }
}

@media (max-width: 1550px) {
  .swiper-button-prev,
  .swiper-button-next {
    transform: translate(0, -5%);
  }

  .swiper-button-prev {
    left: 17% !important;
  }

  .swiper-button-next {
    right: 17% !important;
  }
}

@media (max-width: 1280px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 11vw !important;
  }
}


@media (max-width: 833px) {
  .swiper {
    width: 100%;
  }

  .swiper-slide {
    width: 50% !important;
  }

  .slide__media {
    margin-bottom: 1.2rem;
  }

  .slide__title {
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin-bottom: 0.8rem !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: 14vw !important;
    width: 2.4rem !important;
    height: 2.4rem !important;
  }

  .swiper-button-prev {
    left: 17vw !important;
  }

  .swiper-button-next {
    right: 17vw !important;
  }

  .swiper-button-prev::after {
    transform: rotate(180deg) scale(0.6);
    top: -0.1rem;
    left: -0.1rem;
  }

  .swiper-button-next::after {
    transform: scale(0.6);
    top: 0.1rem;
    left: 0.1rem;
  }
}

@media (max-width: 600px) {
  .swiper-button-prev {
    left: 16.5vw !important;
  }

  .swiper-button-next {
    right: 16.5vw !important;
  }
}

@media (max-width: 450px) {
  .swiper-button-prev {
    left: 15.5vw !important;
  }

  .swiper-button-next {
    right: 15.5vw !important;
  }
}

/* カテゴリー */
.categories {
  display: flex;
  justify-content: space-between;
  max-width: calc(var(--content-max-width) - 49.889rem);
  margin: 0 auto;
}

.pentagon-category__container {
  position: relative;
  max-width: 16.5rem;
  width: 16.5rem;
  height: 17.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pentagon-category,
.pentagon-category__shadow {
  position: absolute;
  width: 12.8rem;
  height: 12.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(10deg) scale(1);
  -webkit-clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease;
}

.pentagon-category {
  color: var(--color-text);
  font-family: var(--font-jost);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.25rem;
  z-index: 1;
  padding: 1rem;
  padding-block-end: 0;
  text-decoration: none;
  text-align: center;
}

/* 各カテゴリーのスタイル */
.category1 .pentagon-category {
  background-color: var(--color-category1);
}

.category2 .pentagon-category {
  background-color: var(--color-category2);
}

.category3 .pentagon-category {
  background-color: var(--color-category3);
}

.category4 .pentagon-category {
  background-color: var(--color-category4);
}

.pentagon-category__shadow {
  background-color: var(--color-blue);
  top: 3.5rem;
  left: 2.5rem;
  z-index: 0;
}

.pentagon-category__container:nth-child(even) .pentagon-category,
.pentagon-category__container:nth-child(even) .pentagon-category__shadow {
  transform: rotate(-10deg);
}

.pentagon-category__container:hover .pentagon-category,
.pentagon-category__container:hover .pentagon-category__shadow {
  animation: poyo 1s ease;
}

.pentagon-category__container:hover .pentagon-category {
  animation: poyo 1s ease;
}

.pentagon-category__container:nth-child(even):hover .pentagon-category {
  animation: poyoEven 1s ease;
}

.pentagon-category__container:nth-child(even):hover .pentagon-category__shadow {
  animation: poyoEven 1s ease;
}

.pentagon-category__container:nth-child(even) .pentagon-category__shadow {
  top: 3.2rem;
  left: 2.8rem;
}

@keyframes poyo {
	from, to { transform: rotate(10deg); }
	10% { transform: scale(1.2)rotate(10deg); }
	40% { transform: scale(.9)rotate(10deg); }
	60% { transform: scale(1.04)rotate(10deg); }
	80% { transform: scale(.98)rotate(10deg); }
}

@keyframes poyoEven {
	from, to { transform: rotate(-10deg); }
	10% { transform: scale(1.2)rotate(-10deg); }
	40% { transform: scale(.9)rotate(-10deg); }
	60% { transform: scale(1.04)rotate(-10deg); }
	80% { transform: scale(.98)rotate(-10deg); }
}

@media (max-width: 833px) {
  .categories {
    padding: 0 var(--content-padding);
  }

  .pentagon-category__container {
    max-width: 14.7rem;
    max-height: 14.2rem;
    width: 22.51vw;
    height: 20.42vw;
  }

  .pentagon-category,
  .pentagon-category__shadow {
    width: 85%;
    height: 85%;
  }

  .pentagon-category {
    font-size: 1.2rem;
    line-height: 1.8rem;
    letter-spacing: 0.07rem;
    text-align: center;
  }

  .pentagon-category__shadow {
    top: 3vw;
    left: 2.5vw;
  }

  .pentagon-category__container:nth-child(even) .pentagon-category__shadow {
    top: 2.5vw;
    left: 3vw;
  }
}

/* おすすめ記事 */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

@media (max-width: 833px) {
  .hidden-article {
    display: none;
  }
}

.load-more__btn {
  background: var(--color-text);
  border: 2px solid;
  border-radius: 10rem;
  color: var(--color-white);
  position: relative;
  display: none;
  justify-content: space-around;
  align-items: center;
  margin: 4rem auto 0;
  max-width: 24rem;
  width: 24rem;
  padding: 1.25rem 3.6rem 1.25rem 1.6rem;
  transition: 0.3s ease-in-out;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.25rem;
  z-index: 0;
}

.load-more__btn::before {
  content: "";
  background-image: url(../../images/icon-arrow-down.svg);
  width: 1.6rem;
  height: 0.8rem;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

.load-more__btn::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--color-white);
  position: absolute;
  top: calc(50% - 1.2rem);
  right: 2rem;
  border-radius: 50%;
  z-index: 1;
}

/* カード */
.card {
  position: relative;
  transition: transform 0.3s ease;
  display: grid;
  row-gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.card__link {
  position: absolute;
  width: 100%;
  inset: 0;
}

.card:hover {
  transform: translateY(-5px);
}

.card__media {
  margin-bottom: 1.2rem;
}

.card__media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2rem;
  aspect-ratio: 16 / 9;
}

.card__title {
  height: 2lh;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.8rem !important;
}

.card__info {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.card__category--tag {
  padding: 0.2rem 0.6rem;
  margin-right: 0.8rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: var(--color-text);
}

.card__category--tag.category1 {
  background-color: var(--color-category1);
}

.card__category--tag.category2 {
  background-color: var(--color-category2);
}

.card__category--tag.category3 {
  background-color: var(--color-category3);
}

.card__category--tag.category4 {
  background-color: var(--color-category4);
}

.card__info time {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.07rem;
}

@media (max-width: 833px) {
  .card__title {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

/* 記事一覧用スタイル */
#articles > .owned-media__article--flex--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3.1rem;
}

#articles > .owned-media__article--flex--wrapper > .owned-media__title {
  margin-bottom: 0 !important;
}

.link-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.icon-arrow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-text);
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
}

.icon-arrow::before {
  position: absolute;
  content: "";
  background-image: url(../../images/icon-arrow-small.svg);
  width: 0.8rem;
  height: 1.6rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#articles > .article-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2.4rem;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

#articles > .article-grid .card {
  grid-template-rows: none;
}

#articles > .article-grid .card.card1 {
  grid-row: 1 / 3;
  grid-column: 1;
}

#articles > .article-grid .card.card1 img {
  aspect-ratio: 275 / 352;
}

#articles > .article-grid .card.card2 {
  grid-row: 1;
  grid-column: 2;
}

#articles > .article-grid .card.card3 {
  grid-row: 1;
  grid-column: 3;
}

#articles > .article-grid .card.card4 {
  grid-row: 2;
  grid-column: 2;
}

#articles > .article-grid .card.card5 {
  grid-row: 2;
  grid-column: 3;
}

@media (max-width: 833px) {
  .article-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 833px) {
  #articles > .article-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
  }

  #articles > .article-grid .card {
    grid-column: 1 !important;
    grid-row: span 1 !important;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  #articles > .article-grid .card img {
    width: 100%;
    height: auto;
  }

  #articles > .article-grid .card.card1 img {
    aspect-ratio: 16 / 9;
  }
}

/* タグ */
.tags {
  background: var(--color-light-blue);
  padding: 4rem 6rem;
}

.tags__content--wrapper {
  max-width: var(--article-container-width);
  margin: 0 auto;
}

.tags__content--title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.7rem;
  position: relative;
  z-index: 0;
  display: inline-block;
  rotate: -9.98deg;
  color: var(--color-blue);
  top: -5.5rem;
}

.tags__content--title--bg {
  position: absolute;
  content: "";
  background-color: var(--color-light-green);
  -webkit-clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 19.163rem;
  height: 3.803rem;
  z-index: -1;
}

.tags__content--title--bg--shadow {
  position: absolute;
  content: "";
  background-color: var(--color-blue);
  -webkit-clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  top: 65%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 19.163rem;
  height: 3.803rem;
  z-index: -2;
}

.tags__container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: -2rem;
}

.tags__container a {
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.07rem;
  padding: 1.35rem 3.25rem;
  border: 2px solid var(--color-text);
  border-radius: 10rem;
}

.tags__container a:hover {
  background: var(--color-text);
  color: var(--color-white);
}

@media (max-width: 833px) {
  .tags {
    padding: 4rem 1.6rem;
  }

  .tags__content--title {
    left: 5rem;
  }
}

/* フッター */
.owned-media__footer {
  width: calc(100% - var(--header-width));
  margin-left: auto;
  color: var(--color-white);
  box-sizing: border-box;
  margin-top: auto;
}

.owned-media__footer--content {
  background-color: var(--color-text);
  padding: 4rem 8rem;
}

.owned-media__footer--main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.owned-media__footer--logo {
  
}

.owned-media__footer--nav {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8rem;
}

.owned-media__footer--nav ul {
  display: flex;
  justify-content: end;
  gap: 4rem;
  align-items: center;
}

.owned-media__footer--nav ul li a {
  color: var(--color-white);
}

.owned-media__footer--copyright {
  text-align: end;
  font-weight: 400;
}
.owned-media__footer--copyright p {
  font-size: 1rem;
  line-height: 1.4rem;
}

@media (max-width: 833px) {
  .owned-media__footer {
    width: 100%;
  }

  .owned-media__footer--content {
    padding: 3.2rem 2.4rem;
  }

  .owned-media__footer--main {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 3.2rem;
    margin-bottom: 3.2rem;
  }

  .owned-media__footer--copyright {
    text-align: start;
  }
}

/* 探すボタン*/
.floating-search-button {
  position: fixed;
  right: 10rem;
  bottom: 15rem;
  z-index: 98;
}

.floating-search-button button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 7.2rem;
  height: 7.2rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: 50%;
  text-align: center;
  transition: background-color 0.5s ease;
  padding-bottom: 0.5rem;
}

.floating-search-button button > img {
  width: 2rem;
  height: 2rem;
}

.floating-search-button button > p {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.07rem;
  font-weight: 500;
  padding-left: 0.3rem;
}

/* 検索オーバーレイ */
.search-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: calc(100% - var(--header-width));
  height: 100%;
  margin-left: var(--header-width);
  background: var(--color-drawer-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  will-change: backdrop-filter;
  transform: translateZ(0);
  transition: top 0.3s ease-in-out;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.search-overlay.open {
  top: 0;
}

.search-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 11.5rem;
  padding: 4rem 8rem;
  background: var(--color-white);
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: top 0.3s ease-in-out;
  z-index: 1000;
}

.form__flex--wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form__flex--wrapper form {
  width: 95%;
  display: flex;
  align-items: center;
}

.search-container__input--wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--color-text);
}

.form__flex--wrapper input[type="search"] {
  padding: 0.5rem 1rem;
  width: 100%;
  color: var(--color-text);
  outline: none;
}

.form__flex--wrapper input[type="search"]::-webkit-input-placeholder {
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
}

.form__flex--wrapper input[type="search"]::-moz-placeholder {
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
}

.form__flex--wrapper input[type="search"]:-ms-input-placeholder {
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
}

.form__flex--wrapper input[type="search"]::-ms-input-placeholder {
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
}

.form__flex--wrapper input[type="search"]::placeholder {
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
}

@media (max-width: 833px) {
  .floating-search-button {
    display: none;
  }

  .search-overlay {
    width: 100%;
    margin-left: 0;
    z-index: 99;
  }

  .search-container {
    top: var(--header-sp-height);
    padding: 3.2rem 1.6rem;
  }

  .form__flex--wrapper form {
    width: 100%;
  }

  .form__flex--wrapper input[type="search"]::-webkit-input-placeholder {
    font-size: 1.6rem;
  }

  .form__flex--wrapper input[type="search"]::-moz-placeholder {
    font-size: 1.6rem;
  }

  .form__flex--wrapper input[type="search"]:-ms-input-placeholder {
    font-size: 1.6rem;
  }

  .form__flex--wrapper input[type="search"]::-ms-input-placeholder {
    font-size: 1.6rem;
  }

  .form__flex--wrapper input[type="search"]::placeholder {
    font-size: 1.6rem;
  }

  .form__flex--wrapper button {
    display: none;
  }
}

/* タグ検索オーバーレイ */
.tag-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: calc(100% - var(--header-width));
  height: 100%;
  margin-left: var(--header-width);
  background: var(--color-drawer-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  will-change: backdrop-filter;
  transform: translateZ(0);
  transition: left 0.5s ease-in-out;
  z-index: 99;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.tag-overlay.open {
  left: 0;
}

.tag-overlay__container {
  position: absolute;
  top: 0;
  width: 52.5%;
  height: 100%;
  padding: 14.217rem 3.2rem;
  padding-right: calc(3.2rem - 1.7rem);
  background: var(--color-white);
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: start;
  justify-content: start;
  transition: top 0.3s ease-in-out;
  z-index: 1000;
}

.scrollbar {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 1.7rem;
}

.scrollbar::-webkit-scrollbar {
  width: 0.15rem;
  position: relative;
  right: 1rem;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--color-light-green);
  width: 0.15rem;
}

.scrollbar::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.tag__content--wrapper {
  width: 100%;
  background-color: var(--color-light-blue);
  padding: 4rem 1.6rem;
  margin-top: 3rem;
  border-radius: 2rem;
}

.tag-overlay__title {
  color: var(--color-text);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.1rem;
  top: -5.5rem;
  left: 5.5rem;
}

.parent-tag {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.parent-tag__name {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
  padding-bottom: 0.4rem;
  display: block;
  color: var(--color-light-green);
  border-bottom: 1px solid var(--color-text);
}

.child-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

/* 見出し */
.owned-media__title {
  display: flex;
  flex-direction: column;
  flex-flow: column-reverse;
  margin-bottom: 3.1rem;
  font-weight: 700;
}

.owned-media__title--main {
  font-size: var(--font-size-h2-pc);
  color: var(--color-text);
  line-height: 3.6rem;
}

.owned-media__title--sub {
  color: var(--color-sub-heading);
  font-family: var(--font-jost);
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.07rem;
}

.recommend__title--bg {
  position: relative;
}

.recommend__title--bg::before {
  content: "";
  position: absolute;
  background-image: url(../../images/recommend-title-bg.svg);
  top: 50%;
  left: 16rem;
  transform: translateY(-50%);
  width: 6.057rem;
  height: 6.9rem;
  z-index: -1;
}

.articles__title--bg {
  position: relative;
}

.articles__title--bg::before {
  content: "";
  position: absolute;
  background-image: url(../../images/articles-title-bg.svg);
  bottom: 0;
  left: 11rem;
  width: 8.5rem;
  height: 8.084rem;
  z-index: -1;
}

@media (max-width: 833px) {
  .owned-media__title {
    margin-bottom: 2.4rem;
  }

  .owned-media__title--main {
    font-size: var(--font-size-h2-sp);
    line-height: 2.7rem;
  }

  .recommend__title--bg::before {
    background-image: url(../../images/recommend-title-bg-sp.svg);
    width: 3.262rem;
    height: 3.715rem;
    left: 12rem;
  }

  .articles__title--bg::before {
    background-image: url(../../images/articles-title-bg-sp.svg);
    width: 3.749rem;
    height: 3.566rem;
    left: 8rem;
  }
}

/* カテゴリーページ */

/* タイトル */
.owned-media-archive__title--wrapper {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  font-weight: 700;
  margin-bottom: 8rem;
  padding-top: 6.15rem;
}

.owned-media-archive__title {
  position: relative;
  font-size: 3rem;
  line-height: 4.5rem;
}

.owned-media-archive__title span {
  position: relative;
}

.owned-media-archive__title span::before {
  content: "";
  position: absolute;
  background-image: url(../../images/archive-title-bg-left.svg);
  top: -3rem;
  left: -8rem;
  width: 8.5rem;
  height: 8.084rem;
  z-index: -1;
}

.owned-media-archive__title span::after {
  content: "";
  position: absolute;
  background-image: url(../../images/archive-title-bg-right.svg);
  bottom: -6rem;
  right: -12rem;
  width: 8.5rem;
  height: 8.084rem;
  z-index: -1;
}

.owned-media-archive__sub {
  color: var(--color-sub-heading);
  font-family: var(--font-jost);
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.07rem;
}

@media (max-width: 833px) {
  .owned-media-archive__title--wrapper {
    margin: 4.8rem 0;
    padding-top: 0;
  }

  .owned-media-archive__title {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}

/* カテゴリーページの記事一覧 */
.owned-media-archive__wrapper {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  padding: 0 1.6rem;
}

.owned-media-archive {
  width: calc(100% - var(--header-width) - var(--sidebar-width));
}

.owned-media-archive > .container > .article-grid {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
}

/* サイドバー */
.owned-media__sidebar {
  width: var(--sidebar-width);
  padding: 0 4.25rem;
}

.sidebar-sticky-wrapper {
  position: sticky;
  top: 5rem;
}

.popular-articles__title--wrapper {
  display: flex;
  flex-direction: column-reverse;
  font-weight: 700;
  margin-bottom: 2.4rem;
}

.popular-articles__title {
  font-size: 1.8rem;
  line-height: 2.7rem;
}

.popular-articles__sub {
  color: var(--color-sub-heading);
  font-family: var(--font-jost);
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.07rem;
}

.owned-media__sidebar > section {
  margin-bottom: 4.8rem !important;
}

.popular-article__link {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

.popular-article__media img {
  max-width: 9.4rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem;
  aspect-ratio: 16 / 9;
}

.popular-article__title {
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-bottom: 0.5rem !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.popular-article__tag {
  font-size: 1rem;
  margin-right: 0.5rem !important;
}

.popular-article__date {
  font-size: 1rem;
}

.search-button {
  display: flex;
  justify-content: end;
  align-items: center;
}

.search-button button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 7.2rem;
  height: 7.2rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: 50%;
  text-align: center;
  transition: background-color 0.5s ease;
  padding-bottom: 0.5rem;
}

.search-button button > img {
  width: 2rem;
  height: 2rem;
}

.search-button button > p {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.07rem;
  font-weight: 500;
  padding-left: 0.3rem;
}

@media (max-width: 1100px) {
  .owned-media-archive > .container > .article-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 900px) {
  .owned-media-archive > .container > .article-grid {
    grid-template-columns: repeat(1, minmax(150px, 1fr));
  }
}

@media (max-width: 833px) {
  .owned-media-archive__wrapper {
    flex-direction: column;
    margin-left: 0;
  }

  .owned-media-archive {
    width: 100%;
  }

  .owned-media__sidebar {
    width: 100%;
    padding: 0;
    position: static;
    max-height: none;
    overflow-y: visible;
  }

  .sidebar-sticky-wrapper {
    position: initial;
  }

  .popular-articles {
    margin-bottom: 0 !important;
  }

  .search-button {
    display: none;
  }
}

/* ページネーション */
.owned-media-archive__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.8rem;
  font-family: var(--font-jost);
  font-weight: 700;
  line-height: 2.25rem;
}

.owned-media-archive__pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-text);
  border-radius: 10rem;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0.1rem 0 0 0.1rem;
  background-color: var(--color-white);
  color: var(--color-text);
  text-decoration: none;
}

.owned-media-archive__pagination .page-numbers[aria-current="page"] {
  background-color: var(--color-text);
  color: var(--color-white);
}

.owned-media-archive__pagination .page-numbers.dots {
  border: none;
  align-items: baseline;
  background-color: transparent;
}

ul.pagination {
  display: flex;
  list-style: none;
  align-items: center;
  padding: 0;
  gap: 1.6rem;
}

ul.pagination li {
  display: block;
}

ul.pagination li a {
  display: block;
  text-decoration: none;
  color: var(--color-text);
}

ul.pagination li.active a {
  background-color: var(--color-text);
  color: var(--color-white);
}

.pagination-arrow__right {
  rotate: 180deg;
}

.ads {
  margin-bottom: 4.8rem !important;
}

.ads div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.ads img {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 833px) {
  .ads img {
    max-width: 50rem;
    width: 100%;
  }
}

/* シングルページ */
.owned-media-single {
  width: calc(100% - var(--header-width));
  margin-left: var(--header-width);
  display: flex;
  justify-content: center;
}

.owned-media-single main {
  width: 100%;
}

.owned-media-post__thumbnail {
  width: 100%;
  position: relative;
  margin-bottom: 4.8rem;
}

.owned-media-post__thumbnail::before {
  position: absolute;
  content: "";
  width: 100%;
  inset: 0;
  background-color: var(--color-single-fv-overlay);
  z-index: 1;
}

.owned-media-post__thumbnail img {
  width: 100%;
  height: 37rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.owned-media-single__content {
  width: 100%;
  display: flex;
  padding: 0 8rem;
  margin-bottom: 8rem;
}

.owned-media-single__upper--wrapper {
  width: calc(100% - var(--sidebar-width));
  max-width: 88rem;
  margin: -18.5rem auto 0;
  position: relative;
  z-index: 1;
}

.owned-media-single__upper--wrapper > article {
  background-color: var(--color-single-article-bg);
  border-radius: 2rem;
  padding: 4.8rem;
  margin-bottom: 3.2rem;
}

@media (max-width: 1060px) {
  .owned-media-single__content {
    flex-direction: column;
  }

  .owned-media-single__upper--wrapper {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 833px) {
  .owned-media-single main {
    margin-top: var(--header-sp-height);
  }

  .owned-media-single {
    width: 100%;
    margin-left: auto;
  }

  .owned-media-post__thumbnail img{
    height: 12.44rem;
  }

  .owned-media-single__content {
    padding: 0 1.6rem;
    margin-bottom: 4.8rem;
  }

  .owned-media-single__upper--wrapper {
    margin-top: -7rem;
  }

  .owned-media-single__upper--wrapper > article {
    padding: 2.4rem 1.6rem;
  }
}

.owned-media-post__header {
  margin-bottom: 8rem;
}

.owned-media-post__title {
  margin-bottom: 1.2rem;
}

.owned-media-post__content {
  margin-bottom: 4rem;
}

@media (max-width: 833px) {
  .owned-media-post__header {
    margin-bottom: 2.4rem;
  }
}

/* 目次 */
.owned-media-post__content .no_bullets {
  margin: 8rem 0 4rem;
  padding: 0 2.4rem 2.4rem;
  border-radius: 1rem;
  position: relative;
}

.owned-media-post__content .toc_title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.7rem;
  position: relative;
  z-index: 0;
  display: inline-block;
  rotate: -9.98deg;
  color: var(--color-blue);
  top: -2rem;
  margin-bottom: 0;
}

.owned-media-post__content .toc_title .toc_title--shadow {
  position: absolute;
  content: "";
  -webkit-clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15.378rem;
  height: 3.384rem;
  z-index: -1;
}

.owned-media-post__content .toc_title .toc_title--shadow--bg {
  position: absolute;
  content: "";
  background-color: var(--color-blue);
  -webkit-clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  top: 65%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 15.378rem;
  height: 3.384rem;
  z-index: -2;
}

.owned-media-category-category1 .toc_title .toc_title--shadow {
  background-color: var(--color-category1);
}

.owned-media-category-category2 .toc_title .toc_title--shadow {
  background-color: var(--color-category2);
}

.owned-media-category-category3 .toc_title .toc_title--shadow {
  background-color: var(--color-category3);
}

.owned-media-category-category4 .toc_title .toc_title--shadow {
  background-color: var(--color-category4);
}

.owned-media-category-category1 #toc_container {
  background-color: var(--color-category1-light);
}

.owned-media-category-category2 #toc_container {
  background-color: var(--color-category2-light);
}

.owned-media-category-category3 #toc_container {
  background-color: var(--color-category3-light);
}

.owned-media-category-category4 #toc_container {
  background-color: var(--color-category4-light);
}

.toc_list > li {
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.toc_list > li:last-of-type {
  margin-bottom: 0;
}

.toc_list > li > a {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.toc_list > li > ul > li {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 0.8rem;
}

.toc_list > li > ul > li > a > li {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 0.8rem;
}

.toc_list > li > ul > li > a > li > a > li {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 0.8rem;
}

@media (max-width: 833px) {
  .owned-media-post__content .toc_title {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.1;
  }

  .owned-media-post__content .toc_title .toc_title--shadow {
    width: 12.248rem;
    height: 2.812rem;
  }
  
  .owned-media-post__content .toc_title .toc_title--shadow--bg {
    width: 12.248rem;
    height: 2.812rem;
  }
}

/* 記事内のスタイル */
.owned-media-post__content > h1,
.owned-media-post__content > h2,
.owned-media-post__content > h3,
.owned-media-post__content > h4 {
  margin-bottom: 1.6rem;
}

.owned-media-post__content > p {
  margin-bottom: 3.2rem !important;
  line-height: 2.25rem !important;
  letter-spacing: 0 !important;
}

.owned-media-single__content > article > p:last-child {
  margin-bottom: 4rem;
}

.owned-media-post__content > ol,
.owned-media-post__content > ul {
  list-style-position: inside;
}

.owned-media-post__content > ul {
  list-style-type: disc;
}

.owned-media-post__content > p > a {
  text-decoration: underline;
}

.owned-media-post__content > p > span > a {
  text-decoration: underline;
}

.owned-media-post__content > p > span > iframe {
  width: 100%;
}

.owned-media-post__content > table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3.2rem;
}

.owned-media-post__content > table > tbody > tr > td {
  border: 1px solid var(--color-text);
  text-align: center;
  padding-inline: 0.175rem;
}

/* 広告 */
.owned-media-single__ads {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.owned-media-single__ads img {
  width: 100%;
  max-width: 61.2rem;
}

/* 著者 */
.owned-media-single__author {
  padding: 0 2.4rem 2.4rem;
  border-radius: 1rem;
}

.author__title {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2.1rem;
  position: relative;
  z-index: 0;
  display: inline-block;
  rotate: -9.98deg;
  color: var(--color-blue);
  top: -1.5rem;
  left: -5rem;
  margin-bottom: 0;
}

.author__title--bg {
  position: absolute;
  content: "";
  -webkit-clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15.378rem;
  height: 3.384rem;
  z-index: -1;
}

.author__title--bg--shadow {
  position: absolute;
  content: "";
  background-color: var(--color-blue);
  -webkit-clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  clip-path: polygon(5% 100%, 0 0%, 100% 15%, 95% 90%);
  top: 65%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 15.378rem;
  height: 3.384rem;
  z-index: -2;
}

.author__content--wrapper {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.author--thumbnail {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

.author--thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.author--info {
  font-weight: 500;
}

.author--name {
  font-size: 1.4rem;
  line-height: 2.1rem;
  margin-bottom: 0.5rem !important;
}

.author--description {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.07rem;
}

.owned-media-category-category1 > .owned-media-post__content > h2 {
  color: var(--color-category1);
}
.owned-media-category-category2 > .owned-media-post__content > h2 {
  color: var(--color-category2);
}
.owned-media-category-category3 > .owned-media-post__content > h2 {
  color: var(--color-category3);
}
.owned-media-category-category4 > .owned-media-post__content > h2 {
  color: var(--color-category4);
}

.owned-media-single__author.category-category1 {
  background-color: var(--color-category1-light);
}

.owned-media-single__author.category-category2 {
  background-color: var(--color-category2-light);
}

.owned-media-single__author.category-category3 {
  background-color: var(--color-category3-light);
}

.owned-media-single__author.category-category4 {
  background-color: var(--color-category4-light);
}

.owned-media-single__author.category-category1 .author__title--bg {
  background-color: var(--color-category1);
}

.owned-media-single__author.category-category2 .author__title--bg {
  background-color: var(--color-category2);
}

.owned-media-single__author.category-category3 .author__title--bg {
  background-color: var(--color-category3);
}

.owned-media-single__author.category-category4 .author__title--bg {
  background-color: var(--color-category4);
}

@media (max-width: 1060px) {
  .owned-media-single__author {
    margin-bottom: 0;
  }
}

@media (max-width: 833px) {
  .author__title {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.1;
    top: -2rem;
    left: -3rem;
  }
  
  .author__title--bg {
    width: 15.048rem;
    height: 2.812rem;
  }
  
  .author__title--bg--shadow {
    width: 14.548rem;
    height: 2.812rem;
  }
}

.archive-back__btn--wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
}

.archive-back__btn {
  background: transparent;
  border: 2px solid;
  border-radius: 10rem;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 24rem;
  width: 24rem;
  height: 4.8rem;
  padding: 1.35rem 4rem 1.35rem 2rem;
  transition: 0.3s ease-in-out;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.1rem;
  z-index: 0;
}

.archive-back__btn::before {
  content: "";
  background-image: url(../../images/icon-arrow-small.svg);
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(calc(-50% - 0.2rem));
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

.archive-back__btn::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: calc(50% - 1.2rem);
  right: 2rem;
  border-radius: 50%;
  z-index: 1;
}

.archive-back__btn.category-category1 {
  border-color: var(--color-category1);
  color: var(--color-category1);
}

.archive-back__btn.category-category1::after {
  background-color: var(--color-category1);
}

.archive-back__btn.category-category2 {
  border-color: var(--color-category2);
  color: var(--color-category2);
}

.archive-back__btn.category-category2::after {
  background-color: var(--color-category2);
}

.archive-back__btn.category-category3 {
  border-color: var(--color-category3);
  color: var(--color-category3);
}

.archive-back__btn.category-category3::after {
  background-color: var(--color-category3);
}

.archive-back__btn.category-category4 {
  border-color: var(--color-category4);
  color: var(--color-category4);
}

.archive-back__btn.category-category4::after {
  background-color: var(--color-category4);
}

@media (max-width: 833px) {
  .archive-back__btn--wrapper {
    margin-bottom: 4.8rem;
  }
}

.related-articles__title--wrapper {
  display: flex;
  flex-direction: column-reverse;
  font-weight: 700;
  margin-bottom: 3.1rem;
}

.related-articles__title {
  font-size: 2.4rem;
  line-height: 3.6rem;
}

.related-articles__sub {
  color: var(--color-sub-heading);
  font-family: var(--font-jost);
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.07rem;
}

.owned-media-single__related .article-grid {
  max-width: 100%;
}

.fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0.8rem;
  margin-left: var(--header-width);
  justify-content: center;
  align-items: center;
  background-color: var(--color-text);
  padding: 1.618rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  z-index: 90;
}

.fixed-banner__btn--flex--wrapper div {
  display: flex;
  gap: 1.6rem;
}

.fixed-banner img {
  width: auto;
  max-height: 5.2rem;
  height: auto;
}

.fixed-banner__btn--flex--wrapper div a img:hover {
  filter: brightness(1.1);
  will-change: filter;
  transform: translateZ(0);
}

.fixed-banner.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none; /* クリックを無効化 */
}

.fixed-banner__btn {
  background: var(--color-yellow);
  border-radius: 10rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 24.2rem;
  width: 24.2rem;
  padding: 2.15rem 5.8rem 2.15rem 3.4rem;
  transition: 0.3s ease-in-out;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.1rem;
  z-index: 0;
}

.fixed-banner__btn::before {
  content: "";
  background-image: url(../../images/icon-arrow-small.svg);
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(calc(-50% - 0.2rem));
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

.fixed-banner__btn::after {
  content: "";
  background-color: var(--color-text);
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: calc(50% - 1.2rem);
  right: 2rem;
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 1240px) {
  .owned-media-single__related .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1060px) {
  .owned-media-single__related {
    display: none;
  }

  .owned-media-single .owned-media__sidebar {
    width: 100%;
  }

  .owned-media-single .owned-media__sidebar .ads {
    display: none;
  }

  .owned-media-single .owned-media__sidebar .search-button {
    display: none;
  }
}

@media (max-width: 833px) {
  .fixed-banner {
    padding: 1.2rem 0;
    gap: 1.2rem;
    margin-left: 0;
    flex-direction: column;
  }

  .fixed-banner img {
    max-height: 4rem;
  }

  .fixed-banner__btn {
    padding: 1.35rem 4rem 1.35rem 2rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .fixed-banner__btn::before {
    width: 1rem;
    height: 1rem;
    right: 1.6rem;
  }

  .fixed-banner__btn::after {
    width: 1.8rem;
    height: 1.8rem;
    top: calc(50% - 0.9rem);
    right: 1.2rem;
  }
}

.popup {
  position: fixed;
  display: none;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup.active {
  display: flex;
}

.popup__content {
  padding: 4.8rem;
  max-width: 60rem;
  width: 100%;
}

.popup__content--header {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 1.6rem;
}

.popup__close--btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.popup__close--btn img {
  padding-left: 0.1rem;
  width: 1.2rem;
  height: 1.2rem;
}

.popup__inner {
  display: flex;
  gap: 2.4rem;
}

.simplebar-track, .simplebar-scrollbar {
  -webkit-overflow-scrolling: auto;
}

.simplebar-track {
  right: -0.9rem;
  background: #f1f1f1;
  width: 0.15rem;
  -webkit-appearance: none;
}

.simplebar-scrollbar {
  background: var(--color-light-green);
  width: 0.15rem;
  -webkit-appearance: none;
}

.linkcard {
  line-height: 1;
  background-color: var(--color-white);
  border: 1px solid #ccc;
  border-radius: 5px;
  word-wrap: break-word;  
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  transform: translateY(-5px);
  transition: all 0.5s ease;
}

.linkcard:hover {
  transform: translateY(0);
  box-shadow: none;
}

.linkcard a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.2s ease;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.linkcard-wrapper {
  display: flex;
  align-items: center;
  column-gap: 2.5%;
}

.linkcard-thumbnail {
  width: 25%;
}

.linkcard-thumbnail img {
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.linkcard-texts {
  width: 75%;
}

.linkcard-texts p {
  margin: 0 !important;
  margin-bottom: 1.5% !important;
  padding: 0 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
}

.linkcard-texts p:last-child {
  margin-bottom: 0 !important;
}

.linkcard-title {
  font-size: clamp(1rem, 1.17vw, 1.5rem);
  font-weight: 700;
  padding: 17px 20px 10px;
  color: var(--color-text);
}

.linkcard-exerpt {
  font-size: clamp(1rem, 0.94vw, 1.2rem);
  padding: 0 20px 10px;
  color: var(--color-text);
}

.linkcard-url {
  font-size: clamp(1rem, 0.94vw, 1.2rem);
  padding: 0 20px 10px;
  color: var(--color-text);
}

@media (max-width: 833px) {
  .linkcard-title {
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 700;
    padding: 17px 20px 10px;
    color: var(--color-text);
  }
  
  .linkcard-exerpt {
    font-size: clamp(1rem, 1.44vw, 1.2rem);
    padding: 0 20px 10px;
    color: var(--color-text);
  }
  
  .linkcard-url {
    font-size: clamp(1rem, 1.44vw, 1.2rem);
    padding: 0 20px 10px;
    color: var(--color-text);
  }
}