@charset "UTF-8";

/* 基本スタイル */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f7f7f7;
  color: #1f2937; /* text-gray-800 */
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 横スクロールを無効化 */
  transition: transform 0.3s ease; /* メニュー開閉時のアニメーション */
}
br.pc{ display: none;}
        @media (min-width: 768px) {
          br.sp{display: none;}
          br.pc{display: block;}
        }
.pc-i{ display: none;}
        @media (min-width: 768px) {
          .sp-i{display: none;}
          .pc-i{display: block;}
        }

/* メニューが開いたときのbodyのスタイル */
body.is-open-menu {
  overflow: hidden; /* メニュー表示時に背景のスクロールを無効化 */
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem; /* スマホでも余白を確保 */
  padding-right: 1.5rem;
}

/* ヘッダー */
.header {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0.5rem 1rem;
  position: sticky; /* スクロールしてもヘッダーを固定 */
  top: 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.0rem;
  font-weight: 700;
  color: #2e98e5;
}

/* ハンバーガーメニューアイコン */
.hamburger {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
.hamburger .line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2e98e5;
  transition: all 0.3s ease;
}
.hamburger .line:nth-child(1) { top: 0; }
.hamburger .line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger .line:nth-child(3) { bottom: 0; }
.hamburger.is-active .line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg); /* xマークの上線 */
}
.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg); /* xマークの下線 */
}
        
/* ナビゲーションメニュー */
.nav-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.nav-menu.is-open {
  transform: translateX(0);
}
.nav-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e98e5;
  text-decoration: none;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.3s ease;
}
.nav-menu > li:last-child .nav-link {
  border-bottom: none;
}
.nav-link:hover {
  background-color: #f3f4f6;
}
        
        /* PC表示時のスタイル（768px以上） */
        @media (min-width: 960px) {
            .hamburger {
                display: none; /* PCでは非表示 */
            }
            .nav-menu {
                position: static; /* 位置を固定解除 */
                width: auto;
                height: auto;
                background-color: transparent;
                flex-direction: row;
                transform: none; /* メニューの表示 */
                z-index: auto;
                gap: 0.75rem; /* ナビゲーションリンク間のスペースを確保 */
                /* PC版のスタイルを再定義 */
                justify-content: flex-end;
            }
            .nav-menu > li {
                width: auto;
            }
            .nav-link {
                display: block;
                font-size: 1rem;
                padding: 0.75rem 1.25rem;
                border-radius: 9999px;
                border: 2px solid transparent; /* 枠線を透明にして、ホバー時のみ表示 */
                color: #2e98e5;
                background-color: transparent;
                transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
                border-bottom: none; /* 下線を非表示 */
                text-align: center;
            }
            .nav-link:hover {
                color: #ffffff;
                background-color: #2e98e5;
            }
            .header-content {
                justify-content: space-between;
            }
            body.is-open-menu {
                overflow: auto; /* PCではスクロールを有効化 */
            }
        }

/* メインビジュアル */
.main-visual {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-image: url('../images/sp-header.jpg');
}
.main-visual-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.main-visual-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  padding: 1.5rem;
}
.main-visual h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  animation: fadeInDown 1s ease-in-out;
  text-shadow:-2px -2px 0 #043e92, 2px -2px 0 #043e92, -2px 2px 0 #043e92, 3px 3px 0 #043e92;
}
.main-visual p {
  margin-top: 1rem;
  font-size: 1.125rem;
}
.main-logo{
  width:100%;
  height: auto;
}
        @media (min-width: 768px) {
            .main-visual {
                height: 80vh;
                background-image: url('../images/pc-header.jpg');
            }
            .main-visual h1 {
                font-size: 3.5rem;
            }
            .main-visual p {
                margin-top: 1rem;
                font-size: 1.25rem;
            }
        }
        
/* セクション共通スタイル */
.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
        @media (min-width: 768px) {
            .section-title {
                font-size: 3rem;
                margin-bottom: 4rem;
            }
        }

