@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:wght@400;700&family=Roboto:wght@400;700&family=Noto+Sans+TC&family=Noto+Serif+TC&display=swap");

:root {
	--primary: #eb7d1c;
	--primary_dark: #cd6c17;
	--gray_light: #f3f2f1;
	--gray_mid: #e1dddb;
	--gray_dark: #7d8284;
	--brown: #3a332c;
}
*{
	-webkit-transition: background-color 250ms;
    -moz-transition: background-color 250ms;
	-ms-transition: background-color 250ms;
	transition: background-color 250ms;
	transition: color 250ms;
	transition: opacity 250ms;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body, html { 
	height:100vh;
	height: calc(var(--vh, 1vh) * 100);
	overflow: hidden;
}
body {
	font-family: 'Roboto', 'Arial' , 'Noto Sans TC', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 1px;
	color: var(--brown);
}
button {
	border: 0;
}
button:focus {outline:none}
input {outline: none;}
a {text-decoration: none;}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
p,h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

.style_1::-webkit-scrollbar-track{
	background-color: transparent;
}
.style_1::-webkit-scrollbar{
    width: 6px;
	height: 3px;
    background-color: transparent;
}
.style_1::-webkit-scrollbar-thumb{
    background-color: #bdbdbd;
	border-radius: 10px;
}

.style_2::-webkit-scrollbar{
	display: none;
}


/********** 指南 **********/
#guide_carousel_pc {
	display: block;
	width: 70%;
	max-width: 1100px;
	background-color: #f3f2f0;
}
#guide_carousel_pad {display: none;}
#guide_carousel_phone {display: none;}

#guide_page {
	position: absolute;
	top: 0;
	left: 0;
    width: 100vw;
    height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
    overflow-y: hidden;
    overflow-x: hidden;
	z-index: 1000;
	display: none;
	background-color: rgba(0,0,0,0.5);
	align-items: center;
	justify-content: center;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
	border-radius: 50%;
    border: 2px solid;
    width: 50px;
    height: 50px;
    padding: 0px;
    background-size: 30px;
    background-position: 36% center;
}

.carousel-control-next-icon {
    background-position: 64% center;
}

.guide_close {
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	z-index: 3;
	width: 171px;
    height: 60px;
    margin: 0 auto;
    border-radius: 99px;
    font-size: 24px;
	line-height: 60px;
	color: white;
	background-color: var(--primary);
	-webkit-transition: background-color 250ms;
	-ms-transition: background-color 250ms;
	transition: background-color 250ms;
}

.guide_close:hover {
	background-color: var(--primary_dark);
}

.carousel-indicators [data-bs-target] {
	width: 6px;
    height: 6px;
    border-radius: 50%;
	margin-left: 5px;
	margin-right: 5px;
	border-top: 0px;
    border-bottom: 0px;
}


/********** 首頁 **********/
#front_page {
	position: relative;
    width: 100vw;
    height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
    overflow-y: hidden;
    overflow-x: hidden;
	z-index: 100;
    background-image: url("img/bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	display: flex;
}

#front_page .lang_dropdown {
	position: absolute;
	width: 110px;
    height: 36px;
    background: white;
    border-radius: 9px;
    top: 40px;
	right: 40px;
	font-size: 16px;
	z-index: 2;
}

#front_page .lang_dropdown::before {
    content: "";
    position: absolute;
    right: 13px;
    top: 11px;
    z-index: 9999;
    width: 10px;
    height: 10px;
    border: 2px solid grey;
    border-top: transparent;
    border-right: transparent;
	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    pointer-events: none;
	-webkit-transition: -webkit-transform 0.3s;
	-webkit-transition: transform 0.3s;
	-webkit-transition:  all 0.3s linear;
    -moz-transition:  all 0.3s linear;
	-ms-transition:  all 0.3s linear;
    transition: all 0.3s linear;
}

#front_page .lang_dropdown input {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    padding: 0px 13px;
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
    position: absolute;
    top: 0;
    left: 0;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	text-align: left;
    background-color: white;
    line-height: 37px;
	color: var(--brown);
}

#front_page .lang_dropdown .options {
    width: 100%;
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
    overflow: hidden;
    position: absolute;
    top: 41px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    background: white;
}
#front_page .lang_dropdown .options .translate {
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    color: #292d34;
}
#front_page .lang_dropdown .options .translate:hover {
    color: white;
    background: var(--primary);
}
#front_page .lang_dropdown.opened .options {
    opacity: 1;
    visibility: visible;
}
#front_page .lang_dropdown.opened::before {
	-webkit-transform: rotate(-225deg);
  	transform: rotate(-225deg);
    top: 16px;
}

#front_page .front_content {
	width: 446px;
	height: 100%;
	background-color: var(--gray_dark);
	display: flex;
    position: relative;
    overflow: hidden;
	padding: 0 0 0 60px;
	color: white;
	flex-direction: column;
    justify-content: center;
}

#front_page .front_content img {
	width: 184px;
}

#front_page .front_content .title {
	font-family: 'DM Serif Display', 'Roboto', 'Arial', 'Noto Serif TC', 'Noto Sans TC', sans-serif;
	margin-top: 44px;
}

#front_page .front_content .title h2 {
	font-size: 48px;
}

#front_page .front_content .title h3 {
	margin-top: 10px;
}

#front_page .front_content .enter_btn {
	width: 171px;
    height: 60px;
	line-height: 60px;
    margin-top: 191px;
    border-radius: 99px;
    font-size: 24px;
	background-color: var(--gray_light);
	-webkit-transition: background-color 250ms;
	-ms-transition: background-color 250ms;
	transition: background-color 250ms;
	color: black;
}

