@charset "utf-8";
/* CSS Document */

/*google fonts*/

/*Adobe fonts*/
@import url("https://use.typekit.net/cup2gik.css");
/*
Ador Hairline Regular
font-family: "ador-hairline", sans-serif;
font-weight: 400;
font-style: normal;
*/

/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
7.フッター

*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■FSの設定打消し
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fs-l-main *{
	min-width: initial;
    min-width: auto;
    min-height: initial;
    min-height: auto;
}

/*メインエリアの横幅制限解除ここから*/
.fs-l-pageMain {
	max-width: 100%;
}
@media screen and (min-width:769px) {
	.fs-l-pageMain {
		margin-top: 100px!important;
	}
}

.fs-l-main{
	max-width: 100%;
	padding:0;
	margin:0;
}
/*メインエリアの横幅制限解除ここまで*/

@media screen and (max-width:768px) {
	.fs-l-main{
		padding-top:0!important;
	}
}

.fs-c-breadcrumb{
	padding-top:80px;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		padding-top:80px;
	}
}

/* 「現在登録されている商品はありません。」を非表示 */
.fs-c-noResultMessage { display: none }

/*「商品グループ表示」を非表示*/
.fs-c-subgroup { display: none }

/*「並び替え・ページャーパーツ（システムパーツ）」を非表示*/
.fs-c-productList__controller{ display: none }

/*「商品グループエリア」表示調整*/
.fs-c-productList{
	margin: 0 3%;
}
.fs-c-productList__list {
    display: grid;
    grid-template-columns: calc(50% - 0px) calc(50% - 0px);
    grid-gap: 0px;
}
.fs-c-productList__list__item {
    margin: 25px 8px 0!important;
}

/*「商品グループエリア」を非表示*/
/*.fs-c-productList { display: none }*/

/* 文字サイズ調整 */
.fs-l-main{
	font-size:1.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*フッターの色変更*/
#footer.second-page .footer-sp,
#footer.second-page .footer__follow{
	background-color: #e69d8e ; 
}
#footer.second-page .footer__info{
	background-color: #fcf5f5 ; 
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*例：brタグにclassを追加
PCのみで改行→pc <br class="pc">
SPのみで改行→sp <br class="sp">
※両方共通の改行の場合は<br>のみでOK

他、PCとSPで表示を分けたい部分にも使用可能
*/

@media screen and (min-width: 768px){   
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 768px){   
  .pc { display:none; }
  .sp { display:block; }
}



/*================================
1.全体
================================*/

body{
/*背景色*/
	background-color: #fdecec;
	background: url('../img/back_pc.jpg') center/cover no-repeat fixed;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
	font-weight: 400;
	color:#000;
	
	background-color: #fff;
}
/*@media screen and (max-width:768px) {
	.js-main{
		padding-top:50px;
	}
}*/

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#000;
}
.js-main a:hover,a:hover img{
	opacity:0.8;
    -moz-opacity:0.8;
    filter:alpha(opacity = 80);
}


/*widthなどの適応範囲をborder基準に変更*/
.js-main *, .js-main *:before, .js-main *:after{
	-webkit-box-sizing: border-box; /* Webkit */
	-moz-box-sizing: border-box; /* Firefox */
	box-sizing: border-box; /* 標準 */
}

/*画像サイズ制御*/
/*@media screen and (max-width:768px) {*/
	.js-main img{
	width:100%;
	height: auto;
	line-height: 0;
	}
/*}*/

