@charset "UTF-8";
/* CSS Document */
@import url("reset.css");
html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: Arial, "Arial Black", "Noto Sans TC", serif, "微軟正黑體", "新細明體", "細明體";
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  letter-spacing: 1px;
  box-sizing: border-box;
}
body::before {
  display: block;
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

div, span {
  display: block;
  width: 100%;
}

button {
  display: none;
}

*:focus {
  outline: none;
} /*解決滾動到區塊時出現框線問題*/
:root {
  --main-color01: #f15a24;
  --main-color02: #ff931e;
}

p {
  font-size: 1.15vw;
  line-height: 1.75;
  color: #333;
  font-weight: 300;
  letter-spacing: 2px;
}
@media (max-width: 992px) {
  p {
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 3.5vw;
  }
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block;
  }
}

.pad-pc {
  display: block;
}
@media (min-width: 992px) {
  .pad-pc {
    display: none;
  }
}

.pad-h {
  display: none;
}
@media (max-width: 992px) {
  .pad-h {
    display: block;
  }
}

.wrapper_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0%;
  z-index: -2;
  overflow: hidden;
}
.wrapper_bg::after {
  display: block;
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.btn_style {
  transform-origin: center;
  transform: scale(1);
  transition: all 0.15s ease-in-out;
}
.btn_style:hover {
  cursor: pointer;
  transform: scale(0.9);
}

:root {
  --shadow-opacity: 0;
}

/*---kv---*/
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 9999;
  padding: 1vw 0;
  box-shadow: 0 5px 5px rgba(242, 95, 36, var(--shadow-opacity));
  transition: box-shadow 0.5s ease-in-out;
}
header::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: #fff;
  z-index: -1;
}

