@charset "UTF-8";


/*
画像のルート
/content/dam/isetan_mitsukoshi/site/wjri/event_calendar/2025/12/sdc2026/
画面サイズ
@media only screen and (max-width: 47.999em) {
}
@media only screen and (min-width: 800px) {
}
*/




/*----------------------------------------------------
   
   リセット
   
----------------------------------------------------*/
.wrap dd {
	margin: 0;
}
.non {
	display: none!important;
}



/*----------------------------------------------------
   
   表示と非表示
   
----------------------------------------------------*/


@media only screen and (min-width: 800px) {
.pc {
	display: block;
}
.inline-pc {
	display: inline;
}
.sp,
.inline-sp {
	display: none;
}
}
@media only screen and (max-width: 47.999em) {
.pc,
.inline-pc {
	display: none;
}
.sp {
	display: block;
}
.inline-sp {
	display: inline;
}
}



/*----------------------------------------------------
   
   a:hover
   
----------------------------------------------------*/

.sdc2026 .wrap button,
.sdc2026 .wrap a,
.sdc2026 .wrap a:before,
.sdc2026 .wrap a:after,
.sdc2026 .wrap a img,
.sdc2026 .wrap a span {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-webkit-tap-highlight-color: transparent;
}
.sdc2026 .wrap a:hover{
	text-decoration:none;
	opacity: .7;
}



/*----------------------------------------------------
   
   固定ナビ
   
----------------------------------------------------*/

