@charset "UTF-8";


/*---------------------------------------------
	#recommend04 右からslideIn　リスト表示
---------------------------------------------*/
#recommend04 {
	display: none;/*初期非表示*/
	position: fixed;
	bottom: 80px;
	right: 0;
	right: -360px;
	z-index: 99;
}
#recommend04 a {
	color: #000;
}
#recommend04 .eventList {
	width: 360px;
	background: #ffffff;
	padding: 20px;
	position: absolute;
	top: calc(0vh - 330px);
	right: 1px;
	bottom: auto;
	max-width: 95vw;
	box-sizing: border-box;
	display: block;
	z-index: 2;
	/*transform: translateX(110%);*/
	transition: all 0.6s ease-in-out;
	cursor: pointer;
}
#recommend04.show .eventList {
	box-shadow: -5px 5px 10px rgba(0,0,0,0.4);
	right: 355px;
	transition: all 0.6s ease-in-out;
}

@media screen and (max-width: 414px) {
	#recommend04 .eventList {
		width: 360px;
		max-width: 95vw;
		position: absolute;
		top: calc(0vh - 330px);
		right: 0;
		bottom: auto;		
		padding: 20px;
		z-index: 2;
		/*transform: translateX(110%);*/
		transition: all 0.6s ease-in-out;		
		box-sizing: border-box;
		background: #ffffff;
		display: block;

	}    
}

#recommend04 .tab {
	width: 44px;
	position: absolute;
	top: 0;
	right: 360px;
	padding: 15px 0;
	z-index: 1;
	transition: all 0.9s ease-in-out;
	cursor: pointer;
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: -2px 2px 4px rgba(0,0,0,0.3);
}

#recommend04.show .tab {
	box-shadow: none;
	right: 316px;
	/*transform: translateX(110%);*/
}
#recommend04 .eventList h4 {
	font-family: 'Jost', sans-serif;
	font-size: 100%;
	font-weight: bold;
	letter-spacing: 0.2em;
	border-bottom: 1px solid #e5e5e5;
	margin: 0;
	position: relative;
}
#recommend04 .eventList h4 img{
	width:30px;
	max-width: unset;
	margin-right:0.8em;
	vertical-align : middle;
}
#recommend04 .eventList h4 .btn {
	width: 32px;
	height: 32px;
	background: #fffffc;
	position: absolute;
	top: -4px;
	right: -4px;
	cursor: pointer;
}
#recommend04 .eventList h4 .btn hr {
	width: 90%;
	height: 1px;
	background: #000;
	border: none;
	display: block;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 5%;
}
#recommend04 .eventList h4 .btn hr:nth-of-type(1) {
	transform: rotate(45deg);
}
#recommend04 .eventList h4 .btn hr:nth-of-type(2) {
	display: none;
}
#recommend04 .eventList h4 .btn hr:nth-of-type(3) {
	transform: rotate(-45deg);
}
#recommend04 .eventList ul {
	max-height: 60vh;
	overflow-y: scroll;
	overflow-y: auto;
}
	/* scrollBarカスタマイズ */
#recommend04 .eventList ul {
	scrollbar-width: none;
	-ms-overflow-style: none;
}
#recommend04 .eventList ul::-webkit-scrollbar {
	display: none;
}
#recommend04 .eventList ul .mCSB_inside > .mCSB_container {
	margin-right: 0;
}
#recommend04 .eventList ul .mCSB_scrollTools {
	width: 3px;
}
#recommend04 .eventList ul .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background: linear-gradient(0deg,#f43699,#3183d0);
	border-radius: 3px;
}
#recommend04 .eventList ul .mCSB_scrollTools .mCSB_draggerRail {
	background: #f5f5f5;
}
#recommend04 .common02 {
	border-bottom: 1px dotted #c5c5c5;
	padding: 15px 0;
}
#recommend04 .variable {
	border-bottom: 1px dotted #c5c5c5;
	padding: 15px 0;
}
/* #recommend04 .eventList li {
	border-bottom: 1px dotted #c5c5c5;
	padding: 15px 0;
} */
#recommend04 .eventList li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
#recommend04 .eventList li .bnr {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
#recommend04 .eventList li .bnr:hover,
#recommend04 .eventList li .bnr:visited {
	text-decoration: none;
}
#recommend04 .eventList li .bnr .eyeCatch {
	width: 33%;
	width: 23%;
	height: auto;
	display: block;
	position: relative;
	overflow: hidden;
}
#recommend04 .eventList li .bnr .text {
	width: 65%;
	width: 75%;
	font-family: inherit;
	font-size: 85%;
	font-size: 10px;
	padding: 0;
	position: static;
}
#recommend04 .eventList li .bnr .eyeCatch.paushouse{
	border:3px solid #ea6c1f;
}
#recommend04 .eventList li .bnr .eyeCatch.design{
}
#recommend04 .eventList li .bnr .eyeCatch.lifestyle{
	border:3px solid #95241b;
}
#recommend04 .eventList li .bnr .eyeCatch.openhouse{
	border:3px solid #10819c;
}

#recommend04 .eventList li .bnr .eyeCatch.bustour{
	border:3px solid #238b2a;
}

