@charset "UTF-8";
/*--------------------------
color
---------------------------*/
/*----------------------------------------
Reset
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&family=Noto+Sans+SC:wght@100..900&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*--------------------------
Tag Default
---------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  position: relative;
  font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 500;
  color: #333;
  line-height: 1;
  background: #fbfff1;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #333;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  line-height: 1.68;
}
@media only screen and (max-width: 768px) {
  p {
    line-height: 1.5;
  }
}

.dotted {
  position: relative;
  padding: 0 0 0 18px;
}
.dotted::before {
  position: absolute;
  content: "・";
  left: 0;
}

.sp_none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }
}

.pc_none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_none {
    display: block !important;
  }
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
@media only screen and (max-width: 1170px) {
  .container {
    padding: 0 16px;
  }
}

.animation {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.fade {
  -webkit-animation-name: fade;
  animation-name: fade;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@font-face {
  font-family: "fontello";
  src: url("/cn/special/dogreen/asset/font/fontello.eot?10496027");
  src: url("/cn/special/dogreen/asset/font/fontello.eot?10496027#iefix") format("embedded-opentype"), url("/cn/special/dogreen/asset/font/fontello.woff2?10496027") format("woff2"), url("/cn/special/dogreen/asset/font/fontello.woff?10496027") format("woff"), url("/cn/special/dogreen/asset/font/fontello.ttf?10496027") format("truetype"), url("/cn/special/dogreen/asset/font/fontello.svg?10496027#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-email:before {
  content: "\e800";
}

.icon-dl:before {
  content: "\e801";
}

.icon-right-circle:before {
  content: "\e803";
}

.icon-link-ext:before {
  content: "\f08e";
}

/*--------------------------
header
---------------------------*/
#header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  padding: 0 clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  #header {
    height: 80px;
  }
}
#header .hd_logo {
  display: block;
  width: 195px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  #header .hd_logo {
    width: 100px;
  }
}
#header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.313rem, 0.045rem + 1.34vw, 1.25rem);
}
#header nav .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
#header nav .lang li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(1.875rem, 1.518rem + 1.79vw, 3.125rem);
  height: clamp(1.875rem, 1.518rem + 1.79vw, 3.125rem);
  font-size: clamp(0.875rem, 0.768rem + 0.54vw, 1.25rem);
  font-family: "M PLUS Rounded 1c", sans-serif, "Noto Sans SC", sans-serif;
  font-weight: 700;
  color: #009842;
  border-radius: 50%;
}
#header nav .lang li a:hover, #header nav .lang li a.active {
  color: #fff;
  background: #009842;
}
#header nav .contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(6.25rem, 4.821rem + 7.14vw, 11.25rem);
  height: clamp(1.875rem, 1.518rem + 1.79vw, 3.125rem);
  font-size: clamp(0.875rem, 0.768rem + 0.54vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  background: #009842;
  border: 2px solid #009842;
  border-radius: 50px;
}
#header nav .contact::before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e800";
  margin: 0 4px 0 0;
}
#header nav .contact:hover {
  color: #009842;
  background: #fff;
}
#header.is-scrolled {
  height: 80px;
  background: #009842;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.125);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.125);
}
@media only screen and (max-width: 768px) {
  #header.is-scrolled {
    height: 60px;
  }
}
#header.is-scrolled .hd_logo {
  width: 160px;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  #header.is-scrolled .hd_logo {
    width: 80px;
  }
}
#header.is-scrolled .lang li a {
  width: clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
  height: clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
  font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
  color: #fff;
}
#header.is-scrolled .lang li a:hover, #header.is-scrolled .lang li a.active {
  color: #009842;
  background: #fff;
}
#header.is-scrolled .contact {
  width: clamp(5rem, 3.214rem + 8.93vw, 11.25rem);
  height: clamp(1.563rem, 1.295rem + 1.34vw, 2.5rem);
  font-size: clamp(0.75rem, 0.607rem + 0.71vw, 1.25rem);
  color: #009842;
  background: #fff;
}
#header.is-scrolled .contact:hover {
  color: #fff;
  background: #009842;
  border-color: #fff;
}