#front_page .front_content .enter_btn:hover {
	background-color: var(--gray_mid);
}

#m_room {display: none;}


/********** 房間 **********/
#main_page {
	position: absolute;
	top: 0;
	left: 0;
    width: 100vw;
    height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
    display: flex;
    overflow: hidden;
	background-color: #dddddd;
}

#main_page .top {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
}

#main_page .top .logo {
	display: block;
	height: 85px;
}

#main_page .top .logo img {height: 100%;}

#main_page .note {
	position: absolute;
	right: 10px;
	bottom: 10px;
	color: white;
	z-index: 1;
	pointer-events: none;
	font-size: 11px;
    opacity: 0.9;
}

#main_page .download {
	position: absolute;
	right: 20px;
	bottom: 50px;
	z-index: 1;
	width: 50px;
	height: 50px;
	background-color: var(--primary);
	border-radius: 100%;
	padding: 0;
	display: flex;
    align-items: center;
    justify-content: center;
}

#main_page .download img {
	width: 70%;
}

#main_page .top .m_btn {
	display: none;
}

#main_page .step_action {display: none;}

#img_box {
	position: absolute;
	width: calc(100% - 400px);
	height: 100%;
    display: flex;
    overflow-y: hidden;
    overflow-x: hidden;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	right: 0;
}

#img_box .img_place_btn {
	position: relative;
	width: 100%;
}

#img_box .img_place_btn button {
	position: absolute;
	min-width: 112px;
	height: 60px;
	text-align: center;
	line-height: 55px;
	color: rgba(255,255,255,0.70);
	border: 2px solid rgba(255,255,255,0.70);
	background-color: transparent;
	font-size: 26px;
	transform: translate(-50%, -50%);
	-webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-transition-property: color, border;
    transition-property: color, border;
}

#img_box .img_place_btn button:hover {
	color: rgba(255,255,255,1);
	border: 2px solid rgba(255,255,255,1);
}

#img_box .img_place_btn button.selected {
	color: var(--primary);
	border: 2px solid var(--primary);
}

#img_box .img_place_btn[data-room="1"] .cabinet_btn {
	left: 80%;
    top: calc(50% - (100vw - 400px)*0.12);
}

#img_box .img_place_btn.content_close[data-room="1"] .cabinet_btn {
	left: 80%;
    top: calc(50% - 100vw*0.12);
}

#img_box .img_place_btn[data-room="1"] .wall_btn {
	left: 39.2%;
    top: calc(50% - (100vw - 400px)*0.16);
}

#img_box .img_place_btn.content_close[data-room="1"] .wall_btn {
	left: 39.2%;
    top: calc(50% - 100vw*0.16);
}

#img_box .img_place_btn[data-room="1"] .island_btn {
	left: 46.2%;
    top: calc(50% + (100vw - 400px)*0.12);
}

#img_box .img_place_btn.content_close[data-room="1"] .island_btn {
	left: 46.2%;
    top: calc(50% + 100vw*0.12);
}

#img_box .img_place_btn[data-room="2"] .cabinet_btn {
	left: 59.1%;
    top: calc(50% - (100vw - 400px)*0.08);
}

#img_box .img_place_btn.content_close[data-room="2"] .cabinet_btn {
	left: 59.1%;
    top: calc(50% - 100vw*0.08);
}

#img_box .img_place_btn[data-room="2"] .wall_btn {
	left: 27.2%;
    top: calc(50% - (100vw - 400px)*0.13);
}

#img_box .img_place_btn.content_close[data-room="2"] .wall_btn {
	left: 27.2%;
    top: calc(50% - 100vw*0.13);
}

#img_box .img_place_btn[data-room="3"] .cabinet_btn {
	left: 75.2%;
    top: calc(50% - (100vw - 400px)*0.05);
}

#img_box .img_place_btn.content_close[data-room="3"] .cabinet_btn {
	left: 75.2%;
    top: calc(50% - 100vw*0.05);
}

#img_box .img_place_btn[data-room="3"] .wall_btn {
	left: 39.2%;
    top: calc(50% - (100vw - 400px)*0.10);
}

#img_box .img_place_btn.content_close[data-room="3"] .wall_btn {
	left: 39.2%;
    top: calc(50% - 100vw*0.10);
}

#img_box .img_place_btn[data-room="4"] .cabinet_btn {
	left: 81.5%;
    top: calc(50% - (100vw - 400px)*0.07);
}

#img_box .img_place_btn.content_close[data-room="4"] .cabinet_btn {
	left: 81.5%;
    top: calc(50% - 100vw*0.07);
}

#img_box .img_place_btn[data-room="4"] .wall_btn {
	left: 29.2%;
    top: calc(50% - (100vw - 400px)*0.10);
}

#img_box .img_place_btn.content_close[data-room="4"] .wall_btn {
	left: 29.2%;
    top: calc(50% - 100vw*0.10);
}

#img_box .img_place_btn[data-room="5"] .cabinet_btn {
	left: 26.7%;
    top: calc(50% + (100vw - 400px)*0.19);
}

#img_box .img_place_btn.content_close[data-room="5"] .cabinet_btn {
	left: 26.7%;
    top: calc(50% + 100vw*0.19);
}

#img_box .img_place_btn[data-room="5"] .wall_btn {
	left: 39.7%;
    top: calc(50% - (100vw - 400px)*0.07);
}

#img_box .img_place_btn.content_close[data-room="5"] .wall_btn {
	left: 39.7%;
    top: calc(50% - 100vw*0.07);
}

