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

/* ==========================================================================
   1. 基本スタイル・共通リセット
   ========================================================================== */
body {
	margin: 0;
	background-color: #fff;
	min-height: 100vh;
	font-family: "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	line-height: 26px;
	color: #000;
	box-sizing: border-box;
}

html {
	height: 100%;
}

img {
	border-style: none;
	vertical-align: bottom;
}

a img { border-style: none; }
a:hover img { border-style: none; }

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ol, ul {
	list-style: none;
}

.cf:before,
.cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
	*zoom: 1;
}

.modal-movie {
	cursor: pointer;
}

/* 表示切り替え */
.pcview {
	display: block;
}
.spview {
	display: none;
}

.pcview img,
.spview img {
	width: 100%;
	height: auto;
	display: block;
}

.spmain {
	display: none;
}

.pcbr {
	display: inline;
}

/* スクロールエフェクト */
.scrollShowEffect1 {
	transition: all 2.5s;
	transition-delay: 0s;
	opacity: 0;
}

.scrollShowEffect2 {
	transition: all 2.5s;
	transition-delay: 0.6s;
	opacity: 0;
}

.scrollShowEffect3 {
	transition: all 2.5s;
	transition-delay: 0.9s;
	opacity: 0;
}

.scrollShowEffect4 {
	transition: all 2.5s;
	transition-delay: 1.2s;
	opacity: 0;
}

.scrollShowEffect-R { transform: translate3d(30%, 0%, 0); }
.scrollShowEffect-L { transform: translate3d(-30%, 0%, 0); }
.scrollShowEffect-B { transform: translate3d(0, 50px, 0); }
.scrollShowEffect-T { transform: translate3d(0, -50px, 0); }
.scrollShowEffect-Z { transform: scale(0.2, 0.2); }
.scrollShowEffect-O { transform: scale(1.2, 1.2); }

.scrollShowEffect1.showItem,
.scrollShowEffect2.showItem,
.scrollShowEffect3.showItem,
.scrollShowEffect4.showItem {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* 余白調整 */
.mb0 { width: 100%; overflow: hidden; }
.mb5 { width: 100%; overflow: hidden; margin-bottom: 5px; line-height: 140%; }
.mb10 { width: 100%; overflow: hidden; margin-bottom: 10px; }
.mb20 { width: 100%; overflow: hidden; margin-bottom: 20px; }
.mb30 { width: 100%; overflow: hidden; margin-bottom: 30px; }
.mb50 { width: 100%; overflow: hidden; margin-bottom: 50px; }
.mb70 { width: 100%; overflow: hidden; margin-bottom: 70px; }
.mb100 { width: 100%; overflow: hidden; margin-bottom: 100px; }

/* ==========================================================================
   2. ローディング演出
   ========================================================================== */
.loading {
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1300;
	overflow: hidden;
	transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s cubic-bezier(0.25, 1, 0.5, 1);
	pointer-events: auto;
}

.loading.is-loaded {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.loading-image-wrapper {
	position: relative;
	width: 400px;
	height: auto;
}

.loading-bg {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.3;
}

.loading-fg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	filter: brightness(1.5);
	-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 50%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0%, #000 50%, transparent 100%);
	-webkit-mask-size: 200% 100%;
	mask-size: 200% 100%;
	-webkit-mask-position: 100% 0;
	mask-position: 100% 0;
	animation: fillLight 3.5s ease-in-out forwards;
}

@keyframes fillLight {
	0% {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
	100% {
		-webkit-mask-position: 0% 0;
		mask-position: 0% 0;
	}
}

/* ==========================================================================
   3. PCヘッダー・ドロップダウンメニュー
   ========================================================================== */
#header_wrapper {
	width: 100%;
	text-align: center;
	line-height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: #fff;
	box-sizing: border-box;
	opacity: 1;
}

.showNavi #header_wrapper {
	opacity: 1;
}

.headermenu nav {
	width: 100%;
	box-sizing: border-box;
	font-weight: 400;
	font-size: 16px;
	font-family: "EB Garamond", serif;
	line-height: 16px;
	padding: 10px 20px;
	background-color: #fff;
}

