@charset "UTF-8";

/* =========================================================
  body
========================================================= */

body {
  padding-top: 100px;
}

@media(max-width:767px) {
  body {
    padding-top: 80px;
  }
}


/* =========================================================
  btn
========================================================= */

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 9999px;
  background: var(--color-main);
  color: #fff !important;
  font-size: var(--fz-14);
  font-weight: 500;
  transition: opacity 0.2s;
  text-decoration: none;
  justify-content: space-between;
  width: 100%;
  max-width: 220px;
}

.latest__splink {
  position: absolute;
  right: 0;
  bottom: 0;
}

.btn-more:link {
  color: white;
}

.btn-more:hover {
  opacity: 0.75;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  border-radius: 9999px;
  background: var(--color-main);
  color: #fff;
  font-size: var(--fz-14);
  font-weight: 500;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn-read:hover {
  opacity: 0.75;
}


/* =========================================================
  HERO
========================================================= */

.material-symbols-outlined.hero__articleIcon {
  font-size: clamp(1.6rem, calc(20 * var(--vw)), 2.0rem);
}

.hero {
  width: 100%;
  /* overflow: hidden; */
  padding: 0px 20px;
}

.hero__wrap {
  display: flex;
  /* min-height: calc(100vh - 70px); */
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  margin-top: 30px;
  gap: clamp(30px, 3.1vw, 60px);
  position: relative;
}

.hero__overlay-img {}


@media screen and (max-width: 767px) {
  .hero {
    padding: 0 4%;
  }
}

/* =========================================================
  hero left: feature
========================================================= */

.js-autoplay-toggle {
  position: absolute;
  /* bottom: 50px; */
  right: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 0;
  gap: 10px;
  font-size: clamp(13px, calc(14 * var(--vw)), 14px);
  top: 20px;
  border: 0;
  border-radius: 2px;
  /* width: 28px; */
  /* height: 28px; */
  overflow: hidden;
  cursor: pointer;
}

@media(max-width:1024px) {
  .js-autoplay-toggle {
    right: 230px;
    top: 70px;
  }
}

@media(max-width:767px) {
  .js-autoplay-toggle {
    right: 10px;
    bottom: unset;
    top: 10px;
  }
}

.js-autoplay-toggle span {
  background-color: var(--color-main);
  color: white;
  /* border-radius: 2px; */
  padding: 5px;
  font-size: 20px;
}

.hero__feature {
  position: relative;
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 30px;
}

.slider {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 30px;
}

.hero__slider {
  display: flex;
  gap: 30px;
  /* max-height: 550px; */
  margin-left: -30px;
  /* height: clamp(400px, 45vw, 650px); */
  /* margin-top: 40px; */
}

@media (max-width:1024px) {
  .hero__slider {
    margin-top: 50px;
  }
}

@media (max-width:767px) {
  .hero__slider {
    margin-top: 00px;
  }
}

.hero__mainBox {
  /* position: relative; */
  /* flex: 1; */
  /* display: flex; */
  /* flex-direction: column; */
  /* overflow-y: scroll; */
  /* max-height: 550px; */
  /* height: 640px; */
  padding-left: 30px;
  /* padding-bottom: 100px; */
  /* height: 30vw !important; */
}

@media (max-width:1660px) {
  .hero__mainBox {
    padding-left: 0px;
  }

  .hero__slider {
    margin-left: 0;
  }
}

.hero__mainBox {}

/* article link: badge + title as one clickable group */
.hero__articleLink {
  position: relative;
  display: flex;
  background-color: white;
  border-radius: 6px;
  padding: 27px 70px 27px 40px;
  color: black;
  gap: clamp(20px, calc(40 * var(--vw)), 40px);
  filter: drop-shadow(0px 0px 2px 1);
  box-shadow: 0px 0px 5px 1px rgba(190, 190, 190, 0.45);
  align-items: center;
}


@media(max-width:767px) {
  .hero__articleLink {
    padding: 20px;
  }
}

.hero__articleLink:hover {
  opacity: 0.7;
}

/* "New" badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0px 5px;
  color: var(--color-main);
  font-size: clamp(20px, 1.8vw, var(--fz-28));
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  border-radius: 2px;
  line-height: 1;
  background-image: linear-gradient(#ffffff, #ffffff 49%, #c7d972 50% 100%);
  height: fit-content;
  min-width: fit-content;
}

/* article title */
.hero__articleHead {
  /* flex: 1; */
  min-width: 0;
  font-size: clamp(18px, 1.8vw, var(--fz-28));
  font-weight: 500;
  /* white-space: nowrap; */
  border-radius: 6px;
  line-height: 1.3;
  display: flex;
  width: calc(100% - 110px);
  gap: 10px;
  align-items: center;
}

.hero__img {
  flex: 1;
  /* overflow: hidden; */
  max-height: 550px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

img.hero__overlay-img {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
}

/* content overlay at bottom */
.hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0;
  /* min-height: 13vh; */
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%); */
}