#img_box .img_place_btn{
	display: none;
}

#m_about {display: none;}

.content {
	display: flex;
    position: relative;
    height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
    overscroll-behavior: contain;
	overflow: hidden;
}

.content .control {
	width: 400px;
    position: relative;
    background-color: var(--gray_light);
	z-index: 2;
	padding: 0 40px;
}

.content .control .panel_close {
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr; 
	display: flex;
	position: absolute;
    right: 5px;
    bottom: 0;
	cursor: pointer;
	width: 30px;
    height: 110px;
    justify-content: center;
}

.content .control .panel_close .fa-chevron-down {
	display: none;
}

.content .step {
	width: 46px;
    height: 100%;
	position: relative;
    display: flex;
    flex-direction: column;
	align-items: center;
	z-index: 2;
}

.content .step button {
	position: relative;
	width: 100%;
	height: 160px;
	border-radius: 0 18px 18px 0;
	background-color: var(--gray_dark);
	color: white;
	padding: 0 6px;
}

.content .step button.active {
	background-color: var(--gray_light);
	color: var(--brown);
}

.content .step button.active::before {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    left: 0px;
    top: -36px;
    background: #000;
    background:radial-gradient(circle at 100% 0, transparent 36px, var(--gray_light) 37px);
	z-index: 1;
	pointer-events: none;
}

.content .step button:not(:last-child).active::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    left: 0px;
    bottom: -36px;
    background: #000;
    background:radial-gradient(circle at 100% 100%, transparent 36px, var(--gray_light) 37px);
	z-index: 1;
	pointer-events: none;
}

.content .step button p{
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr; 
	font-size: 20px;
	width: 100%;
    display: flex;
	letter-spacing: 2px;
}

.tabcontent {
	display: none;
	height: 100%;
	position: relative;
}

.tabcontent:first-child {
	display: block;
}

.content #room .inner, .content #texture .inner {
	position: relative;
    width: 100%;
	height: 100%;
	display: flex;
    flex-direction: column;
}

.content #room .inner .room_group{
	margin-top: 30px;
	height: 100%;
    overflow: auto;
}

.content #room .inner .room_group .room_box{
	width: 100%;
	text-align: center;
	padding: 10px;
}

.content #room .inner .room_group .room_box h3{
	font-size: 20px;
    font-weight: bold;
	line-height: 2;
}


.content #room .inner .room_box img {
	width: 100%;
	border: 5px solid white;
	cursor: pointer;
}

.content #room .inner .room_box img.selected {
	border: 5px solid var(--primary);
}

.content #texture .inner {
	color: var(--gray_dark);
}

.content #texture .inner .header {
	margin-top: 20px;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.content #texture .inner .header #search {
	background-image: url("img/search.png");
    background-position: 11px 7px;
    background-repeat: no-repeat;
	background-size: 21px auto;
    max-width: 220px;
    padding: 8px 20px 8px 40px;
    border: 0px;
    height: 35px;
	border-radius: 99px;
}

.content #texture .inner .header .filter_btn {
	background-color: transparent;
	color: var(--gray_dark);
	display: flex;
    align-items: center;
	border-radius: 8px;
	-webkit-transition: background-color 250ms;
	-ms-transition: background-color 250ms;
	transition: background-color 250ms;
	padding: 0 6px;
}

.content #texture .inner .header .filter_btn:hover {
	background-color: var(--gray_mid);
}

.content #texture .inner .header .filter_btn img {
	height: 28px;
	margin-left: 5px;
}

.content #texture .inner .place_btn {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

.content #texture .inner .place_btn button {
	height: 100px;
	background-color: var(--gray_mid);
	color: var(--brown);
    border-radius: 20px;
	display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
	-webkit-transition: background-color 250ms;
	-ms-transition: background-color 250ms;
	transition: background-color 250ms;
	padding: 0;
	margin: 0 6px;
}

.content #texture .inner .place_btn button:hover {background-color: #cdcac7;}

.content #texture .inner .place_btn button svg {
	height: 60%;
}

.content #texture .inner .place_btn button.selected {
	background-color: var(--primary);
    color: white;
}

.content #texture .inner .place_content {
	margin-top: 20px;
	flex: 1;
	display: flex;
    flex-direction: column;
	overflow: auto;
}

.content #texture .inner .place_content .brand_logo {
	height: 70px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
	text-align: center;
	letter-spacing: 5px;
	color: black;
	align-items: end;
}

.content #texture .inner .place_content .brand_logo p span {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 12px;
}

.header .brand_logo {
	display: none;
}

.header .brand_logo[value="cabinet"] {
	visibility: visible;
}

.header .brand_logo[value="wall"], .header .brand_logo[value="island"] {
	visibility: hidden;
}

.content #texture .inner #cabinet_content .brand_logo img, .content #texture .inner #wall_content .brand_logo img {
	height: 44px;
}

.content #texture .inner #island_content .brand_logo img {
	height: 100%;
}

.content #texture .inner #island_content .brand_logo p {
	text-align: left;
    margin: 0 5px;
	line-height: 16px;
}

.content #texture .inner .place_content#wall_content, .content #texture .inner .place_content#island_content{display: none;}

.content #texture .inner .place_content .category_main {
	display: flex;
}

.content #texture .inner .place_content .category_main .category_main_btn {
	flex: 1;
	text-align: center;
	margin: 0 6px 6px 6px;
    border-bottom: 1px solid var(--gray_dark);
	color: var(--gray_dark);
	background-color: var(--gray_light);
	font-size: 18px;
	cursor: pointer;
	padding: 0;
}

