@charset "utf-8";
@import url("responsive-tables.css");
@import url("footer.css?20250123");
@import url("colorbox.css");
@import url("notosanstc.css");
/*黑體*/

A:link {
  FONT-STYLE: normal;
  TEXT-DECORATION: none;
  color: #e87018;
  transition: 0.3s;
}

A:visited {
  FONT-STYLE: normal;
  TEXT-DECORATION: none;
  color: #e87018
}

A:active {
  FONT-STYLE: normal;
  TEXT-DECORATION: none;
  color: #999
}

A:hover {
  FONT-STYLE: normal;
  TEXT-DECORATION: none;
  opacity: .7;
}

html {
  font-size: 62.5%;
  /*10 ÷ 16 × 100% = 62.5%;*/
}

body {
  margin: 0px;
  padding: 0px;
  font-size: 1.6rem;
  /*1.3 × 10px = 13px */
  color: #666;
  line-height: 2.4rem;
  background: url(../images/bg.jpg) no-repeat center top;
  font-family: Arial, 'Noto Sans TC', 微軟正黑體, Helvetica, sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.f10px {
  font-size: 1.0rem;
}

.f12pt {
  font-size: 1.2rem;
}

.f16px {
  font-size: 1.6rem;
}

.f18px {
  font-size: 1.8rem;
}

.f20px {
  font-size: 2rem;
}

.f30px {
  font-size: 3rem;
}

.f36px {
  font-size: 3.6rem;
}

.fblack {
  font-size: 3.6rem;
  font-family: 'Archivo Black', Arial Black, sans-serif;
}

.c_orang {
  color: #f37a73;
}

.c_bluegreen {
  color: #06b5ae;
}

.c_gray01 {
  color: #828282;
}

.c_gray02 {
  color: #666;
}

.c_gray03 {
  color: #bbb;
}

.c_gray_light01 {
  color: #c6c6c5;
}

.c_pink {
  color: #ec4762;
}

.c_black {
  color: #000;
}

.c_red {
  color: #e70000;
}

.c_reddeep {
  color: #9d2830;
}

.liheight16 {
  line-height: 16px;
}

.strikethrough {
  text-decoration: line-through;
}

.both {
  clear: both;
}

.float_r {
  float: right;
}

.float_l {
  float: left;
}

.web_show {}

.web_hid {
  display: none;
}

/* -------------------------------- 
but.icon
-------------------------------- */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
}

select,
input,
textarea {
  font-size: 1.5rem;
  font-family: Arial, 'Noto Sans TC', 微軟正黑體, Helvetica, sans-serif;
  padding: 8px;
}

input {
  cursor: pointer;
}

.back {
  text-align: center;
  clear: both;
  letter-spacing: 6px;
  margin: 5%;
}

.back a:link,
.back a:visited {
  font-size: 2.0rem;
  color: #fff;
  border-radius: 40px;
}

.send {
  text-align: center;
}

.send input {
  font-size: 2.0rem;
  color: #fff;
  border: 0;
  border-radius: 40px;
  letter-spacing: 20px;
  padding: 5px 30px 5px 50px;
  margin: 30px 0;
  background-color: #f4940b;
}

.send input:hover {
  background-color: #aaa;
}

.addtocar {
  width: 232px;
  height: 46px;
  font-size: 2.0rem;
  color: #fff;
  letter-spacing: 5px;
  text-indent: 40px;
  border-radius: 40px;
  background: #eb6877 url(../images/ico_addcart.png) no-repeat 25px center;
  background-size: 15%;
  border: 0;
  margin-top: 30px;
}

.addtocar:hover {
  background: #c83f4e url(../images/ico_addcart.png) no-repeat 25px center;
  background-size: 15%;
}

/* scrollbar 
::-webkit-scrollbar {width: 10px; }
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {display: none; }
::-webkit-scrollbar-track-piece {background-color: #ddd; }
::-webkit-scrollbar-thumb:vertical {background-color: #999;}
*/
/*   all   */