.hero__date {
  display: inline-block;
  font-size: var(--fz-12);
  color: white;
  margin-bottom: 10px;
  font-family: var(--font-en);
  background-color: #1A1A1A;
  padding: 5px 10px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  /* font-size: var(--fz-34); */
}

.hero__title span {
  display: inline-block;
  width: fit-content;
  padding: 10px 10px;
  background: #fff;
  /* font-size: clamp(1.6rem, 1.5vw, 2.2rem); */
  font-weight: 450;
  line-height: 1;
  font-size: clamp(16px, 1.8vw, var(--fz-34));
}

.hero__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 30px;
}

@media(max-width:767px) {
  .hero__tags {
    margin-left: 0px;
  }
}

.hero__tag {
  font-size: var(--fz-12);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero__tag:hover {
  opacity: 0.7;
}

.hero__tagSep {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fz-12);
}


/****** MV no date temporary *****/
.hero__mainBox.is-no-date .hero__overlay {
  bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .hero__mainBox.is-no-date .hero__overlay {
    bottom: 54px;
  }
}

@media screen and (max-width: 767px) {
  .hero__mainBox.is-no-date .hero__overlay {
    bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  .hero__mainBox.is-no-date .hero__overlay {
    bottom: 50px;
  }
}


/* =========================================================
  hero thumbnails column
========================================================= */

.hero__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  width: 180px;
  flex-shrink: 0;
  justify-content: flex-start;
  overflow-y: auto;
  height: 550px;
}

@media (max-width:767px) {
  .hero__thumbs {
    display: none;
  }
}

@media (max-width:1300px) {}

div#heroThumbs-track {
  max-height: 435px;
  margin-top: 40px;
}

.splide__arrows {
  display: flex;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  max-height: 515px;
  z-index: -1;
}

@media (max-width:1300px) {
  .splide__arrows {
    /* height: 515px; */
  }
}

.splide__arrows.splide__arrows--ttb .splide__arrow {
  opacity: 1;
}

.hero__thumbBtn {
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  transition: .3s;
  opacity: 0.6;
  border: none !important;
}

.hero__thumbBtn.is-active,
.hero__thumbBtn:hover {
  border-color: #fff;
  opacity: 1;
}

.hero__thumbBtn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* aspect-ratio: 16/9; */
}


/* =========================================================
  hero right: TODAY panel
========================================================= */

.hero__today {
  max-width: 360px;
  width: 100%;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 20px 30px 40px 30px;
  gap: 16px;
  border-radius: 6px;
}

.hero__today .latest__date {
  font-size: clamp(1.4rem, calc(16 * var(--vw)), 1.6rem);
  margin-bottom: 0;
}

.hero__today .latest__meta {
  margin-bottom: 0;
  gap: 6px;
}

.hero__today .article__outline__tag {
  font-size: clamp(1.2rem, calc(14 * var(--vw)), 1.4rem);
}

.hero__today .cat__tag {
  font-size: var(--fz-12);
  padding: 2px 10px;
}

/* tagline */
.hero__todayTagline {
  text-align: center;
  font-size: var(--fz-15);
  /* color: #555; */
  letter-spacing: 0.05em;
}

/* hgroup: tagline + header 繧偵∪縺ｨ繧√ｋ繝ｩ繝・ヱ繝ｼ */
.hero__todayGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* h2: nj_today.svg 繧貞・蛹・☆繧九・繝・ム繝ｼ隕句・縺・*/
.hero__todayHeader {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.hero__todayLogo {
  width: 100%;
  height: auto;
  display: block;
  max-width: 280px;
}

/* body: dl > dt(image) + dd(content) */
.hero__todayBody {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
}

/* dl 縺ｮ譏守､ｺ繧ｯ繝ｩ繧ｹ */
.hero__todayInner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  align-items: center;
  width: 100%;
}

