@charset "UTF-8";
body {
  color: #5C5C5C;
  font-family: 微軟正黑體, sans-serif;
  font-size: 18px;
  overflow-y: scroll;
}
body.open {
  position: relative;
}
body.open:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
}
a {
  text-align: center;
  color: #4A6D8C;
  font-size: 16px;
  font-weight: normal;
}
a:hover {
  color: #FFEB3B;
  text-decoration: none;
}
a.active {
  color: #FFEB3B;
}
ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
img {
  width: 100%;
  object-fit: contain;
}
h1 {
  font-size: 26px;
}
h2 {
  font-size: 24px;
  margin-bottom: 5%;
}
h3 {
  font-size: 20px;
}
p {
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

label, .input-group, p {
  margin: 0;
}
.text-danger {
  color: #FF5858 !important;
}
.green{
  color: #E68A2A;
  font-weight: bold;
}

.form-control:focus, .btn.focus, .btn:focus {
  outline: none;
  box-shadow: none;
}

.form-group {
  display: flex;
  align-items: center;
}

.form-control:focus {
  border-color: #C9DFB6;
}
.container{
  max-width: 1140px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 5;
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.3s;
}
.main-header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: #4A6D8C;
}
.main-header .logo {
  width: 70px;
  z-index: 3;
  transform: translateX(30%);
}
.main-header .logo img {
  width: 100%;
}
.main-header .nav-unshown {
  display: none;
}
.main-header #nav-open {
  margin-left: 0.8em;
  display: inline-block;
  width: 30px;
  height: 22px;
  cursor: pointer;
  transition: 1s ease-in-out;
}
.main-header #nav-open:hover {
  opacity: 0.8;
}
.main-header #nav-open span,
.main-header #nav-open span:before,
.main-header #nav-open span:after {
  position: absolute;
  height: 4px; /*線の太さ*/
  width: 25px; /*長さ*/
  border-radius: 1px;
  background: #666;
  display: block;
  content: "";
  cursor: pointer;
}
.main-header #nav-open span:before {
  bottom: -8px;
}
.main-header #nav-open span:after {
  bottom: -16px;
}
.main-header #nav-close {
  display: none; /*はじめは隠しておく*/
  position: fixed;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
}
.main-header .main-nav {
  padding: 0px;
  margin: 0px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15; /*最前面に*/
  width: 100%; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 70%; /*最大幅（調整してください）*/
  height: 100%;
  opacity: 1;
  padding-top: 16%;
  background: #fff; /*背景色*/
  transition: 0.5s ease-in; /*滑らかに表示*/
  transform: translateX(105%); /*左に隠しておく*/
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-left: auto;
}
.main-header .main-nav li {
  width: 100%;
  text-align: left;
  position: relative;
}
.main-header .main-nav li + li {
  margin-top: 8%;
}
.main-header .main-nav a {
  display: block;
  color: #5C5C5C;
  transition: 0.4s ease-in-out;
  text-decoration: none;
  text-align: left;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 5px 21px;
  font-weight: bold;
  position: relative;
  transform: translateY(0px);
}
.main-header .main-nav a + a {
  margin-left: 15px;
}
.main-header .main-nav a.active{
  color: #E68A2A;
}
.main-header .main-nav span {
  display: none;
}
.main-header #menu__toggle:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
  transition: 5s ease-out;
  z-index: 15;
  background: #343a40; /*開啟menu的時候，後面背景顏色變暗，凸顯menu的存在*/
}
.main-header #menu__toggle:checked ~ .main-nav {
  transform: translateX(0%); /*中身を表示（右へスライド）*/
  box-shadow: 6px 2px 30px rgb(33, 37, 41);
  z-index: 15;
}
.main-header .language {
  position: absolute;
  top: 35%;
  right: 17%;
  color: #fff;
}
.main-header #menu__toggle {
  opacity: 0;
}
.main-header #menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
.main-header #menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background-color: #566E71;
}
.main-header #menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background-color: #566E71;
}
.main-header #menu__toggle:checked ~ .main-nav {
  visibility: visible;
  right: 0;
}
.main-header .menu__btn {
  z-index: 25;
  display: flex;
  align-items: center;
  position: absolute;
  top: 26px;
  right: 30px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  margin-bottom: 0px;
}
.main-header .menu__btn > span,
.main-header .menu__btn > span::before,
.main-header .menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition-duration: 0.35s;
}
.main-header .menu__btn > span::before {
  content: "";
  top: -8px;
}
.main-header .menu__btn > span::after {
  content: "";
  top: 8px;
}
.main-header .nav-link {
  padding: 0;
}
.main-header .menu {
  display: none;
}

.main-nav .active > .nav-link, .main-nav .nav-link.active, .main-nav .nav-link.show, .main-nav .show > .nav-link {
  color: #E68A2A;
}

.right {
  display: none;
}

.scrolltop {
  opacity: 0;
}
.scrolltop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #66AEDD;
  border-radius: 88px;
  z-index: 2;
  position: fixed;
  top: 88%;
  right: 15px;
  border: 2px solid #fff;
}
.scrolltop .fa-solid {
  padding: 30% 35%;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: none;
  font-size: 14px;
  line-height: 20px;
}