.content #texture .inner .place_content .category_main .category_main_btn.selected {
	color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

.content #texture .inner .place_content .category_content {
	display: none;
	flex-wrap:wrap;
	margin-top: 5px;
}

.content #texture .inner .place_content .category_content .category_content_btn {
	flex: 0 0 33.3%;
	text-align: center;
	font-size: 14px;
	height: 25px;
	line-height: 25px;
	cursor: pointer;
	color: var(--gray_dark);
	background-color: var(--gray_light);
}

.content #texture .inner .place_content .category_content .category_content_btn.selected {
	color: var(--primary);
}

.content #texture .inner .place_content .texture_content {
    display: flex;
	flex: 1;
    overflow-y: auto;
	margin-top: 20px;
}

.content #texture .inner .place_content .texture_content .texture_group {
	position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	align-content: flex-start;
	width: 100%;
}

.content #texture .inner .place_content .texture_content .texture_group .texture_box {
	position: relative;
    display: flex;
    flex-direction: column;
    width: 33.3%;
	padding: 0 10px 15px 10px;
	cursor: pointer;
	text-align: center;
	letter-spacing: 0px;
}

.content #texture .inner .place_content .texture_content .texture_group .texture_box .texture_img {
	width: 100%;
	border: 3px solid white;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-bottom: 131.3%;
}

.content #texture .inner .place_content .texture_content .texture_group .texture_box:hover .texture_img {
	border: 3px solid var(--gray_mid);
}

.content #texture .inner .place_content .texture_content .texture_group .texture_box h5 {font-size: 18px;margin-top: 5px;}

.content #texture .inner .place_content .texture_content .texture_group .texture_box p {font-size: 14px;line-height: 1.1;}

.content #texture .inner .place_content .texture_content .texture_group .texture_box.selected {
	color: var(--primary);
}

.content #texture .inner .place_content .texture_content .texture_group .texture_box.selected .texture_img {
	border: 3px solid var(--primary);
}

.content #about .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
}

.content #about .inner img {
	width: 70%;
}

.content #about .inner .intro,.content #about .inner .quality {
	width: 170px;
	height: 170px;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 22px;
}

.content #about .inner .intro {
	background-color: var(--primary);
    color: white;
	margin-bottom: 30%;
}

.content #about .inner .quality {
	background-color: var(--gray_mid);	
    color: var(--brown);
}

.filter_content {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--gray_light);
	z-index: 10;
	padding: 0 10%;
}

.filter_content .inner {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
    flex-direction: column;
    flex-wrap: wrap;
	align-items: center;
}

.filter_content .btn-close {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 24px;
	cursor: pointer;
	z-index: 1;
}

.filter_content .inner .title {
	width: 168px;
    height: 70px;
    background-color: var(--primary);
    color: white;
    text-align: center;
    line-height: 90px;
    font-size: 20px;
}

.filter_content .inner .filter_group {
	flex: 1;
	margin-top: 4%;
    padding: 0 20px;
    overflow-y: auto;
	width: 100%;
	max-width: 1200px;
}

.filter_content .inner .filter_group hr {
	margin: 15px 0;
	opacity: 0.8;
	border-top: 1px solid var(--gray_dark);
}

.filter_content .inner .filter_group .filter_item {
	display: flex;
    align-items: center;
	font-size: 18px;
	background-color: transparent;
	color: var(--brown);
	border-color: transparent;
}

.filter_content .inner .filter_group .filter_item h2 {
	font-size: 18px;
	min-width: 200px;
	min-height: 40px;
    text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
}

.filter_content .inner .filter_group .filter_item .accordion-button {display: none;}
.filter_content .inner .filter_group .filter_item .accordion-button br {display: none;}

.filter_content .inner .filter_group .filter_item .filter_box {
	flex: 1;
}

.filter_content .inner .filter_group .filter_item .filter_opt {
	position: relative;
    padding-left: 25px;
    cursor: pointer;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	display: inline-flex;
    align-items: center;
	margin: 5px;
	height: 30px;
    line-height: 30px;
}

.filter_content .inner .filter_group .filter_item .filter_opt input {
	position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.filter_content .inner .filter_group .filter_item .filter_opt .checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
	border: 1px solid black;
}

.filter_content .inner .filter_group .filter_item .filter_opt:hover input ~ .checkmark {
    background-color: #ccc;
}

.filter_content .inner .filter_group .filter_item .filter_opt input:checked ~ .checkmark {
}

.filter_content .inner .filter_group .filter_item .filter_opt .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.filter_content .inner .filter_group .filter_item .filter_opt  input:checked ~ .checkmark:after {
    display: block;
}

.filter_content .inner .filter_group .filter_item .filter_opt  .checkmark:after {
    left: 2px;
    top: 2px;
    width: 14px;
    height: 14px;
	background-color: black;
}

.filter_content .inner .filter_action {
	margin: 4% 0;
	line-height: 50px;
	font-size: 18px;
}

.filter_content .inner .filter_action .clear {
	background-color: var(--gray_mid);
    color: var(--gray_dark);
    height: 50px;
    width: 135px;
    border-radius: 100px;
	 -webkit-transition: background-color 250ms;
	 -ms-transition: background-color 250ms;
	transition: background-color 250ms;
}

.filter_content .inner .filter_action .clear:hover {
	background-color: #cfc8c5;
    color: #696e71;
}

.filter_content .inner .filter_action .confirm {
	background-color: var(--primary);
    color: white;
    height: 50px;
    width: 135px;
    border-radius: 100px;
	margin-left: 50px;
	 -webkit-transition: background-color 250ms;
	 -ms-transition: background-color 250ms;
	transition: background-color 250ms;
}