/* -------------------------------- 
header
-------------------------------- */
header {
  position: absolute;
  z-index: 100;
  width: 100%;
  background: #fff;
  height: 150px;
  padding: 10px;
}

#header {
  position: relative;
  width: 100%;
  max-width: 1680px;
  margin: auto
}

#header.hid {
  animation: show 1s forwards;
  opacity: 0;
}

@keyframes show {
  100% {
    opacity: 1;
    transition: opacity 3s;
  }
}

#header.is-hidden {
  opacity: 0;
  position: fixed;
  top: -20%;
  left: 0;
  -webkit-transition: top 0.3s, opacity 0.3s;
  -moz-transition: top 0.3s, opacity 0.3s;
  transition: top 0.3s, opacity 0.3s;
}

#header.is-hidden.slide-in {
  top: 0%;
  opacity: 1;
  background: transparent;
}

.logo {
  float: left;
}

.logo img {
  width: 200px;
  margin-top: 10px;
  margin-left: 5%;
  animation: logoimglag 0.7s forwards;
  -ms-transform: scale(.7, .7);
  -webkit-transform: scale(.7, .7);
  transform: scale(.7, .7);
}

.is-hidden>.logo img {
  width: 200px;
  margin: 0 3px;
  animation: logoimg 0.7s forwards;
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

@keyframes logoimg {
  100% {
    -ms-transform: scale(.7, .7);
    -webkit-transform: scale(.7, .7);
    transform: scale(.7, .7);
  }
}

@keyframes logoimglag {
  100% {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

#h_submenu_m {
  display: none;
}

#main_bg {
  position: relative;
  width: 100%;
  max-width: 1680px;
  padding: 40px 0;
  margin: auto;
}

#main_bg_80p {
  position: relative;
  width: 100%;
  padding: 40px 10%;
  margin: auto;
}

#main_bg_all {
  position: relative;
  width: 100%;
  padding: 40px 0;
}

#main_bg img,
#main_bg_all img,
#main_bg_80p img {
  max-width: 100%;
}

/*   ind   */
.ad_ind {
  width: 100%;
  text-align: center;
}

.ad_hid {
  min-height: 130px;
}

.ad_bottom {
  margin: 24px auto;
}

.ad_bottom .linelink a {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 3%;
}

.ad_bottom .linelink a .img {
  max-width: 160px !important;
}

.ad_bottom .linelink a h4 {
  color: #333;
  font-size: 2.4rem;
  line-height: 1.4;
}

/*   left   */
aside,
article {
  display: initial;
}

.left {
  display: inline-block;
  float: left;
  vertical-align: top;
  width: 20%;
  clear: both;
}

#main_bg_all .left,
#main_bg_80p .left {
  display: none;
}

.left img {
  max-width: 100%;
  margin-bottom: 30px;
}

.menu {
  margin-bottom: 60px;
  font-size: 1.5rem;
}

.menu_title {
  font-size: 11px;
  color: #666;
  margin-left: 20px;
}

.menu_a {
  border-bottom: 1px dashed #b1b1b1;
  border-top: 1px dashed #b1b1b1;
  padding: 10px;
  margin-bottom: 40px;
}

.menu_a a:link,
.menu_a a:visited {
  color: #e97f79;
}

.menu_a a:active,
.menu_a a:hover {
  color: #666
}

.menu_abg {
  background: url(../images/icon_point_02.jpg) no-repeat left 10px;
  padding-left: 20px;
}

.menu UL {
  MARGIN: 0px;
  PADDING: 0px;
  Z-INDEX: 2;
  POSITION: relative;
  font-weight: bold;
  line-height: 1.6rem;
}

.menu LI {
  PADDING: 0px;
  MARGIN: 0px;
  list-style-type: none;
  WIDTH: 100%;
}

.menu LI A {
  display: inline-block;
  padding-left: 30px;
  color: #666;
  WIDTH: 100%;
  min-height: 32px;
  padding: 12px 0 12px 20px;
  transition: 0.5s;
  border-bottom: 1px dashed #ccc;
}

