@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Markazi+Text:wght@400..700&family=Noto+Serif+TC:wght@200..900&display=swap');

body {
  font-family: "Noto Serif TC", serif;

}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
  background-color: #d1a37e;
  color: #fff;
}

::selection {
  background-color: #d1a37e;
  color: #fff;
}



body {
  overflow: overlay;
}

&::-webkit-scrollbar {
  background: #000;
  width: 7px;
}

&::-webkit-scrollbar-button {
  display: none;
  background: #000;
  border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
  background: #000;
}

&::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #d1a37e;
}

&::-webkit-scrollbar-track {
  box-shadow: transparent;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
  display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
  background: #c99b7e;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 50%;
  margin-left: 0;
  transform: translate(-50%, 0);
}


/*預設解除背景輪播*/
#content_main {
  margin: 0;
}

.bannerindex {
  position: relative;
  height: auto;
}

.swiper-banner {
  position: static;
  margin: 0;
  height: auto;
}

.swiper-slide img {
  height: auto;
}

@media screen and (max-width: 768px) {
  .bannerindex {
    padding: 0;
    margin: 0;
  }
}

#content_main {
  width: 100%;
  min-height: 80vh;
  background-size: cover;
  background-repeat: repeat-y;
  background-image: url(https://pic03.eapple.com.tw/harvestidesign/bg-05.jpg);

}

#content {
  background-image: url(https://pic03.eapple.com.tw/harvestidesign/bg-05.jpg);

  background-size: cover;
  background-repeat: repeat-y;
}

.swiper-wrapper .swiper-slide::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(https://pic03.eapple.com.tw/harvestidesign/bg-08.png);
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  transition: all 0.5s;
}

/* .swiper-wrapper .swiper-slide-active.swiper-slide::after {
  animation: banner-show 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
  transition: all 0.5s;
} */


@keyframes banner-show {
  0% {
    opacity: 0;

    transform: translate(100px, 0);

  }

  100% {
    opacity: 1;

    transform: translate(0, 0);


  }

}




.swiper-wrapper .swiper-slide:nth-of-type(1):before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(https://pic03.eapple.com.tw/harvestidesign/bg-03.png);
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10000;
}

.swiper-wrapper .swiper-slide:nth-of-type(2):before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(https://pic03.eapple.com.tw/harvestidesign/bg-04.png);
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10000;
}

.swiper-wrapper .swiper-slide-active.swiper-slide::before {
  animation: font-show 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
  transition: all 0.5s;
}


@keyframes font-show {
  0% {
    opacity: 0;

    transform: translate(-100px, 0);

  }

  100% {
    opacity: 1;

    transform: translate(0, 0);


  }

}




@media screen and (max-width: 768px) {}



/* 底下圈圈 */


.swiper-pagination-clickable .swiper-pagination-bullet {
  position: relative;
  border-radius: 2.5px;
  height: 5px;
  width: 50px;
  z-index: 0;
}

.swiper-pagination-bullet {
  background: #231f20;
}

.swiper-pagination-clickable .swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 0%;
  height: 5px;
  border-radius: 2.5px;
  background-color: #231f20;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.3s;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
  width: 100%;
  transition: all 0.3s;
}



.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(1):after {
  left: auto;
  right: 0;
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/
.header_area {
  position: fixed;
  z-index: 9999;
  width: 9.9%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0;
  background: transparent;
}

.header_area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 9.9%;
  z-index: 9999;
  padding: 0;
  background: transparent;
}


.main_header_area {
  position: relative;
  background: transparent;
  height: 100%;
  transition: all 0.5s;
}

.main_header_area::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(90deg, #00000080, transparent);
  transition: all 0.5s;
}

.sticky .main_header_area::before {
  opacity: 1;
  transition: all 3s;
}






.me_tp_features {
  display: none;
}

.main_header_area .container {
  max-width: 100%;
  height: 100%;
  margin: auto;
}

