@import "base.css";

/* Modern Theme Variables */
:root {
  --primary-color: #529043;
  --primary-dark: var(--base-color);
  --primary-light: #689c5d;
  --secondary-color: #0a6f2e;
  --bg-color: #FAFAFA;
  --surface-color: #FFFFFF;
  --text-color: #333;
  --border-color: rgba(7, 145, 59, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(7, 145, 59, 0.15);
  --shadow-lg: 0 4px 16px rgba(7, 145, 59, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
img {
  vertical-align: top;
}
.d-f-c{
  display: flex;
  align-items: center;
}
.sizeXS {
  font-size: min(12px, 3vw);
}

.sizeS {
  font-size: min(14px, 3.4vw);
}

.sizeN {
  font-size: min(16px, 4vw);
}

.sizeM {
  font-size: min(18px, 4.2vw);
}

.sizeL {
  font-size: min(20px, 4.4vw);
}

.sizeLL {
  font-size: min(24px, 5vw);
}

.sizeB {
  font-size: min(28px, 6vw);
}

a.copyLink.copied::before, a.copyLink.copied::after, span.copyLink.copied::before, span.copyLink.copied::after {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: min(10px, 3vw);
  z-index: 1000;
  animation: fadeInOut 1.5s ease-in-out;
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  20%, 80% {
    opacity: 1;
  }
}
a.copyLink.copied::before, span.copyLink.copied::before {
  width: 5px;
  height: 8px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  top: calc(100% - 2px);
  display: none;
}
a.copyLink.copied::after, span.copyLink.copied::after {
  content: "コピーしました！";
  top: 0;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: min(11px, 2.6vw);
  font-weight: 500;
  color: #FFF;
  background-color: #333;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  white-space: nowrap !important;
  animation: fadeInOut 2s ease-in-out !important;
  letter-spacing: 0.5px !important;
}

/*-------------------------------------------------
	++ BASE
-------------------------------------------------*/
body {
  font-size: min(16px, 4vw);
  background-color: #FAFAFA;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#container {
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: unset;
  min-height: calc(100vh - 100px);
}

.inner {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 100%;
  /* max-width: 1110px; */
  padding: 0 min(20px, 4vw);
  padding: 0 60px;
}

#contents {
  flex: 1;
  width: 100%;
  background-color: #fff;
}
.section {
  text-align: left;
  padding: min(40px, 8vw) 0;
}

/*-------------------------------------------------
	++ COMMON
-------------------------------------------------*/
a.btn {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #ff9601 0%, #ff7c00 100%);
  color: #FFF;
  border-radius: 999px;
  padding: clamp(8px, 2.928px + 0.552vw, 12px) clamp(16px, 5.856px + 1.105vw, 24px);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: clamp(12px, 11.171px + 0.221vw, 14px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 150, 1, 0.2);
}

a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 150, 1, 0.35);
  background: linear-gradient(135deg, #ff7c00 0%, #ff6500 100%);
}

/*-------------------------------------------------
	++ HEAD
-------------------------------------------------*/
#header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid #f1f3f4;
  background-color: #fff;
  --base-color: #ff7c00;
  border-bottom: 8px solid var(--base-color);
}
@media screen and (max-width: 750px) {
  #header {
    height: 22vw;
  }
}
#header .headerContents {
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 6px + 1.2vw, 20px);
}
#header .headerContents #logo {
  text-align: left;
  flex-shrink: 0;
}
#header .headerContents #logo a {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}
#header .headerContents #logo a:hover {
  /* transform: translateY(-2px); */
  filter: drop-shadow(0 4px 8px rgba(82, 144, 67, 0.2));
}
#header .headerContents #logo svg {
  display: block;
  height: auto;
  width: 100%;
  max-width: 240px;
}
/* SVG customization with CSS variables */
#header .headerContents #logo svg .gradient-start stop:first-child {
  stop-color: var(--primary-color);
}
#header .headerContents #logo svg .gradient-end stop:last-child {
  stop-color: var(--primary-light);
}
#header .headerContents #logo svg .logo-text {
  fill: var(--primary-color);
}
/* #header .headerContents #logo a:hover svg {
  animation: logoHover 0.6s ease;
} */
@keyframes logoHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
#header .headerContents .title {
  color: var(--base-color);
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 18px);
  white-space: nowrap;
margin-top: 20px;
  margin-left: -15px;
}
#header .headerContents .title a {
  color: var(--base-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

#header .headerContents .btnBox {
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  #header .headerContents {
    gap: 0;
    padding: 3vw;
    flex-wrap: wrap;
  }
  #header .headerContents #logo {
    width: 65%;
  }
  #header .headerContents #logo img {
    width: 100%;
    height: auto;
  }
  #header .headerContents .title {
    font-size: min(12px, 3vw);
    width: 65%;
    margin-left: 0;
  }
  #header .headerContents .btnBox {
    width: 30%;
  }
}