.menu LI A:visited {
  color: #666;
}

.menu LI A:hover {
  BACKGROUND-POSITION: -260px top;
  TEXT-DECORATION: none;
  color: #e87018;
  font-weight: bold;
}

.menu LI div.currMenu {
  display: inline-block;
  color: #bba164;
  WIDTH: 100%;
  min-height: 32px;
}

.menu LI div.currMenu A {
  color: #e87018;
}

.menu>UL>LI>A.currMenu {
  display: inline-block;
  color: #e87018;
  WIDTH: 100%;
  min-height: 28px;
  font-weight: bold;
}

.menu UL ul.menu_sub01 {
  font-size: 1.6rem;
  font-weight: normal;
  padding-left: 0px;
}

.menu UL ul.menu_sub01 .currMenu {
  color: #e87018;
  font-weight: bold;
}

.menu_sub01 A {
  display: inline-block;
  WIDTH: 90%;
  padding: 5px 0;
  min-height: 26px;
  line-height: 16px;
  padding-top: 10px;
}

.menu_sub01 A:link,
.menu_sub01 A:visited {
  margin-left: 30px;
  padding-left: 30px;
  color: #333;
  text-decoration: none;
  background: url(../images/mus_02.gif) no-repeat 0px top;
  border-bottom: 1px dotted #ccc;
}

.menu_sub01 A:active,
.menu_sub01 A:hover,
.menu_sub01 A:focus {
  margin-left: 30px;
  padding-left: 30px;
  color: #e87018;
  text-decoration: none;
  background: url(../images/mus_02.gif) no-repeat 0px bottom;
  BACKGROUND-POSITION: -300px top;
  border-bottom: 1px solid #e87018;
}

.menu UL ul.menu_sub02 {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 18px;
  margin-bottom: 10px;
}

.menu_sub02 A {
  display: inline-block;
  WIDTH: 91%;
  padding: 5px 0;
  BACKGROUND: url(../images/mus_03.gif) no-repeat 0px 50%;
}

.menu_sub02 A:link,
.menu_sub02 A:visited {
  color: #cf5801;
  padding-left: 30px;
  text-decoration: none;
  background: url(../images/mus_03.gif) no-repeat;
  border-bottom: 0;
}

.menu_sub02 A:active,
.menu_sub02 A:hover {
  padding-left: 30px;
  text-decoration: none;
  background: url(../images/mus_03.gif) no-repeat;
  BACKGROUND-POSITION: -228px top;
}

/*   content   */
.content {
  padding: 0px 0px 0px 30px;
  text-align: left;
  display: inline-block;
  width: 80%;
  clear: both;
}

.content_all {
  width: 100%;
}

.content_all img {
  max-width: 100%;
}

h1 {
  font-size: 22px;
  display: inline;
}

.h1 {
  color: #615a49;
  padding: 5px 0px 0px 0px;
  font-family: Arial, 'Noto Sans TC', 微軟正黑體, Helvetica, sans-serif;
}

h2 {
  font-size: 18px;
  margin: 0px;
  font-family: Arial, 'Noto Sans TC', 微軟正黑體, Helvetica, sans-serif;
}

.title {
  margin-bottom: 20px;
  margin-top: 10px;
}

.breadcrumbs {
  font-size: 15px;
  color: #d4d4d4;
  margin: 0px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.breadcrumbs a:link,
.breadcrumbs a:visited {
  color: #888;
  padding-top: 10px;
}

.breadcrumbs a:active,
.breadcrumbs a:hover {
  color: #e87018;
  text-decoration: underline;
}

.breadcrumbs.layout {
  float: right;
}

.content_tit {
  text-align: center;
}

.content_main {
  margin: 0px;
}

.content_main_90p {
  width: 90%;
  margin: auto;
}

#main_bg_all .content,
#main_bg_80p .content {
  width: 100%;
  padding: 0;
}

#main_bg_80p .content_main img {
  max-width: 100%;
}

/*  product  */
.proli_case {
  padding: 5px 0px 5px 0px;
  margin-bottom: 20px;
}