.headermenu nav ul {
	display: flex;
	gap: 5px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.headermenu nav ul li {
	flex: 1;
	margin-right: 0;
	vertical-align: middle;
	position: relative;
	opacity: 0;
	transform: translateX(-15px);
	transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.showNavi .headermenu nav ul li {
	opacity: 1;
	transform: translateX(0);
}

.showNavi .headermenu nav ul li:nth-child(1) { transition-delay: 0.1s; }
.showNavi .headermenu nav ul li:nth-child(2) { transition-delay: 0.22s; }
.showNavi .headermenu nav ul li:nth-child(3) { transition-delay: 0.34s; }
.showNavi .headermenu nav ul li:nth-child(4) { transition-delay: 0.46s; }
.showNavi .headermenu nav ul li:nth-child(5) { transition-delay: 0.58s; }
.showNavi .headermenu nav ul li:nth-child(6) { transition-delay: 0.70s; }

.headermenu .submenu {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	gap: 2px;
	padding: 5px;
	background-color: #ffffff;
	border: 1px solid #000;
	box-sizing: border-box;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.3s ease;
	z-index: 1001;
}

.headermenu li.is-open .submenu {
	max-height: 200px;
	opacity: 1;
}

.headermenu .submenu li {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.headermenu .submenu li a {
	font-size: 11px;
	letter-spacing: 0.5px;
	height: 38px;
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}

.headermenu .submenu li a:hover {
	background-color: #999;
	color: #fff;
}

.headermenu a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #000;
	padding: 0 5px;
	height: 49px;
	width: 100%;
	box-sizing: border-box;
	background-color: #fdfdfd;
	border: 1px solid #000;
	transition: background-color 0.4s ease, color 0.4s ease;
}

.headermenu a:hover {
	text-decoration: none;
	outline: none;
	background-color: #999;
	color: #fff;
}

.headermenu a img {
	height: 16px;
	width: auto;
	transition: filter 0.3s ease;
}

.headermenu a:hover img {
	filter: invert(100%);
}


/* ==========================================================================
   4. メインビジュアル スライドショー (#top_wrapper)
   ========================================================================== */
#top_wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	box-sizing: border-box;
	border: 20px solid #fff;
	margin-top: 49px;
	z-index: 1;
}

.top-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	z-index: 1;
}

.top-slide:first-child {
	position: relative;
	height: auto;
}

.top-slide.active {
	opacity: 1;
	z-index: 2;
}

.topmidashi{
	width:97.5%;
	margin:0 auto 30px;
	border-bottom: 1px solid #000;
	padding:0 20px 20px 20px;
	box-sizing: border-box;
}

.topmidashi img{
	width:100%;
	height: auto;
}

.top_mvtk {
	width: 100%;
	padding:3% 0;
}

#mvtk-widgets-container {
	text-align: center;
	margin: 0 auto;
}

/* ==========================================================================
   5. その他のコンテンツ・共通エリア
   ========================================================================== */
.pt1, .pt2 {
	width: 100%;
	font-family: "EB Garamond", serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 5px;
	margin-bottom: 30px;
}

.pt2 {
	text-align: center;
}

.color_black { color: #000; }
.color_white { color: #fff; }
.color_red { color: #d70b24; }


#news_wrapper {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	font-size: 13px;
	line-height: 26px;
}

#news_inner {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 5% 10% 3% 10%;
}

.wp-api_wrapper {
	width: 100%;
	height: auto;
	overflow: hidden;
	box-sizing: border-box;
	padding-top: 30px;
}

.wp-api_wrapper a {
	color: #000;
	text-decoration: none;
	transition: 0.4s ease;
}

.wp-api_wrapper a:hover {
	color: #ccc;
	text-decoration: none;
}

.wp-apicard {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}

.wp-apicard li {
	width: 31%;
	text-align: left;
	line-height: 20px;
	font-size: 11px;
	box-sizing: border-box;
	margin: 0 1.1%;
}

.item_img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	box-sizing: border-box;
	border: 2px solid #000;
}

.item_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
}

.item_img:hover img {
	transform: scale(1.1);
}

.newsday {
	width: 100%;
	box-sizing: border-box;
	font-size: 12px;
	font-weight: 700;
	margin-top: 10px;
}

.newstitle {
	width: 100%;
	box-sizing: border-box;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
}



#footer_wrapper {
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	padding: 4% 0 7%;
	background-color: #fff;
}

#footer_wrapper img {
	width: 100%;
	height: auto;
}

.footerlogo {
	width: 25%;
	margin: 0 auto;
}