.filter_content .inner .filter_action .confirm:hover {
	background-color: var(--primary_dark);
}


/********** 截圖 **********/
#screenshot {
	position: absolute;
    width: 1920px;
    height: 920px;
    overflow: hidden;
	left: 0;
    top: 0;
	display: none;
}

#screenshot .inner {
	position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow-y: hidden;
    overflow-x: hidden;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	background-image: url("img/room/room_1/2_121_1.jpg");
}

#screenshot .inner img {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 150px;
}

#screenshot .info {
	position: absolute;
    left: 0;
    bottom: 0;
	background-color: #00000033;
	padding: 10px 15px;
}

#screenshot .info p {
	color: white;
	font-size: 20px;
	white-space: nowrap;
}

#download {
	height: 100%;
	width: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 100;
	background-color: var(--gray_light);
	flex-direction: column;
}

#download img {
	width: 100%;
}

#download p {
	margin: 10px;
    font-size: 14px;
    color: var(--brown);
	text-align: center;
}

#download .btn-close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 20px;
}



@media (max-width: 1280px) {
	/********** 指南 **********/
	#guide_carousel_pc {display: none;}
	#guide_carousel_pad {
		display: block;
		width: 80%;
		max-width: 900px;
		background-color: #f3f2f0;
	}
	
	
	/********** 首頁 **********/
	#front_page .front_content {
		width: 400px;
	}
	
	#front_page .front_content img {
		width: 150px;
	}
	
	#front_page .front_content .title h1 {
		font-size: 34px;
	}
	
	#front_page .front_content .title h2 {
		font-size: 44px;
	}
		
	#front_page .front_content .title h3 {
		font-size: 24px;
	}
	
	#front_page .front_content .enter_btn {
		margin-top: 136px;
		width: 160px;
		height: 55px;
		font-size: 22px;
		line-height: 55px;
	}
	
	.guide_close {
		width: 135px;
		height: 52px;
		font-size: 20px;
		bottom: 38px;
		line-height: 52px;
	}
	
	
	/********** 房間 **********/
	#main_page .top {
		top: 10px;
        right: 10px;
	}
	
	#main_page .top .logo {
		height: 70px;
	}
	
	#main_page .note {
		margin-left: 10px;
	}
	
	#main_page .download{
		width: 40px;
    	height: 40px;
	}
		
	#img_box {
		width: calc(100% - 360px);
	}

	#img_box .img_place_btn button {
		min-width: 95px;
    	height: 50px;
		line-height: 46px;
		font-size: 22px;
	}
	
	#img_box .img_place_btn[data-room="1"] .cabinet_btn {
		left: 80%;
		top: calc(50% - (100vw - 360px)*0.12);
	}

	#img_box .img_place_btn.content_close[data-room="1"] .cabinet_btn {
		left: 80%;
		top: calc(50% - 100vw*0.12);
	}

	#img_box .img_place_btn[data-room="1"] .wall_btn {
		left: 39.2%;
		top: calc(50% - (100vw - 360px)*0.16);
	}

	#img_box .img_place_btn.content_close[data-room="1"] .wall_btn {
		left: 39.2%;
		top: calc(50% - 100vw*0.16);
	}

	#img_box .img_place_btn[data-room="1"] .island_btn {
		left: 46.2%;
		top: calc(50% + (100vw - 360px)*0.12);
	}

	#img_box .img_place_btn.content_close[data-room="1"] .island_btn {
		left: 46.2%;
		top: calc(50% + 100vw*0.12);
	}

	#img_box .img_place_btn[data-room="2"] .cabinet_btn {
		left: 59.1%;
		top: calc(50% - (100vw - 360px)*0.08);
	}

	#img_box .img_place_btn.content_close[data-room="2"] .cabinet_btn {
		left: 59.1%;
		top: calc(50% - 100vw*0.08);
	}

	#img_box .img_place_btn[data-room="2"] .wall_btn {
		left: 27.2%;
		top: calc(50% - (100vw - 360px)*0.13);
	}

	#img_box .img_place_btn.content_close[data-room="2"] .wall_btn {
		left: 27.2%;
		top: calc(50% - 100vw*0.13);
	}

	#img_box .img_place_btn[data-room="3"] .cabinet_btn {
		left: 75.2%;
		top: calc(50% - (100vw - 360px)*0.05);
	}

	#img_box .img_place_btn.content_close[data-room="3"] .cabinet_btn {
		left: 75.2%;
		top: calc(50% - 100vw*0.05);
	}

	#img_box .img_place_btn[data-room="3"] .wall_btn {
		left: 39.2%;
		top: calc(50% - (100vw - 360px)*0.10);
	}

	#img_box .img_place_btn.content_close[data-room="3"] .wall_btn {
		left: 39.2%;
		top: calc(50% - 100vw*0.10);
	}
	
	#img_box .img_place_btn[data-room="4"] .cabinet_btn {
		left: 81.5%;
		top: calc(50% - (100vw - 360px)*0.07);
	}

	#img_box .img_place_btn.content_close[data-room="4"] .cabinet_btn {
		left: 81.5%;
		top: calc(50% - 100vw*0.07);
	}

	#img_box .img_place_btn[data-room="4"] .wall_btn {
		left: 29.2%;
		top: calc(50% - (100vw - 360px)*0.10);
	}

	#img_box .img_place_btn.content_close[data-room="4"] .wall_btn {
		left: 29.2%;
		top: calc(50% - 100vw*0.10);
	}

	#img_box .img_place_btn[data-room="5"] .cabinet_btn {
		left: 26.7%;
		top: calc(50% + (100vw - 360px)*0.19);
	}

	#img_box .img_place_btn.content_close[data-room="5"] .cabinet_btn {
		left: 26.7%;
		top: calc(50% + 100vw*0.19);
	}

	#img_box .img_place_btn[data-room="5"] .wall_btn {
		left: 39.7%;
		top: calc(50% - (100vw - 360px)*0.07);
	}

	#img_box .img_place_btn.content_close[data-room="5"] .wall_btn {
		left: 39.7%;
		top: calc(50% - 100vw*0.07);
	}

	.content .control {
		width: 360px;
		padding: 0 34px;
	}
	
	.content .control .panel_close {
		right: 0;
	}
	
	.content #texture .inner .header #search {
		max-width: 190px;
	}
	
	.content #texture .inner .place_btn {
		font-size: 14px;
	}
	
	.content #texture .inner .place_btn button {
    	height: 90px;
		border-radius: 15px;
	}
	
	.content #texture .inner .place_content, .content #texture .inner .place_content .texture_content {
		margin-top: 16px;
	}
	
	.content #texture .inner .place_content .category_main .category_main_btn {
		font-size: 16px;
	}
	
	.content #texture .inner .place_content .category_content .category_content_btn {
		font-size: 13px;
	}
		
	.content #texture .inner .place_content .texture_content .texture_group .texture_box {
		padding: 0 7px 10px 7px;
	}
	
	.content #texture .inner .place_content .texture_content .texture_group .texture_box h5 {
		font-size: 16px;
	}
	
	.content #texture .inner .place_content .texture_content .texture_group .texture_box p {
		font-size: 13px;
	}
	
	.content .step {
		width: 40px;
	}
	
	.content .step button {
		height: 140px;
	}
	
	.content .step button.active::before {
		width: 30px;
    	height: 30px;
		top: -30px;
		background: radial-gradient(circle at 100% 0, transparent 30px, var(--gray_light) 31px);
	}
	
	.content .step button:not(:last-child).active::after {
		width: 30px;
    	height: 30px;
		bottom: -30px;
		background: radial-gradient(circle at 100% 100%, transparent 30px, var(--gray_light) 31px);
	}
	
	.content .step button p {
		font-size: 18px;
		line-height: 25px;
	}
		
	.filter_content .inner .filter_group .filter_item {
		font-size: 16px;
	}
	
	.filter_content .inner .filter_group .filter_item h2 {
		font-size: 16px;
	}
			
}