.proli {
  position: relative;
  font-family: Arial, Helvetica, 'cwTeXMing', 'Noto Sans TC', sans-serif;
  text-align: center;
  float: left;
  font-size: 11px;
  width: calc(100%/4 - 20px);
  margin: 0px calc(20px * 4 / 4) 0 0;
  line-height: 18px;
}

.proliimg {
  width: 100%;
  text-align: center;
  overflow: hidden;
  /* Firefox, Chrome */
  white-space: nowrap;
  /* IE */
  *font-size: 180px;
  /* 200px * 0.9 = 180px */
}

.proliimg:after {
  content: ".";
  font-size: 0;
  -webkit-text-size-adjust: none;
}

.proliimg img {
  vertical-align: middle;
}

.proli img {
  width: 100%;
}

.proliimg {
  position: relative;
}

.proliimg figcaption::after,
.proliimg img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.proliimg figcaption::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .5);
  content: '';
  opacity: 0;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.proliimg:hover figcaption::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.proli a:link,
.proli a:visited {
  color: #706e6c;
}

.proli a:active,
.proli a:hover {
  color: #b5a873;
}

.proli_des {
  text-align: left;
  width: 100%;
}

.proli_des img {
  margin: 0 auto;
  width: auto;
}

.proli_name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
  margin-top: 8px;
  text-overflow: ellipsis;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}

.proli_price {
  margin: 20px 0 10px;
  font-size: 13px;
}

.pro_detail {
  float: right;
  width: 52%;
}

.pro_topimg {}

.pro_detailimg {
  float: left;
  width: 45%;
  display: block;
}

.pro_midimg {}

.pro_midimg_s img {
  border: 1px solid #d3d3d3;
  margin: 6px 6px 0px 0px;
  float: left;
}

.pro_name {
  font-size: 16px;
  color: #756154;
  font-family: Arial, 'Noto Sans TC', 微軟正黑體, Helvetica, sans-serif;
}

.pro_price {
  font-size: 11px;
  color: #bbb;
  margin: 20px 0;
}

.pro_share {
  margin: 20px 0;
  color: #bbb;
}

.pro_descript {
  width: 100%;
  overflow-x: auto;
  background: url(../images/titles_description.jpg) no-repeat;
  background-size: 100%;
  padding-top: 80px;
}

.pro_descript img {
  max-width: 100%;
}

.back {
  text-align: center;
  clear: both;
  margin-top: 30px;
}

.proli_send {
  margin-top: 20px;
  display: none;
}

.but_inquiry {
  margin-top: 10px;
}

.pro_qty {
  line-height: 36px;
  padding: 16px;
  background-color: #f7f7f7;
}

.pro_qty img {
  margin: 0px 4px;
  border: 1px solid #b5b4b4;
  width: 44px;
  margin-bottom: 20px;
}

.pro_qty input {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 4px 10px;
  background-color: #999;
  border: 0;
}

.pro_qty input:hover {
  background-color: #666;
}

.pro_qty input.sel_qty02 {
  padding: 4px 10px 3px;
  width: 40%;
  min-width: 60px;
  max-width: 80px;
  color: #555;
  background-color: #fff;
  border: 1px solid #d2d2d2;
}

.pro_alsolike {
  background: url(../images/titles_alsolike.jpg) no-repeat;
  background-size: 230px;
  width: 98%;
  padding-top: 80px;
  margin-top: 30px;
}

.but_buy {
  display: none;
}

.shopnote {}

.shopnote ol,
.shopnote li {
  list-style: auto;
}

.checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.invoice_type {
  display: flex;
  flex-wrap: wrap;
}

.invoice_type .col {
  margin: 0 20px 12px;
  line-height: 2.2;
}

.privacy h2 {
  margin-bottom: 12px;
  margin-top: 24px;
}

/*   search  */
.search {
  background: url(../images/search_bg.jpg) no-repeat left top;
  padding: 40px 0 10px 20px;
}