#recommend04 .eventList li .bnr .eyeCatch:before {
	content: '';
	display: block;
	width: 0;
	height: calc(100%);
	background-color: #000;
	opacity: 0.3;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
}
#recommend04 .eventList li .bnr:hover .eyeCatch:before {
	animation: wipeEyeCatch 0.3s ease-in-out 0s;
}
@keyframes wipeEyeCatch {
	0% {
		width: 0;
	}
	50% {
		width: 100%;
	}
	50% {
		right: 0;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
#recommend04 .eventList li .bnr .eyeCatch img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	font-family: 'object-fit: cover;';/*IE対応*/
}
#recommend04 .eventList li .bnr .text .label {
	font-family: 'Jost', sans-serif;
	color: #000;
	font-weight:normal;
	margin: 0 0 5px 0;
	display: table;
	border-bottom:1px solid #000;
}

#recommend04 .eventList li .bnr .text .label.movie {
}
#recommend04 .eventList li .bnr .text .label.inspection {
}
#recommend04 .eventList li .bnr .text .label.event {
}
#recommend04 .eventList li .bnr .text .label.seminar {
}
#recommend04 .eventList li .bnr .text .label.modelhouse {
}

/*#recommend04 .eventList li .bnr .text .label.paushouseplan {
	color: #fff;
	background: #ea6c1f;
}*/
#recommend04 .eventList li .bnr .text .label.design {
}
#recommend04 .eventList li .bnr .text .label.lifestyle {
}

/*#recommend04 .eventList li.variable .bnr .text .label.inspection {
	color: #fff;
	background: #773e00;
}
#recommend04 .eventList li.variable .bnr .text .label.event {
	color: #fff;
	background: #fc9e2a;
}
#recommend04 .eventList li.variable .bnr .text .label.modelhouse {
	color: #fff;
	background: #000;
}
#recommend04 .eventList li.variable .unknownPaushouse .bnr .text .label {
	color: #fff;
	background: #ea6c1f;
}
#recommend04 .eventList li.variable .unknownDesign .bnr .text .label {
	color: #fff;
	background: #28335d;
}
#recommend04 .eventList li.variable .unknownLifestyle .bnr .text .label {
	color: #fff;
	background: #95241b;
}*/
#recommend04 .eventList li .bnr .text h5 {
	font-size: 130%;
	font-weight: bold;
	line-height: 1em;
	margin:0.5em 0;;
}
#recommend04 .eventList li.variable .customerDefault .bnr .text h5 {
	white-space: nowrap;
	overflow-x: hidden;
	text-overflow: ellipsis;
	position: relative;
}
#recommend04 .eventList li.variable .customerDefault .bnr .text h5 span {
}
/*#recommend04.design .eventList li.variable .bnr .text h5 {
	line-height: 1.6;
	margin: 0.3em 0 0;
}
#recommend04.design .eventList li.variable .bnr .text h5 + h6 {
	font-family:
		"Lucida Sans Unicode", "Lucida Grande", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 105%;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 0.2em;
	margin: 0 0 0.3em;
}*/
#recommend04.lifestyle .eventList li.variable .bnr .text h5 {
	line-height: 1.5;
	margin: 0.3em 0;
}
#recommend04.lifestyle .eventList li.variable .bnr .text h5 span {
	font-family:
		"Lucida Sans Unicode", "Lucida Grande", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	line-height: inherit;
	/*display: block;*/
}
#recommend04 .eventList li .bnr .text .date {
	font-size: inherit;
	font-weight: bold;
	line-height: 1.2;
	margin: 0;
}
#recommend04 .eventList li .bnr .text .date span {
	font-weight: bold;
	line-height:1.2em;
	border: 1px solid #000;
	display: inline-block;
	padding: 0 3px;
	margin-right: 4px;
}
#recommend04 .eventList li .bnr .text .overview {
	font-size: 110%;
	font-weight:bold;
	line-height: 1.5;
	margin-top: 0;
}
#recommend04 .eventList li .bnr .text .more {
	font-size: inherit;
	line-height: 1.8;
	text-align: right;
	display: block;
	margin: 0;
}

#recommend04 .tab p span {
	font-family: 'Jost', sans-serif;
	font-size: 80%;
	font-weight:normal;
	line-height: 44px;
	letter-spacing:0.1em;
	margin-bottom: 10px;
	margin-bottom: 0;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#recommend04 .tab p img{
	width:23px;
	height: 26px;
	max-width: 23px;
	margin-bottom:0.3em;
	transition: all 1s ease;
    -webkit-transition: all 1s ease;
}

#recommend04 .tab p img:hover {
    transform: rotate(720deg);
    -webkit-transform: rotate(720deg);
}



#recommend04 .tab .btn {
	width: 30px;
	height: 28px;
	background: #fff;
	display: block;
	margin: auto;
	position: relative;
}
#recommend04 .tab .btn hr {
	width: 20px;
	height: 2px;
	background: #95241b;
	border: none;
	margin: 0;
	position: absolute;
	left: 5px;
}
#recommend04 .tab .btn hr:nth-of-type(1) {
	top: 6px;
}
#recommend04 .tab .btn hr:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}
#recommend04 .tab .btn hr:nth-of-type(3) {
	bottom: 6px;
}
	/* push通知追加 */
