@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background-color: #f7f2e9;
  font-family: "Zen Maru Gothic", sans-serif;
}
a{
  text-decoration: none;
  color: black;
}

/***
 * SPレイアウト
 *************************/
 @media only screen and (max-width: 768px) and (min-width: 321px) {
  .sp_br{
    display:block;
  }
  .pc_br{
    display: none;
  }
  .sp_span{
    display: block;
    white-space: nowrap;
  }
  .pc_menu{
    display: none;
  }
}

.img_sp{
  display: block;
}
.img_pc{
  display: none;
}
.banner_sp{
  display: block;
}
.banner_pc{
  display: none;
}
/* 基本設定と変数 */
:root {
  --bg-beige: #f5f2e8;
  --header-gray: #a1a1a1;
  --menu-orange: #d16b32;
}

html {
  scroll-behavior: smooth;
}

/* ヘッダー全体 */
.site-header {
  margin: 0;
  background:  var(--bg-beige);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  height: 60px;;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60; /* ドロワー(50)より上に配置 */
}

.back{
  background-color: #1877F2;
}

/* ハンバーガーボタン (アニメーション)  */
.menu-toggle {
  display: flex;
  position: absolute;
  right: 1rem;
  background-color: #383838;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* 3本線のデザイン */
.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background-color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* アクティブ時 (バツ印) のアニメーション */
.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* オーバーレイ */
.overlay {
  position: fixed;
  inset: 0;
  background: black;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 45;
}
.overlay.active {
  opacity: 0.5;
  pointer-events: auto;
}

/* モバイルドロワー */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  background: #fff3b9;
  z-index: 50;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 10px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  }
.drawer.active {
  transform: translateX(0);
}

.drawer-header {
    background: #ffc23e;
    padding: 1rem;
    height: var(--header-height); /* ヘッダーの高さを合わせる */
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
}

.drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.drawer-nav a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 1.25rem;
    color: black;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* SNSリンク */