@media (max-width: 500px) {
	/********** 指南 **********/
	#guide_carousel_pad {display: none;}
	#guide_carousel_phone {
		display: block;
		width: 100%;
		height: 100%;
		background-color: #f3f2f0;
	}
	.carousel-inner {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	#guide_page #guide_carousel {
		width: 100%;
		height: 100%;
	}
	
	.carousel-control-prev-icon, .carousel-control-next-icon {
		width: 40px;
		height: 40px;
		background-size: 24px;
	}
	
	.guide_close {
		width: 130px;
		height: 46px;
		font-size: 18px;
		bottom: 26px;
		line-height: 46px;
	}
	
	.carousel-indicators {
		margin-bottom: 6px;
	}
	
	
	/********** 首頁 **********/
	#front_page .lang_dropdown::before {
		-webkit-transition: transform 0s;
		-webkit-transition: all 0s;
		-moz-transition: all 0s;
		-ms-transition: all 0s;
		transition: all 0s;
	}
	
	#front_page .lang_dropdown .options {
		transition: all 0s;
	}
	
	#front_page .front_content {
		top: 0;
		bottom: auto;
    	padding: 20px;
		height: 220px;
		width: 100%;
		flex-direction: row;
    	position: absolute;
		justify-content: space-between;
	}
	
	#front_page .front_content .inner {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
	}
	
	#front_page .front_content .enter_btn {display: none;}
	
	#front_page .front_content img {
		width: auto;
    	height: 85px;
	}
	
	#front_page .front_content .title {
		margin-left: 0;
		margin-top: 0;
	}
	
	#front_page .front_content .title h1 br {
		display: none;
	}
	
	#front_page .front_content .title h3 {
		margin-top: 0;
	}
	
	#front_page .front_content .title h2 {
		font-size: 30px;
	}
	
	#front_page .lang_dropdown {
		right: 30px;
	}
	
	#m_room {
		display: block;
		margin-top: 220px;
		width: 100%;
		background-color: var(--gray_light);
	}
	
	#m_room #m_room_carousel {
		height: 100%;
		width: 100%;
	}
	
	#m_room #m_room_carousel .carousel-item {
		height: 100%;
	}
	
	#m_room #m_room_carousel .carousel-item .inner {
		height: 100%;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	#m_room #m_room_carousel .carousel-item .inner .m_room_img {
		width: 300px;
		height: 300px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		box-shadow: 4px 4px 10px rgb(33 33 33 / 58%);
	}
	
	#front_page .front_content .title h1 {
		font-size: 29px;
	}
	
	#m_room #m_room_carousel .carousel-item .inner h2 {
		margin-top: 30px;
		font-weight: bold;
	}
	
	#front_page .front_content .title h2 br:nth-child(2) {
		display: none;
	}

		
	#m_room #m_room_carousel .carousel-control-next {
		left: calc(50% + 128px);
		top: calc(50% + 165px);
		transform: translate(-50%, -50%);
		width: 40px;
		height: 40px;
	}
	
	#m_room #m_room_carousel .carousel-control-prev {
		left: calc(50% - 128px);
		top: calc(50% + 165px);
		transform: translate(-50%, -50%);
		width: 40px;
		height: 40px;
	}
	
	#m_room #m_room_carousel .carousel-control-prev-icon, #m_room #m_room_carousel .carousel-control-next-icon {
		border: 0;
    	background-size: 30px;
	}
	
	/********** 房間 **********/
	.content .control .panel_close {display: none;}
	
	#main_page {
		display: flex;
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		flex-direction: column;
	}
	
	#main_page .top {
		position: relative;
		background-color: var(--gray_dark);
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px;
		width: 100%;
		top: 0;
		right: 0;
	}
	
	#main_page .top .logo {
		height: 62px;
	}
	
	#main_page .top .m_btn {
		display: flex;
    	align-items: center;
	}
	
	#main_page .note {
		top: 87px;
		font-size: 8px;
		bottom: auto;
		left: 10px;
		margin-left: 0;
	}
	
	#main_page .note br {
		display: block;
	}
	
	#main_page .top .info_btn {
		width: 40px;
		height: 40px;
		color: white;
	}
	
	#main_page .top .info_btn.active {
		color: var(--primary);
	}
	
	#main_page .top .m_download{
		width: 40px;
        height: 40px;
		background-color: transparent;
		margin-right: 15px;
		padding: 0;
	}
	
	#main_page .top .m_download img {
		width: 100%;
		height: 100%;
	}
	
	#main_page .download {
		display: none;
		width: 46px;
        height: 46px;
		top: 18px;
		right: 57px;
		background-color: transparent;
		bottom: auto;
	}
	
	body>a {
		position: absolute;
		z-index: 10;
	}
	
	#img_box {
		height: calc(var(--vh, 1vh)* 100 - 404px);
		width: 100%;
		top: 82px;
	}
	
	#img_box .img_place_btn button{
		min-width: 54px;
		height: 30px;
		line-height: 26px;
		font-size: 12px;
		white-space: nowrap;
	}
	
	#img_box .img_place_btn[data-room="1"] .cabinet_btn {
		left: 80%;
		top: calc(50% - 100vw*0.12);
	}

	#img_box .img_place_btn[data-room="1"] .wall_btn {
		left: 39.2%;
		top: calc(50% - 100vw*0.16);
	}

	#img_box .img_place_btn[data-room="1"] .island_btn {
		left: 46.2%;
		top: calc(50% + 100vw*0.12);
	}

	#img_box .img_place_btn[data-room="2"] .cabinet_btn {
		left: 59.1%;
		top: calc(50% - 100vw*0.08);
	}

	#img_box .img_place_btn[data-room="2"] .wall_btn {
		left: 27.2%;
		top: calc(50% - 100vw*0.13);
	}

	#img_box .img_place_btn[data-room="3"] .cabinet_btn {
		left: 75.2%;
		top: calc(50% - 100vw*0.05);
	}

	#img_box .img_place_btn[data-room="3"] .wall_btn {
		left: 39.2%;
		top: calc(50% - 100vw*0.10);
	}
	#img_box .img_place_btn[data-room="4"] .cabinet_btn {
		left: 81.5%;
		top: calc(50% - 100vw*0.07);
	}

	#img_box .img_place_btn[data-room="4"] .wall_btn {
		left: 29.2%;
		top: calc(50% - 100vw*0.10);
	}

	#img_box .img_place_btn[data-room="5"] .cabinet_btn {
		left: 26.7%;
		top: calc(50% + 100vw*0.19);
	}

	#img_box .img_place_btn[data-room="5"] .wall_btn {
		left: 39.7%;
		top: calc(50% - 100vw*0.07);
	}
	
	.content .step {display: none;}
		
	#main_page .content {
		height: auto;
    	flex: 1;
		flex-direction: column;
		position: relative;
		width: 100vw;
		bottom: 0;
		pointer-events: none;
	}
		
	.content .control {
		bottom: 0;
    	position: absolute;
		background-color: transparent;
		padding: 0;
		width: 100%;
		pointer-events: auto;
	}
	
	.tabcontent {
		width: 100%;
	}
	
	.content #texture .inner .top_box {
		flex-direction: column-reverse;
		display: flex;
		justify-content: flex-end;
		align-items: center;

	}
	
	.content #texture .inner .place_btn {
		width: 100%;
		transform: translateY(1px);
		margin: 0;
	}
	
	.content #texture .inner .place_btn button {
		flex: 1;
		height: 36px;
    	border-radius: 17px 17px 0 0;
		background-color: var(--gray_dark);
    	color: white;
		flex-direction: row;
		position: relative;
		margin: 0;
		width: auto;
		-webkit-transition: background-color 0ms;
		-ms-transition: background-color 0ms;
		transition: background-color 0ms;
	}
	
	.content #texture .inner .place_btn button svg {
		width: 20px;
		margin: 0 6px 0 0;
	}

	.content #texture .inner .place_btn button.selected {
		background-color: var(--gray_light);
		color: var(--brown);
	}
	
	.content #texture .inner .place_btn button.selected::before, .content #texture .inner .place_btn button.selected::after {
		content: "";
		position: absolute;
		width: 26px;
		height: 26px;
		z-index: 1;
    	pointer-events: none;
	}
	
	.content #texture .inner .place_btn button.selected::before {
		left: -25px;
		top: auto;
		bottom: -1px;
		background: radial-gradient(circle at -1px -1px, transparent 26px, var(--gray_light) 27px);
	}
	
	.content #texture .inner .place_btn button.selected::after {
		left: auto;
		right: -25px;
		bottom: -1px;
		background: radial-gradient(circle at 27px -1px, transparent 26px, var(--gray_light) 27px);
	}
	
	.content #texture .inner .header {
		width: 100%;
		background-color: var(--gray_light);
		padding: 10px 6px;
		margin: 0 10px;
		position: relative;
	}
	
	.content #texture .inner .header .filter_btn {
		padding: 0;
	}
	
	.content #texture .inner .place_content {
		flex-direction: column;
		background-color: var(--gray_light);
		margin: -1px;
		align-items: inherit;
	}
		
	.content #texture .inner .place_content .simple_filter {
		width: 100%;
    	margin: 0 0 10px 0;
	}
	
	.content #texture .inner .place_content .category_main .category_main_btn {
		font-size: 16px;
		margin: 0 6px 4px 6px;
	}
	
	.content #texture .inner .place_content .category_content .category_content_btn {
		flex: 0 0 33.3%;
	}
	
	.content #texture .inner .place_content .texture_content {
		margin-top: 0;
	}
	
	.content #texture .inner .place_content .texture_content .texture_group {
		display: flex;
		margin: 0;
		justify-content: center;
		flex-wrap: inherit;
		width: auto;
		min-height: 152px;
	}
	
	.content #texture .inner .place_content .texture_content .texture_group .texture_box {
		width: 90px;
		padding: 0 5px 5px 5px;
	}
		
	.content #texture .inner .place_content .texture_content .texture_group .texture_box h5 {
		font-size: 16px;
    	margin-top: 3px;
		flex-shrink: 0;
	}
	
	.content #texture .inner .place_content .texture_content .texture_group .texture_box p {
		font-size: 13px;
	}
				
	#main_page .step_action {
		display: flex;
		justify-content: flex-end;
		padding: 10px;
		background-color: var(--gray_light);
	}
	
	#main_page .step_action .icon_prev, #main_page .step_action .icon_next {
		background-color: var(--gray_mid);
		padding: 2px 12px;
		border-radius: 99px;
		display: flex;
		align-items: center;
		color: var(--brown);
	}
	
	#main_page .step_action .icon_prev svg, #main_page .step_action .icon_next svg {
		margin-right: 4px;
	}
	
	#main_page .step_action .icon_next {
		margin-left: 20px;
	}
	
	.filter_content {
		padding: 0;
	}
	
	.filter_content .btn-close {
		top: 20px;
    	right: 20px;
		font-size: 20px;
	}
	
	.filter_content .inner .title {
		width: 140px;
		height: 60px;
		line-height: 80px;
		font-size: 18px;
	}
	
	.filter_content .inner .filter_action {
		line-height: 40px;
		font-size: 16px;
	}
	
	.filter_content .inner .filter_action .clear, .filter_content .inner .filter_action .confirm {
		height: 40px;
		width: 110px;
	}
	
	.filter_content .inner .filter_group hr {display: none;}
	
	.filter_content .inner .filter_group .filter_item {
		flex-direction: column;
		border-color: rgb(125 130 132 / 80%);
		font-size: 16px;
	}
	
	.filter_content .inner .filter_group .filter_item .filter_box {
		flex: auto;
		font-size: 14px;
		width: 100%;
	}
	
	.filter_content .inner .filter_group .filter_item .filter_box br {display: none;}
	
	.filter_content .inner .filter_group .filter_item h2 {display: none;}
	
	.filter_content .inner .filter_group .filter_item .accordion-button {
		display: inline-flex;
		width: 100%;
		padding: 12px 5px;
		box-shadow: none;
		background-color: transparent;
		
	}
	
	.filter_content .inner .filter_group .filter_item .accordion-button:not(.collapsed) {
		color: var(--brown);
	}
	
	.accordion-button:not(.collapsed)::after {
		background-image: var(--bs-accordion-btn-icon);
	}
	
	.filter_content .inner .filter_group .filter_item .filter_opt {
		padding-left: 22px;
	}
	
	.filter_content .inner .filter_group .filter_item .filter_opt .checkmark {
		height: 16px;
    	width: 16px;
		top: 6px;
	}
	
	.filter_content .inner .filter_group .filter_item .filter_opt .checkmark:after {
		width: 10px;
    	height: 10px;
	}
	
	#m_about {
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: 1000;
		background-color: var(--gray_light);
		pointer-events: auto;
	}
	
	#m_about .inner {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		height: 100%;
	}
	
	#m_about .inner img {
		width: 70%;
	}

	#m_about .inner .intro, #m_about .inner .quality {
		width: 170px;
		height: 170px;
		border-radius: 20px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		font-size: 20px;
	}

	#m_about .inner .intro {
		background-color: var(--primary);
		color: white;
		margin-bottom: 20%;
	}

	#m_about .inner .quality {
		background-color: var(--gray_mid);	
		color: var(--brown);
	}
	
	.content #texture .inner .header #search {
		max-width: 113px;
		padding: 8px 10px 8px 35px;
		background-position: 9px 8px;
		background-size: 19px auto;
	}

	.content #texture .inner .place_content .brand_logo {display: none;}
	
	.header .brand_logo {
		display: flex;
    	align-items: center;
		height: 35px;
		position: absolute;
		left: 56%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
	
	.header .brand_logo img {
		height: 100%;
	}
	
	.header .brand_logo img:nth-child(2) {
		margin-left: 5px;
	}
	
	.header .brand_text {
		display: inline-block;
		font-size: 10px;
		line-height: 13px;
		margin-left: 5px;
		color: var(--brown);
		letter-spacing: 0;
	}
	
	
}