#recommend04 .webPush {
	display: none;
}
#recommend04 .webPush div{
}
#recommend04 .webPush div img{
	width:100%;
}
#recommend04 .common02 {
}
#recommend04 .webPush h5 {
	color:#23655f;
	font-size: 100%;
	font-weight: bold;
	text-align: center;
	padding: 3px 0;
}
#recommend04 .webPush h5 i {
	color:#23655f;
	font-size: 90%;
	font-weight: bold;
	margin-right: 5px;
	transform: rotate(15deg);
}
/*#recommend04 .webPush .explain {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#recommend04 .webPush .explain img {
	width: 20%;
}
#recommend04 .webPush .explain .text {
	width: 75%;
}*/
#recommend04 .webPush p {
	font-size: 85%;
	line-height: 1.7;
	margin: 0 0 10px 0;
}
#recommend04 .webPush .notification {
	font-size: 85%;
	font-weight:bold;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
#recommend04 .webPush .notification span {
	width: 50%;
	line-height: 28px;
	text-align: center;
	display: block;
	cursor: pointer;
}
#recommend04 .webPush .notification #denyWebPush {
	border:1px solid #ddd;
}
#recommend04 .webPush .notification #denyWebPush:hover {
	background: #e5e5e5;
}
#recommend04 .webPush .notification #allowWebPush {
	color: #fff;
	background: #E91E63;
	position: relative;
}
#recommend04 .webPush .notification #allowWebPush:before {
	content: '';
	display: block;
	width: 0;
	height: calc(100%);
	background-color: #fff;
	opacity: 0.5;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
}
#recommend04 .webPush .notification #allowWebPush:hover:before {
	animation: wipeEyeCatch 0.3s ease-in-out 0s;
}
/*@keyframes wipeEyeCatch {
	0% {
		width: 0;
	}
	50% {
		width: 100%;
	}
	50% {
		right: 0;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}*/


/* レスポンシブ */
@media screen and (max-width: 959px) {
		#recommend04 .tab {
		top: auto;
		bottom: 0;
	}
}
//*
@media screen and (max-width: 768px) {
	#recommend04 .tab {
		top: auto;
		bottom: 0;
	}
}
*//

@media screen and (max-width: 500px) {
	#recommend04 .eventList ul {
		max-height: 70vh;
	}
	#recommend04 .eventList li .bnr .text h5 {
		font-size: 150%;
	}
	#recommend04 .eventList li .bnr .text .more {
		display: none;
	}
}
@media screen and (max-width: 378px) {
	#recommend04 {
		right: -95vw;
	}
	#recommend04 .eventList {
		padding: 10px;
		transition: all 0.6s ease-in-out;
	}
	#recommend04 .tab {
		right: 95vw;
	}
	#recommend04.show .tab {
		right: calc(95vw - 44px);
	}
}
/*@media screen and (max-width: 959px) and (orientation: landscape) {*/
@media screen and (orientation: landscape) {
	#recommend04 .tab {
		top: auto;
		bottom: 0;
	}
	#recommend04 .eventList ul {
		max-height: 50vh;
	}
	#recommend04.mobile .eventList ul {
		max-height: 25vh;
	}
}

/*---------------------------------------------
	#recommend03 オーバーレイ表示popup
---------------------------------------------*/
#recommend03.overlay {
	display: block;
	width: auto;
	position: static;
}
#recommend03.overlay #satori__creative_container {
	width: 300px;
	position: fixed;
	right: 50%;
	bottom: 50%;
	z-index: 102;
	transform: translate(50%, 50%);
}
#recommend03.overlay + .bg_overlay {
	display: none;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	z-index: 101;
}
#recommend03.overlay .tag.eyeCatch {
	display: none;
	width: 150px;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
	position: fixed;
	right: 10px;
	bottom: 80px;
	z-index: 102;
	cursor: pointer;
}
#recommend03.overlay .tag.eyeCatch .tagLabel {
	width: auto;
	color: #000000;
	font-size: 100%;
	font-weight: bold;
	text-align: center;
	line-height: 1.0;
	-ms-writing-mode: unset;
	writing-mode: unset;
	background: #f9f755;
	border-radius: 4px 4px 0 0 / 4px 4px 0 0 ;
	box-shadow: none;
	display: block;
	padding: 7px 0 5px;
}
#recommend03.overlay .tag.eyeCatch .tagLabel.lifestyle {
	color: #ffffff;
	background: rgba(149, 36, 27, 1.0);
}
#recommend03.overlay .tag.eyeCatch .tagLabel.lifestyle em {
	color: #f9f755;
	font-weight: bold;
	font-style: normal;
	line-height: 1.0;
	display: block;
}
#recommend03.overlay .tag.eyeCatch img {
	box-sizing: border-box;
	border-radius: 4px;
	padding: 2px;
}


@media screen and (max-width: 959px) {
	#recommend03.overlay {
		transform: unset;
	}
	#recommend03.overlay .tag.eyeCatch {
		display: none !important;
	}
}


