@charset "utf-8";

/******** body ********/
html{
  scroll-behavior: smooth;
}
body{
	color: #444;
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
@media screen and (min-width:768px){
	body{
		font-size: 16px;
	}
}
img{
	width: 100%;
}
.wrapper{
	width: 100%;
}

/******** main ********/

/* container */
.container, .container-2col{
	padding: 28px 0;
	/* border-bottom: solid 1px #efefef; */
}
.container:last-child{
	border-bottom: 0;
}
@media screen and (min-width: 768px){
	.container{
		padding: 42px 0;
		margin:  auto;
	}
}

/******** mainImg ********/
.container-mainImg{
	border-bottom: none;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	/*background-image: url(images/main_img.jpg);*/
	background-position: center center;
	background-repeat: no-repeat; 
	background-blend-mode: multiply;
	background-size: cover;
	line-height: 0;  /* 0にして余計なスペースをリセット */
}
@media screen and (min-width:768px){
	.container-mainImg{
		height: 580px;
	}
}
@media screen and (min-width:1280px){
	.container-mainImg{
		background-attachment: fixed;
	}
}

/******** subnav ********/
.container-subnav{
	width: 100%;
	display: flex;
	flex-direction: center;
	margin: 0;
	padding: 16px 5px 0 5px;
	transition: all ease-out 0.4s;
}
/**G-CLUBの場合はロゴなので少々異なる**/
.shop-title-logo{
	width: 50%;
	justify-content: center;
}
.shop-title-logo h1{
	width: 50%;
	justify-content: center;
}
.fixed{
  	background: rgba(0,0,0,0.8);
  	position: fixed;
  	bottom: 0;
  	left: 0;
  	z-index: 999;
  	box-sizing: border-box;
}
.section-subnav{
	margin: 0 auto;
	padding: 0;
}

/******** bnr ********/
.container-bnr{
	width: 100%;
	padding: 0;
	text-align: center;
	line-height: 0;
}
.container-bnr img{
	padding: 0;
	margin: 0;
}

/******** article section content ********/
.article, .section, .content{
	width: 90%; 
	margin: auto;
}
/* 大見出し */
.article-header, .section-header, .content-header{
	text-align: center;
	margin-bottom: 38px;
}
.article-header h1, .section-header h1, .content-header h1{
	font-size: 38px;
	font-family: 'Archivo Narrow', sans-serif;
	/*font-weight: 400;
	letter-spacing: 0.05rem;*/
	line-height: 1.4;
	/*transform: scale(1, 0.9);*/
}
.article-header p, .section-header p, .content-header p{
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.05rem;
	color: #666;
}
@media screen and (min-width: 768px){
	/* 大見出し */
	.article-header, .section-header, .content-header{
		margin-bottom: 52px;
	}
	.article-header h1, .section-header h1, .content-header h1{
		font-size: 52px;
	}
	.article-header p, .section-header p, .content-header p{
		font-size: 13px;
	}
}
@media screen and (min-width:1240px){
	.article, .section, .content{
		box-sizing: border-box;
		width: 95%;
		padding: 0 60px;
		margin: auto;
	}
	.section-news-summary{
		font-size: 18px;
	}
}
@media screen and (min-width:1400px){
	.article, .section, .content{
		width: 1400px;
	}
}


/******** subnav-list ********/
ul.subnav-list{
	display: flex;
	justify-content: space-around;
	padding-bottom: 0.8rem;
}
.fixed ul.subnav-list{
	border-bottom: none;
}
.subnav-list li{
	text-align: center;
	width: 25%;
}
.subnav-list li a{
	color: #333;
	display: inline-block;
	font-size: 10px;
	transition: all ease-out 0.4s;
}
.subnav-list li a::before{
	content: url(../images/list_arrow.png);
	margin-right: 0.55rem;
}
.subnav-list li a:hover{
	opacity: 0.7;
}
.fixed .subnav-list li a{
	color: #fff;
}
@media screen and (min-width:768px){
	.fixed{
	  	top: 0;
	  	bottom: auto;
	}
	.section-subnav{
		width: 40%;
		margin: auto;
		padding: 16px 20px 0 20px;
	}
	.subnav-list li a{
		font-size: 12px;	
		letter-spacing: 0.1rem;
	}
	.container-bnr img{
		max-width: 728px;
		margin-bottom: 15px;
	}
}


/******** container-info-btn(固定のお知らせ欄)  ********/
.container-info-btn{
	padding: 8px 0;
}
@media screen and (min-width: 768px){
	.container-info-btn{
		padding: 16px 0;
		margin:  auto;
	}
}

/******** info-btn(固定のお知らせ欄) ********/
.attention{
	font-size: 12px;
	color: red;
} 
.info-btn{
	margin: 16px auto;
}
.info-btn a{
	display: block;
	width: 100%;
	border-radius: 2px;
	color: #c1272d;
	padding: 5px;
	border: solid 1px #c1272d;
	transition: all 0.3s ease-out;
}
.info-btn a:hover{
	background-color: #c1272d;
	color: #fff;
}
.info-btn a::before{
	content: "i";
	text-align: center;
	display: inline-block;
	font-weight: bold;
	margin-right: 0.5rem;
	color: #fff;
	background-color: #c1272d;
	width: 20px;
	height: 20px;
	border-radius: 100%;
}
@media screen and (min-width: 768px){
	.attention{
		font-size: 14px;
	} 
}

/******** section-newArrivals ********/
.container-newArrivals{
	background: #efefef;
	/*background: url(../images/newArrivals.jpg) no-repeat;
	background-size: cover;*/
}
.ols-items{
	margin-bottom: 24px;
	/* overflow: hidden; これがないと余計に横スクロールしてしまう */
}
/* 画像ボタン */
ul.ols-items-imgBtn{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
ul.ols-items-imgBtn li{
	width: 32%;
	text-align: center;
}
ul.ols-items-imgBtn li a{
	color: #222;
	font-size: 12px;
}
/* テキストボタン */
ul.ols-items-textBtn{
	margin-bottom: 16px;
	display: flex;
	flex-wrap: wrap;
}
ul.ols-items-textBtn > li{
	width: 32%;
	position: relative; /* ドロップダウン用 */
	cursor: pointer;
	margin-right: 2%;
}
ul.ols-items-textBtn > li:nth-child(3n) {
	margin-right: 0;
	/* 3の倍数番目の右マージンを0にすることでことで幅100％調度 */
}
ul.ols-items-textBtn > li a.btn-02{
	box-sizing: border-box;
	font-size: 11px;
	padding: 5px 0;
	margin: 0 auto 8px auto;
}
a i.fa-chevron-down{
	position: absolute;
	right: 6px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 0.7rem;
}
/* ドロップダウン */
li.second-level-cat ul{
	box-sizing: border-box;
	width: 100%;
	position: absolute;
	top: 32px;
	border-radius: 5px;
	box-shadow: #aaa 0 0 10px;
	background: #fff;
	transition: all 0.3s ease-out;
	opacity: 0;
	font-size: 9px;
	overflow: hidden;/* 2レベルリスト隠し */
}
li.second-level-cat:hover ul{
  padding: 1rem;
  opacity: 1;
  overflow: visible;/* 2レベルリスト出現 */
  z-index: 9999;
}
li.second-level-cat ul li{
  margin-bottom: 0.3rem;
}
li.second-level-cat ul li a {
  color: #222;
  transition: all 0.2s ease-out;
}
li.second-level-cat:hover ul li a:hover{
  color: #ddd;
}
/* ロゴボタン */
ul.ols-items-logoBtn{
	margin-bottom: 16px;
	display: flex;
	flex-wrap: wrap;
}
ul.ols-items-logoBtn > li{
	width: 23.5%;
	position: relative; /* ドロップダウン用 */
	cursor: pointer;
	margin-right: 2%;
}
ul.ols-items-logoBtn > li:nth-child(4n) {
	margin-right: 0;
	/* 3の倍数番目の右マージンを0にすることでことで幅100％調度 */
}
/* 検索窓 */
form.search-text{
	width: 30%;
	margin: auto;
	opacity: 0.7;
	transition: all 0.2s ease-out;
	position: relative;
}
/* 虫眼鏡 */
form.search-text::after{
	content: url(images/search.png);
	position: absolute;
	text-align: right;
	top: 0.5rem;
	right: 10px;
}
form.search-text:hover{
	width: 50%;
	opacity: 1;
}
form input.search-text-box{
	width: 100%;
	background: #fff;
	border-radius: 2px;
	margin: auto;
	padding: 8px 4px;
}
form input[type="search"]{
	font-size: 16px; /*入力文字サイズが16px以下だとiOSでおかしくなる*/
}
.ols-link{
	margin: 36px 0;
}
@media screen and (min-width:768px){
	/* 画像ボタン */
	ul.ols-items-imgBtn{
		margin-bottom: 20px;
	}
	ul.ols-items-imgBtn li{
		width: 16%;
		text-align: center;
		filter:grayscale(0);
		transition: ease-out 0.3s all;
	}
	ul.ols-items-imgBtn li:hover{
		filter:grayscale(70%);
	}
	ul.ols-items-imgBtn li a{
		font-size: 14px;
	}
	/* テキストボタン */
	ul.ols-items-textBtn > li:nth-child(3n) {
		margin-right: 0.8%;
		/* 3の倍数番目の右マージンを0していたものをまず解除 */
	}
	ul.ols-items-textBtn > li{
		width: 16%;
		margin-right: 0.8%;
		margin-bottom: 6px;
	}
	ul.ols-items-textBtn > li:nth-child(6n) {
		margin-right: 0;
		/* 6の倍数番目の右マージンを0にすることでことで幅100％調度 */
	}
	ul.ols-items-textBtn li a.btn-02{
		box-sizing: border-box;
		font-size: 11px;
		padding: 8px 0;
		margin: 0 auto 8px auto;
	}
	a i.fa-chevron-down{
		right: 14px;
		height: 0.8rem;
	}
	/* ドロップダウン */
	li.second-level-cat ul{
		top: 58px;
		font-size: 12px;
	}
	/* ロゴボタン */
	ul.ols-items-logoBtn > li:nth-child(4n) {
		margin-right: 0.8%;
		/* 4の倍数番目の右マージンを0していたものをまず解除して、マージンを付与 */
	}
	ul.ols-items-logoBtn > li{
		width: 11.8%;
		margin-right: 0.8%;
		margin-bottom: 6px;
		transition: ease-out 0.3s all;
	}
	ul.ols-items-logoBtn > li:hover{
		opacity: 0.7;
	}
	ul.ols-items-logoBtn > li:nth-child(8n) {
		margin-right: 0;
		/* 8の倍数番目の右マージンを0にすることでことで幅100％調度 */
	}
	/*他社のECサイト*/
	ul.otherEc{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	ul.otherEc li{
		width: 49%;
		margin-top: 12px;
	}
	/* 検索窓 */
	form.search-text{
		width: 180px;
	}
	/* 虫眼鏡 */
	form.search-text::after{
		top: 1rem;
		right: 15px;
	}
	form.search-text:hover{
		width: 250px;
	}
	form input.search-text-box{
		width: 100%;
		background: #fff;
		border-radius: 50px;
		margin: auto;
		padding: 0.85rem;
	}
}
@media screen and (min-width:960px){
	ul.ols-items-textBtn li a.btn-02{
		font-size: 13px;
		padding: 12px 0;
	}	
}

/******** section,asideひとまとめ ********/
.container-news{
	border-bottom: solid 1px #efefef;
}
/******** news(イベント部分とも共通) ********/
.section-news, .section-info{
	margin-bottom: 72px;
}
.section-news-list li{
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 14px 0;
	border-bottom: solid 1px #efefef;
	position: relative;
	transition: all 0.3s ease-out;
}
.section-news ul li:last-child{
	border-bottom: none;
}
.section-news ul li:hover{
	opacity: 0.6;
}
.section-news-list-thumb{
	width: 50%;
}
/*.section-news-list-thumb img{
	width: 230px;
	height: 230px;
	object-fit: cover
}*/
.section-news-summary{
	width: 45%;
}
.news-cat{
	display: inline-block;
	font-size: 11px;
	background: #cdb455;
	color: #fff;
	padding: 0.1rem 0.4rem;
	margin-bottom: 0.5rem;
}
.section-news ul li .news-date{
	color: #aaa;
	font-size: 0.85rem;
}
.section-news ul li .news-head{
	color: #000;
	font-weight: bold;
}
.section-news ul li .description{
	font-size: 12px;
}
.section-news ul li a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease-out;
}
/*information*/
.section-info{
	padding: 32px 0;
	border-top: solid 1px #efefef;
	border-bottom: solid 1px #efefef;
}
.section-info ul{
	overflow-y: scroll;
	height: 6rem;
}
.section-info ul li{
	border-bottom: dotted 1px #aaa;
	margin-bottom: 1rem;
	display: flex;
}
.section-info ul li .info-date{
	color: #aaa;
	font-size: 0.85rem;
	margin-right: 1.5rem;
}
.section-info ul li .info-head a{
	color: #000;
	font-size: 14px;
}
/******** new-product(aside) ********/
.new-product{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.new-product a{
	display: block;
	width: 48.75%;
}
.new-product a img{
	box-sizing: border-box;
	border: solid 1px #dedede;
}
/******** services ********/
.services{
	display: flex;
	flex-wrap: wrap;
	margin-top: 24px;
}
.services a{
	display: block;
	width: 33%;
	margin-right: 0.5%;
	transition: all ease-out 0.5s;
}
.services a:hover{
	opacity: 0.75;
}
.services a:nth-child(3n){
	margin-right: 0;
}
@media screen and (min-width: 768px){
	.box-news-info{
		width: 65.75%;
	}
	.section-news-header, .section-info-header{
		text-align: left;
		display: flex;
		align-items: baseline;
		margin-bottom: 20px;
		border-bottom: solid 1px #000;
	}
	.section-news-header p, .section-info-header p{
		margin-left: 1rem;
	}
	.section-news ul li .description{
		font-size: 14px;
	}
	.section-2col{
		display: flex;
		justify-content: space-between;
	}
	/*.section-news-list-thumb{
		width: 30%;
	}
	.section-news-summary{
		width: 45%;
	}*/
	.aside{
		width: 30%;
		margin-top: 48px;
	}
	.new-product{
		position: sticky;
		top: 24px;
		flex-direction: column;
	}
	.new-product a{
		width: 100%;
		transition: all 0.5s ease-out;
	}
	.new-product a:hover{
		opacity: 0.6;
	}
	/*サービス*/
	.services{
		margin-bottom: 64px;
	}
	.services a{
		width: 15.8%;
		margin-right: 1%;
	}
	.services a:nth-child(3n){
		margin-right: 1%;
	}
	.services a:nth-child(6n){
		margin-right: 0;
	}
}

/******** article-about ********/
.about-detail, .about-access{
	margin-bottom: 56px; 
}
.shop-access h3{
	font-size: 38px;
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	letter-spacing: 0.05rem;
	line-height: 1.4;
}
.shop-detailImg, .shop-comment{
	margin-bottom: 32px;
}
.shop-comment{
	box-sizing: border-box;
	background: #fff;
	z-index: 5;
}
.shop-comment h3{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.625rem;
	padding-bottom: 1rem;
	border-bottom: solid 3px #cdb455;
	margin-bottom: 1rem;
}
.shop-comment p{
	line-height: 1.75;
}
/*写真ライブラリ*/
.shop-detailImg-lightbox{
	display: flex;
	flex-wrap: wrap;
	margin-top: 24px;
}
.shop-detailImg-lightbox a{
	display: block;
	width: 33%;
	margin-right: 0.5%;
	transition: all ease-out 0.5s;
}
.shop-detailImg-lightbox a:hover{
	opacity: 0.75;
}
.shop-detailImg-lightbox a:nth-child(3n){
	margin-right: 0;
}
.map-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}
.map-img iframe{
  width: 100%;
  height: 100%;
}
table.table-access{
	text-align: left;
	font-size: 14px;
	font-weight: normal;
}
table.table-access a{
	color: #000;
}
table.table-access th{
	background: #bea03c;
	color: #fff;
	font-weight: normal;
	width: 6rem;
}
table.table-access th,table.table-access td{
	padding: 0.3rem 0.5rem;
}
/*shop-sns-list*/
ul.shop-sns-list{
	display: flex;
	justify-content: flex-start;
	margin: 24px 0;
}
ul.shop-sns-list li img{
	width: 35px;
	height: 35px;
	margin-right: 8px; 
}
/*stock-list*/
ul.stock-list{
	display: flex;
	flex-wrap: wrap;
}
ul.stock-list li{
	width: 70px;
	margin-right: 5px;
	margin-bottom: 10px;
}
ul.stock-list li img{
	border: solid 1px #333;
	border-radius: 3px;
}
ul.stock-list li p{
	font-size: 10px;
	line-height: 1.3;
}
@media screen and (min-width:768px){
	.about-detail, .about-access{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.shop-detailImg, .shop-comment{
		width: 48.75%;
		margin-bottom: 48px;
	}
	/*写真ライブラリ*/
	.shop-detailImg-lightbox{
		margin-bottom: 64px;
	}
	.shop-detailImg-lightbox a{
		width: 15.8%;
		margin-right: 1%;
	}
	.shop-detailImg-lightbox a:nth-child(3n){
		margin-right: 1%;
	}
	.shop-detailImg-lightbox a:nth-child(6n){
		margin-right: 0;
	}
	.map-img, .shop-access{
		width: 48.75%;
	}
	.shop-comment h3{
		font-family: 'Noto Serif JP', serif;
		display: inline-block;
		line-height: 1.6;
		margin-bottom: 1rem;
	}
	.shop-comment p{
		font-size: 14px;
	}
	/*.shop-detailImg-order2{
		order: 2;
	}
	.shop-comment-order1{
		order: 1;
	}*/
}
@media screen and (min-width:960px){
	.about-detail, .about-access{
		position: relative; /* z-index用。プロパティ何でも良い */
		margin-bottom: 68px;
	}
	.shop-detailImg{
		width: 65%;
	}
	.shop-comment{
		width: 45%;
		padding: 0.85rem 1.5rem;
		font-size: 14px;
		position: absolute;
		top: 6rem;
		left: 55%;
	}
	/* order入れ替わりのブロック 上と数値逆になる
	.shop-comment-order1{
		left: 5%;
	}
	.shop-detailImg-order2{
		position: absolute;
		left: 35%;
	} */
}
@media screen and (min-width:1240px){
	.shop-comment p{
		font-size: 16px;
	}
}

/****** content-inquiry ******/
.content-inquiry{
	text-align: center;
}
/*.content-inquiry p{
	margin-bottom: 10px;
}*/
.content-inquiry a.btn-03{
	width: 80%;
	margin: 24px auto;
	padding: 0.75rem 0;
}
a.btn-03 .fa-envelope{
	margin-right: 0.5rem;
}
@media screen and (min-width:768px){
	.content-inquiry{
		width: 768px;
		margin: auto;
		text-align: left;
		display: flex;
		justify-content: center;
		vertical-align: middle;
	}
	/*.content-inquiry p{
		margin-bottom: 0;
		margin-top: 0.85rem;
	}*/
	.content-inquiry a.btn-03{
		width: 40%;
		margin: auto;
		padding: 0.75rem 0;
	}
}

/******** section-shop ********/
.container-shop{
	background: #232323;
}
.section-shop > .section-header{
	color: #ddd;
}
ul.shop-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: #ddd;
}
.shop-list li{
	box-sizing: border-box;
	width: 48.7%;
	padding: 0.5rem;
	margin-bottom: 0.6rem;
	position: relative; /* リンク用 */
	font-size: 13px;
	transition: ease-out 0.5s all;
}
.shop-list li a{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.shop-list li:hover{
	opacity: 0.5;
}
.shop-name{
	font-weight: bold;
	line-height: 1.3;
	border-bottom: solid 1px #666;
	margin-bottom: 10px;
}
.shop-summary{
	text-align: justify;
}
@media screen and (min-width:768px){
	ul.shop-list{
		justify-content: flex-start;
		/* space-betweenのままだと最終行が歯抜けになるので変更 */
	}
	.shop-list li{
		width: 32%;
		margin-right: 2%;
		padding: 1rem;
		margin-bottom: 0.85rem;
	}
	.shop-list li:nth-child(3n) {
		margin-right: 0;
		/* 3の倍数番目の右マージンを0にすることでことで幅100％調度 */
	}
	.shop-name{
		font-size: 16px;
	}
}

/******** スクロールバー ********/
/*スクロールバーの横幅指定*/
.scrollArea::scrollbar {
    width: 8px;
    height: 8px;
}
.scrollArea::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/*スクロールバーの背景色・角丸指定*/
.scrollArea::scrollbar-track {
  	border-radius: 10px;
	background: #f0f0f0;
}
.scrollArea::-webkit-scrollbar-track {
  	border-radius: 10px;
	background: #f0f0f0;
}
/*スクロールバーの色・角丸指定*/
.scrollArea::scrollbar-thumb {
  	border-radius: 10px;
	background:#afafaf;
}
.scrollArea::-webkit-scrollbar-thumb {
  	border-radius: 10px;
	background:#afafaf;
}

/******** ボタン類(btn) ********/

/* 詳しく見るボタン
.seeMore{
	display: inline-block;
	font-size: 11px;
	color: #000;
	margin-top: 1rem;
	border: solid 1px #000;
	border-radius: 2px;
	padding: 4px; 
}
.seeMore::before{
	content: url(../images/list_arrow.png);
	margin-right: 0.2rem;
} */
/* 黒ボタン デフォルトは白文字*/
.btn-01{
	font-size: 11px;
	width: 150px;
	padding: 8px 4px;
	margin: 28px auto 36px auto;
	display: block;
	box-sizing: border-box;
	border: solid 1px #000;
	border-radius: 2px;
	background: #000;
	text-align: center;
	text-decoration: none;
	color: #fff;
	position: relative; /* ボタン内アイコン用 */
	transition: all 0.5s ease-out;
}
.btn-01::before{
	content: url(../images/btn_arrow.png);
	margin-right: 0.5rem;
}
.btn-01:hover{
	border: solid 1px #999;
	background: #999;
}
/* 角丸枠のみボタン デフォルトはグレー枠黒文字*/
.btn-02{
	display: block;
	box-sizing: border-box;
	border: solid 1px #666;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	color: #000;
	position: relative; /* ボタン内アイコン用 */
	transition: all 0.5s ease-out;
}
.btn-02:hover{
	background: #666;
	color: #ccc;
}
/* 四角い枠のみのボタン デフォルトは黒線・文字*/
.btn-03{
	display: block;
	box-sizing: border-box;
	border: solid 1px #000;
	text-align: center;
	text-decoration: none;
	color: #000;
	position: relative; /* ボタン内アイコン用 */
	transition: all 0.5s ease-out;
}
.btn-03:hover{
	background: #ccc;
	border: solid 1px #fff;
	color: #fff;
}
@media screen and (min-width: 768px){
	.btn-01{
		margin: 36px auto 0 auto;
	}
}
.pointer:hover{
	cursor: pointer;
}
/* a i.fa-chevron-right{
	position: absolute;
	right: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 1rem;
}*/

/******** ムービーコンテナ幅いっぱい ********/
.movie-w100-container{
	background: #000;
}
/* Youtube比率調整用 */
.movie-box{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie-box iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/******** コンテナのフェード  ********/
.effect-fade{
	opacity : 0;
	transform : translate(0, 45px);
	transition : all 2000ms;
}
.effect-fade.effect-scroll{
	opacity : 1;
	transform : translate(0, 0);
}

/******** ムービー  ********/
.container-movies{
	background: #fff;
}
ul.movie-items{
	display: flex;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
  	overflow-scrolling: touch;
}
ul.movie-items li.movie-item-box{
	margin-right: 10px;
}
ul.movie-items li.movie-item-box:last-child{
	margin-right: 0;
}
/* スクロールバーのデザイン変更 */
ul.movie-items::-webkit-scrollbar {
    width: 12px;
}
ul.movie-items::-webkit-scrollbar-track {
    background-color: #e9e9e9;
    border-radius: 100px;
}
ul.movie-items::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 100px;
}