@charset "utf-8";


/* Topセクション */
#top {
    position: relative; width: 100%; height: auto;
}



/* KVエリア */
.kv {
    position: relative;
    width: 100%;
     max-width: 1000px;
  aspect-ratio: 1000 / 1414; /* ← 縦横比を保持 */
    z-index: 2;
    top: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.8);
    transition: none;
}
.kv.show {
    animation: kvPopIn 0.5s ease-out forwards;
}


.kv-bg {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を縦横比を保って埋め込む */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}


/* 放射線背景 */
.bg-layer { position: absolute;
    top: -2.9vw;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    margin: 0 auto;
    z-index: 9;
   
}


.bg-layer-img {
    position: absolute;
    top: -2.9vw;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    margin: 0 auto;
     background: url("../img/KV_bg1.png") no-repeat center;
    background-size: 140% auto;
    animation: moveBackground 1.1s linear infinite;
    transform-origin: center;
    will-change: transform;
}

@media screen and (max-width: 1280px) {
.bg-layer-img {
 background-size:180% auto;
}
}
/* タブレットの縦向き（portrait）を非表示 */
@media screen and (min-width: 600px) and (max-width: 1024px) and (orientation: portrait) {
.bg-layer {
    display: none !important;
  }
}

/* タブレットの横向き（landscape）を非表示 */
@media screen and (min-width: 600px) and (max-width: 1024px) and (orientation: landscape) {
.bg-layer {
    display: none !important;
  }
}


@media screen and (max-width: 599px) {
#top {
    width: 100%; min-height:130%;
}
    
    .kv {top: 60px;
}
    

    
    
/* 放射線背景 */
.bg-layer { position: absolute;
    top: -2.9vw;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height:120%;
    margin: 0 auto;
    z-index: 9;
   
}


.bg-layer-img {
    position: absolute;
    top: -2.9vw;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    margin: 0 auto;
     background: url("../img/KV_bgSP0.png") no-repeat center;
    background-size: 134vw auto;
    animation: moveBackground 1.1s linear infinite;
    transform-origin: center;
    will-change: transform;
}
}/**/


    


@keyframes moveBackground {
    0% {
        transform: scale(1.1) rotate(2deg);
    }
    1%, 20% {
        transform: scale(1);
    }
    21%, 50% {
        transform: scale(1.1) rotate(3deg);
    }
    51%, 70% {
        transform: scale(1.1)
    }
    71%, 100% {
        transform: scale(1.1)
    }
}

@keyframes kvPopIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    60% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}









main {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
main.show {
    opacity: 1;
    transform: translateY(0);
}
.topics-bg {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}
/* 背景に回転する集中線 */
.topics-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vw;
    height: 150vw;
    background-image: url('../img/kaiten.jpg'); /* ここに集中線画像のURL */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateBg 30s linear infinite;
    opacity: 0.15; /* うっすら見える */
    z-index: 0;
}
/* 回転アニメーション */
@keyframes rotateBg {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/* コンテンツは z-index:1 で重ねる */
.topics-bg > * {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .topics-bg::before {
        width: 240vw;
        height: 240vw;
        animation-duration: 60s;
        opacity: 0.1;
    }
}
/* ------------------------------------------------------------------- 
 * header
 * ------------------------------------------------------------------- */
#header {}
/*
---------------------------------------------
topics
---------------------------------------------
*/
#topics {height: auto; 
    position: relative;
    padding: 0;
}
#topics li a {
    transition: all 0.3s;
}
#topics li a:hover {
    color: #666;
}
.topics-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    max-width:1000px;
    color: #333;
}
.topics-box {
    padding: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    max-width: 1080px;
    color: #333;
}
#feed {
    width: 100%;
    background: url(../img/feedbg.png) repeat-x;
    border: double 6px #231815;
}
#feed ul.entry {}
#feed ul.entry li {
    line-height: 1.2;
    padding: 2% 5%;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 10px;
    border-bottom:2px solid #231815;
}
#feed ul.entry li a, #feed ul.entry li a:visited {
    color: #eee;
    text-decoration: none;
}
#feed ul.entry li .entry-date {
    color: #fff;
    display: block;
}
.bloglink {
    font-size: 0.9rem;
    margin: 1rem 0;
    text-align: center;
}
.bloglink a {
    color: #333;
    text-decoration: none;
    position: relative;
    padding-bottom: 10px;
}
.bloglink a::before {
    content: "";
    position: absolute;
    right: 0%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}
