@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: #354C7A;
  font-size: 16px;
  font-weight: normal;
}
a:hover {
  color: #f1964b;
  text-decoration: none;
}
a.active {
  color: #f1964b;
}

ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  object-fit: contain;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

label, .input-group, p {
  margin: 0;
}
p{
  line-height: 1.9;
}
.text-danger {
  color: #FF5858 !important;
}
.green{
  color: #f1964b;
  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-around;
  height: 80px;
  background-image: linear-gradient(to top, #0D132B 0%, #0B1029 100%);
}
.main-header .logo {
  width: 250px;
  z-index: 3;
  transform: translateX(2%);
}
.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 .menu_icon {
  margin-right: 10%;
}
.main-header .menu_icon li {
  margin-right: 15px;
  position: relative;
  text-align: center;
  width: 35px;
}
.main-header .menu_icon li + li {
  margin-right: 0;
}
.main-header .menu_icon .badge-green {
  background: #f1964b;
  color: #fff;
  position: absolute;
  right: -2px;
  top: -4px;
  font-size: 11px;
}
.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: 12%;
  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: 10px;
}
.main-header .main-nav li.goto_shop {
  width: 100%;
  height: 70px;
  background: #354C7A;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
}
.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: 3% 12%;
  font-weight: 300;
  position: relative;
  transform: translateY(0px);
}
.main-header .main-nav a:hover {
  color: #f1964b;
}
.main-header .main-nav a + a {
  margin-left: 15px;
}
.main-header .main-nav span {
  display: none;
}
.main-header .dropdown_ul{
  flex-direction: column;
  display: none;
  padding-left: 20px;
  overflow-y: scroll;
  height: 230px;
}
.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;
}
.menu_icon a{
  color: #fff;
}
.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: #f1964b;
}

.right {
  display: none;
}

.scrolltop {
  opacity: 0;
}
.scrolltop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #354C7A;
  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: 31vh;
}
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: #f1964b;
  color: #fff;
}
.btn_search:hover{
  color: #fff;
  background: #e77248;
}
.btn_outline_orange{
  background: #f1964b;
  color: #fff;
  padding: 10px 40px;
  background: #f1964b; /* 圓形內部的顏色 */
  border: 6px solid #fff; /* 外層邊框顏色 */
  box-shadow: 0 0 0 1px #f1964b; /* 內層雙邊線的顏色和寬度 */
  margin-top: 40px;
  border-radius: 0;
}
.btn_outline_orange:hover{
  color: #fff;
  background: #e77247; /* 圓形內部的顏色 */
}

section h3 {
  font-size: 24px;
  color: #fff;
  background: #354C7A;
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  margin: 0 0 45px 10px;
}
section h3:before, section h3:after{
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #354C7A;
  z-index: -1;
}
section h3:before{
  left: -15px;
}
section h3:after{
  right: -15px;
}

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: 45px;
  font-weight: 900;
}
.banner p{
  font-size: 20px;
  text-transform: uppercase;
}



footer {
  background-image: linear-gradient(to top, #141d42 0%, #0B1029 100%);
  position: relative;
  padding: 40px 0;
  color: #fff;
}
footer .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer_box{
  width: 100%;
}
footer img{
  width: 55%;
  margin-bottom: 20px;
}
.ul_box{
  display: none;
}
footer ul{
  flex-direction: column;
  font-size: 16px;
}
footer ul + ul{
  margin-top: 40px;
}
footer .label{
  font-size: 22px;
  padding-bottom: 10px;
}
footer li + li{
  margin-top: 20px;
}
footer a, footer a:hover{
  color: #fff;
}
footer .container .ul_box2 .label div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}
footer .container .ul_box2 .label div .fa-solid {
  color: #fff;
}
footer .container .ul_box2 .label + .label {
  padding-top: 10px;
  border-top: 1px solid #fff;
}
footer .container .ul_box2 .close_menu {
  display: none;
  flex-direction: column;
  padding-bottom: 15px;
}
footer .container .ul_box2 .close_menu li + li {
  margin-top: 20px;
}

.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: #354C7A;
  color: #fff;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}
.list a{
  text-align: left;
  padding: 12px 20px;
  background: #eafcff;
  color: #354C7A;
  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: #354C7A;
  color: #fff;
  transition: background 0.3s;
}
.btn_outline_green{
  border: 1px solid #354C7A;
  padding: 10px 15px;
  color: #354C7A;
}
.btn_green:hover, .btn_outline_green:hover{
  background: #f1964b;
  color: #fff;
}
.btn_orange{
  padding: 10px 15px;
  background: #f1964b;
  color: #fff;
  transition: background 0.3s;
}
.btn_orange:hover{
  background: #fd740bde;
  color: #fff;
}

.modal .modal-header {
  background: #354C7A;
  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: #354C7A;
}

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

