@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
  font-family: Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Apple LiGothic", "蘋果儷中黑";
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

html {
  font-family: Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Apple LiGothic", "蘋果儷中黑";
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */
}

.wrapper {
  overflow-x: hidden;
  min-width: 310px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

span {
  font-family: Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Apple LiGothic", "蘋果儷中黑";
}

span.inblock {
  display: inline-block;
}

.t_lightBlue {
  color: #00ffff !important;
}

.cookie {
  position: relative;
  width: 100%;
  padding: 13px;
  font-size: 13px;
  line-height: 24px;
  background-color: #f5f5f5;
  z-index: 999999999;
  display: none;
}

.cookie .container {
  width: 100%;
  max-width: 1260px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .cookie .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cookie .container span {
  display: inline-block;
}

.cookie .container span.know {
  display: inline-block;
  text-decoration: underline;
  color: #005ca2;
  cursor: pointer;
  width: 4rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .cookie .container span {
    display: block;
  }
  .cookie .container span.know {
    margin-left: auto;
  }
}

.scrollbar {
  position: fixed;
  z-index: 1;
  width: 100%;
  bottom: 10px;
  left: 0;
}

.scrollbar .container {
  position: relative;
  max-width: 1300px;
}

.goTopBtn {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  text-align: center;
  width: 35px;
  height: 50px;
  right: 0px;
  bottom: 10px;
  font-size: 0.5rem;
  color: #ffffff;
  background-color: #a4514b;
  font-weight: 600;
  opacity: 0;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  cursor: pointer;
  z-index: 99999;
  padding: 15px 0 0 0;
  margin-right: 10px;
}

.goTopBtn:hover {
  padding-top: 10px;
}

.goTopBtn img {
  width: 100%;
  max-width: 12px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.goTopBtn span {
  font-size: 12px;
  line-height: 2;
  color: #ffffff;
  font-weight: bold;
  display: block;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.goTopBtn span.topArrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

.goTopBtn.upToShow {
  opacity: 1;
  bottom: 20px;
}

@media screen and (max-width: 768px) {
  .goTopBtn {
    padding: 8px 0 0 0;
  }
  .scrollbar .upToShow {
    right: 0rem;
  }
}

/*==================== hover====================*/
/********************** Bob *********************/
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

.hvr-bob {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

header {
  border-bottom: 1px solid #fff;
  background-color: #fff8f0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

header .navbar {
  position: relative;
}

header .logo {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 999;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  max-width: 104px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

header .logo h1 {
  background-image: url("../img/logoTW.svg");
  background-size: 104px auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 48px;
  text-indent: 101%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

header .menu {
  width: calc( 100% -  150px);
  margin-left: auto;
  position: relative;
  background-color: #fff8f0;
}

@media screen and (max-width: 960px) {
  header .menu {
    width: calc( 100% -  100px);
  }
}

@media screen and (max-width: 768px) {
  header .menu {
    width: calc( 100% + 30px);
    left: -15px;
  }
}

header .menu ul.menuList {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  header .menu ul.menuList {
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #ffffff;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
    z-index: -5;
  }
}

header .menu ul.menuList li {
  display: inline-block;
}

header .menu ul.menuList li a {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #000;
  padding: 30px 15px;
  text-decoration: none;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  header .menu ul.menuList li a {
    padding: 30px 7px;
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  header .menu ul.menuList li a {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

header .menu ul.menuList li a:hover {
  background-color: #fff;
}

header .menu ul.menuList li a.active {
  background-color: #fff;
  color: #a4514b;
}

@media screen and (max-width: 768px) {
  header .menu ul.menuList li a.active {
    background-color: #fff8f0;
  }
}

header .menu ul.menuList li a.contact {
  color: #a52221;
}

@media screen and (max-width: 768px) {
  header .menu ul.menuList.open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 100%;
  }
}

header .menu .btn_hamburger {
  width: 75px;
  margin-left: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  position: relative;
  right: -15px;
  cursor: pointer;
  display: none;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

header .menu .btn_hamburger span {
  width: 25px;
  height: 2px;
  margin: 7px auto;
  background-color: #000000;
  display: block;
}

@media screen and (max-width: 768px) {
  header .menu .btn_hamburger {
    display: block;
    right: 0;
  }
}

header.scroll {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(164, 81, 75, 0.5);
          box-shadow: 0px 0px 10px 0px rgba(164, 81, 75, 0.5);
  border-bottom: 0px solid #000;
}

@media screen and (max-width: 960px) {
  header.scroll {
    padding-top: 5px;
  }
}

@media screen and (max-width: 960px) and (max-width: 768px) {
  header.scroll {
    padding-top: 0;
  }
}

header.scroll .logo h1 {
  background-size: 90px auto;
  height: 42px;
}

header.scroll .menu ul.menuList li a {
  padding-top: 17px;
  padding-bottom: 17px;
}

header.scroll .menu .btn_hamburger {
  padding-top: 10px;
  padding-bottom: 10px;
}

a:focus {
  outline: none;
  outline-offset: 0px;
}

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

p {
  font-size: 16px;
  line-height: 2;
}

p b {
  font-weight: bold;
}

p.t_blue {
  color: #003edf;
}

p.t_green {
  color: #1d7700;
}

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

h2 {
  font-size: 36px;
  line-height: 1.39;
  font-weight: bold;
}

h2 > sup {
  font-size: 0.3em;
  display: inline-block;
  vertical-align: super;
  -webkit-transform: translateY(-4px) translateX(0px);
          transform: translateY(-4px) translateX(0px);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 28px;
    line-height: 1.36;
  }
  h2 > sup {
    -webkit-transform: translateY(-2px) translateX(0px);
            transform: translateY(-2px) translateX(0px);
  }
}

h3 {
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
}

h3 > sup {
  font-size: 0.75em;
  display: inline-block;
  vertical-align: super;
  -webkit-transform: translateY(3px) translateX(0px);
          transform: translateY(3px) translateX(0px);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 18px;
  }
  h3 > sup {
    -webkit-transform: translateY(4px) translateX(0px);
            transform: translateY(4px) translateX(0px);
  }
}

ul.list li {
  padding-left: 22px;
  position: relative;
  padding-bottom: 5px;
}

ul.list li:last-of-type {
  padding-bottom: 0;
}

ul.list li:before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #a4514b;
  position: absolute;
  left: 5px;
  top: 10px;
}

span.tm {
  font-size: 0.5em;
  vertical-align: super;
}

main section.sec_kv {
  background-color: #fff8f0;
  padding-top: 142px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  main section.sec_kv {
    padding-top: 100px;
    padding-bottom: 65px;
  }
}

main section.sec_kv .kv_slide {
  padding-bottom: 60px;
}

main section.sec_kv .kv h1 {
  font-size: 42px;
  line-height: 1.34;
  font-weight: bold;
}

main section.sec_kv .kv h1 > sup {
  font-size: 0.34em;
  display: inline-block;
  vertical-align: super;
  -webkit-transform: translateY(-5px) translateX(-2px);
          transform: translateY(-5px) translateX(-2px);
  font-weight: bold;
  margin-right: -2px;
}

main section.sec_kv .kv h1 span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv h1 {
    font-size: 30px;
    line-height: 1.34;
    margin-bottom: 5px;
  }
  main section.sec_kv .kv h1 sup {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@media screen and (max-width: 520px) {
  main section.sec_kv .kv h1 span {
    display: block;
  }
}

main section.sec_kv .kv p {
  font-size: 28px;
  line-height: 1.37;
  margin-bottom: 6px;
}

main section.sec_kv .kv p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv p {
    font-size: 24px;
    line-height: 1.42;
  }
}

main section.sec_kv .kv p span {
  display: inline-block;
}

@media screen and (max-width: 520px) {
  main section.sec_kv .kv p span {
    display: block;
  }
}

main section.sec_kv .kv .top {
  width: 100%;
}

main section.sec_kv .kv .cta {
  margin-top: 22px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv .cta {
    margin-top: 10px;
  }
}

main section.sec_kv .kv .cta a {
  text-align: center;
  display: block;
  width: 165px;
  background-color: #a4514b;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  text-decoration: none;
  padding: 5px;
}

main section.sec_kv .kv .cta a span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  margin-left: 3px;
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv .cta a {
    font-size: 18px;
    line-height: 1.78;
    width: 148px;
  }
  main section.sec_kv .kv .cta a span {
    width: 12px;
    height: 12px;
  }
}

main section.sec_kv .kv .cta a:hover span {
  -webkit-transform: rotate(45deg) translateX(4px) translateY(-4px);
          transform: rotate(45deg) translateX(4px) translateY(-4px);
}

main section.sec_kv .kv .banner .pc {
  display: block;
}

main section.sec_kv .kv .banner .mobile {
  display: none;
}

main section.sec_kv .kv01 {
  overflow: hidden;
}

main section.sec_kv .kv01 .top {
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
}

main section.sec_kv .kv01 .top h1, main section.sec_kv .kv01 .top p {
  text-align: center;
}

main section.sec_kv .kv01 .cta {
  margin-bottom: 43px;
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv01 .cta {
    margin-bottom: 32px;
  }
}

main section.sec_kv .kv01 .cta a {
  margin-right: auto;
  margin-left: auto;
}

main section.sec_kv .kv01 .banner {
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv01 .banner {
    width: calc( 100% + 120px);
    left: -60px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_kv .kv01 .banner {
    width: calc( 100% + 416px);
    left: -208px;
  }
}

main section.sec_kv .kv01 .banner .tips {
  position: absolute;
  top: 33%;
  right: 15.5%;
  width: 17%;
  max-width: 158px;
  font-size: 14px;
  line-height: 1.285;
  color: #ffffff;
  background-color: #40473d;
  border-radius: 10px;
  display: block;
  padding: 7px 12px 7px 15px;
}

@media screen and (max-width: 960px) {
  main section.sec_kv .kv01 .banner .tips {
    right: 14.5%;
    padding-right: 13px;
  }
  main section.sec_kv .kv01 .banner .tips span {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv01 .banner .tips {
    width: 49.4%;
    top: 60%;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}

@media screen and (max-width: 520px) {
  main section.sec_kv .kv01 .banner .tips {
    top: 61%;
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
}

main section.sec_kv .kv02 .container {
  max-width: 1074px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  main section.sec_kv .kv02 .container {
    max-width: 810px;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv02 .container {
    max-width: 560px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_kv .kv02 .container {
    max-width: 380px;
  }
}

@media screen and (max-width: 960px) {
  main section.sec_kv .kv02 .top {
    max-width: 550px;
  }
}

main section.sec_kv .kv02 .top h1 {
  margin-bottom: 6px;
}

@media screen and (max-width: 420px) {
  main section.sec_kv .kv02 .top h1 {
    letter-spacing: -0.04em;
  }
}

main section.sec_kv .kv02 .top p {
  font-size: 28px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv02 .top p {
    font-size: 20px;
  }
}

main section.sec_kv .kv02 .banner {
  width: 100%;
  max-width: 659px;
  margin-top: -90px;
  position: relative;
  left: 27.5%;
}

main section.sec_kv .kv02 .banner img {
  display: block;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  main section.sec_kv .kv02 .banner {
    max-width: 500px;
    left: 32%;
    margin-top: -70px;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_kv .kv02 .banner {
    margin-top: -10px;
    max-width: 400px;
    left: calc( 100% - 400px);
  }
}

@media screen and (max-width: 520px) {
  main section.sec_kv .kv02 .banner {
    margin-right: auto;
    margin-left: auto;
    left: 0px;
  }
}

@media screen and (max-width: 420px) {
  main section.sec_kv .kv02 .banner {
    max-width: 265px;
  }
  main section.sec_kv .kv02 .banner .pc {
    display: none;
  }
  main section.sec_kv .kv02 .banner .mobile {
    display: block;
  }
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: transparent;
  background-color: #a4514b;
}

.slick-dots li button:before {
  font-size: 50px;
  color: transparent;
  background-color: transparent;
  border: 1px solid #a4514b;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

main section.sec_00 {
  position: relative;
}

main section.sec_00 .container {
  position: relative;
}

main section.sec_00 .container:before {
  content: "";
  position: absolute;
  top: -308px;
  left: 0px;
  -webkit-transform: translateX(-71.7%);
          transform: translateX(-71.7%);
  background-image: url(../img/img01-0.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 903px;
  height: 792px;
  z-index: -3;
}

@media screen and (max-width: 960px) {
  main section.sec_00 .container:before {
    width: 700px;
    top: -180px;
    -webkit-transform: translateX(-48.5%);
            transform: translateX(-48.5%);
  }
}

@media screen and (max-width: 768px) {
  main section.sec_00 .container:before {
    width: 500px;
    top: -100px;
    -webkit-transform: translateX(-48.5%);
            transform: translateX(-48.5%);
  }
}

@media screen and (max-width: 520px) {
  main section.sec_00 .container:before {
    width: 261px;
    height: 230px;
    top: -30px;
    -webkit-transform: translateX(-47.5%);
            transform: translateX(-47.5%);
  }
}

main section.sec_00 .slideBox {
  background-color: #fff;
  -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: relative;
}

main section.sec_00 .slideBox:before, main section.sec_00 .slideBox:after {
  content: '';
  width: 1px;
  height: 100px;
  background-color: #b4b4b4;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

main section.sec_00 .slideBox:before {
  left: 33.33%;
}

main section.sec_00 .slideBox:after {
  left: 66.66%;
}

@media screen and (max-width: 960px) {
  main section.sec_00 .slideBox:before {
    left: 50%;
  }
  main section.sec_00 .slideBox:after {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_00 .slideBox:before {
    display: none;
  }
}

main section.sec_00 .slide_marquee .inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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: 100%;
  height: 100%;
  padding: 20px 0;
}

@media screen and (max-width: 520px) {
  main section.sec_00 .slide_marquee .inner {
    padding: 0px 0;
  }
}

main section.sec_00 .slide_marquee .inner p {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  main section.sec_00 .slide_marquee .inner p {
    font-size: 18px;
    padding-right: 10px;
    max-width: 130px;
  }
}

main section.sec_00 .slide_marquee .inner p.w7 {
  width: calc( 7.1em + 15px);
  text-align: left;
}

main section.sec_00 .slide_marquee .inner .imgBox {
  position: relative;
  cursor: pointer;
  height: 112px;
  padding-left: 15px;
  width: auto;
}

@media screen and (max-width: 768px) {
  main section.sec_00 .slide_marquee .inner .imgBox {
    padding-left: 10px;
  }
}

main section.sec_00 .slide_marquee .inner .img {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: auto;
}

main section.sec_00 .slide_marquee .inner .img img {
  width: auto;
  max-width: 100%;
  border: 1px solid #a4514b;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 520px) {
  main section.sec_00 .slide_marquee .inner .img img {
    width: 50px;
  }
}

main section.sec_00 .slide_marquee .inner .img img:nth-child(1) {
  z-index: 3;
}

main section.sec_00 .slide_marquee .inner .img img:nth-child(2) {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

main section.sec_00 .slide_marquee .inner .img img:nth-child(3) {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}

main section.sec_00 .slide_marquee .inner .img:before {
  content: '';
  background-image: url(../img/icon_magnifier.svg);
  width: 25px;
  height: 25px;
  background-size: 100%;
  position: absolute;
  bottom: 8px;
  right: 10px;
  z-index: 10;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

main section.sec_00 .slide_marquee .inner .img:hover:before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

main section.sec_00 .slide_marquee .inner .imgBox.box01 {
  padding-right: 20px;
}

main section.sec_00 .slide_marquee .inner .imgBox.box01 .img {
  top: calc( 50% - 10px);
  width: calc( 100% + 20px);
}

main section.sec_00 .slide_marquee .inner .imgBox.box01 .img:before {
  bottom: -12px;
}

@media screen and (max-width: 520px) {
  main section.sec_00 .slide_marquee .inner .imgBox.box01 .img {
    top: calc( 50% - 8px);
    width: calc( 100% + 16px);
  }
}

main section.sec_00 .slide_marquee .inner .imgBox.box03 {
  padding-right: 10px;
}

main section.sec_00 .slide_marquee .inner .imgBox.box03 .img {
  top: calc( 50% - 5px);
  width: calc( 100% + 10px);
}

main section.sec_00 .slide_marquee .inner .imgBox.box03 .img:before {
  bottom: -2px;
}

@media screen and (max-width: 520px) {
  main section.sec_00 .slide_marquee .inner .imgBox.box03 .img {
    top: calc( 50% - 4px);
    width: calc( 100% + 8px);
  }
}

@media screen and (max-width: 520px) {
  main section.sec_00 .slide_marquee .inner .imgBox.box02 .img img {
    width: 86px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_00 .slide_marquee .inner .imgBox.box02.box_tw .img img {
    width: 100%;
  }
}

main section.sec_01 {
  padding-top: 85px;
  padding-bottom: 100px;
  position: relative;
}

@media screen and (max-width: 960px) {
  main section.sec_01 {
    padding-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_01 {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}

main section.sec_01 p span.red {
  color: #e0351e;
}

main section.sec_01 h3 {
  margin-bottom: 5px;
  margin-top: 8px;
}

main section.sec_01 .box {
  margin-bottom: 23px;
}

main section.sec_01 .box:last-child {
  margin-bottom: 0;
}

main section.sec_01 .specialArea {
  width: 100%;
  background: linear-gradient(-45deg, #202676 0%, #202676 45%, rgba(255, 255, 255, 0.3) 50%, #202676 55%, #202676 100%);
  background-color: #202676;
  background-size: 10px 10px;
  padding: 20px;
  position: relative;
}

main section.sec_01 .specialArea:before {
  content: "";
  background-image: url(../img/specialArea_clip.png);
  background-size: 100% auto;
  width: 208px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  main section.sec_01 .specialArea {
    padding: 15px;
  }
  main section.sec_01 .specialArea:before {
    width: 166px;
    height: 80px;
  }
}

main section.sec_01 .content {
  width: 100%;
  background-color: #fff;
  padding: 50px 20px 0 20px;
}

@media screen and (max-width: 768px) {
  main section.sec_01 .content {
    padding-right: 15px;
    padding-left: 15px;
  }
}

main section.sec_01 h2 {
  color: #202676;
  text-align: center;
  position: relative;
  width: 4.1em;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10px;
}

main section.sec_01 h2::before {
  content: "";
  background-image: url(../img/specialArea_line.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 456px;
  height: 21px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

@media screen and (max-width: 768px) {
  main section.sec_01 h2::before {
    width: 364px;
    height: 17px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_01 h2::before {
    width: 230px;
    height: 22px;
    background-image: url(../img/specialArea_line_m.png);
  }
}

main section.sec_01 h3 {
  font-family: "Arial Bold","微軟正黑體";
  margin: 0;
  margin-bottom: 5px;
}

main section.sec_01 p.tips {
  color: #939393;
}

main section.sec_01 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}

main section.sec_01 .row .col {
  width: 48.8%;
  max-width: 500px;
}

main section.sec_01 .row.clip {
  width: 100%;
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  main section.sec_01 .row.clip {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
    margin-top: 45px;
  }
  main section.sec_01 .row.clip .col {
    width: 100%;
    max-width: none;
  }
  main section.sec_01 .row.clip > .col:nth-child(1) {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_01 .row.clip > .col:nth-child(1) {
    margin-bottom: 25px;
  }
}

main section.sec_01 .row.letter {
  margin-top: 22px;
}

main section.sec_01 .row.letter .col:nth-child(1) {
  width: 55px;
}

main section.sec_01 .row.letter .col:nth-child(1) p {
  font-size: 70px;
  line-height: 1;
  text-align: center;
  color: #202676;
}

main section.sec_01 .row.letter .col:nth-child(2) {
  width: calc( 100% - 70px);
  max-width: 430px;
}

@media screen and (max-width: 768px) {
  main section.sec_01 .row.letter .col:nth-child(2) {
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_01 .row.letter .col:nth-child(1) {
    width: 45px;
  }
  main section.sec_01 .row.letter .col:nth-child(1) p {
    font-size: 60px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  main section.sec_01 .row.letter .col:nth-child(2) {
    width: calc( 100% - 60px);
  }
}

main section.sec_01 .time {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  main section.sec_01 .time {
    margin-bottom: 20px;
  }
}

main section.sec_01 .list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 6px;
}

main section.sec_01 .list ul li {
  width: 50%;
  max-width: 180px;
  padding-left: 20px;
  position: relative;
}

main section.sec_01 .list ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #202676;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(50%, 120%);
          transform: translate(50%, 120%);
}

@media screen and (max-width: 520px) {
  main section.sec_01 .list ul li {
    width: 100%;
  }
}

main section.sec_01 .wound {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

@media screen and (max-width: 520px) {
  main section.sec_01 .wound {
    margin-top: 25px;
  }
}

main section.sec_01 .wound .img {
  width: calc( 100% / 3);
  min-width: 150px;
  max-width: 167px;
  position: relative;
}

@media screen and (max-width: 960px) {
  main section.sec_01 .wound .img {
    width: 50%;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_01 .wound .img {
    min-width: auto;
  }
}

main section.sec_01 .wound .img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
}

main section.sec_01 .wound .img p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 520px) {
  main section.sec_01 .wound .img p {
    font-size: 12px;
    line-height: 1.8;
  }
}

main section.sec_01 .reference {
  color: #464646;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  main section.sec_01 .reference {
    margin-top: 20px;
  }
}

main section.sec_01 .bottom {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  main section.sec_01 .bottom {
    margin-top: 60px;
  }
}

main section.sec_01 .bottom .img {
  width: 180px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  main section.sec_01 .bottom .img {
    width: 120px;
  }
}

main section.sec_01 .bottom .img::before, main section.sec_01 .bottom .img::after {
  content: "";
  width: 62px;
  height: 1px;
  background-color: #969696;
  position: absolute;
}

@media screen and (max-width: 768px) {
  main section.sec_01 .bottom .img::before, main section.sec_01 .bottom .img::after {
    width: 40px;
  }
}

main section.sec_01 .bottom .img::before {
  top: 50%;
  left: 0;
  -webkit-transform: translateX(calc( -100% - 25px)) translateY(-15px) rotate(45deg);
          transform: translateX(calc( -100% - 25px)) translateY(-15px) rotate(45deg);
}

main section.sec_01 .bottom .img::after {
  top: 50%;
  right: 0;
  -webkit-transform: translateX(calc( 100% + 25px)) translateY(-15px) rotate(-45deg);
          transform: translateX(calc( 100% + 25px)) translateY(-15px) rotate(-45deg);
}

main section.sec_02 {
  background-color: transparent;
  margin-top: 25px;
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  main section.sec_02 {
    margin-top: 134px;
    margin-bottom: 0;
  }
}

main section.sec_02 p strong {
  font-weight: bold;
  color: #e0351e;
}

main section.sec_02 h3 {
  margin-bottom: 0.25em;
}

main section.sec_02 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 768px) {
  main section.sec_02 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
  }
}

main section.sec_02 .row .col {
  width: 48.5%;
  max-width: 570px;
}

@media screen and (max-width: 768px) {
  main section.sec_02 .row .col {
    width: 100%;
  }
}

main section.sec_02 .row .col.img {
  background-image: url(../img/img02.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  main section.sec_02 .row .col.img {
    margin-top: -134px;
    margin-bottom: 0;
    height: 268px;
  }
}

main section.sec_02 .row .col.text {
  padding: 55px 0;
}

@media screen and (max-width: 768px) {
  main section.sec_02 .row .col.text {
    padding: 12px 0 55px 0;
  }
}

main section.sec_02 .box {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  main section.sec_02 .box {
    margin-top: 12px;
  }
}

main section.sec_03 {
  padding: 65px 0 0 0;
  background-color: #fff8f0;
  position: relative;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  main section.sec_03 {
    padding: 45px 0 0 0;
  }
  main section.sec_03 h2 {
    margin-bottom: 6px;
  }
}

main section.sec_03 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  main section.sec_03 .row {
    width: 100%;
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
  }
}

main section.sec_03 .row .col.text {
  width: 57.3%;
  max-width: 670px;
  padding-bottom: 140px;
}

@media screen and (max-width: 1200px) {
  main section.sec_03 .row .col.text {
    width: 48%;
  }
}

@media screen and (max-width: 960px) {
  main section.sec_03 .row .col.text {
    width: 100%;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_03 .row .col.text {
    padding-bottom: 30px;
  }
}

main section.sec_03 .row .col.img {
  width: 42%;
  max-width: 430px;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1200px) {
  main section.sec_03 .row .col.img {
    width: 50%;
    max-width: none;
  }
}

@media screen and (max-width: 960px) {
  main section.sec_03 .row .col.img {
    width: 100%;
  }
}

main section.sec_03 ul.list {
  margin: 40px 0 20px 0;
}

@media screen and (max-width: 768px) {
  main section.sec_03 ul.list {
    margin: 25px 0 15px 0;
  }
}

main section.sec_03 .imgBlock {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 41.52991vw;
  max-width: 698px;
  min-width: 400px;
}

@media screen and (max-width: 1200px) {
  main section.sec_03 .imgBlock {
    width: 50.22222vw;
  }
}

@media screen and (max-width: 960px) {
  main section.sec_03 .imgBlock {
    position: relative;
    margin-left: auto;
    width: 100%;
    max-width: 500px;
    min-width: auto;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_03 .imgBlock {
    z-index: -1;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_03 .imgBlock {
    width: calc( 100vw + 6px + 14px);
    left: -21px;
  }
}

main section.sec_04 {
  background-color: #ffffff;
  padding-top: 95px;
  padding-bottom: 75px;
  margin-top: -45px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  main section.sec_04 {
    padding-top: 55px;
    padding-bottom: 30px;
    margin-top: -20px;
  }
}

main section.sec_04 h2 {
  text-align: center;
}

@media screen and (max-width: 520px) {
  main section.sec_04 h2 {
    text-align: left;
  }
}

main section.sec_04 p {
  padding-bottom: 10px;
}

main section.sec_04 p:last-child {
  padding-bottom: 0;
}

main section.sec_04 a {
  color: #005cb3;
  text-decoration: none;
  display: inline;
  border-bottom: 1px solid #005cb3;
}

main section.sec_04 .intro {
  width: 100%;
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 38px;
  padding-bottom: 50px;
}

main section.sec_04 .intro p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  main section.sec_04 .intro {
    padding-top: 25px;
    padding-bottom: 30px;
    max-width: 550px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_04 .intro p {
    text-align: left;
  }
}

main section.sec_04 .row {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  main section.sec_04 .row {
    max-width: 370px;
  }
}

main section.sec_04 .row .col {
  width: 48.5%;
  max-width: 370px;
}

@media screen and (max-width: 768px) {
  main section.sec_04 .row .col {
    width: 100%;
    margin-bottom: 30px;
  }
}

main section.sec_04 .row .col .img {
  width: 100%;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

main section.sec_04 .row .col .text {
  margin: 25px 0 15px 0;
}

main section.sec_04 .row .col .text h3 {
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  main section.sec_04 .row .col .text {
    margin: 16px 0;
  }
}

main section.sec_04 .row .col .block {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main section.sec_04 .row .col .block .left {
  width: 185px;
  height: 132px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

main section.sec_04 .row .col .block .left.bg01 {
  background-image: url(../img/img04-12.png);
}

main section.sec_04 .row .col .block .left.bg02 {
  background-image: url(../img/img04-22.png);
}

@media screen and (max-width: 520px) {
  main section.sec_04 .row .col .block .left {
    height: 146px;
  }
}

main section.sec_04 .row .col .block .right {
  width: 185px;
  background-color: #fff8f0;
  padding: 13px 14px 10px 14px;
}

main section.sec_04 .row .col .block p {
  line-height: 1.625;
  padding-bottom: 5px;
}

main section.sec_04 .row .col .block p:last-of-type {
  padding: 0;
}

main section.sec_05 {
  padding: 95px 0;
  background-color: #fff8f0;
}

@media screen and (max-width: 768px) {
  main section.sec_05 {
    padding: 55px 0;
  }
}

main section.sec_05 .container {
  max-width: 1920px;
  background-color: #fff8f0;
}

main section.sec_05 h2 {
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

main section.sec_05 h2 span {
  display: inline-block;
}

@media screen and (max-width: 960px) {
  main section.sec_05 h2 {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_05 h2 {
    max-width: 550px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_05 h2 span {
    display: inline;
  }
}

main section.sec_05 .outside {
  width: calc( 100% + 80px);
  position: relative;
  left: -40px;
  overflow: hidden;
}

@media screen and (max-width: 1660px) {
  main section.sec_05 .outside {
    width: calc( 100% + 30px);
    left: -15px;
  }
}

main section.sec_05 .middle {
  width: calc( 100% * ( 570 / 1920 ));
  max-width: 570px;
  height: 545px;
  margin-top: 50px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1660px) {
  main section.sec_05 .middle {
    height: 610px;
  }
}

main section.sec_05 .arrow {
  width: 70px;
  height: 70px;
  border: 1px solid #a4514b;
  border-radius: 50%;
  position: absolute;
  top: 150px;
  z-index: 10;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  background-color: #fff8f0;
}

main section.sec_05 .arrow:before, main section.sec_05 .arrow:after {
  content: "";
  width: 27px;
  height: 3px;
  background-color: #a4514b;
  position: absolute;
  top: 50%;
  left: 47.5%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  border-radius: calc( 3px / 2);
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

main section.sec_05 .arrow:before {
  -webkit-transform: translate(-50%, -100%) rotate(42deg);
          transform: translate(-50%, -100%) rotate(42deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

main section.sec_05 .arrow:after {
  -webkit-transform: translate(-50%, -100%) rotate(-42deg);
          transform: translate(-50%, -100%) rotate(-42deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

main section.sec_05 .arrow.right {
  right: -5%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

main section.sec_05 .arrow.left {
  left: -5%;
  -webkit-transform: translate(-100%, -50%) rotate(180deg);
          transform: translate(-100%, -50%) rotate(180deg);
}

main section.sec_05 .arrow:hover {
  background-color: #a4514b;
  border: 0px solid #a4514b;
}

main section.sec_05 .arrow:hover:before, main section.sec_05 .arrow:hover:after {
  background-color: #fff8f0;
}

@media screen and (max-width: 1660px) {
  main section.sec_05 .arrow {
    width: 54px;
    height: 54px;
  }
  main section.sec_05 .arrow:before, main section.sec_05 .arrow:after {
    width: 20px;
  }
  main section.sec_05 .arrow.right {
    right: -2.5%;
  }
  main section.sec_05 .arrow.left {
    left: -2.5%;
  }
}

main section.sec_05 .col {
  width: 100%;
  max-width: 570px;
  position: absolute;
  top: 0;
}

main section.sec_05 .img {
  height: 300px;
  background-color: #ffffff;
  position: relative;
  padding: 25px 15px 30px 15px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

main section.sec_05 .img:before {
  content: "";
  width: 100%;
  height: 0px;
  background-color: #a4514b;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 1660px) {
  main section.sec_05 .img {
    height: 260px;
  }
}

main section.sec_05 .img img {
  width: auto;
  max-width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main section.sec_05 .img .tips {
  position: absolute;
  bottom: calc( 100% - 260px);
  left: 0;
  padding: 15px 25px;
  background: linear-gradient(-45deg, #3ec3ff 0%, #3ec3ff 45%, rgba(0, 113, 218, 0.3) 50%, #3ec3ff 55%, #3ec3ff 100%);
  background-color: #3ec3ff;
  background-size: 8px 8px;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(68, 34, 4, 0.2);
          box-shadow: 10px 10px 10px 0px rgba(68, 34, 4, 0.2);
}

@media screen and (max-width: 960px) {
  main section.sec_05 .img .tips {
    bottom: calc( 100% - 270px);
  }
}

@media screen and (max-width: 520px) {
  main section.sec_05 .img .tips {
    bottom: -55px;
  }
}

main section.sec_05 .img .tips::before {
  content: "";
  background-image: url(../img/tips_top.svg);
  background-size: 18px 12px;
  position: absolute;
  top: -6px;
  left: 10px;
  width: 18px;
  height: 12px;
}

main section.sec_05 .img .tips::after {
  content: "";
  background-image: url(../img/tips_bottom.svg);
  background-size: 18px 12px;
  position: absolute;
  bottom: -6px;
  right: 10px;
  width: 18px;
  height: 12px;
}

main section.sec_05 .img .tips p {
  font-size: 18px;
  line-height: 1.45;
}

main section.sec_05 .content {
  padding: 22px 15px;
}

main section.sec_05 .content h3 {
  margin-bottom: 0.35em;
}

main section.sec_05 .content .inner {
  width: 100%;
  max-width: 420px;
  margin-right: auto;
  margin-left: auto;
}

main section.sec_05 .col {
  visibility: visible;
}

main section.sec_05 .col .img img {
  -webkit-filter: saturate(22%);
          filter: saturate(22%);
}

main section.sec_05 .col .img .tips {
  -webkit-filter: saturate(22%);
          filter: saturate(22%);
  -webkit-transition: -webkit-filter 0.5s;
  transition: -webkit-filter 0.5s;
  transition: filter 0.5s;
  transition: filter 0.5s, -webkit-filter 0.5s;
}

main section.sec_05 .col[data-slide="1"] .img img, main section.sec_05 .col[data-slide="4"] .img img {
  -webkit-filter: saturate(22%) brightness(110%);
          filter: saturate(22%) brightness(110%);
}

main section.sec_05 .col[data-slide="2"] .img img, main section.sec_05 .col[data-slide="5"] .img img {
  -webkit-filter: saturate(22%) brightness(180%);
          filter: saturate(22%) brightness(180%);
}

@media screen and (max-width: 1660px) {
  main section.sec_05 .col:nth-child(2) .img img, main section.sec_05 .col:nth-child(5) .img img {
    width: 70%;
    max-width: 310px;
  }
  main section.sec_05 .col:nth-child(3) .img img, main section.sec_05 .col:nth-child(6) .img img {
    width: 65%;
    max-width: 250px;
  }
  main section.sec_05 .col:nth-child(1) .img img, main section.sec_05 .col:nth-child(4) .img img {
    width: 80%;
    max-width: 390px;
  }
}

main section.sec_05 .col[data-slide="0"] {
  left: -1400px;
}

main section.sec_05 .col[data-slide="1"] {
  left: -700px;
}

main section.sec_05 .col[data-slide="2"] {
  left: 0px;
}

main section.sec_05 .col[data-slide="3"] {
  left: 700px;
}

main section.sec_05 .col[data-slide="4"] {
  left: 1400px;
}

main section.sec_05 .col[data-slide="5"] {
  left: 2100px;
}

main section.sec_05 .col[data-slide="6"] {
  left: 2800px;
}

@media screen and (max-width: 1920px) {
  main section.sec_05 .col[data-slide="0"] {
    left: -236.97435%;
  }
  main section.sec_05 .col[data-slide="1"] {
    left: -118.48717%;
  }
  main section.sec_05 .col[data-slide="2"] {
    left: 0%;
  }
  main section.sec_05 .col[data-slide="3"] {
    left: 118.48717%;
  }
  main section.sec_05 .col[data-slide="4"] {
    left: 236.97435%;
  }
  main section.sec_05 .col[data-slide="5"] {
    left: 355.46152%;
  }
  main section.sec_05 .col[data-slide="6"] {
    left: 473.94869%;
  }
}

main section.sec_05 .col[data-slide="0"], main section.sec_05 .col[data-slide="1"], main section.sec_05 .col[data-slide="2"], main section.sec_05 .col[data-slide="3"], main section.sec_05 .col[data-slide="4"] {
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

main section.sec_05 .col[data-slide="0"] .img img, main section.sec_05 .col[data-slide="1"] .img img, main section.sec_05 .col[data-slide="2"] .img img, main section.sec_05 .col[data-slide="3"] .img img, main section.sec_05 .col[data-slide="4"] .img img {
  -webkit-transition: -webkit-filter 1s;
  transition: -webkit-filter 1s;
  transition: filter 1s;
  transition: filter 1s, -webkit-filter 1s;
}

main section.sec_05 .col[data-slide="2"] .img {
  background-color: #ffe8db;
  position: relative;
}

main section.sec_05 .col[data-slide="2"] .img:before {
  height: 12px;
}

@media screen and (max-width: 1660px) {
  main section.sec_05 .col[data-slide="2"] .img:before {
    height: 8px;
  }
}

main section.sec_05 .col[data-slide="2"] .img img {
  -webkit-filter: none;
          filter: none;
}

main section.sec_05 .col[data-slide="2"] .img .tips {
  -webkit-filter: none;
          filter: none;
}

main section.sec_05 .col.hide {
  visibility: hidden;
  z-index: -100;
}

@media screen and (max-width: 1200px) {
  main section.sec_05 .outside {
    width: 100%;
    left: 0;
  }
  main section.sec_05 .middle {
    width: 100%;
    max-width: none;
    height: auto;
  }
  main section.sec_05 .col {
    display: block;
    left: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
    margin-bottom: 40px;
  }
  main section.sec_05 .col.hide {
    visibility: visible;
    z-index: 10;
  }
  main section.sec_05 .col:nth-child(2), main section.sec_05 .col:nth-child(3), main section.sec_05 .col:nth-child(4) {
    left: 0;
  }
  main section.sec_05 .col:nth-child(1), main section.sec_05 .col:nth-child(5), main section.sec_05 .col:nth-child(6) {
    display: none;
  }
  main section.sec_05 .col:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  main section.sec_05 .arrow {
    display: none;
  }
  main section.sec_05 .img {
    width: 50%;
    background-color: #ffe8db;
    height: auto;
    padding: 25px 15px 30px 15px;
  }
  main section.sec_05 .img img {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    margin-right: auto;
    margin-left: auto;
    -webkit-filter: none !important;
            filter: none !important;
  }
  main section.sec_05 .img .tips {
    -webkit-filter: none !important;
            filter: none !important;
  }
  main section.sec_05 .img::before {
    height: 12px !important;
  }
  main section.sec_05 .content {
    width: 47%;
    position: relative;
  }
  main section.sec_05 .content .inner {
    max-width: none;
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  main section.sec_05 .middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main section.sec_05 .col:nth-child(2) .img {
    padding: 35px 15px 40px 15px;
  }
  main section.sec_05 .col:nth-child(2) .img img {
    max-width: 310px;
  }
  main section.sec_05 .col:nth-child(2) .content .inner {
    left: auto;
    right: 15px;
  }
  main section.sec_05 .col:nth-child(3) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  main section.sec_05 .col:nth-child(3) .img img {
    max-width: 290px;
  }
  main section.sec_05 .col:nth-child(4) .img {
    padding: 75px 15px 60px 15px;
  }
  main section.sec_05 .col:nth-child(4) .img img {
    max-width: 390px;
  }
}

@media screen and (max-width: 960px) {
  main section.sec_05 .middle {
    max-width: 550px;
    margin-top: 40px;
  }
  main section.sec_05 .col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  main section.sec_05 .col:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main section.sec_05 .col:nth-child(2) .content .inner {
    left: auto;
    right: 0px;
  }
  main section.sec_05 .img {
    width: 100%;
  }
  main section.sec_05 .content {
    width: 100%;
    padding-bottom: 0;
  }
  main section.sec_05 .content .inner {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

@media screen and (max-width: 520px) {
  main section.sec_05 .middle {
    max-width: 370px;
  }
  main section.sec_05 .col {
    margin-bottom: 22px;
  }
  main section.sec_05 .col:nth-child(2) .img {
    padding: 10px 15px 16px 15px;
  }
  main section.sec_05 .col:nth-child(2) .img img {
    max-width: 157px;
  }
  main section.sec_05 .col:nth-child(3) .img {
    padding: 10px 15px 16px 15px;
  }
  main section.sec_05 .col:nth-child(3) .img img {
    max-width: 142px;
  }
  main section.sec_05 .col:nth-child(4) .img {
    padding: 35px 15px;
  }
  main section.sec_05 .col:nth-child(4) .img img {
    max-width: 200px;
  }
  main section.sec_05 .img:before {
    height: 6px !important;
  }
  main section.sec_05 .content {
    padding: 15px 0;
    padding-bottom: 0;
  }
  main section.sec_05 .col:nth-child(3) .content .inner {
    left: 0;
  }
  main section.sec_05 .col:nth-child(4) .content {
    padding-top: 70px;
  }
}

main .bottomTips {
  width: 100%;
  max-width: 970px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #939393;
  border-bottom: 1px solid #939393;
  padding: 6px 15px;
  margin-top: 33px;
}

main .bottomTips p {
  color: #464646;
}

@media screen and (max-width: 1660px) {
  main .bottomTips {
    margin-top: 8px;
  }
}

@media screen and (max-width: 1200px) {
  main .bottomTips {
    margin-top: 40px;
  }
}

@media screen and (max-width: 960px) {
  main .bottomTips {
    max-width: 550px;
  }
}

@media screen and (max-width: 768px) {
  main .bottomTips {
    margin-top: 20px;
  }
}

@media screen and (max-width: 520px) {
  main .bottomTips {
    max-width: 370px;
    margin-top: 10px;
  }
}

main .bottomTips .block {
  width: 100%;
  max-width: 884px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .bottomTips .block div:nth-of-type(1) {
  width: 18px;
}

main .bottomTips .block div:nth-of-type(2) {
  width: calc( 100% - 18px);
}

@media screen and (max-width: 960px) {
  main .bottomTips .block {
    max-width: 480px;
  }
}

main section.sec_06 {
  padding: 95px 0;
}

@media screen and (max-width: 768px) {
  main section.sec_06 {
    padding: 50px 0;
  }
}

main section.sec_06 h2 {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 990px;
}

main section.sec_06 h2 span {
  display: inline-block;
}

@media screen and (max-width: 960px) {
  main section.sec_06 h2 {
    max-width: 700px;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_06 h2 {
    max-width: 550px;
  }
}

main section.sec_06 h3 span.stage {
  display: block;
}

main section.sec_06 .imgBig {
  width: 100%;
  max-width: 703px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  main section.sec_06 .imgBig {
    max-width: 550px;
  }
}

main section.sec_06 .row {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  main section.sec_06 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 40px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_06 .row {
    max-width: 370px;
    margin-top: 30px;
  }
}

main section.sec_06 .row h3 {
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 5px;
  font-weight: normal;
}

main section.sec_06 .row .col {
  width: 31%;
  max-width: 310px;
}

@media screen and (max-width: 768px) {
  main section.sec_06 .row .col {
    width: 100%;
    max-width: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_06 .row .col {
    display: block;
    margin-bottom: 23px;
    max-width: 370px;
  }
}

main section.sec_06 .row .col .img {
  background-color: #fff8f0;
  padding: 30px 15px;
  margin-bottom: 32px;
}

main section.sec_06 .row .col .img img {
  width: auto;
  max-width: 100%;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  main section.sec_06 .row .col .img {
    padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_06 .row .col .img {
    width: 40%;
    max-width: 310px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_06 .row .col .img {
    width: 100%;
    max-width: 370px;
    margin-bottom: 15px;
  }
}

main section.sec_06 .row .col .text p span {
  display: block;
}

@media screen and (max-width: 768px) {
  main section.sec_06 .row .col .text {
    width: calc( 60% - 25px);
  }
  main section.sec_06 .row .col .text .box {
    position: relative;
    top: 40%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 520px) {
  main section.sec_06 .row .col .text {
    width: 100%;
  }
  main section.sec_06 .row .col .text .box {
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

main section.sec_07 {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff8f0), to(#ffdfc0));
  background: linear-gradient(#fff8f0 0%, #ffdfc0 100%);
  position: relative;
}

main section.sec_07::before {
  content: "";
  background-image: url(../img/gradual_top.png);
  background-size: 1920px auto;
  background-repeat: no-repeat;
  background-position: center top;
  width: 100%;
  height: 225px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 960px) {
  main section.sec_07::before {
    background-size: 1000px 180px;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_07::before {
    background-size: 768px 150px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_07::before {
    background-size: 100% 120px;
  }
}

main section.sec_07 .container {
  padding: 40px 15px 100px 15px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 520px) {
  main section.sec_07 .container {
    padding: 0px 15px 50px 15px;
  }
}

main section.sec_07 .container h2 {
  text-align: center;
}

main section.sec_07 .container .row {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  main section.sec_07 .container .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_07 .container .row {
    margin-bottom: 10px;
  }
}

main section.sec_07 .container .row .col {
  width: 48.5%;
  max-width: 570px;
  background-color: #fff;
  padding: 22px 15px;
  -webkit-box-shadow: 0px 20px 15px 0px rgba(10, 3, 5, 0.1);
          box-shadow: 0px 20px 15px 0px rgba(10, 3, 5, 0.1);
}

@media screen and (max-width: 768px) {
  main section.sec_07 .container .row .col {
    width: 100%;
    max-width: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(10, 3, 5, 0.1);
            box-shadow: 0px 5px 15px 0px rgba(10, 3, 5, 0.1);
  }
}

@media screen and (max-width: 520px) {
  main section.sec_07 .container .row .col {
    display: block;
  }
}

main section.sec_07 .container .row .col .inner {
  width: 100%;
  max-width: 510px;
  margin-right: auto;
  margin-left: auto;
}

main section.sec_07 .container .row .col .inner h3 {
  margin-bottom: 5px;
}

main section.sec_07 .container .row .col .inner h3 strong {
  color: #a4514b;
}

main section.sec_07 .container .notice {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 535px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  main section.sec_07 .container .notice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
  }
}

main section.sec_07 .container .notice .col.left {
  width: 110px;
}

main section.sec_07 .container .notice .col.left img {
  width: auto;
  max-width: 100%;
  -webkit-transform: translateY(-19%);
          transform: translateY(-19%);
}

@media screen and (max-width: 768px) {
  main section.sec_07 .container .notice .col.left {
    width: 100%;
    margin-bottom: 22px;
  }
  main section.sec_07 .container .notice .col.left img {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

main section.sec_07 .container .notice .col.right {
  width: calc( 100% - 110px);
}

main section.sec_07 .container .notice .col.right h2 {
  font-size: 32px;
  color: #e0351e;
  text-align: left;
}

main section.sec_07 .container .notice .col.right h3 {
  color: #e0351e;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  main section.sec_07 .container .notice .col.right {
    width: 100%;
  }
  main section.sec_07 .container .notice .col.right h2 {
    font-size: 26px;
  }
}

main section.sec_07 .container .notice .col.right ul.list li:before {
  background-color: #000;
}

main section.sec_07 .container .notice .col.right .box {
  margin-bottom: 20px;
}

main section.sec_07 .container .form2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

main section.sec_07 .container .form2 p {
  line-height: 1.5;
}

@media screen and (max-width: 1050px) {
  main section.sec_07 .container .form2 {
    max-width: 900px;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_07 .container .form2 {
    max-width: 550px;
  }
}

main section.sec_07 .container .form2 .leftLine {
  position: absolute;
  top: 0;
  right: 0px;
  width: 2px;
  height: 100%;
  background-color: #a4514b;
  z-index: 100;
}

main section.sec_07 .container .form2 .topPrice {
  width: 100%;
  text-align: center;
  padding: 5px 10px;
  -webkit-box-shadow: 0px 0px 0px 2px #a4514b inset;
          box-shadow: 0px 0px 0px 2px #a4514b inset;
  border-right: 0px solid #a4514b;
  background-color: #fff8f0;
}

main section.sec_07 .container .form2 .topPrice h3 {
  font-size: 20px;
}

main section.sec_07 .container .form2 .header {
  background-color: #a4514b;
}

main section.sec_07 .container .form2 .header p, main section.sec_07 .container .form2 .header h3 {
  color: #fff;
  text-align: center;
}

main section.sec_07 .container .form2 .header p span {
  display: inline-block;
}

main section.sec_07 .container .form2 .header h3 {
  font-weight: normal;
}

main section.sec_07 .container .form2 .header h3 span {
  font-size: 16px;
}

main section.sec_07 .container .form2 .box {
  padding: 8px 10px;
  -webkit-box-shadow: 0px 0px 0px 1px #a4514b inset;
          box-shadow: 0px 0px 0px 1px #a4514b inset;
  background-color: #fff8f0;
}

main section.sec_07 .container .form2 .box p {
  text-align: center;
}

main section.sec_07 .container .form2 .kind {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main section.sec_07 .container .form2 .kind h3 {
  width: 100%;
  padding: 7px 10px;
}

main section.sec_07 .container .form2 .kind p {
  text-align: center;
}

main section.sec_07 .container .form2 .kind .type {
  width: calc( (140 / 340) * 100%);
  padding: 8px 10px;
}

@media screen and (max-width: 768px) {
  main section.sec_07 .container .form2 .kind .type {
    padding: 8px 5px;
  }
  main section.sec_07 .container .form2 .kind .type p {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

main section.sec_07 .container .form2 .kind .price {
  width: calc( (200 / 340) * 100%);
  padding: 8px 10px;
}

main section.sec_07 .container .form2 .formSize {
  width: 150px;
}

main section.sec_07 .container .form2 .formSize .info {
  border-left: 1px solid #a4514b;
  border-bottom: 1px solid #a4514b;
}

main section.sec_07 .container .form2 .formSize .header {
  height: 90px;
  position: relative;
}

main section.sec_07 .container .form2 .formSize .header p {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 1050px) {
  main section.sec_07 .container .form2 .formSize {
    width: 120px;
  }
  main section.sec_07 .container .form2 .formSize .header {
    height: 114px;
  }
}

@media screen and (max-width: 768px) {
  main section.sec_07 .container .form2 .formSize {
    width: 100px;
  }
  main section.sec_07 .container .form2 .formSize .header {
    height: 114px;
  }
}

main section.sec_07 .container .form2 .formKind {
  width: calc( 100% - 150px);
  position: relative;
}

main section.sec_07 .container .form2 .formKind h3 {
  font-size: 20px;
}

main section.sec_07 .container .form2 .formKind .scrollTent {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main section.sec_07 .container .form2 .formKind .col {
  width: calc( 100% / 3);
  border-bottom: 1px solid #a4514b;
}

@media screen and (max-width: 1050px) {
  main section.sec_07 .container .form2 .formKind {
    width: calc( 100% - 120px);
  }
}

@media screen and (max-width: 768px) {
  main section.sec_07 .container .form2 .formKind {
    width: calc( 100% - 100px);
  }
  main section.sec_07 .container .form2 .formKind .scrollTent {
    width: 100%;
    min-width: 570px;
  }
  main section.sec_07 .container .form2 .formKind:before {
    content: '';
    width: 25px;
    height: calc( 100% - 30px - 2px);
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.4)), color-stop(30%, rgba(0, 0, 0, 0.25)), color-stop(60%, rgba(0, 0, 0, 0.1)), to(transparent));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 2;
  }
  main section.sec_07 .container .form2 .formKind:after {
    content: '';
    width: 25px;
    height: calc( 100% - 30px - 2px);
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.75)), color-stop(30%, rgba(255, 255, 255, 0.45)), color-stop(75%, rgba(255, 255, 255, 0.1)), to(transparent));
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 30%, rgba(255, 255, 255, 0.1) 75%, transparent 100%);
    position: absolute;
    top: 0;
    right: 0;
  }
  main section.sec_07 .container .form2 .formKind .col .type {
    width: 78px;
  }
  main section.sec_07 .container .form2 .formKind .col .price {
    width: 112px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_07 .container .form2 .formKind .col .type {
    width: 90px;
  }
  main section.sec_07 .container .form2 .formKind .col .price {
    width: 100px;
  }
}

#mCSB_1_scrollbar_horizontal {
  background-color: #a4514b;
  height: 30px;
  width: calc( 100% + 2px);
}

.mCSB_scrollTools {
  opacity: 1;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-image: url(../img/form_08_arrow_right.svg) !important;
  background-size: 13px auto;
  background-position: center center;
  opacity: 1;
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 1;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-image: url(../img/form_08_arrow_left.svg) !important;
  background-size: 13px auto;
  background-position: center center;
  opacity: 1;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 14px;
  margin: 8px 0;
  background-color: #ffffff;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 8px 0;
}

main section.sec_09 {
  padding: 95px 0 75px 0;
}

@media screen and (max-width: 768px) {
  main section.sec_09 {
    padding: 50px 0 40px 0;
  }
}

main section.sec_lightBox {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: none;
}

main section.sec_lightBox .content {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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: 100%;
  height: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  main section.sec_lightBox .content {
    padding-right: 15px;
    padding-left: 15px;
  }
}

main section.sec_lightBox .tent {
  width: 100%;
  max-width: 1170px;
  display: none;
  position: relative;
}

@media screen and (max-width: 960px) {
  main section.sec_lightBox .tent {
    max-width: 700px;
  }
}

@media screen and (max-width: 520px) {
  main section.sec_lightBox .tent {
    max-width: 400px;
  }
}

main section.sec_lightBox .scroll_tent {
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 80vh;
  background-color: #fff8f0;
  -webkit-box-shadow: 0px 0px 0px 2px #a4514b inset;
          box-shadow: 0px 0px 0px 2px #a4514b inset;
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 10px;
  padding-right: 2px;
}

@media screen and (max-width: 768px) {
  main section.sec_lightBox .scroll_tent {
    max-height: 80vh;
    padding: 30px 15px;
    padding-right: 0;
    position: relative;
  }
}

main section.sec_lightBox .inner {
  width: 100%;
  display: none;
  position: relative;
  top: 0;
  left: 0;
  min-height: 300px;
  max-height: calc( 80vh - 50px);
}

@media screen and (max-width: 768px) {
  main section.sec_lightBox .inner {
    padding-bottom: 50px;
    -webkit-overflow-scrolling: touch;
  }
}

main section.sec_lightBox .inner .mCSB_scrollTools {
  right: 6px;
}

main section.sec_lightBox .inner.show {
  display: block;
  width: 100%;
}

main section.sec_lightBox .inner .row {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  main section.sec_lightBox .inner .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
  }
}

main section.sec_lightBox .closeBtn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  padding: 3px;
  cursor: pointer;
  z-index: 10;
  background-color: #f29c9f;
}

main section.sec_lightBox .closeBtn span {
  width: 24px;
  height: 1px;
  display: block;
  background-color: #a4514b;
}

main section.sec_lightBox .closeBtn span:first-child {
  -webkit-transform: translateX(1px) translateY(12px) rotate(45deg);
          transform: translateX(1px) translateY(12px) rotate(45deg);
}

main section.sec_lightBox .closeBtn span:last-child {
  -webkit-transform: translateX(0px) translateY(11px) rotate(-45deg);
          transform: translateX(0px) translateY(11px) rotate(-45deg);
}

.content_ceri {
  width: calc( 100% - 30px);
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.content_ceri img {
  width: calc( 100% - 30px);
  display: block;
  margin-bottom: 30px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .content_ceri {
    width: calc( 100% - 20px);
  }
  .content_ceri img {
    width: calc( 100% - 20px);
  }
}

@media screen and (max-width: 520px) {
  .content_ceri {
    width: calc( 100% - 12px);
  }
  .content_ceri img {
    width: calc( 100% - 12px);
  }
}

.owl-dots {
  display: none;
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 10px;
  background-color: #a4514b;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #a4514b;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #a4514b;
}

.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 10px;
}

.form_lightBox {
  width: 100%;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  border: 2px solid #a4514b;
}

@media screen and (max-width: 960px) {
  .form_lightBox {
    border: 0px solid;
  }
}

@media screen and (max-width: 1200px) {
  .form_lightBox p {
    font-size: 15px;
  }
}

@media screen and (max-width: 960px) {
  .form_lightBox p {
    font-size: 16px;
  }
}

.form_lightBox .form_title {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: none;
}

@media screen and (max-width: 960px) {
  .form_lightBox .form_title {
    display: none;
  }
}

.form_lightBox .form_title .col {
  border-right: 2px solid #a4514b;
  padding: 5px 0;
  background-color: #ffb5bb;
  border-bottom: 1px solid #a4514b;
}

.form_lightBox .form_title .col:nth-child(1) {
  width: 220px;
  max-width: 220px;
}

.form_lightBox .form_title .col:nth-child(2) {
  width: 120px;
}

.form_lightBox .form_title .col:nth-child(2), .form_lightBox .form_title .col:nth-child(3), .form_lightBox .form_title .col:nth-child(4) {
  width: 120px;
  max-width: 120px;
}

.form_lightBox .form_title .col:nth-child(5) {
  width: calc( 100% - 580px);
  max-width: 540px;
  border-right: 0px solid #a4514b;
}

.form_lightBox .form_title .col p {
  text-align: center;
  font-weight: bold;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form_lightBox .type {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 540px;
    border: 2px solid #a4514b;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
    border-bottom: 0px solid #a4514b;
  }
}

.form_lightBox .type ul {
  padding-left: 16px;
  counter-reset: num;
}

.form_lightBox .type ul li {
  position: relative;
}

.form_lightBox .type ul li:before {
  counter-increment: num;
  content: counter(num) ". ";
  color: inherit;
  position: absolute;
  top: 3px;
  left: -16px;
}

.form_lightBox .type ul li.li_blue {
  color: #003edf;
}

.form_lightBox .type ul li.li_green {
  color: #1d7700;
}

.form_lightBox .type ul li.li_red {
  color: #e0351e;
}

.form_lightBox .type .sub {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .sub {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.form_lightBox .type .sub .sub_o {
  height: 50%;
  border-top: 1px solid #a4514b;
  border-bottom: 1px solid #a4514b;
  border-right: 2px solid #a4514b;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .sub .sub_o {
    width: 50%;
    height: auto;
    border-top: 0px solid #a4514b;
    border-bottom: 0px solid #a4514b;
  }
}

.form_lightBox .type .sub .sub_e {
  height: 50%;
  border-top: 1px solid #a4514b;
  border-bottom: 1px solid #a4514b;
  border-right: 2px solid #a4514b;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .sub .sub_e {
    width: 50%;
    height: auto;
    border-right: 0px solid #a4514b;
    border-top: 0px solid #a4514b;
    border-bottom: 0px solid #a4514b;
  }
}

.form_lightBox .type .sub .sub_o, .form_lightBox .type .sub .sub_e, .form_lightBox .type .sub .half01, .form_lightBox .type .sub .half02, .form_lightBox .type .sub .half03 {
  padding: 10px 10px;
  padding-right: 20px;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .sub .sub_o, .form_lightBox .type .sub .sub_e, .form_lightBox .type .sub .half01, .form_lightBox .type .sub .half02, .form_lightBox .type .sub .half03 {
    padding: 5px 10px;
  }
}

.form_lightBox .type .sub .half01 {
  border-right: 2px solid #a4514b;
}

.form_lightBox .type .sub .sub_half {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px;
}

.form_lightBox .type .sub .sub_half .half01 {
  width: 33.33%;
  max-width: 180px;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .sub .sub_half .half01 {
    border-right: 2px solid #a4514b;
    width: 46%;
  }
}

.form_lightBox .type .sub .sub_half .half02 {
  width: 66.66%;
  max-width: 360px;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .sub .sub_half .half02 {
    width: 54%;
  }
}

.form_lightBox .type .sub .sub_three {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px;
}

.form_lightBox .type .sub .sub_three .half01, .form_lightBox .type .sub .sub_three .half02, .form_lightBox .type .sub .sub_three .half03 {
  width: 33.33%;
  max-width: 180px;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .heading_type:before, .form_lightBox .type .inner_type:before {
    content: attr(data);
    font-size: 16px;
    line-height: 35px;
    text-align: center;
    width: 100%;
    height: 35px;
    background-color: #ffb5bb;
    border-bottom: 2px solid #a4514b;
  }
}

.form_lightBox .type .heading_type {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 220px;
  max-width: 220px;
  background-color: #a4514b;
  border-bottom: 2px solid #ffffff;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .heading_type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: none;
    border-bottom: 0px solid #ffffff;
  }
}

.form_lightBox .type .heading_type .heading {
  width: 50%;
  position: relative;
  border-right: 2px solid #ffffff;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .heading_type .heading {
    width: 100%;
    border-right: 0px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    padding: 5px 0;
  }
}

.form_lightBox .type .heading_type .heading p {
  width: 100%;
  text-align: center;
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .heading_type .heading p {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    top: auto;
  }
}

.form_lightBox .type .heading_type .sub {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .heading_type .sub {
    width: 100%;
  }
}

.form_lightBox .type .heading_type .sub .sub_o, .form_lightBox .type .heading_type .sub .sub_e {
  position: relative;
}

.form_lightBox .type .heading_type .sub .sub_o {
  border-bottom: 1px solid #ffffff;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .heading_type .sub .sub_o {
    border-bottom: 0px solid #ffffff;
    border-right: 1px solid #ffffff;
  }
}

.form_lightBox .type .heading_type .sub .sub_e {
  border-top: 1px solid #ffffff;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .heading_type .sub .sub_e {
    border-top: 0px solid #ffffff;
    border-left: 1px solid #ffffff;
  }
}

.form_lightBox .type .heading_type .sub p {
  width: 100%;
  text-align: center;
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  font-weight: bold;
}

.form_lightBox .type .inner_type {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 120px;
  max-width: 120px;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .inner_type {
    width: 100%;
    max-width: none;
    border-bottom: 2px solid #a4514b;
  }
}

.form_lightBox .type .inner_type[data='Functions'] {
  width: calc( 100% - 580px);
  max-width: 540px;
}

.form_lightBox .type .inner_type[data='Functions'] .sub_o, .form_lightBox .type .inner_type[data='Functions'] .sub_e {
  border-right: 0px solid #a4514b;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type .inner_type[data='Functions'] {
    width: 100%;
  }
  .form_lightBox .type .inner_type[data='Functions'] .sub_o {
    border-right: 2px solid #a4514b;
  }
}

.form_lightBox .type3 .sub .sub_o {
  height: 40%;
}

.form_lightBox .type3 .sub .sub_e {
  height: 60%;
}

@media screen and (max-width: 960px) {
  .form_lightBox .type3 .sub .sub_o {
    height: auto;
  }
  .form_lightBox .type3 .sub .sub_e {
    height: auto;
  }
}

.form_lightBox .type3 .heading_type {
  border-bottom: 0px solid #ffffff;
}

.form_lightBox .type3 .inner_type .sub_e {
  border-bottom: 0px solid #a4514b;
}

.form_lightBox .type3 .inner_type .half02 {
  border-right: 2px solid #a4514b;
}

.form_lightBox .type3 .inner_type .half03 {
  padding-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .inner_type_mobile[data="Functions"] {
    position: relative;
  }
  .inner_type_mobile[data="Functions"] .sub_half .half01, .inner_type_mobile[data="Functions"] .sub_half .half02, .inner_type_mobile[data="Functions"] .sub_half .half03, .inner_type_mobile[data="Functions"] .sub_three .half01, .inner_type_mobile[data="Functions"] .sub_three .half02, .inner_type_mobile[data="Functions"] .sub_three .half03 {
    width: 100%;
    max-width: none;
    border-right: 0px solid #a4514b;
    display: none;
  }
  .inner_type_mobile[data="Functions"] .sub_half .half01.show, .inner_type_mobile[data="Functions"] .sub_half .half02.show, .inner_type_mobile[data="Functions"] .sub_half .half03.show, .inner_type_mobile[data="Functions"] .sub_three .half01.show, .inner_type_mobile[data="Functions"] .sub_three .half02.show, .inner_type_mobile[data="Functions"] .sub_three .half03.show {
    width: 100%;
    max-width: none;
    border-right: 0px solid #a4514b;
    display: block;
  }
  .inner_type_mobile[data="Functions"] .m_arrow {
    position: absolute;
    width: 20px;
    height: 35px;
    top: 0;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
  }
  .inner_type_mobile[data="Functions"] .m_arrow[data="left"] {
    left: 0;
    background-image: url(../img/form_arrow_left.svg);
  }
  .inner_type_mobile[data="Functions"] .m_arrow[data="right"] {
    right: 0;
    background-image: url(../img/form_arrow_right.svg);
  }
}

footer {
  background-color: #fafafa;
  padding: 47px 0;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 35px 0;
  }
}

footer .block {
  position: relative;
}

footer .block .img {
  display: inline-block;
  width: 104px;
  vertical-align: middle;
  margin-right: 27px;
}

footer .block .img img {
  width: 100%;
}

@media screen and (max-width: 520px) {
  footer .block .img {
    display: block;
    margin-bottom: 15px;
  }
}

footer .block h1 {
  font-size: 20px;
  line-height: 48px;
  display: inline-block;
  vertical-align: middle;
  color: #4f4f4f;
}

@media screen and (max-width: 520px) {
  footer .block h1 {
    font-size: 16px;
    line-height: 1.75;
  }
}

footer .block p {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #4f4f4f;
}

@media screen and (max-width: 768px) {
  footer .block p {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    text-align: right;
    margin-top: 30px;
  }
}

@media screen and (max-width: 520px) {
  footer .block p {
    text-align: left;
    margin-top: 0;
  }
}