/* LINE UPセクション */
.lineup-section {
  background-color: #fff5dc;
}
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
}
        @media (min-width: 768px) {
            .lineup-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
.lineup-item {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  cursor: pointer; /* カーソルをポインターに変更してクリック可能であることを示す */
}
.lineup-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.lineup-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lineup-item:hover .lineup-image {
  transform: scale(1.05);
}
.lineup-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.lineup-item h4 {
  color:#fa2c55;
}
.lineup-item p {
  font-size: 1rem;
  color: #4b5563;
}

/* PC表示時に下段2項目を中央寄せにするためのラッパー */
.lineup-bottom-row {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  background: #fa2c55;
  padding:20px 10px;
}
        @media (min-width: 768px) {
            .lineup-bottom-row {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 3rem;
                margin-top: 3rem;
                padding:20px;
            }
        }

/* 出演者セクション */
.cast-section {
   background-color: #fdedf3;
   padding-top: 3rem;
   padding-bottom: 4rem;
}
.cast-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 3rem;
}
.cast-main{
  margin-bottom: 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
        /* タブレット用の出演者レイアウト (768px - 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            .cast-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 2rem;
            }
             .cast-main {
                grid-template-columns: repeat(1, minmax(0, 1fr));
            }
       }
        @media (min-width: 1024px) {
            .cast-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
            .cast-main {
                grid-template-columns: repeat(1, minmax(0, 1fr));
            }
            .cast-section {
               padding-bottom: 5rem;
            }
       }
.cast-grid2 {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 3rem;
}
.cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.cast-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cast-image {
  width: 170px;
  height: 255px;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.cast-image-main {
  width: 500px;
  height: 428px;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.cast-item:hover .cast-image {
  transform: scale(1.05);
}
.cast-item p {
  font-weight: 700;
  font-size: 1.1rem;
  margin:5px;
  color:#000;
}
.cast-name {
  width:100%;
  height: auto;
}
.main-h{
  margin-bottom: 2rem;
}

        /* スマホ用スタイル（767px以下） */
        @media (max-width: 767px) {
            .cast-image {
                width: 100%;
                height: auto;
                object-fit: contain;
            }
            .cast-image-main {
                width: 100%;
                height: auto;
                object-fit: contain;
            }
            .cast-item p {
                font-weight: 700;
                font-size: 1.0rem;
            }
        }
        @media (min-width: 767px) {
            .cast-main .cast-image {
            width: 250px;
            height: 439px;
            }
            .cast-main .cast-image-main {
            width: 500px;
            height: 428px;
            }
        }

/* コーナーセクション */
.corner1-section {
  background-color: #e7d0f5;
}
.corner2-section {
   background-color: #00b2d5;
  color: #fff;
}
.corner3-section {
  background-color: #dfc3ae;
}
.corner4-section {
  background-color: #fff266;
}
.corner5-section {
  background-color: #fdc35e;
}
.corner6-section {
  background-color: #f0f0a8;
}
.corner-section-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.corner-description {
  text-align: center;
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
/* 各コーナーの色を調整 */
.corner1-section .corner-description {
  color: #d1d5db;
}
.corner2-section .corner-description {
  color: #1f2937;
}
.corner3-section .corner-description {
  color: #4b5563;
}
.corner4-section .corner-description {
  color: #1f2937;
}
.corner5-section .corner-description {
  color: #1f2937;
}
        
.corner-section-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.corner-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0;
}
.corner-main-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}
.corner-n-out{
  background: #f72b54;
  padding:20px;
}
        @media (min-width: 768px) {
            .corner-main-info {
                flex-direction: row;
                text-align: left;
                gap: 0;
                align-items: center;
            }
            .corner-main-info.reverse {
                flex-direction: row-reverse;
            }
            .corner-n-out{
                padding:40px;
            }
            .corner-section-content {
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.2s ease-out, transform 0.2s ease-out;
                margin-bottom: 3rem;
            }
        }
.corner-main-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.corner-main-image:hover {
  transform: scale(1.02);
}
        @media (min-width: 768px) {
            .corner-main-image {
                width: 45%;
                margin-right: 3rem;
            }
             .corner-main-info.reverse .corner-main-image {
                margin-right: 0;
                margin-left: 3rem;
            }
        }
.corner-main-text-and-cast {
  width: 100%;
}
        @media (min-width: 768px) {
            .corner-main-text-and-cast {
                width: 65%;
            }
        }
