
@font-face {
	font-family: 'Sawarabi Mincho';
	src: url(../font/SawarabiMincho-Regular.ttf);
}


html, body {
  margin: 0;
  padding: 0;
  top:0;
  font-family: 'Sawarabi Mincho', sans-serif;
}

div {
  user-select: none;
}

body{
    /*背景の固定と横幅合わせ*/
    background-image:url(../image/bg_1.jpg);
    background-attachment: fixed;
    background-size:cover;
    background-position: center;
}

/*トップ画面*/

.main_container{
    pointer-events: none;
    width:100%;
    margin: 0;
    aspect-ratio:16/9;
}

.img_main{
    /*画像の横幅合わせと中央寄せ*/
    margin: auto;
    display: block;
    position:relative;
}

.img_main img{
    width:100%;
    margin:0;
}

.img_top_chara{
    position:absolute;
    width:100%;
    margin-top:-57%;
}

.img_top_chara_all{
    position:absolute;
    width:100%;
    margin-top:-57%;
}

.img_top_chara_img{
    width:100%;
    opacity:0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation-fill-mode: forwards;
}

.img_top_chara_img.show {
  opacity: 1;
  transform: translateY(0);
}

.logo_2{
    position:absolute;
    width:25%;
    margin-top:-25%;
    margin-left:73%;
}

.logo_2_img{
    width:100%;
    opacity:0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    animation-fill-mode: forwards;
}

.logo_2_img.show{
    opacity: 1;
}

.top_text{
    position:absolute;
    margin-top:-23%;
    margin-left:8%;
}

.top_text_p{
    font-size:3.6cqw;
    font-weight: 500;
    color: #fff;
  text-shadow: 
    0 0 10px #ff6b6b,
    0 0 20px #ff6b6b,
    0 0 40px #4ecdc4,
    0 0 80px #4ecdc4;

    opacity:0;
    transform: translateX(-20px);
    transition: opacity 2s ease-out, transform 2s ease-out;
    animation-fill-mode: forwards;
}

.top_text_p.show{
    opacity: 1;
    transform: translateX(0);
}

/*更新情報*/
.sec1{
    pointer-events: none;
    /*画像の横幅合わせと中央寄せ*/
    max-width:100%;
    margin: auto;
    display: block;
}

.sec1 img{
    /*画像の横幅合わせと中央寄せ*/
    max-width:100%;
    margin: 0;
    display: block;
}

.news_title{
    position:absolute;
    margin-top:-52%;
    margin-left:10%;
    font-size:5cqw;
    text-align:center;
   
    font-weight: 700;
    color: #fff;
      text-shadow: 
    0 0 2em #00ffff,
    0 0 4em #00ffff,
    0 0 8em #00ffff;

    opacity:0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation-fill-mode: forwards;
}

.news_title.show{
    opacity:1;
    transform: translateY(0);
}

.news_title span{
    font-size:7cqw;
    letter-spacing:-1.2cqw;
}

.news_content_title{
    position:absolute;
    margin-top:-26%;
    margin-left:30%;
    font-size:3cqw;
    font-weight:bold;
    color:white;
    text-shadow: 
    0 0 3em #d6d201,
    0 0 6em #d6d201;

    opacity:0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation-fill-mode: forwards;
}

.news_content_title.show{
    opacity:1;
    transform: translateY(0);
}

.news_content_detail{
    position:absolute;
    margin-top:-20%;
    margin-left:33%;
    font-size:2.5cqw;
    font-weight:bold;
    color:white;
    text-shadow: 
    0 0 3em #d6d201,
    0 0 6em #d6d201;

    opacity:0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation-fill-mode: forwards;
}

.news_content_detail.show{
    opacity:1;
    transform: translateY(0);
}

.news_item_1{
    pointer-events: none;
    position:absolute;
    width:10vw;
    margin-top:-16%;
    margin-left:8%;
    transform:rotate(-20deg);

    opacity:0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation-fill-mode: forwards;
}

.news_item_1.show{
    opacity:1;
}

.news_item_2{
    pointer-events: none;
    position:absolute;
    width:10vw;
    margin-top:-28%;
    margin-left:83%;
    transform:rotate(10deg);

    opacity:0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation-fill-mode: forwards;
}

.news_item_2.show{
    opacity:1;
}

/*PV*/
.sec2{
    background-color:rgba(0, 0, 0, 0.8);
    width:100%;
    padding-top: 0%;
    padding-bottom: 10%;
}

.sec2 video{
    /*画像の横幅合わせと中央寄せ*/
    max-width:100%;
    margin: auto;
    display: block;
}

