style.bhouse.scss 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021
  1. @charset "UTF-8";
  2. :root {
  3. --main-color: #4c660a;
  4. --second-color: #808f4c;
  5. --logo-color: #78ad42;
  6. --dark-color: #656565;
  7. --dark-gray: #969696;
  8. --light-gray: #d6d6d8;
  9. --font-md: 15px;
  10. }
  11. * {
  12. margin: 0;
  13. padding: 0;
  14. -webkit-box-sizing: border-box;
  15. box-sizing: border-box;
  16. font-family: NSJP-300;
  17. }
  18. @font-face {
  19. font-family: NSJP-100;
  20. src: url(../font/NotoSansJP-Thin.otf);
  21. }
  22. @font-face {
  23. font-family: NSJP-300;
  24. src: url(../font/NotoSansJP-Light.otf);
  25. }
  26. @font-face {
  27. font-family: NSJP-400;
  28. src: url(../font/NotoSansJP-Regular.otf);
  29. }
  30. @font-face {
  31. font-family: NSJP-500;
  32. src: url(../font/NotoSansJP-Medium.otf);
  33. }
  34. @font-face {
  35. font-family: NSJP-700;
  36. src: url(../font/NotoSansJP-Bold.otf);
  37. }
  38. @font-face {
  39. font-family: NSJP-900;
  40. src: url(../font/NotoSansJP-Black.otf);
  41. }
  42. /* 共通樣式 start */
  43. a {
  44. text-decoration: none;
  45. }
  46. img {
  47. image-rendering: -webkit-optimize-contrast;
  48. }
  49. .bhouseweb_loc_content {
  50. width: 50%;
  51. margin: 0 auto;
  52. }
  53. @media screen and (max-width: 1200px) {
  54. .bhouseweb_loc_content {
  55. width: 70%;
  56. }
  57. }
  58. @media screen and (max-width: 767px) {
  59. .bhouseweb_loc_content {
  60. width: 95%;
  61. }
  62. }
  63. .line {
  64. display: block;
  65. margin: 50px 0;
  66. border-bottom: 1px solid var(--dark-gray);
  67. }
  68. .bhouseweb_loc_line {
  69. background: var(--dark-gray);
  70. height: 1px;
  71. opacity: 1 !important;
  72. }
  73. .bhouse_title {
  74. color: #4c660b;
  75. font-size: 1.2rem;
  76. font-weight: 600;
  77. letter-spacing: 3px;
  78. }
  79. @media screen and (max-width: 767px) {
  80. .bhouse_title {
  81. font-size: 1rem;
  82. }
  83. }
  84. .bhouse_subtitle,
  85. .bhouse_subtitle b {
  86. color: #4c660b;
  87. font-size: 1.2rem;
  88. letter-spacing: 3px;
  89. margin-bottom: 1rem;
  90. font-family: NSJP-700;
  91. }
  92. .likeSee__state {
  93. display: -webkit-box;
  94. display: -ms-flexbox;
  95. display: flex;
  96. -webkit-box-pack: justify;
  97. -ms-flex-pack: justify;
  98. justify-content: space-between;
  99. -webkit-box-align: center;
  100. -ms-flex-align: center;
  101. align-items: center;
  102. letter-spacing: 2px;
  103. }
  104. .likeSee__state img {
  105. width: 40px;
  106. }
  107. @media screen and (max-width: 767px) {
  108. .likeSee__state img {
  109. width: 30px;
  110. }
  111. }
  112. .mt-15 {
  113. margin-top: 15px;
  114. }
  115. .mt-30 {
  116. margin-top: 30px;
  117. }
  118. .my-80 {
  119. margin: 80px 0;
  120. }
  121. .my-50 {
  122. margin: 50px 0;
  123. }
  124. .mt-80 {
  125. margin-top: 80px;
  126. }
  127. .mb-80 {
  128. margin-bottom: 80px;
  129. }
  130. .readMore,
  131. .article_readMore {
  132. font-size: 0.9rem;
  133. font-weight: bold;
  134. color: #656565;
  135. cursor: pointer;
  136. letter-spacing: 1px;
  137. }
  138. .readMore:hover,
  139. .article_readMore:hover {
  140. opacity: 0.8;
  141. }
  142. // .qa-banner,
  143. // .blog-banner,
  144. // .brand-banner,
  145. // .store-banner,
  146. // .design-banner,
  147. // .news-page-banner,
  148. // .collection-banner,
  149. // .room-planner-banner {
  150. // padding: 175px 0;
  151. // background-size: cover;
  152. // background-position: center;
  153. // background-repeat: no-repeat;
  154. // image-rendering: -webkit-optimize-contrast;
  155. // }
  156. // @media (max-width: 991px) {
  157. // .qa-banner,
  158. // .blog-banner,
  159. // .store-banner,
  160. // .design-banner,
  161. // .room-planner-banner {
  162. // background-position: bottom -50px right 50%;
  163. // }
  164. // }
  165. /* 共通樣式 end */
  166. /* header start */
  167. .navbar {
  168. background-color: var(--second-color);
  169. }
  170. .navbar ul {
  171. white-space: nowrap;
  172. }
  173. .navbar .nav-item {
  174. padding: 13px 0;
  175. @media (max-width: 991px) {
  176. padding: 0;
  177. }
  178. &:hover {
  179. background-color: var(--main-color);
  180. .navbar-link {
  181. color: #fff;
  182. }
  183. }
  184. }
  185. .navbar .navbar-link {
  186. padding: 0 20px;
  187. color: var(--main-color);
  188. font-family: NSJP-500;
  189. }
  190. .navbar .navbar-link:hover {
  191. color: #ffffff;
  192. }
  193. .navbar .navbar-brand {
  194. display: none;
  195. @media (max-width: 991px) {
  196. margin: 0;
  197. }
  198. }
  199. .navbar .navbar-brand img {
  200. width: 70%;
  201. margin-left: 25%;
  202. object-fit: contain;
  203. }
  204. .navbar .close-btn {
  205. display: inline-block;
  206. position: relative;
  207. top: -5px;
  208. width: 23px;
  209. height: 2px;
  210. background: #ffffff;
  211. -webkit-transform: rotate(45deg);
  212. transform: rotate(45deg);
  213. }
  214. .navbar .close-btn::after {
  215. content: "";
  216. display: block;
  217. width: 23px;
  218. height: 2px;
  219. background: #ffffff;
  220. -webkit-transform: rotate(-90deg);
  221. transform: rotate(-90deg);
  222. }
  223. @media (max-width: 991px) {
  224. .navbar {
  225. padding: 0;
  226. top: 0;
  227. /* 收合時覆蓋內容 */
  228. width: 100%;
  229. position: absolute;
  230. z-index: 999;
  231. }
  232. .navbar .navbar-link {
  233. display: block;
  234. padding: 20px 0px;
  235. margin: 0 50px;
  236. color: #ffffff;
  237. border-bottom: 1px solid var(--dark-gray);
  238. }
  239. .navbar .navbar-link:hover {
  240. color: rgba(255, 255, 255, 0.6);
  241. }
  242. .navbar .navbar-logo {
  243. display: none;
  244. }
  245. .navbar .navbar-nav {
  246. height: 100vh;
  247. white-space: nowrap;
  248. border-top: 1px solid var(--dark-gray);
  249. }
  250. .navbar .navbar-nav li:last-child a {
  251. border: none;
  252. }
  253. .navbar .navbar-toggler {
  254. width: 30px;
  255. margin-right: 30px;
  256. border: none;
  257. }
  258. .navbar .navbar-toggler:focus,
  259. .navbar .navbar-toggler:active {
  260. outline: none !important;
  261. -webkit-box-shadow: none;
  262. box-shadow: none;
  263. }
  264. .navbar .navbar-brand {
  265. display: block;
  266. }
  267. }
  268. .news-link {
  269. display: flex;
  270. padding: 10px 0;
  271. background-color: #da831c;
  272. font-weight: bold;
  273. a {
  274. margin: auto;
  275. color: #fff;
  276. font-size: 14px;
  277. text-align: center;
  278. letter-spacing: 2px;
  279. &:hover {
  280. opacity: 0.8;
  281. }
  282. }
  283. @media (max-width: 991px) {
  284. margin-top: 80px;
  285. }
  286. }
  287. /* header end */
  288. /* slick start */
  289. .slick-dots {
  290. bottom: 115px;
  291. }
  292. .slick-dots li button:before {
  293. opacity: 1;
  294. content: "●";
  295. color: #ffffff;
  296. font-size: 18px;
  297. }
  298. .slick-dots li.slick-active button:before {
  299. opacity: 1;
  300. color: var(--second-color);
  301. }
  302. .slider-item {
  303. position: relative;
  304. }
  305. .slider-item img {
  306. width: 100%;
  307. height: 700px;
  308. -o-object-fit: cover;
  309. object-fit: cover;
  310. @media (max-width: 991px) {
  311. height: auto;
  312. }
  313. }
  314. .slider-item div {
  315. padding: 20px 20vw;
  316. position: absolute;
  317. left: 0;
  318. right: 0;
  319. bottom: 0px;
  320. background-color: rgba(128, 143, 76, 0.8);
  321. text-align: end;
  322. }
  323. .slider-item p {
  324. margin: 0;
  325. color: #ffffff;
  326. font-size: 22px;
  327. font-family: NSJP-500;
  328. letter-spacing: 2px;
  329. @media (max-width: 575px) {
  330. font-size: 17px;
  331. }
  332. }
  333. .slider-item p:last-child {
  334. font-size: 18px;
  335. @media (max-width: 575px) {
  336. font-size: 14px;
  337. }
  338. }
  339. @media (max-width: 767px) {
  340. .slider-item div {
  341. padding: 20px 5vw;
  342. }
  343. }
  344. @media (max-width: 575px) {
  345. .slider-item div {
  346. padding: 20px 2vw 20px 0;
  347. }
  348. }
  349. /* slick end */
  350. /* footer start */
  351. .footer {
  352. padding: 0 18vw;
  353. font-size: 15px;
  354. background-color: var(--light-gray);
  355. }
  356. .footer img {
  357. display: none;
  358. margin: 50px;
  359. }
  360. .footer ul {
  361. padding: 0;
  362. list-style: none;
  363. font-weight: bold;
  364. margin-bottom: 30px;
  365. }
  366. .footer .row {
  367. padding: 60px 0;
  368. }
  369. .footer .list {
  370. display: -webkit-box;
  371. display: -ms-flexbox;
  372. display: flex;
  373. }
  374. .footer .list li {
  375. padding: 5px 0;
  376. }
  377. .footer .title a {
  378. font-size: 15px;
  379. color: var(--main-color);
  380. font-family: NSJP-500;
  381. font-weight: bold;
  382. letter-spacing: 1px;
  383. }
  384. .footer .list li a,
  385. .footer .copyright,
  386. .footer .copyright a {
  387. color: #68686b;
  388. font-weight: bold;
  389. font-family: NSJP-400;
  390. letter-spacing: 1px;
  391. }
  392. .footer .mobile-list {
  393. display: none;
  394. border-top: 1px solid var(--dark-gray);
  395. padding-top: 10px;
  396. margin-bottom: 30px;
  397. }
  398. .footer .mobile-list li {
  399. margin: 20px 0 20px 50px;
  400. }
  401. .footer .mobile-list a {
  402. font-size: 20px;
  403. color: var(--main-color);
  404. font-family: NSJP-400;
  405. }
  406. .footer .mobile-list a:hover {
  407. opacity: 0.8;
  408. }
  409. .footer .copyright {
  410. padding: 20px 0;
  411. border-top: 1px solid var(--dark-gray);
  412. }
  413. .footer .copyright a {
  414. padding: 0 5px;
  415. }
  416. .footer .copyright span {
  417. position: relative;
  418. top: -1px;
  419. }
  420. @media (max-width: 1200px) {
  421. .footer {
  422. padding: 0 8vw;
  423. }
  424. }
  425. @media (max-width: 767px) {
  426. .footer {
  427. padding: 0 1.5vw;
  428. }
  429. .footer img {
  430. display: inline-block;
  431. }
  432. .footer .list {
  433. display: none;
  434. }
  435. .footer .mobile-list {
  436. display: block;
  437. }
  438. }
  439. /* footer end */
  440. /* home start */
  441. .home-content {
  442. width: 50%;
  443. margin: 0 auto;
  444. }
  445. .home-content a:hover p {
  446. opacity: 0.8;
  447. }
  448. .home-content img {
  449. max-width: 500px;
  450. width: 100%;
  451. }
  452. .home-content .bottom-box {
  453. position: relative;
  454. }
  455. .home-content .bottom-box div {
  456. position: absolute;
  457. bottom: 0;
  458. right: 0;
  459. left: 0;
  460. background: rgba(128, 143, 76, 0.6);
  461. padding: 20px 50px;
  462. }
  463. .home-content .bottom-box p {
  464. margin: auto;
  465. text-align: right;
  466. color: #fff;
  467. font-family: NSJP-700;
  468. letter-spacing: 2px;
  469. }
  470. .home-content .bottom-box p:first-child {
  471. font-size: 20px;
  472. }
  473. .home-content .bottom-box p:last-child {
  474. font-size: 16px;
  475. padding-top: 10px;
  476. }
  477. @media (max-width: 1200px) {
  478. .home-content {
  479. width: 70%;
  480. }
  481. }
  482. @media (max-width: 767px) {
  483. .home-content {
  484. width: 98.5%;
  485. }
  486. .home-content img {
  487. max-width: 100%;
  488. width: 100%;
  489. }
  490. }
  491. .home-content {
  492. img {
  493. height: 100%;
  494. }
  495. .bg-img {
  496. width: 100%;
  497. padding: 40% 0;
  498. background-position: center;
  499. background-size: cover;
  500. transition: all 0.5s;
  501. }
  502. .bg-portfolio {
  503. .bg-img {
  504. background-image: url(/img/home/X-1-02.png);
  505. }
  506. }
  507. .bg-serve {
  508. .bg-img {
  509. background-image: url(/img/home/X-1-03.png);
  510. }
  511. }
  512. .bg-qa {
  513. .bg-img {
  514. background-image: url(/img/home/X-1-04.png);
  515. }
  516. }
  517. .bg-store {
  518. .bg-img {
  519. background-image: url(/img/home/X-1-05.png);
  520. }
  521. }
  522. }
  523. .reserve {
  524. position: fixed;
  525. bottom: 5vw;
  526. right: 5vw;
  527. }
  528. .reserve img {
  529. width: 130px;
  530. @media (max-width: 991px) {
  531. width: 100px;
  532. }
  533. }
  534. /* home end */
  535. /* 服務常見QA-frequently_asked_questions start */
  536. .accordion {
  537. padding: 200px 25% 40px;
  538. border-bottom: 1px solid var(--dark-gray);
  539. }
  540. .accordion .accordion-item {
  541. padding: 10px 0;
  542. border-width: 2px;
  543. border-color: var(--second-color);
  544. }
  545. .accordion .accordion-item .title {
  546. margin: auto;
  547. font-size: 30px;
  548. font-weight: bold;
  549. letter-spacing: 3px;
  550. color: var(--second-color);
  551. }
  552. .accordion .accordion-button,
  553. .accordion .accordion-button p {
  554. font-size: 14px;
  555. font-family: NSJP-500;
  556. letter-spacing: 1px;
  557. background: transparent !important;
  558. }
  559. .accordion .accordion-button:not(.collapsed) {
  560. color: #000000;
  561. -webkit-box-shadow: none;
  562. box-shadow: none;
  563. }
  564. .accordion .accordion-button:not(.collapsed)::after {
  565. background-image: url(/img/field_q6_h@2x.png);
  566. }
  567. .accordion .accordion-button:focus,
  568. .accordion .accordion-button:active {
  569. outline: none !important;
  570. -webkit-box-shadow: none;
  571. box-shadow: none;
  572. border-color: var(--second-color);
  573. }
  574. .accordion .accordion-button::after {
  575. width: 1.8rem;
  576. height: 1.8rem;
  577. background-size: 2rem;
  578. background-image: url(/img/field_q6_h@2x.png);
  579. image-rendering: -webkit-optimize-contrast;
  580. }
  581. .accordion .accordion-button span {
  582. position: absolute;
  583. top: -30px;
  584. left: -30px;
  585. }
  586. .accordion .accordion-button span img {
  587. width: 60%;
  588. }
  589. .accordion .accordion-body {
  590. font-size: 14px;
  591. line-height: 28px;
  592. font-family: NSJP-900;
  593. letter-spacing: 1px;
  594. }
  595. .accordion .botder-item {
  596. margin-bottom: 10px;
  597. border-radius: 0;
  598. border: 2px solid var(--second-color);
  599. line-height: 28px;
  600. }
  601. .botder-item::after {
  602. margin-right: 20px;
  603. }
  604. .accordion .subtitle {
  605. display: none;
  606. padding: 20px 0 0;
  607. font-size: 14px;
  608. text-align: center;
  609. font-weight: bold;
  610. color: var(--dark-color);
  611. }
  612. @media (max-width: 1200px) {
  613. .accordion {
  614. padding: 185px 15% 40px;
  615. }
  616. }
  617. @media (max-width: 767px) {
  618. .accordion {
  619. padding: 150px 5% 40px;
  620. }
  621. .accordion .botder-item {
  622. padding: 0;
  623. }
  624. .accordion .botder-item p {
  625. padding: 20px;
  626. margin: 5px 0;
  627. font-size: 16px;
  628. }
  629. .accordion .mobile-body {
  630. font-size: 16px;
  631. }
  632. .accordion .mobile-body,
  633. .accordion .accordion-body {
  634. font-size: 16px;
  635. line-height: 30px;
  636. }
  637. .accordion .accordion-item {
  638. padding: 15px 0;
  639. }
  640. .accordion .subtitle {
  641. display: block;
  642. }
  643. }
  644. .qa-navs {
  645. padding: 20px 0;
  646. }
  647. .qa-navs .home-content {
  648. display: -webkit-box;
  649. display: -ms-flexbox;
  650. display: flex;
  651. }
  652. @media (max-width: 767px) {
  653. .qa-navs {
  654. padding: 40px 0;
  655. }
  656. }
  657. /* 服務常見QA-frequently_asked_questions end */
  658. /* Banner start */
  659. .bhouseweb_loc_banner {
  660. position: relative;
  661. }
  662. @media screen and (max-width: 991px) {
  663. .bhouseweb_loc_banner {
  664. padding-top: 80px;
  665. }
  666. }
  667. @media screen and (max-width: 991px) {
  668. .bhouseweb_loc_banner .banner-img {
  669. // height: 150px;
  670. -o-object-fit: cover;
  671. object-fit: cover;
  672. }
  673. }
  674. .bt_container {
  675. transition: all 0.3s;
  676. }
  677. .bt_container_margin {
  678. margin-bottom: -180px;
  679. @media screen and (max-width: 767px) {
  680. margin-bottom: -150px;
  681. }
  682. }
  683. .bt_slogan {
  684. position: relative;
  685. right: 80px;
  686. bottom: 24px;
  687. width: 90px;
  688. background: rgba(76, 102, 11, 0.6);
  689. color: #fff;
  690. cursor: pointer;
  691. display: none;
  692. }
  693. .bt_slogan img {
  694. -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(104%) contrast(102%);
  695. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(104%) contrast(102%);
  696. }
  697. @media screen and (max-width: 767px) {
  698. .bt_slogan {
  699. right: 5%;
  700. width: 80px;
  701. }
  702. }
  703. @media screen and (max-width: 575px) {
  704. .bt_slogan {
  705. right: 3%;
  706. width: 50px;
  707. }
  708. }
  709. .bt_slogan_portfolio {
  710. width: 350px;
  711. -o-object-fit: cover;
  712. object-fit: cover;
  713. position: absolute;
  714. right: 260px;
  715. bottom: -175px;
  716. cursor: pointer;
  717. }
  718. @media screen and (max-width: 991px) {
  719. .bt_slogan_portfolio {
  720. width: 300px;
  721. right: 250px;
  722. height: 200px;
  723. }
  724. }
  725. @media screen and (max-width: 767px) {
  726. .bt_slogan_portfolio {
  727. right: 150px;
  728. bottom: -140px;
  729. }
  730. }
  731. @media screen and (max-width: 575px) {
  732. .bt_slogan_portfolio {
  733. right: 75px;
  734. width: 250px;
  735. height: 180px;
  736. }
  737. }
  738. .bhouseweb_loc_banner .bt_slogan img {
  739. -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(104%) contrast(102%);
  740. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(104%) contrast(102%);
  741. }
  742. /* Banner end */
  743. /* 成家故事作品集-collection start */
  744. .collection_banner_text_box{
  745. padding: 20px 20vw;
  746. position: absolute;
  747. left: 0;
  748. right: 0;
  749. bottom: 0px;
  750. background-color: rgba(128, 143, 76, 0.8);
  751. text-align: end;
  752. @media screen and (max-width: 767px) {
  753. padding: 20px 2vw 20px 0;
  754. }
  755. p{
  756. margin: 0;
  757. color: #ffffff;
  758. font-size: 22px;
  759. font-family: NSJP-500;
  760. letter-spacing: 2px;
  761. @media screen and (max-width: 767px) {
  762. font-size: 17px;
  763. }
  764. }
  765. p:last-child {
  766. font-size: 18px;
  767. @media (max-width: 575px) {
  768. font-size: 14px;
  769. }
  770. }
  771. }
  772. .style_house_banner{
  773. position: relative;
  774. }
  775. .select {
  776. // text-decoration: underline !important;
  777. border-bottom: 1.5px solid #565656 !important;
  778. }
  779. .bhouseweb_item_type {
  780. cursor: pointer;
  781. }
  782. .readMore,
  783. .article_readMore {
  784. margin-top: 30px;
  785. }
  786. .title_underline {
  787. border-bottom: 2px #fff solid;
  788. padding-bottom: 5px;
  789. }
  790. .bhouseweb_loc_banner {
  791. position: relative;
  792. }
  793. @media screen and (max-width: 991px) {
  794. .bhouseweb_loc_banner {
  795. padding-top: 80px;
  796. }
  797. }
  798. @media screen and (max-width: 991px) {
  799. .bhouseweb_loc_banner .banner-img {
  800. height: 200px;
  801. -o-object-fit: cover;
  802. object-fit: cover;
  803. }
  804. }
  805. .bhouseweb_loc_sec01 {
  806. width: auto;
  807. margin-top: 180px;
  808. color: #656565;
  809. font-size: 0.9rem;
  810. }
  811. @media screen and (max-width: 767px) {
  812. .bhouseweb_loc_sec01 {
  813. // overflow-x: scroll;
  814. width: auto;
  815. margin-top: 150px;
  816. overflow-x: auto;
  817. }
  818. }
  819. .bhouseweb_loc_sec01 .bhouseweb_loc_type,
  820. .bhouseweb_loc_sec01 .bhouseweb_loc_pattern,
  821. .bhouseweb_loc_sec01 .bhouseweb_loc_budget,
  822. .bhouseweb_loc_sec01 .bhouseweb_loc_size {
  823. margin: 10px;
  824. }
  825. .bhouseweb_loc_type{
  826. width: auto;
  827. white-space: nowrap;
  828. @media screen and (max-width: 767px) {
  829. width: auto;
  830. white-space: nowrap;
  831. }
  832. }
  833. .bhouseweb_item_type{
  834. @media screen and (max-width: 767px) {
  835. display: inline-block;
  836. }
  837. }
  838. @media screen and (max-width: 767px) {
  839. .bhouseweb_loc_sec01 .bhouseweb_loc_type,
  840. .bhouseweb_loc_sec01 .bhouseweb_loc_pattern,
  841. .bhouseweb_loc_sec01 .bhouseweb_loc_budget,
  842. .bhouseweb_loc_sec01 .bhouseweb_loc_size {
  843. margin: 5px;
  844. }
  845. }
  846. .bhouseweb_loc_sec01 .bhouseweb_loc_type a,
  847. .bhouseweb_loc_sec01 .bhouseweb_loc_pattern a,
  848. .bhouseweb_loc_sec01 .bhouseweb_loc_budget a,
  849. .bhouseweb_loc_sec01 .bhouseweb_loc_size a {
  850. text-decoration: none;
  851. color: #565656;
  852. padding: 3px 15px;
  853. }
  854. @media screen and (max-width: 767px) {
  855. .bhouseweb_loc_sec01 .bhouseweb_loc_type a,
  856. .bhouseweb_loc_sec01 .bhouseweb_loc_pattern a,
  857. .bhouseweb_loc_sec01 .bhouseweb_loc_budget a,
  858. .bhouseweb_loc_sec01 .bhouseweb_loc_size a {
  859. padding: 3px 5px;
  860. }
  861. }
  862. .bhouseweb_loc_search_box {
  863. width: 100%;
  864. background: #565656;
  865. }
  866. .bhouseweb_loc_search_box .bhouseweb_search_img {
  867. width: 20%;
  868. font-size: 24px;
  869. color: #fff;
  870. padding-left: 30px;
  871. }
  872. @media screen and (max-width: 767px) {
  873. .bhouseweb_loc_search_box .bhouseweb_search_img {
  874. padding-left: 10px;
  875. width: 15%;
  876. font-size: 16px;
  877. }
  878. }
  879. .bhouseweb_loc_search_box .bhouseweb_search_form {
  880. padding: 0.35rem 0.35rem;
  881. }
  882. .bhouseweb_loc_search_box #bhouseweb_search {
  883. width: 70%;
  884. background: #565656 !important;
  885. border: none;
  886. font-size: 14.4px;
  887. font-weight: 400;
  888. line-height: 1.5;
  889. outline: none;
  890. color: #bcbcbc;
  891. }
  892. @media screen and (max-width: 767px) {
  893. .bhouseweb_loc_search_box #bhouseweb_search {
  894. width: 86%;
  895. font-size: 14.4px;
  896. }
  897. }
  898. .bhouseweb_loc_search_box ::-webkit-input-placeholder {
  899. /* Chrome, Safari */
  900. color: #bcbcbc;
  901. }
  902. .bhouseweb_loc_search_box :-ms-input-placeholder {
  903. color: #bcbcbc;
  904. }
  905. .bhouseweb_loc_search_box ::-ms-input-placeholder {
  906. color: #bcbcbc;
  907. }
  908. .bhouseweb_loc_search_box ::placeholder {
  909. color: #bcbcbc;
  910. }
  911. .bhouseweb_loc_search_box :-ms-input-placeholder {
  912. /* IE 10+ */
  913. color: #bcbcbc;
  914. }
  915. .bhouseweb_loc_search_box ::-moz-placeholder {
  916. /* Firefox 19+ */
  917. color: #bcbcbc;
  918. }
  919. .bhouseweb_loc_sec02 {
  920. height: 170vh;
  921. overflow: hidden;
  922. }
  923. .bhouseweb_loc_sec02_card {
  924. background: var(--logo-color);
  925. padding: 0px 0px 10px 10px;
  926. position: relative;
  927. -webkit-transition: 0.5s ease-in-out;
  928. transition: 0.5s ease-in-out;
  929. cursor: pointer;
  930. overflow: hidden;
  931. height: 300px;
  932. }
  933. @media screen and (max-width: 767px) {
  934. .bhouseweb_loc_sec02_card {
  935. height: 300px;
  936. padding: 0;
  937. }
  938. }
  939. .bhouseweb_loc_sec02_card a {
  940. text-decoration: none;
  941. }
  942. .bhouseweb_loc_sec02_card .sec02-p-dec {
  943. color: #fff;
  944. text-align: center;
  945. font-size: 14px;
  946. font-weight: 900;
  947. -webkit-transition: 0.5s;
  948. transition: 0.5s;
  949. letter-spacing: 1px;
  950. }
  951. @media screen and (min-width: 1025px) {
  952. .bhouseweb_loc_sec02_card .sec02-p-dec {
  953. width: 100%;
  954. position: absolute;
  955. top: 30%;
  956. left: 0px;
  957. font-size: 16px;
  958. opacity: 0;
  959. }
  960. }
  961. @media screen and (max-width: 767px) {
  962. .bhouseweb_loc_sec02_card .sec02-p-dec {
  963. display: none;
  964. }
  965. }
  966. .bhouseweb_loc_sec02_card img {
  967. width: 100%;
  968. height: 100%;
  969. -o-object-fit: cover;
  970. object-fit: cover;
  971. }
  972. @media screen and (max-width: 767px) {
  973. .bhouseweb_loc_sec02_card img {
  974. height: 300px;
  975. -o-object-fit: cover;
  976. object-fit: cover;
  977. }
  978. }
  979. .bhouseweb_loc_sec02_card:hover .sec02-p-dec,
  980. .bhouseweb_loc_sec02_card:hover .sec03-p-dec {
  981. opacity: 1;
  982. }
  983. .bhouseweb_loc_sec02_card:hover img {
  984. opacity: 0.2;
  985. }
  986. /* 成家故事作品集-collection end */
  987. /* 成家故事作品集內頁-simple_korean_style_hous start */
  988. .bg-portfolio {
  989. .bg-img {
  990. background-image: url(/img/home/X-1-02.png);
  991. }
  992. }
  993. .bg-serve {
  994. .bg-img {
  995. background-image: url(/img/home/X-1-03.png);
  996. }
  997. }
  998. .bg-qa {
  999. .bg-img {
  1000. background-image: url(/img/home/X-1-04.png);
  1001. }
  1002. }
  1003. .bg-store {
  1004. .bg-img {
  1005. background-image: url(/img/home/X-1-05.png);
  1006. }
  1007. }
  1008. .icon-box img {
  1009. margin-top: 0px;
  1010. width: 35px;
  1011. }
  1012. .style_house_ads {
  1013. padding: 15px;
  1014. background: #fff;
  1015. <<<<<<< HEAD
  1016. @media screen and (max-width: 991px) {
  1017. padding-top: 13px;
  1018. }
  1019. =======
  1020. // @media screen and (max-width: 991px) {
  1021. // padding-top: 100px;
  1022. // }
  1023. >>>>>>> 907169339213b96cd772af4791d1652aba9d51f3
  1024. }
  1025. .style_house_ads .style_house_text {
  1026. width: 80.5%;
  1027. margin: 0 auto;
  1028. }
  1029. @media screen and (max-width: 767px) {
  1030. .style_house_ads .style_house_text {
  1031. width: 95%;
  1032. }
  1033. }
  1034. .style_house_line {
  1035. background: #000;
  1036. height: 1px;
  1037. opacity: 1 !important;
  1038. }
  1039. .title_underline {
  1040. border-bottom: 2px #fff solid;
  1041. padding-bottom: 5px;
  1042. }
  1043. .style_house_banner img {
  1044. width: 100%;
  1045. height: 80vh;
  1046. -o-object-fit: cover;
  1047. object-fit: cover;
  1048. }
  1049. @media screen and (max-width: 767px) {
  1050. .style_house_banner img {
  1051. height: 200px;
  1052. }
  1053. }
  1054. .style_house_title {
  1055. color: #4c660b;
  1056. font-size: 1.4rem;
  1057. letter-spacing: 3px;
  1058. margin-bottom: 25px;
  1059. font-family: NSJP-700;
  1060. }
  1061. @media screen and (max-width: 767px) {
  1062. .style_house_title {
  1063. font-size: 1rem;
  1064. }
  1065. }
  1066. .style_house_subtitle {
  1067. color: #4c660b;
  1068. font-size: 1.2rem;
  1069. font-weight: 600;
  1070. letter-spacing: 3px;
  1071. font-family: NSJP-700;
  1072. }
  1073. .style_house_content {
  1074. width: 50%;
  1075. margin: 0 auto;
  1076. }
  1077. @media screen and (max-width: 767px) {
  1078. .style_house_content {
  1079. width: 95%;
  1080. }
  1081. }
  1082. .style_house_sec01 {
  1083. margin-top: 100px;
  1084. text-align: center;
  1085. margin-bottom: 50px;
  1086. }
  1087. @media screen and (max-width: 767px) {
  1088. .style_house_sec01 {
  1089. margin-top: 30px;
  1090. }
  1091. }
  1092. .style_house_sec01 h3 {
  1093. font-size: 1.5rem;
  1094. font-family: NSJP-700;
  1095. letter-spacing: 2px;
  1096. }
  1097. @media screen and (max-width: 767px) {
  1098. .style_house_sec01 h3 {
  1099. font-size: 1rem;
  1100. }
  1101. }
  1102. .style_house_sec01 p {
  1103. color: #808e4c;
  1104. font-family: NSJP-500;
  1105. letter-spacing: 2px;
  1106. }
  1107. @media screen and (max-width: 767px) {
  1108. .style_house_sec01 p {
  1109. font-size: 0.6rem;
  1110. }
  1111. }
  1112. .style_house_sec01 .style_house_sec01_box {
  1113. margin-top: 30px;
  1114. }
  1115. @media screen and (max-width: 767px) {
  1116. .style_house_sec01 .style_house_sec01_box {
  1117. margin-top: 10px;
  1118. }
  1119. }
  1120. .style_house_sec01 .style_house_sec01_box-1 {
  1121. width: 71%;
  1122. margin-left: 20%;
  1123. @media screen and (max-width: 767px) {
  1124. margin-left: 4%;
  1125. width: 90%;
  1126. }
  1127. }
  1128. .style_house_sec02 {
  1129. margin-top: 50px;
  1130. margin-bottom: 50px;
  1131. }
  1132. .style_house_sec02 .style_house_sec02_content {
  1133. margin-top: 50px;
  1134. }
  1135. @media screen and (max-width: 767px) {
  1136. .style_house_sec02 .style_house_sec02_content {
  1137. margin-top: 10px;
  1138. }
  1139. }
  1140. .style_house_sec02 .style_house_sec02_slide {
  1141. margin-top: 30px;
  1142. }
  1143. .style_house_sec02 .style_house_sec02_slide .slide_item_text {
  1144. background: rgba(76, 102, 11, 1);
  1145. padding: 15px;
  1146. // -webkit-transform: translateY(-72px);
  1147. // transform: translateY(-86px);
  1148. }
  1149. // @media screen and (max-width: 767px) {
  1150. // .style_house_sec02 .style_house_sec02_slide .slide_item_text {
  1151. // -webkit-transform: translateY(-65px);
  1152. // transform: translateY(-65px);
  1153. // }
  1154. // }
  1155. .style_house_sec02 .style_house_sec02_slide .slide_item_text p {
  1156. color: #fff;
  1157. padding-left: 30px;
  1158. }
  1159. .style_house_sec02 p {
  1160. margin-bottom: 0;
  1161. font-size: 14px;
  1162. line-height: 28px;
  1163. letter-spacing: 2px;
  1164. font-family: NSJP-500;
  1165. }
  1166. @media screen and (max-width: 767px) {
  1167. .style_house_sec02 p {
  1168. font-size: 1rem;
  1169. }
  1170. }
  1171. .style_house_sec02 .style_house_sec02_slide_list {
  1172. margin-top: -50px;
  1173. }
  1174. .style_house_sec02 .style_house_sec02_slide_list .sec02_slide_item {
  1175. padding: 5px;
  1176. }
  1177. .style_house_sec02_slide .slick-dots {
  1178. display: none !important;
  1179. }
  1180. .style_house_sec03 {
  1181. letter-spacing: 1px;
  1182. }
  1183. .style_house_sec03 .table1 {
  1184. margin-top: 30px;
  1185. margin-bottom: 50px;
  1186. font-weight: 600;
  1187. border-color: grey;
  1188. border-spacing: 2px;
  1189. }
  1190. .style_house_sec03 .table1 th {
  1191. font-weight: 600;
  1192. width: 15%;
  1193. padding-left: 15px;
  1194. padding-top: 10px;
  1195. font-family: NSJP-400;
  1196. }
  1197. @media screen and (max-width: 767px) {
  1198. .style_house_sec03 .table1 th {
  1199. width: 15%;
  1200. font-size: 1rem;
  1201. }
  1202. }
  1203. .style_house_sec03 .table1 td {
  1204. font-weight: 600;
  1205. padding: 15px;
  1206. }
  1207. .style_house_sec03 .table1 td p{
  1208. font-weight: 600;
  1209. font-family: NSJP-400 !important;
  1210. }
  1211. @media screen and (max-width: 767px) {
  1212. .style_house_sec03 .table1 td {
  1213. padding: 5px;
  1214. font-size: 1rem;
  1215. font-family: NSJP-500 !important;
  1216. }
  1217. }
  1218. .style_house_sec03 .table2 {
  1219. margin-top: 30px;
  1220. margin-bottom: 50px;
  1221. font-weight: 600;
  1222. border-color: grey;
  1223. border-spacing: 2px;
  1224. }
  1225. .style_house_sec03 .table2 th {
  1226. width: 15%;
  1227. padding-left: 15px;
  1228. padding-top: 10px;
  1229. font-family: NSJP-500 !important;
  1230. }
  1231. .style_house_sec03 .table2 td{
  1232. font-family: NSJP-400 ;
  1233. }
  1234. @media screen and (max-width: 767px) {
  1235. .style_house_sec03 .table2 th {
  1236. width: 25%;
  1237. font-size:1rem;
  1238. font-family: NSJP-500 !important;
  1239. }
  1240. }
  1241. .style_house_sec03 .table2 td p {
  1242. margin-bottom: 0;
  1243. line-height: 2;
  1244. font-weight: 600;
  1245. font-family: NSJP-500 !important;
  1246. }
  1247. @media screen and (max-width: 767px) {
  1248. .style_house_sec03 .table2 td p {
  1249. font-size: 1rem;
  1250. }
  1251. }
  1252. .style_house_sec04 {
  1253. margin-top: 50px;
  1254. margin-bottom: 100px;
  1255. }
  1256. @media screen and (max-width: 767px) {
  1257. .style_house_sec04 {
  1258. margin-top: 30px;
  1259. }
  1260. }
  1261. .style_house_sec04 p {
  1262. font-family: NSJP-500;
  1263. }
  1264. .style_house_sec05 {
  1265. margin-top: 50px;
  1266. margin-bottom: 100px;
  1267. }
  1268. @media screen and (max-width: 767px) {
  1269. .style_house_sec05 {
  1270. margin-bottom: 30px;
  1271. margin-top: 30px;
  1272. }
  1273. }
  1274. .style_house_sec05_box a {
  1275. text-decoration: none;
  1276. padding: 8px 5px;
  1277. background: #808e4c;
  1278. color: #fff;
  1279. margin-right: 5px;
  1280. -webkit-transition: 0.3s;
  1281. transition: 0.3s;
  1282. border: 1px solid #808e4c;
  1283. }
  1284. .style_house_sec05_box a:hover {
  1285. border: 1px solid #808e4c;
  1286. background: #fff;
  1287. color: #808e4c;
  1288. }
  1289. .style_house_sec06 {
  1290. margin: 30px 0;
  1291. }
  1292. /* 成家故事作品集內頁-simple_korean_style_hous end */
  1293. /* 成家設計服務-room_planner start */
  1294. .room-planner {
  1295. display: -webkit-box;
  1296. display: -ms-flexbox;
  1297. display: flex;
  1298. -webkit-box-orient: vertical;
  1299. -webkit-box-direction: normal;
  1300. -ms-flex-direction: column;
  1301. flex-direction: column;
  1302. }
  1303. .room-planner .row {
  1304. -webkit-box-align: center;
  1305. -ms-flex-align: center;
  1306. align-items: center;
  1307. -webkit-box-pack: center;
  1308. -ms-flex-pack: center;
  1309. justify-content: center;
  1310. -ms-flex-wrap: nowrap;
  1311. flex-wrap: nowrap;
  1312. }
  1313. .room-planner .sub-banner {
  1314. margin: 210px auto 50px;
  1315. @media screen and (max-width: 767px) {
  1316. margin: 160px auto 50px;
  1317. }
  1318. }
  1319. .room-planner .sub-banner img {
  1320. width: 100%;
  1321. max-width: 600px;
  1322. padding: 0 20px;
  1323. }
  1324. .room-planner .room-planner-images {
  1325. padding: 0 70px 100px;
  1326. position: relative;
  1327. }
  1328. .room-planner .room-planner-images .row {
  1329. padding: 50px 0;
  1330. }
  1331. .room-planner .room-planner-images .img-box {
  1332. border-radius: 40px;
  1333. background-color: #99a56f;
  1334. border: 3px solid var(--second-color);
  1335. background-size: cover;
  1336. background-position: center;
  1337. background-repeat: no-repeat;
  1338. }
  1339. .room-planner .room-planner-images .bg-item {
  1340. max-width: 830px;
  1341. height: 270px;
  1342. }
  1343. .room-planner .room-planner-images .step-01 {
  1344. background-image: url(/img/room_planner/step1.webp);
  1345. }
  1346. .room-planner .room-planner-images .step-02 {
  1347. background-image: url(/img/room_planner/step2.webp);
  1348. }
  1349. .room-planner .room-planner-images .step-03 {
  1350. background-position: right;
  1351. background-image: url(/img/room_planner/step3.webp);
  1352. }
  1353. .room-planner .room-planner-images .step-04 {
  1354. background-image: url(/img/room_planner/step4.webp);
  1355. }
  1356. .room-planner .room-planner-images .step-06 {
  1357. background-image: url(/img/room_planner/step6.webp);
  1358. }
  1359. .room-planner .room-planner-images .step-09 {
  1360. background-image: url(/img/room_planner/step9.webp);
  1361. }
  1362. .room-planner .room-planner-images .line-1,
  1363. .room-planner .room-planner-images .line-2,
  1364. .room-planner .room-planner-images .line-3,
  1365. .room-planner .room-planner-images .line-4,
  1366. .room-planner .room-planner-images .line-5 {
  1367. position: absolute;
  1368. z-index: -1;
  1369. }
  1370. .room-planner .room-planner-images .line-1 {
  1371. top: -50px;
  1372. width: 580px;
  1373. height: 200px;
  1374. border-left: 3px solid var(--second-color);
  1375. }
  1376. .room-planner .room-planner-images .line-2 {
  1377. top: 185px;
  1378. width: 585px;
  1379. height: 370px;
  1380. border: 3px solid var(--second-color);
  1381. border-left: none;
  1382. }
  1383. .room-planner .room-planner-images .line-3 {
  1384. top: 600px;
  1385. width: 580px;
  1386. height: 200px;
  1387. border-left: 3px solid var(--second-color);
  1388. }
  1389. .room-planner .room-planner-images .line-4 {
  1390. top: 930px;
  1391. width: 585px;
  1392. height: 380px;
  1393. border: 3px solid var(--second-color);
  1394. border-left: none;
  1395. }
  1396. .room-planner .room-planner-images .line-5 {
  1397. width: 590px;
  1398. height: 300px;
  1399. bottom: 300px;
  1400. border-left: 3px solid var(--second-color);
  1401. }
  1402. @media (max-width: 991px) {
  1403. .room-planner .room-planner-images .bg-item {
  1404. min-width: 750px;
  1405. }
  1406. .room-planner .room-planner-images .line-2,
  1407. .room-planner .room-planner-images .line-3 {
  1408. width: 540px;
  1409. }
  1410. .room-planner .room-planner-images .line-4 {
  1411. width: 510px;
  1412. }
  1413. }
  1414. @media (max-width: 767px) {
  1415. .room-planner .room-planner-images {
  1416. display: none;
  1417. }
  1418. }
  1419. .room-planner .room-planner-moblie .row {
  1420. margin-bottom: 50px;
  1421. padding: 0 65px;
  1422. }
  1423. .room-planner .room-planner-moblie .img-box {
  1424. border-radius: 30px;
  1425. background-color: #99a56f;
  1426. border: 3px solid var(--second-color);
  1427. }
  1428. .room-planner .room-planner-moblie .text-box {
  1429. margin-right: 10vw;
  1430. font-size: 20px;
  1431. font-weight: bold;
  1432. text-align: center;
  1433. }
  1434. .room-planner .room-planner-moblie .text-box span {
  1435. font-size: 44px;
  1436. color: #99a56f;
  1437. }
  1438. .room-planner .room-planner-moblie .line-6 {
  1439. height: 2800px;
  1440. position: absolute;
  1441. top: -50px;
  1442. right: 29%;
  1443. z-index: -1;
  1444. border-right: 2px solid var(--second-color);
  1445. }
  1446. @media (min-width: 767px) {
  1447. .room-planner .room-planner-moblie {
  1448. display: none;
  1449. }
  1450. }
  1451. @media (max-width: 575px) {
  1452. .room-planner .room-planner-moblie .line-6 {
  1453. right: 36%;
  1454. }
  1455. .room-planner .room-planner-moblie .text-box {
  1456. margin-right: 0;
  1457. }
  1458. }
  1459. .room-planner .rp-navs {
  1460. padding: 35px 25px;
  1461. }
  1462. .room-planner .rp-navs .home-content {
  1463. width: 100%;
  1464. max-width: 850px;
  1465. display: -webkit-box;
  1466. display: -ms-flexbox;
  1467. display: flex;
  1468. }
  1469. @media (max-width: 767px) {
  1470. .room-planner .rp-navs {
  1471. display: none;
  1472. }
  1473. }
  1474. /* 成家設計服務-room_planner end */
  1475. /* 成家知識專欄-categories start */
  1476. .blog-categories .container {
  1477. width: 50%;
  1478. margin: 40px auto 25px;
  1479. }
  1480. .blog-categories .container .breadcrumb-item {
  1481. font-family: NSJP-500;
  1482. }
  1483. .blog-categories .container .breadcrumb-item a {
  1484. font-family: NSJP-500;
  1485. color: var(--main-color);
  1486. }
  1487. .blog-categories .container .link-list {
  1488. width: 100%;
  1489. }
  1490. .blog-categories .container .link-list a {
  1491. text-decoration: none;
  1492. margin: 0 0.1rem;
  1493. padding: 7px 10px;
  1494. background: #808e4c;
  1495. color: #fff;
  1496. margin-right: 5px;
  1497. -webkit-transition: 0.3s;
  1498. transition: 0.3s;
  1499. border: 1px solid #808e4c;
  1500. }
  1501. .blog-categories .container .link-list a:hover {
  1502. border: 1px solid #808e4c;
  1503. background: #fff;
  1504. color: #808e4c;
  1505. }
  1506. .blog-categories .container .bhouseweb_search_form {
  1507. padding: 0;
  1508. }
  1509. .blog-categories .container .bhouseweb_search_form .bhouseweb_search_img img {
  1510. width: 38px;
  1511. }
  1512. .blog-categories .article {
  1513. width: 50%;
  1514. margin: auto;
  1515. display: -webkit-box;
  1516. display: -ms-flexbox;
  1517. display: flex;
  1518. -webkit-box-orient: vertical;
  1519. -webkit-box-direction: normal;
  1520. -ms-flex-direction: column;
  1521. flex-direction: column;
  1522. margin-top: 25px;
  1523. }
  1524. .blog-categories .article .article-item {
  1525. display: -webkit-box;
  1526. display: -ms-flexbox;
  1527. display: flex;
  1528. margin: 25px 0;
  1529. padding-bottom: 50px;
  1530. border-bottom: 1px solid var(--dark-gray);
  1531. align-items: center;
  1532. }
  1533. .blog-categories .article .article-item h4 {
  1534. font-size: 24px;
  1535. line-height: 32px;
  1536. color: #4c660b;
  1537. font-family: NSJP-700;
  1538. }
  1539. .blog-categories .article .article-item h4:hover {
  1540. opacity: 0.8;
  1541. }
  1542. .blog-categories .article .article-item .description {
  1543. color: var(--dark-color);
  1544. }
  1545. .blog-categories .article .article-item .description:hover {
  1546. opacity: 0.8;
  1547. }
  1548. // .blog-categories .article .article-item h4,
  1549. // .blog-categories .article .article-item p {
  1550. // font-weight: bold;
  1551. // }
  1552. .blog-categories .article .article-item img {
  1553. width: 240px;
  1554. height: auto;
  1555. margin-right: 35px;
  1556. }
  1557. .blog-categories .article .nav-link {
  1558. padding: 0;
  1559. margin-bottom: 50px;
  1560. text-align: center;
  1561. font-weight: bold;
  1562. font-size: 14px;
  1563. letter-spacing: 1px;
  1564. color: var(--dark-color);
  1565. }
  1566. @media (max-width: 991px) {
  1567. .blog-categories .container,
  1568. .blog-categories .article {
  1569. width: 75%;
  1570. }
  1571. }
  1572. @media (max-width: 575px) {
  1573. .blog-categories .container,
  1574. .blog-categories .article {
  1575. width: 90%;
  1576. }
  1577. .blog-categories .container .article-item,
  1578. .blog-categories .article .article-item {
  1579. -webkit-box-orient: vertical;
  1580. -webkit-box-direction: normal;
  1581. -ms-flex-direction: column;
  1582. flex-direction: column;
  1583. }
  1584. .blog-categories .container .article-item a,
  1585. .blog-categories .article .article-item a {
  1586. margin-top: 20px;
  1587. }
  1588. .blog-categories .container .article-item img,
  1589. .blog-categories .article .article-item img {
  1590. width: 100%;
  1591. margin-right: 15px;
  1592. }
  1593. }
  1594. /* 成家知識專欄-categories end */
  1595. /* 成家知識專欄-article start */
  1596. .blog_article h3 {
  1597. color: #4c660b;
  1598. font-weight: bold;
  1599. font-family: NSJP-900;
  1600. margin-bottom: 50px;
  1601. }
  1602. .blog_article span {
  1603. font-weight: bold;
  1604. letter-spacing: 2px;
  1605. }
  1606. .blog_article ul {
  1607. margin: 0;
  1608. padding: 0;
  1609. list-style: none;
  1610. }
  1611. .blog_article p {
  1612. margin-bottom: 0;
  1613. line-height: 32px;
  1614. letter-spacing: 1px;
  1615. font-family: NSJP-400;
  1616. }
  1617. .blog_article .content {
  1618. width: 50%;
  1619. margin: 60px auto;
  1620. padding-bottom: 60px;
  1621. }
  1622. .blog_article .content section:first-child {
  1623. margin: 60px auto;
  1624. padding-bottom: 60px;
  1625. border-bottom: 1px solid var(--dark-gray);
  1626. }
  1627. @media (max-width: 1200px) {
  1628. .blog_article .content {
  1629. width: 70%;
  1630. }
  1631. }
  1632. @media (max-width: 992px) {
  1633. .blog_article .content {
  1634. width: 90%;
  1635. }
  1636. }
  1637. .blog_article .question-box {
  1638. display: -webkit-box;
  1639. display: -ms-flexbox;
  1640. display: flex;
  1641. -webkit-box-align: center;
  1642. -ms-flex-align: center;
  1643. align-items: center;
  1644. -webkit-box-orient: vertical;
  1645. -webkit-box-direction: normal;
  1646. -ms-flex-direction: column;
  1647. flex-direction: column;
  1648. border: 2px solid var(--second-color);
  1649. margin-bottom: 50px;
  1650. }
  1651. .blog_article .question-box ul {
  1652. padding: 20px 40px;
  1653. }
  1654. .blog_article .question-box ul li {
  1655. margin: 10px 0;
  1656. letter-spacing: 1px;
  1657. font-weight: bold;
  1658. }
  1659. // .blog_article .question-box ul li:first-child {
  1660. // font-size: 20px;
  1661. // font-family: NSJP-700;
  1662. // }
  1663. .blog_article .question-box ul a {
  1664. margin-left: 5px;
  1665. color: #006e9a;
  1666. }
  1667. .blog_article .question-box ul a:hover {
  1668. opacity: 0.8;
  1669. }
  1670. .blog_article .img-text {
  1671. margin-bottom: 50px;
  1672. p {
  1673. margin: 0;
  1674. padding: 20px 60px;
  1675. background-color: rgb(128, 143, 76);
  1676. text-align: start;
  1677. color: #ffffff;
  1678. font-size: 14px;
  1679. line-height: 28px;
  1680. font-family: NSJP-500;
  1681. letter-spacing: 2px;
  1682. }
  1683. }
  1684. // .blog_article .img-box {
  1685. // margin: 50px 0;
  1686. // position: relative;
  1687. // }
  1688. .blog_article .content img {
  1689. width: 100%;
  1690. margin-top: 50px;
  1691. }
  1692. .blog_article .icon-box img {
  1693. margin-top: 0px;
  1694. width: 35px;
  1695. }
  1696. // .blog_article .img-box p {
  1697. // margin: 0;
  1698. // padding: 20px 60px;
  1699. // position: absolute;
  1700. // left: 0;
  1701. // right: 0;
  1702. // bottom: 0px;
  1703. // background-color: rgba(128, 143, 76, 0.6);
  1704. // text-align: start;
  1705. // color: #ffffff;
  1706. // font-size: 14px;
  1707. // line-height: 28px;
  1708. // font-family: NSJP-500;
  1709. // letter-spacing: 2px;
  1710. // }
  1711. .blog_article h2 {
  1712. margin-bottom: 30px;
  1713. font-size: 20px;
  1714. font-weight: bold;
  1715. font-family: NSJP-700;
  1716. color: var(--main-color);
  1717. }
  1718. .blog_article b {
  1719. font-family: NSJP-700;
  1720. }
  1721. .blog_article li,
  1722. .blog_article table td {
  1723. font-family: NSJP-400;
  1724. }
  1725. // .blog_article .section-01 {
  1726. // margin-bottom: 40px;
  1727. // padding-bottom: 20px;
  1728. // border-bottom: 1px solid var(--dark-gray);
  1729. // }
  1730. .blog_article li {
  1731. letter-spacing: 1px;
  1732. line-height: 32px;
  1733. }
  1734. .blog_article .list-title {
  1735. font-size: 20px;
  1736. font-weight: bold;
  1737. font-family: NSJP-700;
  1738. }
  1739. // .blog_article .section-02 li:first-child,
  1740. // .blog_article .section-03 li:first-child {
  1741. // margin-bottom: 20px;
  1742. // font-size: 20px;
  1743. // font-weight: bold;
  1744. // font-family: NSJP-700;
  1745. // }
  1746. // .blog_article .section-03 {
  1747. // padding-bottom: 10px;
  1748. // border-bottom: 1px solid var(--dark-gray);
  1749. // }
  1750. // .blog_article .section-03 span {
  1751. // line-height: 32px;
  1752. // }
  1753. // .blog_article .section-04 {
  1754. // padding-bottom: 40px;
  1755. // border-bottom: 1px solid var(--dark-gray);
  1756. // }
  1757. // .blog_article .section-04 h4 {
  1758. // margin-top: 30px;
  1759. // }
  1760. // .blog_article .section-04 span {
  1761. // line-height: 32px;
  1762. // }
  1763. // .blog_article .section-04 li:first-child {
  1764. // margin-bottom: 40px;
  1765. // }
  1766. .blog_article table {
  1767. width: 100%;
  1768. margin-bottom: 50px;
  1769. }
  1770. .blog_article table,
  1771. .blog_article table td,
  1772. .blog_article table th {
  1773. padding: 5px 10px;
  1774. border: 1px solid #333;
  1775. }
  1776. .blog_article .link-box {
  1777. margin-top: 50px;
  1778. padding-bottom: 50px;
  1779. border-bottom: 1px solid var(--dark-gray);
  1780. }
  1781. .blog_article .link-box .link-list {
  1782. width: 100%;
  1783. }
  1784. .blog_article .link-box .link-list a {
  1785. text-decoration: none;
  1786. padding: 7px 10px;
  1787. background: #808e4c;
  1788. color: #fff;
  1789. -webkit-transition: 0.3s;
  1790. transition: 0.3s;
  1791. border: 1px solid #808e4c;
  1792. font-weight: bold;
  1793. }
  1794. .blog_article .link-box .link-list a:hover {
  1795. border: 1px solid #808e4c;
  1796. background: #fff;
  1797. color: #808e4c;
  1798. }
  1799. .blog_article .readMore,
  1800. .blog_article .article_readMore {
  1801. margin: 25px 0;
  1802. }
  1803. .blog_article .read-more-list {
  1804. padding-top: 60px;
  1805. border-top: 1px solid var(--dark-gray);
  1806. font-size: 18px;
  1807. letter-spacing: 2px;
  1808. }
  1809. .blog_article .read-more-list li {
  1810. margin: 15px 0;
  1811. font-weight: bold;
  1812. @media (max-width: 575px) {
  1813. margin: 20px 0;
  1814. }
  1815. }
  1816. .blog_article .read-more-list a {
  1817. color: var(--main-color);
  1818. }
  1819. .blog_article button {
  1820. border: none;
  1821. margin: 1px;
  1822. }
  1823. /* 成家知識專欄-article end */
  1824. /* 最新消息公告-news start */
  1825. .bhouseweb_loc_content {
  1826. .subtitle {
  1827. font-family: NSJP-900;
  1828. }
  1829. .bhouseWeb_news_content {
  1830. letter-spacing: 1px;
  1831. line-height: 28px;
  1832. }
  1833. }
  1834. .likeSee__state__filter p {
  1835. width: 110px;
  1836. margin-left: 50px;
  1837. font-family: NSJP-500;
  1838. letter-spacing: 1px;
  1839. }
  1840. .bhouseweb_loc_sec p {
  1841. font-family: NSJP-400;
  1842. }
  1843. /* 最新消息公告-news end */
  1844. /* 小寶設計單品-furniture_design start */
  1845. .furniture_design_content {
  1846. width: 55%;
  1847. margin: 0 auto;
  1848. @media (max-width: 991px) {
  1849. width: 75%;
  1850. }
  1851. @media (max-width: 575px) {
  1852. width: 90%;
  1853. }
  1854. }
  1855. .furniture-design p {
  1856. padding-right: 15px;
  1857. text-align: justify;
  1858. font-family: NSJP-400;
  1859. }
  1860. .furniture-design h5 {
  1861. font-weight: bold;
  1862. color: var(--main-color);
  1863. font-family: NSJP-700;
  1864. }
  1865. .furniture-design p,
  1866. .furniture-design h5 {
  1867. line-height: 32px;
  1868. letter-spacing: 1px;
  1869. }
  1870. .furniture-design img {
  1871. width: 100%;
  1872. }
  1873. .furniture-design .text-box {
  1874. width: 380px;
  1875. text-align: center;
  1876. margin: auto;
  1877. @media screen and (max-width: 575px) {
  1878. width: auto;
  1879. }
  1880. }
  1881. .furniture-design .nav-link {
  1882. font-size: 14px;
  1883. color: var(--dark-color);
  1884. }
  1885. .furniture-design .tab-title .nav-item {
  1886. width: 200px;
  1887. justify-content: center;
  1888. }
  1889. .furniture-design .tab-title .nav-link {
  1890. margin: atuo;
  1891. font-size: 18px;
  1892. font-family: NSJP-400;
  1893. }
  1894. .furniture-design ul {
  1895. display: flex;
  1896. flex-wrap: nowrap;
  1897. list-style: none;
  1898. }
  1899. .furniture-design ul li {
  1900. display: flex;
  1901. flex-wrap: wrap;
  1902. list-style: none;
  1903. font-family: NSJP-400;
  1904. }
  1905. .furniture-design .design-list {
  1906. display: flex;
  1907. flex-wrap: wrap;
  1908. list-style: none;
  1909. @media (max-width: 767px) {
  1910. a {
  1911. border: 1px solid #d9d9d9;
  1912. &:hover {
  1913. background-color: #d9d9d9;
  1914. }
  1915. }
  1916. }
  1917. }
  1918. .furniture-design .design-list li {
  1919. margin: 5px 10px 0px;
  1920. @media (max-width: 767px) {
  1921. margin: 5px 10px;
  1922. }
  1923. }
  1924. .furniture-design .sub-tab-content h4 {
  1925. margin: 0;
  1926. color: #ffffff;
  1927. background-color: rgba(128, 142, 76, 0.8);
  1928. padding: 10px 20px;
  1929. transition: all 0.3s;
  1930. font-size: 1.3rem;
  1931. white-space: nowrap;
  1932. text-align: center;
  1933. letter-spacing: 2px;
  1934. font-family: NSJP-500;
  1935. }
  1936. // .furniture-design .sub-tab-content img {
  1937. // height: 350px;
  1938. // -o-object-fit: cover;
  1939. // object-fit: cover;
  1940. // -o-object-position: center;
  1941. // object-position: center;
  1942. // }
  1943. // @media screen and (max-width: 767px) {
  1944. // .furniture-design .sub-tab-content img {
  1945. // height: 350px;
  1946. // }
  1947. // }
  1948. .furniture-design .sub-tab-content .text-item div {
  1949. // position: absolute;
  1950. // top: 50%;
  1951. // left: 50%;
  1952. // -webkit-transform: translate(-50%, -50%);
  1953. // transform: translate(-50%, -50%);
  1954. // top: 0;
  1955. // left: 0;
  1956. // right: 0;
  1957. display: -webkit-box;
  1958. display: -ms-flexbox;
  1959. display: flex;
  1960. -webkit-box-pack: center;
  1961. -ms-flex-pack: center;
  1962. justify-content: center;
  1963. -webkit-box-align: center;
  1964. -ms-flex-align: center;
  1965. align-items: center;
  1966. -webkit-transition: all 0.3s;
  1967. transition: all 0.3s;
  1968. }
  1969. // .furniture-design .sub-tab-content .text-item:hover div {
  1970. // display: -webkit-box;
  1971. // display: -ms-flexbox;
  1972. // display: flex;
  1973. // -webkit-box-pack: center;
  1974. // -ms-flex-pack: center;
  1975. // justify-content: center;
  1976. // -webkit-box-align: center;
  1977. // -ms-flex-align: center;
  1978. // align-items: center;
  1979. // width: 100%;
  1980. // height: 100%;
  1981. // background: rgba(128, 142, 76, 0.8);
  1982. // cursor: pointer;
  1983. // }
  1984. // .furniture-design .sub-tab-content .text-item:hover div h4 {
  1985. // background-color: transparent;
  1986. // }
  1987. .furniture-design .sub-tab-content .mattress-text-box {
  1988. width: 400px;
  1989. }
  1990. @media (max-width: 575px) {
  1991. .furniture-design .sub-tab-content .mattress-text-box {
  1992. width: auto;
  1993. }
  1994. }
  1995. .furniture-design .mattress-price {
  1996. p {
  1997. text-align: center;
  1998. margin-bottom: 5px;
  1999. }
  2000. .price-item {
  2001. font-size: 18px;
  2002. font-family: NSJP-500;
  2003. }
  2004. }
  2005. .furniture-design .nav-pills .nav-link.active {
  2006. color: var(--dark-color);
  2007. background-color: transparent;
  2008. border-bottom: 2px solid var(--second-color);
  2009. border-radius: 0;
  2010. }
  2011. @media (max-width: 991px) {
  2012. .furniture-design .nav-pills {
  2013. padding-top: 30px;
  2014. }
  2015. }
  2016. @media (max-width: 767px) {
  2017. .furniture-design .nav-pills {
  2018. padding-top: 15px;
  2019. }
  2020. }
  2021. .furniture-design #systeam-furniture .cabinet-03 {
  2022. height: 500px;
  2023. display: -webkit-box;
  2024. display: -ms-flexbox;
  2025. display: flex;
  2026. -webkit-box-orient: vertical;
  2027. -webkit-box-direction: normal;
  2028. -ms-flex-direction: column;
  2029. flex-direction: column;
  2030. -webkit-box-align: center;
  2031. -ms-flex-align: center;
  2032. align-items: center;
  2033. }
  2034. .furniture-design #systeam-furniture .cabinet-03 h5 {
  2035. margin: 20px;
  2036. }
  2037. .furniture-design #systeam-furniture .cabinet-03 img {
  2038. width: 150px;
  2039. height: 150px;
  2040. -o-object-fit: contain;
  2041. object-fit: contain;
  2042. }
  2043. @media (max-width: 991px) {
  2044. .furniture-design #systeam-furniture .cabinet-03 {
  2045. height: auto;
  2046. }
  2047. }
  2048. .b-bottom {
  2049. border-bottom: 1px solid var(--dark-gray);
  2050. }
  2051. .furniture-design .bg-text {
  2052. position: absolute;
  2053. left: 0;
  2054. width: 100%;
  2055. background-color: #80a251;
  2056. }
  2057. .furniture-design .bg-text p {
  2058. margin: 0;
  2059. padding: 70px 0;
  2060. font-size: 24px;
  2061. text-align: center;
  2062. line-height: 50px;
  2063. color: #fff;
  2064. font-family: NSJP-700;
  2065. letter-spacing: 2px;
  2066. }
  2067. .furniture-design .mobile-tab {
  2068. padding: 20px;
  2069. letter-spacing: 1px;
  2070. @media (max-width: 475px) {
  2071. padding: 10px;
  2072. }
  2073. ul {
  2074. padding-bottom: 20px;
  2075. }
  2076. #all-design-tab {
  2077. text-align: center;
  2078. font-weight: bold;
  2079. font-size: 18px;
  2080. }
  2081. #pills-tab {
  2082. .nav-item {
  2083. width: 100%;
  2084. transition: all .3s;
  2085. @media (max-width: 475px) {
  2086. width: auto;
  2087. margin: auto;
  2088. }
  2089. &:hover {
  2090. background: #68686b;
  2091. }
  2092. }
  2093. .nav-active {
  2094. background: #68686b;
  2095. }
  2096. a {
  2097. font-size: 1rem !important;
  2098. }
  2099. }
  2100. .nav-link {
  2101. margin: auto;
  2102. }
  2103. .tab-title {
  2104. display: flex;
  2105. flex-wrap: nowrap;
  2106. }
  2107. }
  2108. .tw-85 {
  2109. width: 85%;
  2110. }
  2111. .tw-15 {
  2112. width: 15%;
  2113. }
  2114. /* 小寶設計單品-furniture_design end */
  2115. /* 設計家具 start */
  2116. .design-container {
  2117. padding-top: 50px;
  2118. }
  2119. /* @media (max-width: 991px) {
  2120. .design-container {
  2121. padding-top: 150px;
  2122. }
  2123. } */
  2124. .design-container p {
  2125. line-height: 32px;
  2126. }
  2127. .design-container h3,
  2128. .design-container h6 {
  2129. font-weight: bold;
  2130. color: var(--main-color);
  2131. font-family: NSJP-700;
  2132. }
  2133. .design-container h6 {
  2134. font-size: 20px;
  2135. }
  2136. .design-container div {
  2137. font-family: NSJP-400;
  2138. }
  2139. .design-container ul {
  2140. display: flex;
  2141. flex-direction: column;
  2142. padding: 0;
  2143. list-style: none;
  2144. }
  2145. .design-container ul li {
  2146. line-height: 32px;
  2147. }
  2148. .design-container .slider-box {
  2149. width: 60%;
  2150. .slider {
  2151. margin-right: 20px;
  2152. }
  2153. }
  2154. @media (max-width: 767px) {
  2155. .design-container .slider-box {
  2156. width: 100%;
  2157. }
  2158. }
  2159. // .design-container .slider-design .design-img img {
  2160. // width: 96.3%;
  2161. // max-height: 400px;
  2162. // -o-object-fit: cover;
  2163. // object-fit: cover;
  2164. // }
  2165. // @media (max-width: 991px) {
  2166. // .design-container .slider-design .design-img img {
  2167. // margin: auto;
  2168. // max-width: 98%;
  2169. // }
  2170. // }
  2171. // @media (max-width: 767px) {
  2172. // .design-container .slider-design .design-img img {
  2173. // width: 530px;
  2174. // max-width: 100%;
  2175. // padding-right: 1%;
  2176. // }
  2177. // }
  2178. // @media (max-width: 575px) {
  2179. // .design-container .slider-design .design-img img {
  2180. // padding-right: 0;
  2181. // padding: 0 1.5% 0 1%;
  2182. // }
  2183. // }
  2184. .design-container .slider-nav img {
  2185. // width: 90%;
  2186. // height: 130px;
  2187. // -o-object-fit: cover;
  2188. // object-fit: cover;
  2189. cursor: pointer;
  2190. }
  2191. // .design-container .slider-nav .slick-slide {
  2192. // width: 33% !important;
  2193. // }
  2194. // .design-container .slider-nav .slick-list {
  2195. // padding: 0 !important;
  2196. // }
  2197. .design-container .slider-nav .middle-item {
  2198. padding: 0 5px;
  2199. }
  2200. // .design-container .slider-nav .middle-item img {
  2201. // padding: 0 5px;
  2202. // }
  2203. .furniture-design .design-border {
  2204. border-bottom: 2px solid var(--second-color);
  2205. border-radius: 0;
  2206. }
  2207. @media (max-width: 991px) {
  2208. .design-container .slider-nav img {
  2209. width: 95%;
  2210. height: auto;
  2211. margin: auto;
  2212. }
  2213. .design-container .slider-nav .middle-item {
  2214. margin: 0;
  2215. }
  2216. }
  2217. /* 設計家具 end */
  2218. .bhouse_line {
  2219. background: #000;
  2220. height: 1px;
  2221. opacity: 1 !important;
  2222. }
  2223. .bhouse_title {
  2224. font-size: 1.3rem;
  2225. letter-spacing: 2px;
  2226. text-align: justify;
  2227. color: #4c660b;
  2228. font-family: NSJP-700;
  2229. }
  2230. @media screen and (max-width: 767px) {
  2231. .bhouse_title {
  2232. font-size: 1rem;
  2233. }
  2234. }
  2235. .bhouse_subtitle {
  2236. color: #4c660b;
  2237. font-size: 1.2rem;
  2238. font-weight: 600;
  2239. letter-spacing: 3px;
  2240. }
  2241. .brand_sec02_content {
  2242. margin: 50px 0;
  2243. }
  2244. .brand_sec02_content p {
  2245. letter-spacing: 2px;
  2246. line-height: 28px;
  2247. font-family: NSJP-400;
  2248. }
  2249. .brand_content {
  2250. width: 50%;
  2251. margin: 0 auto;
  2252. }
  2253. @media screen and (max-width: 767px) {
  2254. .brand_content {
  2255. width: 95%;
  2256. }
  2257. .store-line {
  2258. margin: 35px 20px;
  2259. }
  2260. }
  2261. .brand_sec01,
  2262. .brand_sec02 {
  2263. margin: 50px 0;
  2264. }
  2265. .likeSee__state {
  2266. display: -webkit-box;
  2267. display: -ms-flexbox;
  2268. display: flex;
  2269. -webkit-box-pack: justify;
  2270. -ms-flex-pack: justify;
  2271. justify-content: space-between;
  2272. -webkit-box-align: center;
  2273. -ms-flex-align: center;
  2274. align-items: center;
  2275. }
  2276. .likeSee__state img {
  2277. width: 40px;
  2278. }
  2279. @media screen and (max-width: 767px) {
  2280. .likeSee__state img {
  2281. width: 30px;
  2282. }
  2283. }
  2284. .mt-15 {
  2285. margin-top: 15px;
  2286. }
  2287. .mt-30 {
  2288. margin-top: 30px;
  2289. }
  2290. .my-80 {
  2291. margin: 80px 0;
  2292. }
  2293. .my-50 {
  2294. margin: 50px 0;
  2295. }
  2296. .mt-80 {
  2297. margin-top: 80px;
  2298. }
  2299. .mb-80 {
  2300. margin-bottom: 80px;
  2301. }
  2302. .article__readMore {
  2303. color: #656565;
  2304. font-size: 0.9rem;
  2305. font-family: NSJP-500;
  2306. cursor: pointer;
  2307. }
  2308. .sec01_store_map_img {
  2309. width: 100%;
  2310. height: 700px;
  2311. margin: 0 auto;
  2312. position: relative;
  2313. object-fit: contain;
  2314. @media screen and (max-width: 767px) {
  2315. width: 80%;
  2316. height: 400px;
  2317. }
  2318. @media screen and (max-width: 575px) {
  2319. margin-left: 20px;
  2320. }
  2321. }
  2322. .store_cta_box_reserve {
  2323. // width: 150px;
  2324. // margin-top: 80px;
  2325. // position: relative;
  2326. // left: 50px;
  2327. position: absolute;
  2328. left: 30px;
  2329. top: 100px;
  2330. @media screen and (max-width: 1200px) {
  2331. left: -10px;
  2332. top: 130px;
  2333. }
  2334. @media screen and (max-width: 767px) {
  2335. left: 30px;
  2336. top: 50px;
  2337. }
  2338. @media screen and (max-width: 575px) {
  2339. left: 15px;
  2340. }
  2341. }
  2342. .store_cta_box_reserve .store_cta {
  2343. background: #808f4c;
  2344. width: 150px;
  2345. padding: 16px;
  2346. color: #fff;
  2347. border-radius: 15px;
  2348. text-align: center;
  2349. font-size: 18px;
  2350. letter-spacing: 2px;
  2351. font-family: NSJP-500;
  2352. }
  2353. @media screen and (max-width: 767px) {
  2354. .store_cta_box_reserve .store_cta {
  2355. width: 120px;
  2356. padding: 10px;
  2357. font-size: 12px;
  2358. }
  2359. }
  2360. .store_cta_box_reserve p {
  2361. text-align: center;
  2362. color: #68686b;
  2363. font-weight: bold;
  2364. letter-spacing: 2px;
  2365. font-size: 14px;
  2366. a {
  2367. font-family: NSJP-400;
  2368. }
  2369. }
  2370. @media screen and (max-width: 767px) {
  2371. .store_cta_box_reserve p {
  2372. font-size: 12px;
  2373. }
  2374. }
  2375. .store_cta_box_reserve a {
  2376. color: #2980b8;
  2377. }
  2378. @media screen and (max-width: 767px) {
  2379. .store_cta_box_reserve a {
  2380. font-size: 12px;
  2381. }
  2382. }
  2383. .store_cta_box {
  2384. position: absolute;
  2385. top: 40%;
  2386. right: -70px;
  2387. @media screen and (max-width: 1200px) {
  2388. right: -170px;
  2389. }
  2390. @media screen and (max-width: 767px) {
  2391. right: 0px;
  2392. }
  2393. }
  2394. .store_cta_box_form {
  2395. margin-top: 70px;
  2396. position: relative;
  2397. }
  2398. @media screen and (max-width: 767px) {
  2399. .store_cta_box_form {
  2400. left: -10px;
  2401. }
  2402. }
  2403. .store_cta_box_form .store_cta {
  2404. background-color: var(--dark-gray);
  2405. width: 160px;
  2406. padding: 15px 5px;
  2407. color: #fff;
  2408. border-radius: 15px;
  2409. text-align: center;
  2410. margin: 0 auto;
  2411. font-size: 18px;
  2412. letter-spacing: 2px;
  2413. font-family: NSJP-500;
  2414. }
  2415. @media screen and (max-width: 767px) {
  2416. .store_cta_box_form .store_cta {
  2417. width: 125px;
  2418. padding: 10px 5px;
  2419. font-size: 12px;
  2420. }
  2421. }
  2422. .store_cta_box_form p {
  2423. text-align: center;
  2424. color: #68686b;
  2425. font-weight: bold;
  2426. letter-spacing: 2px;
  2427. font-size: 14px;
  2428. a {
  2429. font-family: NSJP-400;
  2430. }
  2431. }
  2432. @media screen and (max-width: 767px) {
  2433. .store_cta_box_form p {
  2434. width: 130px;
  2435. font-size: 12px;
  2436. }
  2437. }
  2438. .store_cta_box_form a {
  2439. color: #2980b8;
  2440. }
  2441. @media screen and (max-width: 767px) {
  2442. .store_cta_box_form a {
  2443. font-size: 12px;
  2444. }
  2445. }
  2446. .store-link {
  2447. color: #2980b8 !important;
  2448. &:hover {
  2449. opacity: 0.7;
  2450. }
  2451. }
  2452. .store-tab #pills-tab a,
  2453. .mobile-tab #pills-tab a {
  2454. color: #fff;
  2455. text-decoration: none;
  2456. font-size: 1.2rem;
  2457. font-family: NSJP-400;
  2458. }
  2459. .store-tab #pills-tab .nav-item,
  2460. .mobile-tab #pills-tab .nav-item {
  2461. margin: 0 0.8rem;
  2462. width: auto;
  2463. background: #808e4c;
  2464. @media screen and (max-width: 575px) {
  2465. margin: 0 0.5rem;
  2466. }
  2467. }
  2468. .store-tab #pills-tab .nav-item-link,
  2469. .mobile-tab #pills-tab .nav-item-link {
  2470. text-decoration: none;
  2471. margin: 0 0.1rem;
  2472. padding: 0.5rem 1.8rem;
  2473. background: #808e4c;
  2474. color: #fff;
  2475. margin-right: 5px;
  2476. transition: 0.3s;
  2477. // border: 1px solid #808e4c;
  2478. font-family: NSJP-400;
  2479. letter-spacing: 2px;
  2480. text-align: center;
  2481. margin: 0;
  2482. &:hover {
  2483. background: #68686b !important;
  2484. }
  2485. @media screen and (max-width: 575px) {
  2486. font-size: 16px;
  2487. padding: 0.2rem 1rem;
  2488. }
  2489. }
  2490. // #pills-tab .nav-item-link {
  2491. // display: block;
  2492. // padding: 0.5rem 1rem;
  2493. // margin: 0 2rem;
  2494. // text-decoration: none;
  2495. // background-color: transparent;
  2496. // font-size: 1.2rem;
  2497. // color: #68686b;
  2498. // -webkit-transition: all 0.3s;
  2499. // transition: all 0.3s;
  2500. // -webkit-appearance: none !important;
  2501. // border-bottom: 2px solid #fff;
  2502. // font-family: NSJP-500;
  2503. // }
  2504. // @media screen and (max-width: 1200px) {
  2505. // #pills-tab .nav-item-link {
  2506. // padding: 0.5rem 0.8rem;
  2507. // }
  2508. // }
  2509. @media screen and (max-width: 767px) {
  2510. .store-tab #pills-tab .nav-item-link {
  2511. margin: 0 0rem;
  2512. }
  2513. }
  2514. // @media screen and (max-width: 375px) {
  2515. // #pills-tab .nav-item-link {
  2516. // padding: 0rem 0.5rem;
  2517. // }
  2518. // }
  2519. .store-tab #pills-tab .nav-item-link.active,
  2520. .mobile-tab #pills-tab .nav-item-link.active {
  2521. color: #fff;
  2522. background: #68686b !important;
  2523. }
  2524. /* .tab-content {
  2525. margin-bottom: 40vh;
  2526. }
  2527. @media screen and (max-width: 767px) {
  2528. .tab-content {
  2529. margin-bottom: 20vh;
  2530. }
  2531. } */
  2532. .store_title {
  2533. color: #4c660b;
  2534. font-size: 1.8rem;
  2535. font-family: NSJP-700;
  2536. }
  2537. @media screen and (max-width: 767px) {
  2538. .store_title {
  2539. margin-top: 15px;
  2540. }
  2541. }
  2542. .store_content {
  2543. font-weight: 600;
  2544. letter-spacing: 2px;
  2545. }
  2546. .store_content a {
  2547. color: #68686b;
  2548. font-weight: 600;
  2549. }
  2550. .store_content .reservation-link {
  2551. margin-top: 15px;
  2552. color: #4c660b;
  2553. font-weight: 600;
  2554. font-size: 17px;
  2555. }
  2556. .store_content .store_content_item {
  2557. margin-bottom: 10px;
  2558. }
  2559. .store_content_item span {
  2560. font-family: NSJP-500;
  2561. }
  2562. .assign-link {
  2563. border-bottom: 2px solid var(--second-color);
  2564. @media (max-width: 767px) {
  2565. border-bottom: none;
  2566. background-color: #d9d9d9;
  2567. }
  2568. }
  2569. .card-img, .card-img-top {
  2570. border-radius: 0 !important;
  2571. }
  2572. .breadcrumb-item+.breadcrumb-item::before {
  2573. content: ">" !important;
  2574. }