/* -------------------------------------------
footer
---------------------------------------------*/
#footer {
  text-align: center;
  padding: clamp(2.5rem, 2.143rem + 1.79vw, 3.75rem) 16px clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem);
  background: #d6e496;
}
#footer .logo {
  display: block;
  width: 240px;
  margin: 0 auto clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
}
@media only screen and (max-width: 768px) {
  #footer .logo {
    width: 180px;
  }
}
#footer .logo:hover {
  opacity: 0.7;
}
#footer .copy {
  font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
  color: #717071;
}

/* -------------------------------------------
page-top
---------------------------------------------*/
#page-top {
  position: fixed;
  display: block;
  right: 0;
  z-index: 999;
}
#page-top a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(3.75rem, 3.571rem + 0.89vw, 4.375rem);
  min-width: clamp(3.75rem, 3.571rem + 0.89vw, 4.375rem);
  height: clamp(3.75rem, 3.571rem + 0.89vw, 4.375rem);
  gap: clamp(0.375rem, 0.339rem + 0.18vw, 0.5rem);
  font-size: clamp(0.625rem, 0.589rem + 0.18vw, 0.75rem);
  font-family: "M PLUS Rounded 1c", sans-serif, "Noto Sans SC", sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: #009842;
}
#page-top a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px clamp(0.563rem, 0.509rem + 0.27vw, 0.75rem) clamp(0.975rem, 0.882rem + 0.46vw, 1.3rem) clamp(0.563rem, 0.509rem + 0.27vw, 0.75rem);
  border-color: transparent transparent #fff transparent;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#page-top a:hover {
  background: #285306;
}

