@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.sticky-contner  img{
	display: block;
	line-height: 0;
}

.pc-box{
	display: none;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
}

.mv{
	margin: 0 auto;
}

.mv h1{
	text-align: center;
	font-size: 20px;
	font-weight: normal;
	margin: 10% auto 0;
}

.mv p{
	text-align: center;
	font-size: 15px;
	line-height: 2;
	margin: 5% auto 10%;
	font-family: "Noto Sans JP", sans-serif;
}

.movie{
	position: relative;
	width:90%; /* 横幅は100%で固定 */
	height:0; /* 高さは0にしておく(padding-topで高さを指定するため) */
	padding-top: 56.25%; /* 高さを指定(16:9) */
	margin: 10% auto;
}

.movie iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.navi{
	margin: 10% auto;
}

.navi h1{
	text-align: center;
	font-size: 22px;
	font-weight: normal;
	margin: 2% auto;
}

.navi ul{
	padding: 0;
	width: 70%;
	margin: 0 auto;
	list-style: none;
	display: flex;
	column-gap: 10px;
}

.navi ul li{
	border: solid 1px #000;
	position: relative;
	background-color: #fff;
}

.navi ul li p{
	margin: 2% 0;
	text-align: center;
	position: relative;
}

.navi ul li a{
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 13px;
}

.navi ul li p:after{
	display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    content: "";
    transform: translateY(-50%) rotate(135deg);
}

.main-content{
	margin: 0% auto 10%;
	padding-top: 13%;
}

.main-content__last{
	margin-bottom: 15%;
}

/* 外枠：はみ出した部分を隠す */
.loop-container {
  overflow: hidden; /* 必須 */
  width: 100%;
}

/* 内側の箱：横並びにする */
.loop-wrap {
  display: flex;
  white-space: nowrap; /* 折り返しなし */
}

/* テキスト部分：アニメーション設定 */
.loop-content {
  /* 幅を自動計算させる */
  width: max-content;
  
  /* テキスト間の余白 */
  padding-left: 20px; 
  
  /* アニメーション：名前 時間 動き 無限 */
  animation: loop-slide 10s linear infinite;
	
	font-family: "Times New Roman", Times, "serif";
	color: #0091bb;
	font-size: 40px;
}

/* アニメーションの定義 */
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    /* 2つ並べたうちの1つ分（-100%）だけ動かす */
    transform: translateX(-100%);
  }
}

.box{
	width: 100%;
	margin: 5% auto 20%;
}

.box-profile{
	width: 90%;
	margin: 0 auto 5%;
	display: grid;
	grid-template-columns: 1.25fr 2fr;
	justify-content: center;
	align-items: center;
	column-gap: 15px;
	border: solid 1px #000;
	box-sizing: border-box;
	padding: 2%;
}

.box-profile p{
	font-size: 14px;
	line-height: 1.8;
}

.box-profile span{
	font-size: 17px;
	line-height: 1.6;
}

.box-profile .staff-sns{
	margin: 3% 0;
	width: 50%;
}

.box-profile .staff-sns ul{
	padding: 0;
	list-style: none;
	display: flex;
	column-gap: 10px;
	margin: 5% auto;
	align-items: center;
}

.box-profile .staff-sns ul li img{
	width: 25px;
	height: auto;
}

.box-profile .staff-sns ul li .sb{
	width: 90px;
	height: auto;
}

.block{
	margin: 0 auto 20%;
}

.box-main__img, .box-scene__img{
	width: 90%;
	margin: 0 auto;
}

.box-main__img{
	position: relative;
}

.box-main__img p{
	position: absolute;
	font-family: "Times New Roman", Times, "serif";
	margin: 0;
	top: 1%;
	left: 5%;
	font-size: 60px;
}

.box-main__credit{
	margin: 5% auto;
	text-align: center;
}

.box-main__credit h2{
	font-weight: normal;
	font-size: 17px;
}

.box-main__credit h2 span{
	display: inline-block;
	margin-left: 10px;
	font-size: 14px;
}

.box-main__credit h2 span:after{
	content: '(税込み)';
	font-size: 11px;
	display: inline-block;
	margin-left: 5px;
}

.box-main__credit p{
	font-size: 13px;
	line-height: 1.8;
	margin: 3% auto;
}

.box-main__credit a{
	display: block;
	width: 50%;
	margin: 5% auto;
	text-align: center;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	line-height: 2.2;
}

.box-scene{
	margin: 15% auto;
}