.navigation {
  width: 100%;
  position: relative;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.nav-header {
  position: absolute;
  z-index: 123;
  top: 5%;
  left: 20%;
  width: 200px;
  max-width: 270px;
}

.nav-brand {
  display: inline-block;
  width: 100%;
}

.nav-brand img {
  filter: contrast(0) brightness(100);
}





/* 選項 */
.stellarnav {
  height: 100%;
  display: flex;
  align-items: flex-start;
  z-index: 1;
  justify-content: center;
  padding: 0;
  opacity: 0;
  padding-top: 62%;
  transform-origin: 0 50%;
  transform: scale(0, 1);
  transition: all 0.3s;
}

.sticky .stellarnav {
  opacity: 1;
  transform: scale(1);
  transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.stellarnav>ul>li {
  padding-left: 0;
}

.stellarnav>ul>li::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background-color: #fff;
  transition: all 0.3s;
}

.sticky .stellarnav>ul>li:hover:before {
  top: 0;
  bottom: auto;
  width: 1px;
  height: 100%;
  background-color: #d1a37e;
  transition: all 0.3s;
}



.stellarnav>ul>li>a {
  color: #ffffff24;
  margin: 0;
  padding: 0;
  height: 30px;
  line-height: 30px;
  text-align: left;
  overflow: hidden;
  position: relative;
  text-wrap: nowrap;
  transition: all 0.3s;
}

.stellarnav>ul:hover>li>a {
  color: #ffffff85;
  transition: all 0.3s;
}



.stellarnav>ul>li>a:hover {
  transform: translate(20px, 0);
  color: #fff;
  transition: all 0.3s;
}

.sticky .stellarnav>ul>li>a:hover {
  color: #d1a37e;
}






.stellarnav ul {
  width: 70%;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  margin: 0 auto;
  padding: 0;
}

.stellarnav ul ul {
    width: 200px;
    max-height: 22vh;
    left: 85%;
    top: 10px;
    background: #0000000e;
    overflow-y: scroll;
}

.stellarnav ul ul::-webkit-scrollbar {
  background: #0000000e;
  width: 7px;
}

.stellarnav ul ul::-webkit-scrollbar-button {
  display: none;
  background: #0000000e;
  border-radius: 0;
}

.stellarnav ul ul::-webkit-scrollbar-track-piece {
  background: #0000000e;
}

.stellarnav ul ul::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #d1a37e;
}

.stellarnav ul ul::-webkit-scrollbar-track {
  box-shadow: transparent;
}













.stellarnav li li {
  border: 0;
}

.stellarnav li li a {
  padding: 15px;
  color: #ffffff94;
  transition: all 0.3s;

}

.stellarnav li li a:hover {
  color: #ffffffde;
  transition: all 0.3s;
}



.stellarnav li.has-sub>a:after {
  display: none;
}

.stellarnav>ul>li>a b {
  width: auto;
  height: auto;
}

.stellarnav>ul>li>a b:nth-of-type(1) {
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 400;
  font-family: "Markazi Text";

}

.stellarnav>ul>li>a b:nth-of-type(2) {
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: bold;
}


.stellarnav>ul>li {
  width: fit-content;
  height: fit-content;
  margin: 5px 0;
}


@media screen and (max-width: 1440px) {
  .stellarnav {
    padding-top: 90%;
  }

  .main_header_area::before {}

  .stellarnav>ul>li>a:hover {
    padding-left: 0px;
    color: #d1a37e;
    transition: all 0.3s;
  }
}

@media screen and (max-width: 1024px) {
  .stellarnav>ul>li>a {
    font-size: 12px;
  }

  .nav-brand {
    width: 80px;
  }

}

@media screen and (max-width: 768px) {
  .header_area {
    width: 100%;
    height: 100px;
  }

  .nav-header {
    z-index: 0;
  }

  .header_area.sticky {
    width: 100%;
    height: 100px;
  }

  .nav-brand {
    width: 70px;
  }

  .stellarnav.mobile {
    padding: 0;
  }

  .main_header_area::before {
    display: none;
  }

  .stellarnav.mobile {
    position: absolute;
    left: 0;
    top: 10px;
    width: auto;
    display: inline-block;
  }

  .stellarnav .menu-toggle span.bars span {
    background: #666666;
  }

  .stellarnav .menu-toggle:after {
    content: 'MENU';
    font-size: 12px;
    color: #666666;
    display: block;
    transform: scale(0.9);
  }

  .stellarnav>ul {
    text-align: center;
    padding: 0px 0;
  }

  .stellarnav.mobile.right .close-menu,
  .stellarnav.mobile.left .close-menu {
    background: #C4A75E;
    color: #666666;
  }

  .stellarnav .icon-close:before {
    border-bottom: solid 3px #666666;
  }

  .stellarnav .icon-close:after {
    border-bottom: solid 3px #666666;
  }

  .stellarnav.mobile.right>ul,
  .stellarnav.mobile.left>ul {
    border-right: 0px #eee solid;
    background-color: #fff;
  }

  .stellarnav.mobile>ul>li>a {
    padding: 25px 10px;
    border: 0;
  }

  .stellarnav.mobile>ul>li>a b:nth-child(2) {
    font-size: 12px;
    vertical-align: bottom;
    letter-spacing: 2px;
  }

  .stellarnav.mobile li.open {
    background: #fff;
  }

  .stellarnav.mobile ul ul {
    background-color: #fff;
  }

  .stellarnav.mobile>ul>li {
    border-bottom: 1px #C4A75E solid;
  }

  .stellarnav.mobile li a {
    border-bottom: 0;
    background-color: transparent;
  }

  .stellarnav>ul>li>ul>li>a {
    background-color: #fff;
    border: 0;
    padding: 15px 15px;
  }

  .stellarnav>ul>li>ul>li {
    border: 0;
    background-color: #fff;
  }

  .stellarnav.mobile ul ul li {
    background-color: #fff;
  }

  .stellarnav.mobile li.open li.open {
    background: #171717e0;
    padding: 3px;
  }

  .stellarnav.mobile li li.has-sub a {
    padding: 10px 43px 10px 10px;
    border: 0;
  }

  .stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 3px #C4A75E;
  }

  .stellarnav a.dd-toggle .icon-plus:before {
    border-bottom: solid 3px #C4A75E;
  }

  .header_area .stellarnav>ul>li>a {
    color: #666666;
    transition: all 0.3s;
  }

  .header_area.sticky .stellarnav ul {
    text-align: center;
    padding: 0;
    transition: all 0.3s;
  }

  .stellarnav.mobile>ul {
    border-top: 0;
  }

  .stellarnav .dd-toggle {
    top: 17px;
  }

  .stellarnav a.dd-toggle .icon-plus:before {
    width: 15px;
  }

  .stellarnav a.dd-toggle .icon-plus::after {
    width: 15px;
  }

  .stellarnav.mobile>ul>li:nth-child(4) ul li:nth-child(1) {
    display: none;
  }

  .header_area.sticky .stellarnav>ul>li>a {
    color: #666666;
    transition: all 0.3s;
  }

  .header_area .stellarnav ul {
    text-align: center;
    padding: 0;
    transition: all 0.3s;
  }

  .stellarnav.mobile>ul>li>a b:nth-child(1) {
    font-size: 16px;
  }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
  border-top: none !important;
  padding: 0;
  height: auto;
  opacity: 1;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background: #333;
}