/*---------------------------------------------
	#recommend03 右下表示popup
---------------------------------------------*/
#recommend03 {
	display: none;
	/*position: relative;*/
	width: 300px;
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 101;
}
#recommend03 a {
	color: #000000;
	text-decoration: none;
}
#recommend03 img {
	max-width: 100%;
}
#recommend03 .open .popupContent {
	/*width: 300px;
	position: fixed;
	right: 20px;
	bottom: 80px;*/
	position: relative;
}
#recommend03 .open .popupContent .popupBanner,
#recommend03 .open .popupContent .popupForm {
	box-sizing: border-box;
	font-family: "Lucida Sans Unicode", "Lucida Grande", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	text-align: center;
	background: #ffffff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
}
/*#recommend03 .open .popupContent .closeBtn*/
#recommend03 .closeBtn {
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	background: rgba(40, 51, 93, 1.0);
	border-radius: 50%;
	padding: 9px;
	position: absolute;
	top: -12px;
	right: -12px;
	z-index: 101;
	cursor: pointer;
}
#recommend03.paushousePlan .closeBtn {
	background: #ea6c1f;
}
/*#recommend03 .open .popupContent .lifestyle .closeBtn*/
#recommend03 .closeBtn.lifestyle {
	background: rgba(149, 36, 27, 1.0);
}
#recommend03 .close {
	display: none;
}
#recommend03 .close .tag {
	position: fixed;
	right: 25px;
	bottom: 80px;
}
#recommend03 .close .tag.eyeCatch {
	width: 150px;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
	position: fixed;
	right: 10px;
	bottom: 80px;
	cursor: pointer;
}
#recommend03 .close .tag.eyeCatch .tagLabel {
	width: auto;
	color: #000000;
	font-size: 100%;
	font-weight: bold;
	text-align: center;
	line-height: 1.0;
	-ms-writing-mode: unset;
	writing-mode: unset;
	background: #f9f755;
	border-radius: 4px 4px 0 0 / 4px 4px 0 0 ;
	box-shadow: none;
	display: block;
	padding: 7px 0 5px;
}
#recommend03 .close .tag.eyeCatch .tagLabel.design {
	color: #ffffff;
	background: rgba(40, 51, 93, 1.0);
}
#recommend03.paushousePlan .close .tag.eyeCatch .tagLabel.design {
	background: #ea6c1f;
}
#recommend03 .close .tag.eyeCatch .tagLabel.lifestyle {
	color: #ffffff;
	background: rgba(149, 36, 27, 1.0);
}
#recommend03 .close .tag.eyeCatch .tagLabel.design em,
#recommend03 .close .tag.eyeCatch .tagLabel.lifestyle em {
	color: #f9f755;
	font-weight: bold;
	font-style: normal;
	line-height: 1.0;
	display: block;
}
#recommend03 .close .tag.eyeCatch img {
	box-sizing: border-box;
	border-radius: 4px;
	padding: 2px;
}
#recommend03 .close .tag p {
	width: 48px;
	color: #ffffff;
	font-size: 90%;
	font-weight: bold;
	text-align: center;
	line-height: 48px;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	/*background: rgba(40, 51, 93, 1.0);*/
	background: rgba(119, 0, 0, 1.0);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
	display: inline-block;
	padding: 15px 0;
	cursor: pointer;
}
#recommend03 .close .tag p em {
	color: #f9f755;
	font-weight: bold;
	font-style: normal;
}

	/* ---------------------------------------------
	 popupバナー用CSS ここから */
#recommend03 .open .popupContent .popupBanner {
	display: block;
	padding: 15px;
}
#recommend03 .open .popupContent .popupBanner dl {
	padding: 12px 0;
}
#recommend03 .open .popupContent .popupBanner dl dt {
	font-size: 130%;
	font-weight: bold;
	margin-bottom: 8px;
}
#recommend03 .open .popupContent .popupBanner dl dd {
	font-size: 100%;
	font-weight: bold;
	line-height: 1.8em;
}
#recommend03 .open .popupContent .popupBanner .button {
	color: #ffffff;
	font-size: 105%;
	font-weight: bold;
	line-height: 50px;
	background: #28335d;
	display: block;
	position: relative;
}
#recommend03.paushousePlan .open .popupContent .popupBanner .button {
	background: #ea6c1f;
}
#recommend03 .open .popupContent .popupBanner .button i {
	font-weight: normal;
	line-height: 50px;
	position: absolute;
	top: 0;
	right: 10px;
}
	/* lifestyle_popup*/
#recommend03 .open .popupContent .popupBanner.lifestyle dt em {
	font-weight: bold;
	letter-spacing: 0.2em;
}
#recommend03 .open .popupContent .popupBanner.lifestyle dd {
	font-size: 12.8px;
	letter-spacing: normal;
}
#recommend03 .open .popupContent .popupBanner.lifestyle .button {
	background: #95241b;
}
	/* /lifestyle_popup*/
	/* event専用設定 */