/*PC550px、SP100%*/
.js-container{
	width:100%;
	max-width:500px;
	margin:auto;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.button019 a {
    background: #fff;
    /*border-radius: 100px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 15px 25px;
    color:#000;
    transition: 0.3s ease-in-out;
    /*font-weight: 500;*/
	font-size: 1.2em;
	border:solid 1px #000;
	letter-spacing: 0.15em;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button019 a:hover {
  background: #000;
  color: #FFF;
  opacity: 1;
}
.button019 a:hover:after {
  right: 1.4rem;
}


/*共通padding設定*/
.main-padding{
	padding: 100px 0;
}
@media screen and (max-width: 768px){
	.main-padding{
		padding: 5em 0;
	}
}
/*共通padding　左右設定*/
.main-padding_vertical{
	padding-right: 20px;
	padding-left: 20px;
}
@media screen and (max-width: 768px){
	.main-padding_vertical{
		padding-right: 5%;
		padding-left: 5%;
	}
}




/*共通margin設定*/
.main-margin{
	margin: 100px auto;
}
@media screen and (max-width: 768px){
	.main-margin{
		margin: 6em auto;
	}
}

/*見出し*/
.main_title_wrapper{
	margin-bottom: 1.5em;
}
.main_title{
	font-size: 1.7em;
	letter-spacing: 0.15em;
	display: inline-block;
	line-height: 1.4;
	border-bottom: solid 1px #000;
}
.main_title_sub{
	font-size: 0.8em;
	margin-top: 0.5em;
}


/*テキスト色*/
.fontcolor-01{
	color: #e47f7f;
}


/*背景色*/
.bgcolor-01{
	background-color: #ffe8e8;
}
.bgcolor-02{
	background-color: #fff3f3;
}




/*フォント*/
/*フォント指定*/
.font-01{ /*明朝系*/
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
.font-02{ /*ゴシック系*/
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}
.font-03{ /*Ador Hairline Regular*/
	font-family: "ador-hairline", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.bold{ /*太字*/
	font-weight: bold;
}


h1{
	margin:0;
	line-height: 0;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main_intro{
	
}

.intro_head{
	font-size: 1.5em;
}

.intro_text{
	margin-top:2em;
}

.intro_linkbtn{
	margin-top:2em;
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.プロフィール
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main_profile{
	padding: 30px 0 50px;
}
@media screen and (max-width: 768px){
	.main_profile{
		padding: 3em 0 4em;
	}
}

/*組み用~~~~~~~~~~~~~~~~*/
.profile_box{
	width: 100%;
	height: 0;
	position: relative;
	
	padding-top: 120%;/* 横768 × 縦840 */
}
.profile_box > div{
	position: absolute;
	height: auto;
}
.profile_box img{
	width: 100%;
}
.profile_box .item01{
	top: 0;
	width: 100%;
}
.profile_box .item02{
	bottom: 0;
	right: 0;
	width: 50.52%;
}
.profile_box .item03{
	top: 23.2142%;
	right: 32.291%;
	width: 20.182%;
}
.profile_box .item04{
	top: 4%;
	left: 3.125%;
	width: 48.177%;
}
.profile_box .item05{
	top: 31%;
	left: 6%;
	width: 37%;
	
	text-align: justify;
}


.profile_text{
	font-size: 0.9em;
	letter-spacing: 0;
	line-height: 1.7;
}
.profile_instalink {
	margin-top: 1em;
	width: 90%;
}
@media screen and (max-width: 768px){
	.profile_text{
		font-size: 0.7em;
	}
}




.profile_movie{
	margin: 4em auto 3em;
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.ラインナップ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.lineup_head{
	width: 90%;
	padding: 20px;
	
	border: 1px solid #e47f7f;
}
.lineup_head .main_title{
	font-size:1em;
}
.lineup_head_text01{
	font-weight: 700;
}
.lineup_head_text02{
	margin-top:1em;
}
.lineup_head_text02 .text_head{
	display: inline-block;
	background-color: #000;
	color: #fff;
	padding: 0 10px;
	font-size: 0.8em;
	line-height: 2;
}
.lineup_head_text02 .text_inner{
	margin-top:0.25em;
}
.lineup_head_text03{
	margin-top:1em;
	font-size: 0.8em;
}



/*リスト*/

.lineup_itemlist_wrapper{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素の寄せ*/
	justify-content: center;
	align-items: flex-start;
	
	width:100%;
	/*max-width: 450px;*/
	margin:auto;
	
	text-align: left;
	font-size:10px;
}
.lineup_itemlist_wrapper > div {
/*列数と間の余白の設定*/
	width: calc( ( 100% - 10px ) / 2 );
	margin-right: 10px;
	margin-bottom: 2em;
}
/*右端のマージンをゼロ設定*/
.lineup_itemlist_wrapper > div:nth-child( 2n ),
.lineup_itemlist_wrapper > div:last-child{
	margin-right: 0;
}
/*最後の段のボトムマージンをゼロ設定*/
@media screen and (min-width: 769px){ 
	.lineup_itemlist_wrapper > div:nth-last-child(-n+2){
		margin-bottom: 0;
	}
}
@media screen and (max-width: 768px){ 
	.lineup_itemlist_wrapper > div {
	/*列数と間の余白の設定*/
		width: calc( ( 100% - 10px ) / 2 );
		margin-right: 10px;
	}
	/*右端のマージンをゼロ設定*/
	.lineup_itemlist_wrapper > div:nth-child( 2n ),
	.lineup_itemlist_wrapper > div:last-child{
		margin-right: 0;
	}
	/*最後の段のボトムマージンをゼロ設定*/
	.lineup_itemlist_wrapper > div:nth-last-child(-n+2){
		margin-bottom: 0;
	}
}





.item_text_wrapper{
	margin-top: 0.25em;
	line-height: 1.4;
}

.item_name{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2; /* ここを2や3に変更することで、行数を指定 */
	max-height: calc(1.4em * 2);
}
.item_price{
	font-size: 1.2em;
	margin-top:0.25em;
}
.item_price > span{
	font-size: 0.8em;
	font-family: sans-serif;
}


/*型紙アイコン*/
/* 親要素（基準）に設定 */
/*#main_lineup_pattern .item_img_wrapper {
    position: relative;
}*/
/* ::after 疑似要素を使ってアイコンを追加 */
/*#main_lineup_pattern .item_img_wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url('https://www.joint-space.co.jp/jsxcollaboration/js_kozue/img/icon_katagami.svg');
    background-size: contain;
    background-repeat: no-repeat; 
    background-position: center;
    z-index: 10;
}*/




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.イメージ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main_image{
	
}
.image_set {
	margin: 3em auto;
}

.position_wrapper{
	width: 100%;
	height: 0;
	position: relative;
}
.position_wrapper > div{
	position: absolute;
	height: auto;
}
.position_wrapper img{
	width: 100%;
}

/*set01*/
.image_set01{
	padding-top: 135.4%;/* 横768 × 縦1040 */
}
.image_set01_01{
	bottom:0;
	left:6%;
	width:88%;
}
.image_set01_02{
	top:0;
	left:3.3%;
	width:57.68%;
}

/*set02*/
.image_set02{
	padding-top: 75%;/* 横768 × 縦560 */
}
.image_set02_01{
	top:0;
	left:6%;
	width:42%;
}
.image_set02_02{
	bottom:0;
	right:6%;
	width:42%;
}

/*set03*/


/*set04*/
.image_set04{
	margin-left:6.9%;
	width:59.5%;
}

/*set05*/
.image_set05{
	margin-right:6.9%;
	width:59.5%;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
8.footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.pagetop{
	margin: auto;
	width:20%;
}

.brandlogo{
	margin: 5em auto;
	width:70%;
}

.jslink{
	margin: 5em auto;
	width:80%;
	border: solid 1px #666;
	padding: 30px;
}
.jslink_img{
	width: 80%;
	margin: auto;
}
.jslink_head{
	margin-top: 0.5em;
	display:  inline-block;
	border-bottom: solid 1px #000;
	line-height: 1.5;
	font-size: 1.2em;
}
.jslink_text{
	margin-top: 2em;
	text-align: left;
	font-size:0.9em;
}
.jslink_btn{
	margin-top:2em;
}

.jslink_btn .button019 a {
	border-radius: 100px;
}


/*インスタリンク*/
.footer_instagramlink{
	
}
.footer_instagramlink_img{
	margin: auto;
	width:150px;
}
.footer_instagramlink_img img{
	border-radius: 50%;
	border: 2px solid #ddd;
}

.footer_instagramlink_text{
	margin-top: 1em;
}
.footer_instagramlink_name{
	font-size: 1.5em;
}
.footer_instagramlink_id{
	margin-top: 0.5em;
}
.footer_instagramlink_btn{
	margin: 0.5em auto 0;
	width: 150px;
}
@media screen and (max-width: 768px){
	.footer_instagramlink_img{
		width: 45%;
	}
	.footer_instagramlink_btn{
		width: 50%;
	}
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.フローティングボタン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.floating_btn{
	position: fixed;
	z-index: 100;
	right: 10px;
	bottom: 10px;
	
	border-radius: 100px;
	background-image: linear-gradient(90deg, rgba(227, 141, 141, 1), rgba(188, 78, 128, 1));
	box-shadow: 0 5px 10px 0 rgba(150, 100, 100, .5);
	
	color: #fff;
	
	transition-duration: .4s;
	
}
.floating_btn:hover{
	transform: scale(1.1);
}
.floating_btn a{
	display: block;
	padding: 10px 30px;
	
	color: #fff;
	
}
.floating_btn a:hover{
	opacity: 1;
}
/*.floating_btn a::before{
	content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-color: red;
    background-image: url('https://www.joint-space.co.jp/category_common/vaniller/lvn_oshikatsu/img/icon_cart.svg');
    background-position: center;
    background-size: contain;
	margin-right:0.5em;
	transform: translateY(0.2em);  上下方向の位置を微調整する 
	background-color: transparent;
	border-color: transparent;
}*/

@media screen and (min-width: 769px){
	.floating_btn{
		font-size:2em;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein-top {
    animation: fadeIn 2s ease 0s 1 both;
    -webkit-animation: fadeIn 2s ease 0s 1 both;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.fadein-top2 {
    animation: fadeIn2 2s ease 0.2s 1 both;
    -webkit-animation: fadeIn2 2s ease 0.2s 1 both;
}
@keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn2 {
    0% {opacity: 0}
    100% {opacity: 1}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.delighters：スクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*animation-ふわっと出現*/
/* 基本のスタイル */
.animation.delighter {
	  transition: all .8s ease-out;
      transform: translateX(0%);
      opacity: 0;
   }
/* スタート時のスタイル */
   .animation.delighter.started {
      transform:none;
	  opacity:1;
   }
/* エンド時のスタイル */
   .animation.delighter.started.ended {
      
   }


/*animation_swing-下からふわっと出現*/
/* 基本のスタイル */
.animation_swing.delighter {
  transition: all 1.25s ease-out;
  transform: translateY(25%);
  opacity: 0;
}
/* スタート時のスタイル */
.animation_swing.delighter.started {
  transform:none;
  opacity:1;
}
/* エンド時のスタイル */
.animation_swing.delighter.started.ended {

}


/*animation_blur-じわっと出現*/
/* 基本のスタイル */
.animation_blur.delighter {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* スタート時のスタイル */
.animation_blur.delighter.started {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}
/* エンド時のスタイル */
.animation_blur.delighter.started.ended {

}
/* アニメーション設定 */
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.swiper
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*ベースノーマルver========================*/
.swiper_basenormal{
	text-align: justify;
	font-size:1em;
	letter-spacing: 0;
	width: 100%;
}

.swiper_basenormal.swiper_container {
  margin-inline: auto;
  max-width: 100%;
  position: relative;
}

.swiper_basenormal .swiper-wrapper{
	height: auto;
}
.swiper_basenormal .swiper-slide{
	height: auto;
	
}

.swiper_basenormal .swiper {
 max-width: 80%;
}

.swiper_basenormal .swiper-slide img{
	height: auto;
	width: 100%;
}
/* ページネーションの色変更 */
.swiper_basenormal .swiper-pagination-bullet{
	background-color: #afa59b;
}
.swiper_basenormal .swiper-pagination-bullet-active {
	background-color: #afa59b;
}
/* ページネーションの位置調整 */
.swiper_basenormal .swiper-horizontal>.swiper-pagination-bullets,
.swiper_basenormal .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper_basenormal .swiper-pagination-custom,
.swiper_basenormal .swiper-pagination-fraction{
	 bottom: -25px;
}

.swiper_basenormal .swiper a:hover, a:hover img{
	opacity: 1;
}

/* 前へ次への矢印カスタマイズ */
.swiper_basenormal .swiper-button-prev,
.swiper_basenormal .swiper-button-next {
  height: 20px;
  width: 20px;
}
/* 前へ次への矢印カスタマイズ */
.swiper_basenormal .swiper-button-prev::after,
.swiper_basenormal .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 20px;
  margin: auto;
  width: 20px;
}
/* 前への矢印カスタマイズ */
.swiper_basenormal .swiper-button-prev::after {
  background-image: url("../img/prev.svg");
}
/* 次への矢印カスタマイズ */
.swiper_basenormal .swiper-button-next::after {
  background-image: url("../img/next.svg");
}


.movie_head{
	margin-bottom: 0.5em;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}



/* modal-video */
/*.modal-video-movie-wrap{
	height: 50vh;
	width:90%;
}
@media screen and (min-width: 769px){
	.modal-video-movie-wrap{
		height: 30vh;
	}
}*/

/* ポップアップのコンテナを画面中央に配置 */
.modal-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ポップアップの表示領域を制御 */
.modal-video-body {
    position: relative;
    width: 100%; /* 親要素の幅いっぱいに広げる */
    max-width: 854px; /* 最大幅を指定（動画のネイティブ幅に合わせるなど調整） */
    margin: 0 auto; /* 中央揃え */
}

/* 16:9のアスペクト比を維持するためのハック */
.modal-video-body::after {
    content: '';
    display: block;
    padding-top: 56.25%; /* 9 / 16 * 100 = 56.25% */
}

/* ポップアップの中の動画やiFrameにスタイルを適用 */
.modal-video-movie-wrap {
    position: absolute;
    /*top: 0;
    left: 0;*/
    width: 80vw;
    height: 80vh;
	background-color: transparent!important; /* 背景色を透明にする */
}

.modal-video-close-btn {
    position: absolute; /* 親要素に対して絶対位置指定 */
    top: -20px; /* 上の位置を調整 */
    right: 0;   /* 右の位置を調整 */
    z-index: 9999; /* 他の要素より手前に表示 */
}