.footer_logo {
  display: none;
}

.footer_menu {
  border-bottom: none !important;
  display: flex;
}

.copy {
  background: transparent;
  color: #fff;
  border: none;
  margin-top: 0;
  border-top: 1px #ffffff54 solid;
  padding: 10px 0;
}

.copy a {
  color: #fff;
}

.footer_menu a:nth-child(1) {
  display: none;
}

.footer_menu a:hover {
  background: #02642F;
}

.footer_menu a {
  transition: all 0.3s;
}

.box_link {
  display: none;
}

.footer_info li p {
  width: auto;
  color: #fff;
  width: 40%;
}

.footer_info li p a {
  color: #fff;
}

.footer_menu a {
  display: inline-block;
  padding: 5px;
  border: 0;
  margin: 0 5px;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  background: transparent;
}

.footer_menu a:hover {
  background: #fff;
  color: #000;
}

.footer_info {
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 0;
  justify-content: center;
}

.footer_info ul {
  vertical-align: top;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 10px 0;
}

.center {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
}

.footer_info li:nth-child(1) {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  text-align: left;
  gap: 5px 10px;
}

.footer_info li:nth-child(1)::after {
  content: "營業時間：周一至周五 09:00 – 18:00";
  display: block;
  color: #fff;
  width: 40%;
}

.footer_info li:nth-child(2) {}

.footer_info li:nth-child(2)::before {
  /* content: ""; */
  display: block;
  width: 100%;
  height: 1px;
  background-color: #494949;
}



/* 浮動 */

.info_fix {
  width: auto;
  box-sizing: border-box;
  position: fixed;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: flex-end;
  justify-content: flex-end;
  transition: all 0.7s;
}

.info_fix:hover {
  width: auto;
  right: 0;
  transition: all 0.7s;
}

.info_fix_links {
  display: flex !important;
  background: #565656bf;
  width: 50px;
  padding-bottom: 0;
  border: 1px #A29080 solid;
  /* border-radius: 0px 0 0 10px; */
  overflow: hidden;
  justify-content: flex-end;
  flex-direction: column;
}

.info_fix>span {
  display: none;
}

.info_fix_links a {
  background: transparent;
}

.info_fix_links a {
  display: block;
  width: 100%;
  height: 50px;
  overflow: visible;
  border-radius: 0;
  transition: .3s;
  background: transparent;
  margin-bottom: 0;
}

.info_fix_links a span {
  width: 20px;
  height: 100%;
  display: block;
  margin: 0 auto;
}

.info_fix_links a span::before {
  background-size: contain;
}

.info_fix_links a.info_fix_phone,
.info_fix_links a.info_fix_mail {
  display: none;
}





.info_fix_links p {
  text-align: center;
  font-weight: 900;
  writing-mode: vertical-rl;
}




#to_top {
  color: #fff;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding-top: 0;
  right: 0px;
  left: auto;
  transition: all 0.7s;
}

#to_top:hover i {
  transform: translate(0, -5px);
  transition: all 0.7s;
}

#to_top i:before,
#to_top i:after {
  background: #fff;
}



@keyframes footer-text {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}



@media screen and (max-width: 1440px) {
  .footer_info li:nth-child(1)::after {
    width: 40%;
  }

  .center {
    max-width: 90%;
  }

}

@media screen and (max-width: 1024px) {
  .footer_info ul {
    flex-direction: column;
  }

  .footer_info li:nth-child(1) {
    justify-content: center;
  }
}






@media screen and (max-width: 768px) {

  .footer_info ul {
    width: 100%;
    text-align: center;
  }

  .footer_menu {
    flex-wrap: wrap;
  }

  .footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: 0;
    margin: 10px 5px;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: transparent;
    border-bottom: 1px #fff solid;
    width: 43%;
  }

}