.searchbox {
  font-size: 13px;
  color: #333;
  width: 75%;
  padding: 8px;
  border: 1px solid #bbb;
}

/*  IE高度寫法 .searchbox{  height:20px; height:21px\9;height:21px\0;}  */
.search_go {}

/*   pagination   */
#pagination {
  margin-top: 20px;
  margin-bottom: 30px;
}

#pagination SPAN,
.onthis {
  line-height: 21px;
  BORDER: #c2b78d 1px solid;
  BACKGROUND: #c2b78d;
  COLOR: #fff;
  FONT-WEIGHT: bold;
  PADDING: 0px 8px;
  MARGIN: 0px 2px 10px;
  DISPLAY: block;
  FLOAT: left;
}

#pagination A {
  DISPLAY: block;
  COLOR: #777;
  TEXT-DECORATION: none;
  line-height: 21px;
  BACKGROUND: #fff;
  BORDER: 1px solid #c6c6c6;
  FLOAT: left;
  PADDING: 0px 8px;
  MARGIN: 0px 2px 10px;
}

#pagination A:hover {
  BORDER: #bdbdbd 1px solid;
  COLOR: #fff;
  TEXT-DECORATION: none;
  PADDING: 0px 8px;
  MARGIN: 0px 2px;
  DISPLAY: block;
  BACKGROUND: #bdbdbd;
  FLOAT: left;
}

#pagination A:active {
  COLOR: #000;
}

#pagination .prevnext a {
  position: relative;
  border: 0px;
  padding: 0px;
  margin: 0px;
  BACKGROUND: #fff;
  margin-top: -8px;
}

#pagination .prevnext A:hover:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: rgba(255, 255, 255, .5);
}

.rwd_br {
  display: none;
}

.gopage {
  display: inline-block;
  padding-left: 20px;
  margin-top: -5px;
}

/*   login   */
.member_bg {
  background-color: #f2f2f2;
  overflow: hidden;
}

.member_title {
  margin-top: 40px;
  text-align: center;
}

.member_link {}

.member_link li {
  padding-bottom: 18px;
  width: 100px;
}

.member_link li a {
  color: #8c6239;
}

.member_link li a:hover {
  text-decoration: underline;
  color: #d4ab2f;
}

.member_case {}

.member_murwd {
  display: none;
}

.member_policy {
  width: 92%;
  height: 250px;
  overflow: scroll;
  border: 1px solid #999;
  margin-bottom: 7px;
}

.date_bg {
  background-color: #f3f1e8;
}

.login_l {
  width: 65%;
  height: 260px;
  margin: auto;
  padding: 6%;
  background-color: #fff;
  border-top: 1px solid #4bbaa7;
}

.login_r {
  display: none;
  float: right;
  width: 45%;
  height: 260px;
  margin-right: 5%;
  padding: 6%;
  color: #fff;
  text-align: center;
  border-top: 1px solid #4bbaa7;
  background: url(../images/member_login.jpg);
  background-size: cover;
}

.login_form {
  width: 100%;
}

.ico_checkbut {
  background-color: #e9e5e2;
  padding: 8px 10px;
  border-radius: 40px;
}

/*   contact   */
.contact_info {
  float: right;
  width: 30%;
}

.contact_info strong,
.contact_info span {
  color: #84ccc9;
}

.contact_td {
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 67%;
}

.contact_td .col {
  flex: 1;
  padding: 2%;
  text-align: center;
}

.contact_td h4 {
  color: #333;
}

.contact_td img {
  max-width: 200px !important;
}

.contact_form {
  WIDTH: 100%;
  padding: 5px;
  border: 1px solid #ddd;
}

.contact_info ul {
  padding: 10px;
}

.contact_info ul li {
  padding-left: 30px;
}

.con_add {
  background: url(../images/contact_ico_add.png) no-repeat;
  background-position-y: 4px;
  background-size: 30px;
}

.con_phone {
  background: url(../images/contact_ico_phone.png) no-repeat;
  background-position-y: 4px;
  background-size: 30px;
}