/*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
  text-align: center;
  padding: 140px 0 0;
}
@media only screen and (max-width: 768px) {
  #main_visual {
    padding: 40px 0 0;
  }
}
#main_visual::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(/cn/special/dogreen/asset/image/bg_item.png);
}
@media only screen and (max-width: 768px) {
  #main_visual::before {
    height: 90%;
  }
}
#main_visual .mv_item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: clamp(5rem, 3.929rem + 5.36vw, 8.75rem);
  left: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #main_visual .mv_item {
    top: 40px;
  }
}
#main_visual #mv_item04.is-blinking {
  -webkit-animation: mvFade01 2.5s ease-in-out infinite;
          animation: mvFade01 2.5s ease-in-out infinite;
}
#main_visual #mv_item05.is-blinking {
  -webkit-animation: mvFade02 3.5s ease-in-out infinite;
          animation: mvFade02 3.5s ease-in-out infinite;
}
#main_visual #mv_item06.is-blinking {
  -webkit-animation: mvFade03 1.8s ease-in-out infinite;
          animation: mvFade03 1.8s ease-in-out infinite;
}
@-webkit-keyframes mvFade01 {
  0%, 20%, 100% {
    opacity: 1;
  }
  35% {
    opacity: 0.5;
  }
  55% {
    opacity: 1;
  }
}
@keyframes mvFade01 {
  0%, 20%, 100% {
    opacity: 1;
  }
  35% {
    opacity: 0.5;
  }
  55% {
    opacity: 1;
  }
}
@-webkit-keyframes mvFade02 {
  0%, 30%, 100% {
    opacity: 1;
  }
  45% {
    opacity: 0.45;
  }
  65% {
    opacity: 1;
  }
}
@keyframes mvFade02 {
  0%, 30%, 100% {
    opacity: 1;
  }
  45% {
    opacity: 0.45;
  }
  65% {
    opacity: 1;
  }
}
@-webkit-keyframes mvFade03 {
  0%, 15%, 100% {
    opacity: 1;
  }
  30% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
@keyframes mvFade03 {
  0%, 15%, 100% {
    opacity: 1;
  }
  30% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  text-align: center;
  padding: clamp(2.5rem, 1.071rem + 7.14vw, 7.5rem) 0 clamp(5rem, 4.286rem + 3.57vw, 7.5rem);
}
#section01 .container h1 {
  display: block;
  font-size: clamp(1.5rem, 1.071rem + 2.14vw, 3rem);
  font-weight: 700;
  color: #009842;
  line-height: 1.4;
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}

/*--------------------------
section02
---------------------------*/
#section02 {
  padding: 0 0 clamp(5rem, 4.286rem + 3.57vw, 7.5rem);
}
#section02 .container h1 {
  display: block;
  font-size: clamp(1.5rem, 1.071rem + 2.14vw, 3rem);
  font-weight: 700;
  color: #009842;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#section02 .container .txt_box {
  text-align: center;
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#section02 .container .example_box h2 {
  display: block;
  font-size: clamp(1.25rem, 1.107rem + 0.71vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  padding: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
  background: #009842;
}
#section02 .container .example_box .example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem) clamp(1.25rem, 0.536rem + 3.57vw, 3.75rem);
  margin: 0 0 clamp(2.5rem, 2.143rem + 1.79vw, 3.75rem);
  background: #fffcdb;
}
@media only screen and (max-width: 768px) {
  #section02 .container .example_box .example {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#section02 .container .example_box .example li {
  width: 33.3333333333%;
  padding: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
}
@media only screen and (max-width: 768px) {
  #section02 .container .example_box .example li {
    width: 100%;
  }
}
#section02 .container .example_box .example li:not(:last-child) {
  border-right: 2px solid #009842;
}
@media only screen and (max-width: 768px) {
  #section02 .container .example_box .example li:not(:last-child) {
    border-right: none;
    border-bottom: 2px solid #009842;
  }
}
#section02 .container .example_box .example li h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 65px;
  gap: 10px;
  font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
  font-family: "M PLUS Rounded 1c", sans-serif, "Noto Sans SC", sans-serif;
  font-weight: 700;
  color: #009842;
  line-height: 1.25;
  margin: 0 0 clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
}
@media only screen and (max-width: 768px) {
  #section02 .container .example_box .example li h3 {
    min-height: auto;
  }
}
#section02 .container .example_box .example li h3 i {
  display: block;
  width: 50px;
  min-width: 50px;
  height: 65px;
}
@media only screen and (max-width: 768px) {
  #section02 .container .example_box .example li h3 i {
    width: 30px;
    min-width: 30px;
    height: 39px;
  }
}
#section02 .container .example_box .example li p {
  color: #6a3906;
}
#section02 .container .example_box .example li p b {
  color: #009842;
}
#section02 .container .example_box .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
@media only screen and (max-width: 768px) {
  #section02 .container .example_box .btn_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#section02 .container .example_box .btn_box a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(13.75rem, 11.964rem + 8.93vw, 20rem);
  height: clamp(3.75rem, 3.393rem + 1.79vw, 5rem);
  font-size: clamp(0.875rem, 0.768rem + 0.54vw, 1.25rem);
  font-weight: 700;
  color: #009842;
  text-align: center;
  line-height: 1.25;
  padding: 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
  background: #fff;
  border: 2px solid #009842;
  border-radius: 50px;
}
#section02 .container .example_box .btn_box a::after {
  position: absolute;
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e801";
  top: 50%;
  right: clamp(0.625rem, 0.446rem + 0.89vw, 1.25rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#section02 .container .example_box .btn_box a:hover {
  color: #fff;
  background: #009842;
}
#section02 .img_box {
  padding: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem) 16px;
  margin: 0 0 clamp(2.5rem, 2.143rem + 1.79vw, 3.75rem);
  background-image: url(/cn/special/dogreen/asset/image/bg_item.png);
}
#section02 .img_box .pic {
  width: 100%;
  max-width: 1170px;
  text-align: center;
  margin: 0 auto;
}