.addphoto_wrapper {
	display: flex;
	justify-content: space-between; /* 均等に横並び配置 */
	gap: 20px;                      /* 画像同士の間隔（お好みで調整してください） */
	width: 100%;
	box-sizing: border-box;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	border-bottom: 20px solid #fff;
}

.addphoto_wrapper img {
	width: 100%;
	height: auto;
}

.addphoto_wrapper .addphoto {
	flex: 1;                        /* 3つの幅を均等に分ける */
	min-width: 0;                   /* 画像の縮小崩れを防止 */
}

#picnic_introstory_wrapper{
	width:100%;
	background: url("images/picnic/bg.webp") 100% 0 no-repeat fixed;
	background-size:cover;
	overflow: hidden;
	padding:10% 40% 10% 10%;
	margin-bottom: 20px;
}

#picnic_introstory_wrapper img{
	width:100%;
	height: auto;
}

#picnic_intro{
	width:100%;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 100px;
}

#picnic_story{
	width:100%;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 100px;
}

.intromidashi{
	font-size: 22px;
	font-weight: 700;
	line-height: 35px;
	letter-spacing: 3px;
	margin-bottom: 10px;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

#picnic_credit{
	width:100%;
	padding-top:40px;
	border-top:1px solid #000;
	font-size: 13px;
	line-height: 30px;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

#undo_introstory_wrapper{
	width:100%;
	background-color: #9cbccb;
	overflow: hidden;
	padding:10%;
	position: relative;
}

#undo_introstory_wrapper img{
	width:100%;
	height: auto;
}