.con_fax {
  background: url(../images/contact_ico_fax.png) no-repeat;
  background-position-y: 4px;
  background-size: 30px;
}

.con_mail {
  background: url(../images/contact_ico_mail.png) no-repeat;
  background-position-y: 4px;
  background-size: 30px;
}

.form01 {
  width: 97%;
  padding: 5px;
  border: 1px solid #c2c2c2;
}

.form02 {
  width: 60%;
  padding: 5px;
  border: 1px solid #c2c2c2;
}

.w_60p {
  width: 60%;
  margin: 0 auto;
}


/*   news  */
.news_listpic {
  margin-right: 40px;
}

.news_listpic img {
  margin-bottom: 60px;
}

.newsli_name {
  display: table;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
  background-color: #e87018;
  padding: 7px 20px;
  margin-bottom: 10px;
}

.newsli_name a:link,
.newsli_name a:visited {
  color: #fff;
}

.newsli_name a:active,
.newsli_name a:hover {}

.news_w {
  width: 80%;
  margin: auto;
}

.news_date {
  font-size: 1.1rem;
}

.news_content img {
  height: auto;
}

.faq_more {
  font-size: 13px;
  margin-bottom: 20px;
}

.faq_more a:link,
.faq_more a:visited {
  color: #999;
  border-radius: 50px;
  padding: 8px 10px;
  border: 1px solid #999;
  background-color: #fff;
}

.faq_more a:active,
.faq_more a:hover {
  color: #fff;
  border: 1px solid #999;
  background-color: #999;
}

/*   table   */
.tdmain_a {
  color: #333;
  padding: 5px;
  border-bottom: 1px solid #d6d3c6;
}

.tdmain_b {
  background-color: #f6f6f6;
  padding: 5px;
  border-bottom: 1px solid #e0e0e0;
}

.tdmain_c {
  background-color: #7f7f7f;
  padding: 5px;
  color: #FFF;
}

.td01 {
  background-color: #fff;
  padding: 5px;
  border-bottom: 1px solid #e7e7e7;
}

.td02 {
  background-color: #fafafa;
  padding: 5px;
  border-bottom: 1px solid #e7e7e7;
}

.td03 {
  padding: 10px 5px;
}

/*  rwd table  */
.rwd-table {
  border-collapse: collapse;
}

.rwd-table th,
.rwd-table td {
  text-align: center;
}

.ftxt_l {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .rwd-table tr {
    border-bottom: 1px solid #d0d0d0;
  }

  .rwd-table th {
    display: none;
  }

  .rwd-table td {
    display: block;
    border: none;
    text-align: left;
    padding: 5px 0;
    margin-left: 75px;
  }

  .rwd-table td:before {
    content: attr(data-th) " ";
    float: left;
    font-weight: bold;
    min-width: 75px;
    margin-left: -75px;
  }
}


/*Global Links CSS*/
@media print {
  header {
    position: relative;
    height: 100px;
  }

  #header.is-hidden.slide-in {
    top: 0;
  }

  #header.is-hidden {
    position: relative;
  }

  #main_bg_ind {
    margin-top: 0;
  }

  #main_bg,
  #main_bg_all {
    padding: 0;
  }

  .ad_hid {
    display: none;
  }

  .logo img {
    width: 100px;
  }

  .ad_hid {
    display: none;
  }

  .ind_b_tit {
    font-size: 2rem;
  }

  .ind_b_tit span {
    display: none;
  }

  .search {
    background: transparent;
  }

  .searchbox {
    width: 60%;
  }

  .search_go {
    width: 30px;
    height: 30px;
  }

}

@media (min-width: 1921px) {
  #header.is-hidden {
    left: 16%;
  }

  #main_bg {
    width: 100%;
    max-width: none;
    padding: 40px 12%;
  }
}

@media screen and (min-width: 1860px) {

  #main_bg,
  #main_bg_all {
    padding: 0;
  }

  #main_bg_80p {
    padding: 40px 20%;
  }

  #header {
    width: 88%;
    max-width: inherit;
  }

  #header.is-hidden {
    left: 5%;
  }

  .login_l {
    height: 380px;
  }

  .login_r {
    height: 380px;
    padding: 9%;
  }
}