/*-------------------------------------------------
	++ SPMENU
-------------------------------------------------*/
@media screen and (max-width: 750px) {
  .spAnchor {
    position: sticky;
    top: 22vw;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #f0f8f4 0%, #f5f5f5 100%);
    z-index: 99;
    border-bottom: 1px solid rgba(7, 145, 59, 0.1);
  }
  .spAnchor ul {
    display: flex;
    flex-wrap: wrap;
  }
  .spAnchor ul li {
    width: 33.3333333333%;
  }
  .spAnchor ul li a {
    display: block;
    color: #FFF;
    font-size: min(13px, 3vw);
    padding: 3vw 2vw;
    font-weight: 600;
    line-height: 1.3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .spAnchor ul li.to-ai a {
    background: linear-gradient(135deg, #330198 0%, #4a1fb8 100%);
  }
  .spAnchor ul li.to-gemini a {
    background: linear-gradient(135deg, #ffa745 0%, #ff9333 100%);
  }
  .spAnchor ul li.to-line a {
    background: linear-gradient(135deg, #58c56a 0%, #47b85f 100%);
  }
  .spAnchor ul li a:active {
    opacity: 0.85;
  }
  #menu {
    z-index: 9999;
    margin-top: 0;
    padding: 0;
    width: 100%;
    position: fixed;
    top: 22vw;
    left: 0;
    height: 0;
    overflow: hidden;
  }
  #menu.current {
    height: calc(100svh - 22vw);
  }
  #menu.current #menuBtn span:nth-of-type(1) {
    display: none;
  }
  #menu.current #menuBtn span:nth-of-type(2) {
    transform: rotate(30deg);
    margin-top: 0;
    transition: all 0.3s ease;
  }
  #menu.current #menuBtn span:nth-of-type(3) {
    transform: rotate(-30deg);
    margin-top: 0;
    transition: all 0.3s ease;
  }
  #menu.current #menuBtn span:nth-of-type(4) {
    display: none;
  }
  #menu.current .menuContents {
    animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  #menu #menuBtn {
    display: block;
    width: calc(22vw - 4px);
    aspect-ratio: 1/1;
    position: absolute;
    top: -22vw;
    right: 0;
    cursor: pointer;
    z-index: 99;
    transition: background 0.3s ease;
  }
  #menu #menuBtn:active {
    background: rgba(7, 145, 59, 0.05);
  }
  #menu #menuBtn span {
    display: inline-block;
    position: absolute;
    right: 25%;
    top: 50%;
    width: 50%;
    height: 3px;
    background-color: var(--base-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #menu #menuBtn span:nth-of-type(1) {
    margin-top: -2.5vw;
  }
  #menu #menuBtn span:nth-of-type(4) {
    margin-top: 2.5vw;
  }
  #menu .menuContents {
    display: none;
    background: linear-gradient(135deg, var(--base-color) 0%, #0a6f2e 100%);
    width: 100%;
  }
  #menu .menuContents .menuContentsBox {
    width: 100%;
    height: 100%;
  }
  #menu .menuContents .menuContentsBox ul {
    display: flex;
    flex-direction: column;
    padding: 5vw;
    gap: 4vw;
  }
  #menu .menuContents .menuContentsBox ul li a {
    display: block;
    font-weight: 600;
    background-color: #FFF;
    border-radius: 8px;
    color: var(--base-color);
    padding: 3vw 5vw;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
  }
  #menu .menuContents .menuContentsBox ul li a:hover {
    background-color: #f5f5f5;
    transform: translateX(4px);
  }
}
/*-------------------------------------------------
	++ HOME
-------------------------------------------------*/
.movieListWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5px
}

.home-banner {
    position: relative;
      width: 100%;
      margin-top: 18px;
      margin-bottom: 24px;
      padding: 20px;
      border-radius: 18px;
      border: 1px solid #e8eef4;
      background: radial-gradient(circle at 12% 0%, rgba(255, 180, 111, 0.35) 0%, rgba(255, 180, 111, 0) 48%), radial-gradient(circle at 92% 8%, rgba(111, 197, 255, 0.28) 0%, rgba(111, 197, 255, 0) 42%), linear-gradient(155deg, #ffffff 0%, #f6fbff 100%);
      box-shadow: 0 18px 38px rgba(16, 48, 94, 0.12);
      overflow: hidden;
      max-width: 1400px;
      margin: 10px auto;
}

.home-banner::before,
.home-banner::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.home-banner::before {
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: -155px;
  background: rgba(255, 255, 255, 0.45);
}

.home-banner::after {
  width: 220px;
  height: 220px;
  left: -120px;
  top: -130px;
  background: rgba(255, 255, 255, 0.35);
}

.home-banner .home-banner__intro,
.home-banner .home-banner__grid {
  position: relative;
  z-index: 1;
}

.home-banner .home-banner__intro {
  margin-bottom: clamp(12px, 1.8vw, 22px);
}

.home-banner .home-banner__eyebrow {
  margin: 0 0 8px;
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #0f5eb5;
}

.home-banner .home-banner__heading {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
  color: #15314d;
}

.home-banner .home-banner__sub {
  margin: 0;
  max-width: 900px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: #39546f;
}

.home-banner .movieListBlock.home-banner__grid {
  width: 100%;
  padding: 0;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 16px);
}

.home-banner .movieListTitle.home-banner__item {
    --banner-accent: #1e63b8;
      display: block;
      position: relative;
      border-radius: 14px;
      border: none;
      overflow: hidden;
      padding: 0;
      background: transparent;
      box-shadow: 0 10px 22px rgba(15, 65, 124, 0.12);
      transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.home-banner .movieListTitle.home-banner__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--banner-accent) 0%, rgba(255, 255, 255, 0.55) 100%);
}

.home-banner .home-banner__item:hover {
  transform: translateY(-6px);
  border-color: #bfd4e8;
  box-shadow: 0 16px 28px rgba(17, 64, 119, 0.2);
}

.home-banner .home-banner__item .home-banner__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  border-radius: 999px;
  background: var(--banner-accent);
  color: #fff;
  box-shadow: 0 8px 16px rgba(20, 46, 84, 0.2);
}