.box-scene__title{
	width: 100%;
	margin: 3% auto 5%;
	display: flex;
	align-items: center;
}

.box-scene__title:before, .box-scene__title:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
}

.box-scene__title__border{
	position: relative;
	display: table;
	padding: 0 8%;
	font-size: 25px;
	margin: 1% auto;
	line-height: 1.0;
	top:0;
	color: #000;
}

.box-scene__title__border:before, .box-scene__title__border:after {
	  position: absolute;
	  top: 0;
	  content:'';
	  width: 8px;
	  height: 100%;
	  display: inline-block;
}

.box-scene__title__border:before {
	  border-left: solid 1px #000;
	  left: 0;
}

.box-scene__title__border:after {
	  content: '';
	  border-right: solid 1px #000;
	  right: 0;
}

.box-scene__time{
	text-align: center;
	margin: 3% auto 5%;
}
/* リンク全体のデザイン */
        .video-link {
            display: inline-flex; /* 要素を横並びにする */
            align-items: center;  /* 上下中央に揃える */
            text-decoration: none; /* 下線を消す */
            color: #333;           /* 文字の色 */
            font-family: sans-serif;
            font-weight: bold;
            font-size: 1.2rem;
            gap: 8px;              /* 要素間の隙間 */
			cursor: pointer;
			z-index: 10;
        }

        /* 再生ボタンの外側の円 */
        .play-icon {
            width: 24px;
            height: 24px;
            border: 2px solid #333; /* 円の線 */
            border-radius: 50%;     /* 丸くする */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* 再生ボタンの中の三角形 */
        .play-icon::after {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 5px 0 5px 8px; /* 三角形の形を作る */
            border-color: transparent transparent transparent #333; /* 右向きの三角形 */
            margin-left: 2px; /* 中心を少し右にずらして調整 */
        }

        /* ホバー（マウスを乗せた時）の演出 */
        .video-link:hover {
            opacity: 0.7;
        }

/* ポップアップのサイズを調整 */
.lity-container {
    width: 90%!important;
    margin: auto;
}

/* 動画の比率（16:9）を維持しつつ小さくする設定 */
.lity-iframe-container {
    width: 100%;
    max-width: 100%;
}

/* ポップアップ背景（黒い部分）の透明度を変更 */
.lity {
   background: rgba(0, 0, 0, 0.4) !important;
}

.lity-close{
	width: 55px!important;
	height: 55px!important;
	font-size: 50px!important;
}

.lity-close {
    position: absolute !important;
    top: -40px !important; /* 動画の少し上に配置 */
    right: 0 !important;   /* 動画の右端に合わせる */
    color: #fff !important;
    font-size: 35px !important;
    width: 40px !important;
    height: 40px !important;
    text-align: right !important;
}

.box-scene__credit{
	width: 90%;
	margin: 5% auto;
}

.box-scene__credit__inner{
	position: relative;
    border-bottom: solid 1px #808080;
    margin-bottom: 3%;
    letter-spacing: .3px;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	display: flex;
	align-items: center;
	column-gap: 10px;
	padding-bottom: 2%;
}

.box-scene__credit__inner a{
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 12px;
	line-height: 1.5;
}

.box-scene__credit__img{
	width: 15%;
}

.box-scene__credit__inner a::after {
	content: "BUY";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 14px;
}

.box-scene__credit__inner .cms::after {
	content: "COMING SOON";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 10px;
	color: #656565;
}

.all{
	display: block;
	width: 80%;
	margin: 2% auto 15%;
	text-align: center;
	background-color: #000;
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	position: relative;
	line-height: 4;
}

.all:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}


@media(min-width:750px){
	.sticky-contner{
		display: flex;
		background-color: #f7f8ff;
	}
	
	.pc-box{
		width: 33%;
		position: sticky;
		height: 100vh;
		left: 0;
		top: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.pc-box__left{
		width: 45vh;
	}
	
	.wrapper{
		width: 35%;
	}
	
	.pc-box__snslist{
		display: flex;
		padding: 0;
		list-style: none;
		justify-content: center;
		margin: 0;
	}
	
	.pc-box__snslist li{
		margin: 0 7px;
		line-height: 0;
	}
	
	.pc-box__snslist li img{
		width: 45px;
		height: auto;
	}
	
	.pc-box__snslist__elura{
		width: 70%;
		margin: 2% auto 7%;
	}
	
	.br_s{
		display: none;
	}
	
	.navi ul{
		width: 60%;
	}
	
	.lity-container {
        max-width: 50%; /* 画面の横幅半分 */
    }
	
}