.corner-main-text-and-cast h3 {
   font-size: 1.75rem;
   font-weight: 700;
   margin-bottom: 1rem;
}
.corner-main-text-and-cast p {
   color: #000;
   margin-bottom: 2.5rem;
   line-height: 1.8em;
}
/* 各コーナーの色を調整 */
.corner1-section .corner-main-text-and-cast p {
   color: #1f2937;
   line-height: 1.8em;
}
.corner2-section .corner-main-text-and-cast p {
   color: #fff;
  line-height: 1.8em;
}
/* 出演者グリッドのスタイルを動的に調整 */
.corner-cast-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
   gap: 1.5rem;
   justify-content: center;
   margin-top: 1.5rem;
}
/* コーナー1の出演者が1人の時の調整 */
.corner1-cast-grid.is-single-cast {
   grid-template-columns: minmax(100px, 1fr);
   max-width: 250px;
   margin: 0 auto;
}
.corner-cast-grid .cast-item {
   opacity: 1;
   transform: none;
   transition: none;
   text-align: center;
}
.corner-cast-grid .cast-image {
   width: 100%;
   height: auto;
   max-width: 180px;
   max-height: 270px;
   object-fit: contain;
}
.corner-cast-grid .hunter-s{
   width: 100%;
   height: auto;
   max-width: 200px;
   max-height: 267px;
   object-fit: contain;
}
.corner-cast-grid .midashi{
  background: #fff;
  font-size:1.0em;
  color:#000;
  border-radius: 10px;
  padding:5px 10px;
  margin-bottom: 20px;
}
.cast-umi .cast-item .midashi{
  background: #fff;
  font-size:0.8em;
  color:#00b2d5;
  border-radius: 10px;
  padding:5px 10px;
  margin-bottom: 20px;
}
.cast-umi .cast-item p{
  color:#fff;
}
.cast-umi .cast-item .s-txt{
  font-size:0.8em;
}
.cast-50 .midashi{
  background: #fff;
  font-size:0.8em;
  color:#856d5b;
  border-radius: 10px;
  padding:5px 10px;
  margin-bottom: 20px;
}
.cast-hunter .midashi{
  background: #fff;
  font-size:0.8em;
  color:#cfb41e;
  border-radius: 10px;
  padding:5px 10px;
  margin-bottom: 20px;
}
.cast-curry .midashi{
  background: #fff;
  font-size:0.8em;
  color:#8d621e;
  border-radius: 10px;
  padding:5px 10px;
  margin-bottom: 20px;
}
.cast-art .midashi{
  background: #fff;
  font-size:0.8em;
  color:#82559e !important;
  border-radius: 10px;
  padding:5px 10px;
  margin-bottom: 20px;
}

/* 出演者Aの画像に個別にスタイルを適用 */
.cast-image-a {
   border-radius: 0.75rem !important;
}

/* コーナー1の出演者が1人の時の画像サイズ調整 */
.corner1-cast-grid.is-single-cast .cast-image {
   max-width: 250px; /* 画像を大きく表示 */
}
.corner-images {
   display: grid;
   grid-template-columns: repeat(1, minmax(0, 1fr));
   gap: 1.5rem;
   margin-top: 3rem;
}
.cast-art {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 1.5rem;
   margin-top: 3rem;
}
.cast-umi {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 1.5rem;
   margin-top: 3rem;
}
.cast-50 {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 1.5rem;
   margin-top: 3rem;
}
        @media (min-width: 768px) {
            .corner-images {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
            .cast-art {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .cast-umi {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            .cast-50 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
        @media (min-width: 1080px) {
            .cast-umi {
                grid-template-columns: repeat(6, minmax(0, 1fr));
            }
            .cast-50 {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }
.corner-images img {
   width: 100%;
   height: auto;
   border-radius: 1rem;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}
.corner-images img:hover {
   transform: scale(1.05);
}

/* coner1 */
.corner1-section h3 {
  margin-bottom: 60px;
}
        @media (min-width: 768px) {
            .corner1-section h3 {
                text-align: center;
            }
        }
/* coner4,5,6 */
        @media (min-width: 768px) {
            .corner4-section h3,.corner5-section h3,.corner6-section h3 {
                text-align: center;
            }
        }

/* オンデマンド配信セクション */
.ondemand-section {
    background-color: #d6f373;
    text-align: center;
}
.ondemand-banner {
    display: inline-block;
    transition: transform 0.3s ease;
}
.ondemand-banner:hover {
    transform: scale(1.05);
}
.ondemand-banner img {
    border-radius: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    width: 80%;
    height: auto;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.ondemand-note {
    margin-top: 1.5rem;
    font-size: 1.0rem;
    color: #6b7280;
    text-decoration: none;
}
.ondemand-note a{
    text-decoration: none;  
    color:#000;
}

/* 外部サイトリンクセクション */
.external-links {
    text-align: center;
    background-color: #fcf9c3;
}
.link-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
}
        @media (min-width: 768px) {
            .link-grid {
                grid-template-columns: repeat(1, minmax(0, 1fr));
            }
        }
.link-item {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 30px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1fad6b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.link-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.link-item:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}
.link-item img {
    border-radius: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    width: 60%;
    height: auto !important;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.link-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
}
/* 追記した文章のスタイル */
.link-item p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
}
        @media (max-width: 768px) {
            .link-item img {
                width: 70%;
                height: auto !important;
            }
        }

/* フッター */
.footer {
    background-color: #2e98e5;
    color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}
.footer p {
    margin-bottom: 0.5rem;
}
.footer-logo {
    font-weight: 700;
}
        
        /* アニメーション */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