@media (min-width: 700px) and (max-width: 1200px) {
  .main-header .logo {
    transform: translateX(-5%);
  }
  .main-header .menu__btn {
    right: 40px;
  }
  .main-header .menu_icon li {
    margin-right: 0;
  }
  .main-header .main-nav a {
    padding: 2.5% 12%;
  }
  .main-header .main-nav {
    max-width: 55%;
    padding-top: 10%;
  }
  .main-header .menu_icon {
    margin-left: 30%;
  }
  .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;
  }
  .btn_outline_orange{
    margin-top: 30px;
  }
  .banner{
    height: 200px;
  }
  .banner p{
      font-size: 35px;
  }

  footer img {
      width: 40%;
  }
}
@media (min-width: 1200px) {
  .main-header .logo {
    width: 250px;
    transform: translateX(40%);
  }
  .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); */
    transform: translateX(5%);
    /* overflow: hidden; */
  }
  .main-header .main-nav li.dropdown_box:hover .dropdown_ul{
    display: block;
  }
  .main-header .menu li.dropdown_box.cart:hover .dropdown_ul{
    display: none;
  }
  .dropdown_box.cart .dropdown_ul{
    flex-direction: column;
    transform: translate(-50%, 7px);
    min-width: 360px;
  }
  .dropdown_box h6{
    font-size: 20px;
    color: #DB8741;
    text-align: left;
    margin-bottom: 10px;
  }
  .buyList{
    margin-top: 5px;
  }
  .table td, .table th{
    border-top: 1px solid #ddebd1;
  }
  .main-header .main-nav li {
    width: 140px;
    height: 25px;
    overflow: hidden;
    text-align: center;
  }
  .main-header .main-nav li.login{
    width: 100px;
  }
  .main-header .main-nav li.logout{
    width: 120px;
  }
  .main-header .main-nav li.goto_shop {
    display: none;
  }
  .main-header .main-nav li + li {
    margin-top: 0px;
  }
  .main-header .main-nav a {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 5% -12%;
  }
  .main-header .main-nav .dropdown_ul a {
    color: #5C5C5C;
  }
  .main-header .main-nav a + .main-header .main-nav a {
    margin-left: 15px;
  }
  .main-header .main-nav a.active{
    color: #f1964b;
  }
  .main-header .main-nav a:hover {
    padding-top: 28px;
  }
  .main-header .main-nav a.dropdown{
    position: relative;
  }
  .main-header .dropdown_ul{
    position: absolute;
    border-top: 5px solid #f1964b;
    background: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    transform: translateX(-19%);
    padding-left: 0;
    display: none;
    height: auto;
    overflow-y: auto;
  }
  .main-header .main-nav a.dropdown:hover {
    padding-top: 5%;
  }
  .main-header .main-nav li.dropdown_box{
    height: auto;
    overflow: visible;
  }
  .main-header .dropdown_box.cart .dropdown_ul{
    transform: translate(-50%, 65%);
  }
  .main-header .main-nav .dropdown_ul li{
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .main-header .main-nav .dropdown_ul li:hover{
    background: #f1964b;
  }
  .main-header .main-nav .dropdown_ul a{
    padding: 8% 12%;
    transition: none;
    width: 100%;
  }
  .main-header .main-nav .dropdown_ul li:hover a{
    color: #fff;
  }
  .main-header .main-nav span {
    display: block;
    margin-top: -29.5px;
  }
  .main-header a {
    font-size: 16px;
    font-weight: 300;
  }
  .main-header a:hover {
    color: #5C5C5C;
  }
  .main-header .menu_icon {
    display: none;
  }
  .main-header .menu {
    width: 5%;
    display: flex;
    z-index: 16;
    height: 100%;
    margin-left: 25px;
  }
  .main-header .menu li.li_icon a {
    transition: color 0.3s;
    font-weight: bold;
  }
  .main-header .menu li.li_icon a:hover {
    color: #f1964b;
  }
  .main-header .menu .cart {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .main-header .menu .cart .dropdown_ul{
    padding: 20px;
    font-size: 15px;
  }
  .main-header .menu .badge-green {
    background: #f1964b;
    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: #f1964b;
    position: relative;
  }
  .right li:hover a {
    right: 0;
    opacity: 1;
  }
  .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: #f1964b;
    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: 70px 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;
  }
  
  section h3{
    font-size: 30px;
    padding: 15px 30px;
  }
  section h3:before{
    left: -20px;
  }
  section h3:after{
    right: -20px;
  }
  span.orange{
      font-size: 20px;
  }
  .banner{
      height: 250px;
  }
  .banner h2{
    font-size: 120px;
  }
  .banner p{
    font-size: 30px;
  }
  
  .custom-shape-divider-top-1713407831 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 126px;
  }
  .footer_box{
    padding: 20px 50px;
  }
  .ul_box{
    display: flex;
    justify-content: space-between;
  }
  footer img{
    width: 40%;
  }
  footer .label{
    position: relative;
  }
  footer .label:after{
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: 0;
  }
  footer ul + ul{
    margin-top: 0;
  }
  footer .container .ul_box2 {
    display: none;
  }
}
@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;
  }
}