.social-area {
    padding: 2rem;
    display: flex;
    gap: 1rem;
}
.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
.icon-x { background: black; font-style: italic; font-size: 1.1rem; }
.icon-line { background: #06C755; font-size: 10px; }
.icon-fb { background: #1877F2; font-size: 1.25rem; }

/* コンテンツセクション */
.container {
    width: 100%;
  }
section {
    background: white;
    padding: 50px 20px;
    scroll-margin-top: calc(var(--header-height) + 1rem);
    }
section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* メインビジュアル */
.main-visual{
  padding-top: 30px;
  background-color: #fff3b9;
}
.visual-area{
  height: 360px;
  background-image: url(img/syugou_v2.png);
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 20px;
}
.titleLogo_sp{
  display:block;
  margin: 0 auto;
  padding-top: 10px;
}
.titleLogo_pc {
  display:none;
}

/* バナーエリア */
.banner_area{
  background-color: #fff3b9;
}
.banner_item{
  display: flex;
  align-items: center; /* デフォルトは中央揃え */
  justify-content: center;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  gap: 10px;
  padding: 24px 0 10px;
}

/* リーリス情報 */
.releaseArea{
  width: 280px;
  margin: 0 auto;
}
.releaseDate {
  text-align: center;
  font-size: 20px;
  color: #d9610b;
  border-bottom: none;
  position: relative;
  margin: 0 auto;
}
.releaseDate::before,
.releaseDate::after {
    position: absolute;
    top: 0.8rem;
    height: 1.8rem;
    content: '';
}

.releaseDate::before {
    border-left: solid 3px;
    left: 0;
    transform: rotate(-30deg);
    border-radius: 3px;
}

.releaseDate::after {
    border-right: solid 3px;
    right: 0;
    transform: rotate(30deg);
    border-radius: 3px;
}
.releaseDateSub {
  text-align: center;
  font-size: 25px;
  color: #de422f;
  width: 270px;
  font-weight: 500;
  margin: 0 auto;
}
.releaseDateLine{
  position: relative;
  z-index: 10;
}
.releaseDateLine::before {
  display: block;
  content: "";
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height: 5px;
  background-color: #ffc1cd;
  position: absolute;
  bottom: 3px;
  left: 0;
  border-radius: 20px;
  z-index: -1;
}

.yellowLine{
	position: relative;
  z-index: 10;
}
.yellowLine::before {
  display: block;
  content: "";
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height: 5px;
  background-color: #ffc402;
  position: absolute;
  bottom: 3px;
  left: 0;
  border-radius: 20px;
  z-index: -1;
}


.dateStrong{
  font-size: 40px;
}

/* 絵本アニメーション */
       .stage {
        display: flex;
        align-items: center; /* デフォルトは中央揃え */
        justify-content: center;
        gap: 8px;
        max-width: 1000px;
        width: 100%;
        padding: 20px 0;
    }

    /* 中央の固定画像 */
    .main-image-box {
        flex: 2.5;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* 左右のキャラクター共通ラッパー */
    .character-box {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    /* 2コマアニメーション本体 */
    .wobble-step {
        display: inline-block;
        animation: move-step 0.9s steps(1) infinite;
    }

    @keyframes move-step {
        0% { transform: rotate(-10deg) translateY(0); }
        50% { transform: rotate(10deg) translateY(-5px); }
        100% { transform: rotate(-10deg) translateY(0); }
    }

    /* --- 個別の高さ・サイズ設定 --- */

    /* 左のキャラクターの設定 */
    .left-config {
        align-self: flex-start; /* 上側に配置 */
        margin-top: 20px;
    }
    .left-config .character-img {
        width: 120px; /* 左キャラのサイズ */
        height: auto;
    }

    /* 右のキャラクターの設定 */
    .right-config {
        align-self: flex-end; /* 下側に配置 */
        margin-bottom: 20px;
    }
    .right-config .character-img {
        width: 180px; /* 右キャラのサイズ */
        height: auto;
    }

    /* 右側のキャラのタイミングをずらす */
    .delay {
        animation-delay: -0.4s;
    }

    .character-img {
        display: block;
    }

.index {
  display: flex;
  padding: 0px;
  margin: 0 auto;
  text-align: center;
  gap: 15px;
  justify-content: center;
}
.indexImg{
  width: 100%;
}
.index-pc {
 display: none;
}

.content1{
  background-color: #fff3b9;
  background-image: url(img/background_dot_y.png);
  background-position: center bottom;
  background-size: contain;
  background-repeat: repeat-x;
  padding-top: 10px;
}
.content2{
  background-image: url(img/background_yashi_b.png);
  background-size: 130px;
}
.content2Title {
  text-align: center;
  border-bottom: none;
  color: #de422f;
}
.content2Text{
  text-align: center;
  padding: 10px 0;
  line-height: 32px;
  color: #383838;
}
.content2Img {
  text-align: center;
  margin: 0 auto;
  padding: 22px 0;
  width: 80%;
}
.content2Point {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 15px;
  color: #605f5f;
}
.content2Text_point{
  font-weight: 500;
  font-size: 22px;
}
.point-Word_sp{
  display: block;
}
.point-Word_pc{
  display: none;
}
.first-line-sp{
  padding-right: 60px;
}
.second-line-sp{
  margin: 0 0 0 20px;
  padding-left: 130px;
}
.font-orange{
  color: #ff812e;
}
.font-green{
  color: #08a114;
}

/* --- メニューボタンエリア --- */
.menu{
  background-color: #ffe694;
  padding: 30px 20px;
}
.sp_menu{
  display: block;
}
.pc_menu{
  display: none;
}
.menu_area{
  display: flex;
  flex-wrap: wrap;
}
.menu_item{
  width: 50%;
  padding: 0 0 3px;
}


.content2_2{
  background-image: url(img/scene_2.png),url(img/chara_background.png);
  background-size: 100%, 65px;
  background-position: bottom, center;
  background-repeat: repeat-x, repeat;
  padding: 50px 0px 200px;
}
.content2_2_text{
  padding: 20px 20px 0px;
}

    /* ==========================================================================
       スライダー外枠（のぞき窓となるコンテナ）
       ========================================================================== */
       .slider-wrapper-outer {
        position: relative;
        max-width: 540px;
        margin: 0 auto;
        overflow: hidden;
        padding: 20px 40px;
      }

      .slider-wrapper-outer_cheer {
        padding: 20px 0px 0px;
      }

      .wrapper-outer-ver-cheer{
        padding: 16px 10px;
      }

      /* ==========================================================================
         Swiper.js スライダー設定
         ========================================================================== */
      .swiper {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        overflow: visible; /* 左右のカードを見せるために必須 */
      }
  
      .swiper-slide {
        width: 290px; /* 各カードの固定横幅 */
        height: 400px; /* 各カードの縦幅 */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0.5; /* 非アクティブ（両サイド）カードを半透明に */
        transform: scale(0.9); /* 非アクティブカードを少し縮小 */
      }

      .swiper-slide_cheer  {
        width: 80%; /* 各カードの固定横幅 */
        height: auto; /* 各カードの縦幅 */
      }

      .swiper-slide-ver-cheer{
        width: 312px; /* 各カードの固定横幅 */
        height: 215px; /* 各カードの縦幅 */
      }
  
      /* 中央のアクティブなカードのみ、等倍かつ不透明にする */
      .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
      }
  
      /* ==========================================================================
         キャラクターカードのデザイン (太線・角丸の完全再現)
         ========================================================================== */
      .slider-card {
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        border: 2px solid #262626; /* 画像通りの太い黒色のフチ */
        border-radius: 28px; /* 丸みのある角丸 */
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        user-select: none;
      }
  
      /* アバター（丸型の画像・背景領域） */
      .avatar-circle {
        width: 144px;
        height: 144px;
        border-radius: 50%;
        margin-bottom: 20px;
        flex-shrink: 0;
        overflow: hidden;
      }

      .avatar-green{
        background-image: url(img/yashi_p_g.png);
        background-size: 110%;
        background-position: center;
      }

      .avatar-orange{
        background-image: url(img/yashi_p_o.png);
        background-size: 110%;
        background-position: center;
      }

      .avatar-blue{
        background-image: url(img/yashi_p_l.png);
        background-size: 110%;
        background-position: center;
      }

      .avatar-purple{
        background-image: url(img/yashi_p_pu.png);
        background-size: 110%;
        background-position: center;
      }

      .avatar-pink{
        background-image: url(img/yashi_p_pi.png);
        background-size: 110%;
        background-position: center;
      }

      /* ==========================================================================
         【HTMLからstyle属性を完全排除】アバター色クラス
         ========================================================================== */
      .avatar-yellow {
        background-color: #f59e0b;
      }
  
      /* 実際のアバターに画像を設置する場合のスタイル */
      .avatar-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      /* キャラクター名 */
      .card-title {
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: #171717;
        margin-bottom: 16px;
      }
  
      /* 紹介テキスト領域（縦スクロール付き） */
      .card-desc-container {
        text-align: left;
        width: 100%;
        overflow-y: auto;
        padding-right: 4px;
        flex-grow: 1;
        font-size: 0.75rem;
        color: #404040;
        line-height: 1.625;
      }
  
      .card-desc-container p {
        margin-bottom: 12px;
        font-size: 15px;
        font-weight: 600;
      }
  
      .card-desc-container p:last-child {
        margin-bottom: 0;
      }
  
      /* スクロールバーのカスタマイズ */
      .card-desc-container::-webkit-scrollbar {
        width: 4px;
      }
      
      .card-desc-container::-webkit-scrollbar-thumb {
        background-color: #e5e5e5;
        border-radius: 4px;
      }
  
      /* ==========================================================================
         丸型ナビゲーションボタンスタイル（絶対配置）
         ========================================================================== */
      .custom-navigation-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background-color: rgba(60, 60, 60, 0.85); /* 画像通りのグレー */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        cursor: pointer;
        border: none;
        transition: all 0.2s ease;
        z-index: 10;
        user-select: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      }
  
      .custom-navigation-button:hover {
        background-color: rgba(20, 20, 20, 1);
        transform: translateY(-50%) scale(1.05);
      }
  
      .custom-navigation-button:active {
        transform: translateY(-50%) scale(0.95);
      }
  
      .js-char-prev {
        left: 12px;
      }
  
      .js-char-next {
        right: 12px;
      }

      .js-feat-prev {
        left: 12px;
      }
  
      .js-feat-next {
        right: 12px;
      }
  
      .custom-navigation-button svg {
        width: 20px;
        height: 20px;
      }

      .slider-card_cheer {
        display: flex;
        flex-direction: column;
        align-items: center;
        user-select: none;
      }



/* --- スライダー外枠（はみ出しを隠す） --- */
.loop-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 40px 0;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

/* --- スクロールする中身 --- */
.loop-slider__content {
  display: flex;
  width: fit-content;
  animation: infinite-scroll 30s linear infinite;  /* 常に動き続ける設定 */
}

/* --- 画像アイテムのスタイル --- */
.loop-slider__item {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  margin: 0 20px;
}

.loop-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* --- 左右のグラデーションマスク（自然な消え方） --- */
.loop-slider::before,
.loop-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  z-index: 2;
  pointer-events: none;
}

.loop-slider::before {
  left: 0;
  background: linear-gradient(to right, #f9f9f9, transparent);
}

.loop-slider::after {
  right: 0;
  background: linear-gradient(to left, #f9f9f9, transparent);
}

/* --- アニメーション定義 --- */
@keyframes infinite-scroll {
  0% {
      transform: translateX(-50%);
  }
  100% {
      transform: translateX(0%);
  }
}

span.marker {
  background: linear-gradient(transparent 80%, #ffc402 80%);
}

.content3{
  background-image: url(img/reading_background.png);
  background-size: 55px;
}
.reading_movie{
  width: 90%;
  height: 200px;
  margin: 0 auto;
  padding: 0 0 30px;
}
.reading_release{
  padding: 10px 0;
}
.reading_message_area {
  background-color: #fff;
  padding: 15px;
  border: solid 3px #575656;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.voice-actor_area{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 0 15px;
}
.voice-actor_area img{
  width: 40%;
}
.voice-actor_name{
  font-size: 25px;
  font-weight: 600;
}
.ribbon3{
  display: inline-block;
  position: relative;
  height: 46px;
  line-height: 46px;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  background: #ffc23e;
  color: #383838;
  box-sizing: border-box;
  margin: 0 0 10px;
}
.ribbon3:before, .ribbon3:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.ribbon3:before {
  top: 0;
  left: 0;
  border-width: 23px 0px 23px 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.ribbon3:after {
  top: 0;
  right: 0;
  border-width: 23px 10px 23px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.notice_area{
  padding: 0 0 10px;
}
.notice{
  text-align: center;
  padding: 10px 26px 13px;
  background-color: #07a114;
  color: #fff;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}
    /* ==========================================================
        プロフィール　アコーディオン
       ========================================================== */

.voice-actor_profile{
 padding: 20px 0 0 ;
}
    /* アコーディオン全体（details要素） */
    .profile-accordion {
      width: 100%;
      max-width: 480px; /* LPのデザインに応じて調整してください */
      background-color: #ffffff;
      border: 3px solid #575656; /* 太めのダークグレー境界線 */
      border-radius: 15px;
      padding: 24px 16px;
      box-sizing: border-box;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: block; /* detailsのデフォルト挙動をリセット */
    }

    /* ホバー時の挙動 */
    .profile-accordion:hover {
      border-color: #575656; 
    }

    /* クリック可能なヘッダー（summary要素） */
    .accordion-trigger {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none; /* デフォルトの三角形矢印を非表示（標準ブラウザ用） */
      cursor: pointer;
      outline: none;
      user-select: none;
      -webkit-tap-highlight-color: transparent; /* モバイルのタップ時青枠を防止 */
    }

    /* Safari用の三角形矢印非表示ルール */
    .accordion-trigger::-webkit-details-marker {
      display: none;
    }

    /* タイトルテキストのスタイル */
    .accordion-title {
      font-size: 16px;
      font-weight: 700;
      color: #025120; /* エメラルドグリーン */
      letter-spacing: 0.15em;
      margin: 0;
    }

    /* アイコンコンテナ（ダークグレーの円） */
    .accordion-icon {
      position: absolute; /* 親要素（.accordion-trigger）に対して絶対配置 */
      right: 0; /* 右端にぴったり固定 */
      width: 25px;
      height: 25px;
      background-color: #025120;
      border-radius: 50%;
      flex-shrink: 0;
      transition: background-color 0.3s ease;
    }

    /* 「＋」と「ー」の形状を作るCSS擬似要素 */
    .accordion-icon::before,
    .accordion-icon::after {
      content: "";
      position: absolute;
      background-color: #ffffff; /* 白いライン */
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    }

    /* 横棒（＋とーの両方で使う共通部分） */
    .accordion-icon::before {
      width: 14px;
      height: 2.5px;
      border-radius: 1px;
    }

    /* 縦棒（閉じていて「＋」の時に表示する部分） */
    .accordion-icon::after {
      width: 2.5px;
      height: 14px;
      border-radius: 1px;
    }

    /* 【開いた状態（detailsにopen属性がついた時）】のアイコンスタイル */
    .profile-accordion[open] .accordion-icon::after {
      /* 縦棒を90度回転させて、縮小しつつ消し去ることで綺麗な「ー」移行を実現 */
      transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
      opacity: 0;
    }

    .profile-accordion[open] .accordion-icon {
      background-color: #025120; /* 開いた時は少し濃いグレーに変化 */
    }


    /* ----------------------------------------------------------
       ★重要：ピュアCSSアコーディオンの滑らかなアニメーション設定
       ---------------------------------------------------------- */

    /* アコーディオンの中身（通常時：非表示） */
    .accordion-content {
      display: grid;
      grid-template-rows: 0fr; /* 初期状態は高さ0 */
      transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    /* 【開いた状態】かつ直後の要素を展開する */
    .profile-accordion[open] .accordion-content {
      grid-template-rows: 1fr; /* 中身の実高に合わせて滑らかに拡大 */
    }

    /* 高さをCSS Gridでアニメーションさせるための必須ラッパー */
    .accordion-inner {
      min-height: 0; /* これがないとgridアニメーションが動作しません */
    }

    /* プロフィールの本文テキスト */
    .profile-text {
      padding-top: 24px; /* 開いた時に現れるタイトルとの間の余白 */
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.8;
      color: #2d3748;
      letter-spacing: 0.05em;
    }

    /* 文章の改行・段落用マージン */
    .profile-text p {
      margin: 0 0 1.25em 0;
    }

    .profile-text p:last-child {
      margin-bottom: 0; /* 最後の段落は下マージンをカットして枠線とのバランスを維持 */
    }
.content4{
  background-image: url(img/news_background.png);
  background-size: 55px;
}
.indexTitle{
  margin: 0 auto;
}
.baseText {
  padding: 20px 0;
  color: #383838;
  text-align: justify;
}
.newsArea {
  background-color: #fff;
  padding: 15px;
  border: solid 3px #575656;
  border-radius: 15px;
}

 /* スクロールエリア */
 .scroll-area {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 12px;
  /* Firefox用スクロールバー設定 */
  scrollbar-width: thin;
  scrollbar-color: #e92771 transparent;
}

/* Chrome, Safari用スクロールバー設定 */
.scroll-area::-webkit-scrollbar {
  width: 12px;
}

.scroll-area::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-area::-webkit-scrollbar-thumb {
  background-color: #e92771;
  border-radius: 12px;
  /* 【重要】透明なボーダーを付けて、背景色の描画範囲を制限する */
  border: 3px solid transparent; 
  background-clip: content-box; 
}

.ribbon1 {
  display: inline-block;
  position: relative;
  height: 46px;/*リボンの高さ*/
  line-height: 46px;/*リボンの高さ*/
  text-align: center;
  width: 100%;
  font-size: 18px;/*文字の大きさ*/
  font-weight: 500;
  background: #e92771;/*塗りつぶし色*/
  color: #fff;/*文字色*/
  box-sizing: border-box;
  margin: 0 0 10px;
}

.ribbon1:before, .ribbon1:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.ribbon1:before {
  top: 0;
  left: 0;
  border-width: 23px 0px 23px 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.ribbon1:after {
  top: 0;
  right: 0;
  border-width: 23px 10px 23px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.ribbon-chara-1 {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 80px;
}
.ribbon-chara-2 {
  position: absolute;
  bottom: 0;
 right: 10px;
  width: 80px;
}

.newsMain {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}
.newsDate{
  font-weight: 500;
}
.newsContent {
  border-left: solid 1.4px #d9610b;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}
.newsDetail {
  text-align: right;
  padding: 10px 10px 0 0;
  color: #e92771;
  font-weight: 500;
}
.detailText{
  padding-right: 15px;
  position: relative;
}
.detailText::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  border-left: 2px solid #d9610b;
  border-bottom: 2px solid #d9610b;
  transform: rotate(-135deg);
  box-sizing: content-box;
  transition: 0.6s cubic-bezier;
}

.content6 {
  background-image: url(img/voice-cheer_background.png);
  background-size: 85px;
  background-position: center;
  background-repeat: repeat;
  padding: 50px 0px 50px;
}

.cheer-title{
  padding: 0 30px;
}
.content6_indexTitle {
  width: 450px;
}


.content7{
  background-image: url(img/dots.png), url(img/plof_background.png);
  background-size: 100%, 65px;
  background-position: bottom, center;
  background-repeat: repeat-x, repeat;
}
.profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #605f5f;
  padding: 20px 0 0 0;
}
.profileTitle {
  display: flex;
  flex-direction: column;
}

.text1{
  padding: 20px 0;
  text-align: justify;
  color: #383838;
  font-size: 15px;
}

/* パーツの共通スタイル */
.author-box {
  grid-area: author;
  padding: 10px;
  color: #383838;
}
.author-label { margin-bottom: 4px; }
.author-name { font-size: 30px; font-weight: 600; margin: 0; line-height: 30px;}
.author-reading {
  font-size: 16px;
  font-weight: 400;
}
.photo-box {
  grid-area: photo;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.comment-box {
  grid-area: comment;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #383838;
}
/* --------------------------------------------------
   SP版レイアウト (モバイルファースト)
-------------------------------------------------- */
.card-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 120px;
  grid-template-areas:
     "author  photo"
     "comment comment";
}


.messageArea {
  background-image: url(img/p0113_l\ 2.png);
  background-color: #fff;
  padding: 15px;
  border: solid 3px #575656;
  border-radius: 15px;
}
.messageText {
  padding: 15px 0 0 0;
}
.messageText p{
  padding-bottom: 10px;
}
.ribbon2{
  background-color: #ffc23e;
  color: #383838;
  font-weight: 700;
}
.ribbon2:after{
    border-color: transparent #fcf3e6 transparent transparent;
}
.ribbon2::before{
  border-color: transparent transparent transparent #fcf3e6;
}

.footerArea{
  width: 100%;
  background-color: #fff3b9;
}
.sharePoint{
  color: #d9610b;
  padding: 30px 0 20px;;
}
.shareArea {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(img/sns_background.png);
  background-size: 60px;
}
.comingsoonArea{
  background-color: #ffee6a;
  background-image: url(img/dots_s.png);
  background-position: bottom center;
  background-size: 100%;
  background-repeat: repeat-x;
}
.comingsoon-img{
  display: flex;
  justify-content: center;
}
.comingsoon-img img{
  width: 45%;
}

.shareText {
  width: 224px;
  margin: 0 auto;
}
.share {
  text-align: center;
  font-size: 20px;
  color: #575656;
  border-bottom: none;
  position: relative;
  margin: 0 auto;
  font-weight: 500;
}
.share::before, .share::after {
  position: absolute;
  top: 5px;
  height: 23px;
  content: '';
}
.share::before {
  border-left: solid 1.5px;
  left: 10px;
  transform: rotate(-30deg);
  border-radius: 3px;
}

.share::after {
  border-right: solid 1.5px;
  right: 10px;
  transform: rotate(30deg);
  border-radius: 3px;
}

.shareIconArea {
  padding: 15px;
  background-color: #fff;
  border: solid 3px #575656;
  border-radius: 15px;
}
.iconArea{
  display: flex;
  justify-content: center;
  gap: 10px;
  text-align: center;
  margin: 0 auto;
  padding: 12px 0;
  align-items: center;
  text-decoration: none;
}

.iconArea img{
  width: 40px;
  height: 40px;
}
.footerLogo {
  width: 197px;
  margin: 0 auto;
  padding: 50px 0 50px 0;
}
.copyright{
  height: 46px;
  background: #605f5f;
  color: #fff;
  text-align: center;
  line-height: 46px;
  font-size: 12px;
}



/***
 * PCレイアウト
 *************************/

 @media only screen and (min-width: 768px) {
  .sp_br{
    display:none;
  }
  .pc_br{
    display: block;
  }
  .img_sp{
    display: none;
  }
  .img_pc{
    display: block;
  }
  .sp_menu{
    display: none;
  }
  .pc_menu{
    display: block;
  }
  .banner_sp{
    display: none;
  }
  .banner_pc{
    display: block;
  }
  .menu{
    padding: 60px 20px;
  }
  section {
    padding: 80px 25px;
  }
  .main-visual {
    margin: 0 auto;
    height: 842px;
    padding-top: 74px;
  }
  .visual-area {
    background-image: url(img/syugou.png);
    height: inherit;
    background-size: contain;
  }
  .container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
  .titleLogo_sp {
    display:none;
  }
  .titleLogo_pc {
    display:block;
    width: 830px;
    margin: 0 auto;
    padding: 60px 0 0;
  }
  .banner_item {
    padding: 24px 0 10px;
    min-width: 700px;
    width: 80%;
    margin: 0 auto;
  }
  .banner_area {
    padding: 20px 0 0;
  }
  .releaseDateSub {
    font-size: 2.5em;
    width: auto;
    margin: inherit;
  }
  .character-img {
    width: 300px;
  }
  .main-image-box {
    flex: 1.5;
  }
  .menu_item {
    width: 300px;
  }
  .menu_area {
    width: 1100px;
    margin: 0 auto;
    justify-content: center;
  }
  .content2Img {
    margin: inherit;
    width: 278px;
  }
  .content2ImgArea {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .content2Point {
    font-size: 23px;
    font-weight: 700;
  }
  .content2-sceneImg{
    width: 500px;
  }
  .content2-sceneImg-2{
    width: 350px;
  }
  .content2Text{
    text-align: left;
  }
  .content2ImgArea-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .content2-item3-text{
    display: flex;
    flex-wrap: wrap;
  }
  .content2-item3{
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  width: 1000px;
  margin: 0 auto;
  }
  .text-pc-center{
  padding: 50px 0px;
  text-align: center;
  }
  .content2_2 {
    background-image: url(img/chara_background.png);
    background-size: 65px;
    background-position: center;
    background-repeat: repeat;
    padding: 50px 0px;
  }
  .content2_2_index{
    margin: 0 auto;
    width: 500px;
  }
  .content2_2_text{
    text-align: center;
  }
  .slider-wrapper-outer {
    max-width: 850px;
  }
  .point-Word_sp{
    display: none;
  }
  .point-Word_pc{
    display: block;
    text-align: left;
  }
  .first-line{
    padding-right: 10px;
  }
  .second-line {
    margin: 0 0 0 20px;
    padding-left: 10px;
  }
  .stage {
    max-width: 950px;
    margin: 0 auto;
  }
  .left-config .character-img {
    width: 180px;
  }
  .loop-slider {
    padding: 80px 0;
  }
  .loop-slider__content {
    gap: 30px;
  }
  .loop-slider__item {
    width: 170px;
    height: 170px;
  }
  .reading_release {
    margin: 0 auto;
    width: 600px;
  }
  .notice {
    width: 600px;
    margin: 0 auto;
    height: 290px;
  }
  .reading_message_area {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    background-image: url(img/voice-actor_background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .profile-accordion {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .voice-actor_area {
    flex-direction: column;
    width: 400px;
  }
  .voice-actor_area img {
    width: 200px;
  }
  .ribbon3:before {
    border-color: transparent transparent transparent #fcf3e6;
  }
  .ribbon3:after {
    border-color: transparent #fcf3e6 transparent transparent;
  }
  .reading_movie{
    width: 546px;
    height: 335px;
  }
  .accordion-trigger {
    justify-content: center;
  }
  .indexTitle {
    width: 40%;
    padding: 0 0 40px 0;
  }
  .newsArea {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .newsContent {
    flex-direction: inherit;
  }
  .newsDetail {
    padding: 0 10px 0px 20px;
  }
  .ribbon-chara-1 {
    left: 300px;
  }
  .ribbon-chara-2 {
    right: 300px;
  }
  .baseText {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 20px;
  }
  .index{
    display: none;
  }
  .cheer-title {
    width: 450px;
  }
  .swiper-slide_cheer {
    width: 440px;
  }
  .content7 {
    background-size: 400px, 65px;
    padding-bottom: 150px;
  }
  .comingsoon-img img {
    width: 320px;
  }
  .comingsoonArea {
    background-size: 400px;
  }
  .author-box {
    padding: 10px 0;
  }
  .author-reading {
    font-size: 21px;
  }
  .comment-box {
    width: 480px;
  }
  .card-grid {
    grid-template-columns: 1fr 240px;/* 写真(photo)を1行目と2行目の両方に配置して縦にまたがせる */
    grid-template-areas:
       "author  photo"
      "comment photo";
    align-items: start;
  }
  .photo-box {
    /* align-self: start; にすると、
    写真が「作者＋コメント」の全高に対して引き伸ばされず、
    上端（作者と同じ高さ）に固定されます。
    */
    align-self: start;
    width: 100%;
  }
  .comment-box {
    width: auto;
    padding-right: 30px;
  }
  .messageArea {
    display: flex;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
  }
  .ribbon2 {
    height: 94px;
    line-height: 94px;
    width: 348px;
  }
  .ribbon2:before {
    border-width: 47px 0px 47px 20px;
  }
  .ribbon2:after {
    border-width: 47px 20px 47px 0px;
  }
  .shareIconArea {
    padding: 15px;
    border: solid 1px #262626;
    border-radius: 10px;
    background-color: #fff;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .index-pc {
    display: flex;
    padding: 0px;
    margin: 0 auto;
    text-align: center;
    gap: 15px;
    justify-content: center;
    width: 950px;
  }
  .indexImg{
    width: 259px;
    margin: 0 auto;
  }
  .drawer {
    width: 32%;
    height: 480px;
  }
  .footerLogo {
    width: 236px;
  }


}



@media (min-width: 1536px) {
  .container {
      max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .container {
      max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .container {
      max-width: 100%;
  }
}