.bloglink a:hover::before {
    width: 0%;
}
.top-kokuchi {
    position: relative;
    z-index: 2;
    padding: 0;
}
.kokuchi-area {
    display: flex;
    flex-wrap: wrap; /* 自動折り返し */
    justify-content: center;
    gap: 20px; /* 要素間の隙間 */
    padding: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1100px;
    text-align: center;
}
.kokuchi-item {
    width: 300px; /* 固定幅 or 必要に応じて % に */
    padding-bottom: 30px;
}
.kokuchi-img {
    width: 100%;
    max-width: 100%;
}
.kokuchi-img a img {
    width: 100%;
    transition: opacity 0.3s;
}
.kokuchi-img a img:hover {
    opacity: 0.5;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * topics
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
    #topics {
        margin: 0;
    }
    #topics .topics-content {
        width: 100%;
    }
    .topics-box {
        width: 100%;
        max-width: 80%;
    }
} /**/

@media screen and (max-width:767px) {
    #topics {
margin-top:120px;/*メインとの調整*/
    }

} /**/





/*
---------------------------------------------
ちまちまアイコン
---------------------------------------------
*/
#topics .icon-01, #topics .icon-01 canvas {
    position: absolute;
    top: 5%;
    left:35%;
    width: 150px;
}

#topics .icon-02, #topics .icon-02 canvas {
    position: absolute;
    top: 5%;
    right: 35%;
    width: 150px;
}

#ticket .icon-03, #ticket .icon-03 canvas {
    position: absolute;
    top: 0%;
    left: 10%;
    width:20%;
}


#ticket .icon-04,#ticket.icon-04 canvas {
    position: absolute;
    top: 0%;
    right: 10%;
    width:20%;
}


.apng-image {
    width: 100%;
    height: auto;
    display: block;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * ちまちまアイコン
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
#topics .icon-01, #topics .icon-01 canvas{
        position: absolute;
        top: 5%;
        left: 20%;
        width: 100px;
    }
    #topics .icon-02, #topics .icon-02 canvas{
        position: absolute;
        top: 5%;
        right: 20%;
        width: 100px;
    }
    
    #ticket .icon-03, #ticket .icon-03 canvas {
    position: absolute;
    top:0%;
    left: 1%;
    width:30%;
}


#ticket .icon-04,#ticket.icon-04 canvas {
    position: absolute;
    top: 0%;
    right: 1%;
    width:30%;
}
    
}
/*
---------------------------------------------
剣ペン　線
---------------------------------------------
*/
.img-line {
    background: url("../img/border.png") repeat-x top left;
    background-color: none;
    background-size: 100px 21px;
    padding: 10px 0;
    margin: 0;
}
/* ------------------------------------------------------------------- 
 * 
 * visual
 * ------------------------------------------------------------------- */
.visual-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-top: 10px solid #FFF700;
    border-bottom: 10px solid #FFF700;
}
.visual-wrapper picture, .visual-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease, opacity 1s ease;
    will-change: transform, opacity;
}
.responsive-image {
  width: 100%;
  aspect-ratio: 16 / 11; /* 必要に応じて比率調整 */
  overflow: hidden;
}

.responsive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* はみ出しを許容し中央を維持 */
  object-position: center;
  display: block;
}

/* スマホ時の左右トリミングの調整（任意） */
@media (max-width: 768px) {
  .responsive-image {
     aspect-ratio: 16 / 12; /* スマホで縦長になるよう比率変更 */
  }
}

/*
---------------------------------------------
ticket
---------------------------------------------
*/
#ticket {position: relative;
    padding: 60px 0;
  overflow: hidden;
}


.monogram-bg {
  position: absolute;
  top: 0; left: 0; width: 100vw;min-height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.monogram-item {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.info-content{
position:inherit;
}


.info-wrapper {
    position: relative;
    margin-top: 60px; /* テーブル上に画像を重ねるためのスペース */
}
.floating-image {
    position: absolute;
    top: -80px; /* テーブルより上に浮かせる */
    left: 30%;
    transform: translateX(-80%);
    animation: fanSwing 3s ease-in-out infinite;
    z-index: 2;
}
@keyframes fanSwing {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) rotate(2deg);
    }
    50% {
        transform: translateX(-50%) rotate(0deg);
    }
    75% {
        transform: translateX(-50%) rotate(-2deg);
    }
    100% {
        transform: translateX(-50%) rotate(0deg);
    }
}
/* 画像サイズ調整（お好みで） */
.img-h3 {
    width: 200px;
    height: auto;
}
.info {padding-top: 50px;font-weight: 700;
    border: 10px double #231815;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 5rem;text-align: center;
   ;
    background: url("../img/bggray.jpg") repeat;
}
  .info-inner {
  position: relative;
  padding: 5%;
  z-index: 1; /* 本体が前面に来るように */
}

.info-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-image: url("../svg/gizaL.svg"), url("../svg/gizaR.svg");
  background-repeat: repeat-y, repeat-y;
  background-size: 50px, 50px;
  background-position: top left, top right;

  opacity: 1; /* ←ここで背景画像の透明度だけを指定 */
  z-index: -1; /* 背景として本体の裏に表示 */
  pointer-events: none; /* 背景がクリックを妨げないように */
} 