@media screen and (max-width: 1345px) {
  .news_list {
    margin-left: -6%;
  }
}

@media screen and (max-width: 1175px) {
  header {
    height: 130px;
  }

  #header {
    position: fixed;
    width: 100%;
    z-index: 999;
  }

  .header_main {
    width: 100%;
  }

  #main_bg,
  #main_bg_all {
    padding: 30px 0;
  }

  #main_bg_80p {
    padding: 60px 10%;
  }

  .logo img {
    width: 160px;
    margin-top: 15px;
  }

  /*ind*/
  .ind_b {
    width: 100%;
  }

  .ind_b img {
    max-width: 100%;
  }

  /*left pro*/
  .left {
    width: 22%;
  }

  .content {
    width: 78%;
  }

  .search {
    background-size: 100%;
    padding: 30px 0 10px 10px;
  }

  .searchbox {
    width: 70%;
    padding: 5px;
  }

  .search_go {
    width: 48px;
  }

  .proliimg:hover h2 {
    top: 88%;
  }

  .login_l {
    width: 55%;
    margin-left: 0;
    padding: 5%;
  }

  .login_r {
    width: 45%;
    margin-right: 0;
  }

  .news_w {
    width: 100%;
  }

  .news_listpic {
    margin-right: 10px;
  }

  .news_list {
    margin-left: -2%;
  }
}

@media screen and (max-width: 970px) {
  #main_bg_80p {
    padding: 60px 0;
  }

  /*   contact   */
  .contact_info {
    float: none;
    width: 100%;
    margin: 0px 0 20px 0;
    padding-bottom: 10px;
  }

  .contact_info img {
    width: 200px;
  }

  .contact_td {
    float: none;
    width: 100%;
  }

  .contact_form {
    WIDTH: 100%;
    padding: 5px;
    min-width: 150px;
  }
}