@media(max-width:1024px) {
  .hero__todayInner {
    /* display: flex; */
    flex-direction: row;
    /* gap: 30px; */
    align-items: flex-start;
  }
}

@media(max-width:767px) {
  .hero__todayLogo {
    max-width: 220px;
  }
}

@media(max-width:480px) {
  .hero__todayInner {
    /* display: flex; */
    /* flex-direction: row; */
    /* gap: 30px; */
    /* align-items: flex-start; */
    flex-direction: column;
    align-items: center;
  }
}

/* article image (dt) */
.hero__todayImgWrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
  /* max-width: 320px; */
  border-radius: 6px;
}

@media(max-width:1024px) {
  .hero__todayImgWrap {
    width: 50%;
  }
}

@media(max-width:480px) {
  .hero__todayImgWrap {
    width: 100%;
    /* display: flex; */
  }
}

.hero__todayImgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* content area (dd) */
.hero__todayContWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  width: 100%;
}

@media(max-width:1024px) {
  .hero__todayContWrap {
    padding-top: 0;
  }
}

/* outer div 繝ｩ繝・ヱ繝ｼ・医ち繧､繝医Ν繝悶Ο繝・け蜈ｨ菴難ｼ・*/
div.hero__todayTitle {
  display: flex;
  flex-direction: column;
}

/* h3: 險倅ｺ九ち繧､繝医Ν繝・く繧ｹ繝・*/
h3.hero__todayTitle {
  font-size: clamp(1.6rem, calc(18 * var(--vw)), 1.8rem);
  font-weight: 500;
  /* color: var(--color-main); */
  line-height: 1.6;
  max-height: 60px;
  overflow: hidden;
}

#todayImage .splide__pagination {
  bottom: 15px;
  gap: 0px;
}

#todayImage .splide__pagination__page.is-active {
  transform: scale(1);
  background: var(--color-main);
}

#todayImage .splide__pagination__page {
  background: white;
  opacity: 1;
  height: 10px;
  width: 10px;
}

#todayImage .splide__slide a {
  aspect-ratio: 16/9;
  pointer-events: none;
}

.hero__todayText {
  font-size: var(--fz-14);
  font-weight: 400;
  /* color: #555; */
  line-height: 1.8;
  max-height: 155px;
  overflow: hidden;
}

.hero__todayCat {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  border: 1px solid #999;
  border-radius: 9999px;
  font-size: var(--fz-12);
  color: #333;
  text-decoration: none;
  width: fit-content;
  transition: 0.2s;
}

