/* ==================================================
  /sumai/lifestyle/newstyle/newstyle_case.css
  => ポップアップアイテム用スタイルシート
================================================== */

/* Base
==================================================================================================== */
.popup_item * {
	font-family: YakuHanJP,'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
}
.popup_item img {
	max-width: 100%;
	height: auto;
    max-height: 380px;
}

/* mobile用 */
@media screen and (max-width:768px) {
	.popup_item * {
		font-weight: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		-moz-font-feature-settings: "palt";
		-webkit-font-feature-settings: "palt";
		font-feature-settings: "palt" 1;
	}
    .popup_item img {
    max-height: 60vw;
}

}

/* ポップアップ
==================================================================================================== */
/* 外枠
============================================================ */
.popup_item {
	position: relative;
	width: 880px;
}
/* mobile用 */
@media screen and (max-width:768px) {
	.popup_item {
		position: relative;
		width: auto;
	}
}
/* 内枠
============================================================ */
.popup_itemInner {
	padding: 40px 100px 100px;
}
/* mobile用 */
@media screen and (max-width:768px) {
	.popup_itemInner {
		padding: 10vw 2.8vw 11.5vw;
	}
}
/* カテゴリ見出し
---------------------------------------- */
.popup_item_headding {
	font-family: YakuHanJP,'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.0;
}
/* mobile用 */
@media screen and (max-width:768px) {
	.popup_item_headding {
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 0.15em;
		line-height: 1.0;
		margin: 0 6%;
	}
}
/* 写真
---------------------------------------- */
.popup_item_pic {
	text-align: center;
	padding: 0;
	margin: 20px auto;
    max-height: 380px;
}
/*.popup_item_pic.is-square {
	max-width: 520px;
}
.popup_item_pic.is-portrait {
	max-width: 400px;
}*/
/* mobile用 */
@media screen and (max-width:768px) {
	.popup_item_pic {
		margin: 3.8vw 0 3.33vw;
	}
/*	.popup_item_pic.is-square {
		max-width: auto;
	}
	.popup_item_pic.is-portrait {
		max-width: auto;
		padding: 3.8vw 15vw 3.33vw;
	}*/
}
/* キャプション
---------------------------------------- */
.popup_item_description {
	font-size: 19px;
	letter-spacing: 0.1em;
	line-height: 1.85;
	text-align: left;
    margin: 0 0 0.8em;
    
}
.txt_notes {
	font-size: 15px;
	letter-spacing: 0.08em;
	line-height: 1.6;
	text-align: left;
}
.popup_item_description  span{
	font-size: 0.65em;
}

/* mobile用 */
@media screen and (max-width:768px) {
.popup_item_description {
	font-size: 15px;
}
    .txt_notes {
	font-size: 12px;
}
}
/* ボタン
============================================================ */
/* NEXT/PREV
---------------------------------------- */
.popup_btn_arrows_prev,
.popup_btn_arrows_next {
	position: absolute;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #1a1a1a;
	width: 60px;
	height: 60px;
	top: 50%;
	transform: translate(0,-50%);
}
.popup_btn_arrows_prev {
	background-image: url("../img/ico_popup_prev.png");
	background-size: 23px 23px;
	left: 0;
}
.popup_btn_arrows_next {
	background-image: url("../img/ico_popup_next.png");
	background-size: 23px 23px;
	right: 0;
}
.popup_btn_arrows_prev:hover,
.popup_btn_arrows_next:hover {
	opacity: 0.5;
	cursor: pointer;
	transition-duration: 0.3s;
}
/* mobile用 */
@media screen and (max-width:768px) {
	.popup_btn_arrows_prev,
	.popup_btn_arrows_next {
		background-color: rgba(0,0,0,.75);
		width: 9.6vw;
		height: 9.6vw;
	}
	.popup_btn_arrows_prev {
		background-image: url("../img/ico_popup_prev.png");
		background-size: 4.3vw 4.3vw;
	}
	.popup_btn_arrows_next {
		background-image: url("../img/ico_popup_next.png");
		background-size: 4.3vw 4.3vw;
	}
	.popup_btn_arrows_prev:hover,
	.popup_btn_arrows_next:hover {
		opacity: 1;
	}
}
/* CLOSE
---------------------------------------- */
.popup_btn_close {
	position: absolute;
	display: inline-block;
	background-image: url("../img/ico_popup_close.png"), url("../img/ico_popup_close_txt.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left bottom 6px, right center;
	background-size: 17px 17px, 55px auto;
	width: 80px;
	height: 30px;
	bottom: 30px;
	right: 30px;
	transform: translate(0,0);
}
.popup_btn_close:hover {
	opacity: 0.5;
	cursor: pointer;
	transition-duration: 0.3s;
}
/* mobile用 */
@media screen and (max-width:768px) {
	.popup_btn_close {
		position: absolute;
		display: inline-block;
		background-image: url("../img/ico_popup_close.png");
		background-repeat: no-repeat;
		background-position: right top;
		background-size: 5vw auto;
		width: 5vw;
		height: 5vw;
		bottom: auto;
		top: 4.5vw;
		right: 4.5vw;
		transform: translate(0,0);
	}
	.popup_btn_close:hover {
		opacity: 0.5;
		cursor: pointer;
		transition-duration: 0.3s;
	}
}
/* 枚数表示
---------------------------------------- */
.popup_count {
	position: absolute;
	display: inline-block;
	font-family: YakuHanJP,'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.0;
	left: 50%;
	bottom: 40px;
	transform: translate(-50%,0);
}
/* mobile用 */
@media screen and (max-width:768px) {
	.popup_count {
		position: absolute;
		display: inline-block;
	font-family: YakuHanJP,'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		font-size: 11px;
		font-weight: 400;
		letter-spacing: 0.05em;
		line-height: 1.0;
		left: 50%;
		bottom: 5vw;
		transform: translate(-50%,0);
	}
}


/* fancybox上書き
==================================================================================================== */
.fancybox-content {
	padding: 0 !important;
}
/* mobile用 */
@media screen and (max-width:768px) {
	.fancybox-slide--html {
    padding: 0 2vw 0 !important;
	}
	.fancybox-slide:before {
		margin-right: 0 !important;
	}
}