.video-container {
    max-width:85%;
    border-radius: 1.6em;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 0.1em solid rgba(255, 255, 255, 0.2);
    padding: 0.1em;
    filter: drop-shadow(0 0 2px #000);
    margin: auto;
    display: block;

    opacity:0;
}

.video-container.show{
    animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(20px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

.video-container-wrapper{
    position: relative;
}

.video-over{
    position:absolute;
    max-width:100%;
    margin: auto;
    display: block;
    top:0;
    pointer-events:all;
    cursor:pointer;
}

/*あらすじ*/
.sec3{
    pointer-events: none;
    width:100%;
    container-type: inline-size;
}

.sec3 img{
    width:100%;
}

.sec3_inner{
    position:absolute;
    margin-top:-48%;
    margin-left:38%;

    opacity:0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation-fill-mode: forwards;
}

.sec3_inner.show{
    opacity:1;
    transform: translateY(0);
}

.sec3_inner p{
    color:white;
    font-size:2.5cqw;

    text-shadow: 
    0 0 3em #d6d201;
}

.spacer {
  display: block;
  height: 2.5cqw;
}


.sec3_inner2{
    position:absolute;
    width:36vw;
    margin-top:-64%;
    margin-left:-2%;

    opacity:0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation-fill-mode: forwards;
}

.sec3_inner2.show{
    opacity:1;
    transform: translateX(0);
}

.sec3_inner3{
    position:absolute;
    margin-top:-58%;
    margin-left:35%;

    opacity:0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation-fill-mode: forwards;
}

.sec3_inner3.show{
    opacity:1;
    transform: translateY(0);
}


.sec3_inner3 p{
    color:white;
    font-size:3.5cqw;

    text-shadow: 
    0 0 0em #fff,
    0 0 1em #fff,
    0 0 2em #0098cb,
    0 0 4em #0098cb,
    0 0 6em #0098cb;
}

/*すべてを決めるのは、男士との絆――*/
.sec4{
    pointer-events: none;
    width:100%;
    padding: 10% 0;
    container-type: inline-size;

    opacity:0;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    animation-fill-mode: forwards;
}

.sec4.show{
    opacity:1;
}

.sec4 p{
    font-size:4cqw;
    text-align:center;

    background: linear-gradient(90deg, 
    #bf953f, #fcf6ba, #b38728, 
    #fbf5b7, #aa771c);
    background-size: 150% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/*ヘッダーの設定*/

header{
    display:none;
}

nav {
    margin:0;
    padding:0;
    background: rgba(185, 185, 185, 0.5);
    width: 100%;
    height: 50px;
    z-index:999;

    position: fixed;
    right: 0;
    top: 0;
}

nav ul {
    justify-content: flex-end;
    display: flex;
    list-style: none;
}

.item {
    margin: 0 1em;
    font-weight:bold;
    font-size:large;
}

.item a {
    color: #ffffff;
    text-decoration: none;
}

.item a:hover{
    color: #c9c929;
}

.logo_1{
  margin:0;
  float:left;
  height:40px;
  margin-left:10px;
  padding:4px 0;
}

.logo_1 img{
    height:100%;
}

/*フッターの設定*/
footer{
    width: 100%;
    height: 140px;
    background-color: #1d1c00;
    color: white;
    text-align: center;

    display: flex;
  align-items: flex-end; /* 子要素を底に揃える */
}

footer p{
    margin-bottom:10px;
}

.footer-text{
    position:absolute;
    width:100%;
}

.footer-text ul{
    padding-inline-start:0;
}

ul.footer-menu li {
display: inline;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover{
    color: #c9c929;
}


/*プレイボタン*/
.play{
    position: fixed;
    bottom:10px;
    right:10px;
    width:120px;
    z-index:1000;
    animation: poyopoyo 5s ease-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    animation-fill-mode: forwards;
}

.play.show{
    opacity: 1;
}

@keyframes poyopoyo {
  0%, 20%, 30%, 40% {
    transform: scale(1.0);
  }
  25%, 35% {
    transform: scale(0.95);
  }
}

.sns_x{
    position: fixed;
    bottom:10px;
    left:20px;
    width:80px;
    z-index:1000;

    opacity: 0;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    animation-fill-mode: forwards;
}

.sns_x.show{
    opacity:1;
}

.sns_yt{
    position: fixed;
    bottom:10px;
    left:110px;
    width:80px;
    z-index:1000;

    opacity: 0;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    animation-fill-mode: forwards;
}

.sns_yt.show{
    opacity:1;
}


@media screen and (max-width:1024px) {

    body{
        background-image:url(../image/bg_1_sp.jpg);
    }

    .main_container{
        aspect-ratio:578/874;
    }

    .img_top_chara{
        margin-top:-154%;
    }

    .img_top_chara_all{
        margin-top:-154%;
    }

    .logo_2{
        width:36%;
        margin-top:-35%;
        margin-left:64%;
    }

    .top_text{
        margin-top:-56%;
        margin-left:8%;
    }

    .top_text_p{
        font-size:3.6cqw;
    }

    .news_title{
        margin-top:-60%;
        margin-left:10%;
        font-size:4.9cqw;
    }

    .news_title span{
        font-size:11cqw;
    }

    .news_content_title{
        margin-top:-25%;
        margin-left:25%;
        font-size:3.5cqw;
    }

    .news_content_detail{
        margin-top:-15%;
        margin-left:28%;
        font-size:3cqw;
    }

    .news_item_1{
        margin-top:-11%;
    }

    .news_item_2{
        margin-top:-27%;
    }

    .sec2{
        padding-top: 10%;
        padding-bottom: 16%;
    }

    .video-container {
        max-width:95%;
    }

    .sec3_inner{
        margin-top:-46%;
        margin-left:34%;
    }

    .sec3_inner p{
        font-size:3cqw;
    }

    .spacer {
        height: 2.5cqw;
    }

    .sec3_inner3{
        margin-top:-58%;
        margin-left:35%;
    }

    .sec3_inner3 p{
        font-size:4.5cqw;
    }

    .sec4 p{
        font-size:5cqw;
    }
}

@media screen and (max-width:700px) {

    .play{
        bottom:32px;
    }

    .sns_x{
        bottom:32px;
    }

    .sns_yt{
        bottom:32px;
    }
}