.info h4{font-size: 1.2em;padding: 2em 0 1em;
}
.info h4 span{background: linear-gradient(transparent 70%, #ff0066 70%);
}




.sch img {
    width:500px;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * ticket
 * ------------------------------------------------------------------- */
@media(max-width:992px) {
    #ticket {
        padding: 30px 0;
    }
 
  .monogram-bg {
    display: none !important;
  }



.info-inner::before {
  background-size: 30px, 30px;

  opacity: 0.3; /* ←ここで背景画像の透明度だけを指定 */

}  
    .info {padding-top: 10px;
        width: 100%;
        max-width: 100%;
    }

    .info-wrapper {
    position: relative;
    margin-top: 180px; /* テーブル上に画像を重ねるためのスペース */
}
.floating-image {
    position: absolute;
    top: -100px; /* テーブルより上に浮かせる */
    left: 50%;
    transform: translateX(-100%);
    animation: fanSwing 3s ease-in-out infinite;
    z-index: 2;
}
    
    .sch img {
        width:90%;
    }   
   .img-h3 {
    width: 200px;
    height: auto;
} 
} /*end*/

/* ------------------------------------------------------------------- 
 * caststaff
 * ------------------------------------------------------------------- */
#caststaff {
    position: relative;
    padding: 60px 0;
}
.exploding-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.lightning-drop {
    position: absolute;
    width: 24px;
    height: 40px;
    pointer-events: none;
    will-change: transform, opacity;z-index: 10;
}
.caststaff-content {
    width: 100%;
    max-width: 1000px;
    padding: 0 0 2rem;
    margin: 0 auto;
    text-align: center;
}

.credit-link-nakashima,.credit-link-inoue{width: 300px;max-width: 300px; margin: auto;}
.castarea-title {
    width: 100%;
    max-width: 60%;
}




.staffcreditlink {
    text-align: center;
    margin: auto;
}
.staffcreditlink a {
    color: #ff0066;
    text-decoration: none;
    position: relative;
    padding-bottom: 10px;
}
.staffcreditlink a::before {
    content: "";
    position: absolute;
    right: 0%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ff0066;
    transition: all 0.3s ease;
}
.staffcreditlink a:hover::before {
    width: 0%;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * caststaff
 * ------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    #caststaff {padding: 30px 0;}
    .caststaff-content {
        max-width: 90%;
    }
    .castarea-title {
        width: 100%;
        max-width: 100%;
    }

    .staffcreditlink a {
        font-size: 0.9rem;
    }
} /*end*/



.slide-area {
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}
.slide1 {
    width: 110%;
    max-width: 110%;
    height: 100px;
    margin: 0 auto 0 -5%;
    padding: 0;
}
.slide1 {
    background: url("../svg/copy1.svg");
    -webkit-background-size: auto 100px;
    background-size: auto 100px;
    background-repeat-y: no-repeat;
    animation: bgscroll-2 50s linear infinite;
}
.slide2 {
    width: 110%;
    max-width: 110%;
    height: 100px;
    margin: 0 auto 0 -5%;
    padding: 0;
}
.slide2 {
    background: url("../svg/copy2.svg");
    -webkit-background-size: auto 100px;
    background-size: auto 100px;
    background-repeat-y: no-repeat;
    animation: bgscroll-2 50s linear infinite;
}

.slide3 {
    width: 110%;
    max-width: 110%;
    height: 100px;
    margin: 0 auto 0 -5%;
    padding: 0;
}
.slide3 {
    background: url("../svg/copy3.svg");
    -webkit-background-size: auto 100px;
    background-size: auto 100px;
    background-repeat-y: no-repeat;
    animation: bgscroll-2 50s linear infinite;
}


@-webkit-keyframes bgscroll-1 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1950px 0;
    }
}
@keyframes bgscroll-1 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1950px 0;
    }
}
@-webkit-keyframes bgscroll-2 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -1950px 0;
    }
}
@keyframes bgscroll-2 {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -1950px 0;
    }
}
/* ------------------------------------------------------------------- 
 * responsive:
 * img-gallery
 * ------------------------------------------------------------------- */

@media screen and (max-width:992px) {
    
    
    .slide1,.slide2,.slide3 {
    -webkit-background-size: auto 50px;
    background-size: auto 50px;height: 50px;
}


} /*end*/


@media screen and (max-width:450px) {
    .img-gallery {
        padding: 0;
    }
} /*end*/
@media screen and (max-width:375px) {
    .img-gallery {}
} /*end*/
@keyframes bgscroll-1sp {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 840px 0;
    }
}
@keyframes bgscroll-1sp {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 840px 0;
    }
}
@-webkit-keyframes bgscroll-2sp {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -1200px 0;
    }
}
@keyframes bgscroll-2sp {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -1200px 0;
    }
}