#recommend03 .open .popupContent .popupBanner.event {
	padding: 0 0 15px;
}
#recommend03 .open .popupContent .popupBanner.event dl {
	padding: 10px 18px;
		/* 7.20・21見学会用調整 */
		padding: 10px 15px;
		font-size: 96%;
		/* /7.20・21見学会用調整 */
}
#recommend03 .open .popupContent .popupBanner.event dl dt {
	font-size: 100%;
	margin-bottom: 5px;
}
#recommend03 .open .popupContent .popupBanner.event dl dt span {
	color: #ffffff;
	line-height: 1.0;
	background: rgba(149, 36, 27, 1.0);
	display: inline-block;
	padding: 3px;
	margin-right: 5px;
}
#recommend03 .open .popupContent .popupBanner.event dl dd {
	text-align: left;
	line-height: 166%;
}
#recommend03 .open .popupContent .popupBanner.event .button {
	width: auto;
	line-height: 40px;
	margin: 0 18px;
}
#recommend03 .open .popupContent .popupBanner.event .button i {
	line-height: 40px;
}
#recommend03 .open .popupContent .popupBanner.event .label {
	width: 178px;
	height: 178px;
	color: #000000;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	position: absolute;
	right: -8px;
	top: -8px;
	overflow: hidden;
}
#recommend03 .open .popupContent .popupBanner.event .label span {
	background: #f9f755;
	line-height: 30px;
	display: block;
	position: relative;
	right: -50px;
	top: 24px;
	transform: rotate(45deg);
}
#recommend03 .open .popupContent .popupBanner.event .label span:before {
	position: absolute;
	content: "";
	border-top: 6px solid #bdbb41;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	top: 30px;
	left: 18px;
}
#recommend03 .open .popupContent .popupBanner.event .label span:after {
	position: absolute;
	content: "";
	border-top: 6px solid #bdbb41;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	top: 30px;
	right: 18px;
}
	/* /event専用設定 */
	/* ここまで popupバナー用CSS
	--------------------------------------------- */

	/* ---------------------------------------------
	 popupフォーム用CSS ここから */
#recommend03 .open .popupContent .popupForm {
	overflow-y: hidden;
}
#recommend03 .open .popupContent .popupForm.scroll {
	/*overflow-y: scroll;*/
}
#recommend03 .open .popupContent .popupForm #banner {
	display: block;
	padding-bottom: 15px;
	position: relative;
	cursor: pointer;
}
#recommend03 .open .popupContent .popupForm #banner dl {
	letter-spacing: normal;
	padding: 10px 15px;
	margin: 0;
}
#recommend03 .open .popupContent .popupForm #banner dl dt {
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
#recommend03 .open .popupContent .popupForm #banner dl dt small {
	font-size: 13.5px;
}
#recommend03 .open .popupContent .popupForm #banner dl dt p {
	font-size: 20px;
	line-height: 32px;
	margin: 0;
}
#recommend03 .open .popupContent .popupForm #banner dl dd {
	font-size: 13px;
	text-align: left;
	line-height: 166%;
	margin: 0;
}
#recommend03 .open .popupContent .popupForm #banner .toForm {
	width: 270px;
	height: 40px;
	color: #ffffff;
	text-align: center;
	line-height: 40px;
	background: rgba(40, 51, 93, 1.0);
	display: block;
	margin: 0 auto 15px;
	position: relative;
}
#recommend03 .open .popupContent .popupForm #banner .toForm em {
	color: #f9f755;
}
#recommend03 .open .popupContent .popupForm #banner .toForm i {
	line-height: 40px;
	position: absolute;
	top: 0;
	right: 10px;
}
	/* フォーム遷移型へ変更のためアイコン調整 */
#recommend03.brandPanel .open .popupContent .popupForm #banner .toForm i.pc_none {
	display: block !important;
}
#recommend03.brandPanel .open .popupContent .popupForm #banner .toForm i.sp_none {
	display: none !important;
}