.home-banner .home-banner__item img {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 0;
  display: block;
  transform-origin: center;
  transition: transform 0.4s ease;
}

.home-banner .home-banner__item:hover img {
  transform: scale(1.04);
}

.home-banner .home-banner__item--ai {
  --banner-accent: #f08700!important;
}

.home-banner .home-banner__item--gemini {
  --banner-accent: #1d72cf!important;
}

.home-banner .home-banner__item--line {
  --banner-accent: #0baf44!important;
}

@media screen and (max-width: 1024px) {
  .home-banner .movieListBlock.home-banner__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 750px) {
  .home-banner {
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .home-banner .home-banner__eyebrow {
    letter-spacing: 0.14em;
  }

  .home-banner .home-banner__heading {
    font-size: 24px;
  }

  .home-banner .movieListBlock.home-banner__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 0;
  }

  .home-banner .home-banner__item .home-banner__badge {
    top: 8px;
    left: 8px;
    font-size: 11px;
    padding: 5px 9px;
  }
}

.movieListWrap .movieListBlock {
  background: #fff;
  width: 32%;
  padding: 0 ;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  transition: all 0.3s ease;
}

.movieListWrap .movieListBlock.block-ai {
  --theme-color1: #330198;
  --theme-color2: #a096ff;
  --theme-color3: #f8f7ff;
}
.movieListWrap .movieListBlock.block-gemini {
  --theme-color1: #ffa745;
  --theme-color2: #4d8fe5;
  --theme-color3: #fffaf2;
}
.movieListWrap .movieListBlock.block-gemini .movieList__detail .btnBox a.detailLink {
  background: linear-gradient(135deg, var(--theme-color2) 0%, #5a9bed 100%);
}
.movieListWrap .movieListBlock.block-line {
  --theme-color1: #0abe3c;
  --theme-color2: #0abe3c;
  --theme-color3: #f0fdf4;
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock {
    width: 100%;
    display: block;
    padding-bottom: 6vw;
  }
}

.movieListWrap .movieListBlock .movieListTitle {
  padding: min(20px, 4vw) min(25px, 5vw);
  padding: 10px;
  background: linear-gradient(135deg, var(--theme-color1) 0%, rgba(0,0,0,0.08) 100%);
  color: #FFF;
  text-align: left;
  border-radius: 8px ;
  height: 100%;
  cursor: pointer;
}
.movieListWrap .movieListBlock .movieListTitle h2 {
  font-size: min(24px, 5vw);
  font-weight: 700;
  margin: 0;
}
.movieListWrap .movieListBlock .movieListTitle img {
  width: auto;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
  max-width: 100%;
  max-height: 220px;
}
.movieListWrap .movieListBlock .movieListTitle img:hover {
  transform: scale(1.02);
}
.movieListWrap .movieListBlock .movieList {
  padding: 0;
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock .movieList {
    margin-bottom: 3vw;
    padding: min(12px, 2.5vw) min(20px, 4vw);
  }
}
.movieListWrap .movieListBlock .movieList > li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
  padding: 0;
  margin-bottom: clamp(10px, 8px + 0.8vw, 14px);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f3f4;
  /* width: calc(20% - 12px); */
  min-height: 280px;
  margin-bottom: 0;
}
.movieListWrap .movieListBlock .movieList > li:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}
.movieListWrap .movieListBlock .movieList > li:last-child {
  margin-bottom: 0;
}
.movieListWrap .movieListBlock .movieList__thumb {
  width: 30%;
}
.movieListWrap .movieListBlock .movieList__thumb a {
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.movieListWrap .movieListBlock .movieList__thumb a::after {
  content: "";
  display: block;
  background: url(../images/ic_youtube.svg) no-repeat center center;
  background-size: 45%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  background-size: 80px;
  display: none;
}
.movieListWrap .movieListBlock .movieList__thumb a:hover::after {
  background-color: rgba(255, 0, 0, 0.1);
  transform: scale(1.08);
}
.movieListWrap .movieListBlock .movieList__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.movieListWrap .movieListBlock .movieList > li:hover .movieList__thumb img {
  transform: scale(1.05);
}
.movieListWrap .movieListBlock .movieList > li {
  cursor: pointer;
}
.movieListWrap .movieListBlock .movieList__detail {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
}
.movieListWrap .movieListBlock .movieList__detail .text {
  text-align: left;
  font-size: min(14px, 3.4vw);
  position: relative;
  /* flex: 1; */
  display: flex;
  align-items: center;
  line-height: 1.4;
  color: #333;
}
.movieListWrap .movieListBlock .movieList__detail .text.new::before {
  content: "NEW";
  background: linear-gradient(135deg, #ff0022 0%, #cc0019 100%);
  color: #FFF;
  font-size: min(10px, 2.8vw);
  border-radius: 6px;
  line-height: 1;
  display: inline-block;
  padding: 4px 8px 3px 8px;
  margin-right: 8px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.movieListWrap .movieListBlock .movieList__detail .btnBox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 0;
}
.movieListWrap .movieListBlock .movieList__detail .btnBox a {
  font-size: min(10px, 2.8vw);
  color: #FFF;
  background-repeat: no-repeat;
  background-position: center left 6px;
  background-size: 13px auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  border-radius: 6px;
  padding: 5px 9px;
  min-height: 28px;
  position: relative;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}
.movieListWrap .movieListBlock .movieList__detail .btnBox a.detailLink {
  display: none;
}
.movieListWrap .movieListBlock .movieList__detail .btnBox a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.movieListWrap .movieListBlock .movieList__detail .btnBox a.detailLink {
  background: linear-gradient(135deg, var(--theme-color1) 0%, rgba(0,0,0,0.08) 100%);
  background-image: url(../images/ic_movie.svg);
}
.movieListWrap .movieListBlock .movieList__detail .btnBox a.copyLink {
  background-position: center center;
  background-size: 14px auto;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  border-radius: 999px;
  padding: 0;
  font-size: 0;
}
.movieListWrap .movieListBlock .btnMore {
  padding: min(15px, 3vw) min(25px, 5vw);
  padding-bottom: min(20px, 4vw);
}
.movieListWrap .movieListBlock .btnMore.mtauto {
  margin-top: auto;
}
.movieListWrap .movieListBlock .btnMore a {
  width: 100%;
  font-size: min(16px, 3.8vw);
  background: linear-gradient(135deg, var(--theme-color1) 0%, rgba(0,0,0,0.1) 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.movieListWrap .movieListBlock .btnMore a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock .btnMore {
    padding: min(12px, 2.5vw) min(20px, 4vw);
  }
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock.movieListBlockIndex .movieListTitle {
    margin-bottom: 5vw;
    padding: 0;
  }
}
.movieListWrap .movieListBlock.movieListBlockIndex.block-ai .movieListTitle {
  background: linear-gradient(135deg, var(--theme-color2) 0%, rgba(0,0,0,0.08) 100%);
      background: transparent;
        border: none;
            width: 100%;
}
.movieListWrap .movieListBlock.movieListBlockFull {
  width: 100%;
  background-color: #FFF;
  max-width: 1400px;
  margin: 0 auto;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieListTitle {
  background: linear-gradient(135deg, var(--theme-color1) 0%, rgba(0,0,0,0.08) 100%);
  color: #FFF;
  text-align: left;
  font-size: min(24px, 5vw);
  font-weight: 700;
  padding: min(20px, 4vw) min(25px, 5vw);
  border-radius: 8px 8px 0 0;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList {
  padding: min(20px, 4vw) min(25px, 5vw);
  gap: 20px;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList > li {
  /* border: 1px solid rgba(0, 0, 0, 0.08); */
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(250,250,250,0.5) 100%);
  padding: 0;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList > li:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(245,245,245,0.8) 100%);
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock.movieListBlockFull .movieList > li {
    padding: clamp(12px, 10px + 2vw, 18px);
  }
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList__thumb {
  width: clamp(80px, 52.652px + 7.293vw, 146px);
  border-radius: 6px;
  overflow: hidden;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList > li:hover .movieList__thumb img {
  transform: scale(1.05);
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList__detail {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 1%;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .detailBox__text {
  width: 34%;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .detailBox__aitext {
  width: 48%;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .btnBox {
  width: 16%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0;
  gap: 8px;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .btnBox .date {
  font-size: min(12px, 3vw);
  color: #666;
  font-weight: 500;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .btnBox a {
  width: 100%;
  transition: all 0.3s ease;
}
.movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .btnBox a:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock.movieListBlockFull .movieList__detail {
    display: block;
  }
  .movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .detailBox {
    padding: 10px;
  }
  .movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .detailBox__text {
    width: 100%;
    padding-top: 0;
  }
  .movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .detailBox__aitext {
    width: 100%;
  }
  .movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .btnBox {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    flex-direction: row;
  }
  .movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .btnBox .date {
    width: 100%;
    text-align: left;
  }
  .movieListWrap .movieListBlock.movieListBlockFull .movieList__detail .btnBox a {
    width: 48%;
  }
}
.movieListWrap .movieListBlock.movieListBlockItem {
  width: 100%;
  background-color: #FAFAFA;
}
@media screen and (min-width: 751px) {
  .movieListWrap .movieListBlock.movieListBlockItem .movieItemWrap {
    display: flex;
  }
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock.movieListBlockItem .movieItemWrap {
    padding: 5vw;
  }
}
@media screen and (min-width: 751px) {
  .movieListWrap .movieListBlock.movieListBlockItem .movieList__detail {
    width: 68%;
    padding: clamp(20px, 18px + 1vw, 26px);
    background-color: #FFF;
    border-radius: 8px;
    margin: min(20px, 4vw);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .movieTitle {
  font-size: min(22px, 4.6vw);
  font-size: 24px;
  margin-bottom: min(12px, 3vw);
  font-weight: 700;
  color: #222;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .movieTitle.new::before {
  font-size: min(14px, 3.4vw);
  font-weight: 600;
  vertical-align: middle;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: clamp(18px, 14px + 0.8vw, 24px);
  gap: 16px;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li {
  width: calc((100% - 32px) / 3);
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a {
  display: block;
  background: linear-gradient(135deg, var(--theme-color1) 0%, rgba(0,0,0,0.08) 100%);
  color: #FFF;
  font-weight: 600;
  position: relative;
  padding: 12px 40px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a::before {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  display: block;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a.link-guide::before {
  background-image: url(../images/ic_guide.svg);
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a.link-qa::before {
  background-image: url(../images/ic_QA.svg);
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a.link-test::before {
  background-image: url(../images/ic_test.svg);
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a.link-mindmap::before {
  background-image: url(../images/ic_mindmap.svg);
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a.link-subch::before {
  background-image: url(../images/ic_sub_channel.svg);
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a.link-copylink::before {
  background-image: url(../images/ic_share.svg);
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock.movieListBlockItem .movieList__detail {
    padding: 0;
  }
  .movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList {
    gap: 2vw;
  }
  .movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li {
    width: calc((100% - 2vw) / 2);
  }
  .movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a {
    padding: 2vw 1vw 2vw 6vw;
    font-size: min(11px, 2.6vw);
  }
  .movieListWrap .movieListBlock.movieListBlockItem .movieList__detail .linkList li a::before {
    width: 3.5vw;
    left: 1.5vw;
  }
}
@media screen and (min-width: 751px) {
  .movieListWrap .movieListBlock.movieListBlockItem .movieList__side {
    width: 32%;
    padding: min(20px, 4vw) min(25px, 5vw) min(20px, 4vw) 0;
  }
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock.movieListBlockItem .movieList__side {
    margin-top: 5vw;
  }
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__side .movieList {
  padding: 0;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__side .movieList__detail {
  padding: 0;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__side .movieList__detail .btnBox {
  gap: 6px;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__side .movieList__detail .btnBox a {
  width: calc(50% - 3px);
  padding-right: 5px;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__side__box {
  padding: clamp(16px, 14px + 1vw, 20px);
  border-radius: 8px;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__side__box:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__side__box > h3 {
  color: var(--theme-color1);
  font-size: min(16px, 3.8vw);
  margin-bottom: min(12px, 3vw);
  font-weight: 700;
}
.movieListWrap .movieListBlock.movieListBlockItem .movieList__side__box + .movieList__side__box {
  margin-top: min(20px, 4vw);
}
.movieListWrap .movieListBlock.movieListBlockItem .youtubeBox {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}
.movieListWrap .movieListBlock.movieListBlockItem .youtubeBox iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock.movieListBlockItem .youtubeBox__wrap {
    width: 100vw;
    transform: translateX(-5vw);
  }
}
.movieListWrap .movieListBlock.movieListBlockItem .detailBox__text .btn-more {
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.8) 14%);
}
.movieListWrap .movieListBlock.movieListBlockItem .detailBox__aitext {
  background-color: #FFF;
}
.movieListWrap .movieListBlock.movieListBlockItem .detailBox__aitext .btn-more {
  background: linear-gradient(to right, transparent, #FFF 14%);
}
.movieListWrap .movieListBlock .detailBox {
  position: relative;
  padding: clamp(12px, 10px + 0.8vw, 16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
/* @media (hover: hover) and (pointer: fine) {
  .movieListWrap .movieListBlock .detailBox:hover .text-clamp {
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
  }
  .movieListWrap .movieListBlock .detailBox:hover .btn-more {
    opacity: 0;
  }
} */
.movieListWrap .movieListBlock .detailBox__text .btn-more {
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.9) 20%);
}
.movieListWrap .movieListBlock .detailBox__aitext {
  background: linear-gradient(135deg, rgba(160, 150, 255, 0.1) 0%, rgba(237, 230, 255, 0.3) 100%);
  border-radius: 8px;
  border: 1px solid rgba(160, 150, 255, 0.2);
}
.movieListWrap .movieListBlock .detailBox__aitext .btn-more {
  background: linear-gradient(to right, transparent, rgba(160, 150, 255, 0.08) 20%);
}
.movieListWrap .movieListBlock .detailBox .btn-more {
  font-size: min(13px, 3.2vw);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0 0 0 1.5em;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  bottom: clamp(8px, 6px + 0.6vw, 12px);
  right: clamp(8px, 6px + 0.6vw, 12px);
  width: 8em;
  text-align: right;
  font-weight: 600;
  color: #999;
  transition: opacity 0.3s ease;
}
.movieListWrap .movieListBlock .detailBox .text-clamp {
  position: relative;
  text-align: left;
  word-break: break-all;
  font-size: min(14px, 3.4vw);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #555;
  line-height: 1.5;
}
.movieListWrap .movieListBlock .detailBox .text-clamp.line-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.movieListWrap .movieListBlock .detailBox .text-clamp.line-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.movieListWrap .movieListBlock .detailBox .text-clamp.line-4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.movieListWrap .movieListBlock .detailBox.is-open {
  padding-bottom: 1.5em;
}
.movieListWrap .movieListBlock .detailBox.is-open .text-clamp {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  max-height: 1000em;
  opacity: 1;
}
.movieListWrap .movieListBlock .detailBox.is-open .btn-more {
  bottom: 0;
}
.movieListWrap .movieListBlock .pageNavi {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: min(24px, 5vw) 0;
}
.movieListWrap .movieListBlock .pageNavi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock .pageNavi ul {
    gap: 2vw;
  }
}
.movieListWrap .movieListBlock .pageNavi ul li span,
.movieListWrap .movieListBlock .pageNavi ul li a {
  display: block;
  padding: 8px 12px;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: min(13px, 3.2vw);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #FFF;
  color: #333;
}
@media screen and (max-width: 750px) {
  .movieListWrap .movieListBlock .pageNavi ul li span,
  .movieListWrap .movieListBlock .pageNavi ul li a {
    padding: 2vw 3vw;
  }
}
.movieListWrap .movieListBlock .pageNavi ul li span:hover,
.movieListWrap .movieListBlock .pageNavi ul li a:hover {
  background: var(--base-color);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.movieListWrap .movieListBlock .pageNavi ul li span {
  background: var(--base-color);
  color: #FFFFFF;
  border-color: transparent;
}

/*-------------------------------------------------
	++ FOOTER
-------------------------------------------------*/
#footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e0e0e0;
  font-size: clamp(11px, 2vw, 13px);
  line-height: 1.6;
  padding:10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer {
  background: #e1bee700;
  color: #000;
  font-size: clamp(11px, 2vw, 13px);
  line-height: 1.6;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .footerContents {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#footer .footerMain {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
}

#footer .footerBrand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

#footer .footerCompany {
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: #000;
  font-size: clamp(12px, 2.2vw, 14px);
}

#footer .footerWebsite {
  color: #5ba3d0;
  text-decoration: none;
  font-size: clamp(11px, 2vw, 13px);
  word-break: break-word;
  transition: color 0.3s ease;
}

#footer .footerWebsite:hover {
  color: #7cb9e8;
  text-decoration: underline;
}

#footer .footerBottom {
  /* padding-top: clamp(12px, 2vw, 16px); */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

#footer .footerCopyright {
  margin: 0;
  padding: 0;
  color: #2E7D32;
  font-size: clamp(10px, 1.8vw, 12px);
  letter-spacing: -0.3px;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  #footer {
    padding: clamp(20px, 3vw, 30px) 0;
    padding-bottom: clamp(20px, 3vw, 30px);
  }
  
  #footer .footerContents {
    gap: clamp(12px, 2vw, 16px);
  }
}

#pageTop {
  position: fixed;
  bottom: 30px;
  right: 13px;
}
@media screen and (max-width: 750px) {
  #pageTop {
    bottom: 30vw;
    right: 3vw;
  }
}
#pageTop a {
  display: block;
  width: min(36px, 10vw);
  aspect-ratio: 1;
  background: rgba(88, 88, 86, 0.7);
  background: #ff8100;
  border-radius: 100%;
  z-index: 99;
}
#pageTop a::after {
  content: "";
  display: block;
  width: min(15px, 4vw);
  aspect-ratio: 54/30;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 30'  preserveAspectRatio='none'%3E%3Cg%3E%3Cpath fill='%23FFFFFF' d='M0,2.5c0-.5.2-1,.6-1.4.8-.8,2-.8,2.8,0l23.6,23.6L50.6,1.1c.8-.8,2-.8,2.8,0,.8.8.8,2,0,2.8l-25,25c-.8.8-2,.8-2.8,0L.6,3.9c-.4-.4-.6-.9-.6-1.4Z' /%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1, -1);
}
.playlistViewAll{
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  font-size: min(14px, 3.4vw);
  color: var(--text-color)!important;
  font-weight: 600;
  transition: color 0.3s ease;
  background: #fff!important;
  background-color: #fff!important;
  box-shadow: none!important;
  margin-top: 0;
  border: 1px solid #f1f3f4;
  height: 32px;
}
.titleSlider{
  padding-top: 20px!important;
}
.movieListSkeletonSlider {
  width: 100%;
  overflow: hidden;
  padding-top: 8px;
}
.movieListSkeletonSlider .movieList {
  padding: 0;
}
/* .movieListSkeletonSlider .movieList.swiper-wrapper {
  flex-wrap: nowrap;
  height: auto !important;
  padding-bottom: 5px;
  padding-top: 0;
} */
.movieListSkeletonSlider .movieList > li.swiper-slide {
  margin: 0;
}
.movieListSkeletonSlider .swiper-button-prev,
.movieListSkeletonSlider .swiper-button-next {
  color: var(--base-color);
}
.movieListSkeletonSlider .swiper-pagination-bullet-active {
  background: var(--base-color);
}
.btn-contact a{
  height: 32px  ;
  padding: 0 16px;
  display: flex;
  align-items: center;
}

.movieListBlock{
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.movieListTitle{
  width: 30%;
    display: flex;
      align-items: center;
}
/* .swiper-wrapper .swiper-slide {
  height: 100%;
  flex-direction: row !important;

} */

@media screen and (max-width: 750px) {
  .st-watch-layout {
    flex-wrap: wrap;
  }

  .st-watch-page .inner {
        max-width: calc(100vw - 20px) !important;
        margin: 10px !important;
  }

  .headerInner {
    padding: 0;
  }

  #header .headerContents .title {
    display: none;
  }

  #header .headerContents #logo {
    width: 100px;
  }

  .searchBox {
    min-width: unset;
    width: 40%;
    order: 0;
    margin-left: 10px;
    margin-top: 0;
  }


  #header .headerContents {
    padding: 5px;
  }

  #header {
    height: auto;
  }

  .spAnchor {
    display: none;
  }

  .movieListWrap .movieListBlock.movieListBlockIndex .movieListTitle {
    width: 100%;
  }

  .inner {
    padding: 0 10px;
  }

  .playlistHeader {
    flex-direction: row;
    align-items: center;
  }

  .playlistMeta {
    width: auto!important;
  }

  .movieListWrap .movieListBlock .movieList {
    padding: 5px;
  }

  .movieListWrap .movieListBlock .movieList>li {
    min-width: unset;
    width: 100%;
  }

  .movieListWrap .block-ai .aiListLayout {
    flex-wrap: wrap;
  }

  .movieListWrap .block-ai .aiListSidebar {
        position: unset !important;
          min-width: unset !important;
          width: unset !important;
          order: 1 !important;
  }

  .movieListWrap .movieListBlock.movieListBlockFull .movieList>li {
        max-width: 100%;
          padding: 5px;
          width: 100%;
  }
    .movieListWrap .movieListBlock.movieListBlockFull .movieListTitle {
      height: auto;
    }
    .movieListWrap .swiper-wrapper .movieListBlock .movieListTitle {
      height: fit-content;
              min-width: 100%;
    }

  /* .swiper-wrapper .swiper-slide{
    display: flex;
    align-items: center;
  } */
}
.detail-btm .views,
.detail-btm .date {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
      font-size: 11px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 5px;
}
 .detail-btm .date .mdi {
    font-size: 14px;
}
.wrap-cate .movieListBlock .movieList li .movieList__detail .btnBox a{
      font-weight: 500;
        flex: 1;
        text-align: center;
        padding: 0 8px !important;
        min-height: 20px;
        height: 20px;
}
.content-summary {
  margin-top: 10px;
  /* line-height: 1.8em; */
  line-height: 2.7em;
  height: max-content;
}

.content-summary h1 {
  font-size: 1.02rem;
  margin-top: 0;
  margin-bottom: 8px;
}

.content-summary h2,
.content-summary h3 {
  font-size: 1rem;
}

.content-summary h2,
.content-summary h3,
.content-summary h4,
.content-summary h5,
.content-summary h6 {
  margin-top: 0;
  margin-bottom: 0px;
}

.content-summary ul,
.content-summary ol {
  padding-left: 20px;
  text-indent: 0;
}

.content-summary ul li,
.content-summary ol li {
  line-height: 22px;
}

.header-right-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  padding-right: 0;
  width: 100%;
}

.search-wrapper {
  position: relative;
  width: 500px;
}

.suggestions-box {
  position: absolute;
  top: 100%;
  left: 15px;
  right: 15px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
  list-style: none;
  padding: 5px 0;
  margin: 2px 0 0 0;
  flex-wrap: wrap;
}

.suggestions-box li {
  padding: 5px 10px !important;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  background: #f3e5f573;
  margin: 5px;
  border-radius: 18px;
    display: block;
      width: fit-content;
      white-space: nowrap;
}

.suggestions-box li:hover { background: #f1f3f4; }

.suggestions-box li::before {
content: '\1F50D';
  margin-right: 15px;
  color: #9aa0a6;
  font-size: 14px;
  display: inline-block;
  font: normal normal normal 24px / 1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  content: "\F04F9";
  color: var(--base-color);
}


.st-ai-summary .text-clamp ul {
  margin: 0;
  padding-left: 5px;
}

.st-ai-summary ul li {
  background: transparent;
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 2px!important;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.st-ai-summary ul li:before {
  content: '';
  height: 6px;
  width: 6px;
  min-width: 6px;
  display: block;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--base-color);
  opacity: 0.75;
  margin-top: 10px;
}
.st-ai-summary ul li span {
  white-space: nowrap;
}
.line-4 {
  font-size: 14px;
  line-height: 1.65;
  color: #263238;
  word-break: break-word;
  text-align: left;
  margin-top: 0;
  white-space: normal;
}
.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  text-align: left;
  padding-left: 10px;
  padding-top: 5px;
}

.collapsed {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-align: left;
}
.movie-list-v2-summary-block .collapsed {
  -webkit-box-orient: vertical;
 -webkit-line-clamp: 1;
 line-clamp: 1;
}
.movie-list-v2-summary-block .st-ai-summary {
  margin: 0 !important;
  padding: 0 !important;
}

.content-summary ul,
.content-summary ol {
  padding-left: 0;
  text-indent: 0;
}
.st-ai.block-ai:nth-child(2) .playlistHeader {
  background-color: #03A9F4;

}
.st-ai.block-ai:nth-child(3) .playlistHeader {
  background-color: #4CAF50;
}
.tippy-box[data-theme~='detail-popover'] {
  border: none!important;
}

[data-tippy-root] {
  z-index: 999999999999 !important;
}
.wrap-item-detail-full .detail-full-card__head .mdi {
  font-size: 18px!important;
}
.home-banner .movieListBlock {
  padding: 0;
  border-bottom: none;
}

.home-banner.movieListWrap .movieListBlock a {
  text-decoration: none;
}
a.copyLink {
  width: unset !important;
  min-width: unset !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 18px !important;
  gap: 5px;
  padding: 5px 10px!important;
  box-shadow: none !important;
}

span.copyLinkText {
  font-size: 13px;
  color: #000;
  font-size: 11px;
  font-weight: 400;
}

a.copyLink:hover {
  background: #9c27b01a !important;
}
.st-chanel-stats div {
  margin: 0;
  font-size: 12px;
  color: var(--st-subtext);
  line-height: 1.3;
  text-align: left;
}

.st-chanel-stats {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.movieListWrap.home-banner {
    /* max-width: 1400px; */
    width: 100%;
    /* margin: 18px auto 24px; */
    max-width: 100%;
}
.lazy-loading-spinner {
  display: flex;
  padding: 0;
}

.lazy-loading-spinner .playlistHeader {
  display: none;
}
.playlist-banner {
  width: 100%;
  max-width: 1400px;
  margin: 16px auto 20px;
  margin: 16px auto 20px;
  padding: 0 60px;
}

.movieListWrap.playlist-banner .movieListBlock.playlist-banner__grid {
  width: 100%;
  padding: 0;
  background: transparent;
  display: block;
}

.playlist-banner .playlist-banner__hero {
  --banner-accent: #1e63b8;
  --banner-accent-soft: #5b9bdb;
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: clamp(150px, 16vw, 200px);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(120deg, var(--banner-accent) 0%, var(--banner-accent-soft) 100%);
  box-shadow: 0 14px 30px rgba(16, 48, 94, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playlist-banner .playlist-banner__hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(16, 48, 94, 0.24);
}

.playlist-banner .playlist-banner__hero::before,
.playlist-banner .playlist-banner__hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.playlist-banner .playlist-banner__hero::before {
  width: 220px;
  height: 220px;
  right: -60px;
  top: -90px;
}

.playlist-banner .playlist-banner__hero::after {
  width: 160px;
  height: 160px;
  right: 60px;
  bottom: -100px;
}

.playlist-banner .playlist-banner__heroContent {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: clamp(18px, 3vw, 32px) clamp(20px, 4vw, 40px);
  color: #fff;
}

.playlist-banner .playlist-banner__heroFigure {
  position: relative;
  z-index: 1;
  flex: 0 0 clamp(100px, 22vw, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.playlist-banner .playlist-banner__heroFigure .mdi {
  font-size: clamp(64px, 9vw, 110px);
      color: rgb(255 255 255 / 19%);
}

.playlist-banner .playlist-banner__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: inherit;
  display: none;
}

.playlist-banner .playlist-banner__heroTitle {
  margin: 0;
  font-size: clamp(19px, 2.5vw, 28px);
  line-height: 1.3;
  font-weight: 700;
  color: inherit;
  text-align: left;
  font-size: 32px;
}

.playlist-banner .playlist-banner__heroDesc {
  margin: 0;
  max-width: 600px;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.playlist-banner .playlist-banner__heroCta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.playlist-banner .playlist-banner__heroCta .mdi {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.playlist-banner .playlist-banner__hero:hover .playlist-banner__heroCta .mdi {
  transform: translateX(4px);
}

.playlist-banner .playlist-banner__hero--ai {
    --banner-accent: #9C27B0;
    --banner-accent-soft: #9c27b021;
}

.playlist-banner .playlist-banner__hero--gemini {
  --banner-accent: #1591ff;
  --banner-accent-soft: #8f6fd9;
}

.playlist-banner .playlist-banner__hero--line {
  --banner-accent: #d3feea;
    --banner-accent-soft: #03c75a;
}
.playlist-banner__hero--line {

  font-family: 'Noto Sans JP';
}
.playlist-banner .playlist-banner__switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  display: none;
}

.playlist-banner .playlist-banner__pill {
  --pill-accent: #1e63b8;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid #e1e8f0;
  background: #fff;
  color: #51657c;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.playlist-banner a.playlist-banner__pill:hover {
  border-color: var(--pill-accent);
  color: var(--pill-accent);
}

.playlist-banner .playlist-banner__pill.is-active {
  background: var(--pill-accent);
  border-color: var(--pill-accent);
  color: #fff;
  cursor: default;
}

.playlist-banner .playlist-banner__pill--ai {
  --pill-accent: #f08700;
}

.playlist-banner .playlist-banner__pill--gemini {
  --pill-accent: #1d72cf;
}

.playlist-banner .playlist-banner__pill--line {
  --pill-accent: #0baf44;
}
.playlist-banner .playlist-banner__heroImage {
  position: absolute;
  right: 10px;
  height: auto;
  bottom: 10px;
  z-index: 0;
  /* background: #ffffff4d; */
  max-width: 300px;
      max-height: 100px;
  z-index: 999;
}

.playlist-banner__hero--line .playlist-banner__heroContent{
    color: #03c75a;
}
.playlist-banner__hero--line .playlist-banner__heroDesc{
    color: #222222;
    font-weight: 600;
    font-size: 16px;
}
span.playlist-banner__heroCta {
  border-radius: 18px;
  padding: 5px 10px !important;
  background-color: #202936;
  color: #ffffff;
  width: fit-content;
}
.playlist-banner__hero--gemini span.playlist-banner__heroCta{
  background-color: #6470d5;
}

.playlist-banner__hero--ai span.playlist-banner__heroCta{
  background-color: #CE93D8;
}
.playlist-banner__hero--line .playlist-banner__hero::before,
.playlist-banner__hero--line .playlist-banner__hero::after{
      background: rgb(139 118 118 / 14%);
}
@media screen and (max-width: 750px) {
  .playlist-banner {
    margin: 10px auto 14px;
  }

  .playlist-banner .playlist-banner__hero {
    min-height: auto;
  }

  .playlist-banner .playlist-banner__heroContent {
    padding: 16px 18px;
  }

  .playlist-banner .playlist-banner__heroDesc {
    display: none;
  }

  .playlist-banner .playlist-banner__heroFigure {
    flex-basis: 30vw;
  }



  .playlist-banner .playlist-banner__switcher {
    gap: 8px;
  }

  .playlist-banner .playlist-banner__pill {
    padding: 7px 14px;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .playlist-banner .playlist-banner__heroFigure {
    display: none;
  }
}

.playlist-banner__heroFigure.playlist-banner__heroFigure_center {
  position: absolute;
  left: 50%;
  height: 100%;
}

.playlist-banner__heroFigure.playlist-banner__heroFigure_center:before {
  content: '';
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
  width: 160px;
  height: 160px;
  right: -52px;
  bottom: -89px;
}

.playlist-banner__heroFigure.playlist-banner__heroFigure_center:after {
  content: '';
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
  width: 240px;
  height: 240px;
  right: 75px;
  top: -95px;
}

.playlist-banner__heroFigure.playlist-banner__heroFigure_center .mdi {
  z-index: 222222;
  position: relative;
  font-size: 130px;
}
span.develop-featured {
  color: #ff7c00;
  /* margin-left: auto; */
  /* font-size: 11px; */
}