.undo1{
	width:20%;
	position: absolute;
	left:0;
	top:2%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.undo2{
	width:40%;
	position: absolute;
	right:0;
	bottom:3%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.undo3{
	width:30%;
	position: absolute;
	right:0;
	top:1%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#undo_intro{
	width:50%;
	margin-left: 17%;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 100px;
}

#undo_story{
	width:70%;
	margin-left: 17%;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 100px;
}

.undomidashi{
	font-size: 22px;
	font-weight: 700;
	line-height: 35px;
	letter-spacing: 3px;
	margin-bottom: 10px;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

#undo_credit{
	width:50%;
	padding-top:40px;
	border-top:1px solid #000;
	font-size: 13px;
	line-height: 30px;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.undomain{
	width:100%;
}

.undomain img{
	width:100%;
	height: auto;
}

.topbnr{
	width:20%;
	margin:0 auto 50px;
	background-color: #fff;
}

.topbnr img{
	width:100%;
	height: auto;
}

.topbnr img {
	transition-duration: 0.5s;
}
.topbnr img:hover {
	opacity: 0.5;
	transition-duration: 0.5s;
}


/* ボタン全体を囲む親要素のスタイル */
.newsbtn {
  text-align: center; /* 中央寄せ */
  margin-top: 50px;      /* 上下の余白 */
}

/* ボタン本体（aタグ）のスタイル */
.newsbtn a {
  display: inline-block;
  padding: 0.5% 8%;
  background-color: #000; /* ボタンの背景色 */
  color: #fff;            /* 文字色 */
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
	border:3px double #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* かすかな影 */
  transition: all 0.3s ease; /* アニメーションのなめらかさ */
}

/* マウスホバー時の効果 */
.newsbtn a:hover {
  background-color: #ccc; /* ホバー時に少し暗く */
  transform: translateY(-2px); /* 浮き上がる効果 */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* ==========================================================================
   6. スマートフォン用レスポンシブスタイル (max-width: 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) {

	.pcview {
		display: none !important;
	}
	.spview {
		display: block !important;
		width: 100%;
	}

	.pcbr {
		display: none;
	}

	.brtext::before {
		content: "\A";
		white-space: pre;
	}

	.loading-image-wrapper {
		position: relative;
		width: 300px;
		height: auto;
	}

	#header_wrapper {
		display: none;
	}

	/* ★【重要】修正箇所：position: relative を維持し、10px枠線を固定★ */
	#top_wrapper {
		width: 100%;
		position: relative !important;
		overflow: hidden;
		box-sizing: border-box;
		border: 10px solid #fff !important;
		margin-top: 45px;
		z-index: 1;
	}

	.top-slide {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		transition: opacity 1.5s ease-in-out;
		margin-bottom: 0;
	}

	.top-slide:first-child {
		position: relative;
		height: auto;
	}

	.top-slide.active {
		opacity: 1;
		z-index: 2;
	}

	.btn-trigger_fix {
		width: 100%;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 65;
		border-bottom: 1px solid #000;
	}

	.btn-trigger_wrapper {
		width: 100%;
		background-color: #fff;
		text-align: center;
		padding-top: 2%;
		padding-bottom:2%;
		box-shadow: 0px 0px 15px -5px #000;
	}

	.btn-trigger {
		position: relative;
		width: 36px;
		height: 25px;
		margin: 0 auto;
		cursor: pointer;
	}

	.btn-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #000;
		border-radius: 2px;
		display: inline-block;
		transition: all 0.5s;
		box-sizing: border-box;
	}

	.btn-trigger span:nth-of-type(1) { top: 0; }
	.btn-trigger span:nth-of-type(2) { top: 11.5px; }
	.btn-trigger span:nth-of-type(3) { bottom: 0; }

	#btn08.active span:nth-of-type(1) { transform: translateY(11px) rotate(-315deg); }
	#btn08.active span:nth-of-type(2) { opacity: 0; }
	#btn08.active span:nth-of-type(3) { transform: translateY(-11px) rotate(315deg); }

nav.globalMenuSp {
	position: fixed;
	z-index: -10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin-top: -100%;
	opacity: 0;
	background-color: #fff;
	font-family: "EB Garamond", serif;
	box-sizing: border-box;
	transition: all 0.6s ease;
	display: table;
	text-align: center;
	padding-top: 80px;
}

	nav.globalMenuSp.active {
		opacity: 1;
		margin-top: 0;
		z-index: 50;
	}

	.globalMenuSp img {
		width: 100%;
		height: auto;
	}

	.menu_wrapper {
		width: 100%;
		display: table-cell;
		vertical-align: middle;
		overflow: hidden;
		font-weight: 400;
		font-size: 17px;
		line-height: 17px;
		letter-spacing: 1px;
	}

	.menulogo {
		width: 50%;
		margin: 0 auto 10%;
	}

	.menu {
		width: 100%;
		margin-bottom: 4%;
	}

.menu a {
	color: #000;
	text-decoration: none;
	display: flex; /* Flexbox化 */
	align-items: center; /* 上下中央揃え */
	justify-content: center; /* 左右中央揃え */
	width: 100%;
}

.menu:last-child {
	margin-bottom: 0;
}

.menu a img {
	height: 18px;
	width: auto;
	display: block; /* 余計な隙間を排除 */
	margin: 0 auto; /* 念押しの中央寄せ */
}

.has-submenu-sp {
	position: relative;
}

.sp-submenu {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
	background-color: rgba(255, 255, 255, 0.05);
	margin-top: 0;
}

/* 開いた状態 */
.has-submenu-sp.is-open .sp-submenu {
	max-height: 200px;
	opacity: 1;
	margin-top: 10px;
	padding: 10px 0;
}

/* サブメニュー内のリンク */
.sp-submenu div {
	margin-bottom: 8px;
}

.sp-submenu div:last-child {
	margin-bottom: 0;
}

.sp-submenu a {
	font-size: 15px;
	color: #000;
	letter-spacing: 1px;
	display: block;
	padding: 5px 0;
	text-align: center;
}

.sp-submenu a:hover {
	color: #ccc;
}
	
.sns {
	width: 20px;
	margin: 0 auto;
}
	
#footer_wrapper {
		width: 100%;
		overflow: hidden;
		box-sizing: border-box;
		padding: 7% 0;
	}

.footerlogo {
		width: 50%;
		margin: 0 auto;
	}
	
#news_inner {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 5% 7% 10% 7%;
}
	
	.wp-apicard li {
		width: 45%;
		margin: 0 2.5% 20px;
	}

	.wp-apicard li:nth-child(3) {
		display: none;
	}

	.item_img {
		border: 2px solid #000;
	}


#undo_introstory_wrapper{
	width:100%;
	background-color: #9cbccb;
	overflow: hidden;
	padding:300px 0 320px 0;
	position: relative;
}