#recommend03 .open .popupContent .popupForm iframe#form {
	width: 300px;
	background: #ffffff;
	border: none;
	/*position: relative;
	transform: translateY(-10px);*/
	display: none;
	position: absolute;
	top: 0;
	left: 0;
}
		/* 小冊子13 */
	#recommend03.book13 .open .popupContent .popupForm,
	#recommend03.book13 .open .popupContent .popupForm iframe#form {
		height: 443.75px;
	}
		/* 小冊子17 */
	#recommend03.book17 .open .popupContent .popupForm,
	#recommend03.book17 .open .popupContent .popupForm iframe#form {
		height: 421.75px;
	}
		/* ブランドパネル用 */
	#recommend03.brandPanel .open .popupContent .popupForm.design,
	#recommend03.brandPanel .open .popupContent .popupForm.design iframe#form {
		height: 373.88px;
	}
	#recommend03.brandPanel .open .popupContent .popupForm.lifestyle,
	#recommend03.brandPanel .open .popupContent .popupForm.lifestyle iframe#form {
		height: 398.88px;
	}
	#recommend03.brandPanel .open .popupContent .popupForm #banner {
		padding: 15px 15px 30px;
	}
	#recommend03.brandPanel .open .popupContent .popupForm #banner dl {
		padding: 12px 0;
	}	
	#recommend03.brandPanel .open .popupContent .popupForm #banner dt {
		font-size: 130%;
		margin-bottom: 8px;
	}
	#recommend03.brandPanel .open .popupContent .popupForm #banner dd {
		font-size: 100%;
		font-weight: bold;
		text-align: center;
		line-height: 1.8em;
	}
	#recommend03.brandPanel .open .popupContent .popupForm.lifestyle #banner dd {
		font-size: 12.8px;
		white-space: nowrap;
	}
	#recommend03.brandPanel .open .popupContent .popupForm #banner .toForm {
		height: 50px;
		font-size: 105%;
		font-weight: bold;
		letter-spacing: 0.07em;
		line-height: 50px;
	}
	#recommend03.brandPanel .open .popupContent .popupForm #banner .toForm em {
		font-weight: bold;
		font-style: normal;
	}
	#recommend03.brandPanel .open .popupContent .popupForm.lifestyle #banner .toForm {
		background: rgba(149, 36, 27, 1.0);
	}
	#recommend03.brandPanel .open .popupContent .popupForm #banner .toForm i {
		line-height: 50px;
	}
		/* iframe内 */
	.frameInner {
		font-family: "Lucida Sans Unicode", "Lucida Grande", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
		position: absolute;
		top: 0;
		left: 0;
	}
	.frameInner a {
		color: #000000;
		text-decoration: none;
	}
	.frameInner img {
		max-width: 100%;
	}
		/* 入力フォーム */
	.frameInner .formHead {
		color: #ffffff;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		line-height: 1.4;
		background: rgba(40, 51, 93, 0.9);
		padding: 3px 0;
		margin: 0;
	}
	.frameInner .formHead.lifestyle {
		background: rgba(149, 36, 27, 0.9);
	}
	.frameInner .lead {
		color: #333333;
		font-size: 80%;
		display: table;
		margin: 10px auto 6px;
	}
	.frameInner #satori__creative_container {
		width: 100%;
		box-sizing: border-box;
		display: table;
		padding: 0 15px;
	}
	.frameInner #satori__creative_container .satori__custom_form {
		font-weight: bold;
	}
	.frameInner #satori__creative_container .satori__input_group {
		padding: 5px 0;
	}
	.frameInner #satori__creative_container .satori__input_group:nth-child(8) {
		display: none;
	}
	.frameInner #satori__creative_container .satori__input_group label {
		color: #000000;
		padding-bottom: 3px;
	}
	.frameInner #satori__creative_container .satori__input_group.satori__customer_first_name label {
		opacity: 0;
	}
	.frameInner #satori__creative_container .satori__input_group label .satori__require {
		color: #ffffff;
		font-size: 80%;
		line-height: 166%;
		letter-spacing: 0.1em;
		vertical-align: 0.2em;
		background: #d8401a;
		border-radius: 2px;
		display: inline-block;
		padding: 0px 6px;
		margin-left: 10px;
	}
	.frameInner #satori__creative_container .satori__input_group label .satori__not_require {
		display: none !important;
	}
	.frameInner #satori__creative_container .satori__input_group input {
		width: 270px;
		height: 34px;
		line-height: 32px;
		background: #efefef;
		border: 1px solid #cccccc;
		box-shadow: none;
		padding: 0 5px;
	}
	.frameInner #satori__creative_container .satori__horiz_group .satori__input_group input {
		width: 130px;
	}
	.frameInner #satori__creative_container .satori__horiz_group .satori__input_group.satori__customer_first_name input {
		margin-left: 10px;
	}
	.frameInner #satori__creative_container .satori__input_group:nth-child(5) input {
		width: 96px;
	}
	.frameInner #satori__creative_container .satori__input_group input[type="checkbox"] {
		width: auto;
		height: auto;
		margin-left: 2px;
		transform: scale(1.4);
	}
	.frameInner #satori__creative_container .satori__input_group input::placeholder,
	.frameInner #satori__creative_container .satori__input_group input:-ms-input-placeholder,
	.frameInner #satori__creative_container .satori__input_group input::-moz-placeholder {
		color: #b1b1b1
	}
	.frameInner #satori__creative_container .satori__input_group .satori__notes {
		width: 167px;
		line-height: 1.6;
		background: none;
		border: none;
		border-radius: 0;
		display: inline-block;
		vertical-align: middle;
		padding: 0;
		margin-left: 3px;
		transition: unset;
	}
	.frameInner #satori__creative_container .satori__input_group .satori__error_messages {
		color: #d8401a;
	}
	.frameInner #satori__creative_container .satori__input_group.satori__customer_first_name .satori__error_messages {
		display: none;
	}
	.frameInner #satori__creative_container .satori__input_group .satori__error_messages span:first-child {
		display: none;
	}
	.frameInner #satori__creative_container #satori__privacy_policy_agreement_wrapper {
		display: none !important;
	}
	.frameInner #satori__creative_container .satori__submit_group {
		padding: 0;
		margin: 20px 0 0;
	}
	.frameInner #satori__creative_container .satori__submit_group #satori__submit_confirm {
		width: 270px;
		height: 40px;
		color: #ffffff;
		font-size: 14px;
		letter-spacing: 0.2em;
		line-height: 40px;
		background: #820000;
		border: none;
		display: block;
		padding: 0;
		cursor: pointer;
		-webkit-appearance: none;
	}
	.frameInner #satori__creative_container .satori__submit_group #satori__submit_confirm:hover {
		opacity: 0.95 !important;
	}
		/* thanksメッセージ */
	.frameInner.finishPanel dl {
		text-align: center;
		margin: 0;
	}
	.frameInner.finishPanel dl dt {
		color: #ffffff;
		font-size: 16px;
		font-weight: bold;
		line-height: 50px;
		background: rgba(40, 51, 93, 1.0);
	}
	.frameInner.finishPanel dl dt.lifestyle {
		background: rgba(149, 36, 27, 0.9);
	}
	.frameInner.finishPanel dl dd {
		font-size: 15px;
		line-height: 2.0em;
		padding: 30px 15px;
		margin: 0;
	}
	.frameInner.finishPanel.design dl dt {
		width: 100%;
		line-height: 40px;
		position: fixed;
		top: 0;
		left: 0;
	}
	.frameInner.finishPanel.design dl dd {
		font-size: 14px;
		text-align: left;
		padding: 50px 15px 10px;
	}
	.frameInner.finishPanel.design dl dd p {
		margin: 1em 0 0;
	}
	.frameInner.finishPanel.design dl dd p:first-child {
		margin: 0;
	}
	.frameInner.finishPanel.design dl dd p span {
		font-weight: bold;
	}
	.frameInner.finishPanel.design dl dd p em {
		color: rgba(119, 0, 0, 1.0);
		line-height: 1em;
		font-style: normal;
		background: #F9F754;
		padding: 3px;
	}
	.frameInner.finishPanel .bookTitle {
		font-weight: bold;
		text-align: center;
	}
	.frameInner.finishPanel .bookTitle small {
		font-size: 14px;
	}
	.frameInner.finishPanel .bookTitle p {
		font-size: 20px;
		line-height: 32px;
		margin: 0;
	}
	.frameInner.finishPanel .downloadBtn {
		width: 270px;
		color: #f9f755;
		font-size: 17px;
		font-weight: bold;
		text-align: center;
		line-height: 60px;
		background: rgba(119, 0, 0, 1.0);
		display: block;
		margin: 10px auto;
		position: relative;
	}
	.frameInner.finishPanel .downloadBtn i {
		color: #ffffff;
		line-height: 60px;
		position: absolute;
		top: 0;
		right: 20px;
	}
			/* IE,Edge調整 */
		@media all and (-ms-high-contrast: none) {
			.frameInner #satori__creative_container {
				display: block;
			}
			.frameInner #satori__creative_container .satori__input_group input {
				width: 265px;
			}
			.frameInner #satori__creative_container .satori__horiz_group .satori__input_group input {
				width: 127px;
			}
			.frameInner #satori__creative_container .satori__horiz_group .satori__input_group.satori__customer_first_name input {
				margin-left: 5px;
			}
			.frameInner #satori__creative_container .satori__input_group:nth-child(5) input {
				width: 91px;
			}
			.frameInner #satori__creative_container .satori__input_group .satori__notes {
				width: 155px;
				font-size: 90%;
			}
			.frameInner #satori__creative_container .satori__submit_group #satori__submit_confirm {
				width: 265px;
			}
		}
		@supports (-ms-ime-align: auto) {
			.frameInner #satori__creative_container {
				display: block;
			}
			.frameInner #satori__creative_container .satori__input_group input {
				width: 265px;
			}
			.frameInner #satori__creative_container .satori__horiz_group .satori__input_group input {
				width: 127px;
			}
			.frameInner #satori__creative_container .satori__horiz_group .satori__input_group.satori__customer_first_name input {
				margin-left: 5px;
			}
			.frameInner #satori__creative_container .satori__input_group:nth-child(5) input {
				width: 91px;
			}
			.frameInner #satori__creative_container .satori__input_group .satori__notes {
				width: 155px;
				font-size: 90%;
			}
			.frameInner #satori__creative_container .satori__submit_group #satori__submit_confirm {
				width: 265px;
			}
		}
			/* /IE,Edge調整 */
		/* /iframe内 */
	/* ここまで popupフォーム用CSS
	--------------------------------------------- */