/*--------------------------
section03
---------------------------*/
#section03 {
  padding: 0 0 clamp(5rem, 4.286rem + 3.57vw, 7.5rem);
}
#section03 .container h1 {
  display: block;
  font-size: clamp(1.5rem, 1.071rem + 2.14vw, 3rem);
  font-weight: 700;
  color: #009842;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#section03 .container .product_box {
  max-width: 980px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #section03 .container .product_box {
    width: 85%;
  }
}
#section03 .container .product_box figure a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  background: #fffcdb;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.125);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.125);
}
@media only screen and (max-width: 768px) {
  #section03 .container .product_box figure a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
#section03 .container .product_box figure a .thumb {
  width: clamp(11.25rem, 10.179rem + 5.36vw, 15rem);
  min-width: clamp(11.25rem, 10.179rem + 5.36vw, 15rem);
}
#section03 .container .product_box figure a figcaption {
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  font-weight: 700;
  line-height: 1.68;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section03 .container .product_box figure a figcaption {
    line-height: 1.5;
    text-align: center;
    padding: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  }
}
#section03 .container .product_box figure a figcaption span {
  position: relative;
  display: inline-block;
  font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
  font-weight: 500;
}
#section03 .container .product_box figure a figcaption span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  background: #6a3906;
  opacity: 0;
}
#section03 .container .product_box figure a figcaption span::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e803";
  margin: 0 0 0 4px;
}
#section03 .container .product_box figure a:hover {
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.125);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.125);
}
#section03 .container .product_box figure a:hover figcaption {
  color: #6a3906;
}
#section03 .container .product_box figure a:hover figcaption span::before {
  opacity: 1;
}

/*--------------------------
section04
---------------------------*/
#section04 {
  padding: 0 0 clamp(5rem, 3.214rem + 8.93vw, 11.25rem);
}
#section04 .container h1 {
  display: block;
  font-size: clamp(1.5rem, 1.071rem + 2.14vw, 3rem);
  font-weight: 700;
  color: #555;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
}
#section04 .container .banner_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #section04 .container .banner_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#section04 .container .banner_box figure {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #section04 .container .banner_box figure {
    width: 85%;
    margin: 0 auto;
  }
}
#section04 .container .banner_box figure.mr a .thumb {
  background: #0057B8;
}
#section04 .container .banner_box figure a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.125);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.125);
}
@media only screen and (max-width: 768px) {
  #section04 .container .banner_box figure a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#section04 .container .banner_box figure a .thumb {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(7.5rem, 5.714rem + 8.93vw, 13.75rem);
  min-width: clamp(7.5rem, 5.714rem + 8.93vw, 13.75rem);
  height: clamp(3.875rem, 2.714rem + 5.8vw, 7.938rem);
  margin: 0 clamp(0.75rem, 0.679rem + 0.36vw, 1rem) 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #section04 .container .banner_box figure a .thumb {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
#section04 .container .banner_box figure a .thumb::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #333;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  opacity: 0;
}
#section04 .container .banner_box figure a .thumb img {
  display: block;
  width: auto;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section04 .container .banner_box figure a figcaption {
    text-align: center;
    padding: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  }
}
#section04 .container .banner_box figure a figcaption h3 {
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 clamp(0.5rem, 0.464rem + 0.18vw, 0.625rem);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#section04 .container .banner_box figure a figcaption p {
  position: relative;
  display: inline-block;
  font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#section04 .container .banner_box figure a figcaption p::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  background: #009842;
  opacity: 0;
}
#section04 .container .banner_box figure a figcaption p::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f08e";
}
#section04 .container .banner_box figure a:hover {
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.125);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.125);
}
#section04 .container .banner_box figure a:hover .thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#section04 .container .banner_box figure a:hover .thumb::after {
  opacity: 0.25;
}
#section04 .container .banner_box figure a:hover figcaption {
  color: #009842;
}
#section04 .container .banner_box figure a:hover figcaption p::before {
  opacity: 1;
}