@media screen and (max-width: 500px) {
  .footer_info li p {
    width: 100%;
    text-align: center;
  }

  .footer_info li:nth-child(1)::after {
    width: 100%;
    text-align: center;
  }
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
  display: flex;
  background: transparent;
  background-image: none;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25vh 10% 25vh 12%;
  flex-wrap: nowrap;
}


.banner::after {
  content: "";
  display: block;
  width: 60%;
  height: auto;
  aspect-ratio: 957 / 639;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner h5 {
  color: #d1a37e;
  font-family: "Constantia", serif;
  font-size: 82px;
  line-height: 1;
  text-align: left;
  font-weight: 100;
  letter-spacing: 20px;
}

.banner h5::after {
  content: "";
  display: block;
  color: #d1a37e;
  font-size: 30px;
  font-weight: bold;
  font-family: "Noto Serif TC", serif;
  margin-top: 50px;
  letter-spacing: 2px;
}

.banner.banA {
  display: none;
}

.banner.banB {
  display: none;
}


.banner.banC::after {
  background-image: url(https://pic03.eapple.com.tw/harvestidesign/banner-07.png );
}

.banner.banC h5::after {
  content: "聯絡我們";
}



.banner.banD {}



.banner.banE::after {
  background-image: url(https://pic03.eapple.com.tw/harvestidesign/banner-06.png );
}

.banner.banE h5::after {
  content: "作品分享";
}



.banner.banblog::after {
  background-image: url(https://pic03.eapple.com.tw/harvestidesign/banner-08.png );
}

.banner.banblog h5::after {
  content: "設計文章";
}










/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.products-list .more {
  border: 1px solid #c99b7e !important;
  color: #c99b7e;
}

.products-list a:hover .more {
  background: #c99b7e;
  border-color: #c99b7e;
  color: #ffffff;
}

.ori_price {
  color: rgba(173, 161, 126, 0.452);
}

/* 內容 */
.products-list .more {
  border: 1px solid #231f20 !important;
  color: #231f20;
  width: 90%;
  margin: 0 auto;
}

.products-list .item a:hover .more {
  background: #c99b7e;
  border-color: #939393;
  color: #ffffff;
}

.products-list {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}

.products-list .item a {
  padding: 15%;
}

.products-list .price {
  margin: 0;
  padding: 5%;
}

.products-list .item::before,
.products-list .item::after {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background-color: #231f2031;
}


.clearfix:before,
.clearfix:after {
  content: " ";
  display: none;
}

.products-list .item {
  width: calc(100% / 3);
  display: flex;
  vertical-align: top;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transition: all 0.5s;
  align-items: center;
}

.products-list .item:hover {
  transition: all 0.5s;
}

.products-list .item a img {
  transition: all 0.5s;

}

.products-list .item a:hover img {
  transform: scale(1.05);
  transition: all 0.5s;
}

.products-list .name {
  font-size: 16px;
  color: #231f20;
  height: auto;
  padding: 5%;
}

.products-list .name::before {
  content: "";
  text-align: center;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #231f20;
  margin: 10px 0;
}

.products-list .pic {
  display: block;
  position: relative;
  text-align: center;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.products-list .item a:hover .pic {
  transition: all 0.5s;
}



/*外層*/
.product-layer-two li a {
  color: #231f20;
  border: 1px solid #231f20;
  background: transparent;
  transition: all 0.3s;
}

.product-layer-two li:hover>a {
  background: #c99b7e;
  color: #fff;
}

.product-layer-two li.active>a {
  background: #c99b7e;
  color: #fff;
  font-weight: normal;
}

/*內層*/
.lastPage {
  background: #c99b7e;
}

.nextaction {
  background-color: #c99b7e;
}

.lastaction {
  color: #fff;
  background-color: #c99b7e;
}


/* 右邊選單 */
.sidebarBtn {
  display: inline-block;
  width: 28%;
  vertical-align: top;
  background: transparent;
  padding: 50px 50px;
  border: 1px #3F3F3F solid;
  height: 700px;
}

.sidebarBtn .price span {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}

.sidebarBtn .price {
  color: #3F3F3F;
  font-size: 22px;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid #3F3F3F;
  letter-spacing: 1px;
}

.sidebarBtn h2 {
  color: #c99b7e;
  font-size: 24px;
  font-family: 'Noto Serif SC', 'Noto Serif TC';
  margin-bottom: 20px;
  font-weight: 600;
}

.sidebarBtn .sp_price {
  display: block;
  color: #c99b7e;
  font-size: 22px;
  font-weight: bold;
}

.product_info li span {
  display: block;
  font-size: 12px;
  color: #3F3F3F;
  margin-bottom: 16px;
  font-family: 'Noto Serif TC';
  letter-spacing: 1px;
}

.product_info li {
  margin: 50px 0;
}

.product_info li .txt_box {
  display: inline-block;
  vertical-align: top;
  color: #3F3F3F;
  font-family: "微軟正黑體";
}

.amountNum {
  width: 45px;
  height: 28px;
  border: 1px solid #ccc;
  line-height: 28px;
  margin-left: 4px;
  color: #444;
  padding-left: 5px;
  background: #0000;
}

.radio-inline__input:checked+.radio-inline__label {
  background: #0000006e;
  color: #fff;
  border: none;
}

.toShare {
  display: none;
}

input[type="submit"] {
  cursor: pointer;
  border: 0;
  background: transparent;
  border: #3F3F3F 1px solid;
  color: #fff;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
  letter-spacing: 2px;
  background: #777;
  color: #fff;
}

.bx-wrapper .bx-viewport {
  border: none;
}



/* 底下選項 */
ul.prod {
  list-style: none;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 50px;
}

ul.prod>li:nth-child(1) {
  width: 60%;
}

ul.prod>li:nth-child(2) {
  width: 30%;
}

ul.prod li h3.prod-thumb {
  background: transparent;
  color: #c99b7e;
  text-align: left;
  padding: 10px 15px;
  border-bottom: 1px #3F3F3F solid;
  font-size: 22px;
}

ul.prod li .prod-panel {
  margin-top: 16px;
  color: #3F3F3F;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  transition: all 0.3s;
  font-family: "微軟正黑體";
}

.half_box {
  width: 100%;
  float: left;
  padding-right: 0;
  padding: 0px 15px;
}

.half_box li.btn_blankTop {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.productBtn {
  width: 48%;
  line-height: 50px;
  font-size: 15px;
  background-repeat: no-repeat;
  border: none;
  margin-top: 10px;
  text-align: center;
  padding-left: 0;
}

.lastaction {
  background: transparent;
  color: #3F3F3F;
  background-image: none;
  border: 1px #3F3F3F solid !important;
  transition: all 0.3s;
}

.lastaction:hover {
  color: #fff;
  background: #3F3F3F;
  transition: all 0.3s;
}

input[type="submit"]:hover {
  background: #c99b7e;
  border: #c99b7e 1px solid;
  color: #fff;
  transition: all 0.3s;
}

.qaform .breakF {
  border-radius: 5px;
  background: transparent;
  border: 1px #3F3F3F4a solid;
}


/* 相關推薦 */
.prod_related {
  background: transparent;
  padding: 20px 0;
}

.prod_related h6 {
  display: block;
  width: 80%;
  max-width: 100%;
  margin: 0;
  text-align: center;
  margin: 0 10%;
  border-bottom: 1px #3F3F3F solid;
  padding: 10px 15px;
}

.prod_related h6 span:before {
  display: none;
  content: '相關推薦';
  font-size: 22px;
  color: #c99b7e;
}

.related_list {
  margin-top: 76px;
}

.lastPage {
  background: #3F3F3F;
}

.related_list li a {
  display: block;
  padding: 4px;
  background: transparent;
}

.related_list li a img {
  transition: all 0.3s;
}

.related_list li a:hover img {
  transform: scale(1.1);
  transition: all 0.3s;
}

.related_list li a p {
  display: block;
  margin-top: 26px;
}

@media screen and (max-width: 1440px) {

  .main_part {
    max-width: 80%;

  }

}


@media screen and (max-width: 1024px) {
  .product_main {
    padding: 0;
    display: inline-block;
    width: 100%;
  }

  .products-list .item {
    width: calc(100% / 2);
  }

  .product-wrapper {
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sidebarBtn {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    background: transparent;
    padding: 50px 50px;
    border: 1px #3F3F3F solid;
    height: auto;
  }
}

@media screen and(max-width: 768px) {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/




.blog_in_page .banner h5 {
    color: #d1a37e;
    font-family: "Noto Serif TC", serif;
    font-size: 60px;
    font-weight: bold;
}


.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
  background: transparent !important;
}

.share_page .edit {
  text-align: justify;
  line-height: 180%;
}

.subbox_item a:before,
.subbox_item a:after {
  transition: 0.3s;
}

.blog_le .accordion>li {
  width: 100%;
  position: relative;
  text-align: center;
  transition: all 0.3s;
}

.blog_box_edit {
  line-height: 180%;
  text-align: justify;
}

h4.blog_category_title {
  text-align: justify;
  color: #fff;
  display: none;
}

.link a {
  width: 100%;
  display: block;
  padding: 15px 10px;
}

.accordion li .link {
  padding: 0;
}

.blog_page .main_part {
  width: 100%;
  max-width: 60%;
  margin: auto;
  padding: 0px;
}

.clearfix:before,
.clearfix:after {
  display: none;
}




/* 選單 */
.blog_box {
  min-height: 20vw;
  padding: 0px;
  display: flex;
  flex-direction: column;
}

.blog_le {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  /* padding: 0; */
}

h5.blog_le_t {
  display: none;
  font-size: 24px;
  font-weight: 500;
  color: #c99b7e;
  font-family: serif;
  letter-spacing: 2px;
  margin-bottom: 80px;
  width: auto;
  font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}

.blog_search {
  width: 90%;
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
}

.blog_search form {
  width: 20%;
  position: relative;
}

.blog_le .accordion {
  list-style-type: none;
  margin: auto;
  border-radius: 0;
  border: none;
  overflow: visible;
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-around;
  border-top: 1px #fff solid;
}

.accordion li .link a {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 5px 10px;
  font-weight: bold;
  transition: all 0.3s;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
  color: #c99b7e !important;
  transition: all 0.3s;
}

.accordion li::before {
  content: "";
  display: block;
  background-color: #c99b7e;
  height: 2px;
  width: 0%;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.accordion li:hover:before,
.blog_le .accordion>li.on_this_category::before {
  width: 95%;
  transition: all 0.5s;
}

.blog_search input[type=search] {
  outline: none;
  box-sizing: border-box;
  width: 100%;
  font-size: 14px;
  color: #fff;
  border: 0;
  border-radius: 0;
  border-bottom: 1px #fff solid;
  padding: 10px 35px 10px 10px;
  background: transparent;
}

.blog_search input[type=submit] {
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 38px;
  height: 38px;
  background: url(../images/search-icon.png) no-repeat 9px center transparent;
  border: none;
  transform: scaleX(-1);
}

.blog_search input[type="submit"]:hover {
  background: url(../images/search-icon.png) no-repeat 9px center transparent;
  border: none;
  color: #fff;
  transition: all 0.3s;
}

.blog_search input[type=search]:focus {
  color: #fff;
}

.blog_box_edit {
  color: #fff;

}

.news_related h6 span:before {
  content: '相關文章';
  font-size: 24px;
  color: #c99b7e;
}

.lastPage {
  background: #c99b7e;
}

.news_related {
  background: #111;
}

.news_related_list li a {
  background: transparent;
  color: #fff;
}

.news_related_list li a p {
  color: #fff;
}


/*文章分享變1排3個*/
.blog_page .main_part {
  max-width: 80%;
}

.blog_list_le,
.blog_list_ri {
  width: 100%;
}

.blog_subbox {grid-template-columns: repeat(3,1fr);}

.subbox_item {
  width: 100%;
  padding: 0px;
}

@media screen and (max-width: 1024px) {
  .subbox_item {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .subbox_item {
    width: 100%;
  }
}


/* 內容 */
.blog_ri {
  width: 100%;
}

.blog_list_ri p {
  color: #c5c5c5;
}


.subbox_item {
  position: relative;
  border-bottom: 0.3px #231f2031 solid;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.subbox_item::before,
.subbox_item::after {
  content: "";
  display: inline-block;
  width: 0.5px;
  background-color: #231f2031;
  height: 85%;
  vertical-align: middle;
  opacity: 1;
  transition: all 0.3s;
}

.subbox_item:hover:before,
.subbox_item:hover:after {
  opacity: 0;
  transition: all 0.3s;
}

.subbox_item a:before {
  display: none;
  right: 30px;
  opacity: 1;
  font-size: 152x;
}

.subbox_item a:after {
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #c99b7e61;
  opacity: 0;
  border: 1px #ddd solid;
  transition: all .5s;
}

.subbox_item a {
  display: flex;
  padding: 5%;
  flex-direction: column;
}

.blog_list_ri h5 {
  font-weight: 500;
  font-size: 20px;
  color: #c99b7e;
  font-family: 'Noto Serif SC', 'Noto Serif TC';
}


.accordion li+li .link {
  border-top: 0;
}



.blog_back a.article_btn_back {
    background: #c99b7e;
}




@media screen and (max-width: 1440px) {
  .blog_page .main_part {
    max-width: 80%;
  }

}





@media screen and (max-width: 768px) {
  .blog_search form {
    width: 20%;
    position: relative;
  }

}



@media screen and (max-width: 500px) {
  .products-list .item {
    width: calc(100% / 1);
  }

  .main_part {
    max-width: 90%;
  }

  .products-list .item a {
    padding: 10%;
  }
}


/**/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
  max-width: 80%;
  padding: 0px 0;
}

.album_info_page .banner h5 {
    color: #d1a37e;
    font-family: "Noto Serif TC", serif;
    font-size: 60px;
    font-weight: bold;
}






.show-list .item:hover .show_name {
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}

.show-list .show_pic {
  height: 0;
  padding-bottom: 65%;
  bottom: 0;
  aspect-ratio: unset;
}

.show-list .show_pic img {
  display: inline-block;
  max-width: 100%;
  min-width: 100%;
  object-fit: cover;
  height: auto;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  -webkit-object-fit: cover;
  filter: grayscale(0.5) brightness(0.5);
  transition: all 0.3s;
}
.show-list a:hover .show_pic img {
  filter: grayscale(0) brightness(1);
  transition: all 0.3s;
}

.show-list .item:hover .show_pic img {
  transform: scale(1.05);
  transition: all 1s;
}

.show-list {
  display: flex;
}

.clearfix:before,
.clearfix:after {
  display: none;
}

.show-list .show_name {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.15em;
  margin-top: 0;
  overflow: hidden;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  font-weight: 500;
  z-index: 3;
  transform: translate(-50%, 0);
  text-align: center;
  margin-top: 10px;
  transition: all 0.3s;
}


.overlay {
  background: rgba(0, 0, 0, 0.37);
  opacity: 0.3;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
  transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}

.show-list .item:hover .overlay {
  opacity: 0;
  transform: scale(1);
  transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}








/*次分類頁面*/
.other_album_choice li {
  background: transparent;
  border-radius: 0;
}

.other_album_choice li a {
  color: #494949;
}

.other_subalbum li p {
  line-height: 220%;
  text-align: center;
}

.other_subalbum li a div {
  height: 0;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  display: none;
}

.other_subalbum li a img {
  max-width: 100%;
  min-width: 100%;
  object-fit: cover;
  height: auto;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  filter: grayscale(0);
  -webkit-object-fit: cover;
  transition: all .4s;
}

.other_subalbum li a:hover img {
  transform: scale(1.02);
  transition: all 0.5s;
}

.other_subalbum li a:hover div:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: all .4s;
}

.album_fixed_title {
  display: none;
}


.album_info_page .show_content {
  padding: 110px 0 50px;
}







/*照片頁*/
.pic-list .show_pic {
  padding-bottom: 66%;
}

.pic-list .show_pic img {
  max-width: 100%;
  min-width: 100%;
  object-fit: cover;
  height: auto;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  -webkit-object-fit: cover;
}

.show-list .item {
}

.album_page .show_content {
  margin: auto;
  padding: 0;
  max-width: 100%;
}

.subalbum-menu {
  margin: 30px 0;
  padding: 0;
}

.subalbum-menu h2 {
  display: none;
}

.block {
  background: #494949;
}

.other_subalbum {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.other_subalbum li {
  display: inline-block;
  background: #fff;
  width: calc(100% / 4 - 20px);
  margin: 10px;
  border: none !important;
  position: relative;
}

.page strong,
.page a {
  display: inline-block;
  min-width: 29px;
  height: 29px;
  text-align: center;
  line-height: 29px;
  border: 0;
  border-radius: 0;
  padding: 0 10px;
  margin: 0 10px;
}

.album_fixed_title {
  display: none;
}

.other_subalbum li a {
  position: relative;
}

.album_descrip {
  color: #D1D1D1;
  font-size: 20px;
  line-height: 1.4;
}

.pic-list .item h6 {
  line-height: 220%;
  text-align: left;
  color: #D1D1D1;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 1;
  transition: all 0.3s;
}

.pic-list {
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}


.other_subalbum li p {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2px;
}

.other_subalbum li:hover p {
  opacity: 0;
  transition: all 0.3s;
}

.pic-list .item:hover h6 {
  opacity: 1;
  transition: all 0.3s;
}

.pic-list .item {
  position: relative;
}

.album_info_page .pic-list .show_pic {
  height: 0;
  padding-bottom: 56%;
  aspect-ratio: 0;
}



.show-list.other_subalbum .item {
  width: 100%;
  background: transparent;
}





@media screen and (max-width: 1024px) {
  .other_subalbum li {
    width: calc(100% / 2 - 20px);
  }

  .show-list.other_subalbum .item {
    width: calc(100% / 2 - 10px);
  }

}






@media screen and (max-width: 768px) {

  /*照片頁*/
  .pic-list .item {
    width: 96%;
    margin: 10px 2%;
  }

  .album_page .show_content,
  .album_class_page .show_content {
    margin: auto;
    padding: 0;
    max-width: 100%;
  }

  .show-list {
    flex-wrap: wrap;
  }


  .show-list .item:hover .show_name {
    opacity: 1;
  }

  .show-list.other_subalbum .item {
    width: 100%;
  }

  .pic-list {
    grid-template-columns: unset;
  }
}


@media screen and (max-width: 500px) {
  .other_subalbum li {
    width: 100%;
  }

}

/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.other_select_page .promotion_title h2 {
  display: none;
  border-bottom: 2px solid #c99b7e;
}

.other_select_page .promotion_title {
  display: none;
  border-bottom: 1px solid #c99b7e;
}

.other_select_page .other_promotion {
  display: none;
}

.other_select_page .page {
  display: none;
}

@media screen and (max-width: 768px) {

  /* 開啟手機板下方按鈕所需設定 */
  #bottom_menu {
    display: block;
  }

  .footer.with_shopping_mode {
    padding: 30px 0 70px;
  }

  #to_top {
    bottom: 60px;
    display: none;
  }

  .nav-menu {
    margin: 0;
  }

  .nav-menu>li:not(.tp_links) {
    padding-right: 0;
  }

  .nav-dropdown>li {
    text-align: left;
  }

  .nav-dropdown>li>a {
    width: calc(100% - 45px);
  }

  /*手機版LOGO設定*/
  .footer_logo {
    margin-left: unset;
    margin: auto;
    text-align: center;
  }

}

@media screen and (max-width: 600px) {

  /*手機板大圖*/
  /*
.swiper-slide img { display:none; }
.swiper-slide {    width: 100%;    height: 0;    padding-bottom: calc(100% / 3 * 4);}
.swiper-slide:nth-child(1) { background-image:url(https://pic03.eapple.com.tw/.../Banner-03.png) ; background-size:cover;   background-position: center;}
.swiper-slide:nth-child(2) { background-image:url(https://pic03.eapple.com.tw/.../Banner-04.png) ; background-size:cover;   background-position: center;}
*/

}


/*聯絡我們MAP區改滿版編輯區*/
.contact_content {
  width: 100%;
  padding: 0;
}

.contact_page .main_part {
  max-width: 100%;
  padding: 0;
}

.contact_page .path {
  display: none;
}

.contact_content .information_left {
  width: 100%;
  padding: 0;
}

.contact_content .information_right {
  width: 90%;
  margin: 0 auto;
  padding: 0 10px;
  display: block;
}

.contact_content .information_left>h4.blank_letter {}

.contact_content .list_before {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  color: #fff;
}

.contact_content .list_before>li:not(li:last-of-type) {}



@media screen and (max-width: 768px) {
  .contact_content .information_right {
    margin: 50px auto;
  }
}

/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {
  max-width: 60%;
}

.contact_page .main_part {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.blank_letter {
  font-family: "Noto Serif TC", serif;
  padding-top: 0;
  font-size: 20px;
  padding: 0;
  color: #c99b7e;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.3em;
  width: fit-content;
  font-weight: bold;
  margin-bottom: 30px;
}

.blank_letter::before {
  content: "FORM";
  display: BLOCK;
  font-size: 40px;
  color: #c99b7e;
  font-family: "Constantia", serif;
  letter-spacing: .3em;
  font-weight: 300;
}

.blank_letter.i::before {
  content: "CONTACT";
}

.list_before.info li {
  padding-left: 40px;
  color: #c5c5c5;
  margin: 13px 0;
}


.contact_form li .form__label {
  color: #fff;
  width: 150px;
  max-width: 150px;
  margin-left: -90px;
  text-align: left;
}

.contact_le_map a {
  background: #494949;
  color: #fff;
}

.contact_form li.last cite {
  background: #c99b7e;
  color: #fff;
  width: 220px;
}

.contact_content .information_left {
  display: flex;
  width: 100%;
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 100px;
  flex-direction: column;
}

.contact_content .information_right {
  width: 100%;
  padding-left: 0px;
}

.contact_le_nomap {
  transition: all .5s;
}

.contact_le_nomap:hover {
  filter: grayscale(0);
  transition: all .5s;
}


.contact_form li input.noborder {
  border: none;
  border: 1px #ffffffab solid;
  background: #ffffff14;
  color: #fff;
  transition: all 0.3s;
}

.contact_form li {
  margin-bottom: 0px;
  border-bottom: 1px solid #4949493d;
  padding: 20px 0;
  padding-left: 130px;
}

/* .contact_form li:nth-child(9) .form__label{
    width: 130px;
    margin-left: -100px;
}
.contact_form li:nth-child(9){
} */
.contact_form li textarea.noborder {
  color: #fff;
  border: 1px #ffffffab solid;
  background: #ffffff14;
  transition: all 0.3s;
}

.contact_content form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.form__insert input {}


.contact_content {
  margin: auto;
  padding: 0;
}

.note {
  font-size: 13px;
  text-align: right;
  letter-spacing: 0;
  text-wrap: nowrap;
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translate(0, -50%);
}

.contact_form {
  margin: 0 auto;
  padding: 0 0 50px;
  font-size: 15px;
  color: #fff;
  max-width: 100%;
  position: relative;
}

.contact_form li:nth-last-of-type(3) .form__label {
  padding-left: 10px;
}



.contact_le_map {
  display: none;
}



@media screen and (max-width: 768px) {
  .contact_form li.last cite {
    width: 160px;
  }

  .contact_content .information_right {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .contact_form li.last {
    display: flex;
    justify-content: center;
  }

  .banner::before {
    width: 50%;
  }

  .contact_form {
    max-width: 100%;
  }

  .note {
    display: block;
    margin-top: 10px;
    text-align: left;
  }

  .blank_letter::after {
    bottom: -60px;
    width: 310px;
    white-space: break-spaces;
  }

}


@media screen and (max-width: 500px) {
  .blank_letter span::before {
    bottom: -60px;
    text-wrap: wrap;
  }

  .blank_letter::after {
    bottom: -20px;
    width: 320px;
    text-wrap: wrap;
  }

  .note {
    left: 0px;
    top: 230%;
  }

  .blank_letter {
    font-family: "Montserrat", serif;
    padding-top: 0;
    font-size: 16px;
    color: transparent;
    background: transparent;
  }
}