@media screen and (max-width: 959px) {
	#recommend03 {
		display: block;
		bottom: 50%;
		right: 50%;
		transform: translate(50%, 50%);
	}
	.popupWrapper {
		position: relative;
		z-index: 101;
	}
	.sp_overlay {
		width: 100vw;
		height: 100vh;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 100;
	}
	#recommend03 .open .popupContent {
		/*bottom: 50%;
		right: 50%;
		transform: translate(50%, 50%);*/
	}
	#recommend03 .close .tag {
		display: none;
		position: fixed;
		right: 0;
		bottom: 50%;
		transform: translate(0, 50%);
	}
	#recommend03 .close .tag.eyeCatch {
		width: 90px;
		right: auto;
		left: 10px;
		transform: unset;
	}
	#recommend03 .close .tag.eyeCatch .tagLabel {
		font-size: 90%;
		padding: 5px 0 3px;
	}
	#recommend03 .close .tag p {
		width: 36px;
		line-height: 36px;
		background: rgba(40, 51, 93, 0.9);
		background: rgba(119, 0, 0, 0.9);
		border-radius: 3px 0 0 3px / 3px 0 0 3px;
		padding: 12px 0;
	}
	#recommend03 .close .tag p span em {
		color: #f9f755;
	}
}


/*---------------------------------------------
	#recommend02 オーバーレイ表示popup
---------------------------------------------*/
#recommend02 .bg_overlay {
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.65);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
}
#recommend02 #satori__creative_container a {
	width: 300px;
	box-sizing: border-box;
	color: #000000;
	font-family: "Lucida Sans Unicode", "Lucida Grande", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	text-align: center;
	text-decoration: none;
	background: #ffffff;
	display: block;
	padding: 15px;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 102;
	transform: translate(-50%, -50%);
}
#recommend02 a .eyeCatch {
	width: 100%;
	display: block;
}
#recommend02 a dl {
	margin: 12px auto;
}
#recommend02 a dl dt {
	font-size: 130%;
	font-weight: bold;
	margin-bottom: 8px;
}
#recommend02 a dl dd {
	font-size: 100%;
		font-weight: bold;
	line-height: 1.8em;
}
#recommend02 a .button {
	color: #ffffff;
	/*font-size: 120%;*/
		font-size: 105%;
		font-weight: bold;
	line-height: 50px;
	background: #28335d;
	display: block;
	position: relative;
}
#recommend02 a .button i {
	font-weight: normal;
	line-height: 50px;
	position: absolute;
	top: 0;
	right: 10px;
}
/* lifestyle_popup*/
#recommend02 a.lifestyle dt em {
	font-weight: bold;
	letter-spacing: 0.2em;
}
#recommend02 a.lifestyle dd {
	font-size: 12.8px;
	letter-spacing: normal;
}
#recommend02 a.lifestyle .button {
	background: #95241b;
}
	/* HEAT20_popup*/