.hero__todayCat:hover {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

/* buttons */
.hero__todayBtns {
  display: flex;
  flex-direction: column;
  /* border-top: 1px solid #e0e0e0; */
  margin-top: auto;
  gap: 10px;
}

.hero__todayDetail {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: var(--fz-14);
  color: var(--color-main);
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  transition: background 0.2s;
}

.hero__todayDetail:hover {
  background: #f5f5f5;
}

.hero__todayMore {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--color-main);
  color: #fff;
  font-size: var(--fz-14);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero__todayMore:hover {
  opacity: 0.8;
}


/* =========================================================
  MARQUEE
========================================================= */

.marquee {
  overflow: hidden;
  margin-top: -30px;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 150s linear infinite;
}

.marquee__track.is-paused {
  animation-play-state: paused;
}

.marquee__inner {
  display: flex;
  flex-shrink: 0;
}

.marquee__inner span {
  font-family: var(--font-en);
  font-size: clamp(80px, 12.6vw, var(--fz-270));
  font-weight: 400;
  color: #7CCBE0;
  opacity: 1;
  padding: 0 40px;
  white-space: nowrap;
  letter-spacing: -0.02em;
  line-height: 1;
  animation: textColorAnimation 10s ease-in-out infinite;
}

@keyframes textColorAnimation {
  0% {
    color: rgb(55 163 115);
  }

  50% {
    color: rgb(173 217 114);
  }

  100% {
    color: rgb(55 163 115);
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* =========================================================
  PICKUP
========================================================= */

.pickup_Lineart {
  position: absolute;
  /* inset: 0; */
  width: 1920px;
  height: auto;
  transform: scale(1.30);
  bottom: -8%;
}

.pickup {
  width: 100%;
  padding: 60px 20px 120px 20px;
}

.pickup__inner {
  width: 100%;
  margin-inline: auto;
  max-width: 1600px;
}


/* large items */

.pickup__largeWrap {
  display: flex;
  /* gap: clamp(10px, calc(24 * var(--vw)), 24px); */
  gap: 24px;
}

.pickup__largeItem {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* width: calc(50% - 12px); */
  /* min-height: 320px; */
  padding: 28px 28px 28px 32px;
  background: #ececec;
  border-radius: 10px;
  /* color: var(--color-main); */
  /* text-decoration: none; */
  transition: opacity 0.2s;
  overflow: hidden;
  background-color: #ffffffde;
  gap: clamp(15px, calc(40 * var(--vw)), 40px);
  flex: 1;
}

.pickup__largeItem:hover {
  opacity: 0.85;
}

.pickup__largeContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  padding-right: 0;
}

.pickup__label {
  font-size: var(--fz-12);
  color: black;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.pickup__txt {
  /* margin-top: 0; */
}

.pickup__title {
  font-family: var(--font-en);
  font-size: clamp(3.2rem, calc(52 * var(--vw)), 5.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  /* color: var(--color-main); */
}

.pickup__desc {
  margin-top: 16px;
  font-size: var(--fz-15);
  /* color: #555; */
  line-height: 1.7;
}

@media (max-width:767px) {
  .pickup__largeWrap {
    gap: 12px;
  }
}

@media (max-width:480px) {
  .pickup__desc {
    width: 85%;
  }
}

.pickup__img {
  width: 220px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  align-self: stretch;
  aspect-ratio: 1/1;
  height: 100%;
}

.pickup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pickup__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(20px, calc(32 * var(--vw)), 32px);
  height: clamp(20px, calc(32 * var(--vw)), 32px);
  background: var(--color-main);
  color: #fff;
  border-radius: 50%;
  font-size: var(--fz-18);
  margin-top: 0;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.pickup__arrow img {
  width: 50%;
  height: auto;
}


/* small category items */

.pickup__smallWrap {
  display: flex;
  gap: 24px;
  /* margin-top: clamp(10px, calc(24 * var(--vw)), 24px); */
  margin-top: 24px;
}

.pickup__smallItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  min-height: 120px;
  padding: 20px 24px;
  background: #ececec;
  border-radius: 10px;
  color: var(--color-main);
  text-decoration: none;
  transition: opacity 0.2s;
  background-color: #ffffffde;
  position: relative;
}

.pickup__smallItem:hover {
  opacity: 0.8;
}

.pickup__smallLogo {
  flex: 1;
  min-width: 0;
  padding-right: 16px;
}

.pickup__smallLogo img {
  /* width: clamp(125px, calc(280 * var(--vw)), 280px); */
  max-height: 65px;
  object-fit: contain;
  object-position: left center;
  display: block;
  max-width: 280px;
  min-width: 120px; 
  width: 88%;
}

.pickup__arrow.alt {
  margin-top: 0;
  /* width: 32px; */
  /* height: 32px; */
  /* font-size: var(--fz-14); */
  flex-shrink: 0;
  bottom: auto;
  right: clamp(10px, calc(25 * var(--vw)), 25px);
}


@media screen and (max-width: 767px) {
  .pickup__smallLogo img {
    width: 80%;
  }
}


/* =========================================================
  LATEST CONTENT
========================================================= */

.latest {
  width: 100%;
  padding:
    clamp(40px, calc(80 * var(--vw)), 80px) 0px clamp(50px, calc(100 * var(--vw)), 100px) 0px;
  /* background: #f5f5f5; */
}

.latest__inner {
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.latest__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(20px, calc(40 * var(--vw)), 40px);
  width: 100%;
  max-width: calc(1600px - -40px);
  padding: 0px 20px;
}

.latest__label {
  font-family: var(--font-en);
  font-size: var(--fz-18);
  font-weight: 600;
  color: #b6ca59;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.latest__heading {
  font-size: clamp(2.4rem, calc(48 * var(--vw)), 4.8rem);
  font-weight: 500;
  /* color: var(--color-main); */
  line-height: 1.2;
}


/* list */

.latest__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

.latest__item {
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  transition: .3s;
}


.latest__item:hover {
  background-color: white;
}

.latest__item:last-child {
  border-bottom: 1px solid #ddd;
}

.latest__wrap {
  display: flex;
  width: 100%;
  max-width: 1600px;
  align-items: center;
  gap: clamp(20px, calc(32 * var(--vw)), 32px);
  position: relative;
}


@media(max-width:767px) {
  .latest__wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .latest__item {
    padding: 20px 4%;
  }
}


.latest__link {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.2s;
  color: var(--color-main);
}

.latest__title .latest__link {
  height: clamp(65px, calc(80 * var(--vw)), 80px);
}

@media(max-width:767px) {
  .latest__link {
    width: 100%;
    display: flex;
    align-items: flex-start;
  }
}


.latest__link:hover {
  opacity: 0.75;
}

.latest__img {
  flex-shrink: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.latest__img img {
  width: clamp(300px, 22.5vw, 480px);
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 6px;
}

@media(max-width:767px) {
  .latest__img img {
    width: 100%;
  }
}

.latest__body {
  flex: 1;
  min-width: 0;
  max-width: 56%;
}

.latest__date {
  font-size: clamp(1.6rem, calc(18 * var(--vw)), 1.8rem);
  color: #888;
  font-family: var(--font-en);
  margin-bottom: clamp(15px, calc(20 * var(--vw)), 20px);
  line-height: 1;
}

.latest__title {
  font-size: clamp(1.8rem, calc(28 * var(--vw)), 2.8rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: clamp(15px, calc(20 * var(--vw)), 20px);
}

.latest__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: clamp(15px, calc(20 * var(--vw)), 20px);
}

.article__outline__tag {
  font-size: clamp(1.4rem, calc(16 * var(--vw)), 1.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.latest__series {
  font-size: var(--fz-12);
  color: #666;
}

.latest__catLink {
  font-size: var(--fz-12);
  color: #666;
  text-decoration: underline;
  transition: color 0.2s;
}

.latest__catLink:hover {
  color: var(--color-main);
}

.latest__icon {
  width: 99px;
  height: 99px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media(max-width:1024px) {
  .latest__icon {
    width: 60px;
    height: 60px;
    z-index: -1;
    position: relative;
  }
}

.latest__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media(max-width:767px) {
  .latest__body {
    max-width: initial;
  }
}

@media screen and (min-width: 769px) {
  .latest__meta a:hover {
    opacity: 1;
  }
}


/* =========================================================
  SERIES CONTENT
========================================================= */

.series {
  width: 100%;
  padding: clamp(40px, calc(80 * var(--vw)), 80px) 0px;
  /* background: #fff; */
  position: relative;
}

.series__inner {
  display: flex;
  min-height: 480px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  justify-content: space-between;
}

.series__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 8.4vw;
  max-width: clamp(500px, calc(840 * var(--vw)), 840px);
  max-height: clamp(570px, calc(720 * var(--vw)), 720px);
  flex-shrink: 0;
  background: #fff;
  position: relative;
  z-index: 1;
  margin-top: 120px;
  width: 100%;
}

.series__label {
  font-family: var(--font-en);
  font-size: var(--fz-18);
  font-weight: 600;
  color: #b6ca59;
  /* letter-spacing: 0.1em; */
}

.series__heading {
  font-size: clamp(2.4rem, calc(48 * var(--vw)), 4.8rem);
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.3;
}

.series__text {
  font-size: clamp(1.3rem, calc(16 * var(--vw)), 1.6rem);
  line-height: 2;
  margin: clamp(15px, calc(30 * var(--vw)), 30px) 0px;
  font-weight: 400;
}

.series__right {
  flex: 1;
  min-width: 0;
  position: absolute;
  z-index: 0;
  right: 0;
  width: 100%;
  max-width: clamp(430px, calc(1240 * var(--vw)), 1240px);
}

.series__imgWrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.series__imgWrap img.series_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}

.series__imgOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 30, 60, 0.15);
}

.series__imgOverlay img {
  width: 20%;
  max-width: 205px;
}

.series__logoText {
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 4vw, 5.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: center;
}

.series__credit {
  font-size: var(--fz-12);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

@media(max-width:1280px) {
  .series__left {
    padding: 20px;
  }
}

@media(max-width:767px) {
  .series {
    padding: 20px;
  }
}


/* =========================================================
  movie
========================================================= */

.movieSection {
  /* background: #000; */
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.movieSection__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.movieSlider {
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 70px;
  margin-left: clamp(20px, calc(150 * var(--vw)), 150px);
}

@media(max-width:767px) {
  .movieSlider {
    margin-left: 20px;
  }
}

.movieSlider__cards {
  display: flex;
  gap: 8px;
}

.movieCard {
  position: relative;
  flex: 1;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.movieCard__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  height: 100%;
}

@media(max-width:1024px) {
  .movieCard__img {
    max-width: 380px;
  }
}

@media(max-width:480px) {
  .movieCard__img {
    max-width: 300px;
  }
}

.movieCard__overlay {
  position: absolute;
  inset: 0;
  padding: clamp(20px, calc(40 * var(--vw)), 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .65),
      rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
}

.movieCard__title {
  font-size: clamp(25px, calc(32 * var(--vw)), 32px);
  line-height: 1.4;
  /* font-weight: 700; */
}

.movieCard__arrow {
  position: absolute;
  right: clamp(20px, calc(40 * var(--vw)), 40px);
  bottom: clamp(20px, calc(40 * var(--vw)), 40px);
  width: clamp(30px, calc(48 * var(--vw)), 48px);
  height: clamp(30px, calc(48 * var(--vw)), 48px);
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.movieSection__content {
  flex: 1;
}

.movieSection__heading {
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 700;
}

.movieSlider {
  position: relative;
}

.movieSlider .splide__arrows {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 2px;
  height: unset;
}

.movieSlider .splide__arrow {
  position: static;
  width: 40px;
  height: 40px;
  transform: none;
  border-radius: 0;
  opacity: 1;
}


/* =========================================================
  Responsive
========================================================= */

@media screen and (max-width: 1200px) {

  .hero__today {
    width: 280px;
    padding: 15px;
    height: 100%;
  }

  h3.hero__todayTitle {
    height: 55px;
    overflow: hidden;
  }

  .hero__todayBtns {
    margin-top: 10px;
  }

  .pickup__largeItem {
    width: 100%;
  }

  .pickup__smallWrap {
    flex-wrap: wrap;
  }

  .pickup__smallItem {
    width: calc(50% - 12px);
    flex: none;
    min-height: unset;
  }

}

@media screen and (max-width: 1024px) {

  .hero__wrap {
    flex-direction: column;
    min-height: auto;
    margin-top: 0;
  }

  .hero__today {
    width: 100%;
    flex-direction: column;
    border-left: none;
    border-top: 1px solid #e8e8e8;
    max-width: unset;
    padding: 20px;
    gap: 30px;
  }

  .hero__todayTop {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid #e8e8e8;
  }

  .hero__todayBody {
    flex: 1;
  }

  .hero__todayMore {
    width: 100%;
  }

  .series__left {
    padding: 20px;
    /* width: 360px; */
    margin-top: 180px;
  }

  .pickup__img {
    width: 140px;
  }
}


@media screen and (max-width: 767px) {

  .hero__thumbs {
    width: 90px;
  }

  .hero__thumbBtn img {
    height: 60px;
  }

  .pickup {
    padding: 0;
  }

  .pickup__inner {
    width: min(100% - 32px, 1600px);
  }

  .pickup__largeItem {
    padding: 20px;
  }

  .pickup__img {
    width: 38%;
  }

  .pickup__smallWrap {
    gap: 12px;
    margin-top: 12px;
  }

  .pickup__smallItem {
    width: calc((100% - 12px) / 2);
    padding: 2rem 1rem;
    border-radius: 4px;
  }

  .latest__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .latest__img {
    width: 100%;
  }

  .series__inner {
    flex-direction: column;
  }

  .series__left {
    width: 100%;
    padding: 20px;
    gap: 16px;
    order: 2;
    margin-top: 0;
    max-width: unset;
    max-height: unset;
  }

  .series__right {
    position: relative;
    order: 1;
    width: 100%;
    max-width: unset;
    max-height: unset;
  }

  .media__item {
    aspect-ratio: 3/4;
  }
}

.lity-container {
  padding: 15px;
}


@media screen and (max-width: 600px) {
    .pickup__largeWrap {
    flex-direction: column;
  }
}


/* =========================================================
  公開時スタイル
========================================================= */

.cont__cat__list a.is-soon {
  color: #FFFFFF50;
  pointer-events: none;
}

.pickup__smallLogo.is-soon {
  display: flex;
  flex-direction: column;
  row-gap: .8rem;
}

.pickup__smallLogo.is-soon p {
  font-size: clamp(1.3rem, calc(40 * var(--vw)), 2rem);
  font-family: var(--font-en);
  line-height: 1;
  font-weight: 600;
  color: #a9a9a9;
}

@media screen and (max-width: 767px) {
  .pickup__smallLogo.is-soon {
    row-gap: .5rem;
  }
}