@media screen and (max-width: 767px) {
  .web_show {
    display: none;
  }

  .web_hid {
    display: block;
  }

  header {
    position: relative;
    width: 100%;
    padding: 0;
    height: 70px;
  }

  #header {
    height: inherit;
  }

  #header.is-hidden {
    top: 0;
    left: 0;
  }

  #h_submenu {
    display: none;
  }

  .is-hidden #h_submenu_m {
    position: fixed;
  }

  #h_submenu_m {
    position: absolute;
    display: block;
    z-index: 6;
    top: 15px;
    right: 15px;
    text-align: right;
  }

  #h_submenu_m img {
    width: 32px;
    margin: 0 3px;
  }

  #h_submenu_m .social_ico {
    display: inline-block;
    float: none;
  }

  .logo {
    position: fixed;
    float: none;
    z-index: 1;
    width: 100%;
    text-align: left;
    padding-left: 50px;
    padding-top: 0px;
    background-color: #fff;
    height: 70px;
  }

  .logo img {
    width: 100px;
    margin-top: 5px;
    margin-left: 0;
  }

  .is-hidden>.logo img {
    width: 120px;
    margin: 0;
  }

  #header.is-hidden {
    z-index: 2;
  }

  .ad_hid {
    display: none;
  }

  #main_bg,
  #main_bg_80p {
    width: 96%;
    margin: auto;
  }

  .left {
    display: none;
  }

  .content {
    width: 100%;
    padding: 0;
  }

  /*   member   */
  .member_murwd {
    display: block;
    margin-bottom: 12px;
  }

  .member_murwd ul {
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .member_murwd li {
    list-style-type: none;
    display: inline-block;
    margin: 8px 1%;
    padding: 8px 12px;
    background-color: #e97f79;
    color: #fff;
    border-radius: 60px;
  }

  .member_murwd li a,
  .member_murwd li a:visited {
    color: #fff;
  }

  .member_murwd li:hover,
  .member_murwd li a:hover {
    color: #fff;
    background-color: #444;
  }

  .login_l {
    height: 220px;
  }

  .news_list {
    margin-left: -5%;
  }

  .ablock {
    width: 47%;
    margin: 0 auto;
  }

  /*   contact   */
  .contact_info {
    background: none;
    padding: 0px;
    float: none;
    width: 100%;
    margin: 0px 0 20px 0;
  }

  .contact_info img {
    width: 250px;
    margin-left: 17%;
  }

  .contact_td {
    float: none;
    width: 100%;
  }

  .contact_form {
    WIDTH: 100%;
    padding: 5px;
    min-width: 150px;
  }

  .contact_info ul {}

  #pagination .prevnext a {
    display: inline-block;
    margin-top: 0;
  }

  #pagination .go {
    display: none;
  }

  .rwd_br {
    display: block;
  }

  .gopage {
    padding-left: 0px;
    margin-top: 15px;
  }

  /*  product  */
  .proli_case {
    padding: 0px;
  }

  .proli {
    text-align: center;
    float: left;
    margin: 0px 5px;
    width: 23%;
    min-width: inherit;
    line-height: 4px;
    padding-bottom: 20px;
  }

  .pro_detail {
    float: none;
    width: 100%;
    margin-left: 0px;
    margin-bottom: 10px;
  }

  .pro_detailimg {
    float: none;
    width: 70%;
    margin: auto;
    min-width: inherit;
    margin-bottom: 10px;
    text-align: center;
    display: block;
  }

  .pro_midimg_s img {
    float: none;
  }

  .searchbox {
    font-size: 16px;
    width: 70%;
    height: 35px;
  }

  .pro_dec #main_bg {
    padding-top: 0;
  }

  .pro_dec aside {
    display: none;
  }

  .prodec_imgs_wp {
    width: 360px;
    overflow-x: auto;
  }

  .prodec_imgs_scol {
    width: max-content;
  }

  .pro_qty img {
    width: 54px;
  }

  .but_inquiry {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    background-color: #ffffffe0;
  }

  .addtocar {
    margin: 8px auto;
  }

  .but_buy {
    display: block;
    margin-top: 20px;
  }
}

@media screen and (max-width: 760px) {

  /*   login  */
  .login_l {
    float: none;
    width: 100%;
  }

  .login_r {
    float: none;
    width: 100%;
    text-align: center;
    padding-top: 70px;
    padding-left: 0;
  }

  .login_text {
    width: 100%;
  }

  .login_form {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  header {}

  .ablock {
    width: 90%;
    margin: 0 auto;
  }

  .proli {
    float: left;
    width: 47%;
    min-width: 163px;
  }

  .ico_checkbut {
    background-image: none;
  }

  .pro_midimg img {
    width: 100%;
  }
}

@media screen and (max-width: 391px) {
  .pro_qty img {
    width: 52px;
  }
}


@media screen and (max-width: 360px) {
  .proli {
    min-width: 154px;
  }

  .w_60p {
    width: 100%;
    margin: 0 auto;
  }

  .new_td01 {
    display: none;
  }

  .member_murwd li {
    margin: 10px 1px;
    padding: 5px 6px;
  }
}


/*checkbox,radio*/
.confirm {
  margin: 12px 0;
}

.confirm input[type=checkbox]:not(old),
.confirm input[type=radio]:not(old) {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  width: 28px;
  height: 28px;
}

.confirm input[type=checkbox]:not(old)+label {
  display: inline-block;
  padding-left: 28px;
  line-height: 24px;
  background: url('../images/ico_uncheck.png') no-repeat 0 0;
  background-size: 24px;
}

.confirm input[type=checkbox]:not(old):checked+label {
  background: url('../images/ico_checked.png') no-repeat 0 0;
  background-size: 24px;
}

.confirm input[type=radio]:not(old)+label {
  display: inline-block;
  padding-left: 28px;
  line-height: 24px;
  background: url('../images/ico_checked.png') no-repeat 0 3px;
}

.confirm input[type=radio]:not(old):checked+label {
  background-position: 0 -22px;
}