@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;700;800&display=swap");
/**
 * Modern CSS Reset Tweaks
 * ================================================== */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Box sizing normalization */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 *
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0-modified | 20110126
 * License: none (public domain)
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/**
 * Input Reset
 */
input:required,
input {
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/* Make pictures easier to work with */
picture {
  display: inline-block;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

[disabled] {
  pointer-events: none;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Misc
 * ========================================================================== */
template {
  display: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  5% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: rotate(0deg) scale(1.2) skew(0deg) translate(0px);
  }
  100% {
    opacity: 0;
  }
}
body {
  font-family: "Noto Sans JP", "Noto Sans", "Noto Sans TC", "Noto Sans SC", Helvetica, Arial, sans-serif;
  color: #2a2a2a;
  max-width: 100%;
  height: auto;
  background-color: #f1f1f1;
  line-height: 1.5;
  overflow: hidden;
  overflow-y: scroll;
}
body.pri_fix {
  background-color: #f1f1f1;
}

div {
  box-sizing: border-box;
}

button {
  outline: none;
}
button:focus {
  outline: none;
}

a {
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a:focus {
  outline: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

input {
  outline: none;
}

.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

.err {
  color: #ff6666;
  font-size: 0.85rem;
}

.indexKvHeight {
  min-height: 95vh;
}
@media only screen and (max-width: 1199px) {
  .indexKvHeight {
    min-height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .indexKvHeight {
    min-height: 100vh;
  }
}

.scroll_kv .cb_slideshow {
  opacity: 0.7;
}
@media only screen and (max-width: 991px) {
  .scroll_kv .cb_slideshow {
    opacity: 0.7;
  }
}
.scroll_kv .cb_slideshow li {
  mask: 50% 50% url("../imgs/icon/cover.png");
  mask-size: contain;
  -webkit-mask: url("../imgs/icon/cover.png") 50% 50% no-repeat;
  -webkit-mask-size: contain;
}
.scroll_kv .cb_slideshow li span {
  animation: imageAnimation 40s linear infinite 0s;
  background-size: cover !important;
}
.scroll_kv .cb_slideshow li:nth-child(1) span {
  background: 50% 50% #fff url(../imgs/backguard/index-kv-1.jpg) no-repeat;
}
@media only screen and (max-width: 991px) {
  .scroll_kv .cb_slideshow li:nth-child(1) span {
    background: 0 50% #fff url(../imgs/backguard/index-kv-1.jpg) no-repeat;
  }
}
.scroll_kv .cb_slideshow li:nth-child(2) span {
  background: 50% 50% #fff url(../imgs/backguard/index-kv-2.jpg) no-repeat;
  animation-delay: 10s;
}
.scroll_kv .cb_slideshow li:nth-child(3) span {
  background: 50% 50% #fff url(../imgs/backguard/index-kv-3.jpg) no-repeat;
  animation-delay: 20s;
}
.scroll_kv .cb_slideshow li:nth-child(4) span {
  background: 50% 50% #fff url(../imgs/backguard/index-kv-4.jpg) no-repeat;
  animation-delay: 30s;
}

.section {
  position: relative;
  min-height: 78vh;
}
.section .gf_logo {
  min-width: 250px;
}
.section .index-kv {
  min-height: 100vh;
}
.section .main_box {
  max-width: 550px;
}
.section .main_box .title {
  position: relative;
  padding-left: 10%;
  padding-right: 10%;
  z-index: 1;
}
@media only screen and (max-width: 575px) {
  .section .main_box .title {
    font-size: 1.5rem;
  }
}
.section .main_box .title span {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  font-size: 2rem;
  font-family: "Kaushan Script", cursive;
  color: #1b3e3d;
  letter-spacing: -2px;
}
.section .main_box p {
  font-size: 1.3125rem;
  line-height: 1.7;
  color: #666;
  padding-left: 10%;
  padding-right: 10%;
  text-align: left;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 575px) {
  .section .main_box p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.section .main_box .box-bottom {
  color: #ffffff;
}
.section .main_box .note p {
  color: #888888;
  font-size: 1rem;
  line-height: 1.5;
}
.section .card-box {
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 25px;
}

.main_title_style {
  margin-bottom: 2rem;
  padding: 20px 40px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .main_title_style {
    margin-bottom: 1rem;
  }
}
.main_title_style span {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  font-size: 2rem;
  font-family: "Kaushan Script", cursive;
  color: #1b3e3d;
  letter-spacing: -2px;
}
.main_title_style:after, .main_title_style:before {
  content: "";
  width: 150px;
  height: 150px;
  background: url(../imgs/backguard/title_mask_right.png) 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  right: -60px;
  top: -10px;
  z-index: 0;
}
.main_title_style:before {
  background: url(../imgs/backguard/title_mask_left.png) 50% 50% no-repeat;
  background-size: cover;
  left: -65px;
}

.main_indexphone {
  position: relative;
  z-index: 20;
}

.section-index {
  position: relative;
  z-index: 1;
}
.section-index.section-coffee {
  background: #0e2726;
}

.section-coffee .section-coffee_bg {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff url("../imgs/backguard/kv-coffee.jpg") 50% 100% no-repeat;
  background-size: cover;
}
.section-coffee .section {
  min-height: 900px;
}
.section-coffee article p {
  color: #2a2a2a;
}
.section-coffee article h2 {
  color: #2C2C2C;
}

.section-product .icon-box {
  max-width: 128px;
}
.section-product p {
  color: #444444;
}
.section-product h2 {
  color: #2a2a2a;
}

@media only screen and (max-width: 575px) {
  .section-compost .icon-box {
    max-width: 170px;
  }
}
.section-compost p {
  color: #575757;
  line-height: 1.75;
}
.section-compost h2 {
  color: #2a2a2a;
}

.section-aboutus {
  background: linear-gradient(to bottom, #3bcd8f, #8bc438);
}

.section-gftech {
  background-size: cover !important;
}
.section-gftech .icon-box {
  max-width: 120px;
}
.section-gftech h2 {
  color: #2a2a2a;
}
.section-gftech h4 {
  color: #666666;
}
.section-gftech h6 {
  color: #3bcd8f;
}
.section-gftech p {
  color: #444444;
}

.img_cover {
  mask: 50% 50% url("../imgs/icon/cover.png");
  mask-size: contain;
  -webkit-mask: url("../imgs/icon/cover.png") 50% 50% no-repeat;
  -webkit-mask-size: contain;
}

.office_main {
  color: #3a3a3a;
  font-size: 1rem;
  line-height: 1.75rem;
}
.office_main h1 {
  font-size: 2rem;
  line-height: 2.4rem;
  color: #0f8377;
  font-weight: bold;
}
.office_main h1 {
  margin-bottom: 1rem;
}
.office_main h2 {
  color: #0f8377;
  font-size: 1.8rem;
}
.office_main h4 {
  color: #0f8377;
  font-size: 1.4rem;
}
.office_main p, .office_main .sub_title {
  color: #3a3a3a;
  font-size: 1rem;
}

.smop-section-1 {
  margin-top: 10%;
}
.smop-section-1 article {
  color: #1e1e1e;
}
.smop-section-1 article p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.smop-section-2 img {
  max-width: 220px;
  display: block;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 750px;
  height: 750px;
  margin-top: -375px;
  margin-left: -375px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .ring {
    width: 500px;
    height: 500px;
    margin-top: -250px;
    margin-left: -250px;
  }
}

.section-product .ring {
  width: 400px;
  height: 400px;
  margin-top: -250px;
  margin-left: -200px;
  z-index: 2;
}
.section-product .ring i:nth-child(1) {
  background-color: transparent;
}
.section-product .ring i:nth-child(2) {
  background-color: transparent;
}
@media only screen and (max-width: 575px) {
  .section-product .ring {
    opacity: 0;
  }
}

.section-compost .ring {
  width: 900px;
  height: 900px;
  margin-left: -175px;
  z-index: -1;
  opacity: 0.5;
}

.ring i {
  position: absolute;
  inset: 0;
  border: 2px solid #4f949d;
  transition: 0.5s;
}

.ring i:nth-child(1) {
  background-color: #97f2ff;
  opacity: 0.7;
  display: block;
  border-radius: 38% 62% 63% 37%/41% 44% 56% 59%;
  animation: animate 6s linear infinite;
}

.ring i:nth-child(2) {
  background-color: #fff429;
  opacity: 0.7;
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate 4s linear infinite;
}

.ring i:nth-child(3) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate2 10s linear infinite;
}

.ring:hover i {
  border: 3px solid var(--clr);
  filter: drop-shadow(0 0 20px var(--clr));
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.login {
  position: absolute;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.login h2 {
  font-size: 2em;
  color: #fff;
}

.login .inputBx {
  position: relative;
  width: 100%;
}

.login .inputBx input {
  position: relative;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 40px;
  font-size: 1.2em;
  color: #fff;
  box-shadow: none;
  outline: none;
}

.login .inputBx input[type=submit] {
  width: 100%;
  background: #0078ff;
  background: linear-gradient(45deg, #ff357a, #fff172);
  border: none;
  cursor: pointer;
}

.login .inputBx input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.login .links {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.login .links a {
  color: #fff;
  text-decoration: none;
}

.btu {
  border: 0;
  cursor: pointer;
}
.btu.to_download {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
  border-radius: 36px;
  line-height: 1.5;
  font-weight: bold;
  font-size: 1.625rem;
  padding: 5px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  color: #0f8377;
}
.btu.to_download:hover {
  background-color: #0f8377;
  color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .btu.to_download {
    font-size: 1.3125rem;
  }
}

article h1, article h2, article h3, article h4, article h5, article h6 {
  color: #fff;
}
article p {
  line-height: 1.75;
}

.main_menu {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .main_menu {
    padding: 10px 20px;
  }
}
.main_menu.roll_down {
  padding: 5px 20px;
  background-color: rgba(27, 62, 61, 0.9) !important;
}
@media only screen and (max-width: 991px) {
  .main_menu.roll_down {
    padding: 10px 20px;
  }
}
.main_menu.roll_down .main-logo {
  width: 120px;
}
@media only screen and (max-width: 991px) {
  .main_menu.roll_down .main-logo {
    width: 120px;
    margin-top: 5px;
  }
}
.main_menu .navbar-nav .nav-link {
  margin: 0 15px;
  color: #fff;
  height: 100%;
}
.main_menu .navbar-nav .nav-link.active, .main_menu .navbar-nav .nav-link .show > .nav-link {
  color: #fff;
}
.main_menu .menu_bar_btu {
  position: relative;
  float: right;
  width: 45px;
  height: 44px;
  z-index: 1000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.main_menu .menu_bar_btu div {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 33px;
  height: 3px;
  background-color: #fff;
  position: absolute;
}
.main_menu .menu_bar_btu div:nth-child(3n+1) {
  top: 9px;
  left: 6px;
  opacity: 1;
}
.main_menu .menu_bar_btu div:nth-child(3n+2) {
  width: 25px;
  top: 21px;
  right: 6px;
  opacity: 1;
}
.main_menu .menu_bar_btu div:nth-child(3n+3) {
  top: 33px;
  right: 6px;
  opacity: 1;
}
.main_menu .menu_bar_btu:hover div:nth-child(3n+2) {
  width: 33px;
}
.main_menu .menu_bar_btu.menu_active div:nth-child(3n+1) {
  top: 23px;
  -webkit-transform: rotate(405deg);
  -moz-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  -o-transform: rotate(405deg);
  transform: rotate(405deg);
}
.main_menu .menu_bar_btu.menu_active div:nth-child(3n+2) {
  width: 0;
  right: 22px;
  opacity: 0;
}
.main_menu .menu_bar_btu.menu_active div:nth-child(3n+3) {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  transform: rotate(-225deg);
  top: 23px;
}

.menu_container {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  width: 0;
  right: 0;
  top: 0;
  background-color: #0f8377;
  height: 100vh;
  z-index: 50;
  overflow: hidden;
  opacity: 0;
}
.menu_container.menu_active {
  width: 100%;
  opacity: 1;
}
.menu_container .row {
  height: 100vh;
}
.menu_container .row > div {
  padding: 0 40px;
}
.menu_container .row a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  display: block;
  text-align: right;
  padding-bottom: 10px;
  margin-bottom: 10px;
  word-break: keep-all;
  color: #eeeeee;
}
.menu_container .row a:hover {
  color: #1b3e3d;
}
.menu_container .row a:hover i {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.menu_container .row a i {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 1.5rem;
  line-height: 2.8rem;
  margin-right: 10px;
}
.menu_container .row a.collapse {
  border-bottom: 1px solid #fff;
}
.menu_container .row a.collapse.collapsed {
  border-bottom: 1px solid transparent;
}
.menu_container .menu_box {
  min-width: 100vw;
}
.menu_container .multi-collapse a {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: normal;
  color: #cccccc;
}

.dropdown-menu[data-bs-popper] {
  left: -88px;
}
@media only screen and (max-width: 991px) {
  .dropdown-menu[data-bs-popper] {
    left: 0;
  }
}

.template_bg .template_main.main_box_bg {
  padding-top: 100%;
}

.cb_slideshow {
  width: 100%;
  height: 100%;
}
.cb_slideshow li {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  list-style: none;
}
.cb_slideshow li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
}

.template_kv {
  display: block;
}
@media only screen and (max-width: 575px) {
  .template_kv {
    width: 80%;
    margin: auto;
  }
}
.template_kv .template_bg {
  width: 100%;
}
.template_kv .template_bg .template_main {
  background-size: cover !important;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .template_kv.phone_kv {
    display: none;
  }
}
.template_kv.phone_kv > .template_bg {
  width: 270px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-top: -252px;
  margin-left: -135px;
}
.template_kv.phone_kv > .template_bg .template_main {
  position: relative;
  padding-top: 186.6666666667%;
  background: url(/imgs/backguard/phone_kv-bg.png) 50% 50% no-repeat;
}
.template_kv.phone_kv.mobile_fix > .template_bg {
  position: relative;
  z-index: 10;
  left: 0;
  top: 0;
  margin: auto;
}
.template_kv.main_phone_kv {
  position: absolute;
  top: 19px;
  left: 27px;
  right: 24px;
}
.template_kv.main_phone_kv .template_bg {
  max-width: 100%;
}
.template_kv.main_phone_kv .template_bg .template_main {
  position: relative;
  padding-top: 212.8440366972%;
  background-size: cover;
  mask: url(/imgs/backguard/phone_mask.png) 50% 50% no-repeat;
  mask-size: cover;
  -webkit-mask: url(/imgs/backguard/phone_mask.png) 50% 50% no-repeat;
  -webkit-mask-size: cover;
}
.template_kv.main_phone_kv.kv-1 {
  z-index: 3;
}
.template_kv.main_phone_kv.kv-1 .template_main {
  background: url(/imgs/backguard/phone-kv-e.jpg) 50% 50% no-repeat;
}
.template_kv.main_phone_kv.kv-2 {
  z-index: 2;
}
.template_kv.main_phone_kv.kv-2 .template_main {
  background: url(/imgs/backguard/phone-kv-h.jpg) 50% 50% no-repeat;
}
.template_kv.main_phone_kv.kv-3 {
  z-index: 1;
}
.template_kv.main_phone_kv.kv-3 .template_main {
  background: url(/imgs/backguard/phone-kv-c.jpg) 50% 50% no-repeat;
}
.template_kv.main_phone_kv.kv-4 {
  z-index: 4;
}
.template_kv.main_phone_kv.kv-4 .template_main {
  background: url(/imgs/backguard/phone-kv-i.jpg) 50% 50% no-repeat;
}
.template_kv.main_phone_kv.kv-5 {
  z-index: 5;
}
.template_kv.main_phone_kv.kv-5 .template_main {
  background: url(/imgs/backguard/phone-kv-d.jpg) 50% 50% no-repeat;
}
.template_kv.main_phone_kv.kv-6 {
  z-index: 7;
}
.template_kv.main_phone_kv.kv-6 .template_main {
  background: url(/imgs/backguard/phone-kv-g.jpg) 50% 50% no-repeat;
}
.template_kv.icon-scan .template_bg, .template_kv.icon-payment .template_bg, .template_kv.icon-point .template_bg, .template_kv.icon-thanks .template_bg {
  max-width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -250px;
  margin-top: -250px;
}
@media only screen and (max-width: 991px) {
  .template_kv.icon-scan .template_bg, .template_kv.icon-payment .template_bg, .template_kv.icon-point .template_bg, .template_kv.icon-thanks .template_bg {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
  }
}
.template_kv.icon-scan .template_bg .template_main, .template_kv.icon-payment .template_bg .template_main, .template_kv.icon-point .template_bg .template_main, .template_kv.icon-thanks .template_bg .template_main {
  padding-top: 103.9416846652%;
  background: url(/imgs/backguard/icon_scan.png) 50% 50% no-repeat;
}
.template_kv.icon-thanks .template_bg .template_main {
  background: url(/imgs/backguard/icon_thanks.png) 50% 50% no-repeat;
}
.template_kv.icon-point .template_bg .template_main {
  background: url(/imgs/backguard/icon_point.png) 50% 50% no-repeat;
}
.template_kv.icon-payment .template_bg .template_main {
  background: url(/imgs/backguard/icon_payment.png) 50% 50% no-repeat;
}

.main-logo {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 150px;
  display: inline-block;
  background-size: contain;
}
@media only screen and (max-width: 991px) {
  .main-logo {
    width: 120px;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-collapse {
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 991px) {
  .navbar-collapse ul.navbar-nav li.nav-item {
    padding: 20px 0;
  }
}
.navbar-collapse.show {
  background-color: rgba(0, 0, 0, 0.75);
  margin-top: 20px;
}
.navbar-collapse.show ul.navbar-nav li.nav-item {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-collapse .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.5);
  margin-left: 15px;
  margin-right: 15px;
}
.navbar-collapse .dropdown-menu li a.dropdown-item {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 20px 10px;
  color: #ccc;
}
.navbar-collapse .dropdown-menu li a.dropdown-item:hover {
  color: #1e1e1e;
}

.main_footer {
  background-color: #243b3a;
  padding: 50px 20px;
  min-height: 320px;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .main_footer {
    padding: 25px 20px;
  }
}
.main_footer .main-logo {
  width: 150px;
  margin-bottom: -42px;
  opacity: 0.5;
}
@media only screen and (max-width: 991px) {
  .main_footer .main-logo {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .main_footer .main-logo {
    display: none;
  }
}
.main_footer .copyright_bar {
  font: normal normal normal 13px/17px Noto Sans;
  letter-spacing: 0;
  color: #ECECEC;
  position: relative;
  padding: 20px 15px;
  line-height: 1.75;
}
.main_footer .copyright_bar:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 15px;
  top: 50%;
}
.main_footer .copyright_bar .copyright {
  text-align: right;
  color: #cccccc;
}
.main_footer .copyright_bar .message_bar {
  margin-bottom: 30px;
  text-align: right;
  color: #848484;
}
.main_footer .copyright_bar .main_color {
  color: #0f8377;
}
.main_footer .guide_map .line_cov {
  position: relative;
  margin-bottom: 86px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .main_footer .guide_map .line_cov {
    margin-bottom: 50px;
  }
}
.main_footer .guide_map .line_cov:after {
  content: "";
  border-bottom: 1px solid #5c8a88;
  position: absolute;
  left: 10px;
  right: 10px;
  top: 42px;
}
@media only screen and (max-width: 767px) {
  .main_footer .guide_map .line_cov:after {
    display: none;
  }
}
.main_footer .guide_map .title {
  text-align: left;
  font: normal normal bold 16px/32px Noto Sans;
  letter-spacing: 0;
  color: #cccccc;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .main_footer .guide_map .title {
    border-bottom: 1px solid #5c8a88;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .main_footer .guide_map .title {
    font-weight: normal;
  }
}
.main_footer .guide_map .title i {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  right: 0;
  top: 8px;
}
.main_footer .guide_map .title.collapsed {
  font-weight: normal;
}
.main_footer .guide_map .title.collapsed i {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.main_footer .guide_map a {
  display: block;
  text-align: left;
  font: normal normal normal 13px/32px Noto Sans;
  letter-spacing: 0;
  color: #d1d1d1;
}
.main_footer .guide_map a:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #f1f1f1;
}
.main_footer .guide_map a.un_link {
  cursor: default;
  opacity: 0.5;
}
.main_footer .guide_map a.un_link:hover {
  color: #848484;
}