#recommend02 a.heat20 {
	background: #FFF3F8;
}
#recommend02 a.heat20 dd {
	font-size: 95%;
	text-align: left;
}
#recommend02 a.heat20 .button {
	background: #e85187;
}
	/* conceptBook_popup*/
#recommend02 a.concept dd {
	font-size: 14px;
	letter-spacing: normal;
}



/*---------------------------------------------
	#recommend01
---------------------------------------------*/
/*
#recommend01 {
	position: fixed;
	bottom: 40px;
	left: -200px;
	z-index: 9;
}
#recommend01 .fa-times {
	color: #ffffff;
	background: #000000;
	padding: 2px;
}
#recommend01 .popup {
	width: 180px;
	height: 180px;
	max-width: 40vw;
	max-height: 40vw;
	color: #000000;
	font-family: "Lucida Sans Unicode", "Lucida Grande", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	text-align: center;
	text-decoration: none;
	box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
	overflow: hidden;
	display: block;
	position: relative;
}
#recommend01 .popup.design {
	background: url('/img/top/design_present/top_design_present_bg.jpg') center center;
	background-size: cover;
}
#recommend01 .popup.store {
	background: url('/img/bg_popup_store.jpg') center center;
	background-size: cover;
}
#recommend01 .popup.circle {
	border-radius: 50%;
	margin-top: 50px;
}
#recommend01 .popup dl {
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#recommend01 .popup dl dt {
	line-height: 1.4em;
	padding: 2px 0;
}
#recommend01 .popup.design dl dt {
	font-size: 15px;
	font-weight: bold;
	background: rgba(249,247,85,0.9);
}
#recommend01 .popup.store dl dt {
	color: #ffffff;
	font-size: 12px;
	letter-spacing: 0.1em;
	background: rgba(0,0,0,0.8);
}
#recommend01 .popup dl dd {
	line-height: 1.4em;
	padding: 2px 0;
}
#recommend01 .popup.design dl dd {
	font-size: 12px;
	color: #ffffff;
	letter-spacing: 0.1em;
	background: rgba(0,0,0,0.8);
}
#recommend01 .popup.store dl dd {
	font-size: 15px;
	font-weight: bold;
	background: rgba(255,255,255,0.9);
}
#recommend01 .popup dl dd span {
	width: 70%;
	font-size: 12px;
	font-weight: bold;
	line-height: 22px;
	letter-spacing: 0;
	display: block;
	margin: 3px auto;
}
#recommend01 .popup.design dl dd span {
	border: 1px solid #ffffff;
}
#recommend01 .popup.store dl dd span {
	border: 1px solid #000000;
}
@media screen and (max-width:959px) {
	#recommend01 {
		bottom: 110px;
	}
}
@media screen and (max-width:599px) {
	#recommend01 {
		bottom: 150px;
	}
}
@media screen and (max-width:413px) {
	#recommend01 .popup dl dt {
		font-size: 12px;
	}
	#recommend01 .popup dl dd {
		font-size: 10px;
	}
}



/- スクロール時のアニメーション -/
#recommend01.show {
	animation: recommend01 0.3s ease-in-out 0s forwards;
}
@keyframes recommend01 {/- 左からスライドイン -/
	0% {
		left: -200px;
	}
	33% {
		left: 75px;
	}
	100% {
		left: 25px;
	}
}
@media screen and (max-width:959px) {
	@keyframes recommend01 {
		0% {
			left: -200px;
		}
		33% {
			left: 40px;
		}
		100% {
			left: 8px;
		}
	}
}
/- ここまでスクロール時のアニメーション -/
*/



/*popup movie lity-close強制 20200417*/
.lity-close {
  z-index: 9994;
  width: 50px !important;
  height: 50px !important;
  position: fixed;
  right: 20px !important;
  top: 20px !important;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #eee !important;
  font-style:normal;
  font-size: 50px !important;
  font-family:unset !important;
  line-height: 35px;
}
.lity {
  background: rgba(0, 0, 0, 0.8) !important;
}
/* sns icon 20220324 */
.sns_box.popup{
	width:100%;
	height:50px;
	padding: 15px 0;
	box-sizing:border-box;
	display:block;
}
.sns_box.popup ul{
	width: 80%;
	margin:auto;
	display:flex;
	justify-content:space-between;
}
.sns_box.popup ul li {
	width: 50px;
	list-style: none;
	border-bottom: none;
	padding-bottom: 0;
}
.sns_box.popup ul li dl{
	width: 30px;
	height: 30px;
	object-fit: cover;
}
.sns_box.popup ul li dl img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sns_box.popup ul li a:hover {
	opacity: 1;
}