.undo1{
	width:30%;
	position: absolute;
	left:0;
	top:1%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.undo2{
	width:70%;
	position: absolute;
	right:0;
	bottom:3%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.undo3{
	width:62%;
	position: absolute;
	right:0;
	top:0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#undo_intro{
	width:80%;
	margin-left: 10%;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 50px;
}

#undo_story{
	width:80%;
	margin-left: 10%;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 50px;
}

.undomidashi{
	font-size: 22px;
	font-weight: 700;
	line-height: 35px;
	letter-spacing: 3px;
	margin-bottom: 10px;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

#undo_credit{
	width:80%;
	margin-left: 10%;
	padding-top:40px;
	border-top:1px solid #000;
	font-size: 13px;
	line-height: 30px;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.undomain{
	width:100%;
}

.undomain img{
	width:100%;
	height: auto;
}
	
#picnic_introstory_wrapper{
	width:100%;
	background:none;
	overflow: hidden;
	padding:10% 10% 10% 10%;
	margin-bottom: 0px;
	border-bottom: 20px solid #fff;
}
	
.Section-Image-picnic {
  position: fixed;
  z-index: -1;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}
	
.Section-Image-picnic{
  background-image: url("images/picnic/bgsp.webp");
}

#picnic_intro{
	width:100%;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 50px;
}

#picnic_story{
	width:100%;
	overflow: hidden;
	box-sizing: border-box;
	margin-bottom: 50px;
}

#picnic_credit{
	width:100%;
	padding-top:40px;
	border-top:1px solid #000;
	font-size: 13px;
	line-height: 30px;
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
	
.topbnr{
	width:80%;
	margin:0 auto 50px;
	background-color: #fff;
}
	
.newsbtn a {
    display: block;  /* 画面いっぱいに広げるためにblockに変更 */
    width: 100%;     /* 幅を100%に指定 */
    padding-left: 0; /* 左右の固定余白を解除 */
    padding-right: 0;
  }

}

/* ==========================================================================
   7. 動画モーダル（共通）
   ========================================================================== */
.modal-contents {
	display: none;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	background-color: #000000 !important;
	z-index: 99999 !important;
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.modal-contents .modal-contents-inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.modal-contents .modal-contents-inner .modal-contents-iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: auto;
	width: 155vh;
	max-width: 95%;
	margin: 0 auto;
}

.modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-player {
	width: 100%;
	text-align: center;
	position: relative;
	padding-top: 56.25%;
	height: 0;
	overflow: hidden;
	display: block;
	margin: 0 auto;
}

.modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-player iframe {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border: none !important;
	outline: none !important;
}

.modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn {
	width: 100%;
	margin: 15px auto 0;
	font-size: 0;
	text-align: center;
	padding: 0;
}

.modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
	border: 1px solid #111;
	background-color: #fff;
	width: 33.1%;
	margin: 0 0.1% 5px;
	height: auto;
	box-sizing: border-box;
	padding: 10px 0;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	line-height: 20px;
	color: #000;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 8px rgba(0,0,0,0.6);
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
	.modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
		font-size: 12px;
	}
}

.modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li:hover,
.modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li.current {
	border: 1px solid #111;
	background-color: #e60012;
	color: #fff;
}

.modal-contents .modal-contents-inner .modal-close {
	width: 60px;
	height: 60px;
	display: block !important;
	position: fixed !important;
	top: 2% !important;
	right: 1% !important;
	z-index: 99999 !important;
	pointer-events: auto !important;
	cursor: pointer !important;
	background: none !important;
	padding: 0 !important;
	outline: none !important;
	transition: transform 0.2s;
	border: none !important;
}

.modal-contents .modal-contents-inner .modal-close:hover {
	transform: scale(1.1);
}

.modal-contents .modal-contents-inner .modal-close img {
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.modal-contents .modal-contents-inner .modal-contents-iframe {
		width: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		max-width: calc(100% - 40px);
	}

	.modal-contents .modal-contents-inner {
		position: relative;
		width: 100%;
		height: 100%;
		padding: 0;
		box-sizing: border-box;
	}

	.modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-player {
		padding-top: 56.25%;
		width: 100%;
	}

	.modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
		display: block;
		width: 100%;
		margin: 6px 0 0 0;
		text-align: center;
		line-height: 20px;
		font-size: 12px;
		padding: 10px 0;
	}

	.modal-contents .modal-contents-inner .modal-close {
		width: 50px !important;
		height: 50px !important;
		position: absolute !important;
		top: calc(50% - (56.25vw / 2) - 130px) !important;
		right: 10px !important;
		left: auto !important;
		bottom: auto !important;
	}
}