section {
  margin: 50px 0;
  min-height: 60vh;
}
section .container {
  padding: 0 30px;
}

.breadcrumb {
  background-color: transparent;
  padding: 12px 0;
}
.breadcrumb .breadcrumb-item {
  padding-right: 10px;
}
.breadcrumb .breadcrumb-item.active {
  padding-right: 5px;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  padding-right: 15px;
}


.slick-initialized .slick-slide {
  margin: 0 5px;
}

.btn_box button {
  background: #C9DFB6;
  color: #fff;
  border-radius: 0;
}
.btn_box button:hover {
  color: #fff;
}
.btn_box button + button {
  margin-left: 15px;
}
.btn_search{
  background: #E68A2A;
  color: #fff;
}
.btn_search:hover{
  color: #fff;
  background: #E68A2A;
}
.btn_outline_orange{
  border: 1px solid #E68A2A;
  color: #E68A2A;
}
.btn_green:hover, .btn_outline_orange:hover{
  background: #E68A2A;
  color: #fff;
}

button:focus {
  outline: none;
}
.banner {
  height: 120px;
  margin-top: 80px;
  color: #fff;
  position: relative;
}
.banner .text{
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%,-50%);
  font-weight: 900;
  width: 100%;
}
.banner h2{
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 0;
}
.banner p{
  font-size: 20px;
  text-transform: uppercase;
}
.breadcrumb-item a{
  font-weight: bold;
}
.breadcrumb-item a:hover{
  color: #4A6D8C;
}
.breadcrumb-item.active{
  color: #E68A2A;
  font-weight: bold;
}




footer {
  background: #4A6D8C;
  position: relative;
  padding: 40px 0 20px;
  color: #fff;
}
footer .container{
  display: flex;
  padding: 0 30px;
  flex-direction: column;
  align-items: center;
}
.footer_box{
  width: 100%;
}
footer img{
  width: 55%;
  margin-bottom: 20px;
}
.ul_box{
  display: flex;
  justify-content: space-between;
}
footer ul{
  flex-direction: column;
  font-size: 16px;
}
footer ul + ul{
  margin-top: 40px;
}
footer .label{
  font-size: 22px;
  position: relative;
  padding-bottom: 3%;
  margin-bottom: 5%;
}
footer .label:after{
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
  left: 0;
  bottom: 0;
}
footer li + li{
  margin-top: 3%;
}
footer a, footer a:hover{
  color: #fff;
}

.custom-shape-divider-top-1713407831 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-top-1713407831 svg {
  position: relative;
  display: block;
  height: 80px;
}
.custom-shape-divider-top-1713407831 .shape-fill {
  fill: #FFFFFF;
}
.list{
  flex-direction: column;
}
.list label{
  padding: 12px 20px;
  background: #4A6D8C;
  color: #fff;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}
.list a{
  text-align: left;
  padding: 12px 20px;
  background: #eafcff;
  color: #4A6D8C;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list a:last-child{
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.list a.active, .list a:hover{
  background: #61b9ec;
  color: #fff;
  position: relative;
}
.list a.active:after, .list a:hover:after{
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  height: 50px;
  width: 15px;
  background: #61b9ec;
}
.list a.active i, .list a:hover i{
  transform: translateX(20px);
}
.btn_green{
  padding: 10px 15px;
  background: #4A6D8C;
  color: #fff;
  transition: background 0.3s;
}
.btn_orange{
  background: #E68A2A;
  color: #fff;
  transition: background 0.3s;
}
.btn_orange:hover{
  background: #E68A2A;
  color: #fff;
}

.modal .modal-header {
  background: #4A6D8C;
  color: #fff;
  padding: 20px;
}
.modal .modal-header .modal-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}
.modal .modal-header .modal-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: #fff;
}
.modal .modal-header .close {
  color: #fff;
  opacity: 1;
}
.modal .modal-header .close:hover {
  opacity: 1;
}
.modal .modal-header .close:not(:disabled):not(.disabled):focus, .modal .modal-header .close:not(:disabled):not(.disabled):hover {
  opacity: 1;
}
.modal .modal-body {
  padding: 20px;
}
.modal .input-group {
  border: 1px solid #C9DFB6;
  border-radius: 5px;
}
.modal .form-control {
  border: none;
}
.modal .search_btn {
  color: #4A6D8C;
}

span.orange, p.orange{
    color: #E68A2A;
    font-weight: bold;
    font-size: 18px;
}
h2.orange{
  color: #FF7F50;
  font-weight: bold;
}