.header_w {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_w .logo-1 {
  width: 13.5%;
  order: 1;
}
@media (max-width: 768px) {
  .header_w .logo-1 {
    width: 32.2%;
  }
}
.header_w .logo-2 {
  width: 15.5%;
  position: relative;
  order: 3;
}
@media (max-width: 768px) {
  .header_w .logo-2 {
    width: 34.2%;
  }
}
.header_w nav {
  width: auto;
  position: relative;
  order: 2;
}
@media (max-width: 768px) {
  .header_w nav {
    display: none;
  }
}
.header_w nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_w nav ul li {
  display: inline;
  position: relative;
  font-size: 1vw;
  line-height: 1.2;
  color: #000;
  border-left: 1px solid #000;
  padding: 0 0.5vw;
}
.header_w nav ul li:last-child {
  border-right: 1px solid #000;
}
.header_w nav ul li::after {
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: var(--main-color01);
  position: absolute;
  left: 5%;
  bottom: -10%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.header_w nav ul li a {
  text-decoration: none;
  position: relative;
  font-size: 1vw;
  line-height: 1;
  color: #000;
  z-index: 2;
  transition: all 0.25s ease-in-out;
}
.header_w nav ul li:hover a {
  color: var(--main-color01);
}
.header_w nav ul li:hover::after {
  width: 90%;
}

.agent_w {
  width: 20%;
  position: absolute;
  right: -0.25%;
  top: 5.9vw;
  z-index: 2;
  filter: drop-shadow(-5px 5px 2px rgba(242, 95, 36, var(--shadow-opacity)));
  transition: filter 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .agent_w {
    display: none;
  }
}
.agent_w .agent_box {
  position: relative;
}
.agent_w .agent_box .agent {
  display: block;
  width: 85%;
  font-size: 1vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  border-radius: 200px;
  background: linear-gradient(to right, var(--main-color02) 0%, var(--main-color01) 100%);
  position: absolute;
  right: -5%;
  top: -6%;
  z-index: 2;
  padding: 3.5% 0;
}

main {
  position: relative;
  z-index: 3;
}
main section {
  padding-top: 10%;
}

.root_w {
  width: 92.1%;
  margin: 0 auto;
}

/*---s01--------------*/
.news_w {
  width: 71%;
  background: #fff;
  border: 1px solid var(--main-color01);
  border-radius: 30px;
  padding: 5% 0%;
  box-sizing: border-box;
  margin: 15% auto 5%;
}
.news_w .title_news {
  width: 31.2%;
  position: relative;
  margin-left: -0.9%;
}
@media (max-width: 992px) {
  .news_w .title_news {
    width: 61%;
    margin-left: -1.7%;
  }
}
@media (max-width: 768px) {
  .news_w .title_news {
    width: 71%;
    margin-left: -1.9%;
  }
}
@media (max-width: 992px) {
  .news_w {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .news_w {
    width: 90%;
    margin: 30% auto 5%;
  }
}

.news_content {
  width: 63%;
  position: relative;
  margin: 5% auto;
  overflow: hidden;
}
@media (max-width: 992px) {
  .news_content {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .news_content {
    width: 80%;
  }
}
.news_content h2 {
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1.25;
  color: var(--main-color01);
}
@media (max-width: 992px) {
  .news_content h2 {
    font-size: 3.5vw;
  }
}
@media (max-width: 768px) {
  .news_content h2 {
    font-size: 5vw;
    line-height: 1.5;
  }
}
.news_content p {
  text-align: justify;
  margin: 5% 0%;
}
.news_content p a {
  color: #ff931e;
}
.news_content .news_photo {
  position: relative;
  margin: 5% auto;
}
.news_content .news_photo .photo_text {
  position: relative;
  font-size: 1.05vw;
  color: #333;
  line-height: 1.5;
  padding: 5px;
  box-sizing: border-box;
  background: #fde0a8;
}
@media (max-width: 992px) {
  .news_content .news_photo .photo_text {
    font-size: 1.5vw;
  }
}
@media (max-width: 768px) {
  .news_content .news_photo .photo_text {
    font-size: 2.5vw;
  }
}
.news_content .btn_backhome {
  width: auto;
  position: relative;
  margin: 5% auto;
  text-align: center;
}
.news_content .btn_backhome a {
  text-decoration: none;
}
.news_content .btn_backhome a span {
  display: inline-block;
  width: auto;
  font-size: 1.15vw;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 2px;
  background: linear-gradient(to right, #ff5217 10%, #ff8e00 90%);
  border-radius: 500px;
  padding: 0.5vw 2vw;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .news_content .btn_backhome a span {
    font-size: 2.5vw;
  }
}
@media (max-width: 768px) {
  .news_content .btn_backhome a span {
    font-size: 4vw;
    padding: 0.5vw 3.5vw;
  }
}
.news_content .btn_backhome a:hover span {
  padding: 0.5vw 3vw;
}
@media (max-width: 768px) {
  .news_content .btn_backhome a:hover span {
    padding: 0.5vw 5vw;
  }
}

/*-------------------------------------------------------------*/
.overlay {
  width: 100%;
  background: linear-gradient(to right, rgb(238, 57, 46) 1%, rgb(252, 179, 10) 100%);
  background-size: 100%;
}

.overlay nav {
  top: 0vh;
  height: 100vh;
}
.overlay nav ul {
  display: block;
  width: 30%;
  height: 90%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 5% 10%;
}
@media (max-width: 768px) {
  .overlay nav ul {
    width: 80%;
  }
}
.overlay nav ul a li {
  width: 100%;
  display: flex;
}
.overlay nav ul a li span {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  color: #fff;
  text-align: center;
  position: relative;
  transition: all 0.25s ease-in-out;
}
.overlay nav ul a:hover li span {
  color: #f1571d;
  border: 2px solid #fff;
  background: #fff;
}

.overlay .overlay-close {
  top: 0;
}

.overlay .overlay-close {
  max-width: 58px;
  max-height: 58px;
}

button.menu_m {
  display: none;
  position: relative;
  top: 0%;
  right: 5%;
  width: 4.3%;
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 990;
  outline: 0;
  order: 3;
}
@media (max-width: 768px) {
  button.menu_m {
    display: block;
    width: 8vw;
  }
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background: linear-gradient(to right, rgb(238, 57, 46) 1%, rgb(252, 179, 10) 100%);
}/*# sourceMappingURL=new.css.map */