.open-btn {
	width: 54px;
	height: 54px;
	box-sizing: border-box;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 150;
}
.open-btn .btn-popup {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	width: 54px;
	height: 54px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 150;
}
.open-btn .btn-popup span {
	height: 2px;/* 線の太さ */
	width: 30px;/* 長さ */
	background-color: #000;/* 色 */
	display: block;
	content: '';
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.open-btn .btn-popup span:nth-of-type(1) {
	position: absolute;
	left: 50%;
	top: calc(50% - 8px);
	transform: translate(-50%,-50%);
}
.open-btn .btn-popup span:nth-of-type(3) {
	position: absolute;
	left: 50%;
	bottom: calc(50% - 10px);
	transform: translate(-50%,-50%);
}




/*----------------------------------------------------

　モーダルメニュー

----------------------------------------------------*/

/*----------------------------------------------------
   button CSSリセット
----------------------------------------------------*/
button {
	padding: 0;
	background-color: transparent;
	border: none;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

/*----------------------------------------------------
   メニューを開いた時ページを固定する
----------------------------------------------------*/
.no-scroll {
	overflow: hidden;
}

/*----------------------------------------------------
   ポップアップ枠とオーバーレイ背景
----------------------------------------------------*/
/* オーバーレイ背景 */
.popup-overlay {
	background: rgba(204,204,204,0.9);/* 背景色 */
	width: 100%;/* 画面いっぱいに表示 */
	height: 100%;/* 画面いっぱいに表示 */
	position: fixed;/* 固定 */
	top: 0;
	left: 0;
	z-index: 99990;
	display: none;/* 初期非表示 */
}
/* ポップアップの内容を収納する枠（共通） */
.popup-wraper {
	display: none;
}
/* ポップアップ枠（共通） */
.popup-modal {
	position: fixed;/* 固定 */
	z-index: 99996;/* オーバーレイより前にする */
	background-color: #FFF;/* 枠の背景色 */
	padding: 4em 0 4em;/* 内余白 */
	box-sizing: border-box;
	scrollbar-width: none;
	width: 90vw;
	height: 100dvh;
	right: 0;
	top: 0;
	overflow-y: scroll;
}
/* ポップアップ枠（メニュー以外） */
/*.popup-modal:not(.popup-menu) {
	overflow-y: scroll;
}*/
.popup-inner {
	position: relative;
	text-align: center;
	width: 95%;
	margin: 0 auto;
}
/* --------  PC調整   --------*/
@media screen and ( min-width: 800px) {
.popup-modal:not(.popup-menu) .popup-inner {
	max-width: 800px;
	margin: 0 auto;
}
}





/*----------------------------------------------------
   
   オープンボタン
   
----------------------------------------------------*/

.open-btn {
	display: none;
}
@media screen and ( max-width: 799.9px) {
.open-btn {
	width: 54px;
	height: 54px;
	box-sizing: border-box;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.open-btn .btn-popup,
.close .btn-popup {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	width: 54px;
	height: 54px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99999;
}
.open-btn .btn-popup span,
.close .btn-popup span {
	height: 2px;/* 線の太さ */
	width: 30px;/* 長さ */
	background-color: #000;/* 色 */
	display: block;
	content: '';
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.open-btn .btn-popup span:nth-of-type(1),
.close .btn-popup span:nth-of-type(1) {
	position: absolute;
	left: 50%;
	top: calc(50% - 8px);
	transform: translate(-50%,-50%);
}
.open-btn .btn-popup span:nth-of-type(3),
.close .btn-popup span:nth-of-type(3) {
	position: absolute;
	left: 50%;
	bottom: calc(50% - 10px);
	transform: translate(-50%,-50%);
}
}

/*----------------------------------------------------
   オープンボタンのアニメーション（背景あり・3本版）
----------------------------------------------------*/
.open-btn .btn-popup span:nth-of-type(1) {
	animation: nav-bar01 .75s 1 forwards;
}
@keyframes nav-bar01 {
  0% {
	top: calc(50% - 1px);
    transform: translate(-50%,-50%) rotate(45deg);
  }
  50% {
	top: calc(50% - 1px);
    transform: translate(-50%,-50%) rotate(0);
  }
  100% {
    transform: translate(-50%,-50%) rotate(0);
  }
}
.open-btn .btn-popup span:nth-of-type(2) {
  opacity: 1;
}
.open-btn .btn-popup span:nth-of-type(3) {
	animation: nav-bar02 .75s 1 forwards;
}
@keyframes nav-bar02 {
  0% {
	bottom: calc(50% - 1px);
    transform: translate(-50%,-50%) rotate(-45deg);
  }
  50% {
	bottom: calc(50% - 1px);
    transform: translate(-50%,-50%) rotate(0);
  }
  100% {
    transform: translate(-50%,-50%) rotate(0);
  }
}

/*----------------------------------------------------
   閉じるボタンのアニメーション（背景あり・3本版）
----------------------------------------------------*/

.popup-overlay .close-btn.active span:nth-of-type(1) {
	animation: active-nav-bar01 .75s 1 forwards;
}
@keyframes active-nav-bar01 {
  0% {
    transform: translate(-50%,-50%) rotate(0);
  }
  50% {
	top: calc(50% - 1px);
    transform: translate(-50%,-50%) rotate(0);
  }
  100% {
	top: calc(50% - 1px);
    transform: translate(-50%,-50%) rotate(45deg);
  }
}
.popup-overlay .close-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.popup-overlay .close-btn.active span:nth-of-type(3) {
	animation: active-nav-bar02 .75s 1 forwards;
}
@keyframes active-nav-bar02 {
  0% {
    transform: translate(-50%,-50%) rotate(0);
  }
  50% {
	bottom: calc(50% - 1px);
    transform: translate(-50%,-50%) rotate(0);
  }
  100% {
	bottom: calc(50% - 1px);
    transform: translate(-50%,-50%) rotate(-45deg);
  }
}





/*----------------------------------------------------
   
   モーダル内の装飾（通常）
   
----------------------------------------------------*/

.popup-modal .txt {
	text-align: left;
	margin: 1.5em 0;
	font-size: 15px;
	line-height: 2;
}


/*----------------------------------------------------
   
   モーダル内の装飾（メニュー用）
   
----------------------------------------------------*/

/*----------------------------------------------------
   枠
----------------------------------------------------*/
.popup-menu {
	background-color: #FFF;
}
/* --------  PC調整   --------*/
@media screen and ( min-width: 800px) {
.popup-menu {
	/*display: flex;
	justify-content: space-between;
	box-sizing: border-box;*/
	padding: 4em 5vw 0;
}
.popup-menu .popup-inner {
	padding-bottom: 50px;
}
}
@media screen and ( min-width: 800px) and ( max-width: 1124px) {
.popup-menu {
	padding: 3em 2.5vw 0;
}
}



/*----------------------------------------------------
   
   中身
   
----------------------------------------------------*/

.popup-menu h3 {
	margin: 1em 0;
	font-size: 18px;
	text-align: left;
	border-top: solid 1px #aa9092;
	border-bottom: solid 1px #aa9092;
	padding: 1em;
}
.popup-menu h3 a:has(img) {
	display: flex;
	justify-content: flex-start;
}
.popup-menu h3 a img {
	max-width: 200px;
}
.popup-menu ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	padding: 1em 0;
}
.popup-menu ul li a:after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: solid 1px #683b40;
	border-bottom: solid 1px #683b40;
	transform: rotate(-45deg);
	margin-left: 1.5em;
	margin-right: .5em;
}
.product-navi li a:before {
	content: "";
	width: 10%;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
	flex-shrink: 0;
}
.product-navi li:nth-of-type(1) a:before {
	aspect-ratio: 540/750;
	background-image: url("../img/cosme02-navi.png");
}
.product-navi li:nth-of-type(2) a:before {
	aspect-ratio: 540/348;
	background-image: url("../img/cosme03-navi.png");
}
.product-navi li:nth-of-type(3) a:before {
	aspect-ratio: 540/696;
	background-image: url("../img/mask01-navi.png");
}
.product-navi li:nth-of-type(4) a:before {
	aspect-ratio: 540/696;
	background-image: url("../img/mask02-navi.png");
}
.product-navi li a span.link-txt {
	flex-grow: 1;
	/*display: flex;
	justify-content: flex-start;
	align-items: centar;*/
	text-align: left;
	box-sizing: border-box;
	padding-left: 1em;
	line-height: 1.8;
}





/*----------------------------------------------------
   メニュー（リンクなしの時）
----------------------------------------------------*/
.menu-feature-sub a.sdc20206-nolink {
	position: relative;
	flex-flow: column;
	padding: .6em 10px!important;
}
.menu-feature-sub a.sdc20206-nolink:after {
	display: none;
}
.menu-feature-sub a.sdc20206-nolink span {
	color: var(--red);
	font-size: 1.2rem;
}