@media (min-width: 700px) and (max-width: 1200px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
    margin-bottom: 3%;
  }
  h3 {
    font-size: 22px;
  }
  p {
    font-size: 16px;
  }
  .main-header .logo {
    transform: translateX(80%);
  }
  .main-header .menu__btn {
    right: 40px;
  }
  .main-header .main-nav a {
    padding: 2.5% 12%;
  }
  .main-header .main-nav {
    max-width: 35%;
    padding-top: 10%;
  }
  .slick-initialized .slick-slide {
    margin: 0 15px;
  }
  .md_block{
    width: 25%;
    display: block;
  }
  
  .modal .modal-header{
    padding: 20px 30px;
  }
  .modal .modal-body {
    padding: 30px;
  }

  section .container, footer .container{
    padding: 0 60px;
  }
  .banner{
    height: 200px;
  }
  .banner h2{
    font-size: 50px;
  }
  .banner p{
      font-size: 35px;
  }

  footer{
    padding: 5% 0;
  }
  .footer_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer a{
    width: 30%;
    text-align: left;
  }
  footer img {
      width: 100%;
      margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  /* 預設電腦版字體 */
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
    font-weight: 400;
  }
  p {
    font-size: 16px;
  }
  .main-header .header{
    justify-content: space-around;
  }
  .main-header .logo {
    width: 75px;
    transform: translateX(30%);
  }
  .main-header .logo img {
    transform: translateX(0%);
  }
  .main-header .menu__btn {
    display: none;
  }
  .main-header .headermenu {
    display: flex;
  }
  .main-header .main-nav {
    margin-left: 0;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    transform: translateX(0);
    max-width: 80%;
  }
  .main-header .main-nav li {
    width: 175px;
    height: 25px;
    overflow: hidden;
    text-align: center;
  }
  .main-header .main-nav li.short_li{
    width: 160px;
  }
  .main-header .main-nav li.short_li2, .main-header .main-nav li.logout_li{
    width: 90px;
  }
  .main-header .main-nav li + li {
    margin-top: 0px;
  }
  .main-header .main-nav a {
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 17px;
  }
  .main-header .main-nav a + .main-header .main-nav a {
    margin-left: 15px;
  }
  .main-header .main-nav a.active{
    color: #FFEB3B;
  }
  .main-header .main-nav a:hover {
    color: #FFEB3B;
    padding-top: 28px;
  }
  .main-header .main-nav span {
    display: block;
    margin-top: -30.5px;
  }
  .main-header a {
    font-size: 18px;
    font-weight: 300;
  }
  .main-header a:hover {
    color: #5C5C5C;
  }
  .main-header .menu {
    width: 4%;
    display: flex;
    z-index: 16;
    height: 100%;
    padding-top: 9px;
  }
  .main-header .menu li.li_icon a {
    transition: color 0.3s;
    font-weight: bold;
  }
  .main-header .menu li.li_icon a:hover {
    color: #E68A2A;
  }
  .main-header .menu .cart {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-header .menu .badge-green {
    background: #E68A2A;
    color: #fff;
    position: absolute;
    right: -5px;
    top: 25px;
    font-size: 11px;
  }
  .table.buyList{
    width: 100%;
  }
  .right {
    display: block;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }
  .right ul {
    flex-direction: column;
  }
  .right li {
    height: 40px;
    background: #E68A2A;
    position: relative;
  }
  .right li:hover a {
    right: 0;
    opacity: 1;
    color: #fff;
  }
  .right li.arrow {
    opacity: 0;
    transition: 0.3s;
  }
  .right a {
    color: #fff;
    font-size: 14px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    right: -60px;
    bottom: 0;
    width: 100px;
    height: 40px;
    background: #E68A2A;
    transition: 0.3s;
    border-bottom: 1px solid #fff;
  }
  .right .fa-solid, .right .fa-brands {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .scrolltop {
    display: none;
  }
  .modal .modal-header {
    padding: 20px 30px;
  }
  .modal .modal-header .modal-title {
    font-size: 24px;
  }
  .modal .modal-body {
    padding: 30px;
  }
  .md_block{
    display: none;
  }
  section {
    margin: 8% 0;
  }
  section .container {
    padding: 0 15px;
  }
  .slick-initialized .slick-slide {
    margin: 0 15px;
  }
  .btn_box button + button {
    margin-left: 20px;
  }
  .about_box .row{
      justify-content: space-between;
  }
  span.orange, p.orange{
      font-size: 20px;
  }
  .banner{
      height: 250px;
  }
  .banner h2{
    font-size: 70px;
  }
  .banner p{
    font-size: 30px;
  }
  
  .custom-shape-divider-top-1713407831 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 126px;
  }
  .footer_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer{
    padding: 40px 0;
  }
  footer a{
    text-align: left;
  }
  footer img{
    width: 50%;
    margin-bottom: 0;
  }
  footer ul + ul{
    margin-top: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-header .menu{
    transform: translateX(-120%);
  }
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .main-header .menu{
    transform: translateX(-170%);
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .main-header .menu{
    transform: translateX(-190%);
  }
}
@media (min-width: 1600px) and (max-width: 1699px) {
  .main-header .menu{
    transform: translateX(-220%);
  }
}
@media (min-width: 1700px) and (max-width: 1799px) {
  .main-header .menu{
    transform: translateX(-250%);
  }
}
@media (min-width: 1800px) and (max-width: 1899px) {
  .main-header .menu{
    transform: translateX(-270%);
  }
}
@media (min-width: 2000px) {
  .main-header .menu{
    margin-left: 25px;
  }
}