@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500&display=swap");
body {
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Myriad Pro, Myriad, Aria, sans-serif;
  background-color: #fff;
  padding-top: 0;
  letter-spacing: 1px;
  line-height: 1.2;
  -webkit-transition: background-color .5s ease;
  transition: background-color .5s ease;
}

body.deep {
  background-color: #f6f6f6;
}

@media only screen and (max-width: 1000px) {
  body {
    padding-top: 70px;
    background-color: #f6f6f6;
  }
}

a {
  text-decoration: none;
}

.mid_block {
  max-width: 1400px;
  width: 90%;
  position: relative;
}

img {
  display: block;
}

#load {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  left: 0;
  top: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loading > div {
  display: inline-block;
  float: none;
  background-color: #538049;
  border: 0 solid #538049;
}

.loading {
  width: 40px;
  height: 32px;
}

.loading > div {
  width: 4px;
  height: 32px;
  margin: 0 2px;
  border-radius: 0;
  -webkit-animation: loadings 0.9s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
          animation: loadings 0.9s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.loading > div:nth-child(3) {
  -webkit-animation-delay: -.9s;
          animation-delay: -.9s;
}

.loading > div:nth-child(2),
.loading > div:nth-child(4) {
  -webkit-animation-delay: -.7s;
          animation-delay: -.7s;
}

.loading > div:nth-child(1),
.loading > div:nth-child(5) {
  -webkit-animation-delay: -.5s;
          animation-delay: -.5s;
}

.loading.la-sm {
  width: 20px;
  height: 16px;
}

.loading.la-sm > div {
  width: 2px;
  height: 16px;
  margin: 0 1px;
}

.loading.la-2x {
  width: 80px;
  height: 64px;
}

.loading.la-2x > div {
  width: 8px;
  height: 64px;
  margin: 0 4px;
}

.loading.la-3x {
  width: 120px;
  height: 96px;
}

.loading.la-3x > div {
  width: 12px;
  height: 96px;
  margin: 0 6px;
}

@-webkit-keyframes loadings {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.3);
            transform: scaley(0.3);
  }
  to {
    -webkit-transform: scaley(1);
            transform: scaley(1);
  }
}

@keyframes loadings {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.3);
            transform: scaley(0.3);
  }
  to {
    -webkit-transform: scaley(1);
            transform: scaley(1);
  }
}

header {
  position: fixed;
  left: 0;
  width: 160px;
  height: 100%;
  z-index: 50;
}

header.active .logo {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header.active .scrollDown {
  opacity: 1;
}

header .logo {
  position: absolute;
  left: 41px;
  width: 78px;
  top: 3%;
  opacity: 0;
}

header .logo .logoImg {
  position: relative;
  border: 2px solid white;
  border-radius: 50%;
  width: 100%;
}

header .logo .name {
  position: relative;
  display: block;
  margin-top: 24px;
}

header .logo .name .tw {
  position: relative;
  width: 21px;
  font-size: 20px;
  color: #343434;
  line-height: 1.1;
  margin-left: 36px;
}

header .logo .name .en {
  position: absolute;
  font-weight: 300;
  opacity: .7;
  width: 250px;
  font-size: 15px;
  top: 4px;
  left: 30px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

header .scrollDown {
  position: fixed;
  width: 50px;
  height: 75px;
  z-index: 10;
  bottom: 5%;
  left: 52px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  -webkit-animation: moving_ 1.5s ease infinite alternate;
          animation: moving_ 1.5s ease infinite alternate;
}

header .scrollDown.hide {
  pointer-events: none;
  opacity: 0;
}

header .scrollDown::before {
  content: '';
  border: 1px solid black;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 16px;
  bottom: 10px;
  border-top: 0;
  border-right: 0;
  -webkit-transform: rotate(-45deg) translateX(0%);
          transform: rotate(-45deg) translateX(0%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

header .scrollDown::after {
  content: '';
  background-color: black;
  width: 1px;
  height: 52px;
  position: absolute;
  left: 25px;
  bottom: 9px;
  border-top: 0;
  border-right: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

header .scrollDown span {
  position: relative;
}

@media only screen and (min-height: 1350px) {
  header .scrollDown {
    opacity: 0;
    visibility: hidden;
  }
}

@media only screen and (min-width: 1200px) {
  header .scrollDown:hover::after {
    height: 28px;
  }
  header .scrollDown:hover::before {
    bottom: 0;
  }
}

@media only screen and (max-width: 1500px) {
  header {
    width: 130px;
  }
  header .logo {
    left: 26px;
  }
  header .scrollDown {
    left: 38px;
  }
}

@media only screen and (max-width: 1200px) {
  header {
    width: 100px;
  }
  header .logo {
    width: 65px;
    left: 17px;
  }
  header .logo .name {
    margin-top: 9px;
  }
  header .logo .name .tw {
    width: 20px;
    font-size: 16px;
    margin-left: 32px;
  }
  header .logo .name .en {
    opacity: .7;
    font-size: 13px;
    top: 4px;
    left: 28px;
  }
  header .scrollDown {
    left: 23px;
  }
}

@media only screen and (max-width: 1000px) {
  header {
    width: 100%;
    height: 70px;
    z-index: 100;
    border-bottom: 1px solid #e3e3e3;
    background-color: #ffffff;
    top: 0;
  }
  header .scrollDown {
    display: none;
  }
  header .logo {
    position: absolute;
    left: 30px;
    top: 10px;
    width: 250px;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .logo .logoImg {
    width: 50px;
    border: 0;
  }
  header .logo .name {
    margin-top: 9px;
    display: block;
    width: auto;
    font-size: 13px;
    margin-left: 10px;
  }
  header .logo .name .tw {
    width: 100%;
    font-size: 15px;
    margin-left: 0;
    letter-spacing: 2px;
  }
  header .logo .name .en {
    font-size: 13px;
    top: 0;
    left: 0;
    position: relative;
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
}

#banner {
  position: relative;
  width: 100%;
  padding-left: 160px;
}

#banner.active .imgs {
  border-radius: 0%;
  opacity: 1;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

#banner.active .imgs img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

#banner .imgs {
  position: relative;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

#banner img {
  position: relative;
  display: block;
  width: 100%;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media only screen and (max-width: 1500px) {
  #banner {
    padding-left: 130px;
  }
}

@media only screen and (max-width: 1200px) {
  #banner {
    padding-left: 100px;
  }
}

@media only screen and (max-width: 1000px) {
  #banner {
    padding-left: 0px;
    position: relative;
    background-color: #fff;
  }
  #banner .imgs {
    position: relative;
    height: 68vw;
    border-radius: 0 0px 0 82px;
    overflow: hidden;
  }
  #banner .imgs img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

@media only screen and (max-width: 650px) {
  #banner .imgs {
    position: relative;
    height: auto;
    border-radius: 0 0px 0 0;
    overflow: hidden;
  }
  #banner .imgs img {
    height: auto;
  }
}

.dot_box {
  position: relative;
  width: 685px;
  display: block;
  margin: 110px auto;
}

.dot_box.starter .dotimg {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.dot_box.starter .en {
  margin-top: 0;
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.dot_box.starter .title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.8s ease 0.5s;
  transition: all 0.8s ease 0.5s;
}

.dot_box.starter .name_box {
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.8s ease 0.8s;
  transition: all 0.8s ease 0.8s;
}

.dot_box .box {
  position: relative;
  padding-left: 91px;
}

.dot_box .en {
  position: absolute;
  font-size: 15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  display: block;
  left: 46px;
  top: 40px;
  margin-top: 30px;
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.dot_box .title {
  position: relative;
  font-size: 26px;
  line-height: 1.6;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  padding-top: 72px;
  text-align: justify;
}

.dot_box .dotimg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: rotate(80deg);
          transform: rotate(80deg);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.dot_box .dotimg img {
  position: relative;
}

.dot_box .name_box {
  margin-top: 18px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 80%;
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.dot_box .name_box .name {
  position: relative;
  font-size: 16px;
  margin-right: 12px;
  word-break: keep-all;
  white-space: nowrap;
}

.dot_box .name_box .img {
  position: relative;
  min-width: 65px;
  width: 65px;
  height: 65px;
  overflow: hidden;
  border-radius: 50%;
}

.dot_box .name_box .img img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.dot_box .name_box::before {
  content: '';
  position: relative;
  width: 100%;
  background-color: #cccccc;
  height: 1px;
  margin-right: 18px;
}

@media only screen and (max-width: 1200px) {
  .dot_box {
    margin: 70px auto;
    width: 55%;
  }
  .dot_box .box {
    padding-left: 70px;
  }
  .dot_box .title {
    font-size: 21px;
    padding-top: 50px;
  }
  .dot_box .en {
    font-size: 13px;
    left: 40px;
    top: 45px;
  }
  .dot_box .dotimg img {
    width: 80px;
  }
}

@media only screen and (max-width: 1000px) {
  .dot_box {
    width: 100%;
    margin: 0;
    padding: 70px 15%;
    background-color: #fff;
  }
  .dot_box .dotimg {
    z-index: 5;
  }
}

@media only screen and (max-width: 650px) {
  .dot_box {
    background-color: #f6f6f6;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .dot_box .dotimg {
    z-index: 5;
    left: -30px;
  }
  .dot_box .box {
    padding-left: 0;
  }
  .dot_box .en {
    font-size: 14px;
    left: 0;
    top: 9px;
    -webkit-transform: none;
            transform: none;
  }
  .dot_box .title {
    font-size: 18px;
    padding-top: 50px;
  }
  .dot_box .name_box .img {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .dot_box .name_box .name {
    font-size: 14px;
  }
}

@-webkit-keyframes moving_ {
  0% {
    -webkit-transform: translateY(-8px) scale(0.9);
    transform: translateY(-8px) scale(0.9);
  }
  100% {
    -webkit-transform: translateY(8px) scale(1);
    transform: translateY(8px) scale(1);
  }
}

@keyframes moving_ {
  0% {
    -webkit-transform: translateY(-8px) scale(0.9);
    transform: translateY(-8px) scale(0.9);
  }
  100% {
    -webkit-transform: translateY(8px) scale(1);
    transform: translateY(8px) scale(1);
  }
}

.linkButton {
  position: relative;
  color: black;
  font-size: 16px;
  background-color: #e3ece1;
  padding: 12px 100px 12px 28px;
  border-radius: 34px;
  line-height: 1.8;
  cursor: pointer;
  border: 1px solid #dddddd;
  word-break: keep-all;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.linkButton span {
  position: relative;
}

.linkButton .arrow {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 18px;
  right: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.linkButton .arrow::after {
  content: '';
  background-color: #538049;
  position: absolute;
  width: 8px;
  height: 1px;
  right: 6px;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.linkButton .arrow::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid #538049;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: 50%;
}

@media only screen and (min-width: 1200px) {
  .linkButton:hover {
    background-color: #538049;
    color: white;
  }
  .linkButton:hover .arrow {
    width: 25px;
  }
  .linkButton:hover .arrow::after {
    right: 11px;
  }
}

@media only screen and (max-width: 1200px) {
  .linkButton {
    background-color: #538049;
    color: white;
  }
}

@media only screen and (max-width: 650px) {
  .linkButton {
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.3;
  }
  .linkButton .arrow {
    right: 14px;
  }
}

.intro {
  position: relative;
  padding-top: 120px;
  padding-bottom: 380px;
  display: block;
  color: white;
  line-height: 2;
}

.intro .bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
}

.intro.starter .box {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s ease 0.3s;
  transition: all 1s ease 0.3s;
}

.intro .box {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  margin: 0 auto;
  width: 80%;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.intro .box .title {
  position: absolute;
  width: 20px;
  line-height: 1.2;
  left: 0;
  font-size: 20px;
  margin-top: -17px;
}

.intro .box .textBox {
  position: relative;
  width: 92%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.intro .box .textBox .text {
  position: relative;
  width: 100%;
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 70px;
          column-gap: 70px;
  text-align: justify;
}

.intro .linkButton {
  position: relative;
  left: 50%;
  margin-left: 32px;
  display: inline-block;
  margin-top: 60px;
}

@media only screen and (max-width: 1500px) {
  .intro .box {
    width: calc(100% - 130px);
    padding-right: 5%;
    margin-right: 0;
  }
  .intro .box .textBox {
    width: 100%;
    padding-left: 60px;
  }
  .intro .linkButton {
    margin-left: 65px;
    background-color: #e3ece1;
    color: #000;
  }
}

@media only screen and (max-width: 1200px) {
  .intro .box {
    width: calc(100% - 100px);
  }
}

@media only screen and (max-width: 1000px) {
  .intro .box {
    width: calc(100% - 60px);
    padding-right: 0;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 650px) {
  .intro {
    padding-top: 60px;
  }
  .intro .box .title {
    margin-top: 0;
    position: relative;
    width: auto;
    font-size: 16px;
    top: 0;
    margin-bottom: 24px;
  }
  .intro .box .textBox {
    font-size: 14px;
    padding-left: 0;
    display: block;
  }
  .intro .box .textBox .text {
    -webkit-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 0;
            column-gap: 0;
    opacity: .85;
  }
  .intro .linkButton {
    left: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 90%;
    max-width: 200px;
    line-height: 1.4;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .intro .linkButton .arrow {
    right: 14px;
  }
}

.newsBlock {
  position: relative;
  width: 85%;
  background-color: white;
  margin-top: -290px;
  z-index: 10;
  margin-right: 0;
  margin-left: auto;
  border-radius: 50px 0 0 50px;
  padding: 60px 160px 60px 60px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.newsBlock .mainType {
  position: absolute;
  right: 160px;
  width: 20px;
  font-size: 20px;
  height: calc(100% - 116px);
  overflow: hidden;
}

.newsBlock .mainType::before {
  content: '';
  position: absolute;
  background-color: #dddddd;
  height: 100%;
  top: 124px;
  width: 1px;
  left: 50%;
}

.newsBlock .mainType::after {
  content: '';
  background-color: #2b2b2b;
  width: 1px;
  left: 50%;
  position: absolute;
  height: 6%;
  top: 124px;
}

.newsBlock .title {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.newsBlock .title .tw {
  position: relative;
  font-size: 26px;
  display: block;
  letter-spacing: 4px;
}

.newsBlock .title .en {
  position: relative;
  display: block;
  font-size: 16px;
  opacity: .8;
  margin-top: 5px;
}

.newsBlock .timeInfo {
  position: relative;
  width: 43%;
  padding-left: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsBlock .timeInfo .circleButton {
  margin-top: -23px;
}

.newsBlock .timeInfo .date {
  position: relative;
  margin-right: 50px;
}

.newsBlock .timeInfo .date .day {
  position: relative;
  color: #538049;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}

.newsBlock .timeInfo .date .day b {
  font-size: 25px;
  font-weight: 400;
  border: 2px solid;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: .9;
  text-align: center;
  padding-left: 0;
  margin-left: 18px;
  top: 9px;
  position: relative;
}

.newsBlock .timeInfo .date .time {
  position: relative;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 5px;
  margin-top: 10px;
  line-height: 1;
}

.newsBlock .block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 95%;
}

.newsBlock .block .name {
  position: absolute;
  font-size: 16px;
  width: 20px;
  left: 0;
  top: 4px;
}

.newsBlock .block .name span {
  font-size: 16px;
  opacity: .8;
  margin-left: 4px;
}

.newsBlock .locationInfo {
  position: relative;
  width: 57%;
  padding-left: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsBlock .locationInfo .circleButton {
  margin-left: 15px;
  margin-top: -23px;
}

.newsBlock .locationInfo .loc {
  position: relative;
  font-size: 22px;
  display: block;
  letter-spacing: 4px;
  margin-right: 30px;
  line-height: 1.5;
}

.newsBlock .locationInfo .loc .addr {
  position: relative;
  color: #538049;
  margin-bottom: 6px;
  padding-bottom: 8px;
  margin-top: 1px;
  border-bottom: 1px solid silver;
}

.newsBlock .locationInfo .loc .room {
  position: relative;
  font-size: 20px;
}

.newsBlock .wayInfo {
  position: relative;
  width: 43%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid black;
  padding-top: 40px;
  margin-top: 40px;
}

.newsBlock .wayInfo .name {
  position: relative;
  top: 0;
}

.newsBlock .wayInfo .tel {
  position: relative;
  padding-left: 24px;
}

.newsBlock .wayInfo .tel .text {
  position: relative;
  font-size: 20px;
  letter-spacing: 3px;
  display: block;
}

.newsBlock .wayInfo .tel .text span {
  font-size: 16px;
  opacity: .8;
  margin-left: 4px;
}

.newsBlock .wayInfo .tel .telNumber {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-top: 6px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #538049;
}

.newsBlock .wayInfo .tel .telNumber .t {
  color: #000;
  font-size: 16px;
  margin: 0 12px 4px;
  display: block;
}

.newsBlock .wayInfo .tel .telNumber div {
  position: relative;
}

.newsBlock .wayInfo .tel .telNumber div:last-child {
  font-size: 32px;
}

.newsBlock .onlineInfo {
  position: relative;
  width: 57%;
  display: block;
  border-top: 1px solid black;
  padding-top: 40px;
  margin-top: 40px;
  font-size: 20px;
}

.newsBlock .onlineInfo .name {
  position: relative;
  font-size: 20px;
  width: auto;
  letter-spacing: 3px;
}

.newsBlock .onlineInfo .go {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 3px;
}

.newsBlock .onlineInfo .go .addr {
  color: #538049;
  position: relative;
}

.newsBlock .onlineInfo .go .linkButton {
  position: relative;
  margin-left: 40px;
  margin-right: 0;
}

.newsBlock .onlineInfo .go .memo {
  position: relative;
  font-size: 16px;
  opacity: .8;
}

.newsBlock.starter {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

@media only screen and (max-width: 1800px) {
  .newsBlock {
    width: calc(100% - 160px);
    padding-right: 5%;
  }
  .newsBlock .locationInfo .circleButton {
    top: 0;
  }
  .newsBlock .timeInfo,
  .newsBlock .wayInfo {
    width: 42%;
  }
  .newsBlock .locationInfo,
  .newsBlock .onlineInfo {
    width: 58%;
  }
  .newsBlock .block .name {
    top: 0;
  }
  .newsBlock .locationInfo .loc {
    font-size: 20px;
    margin-right: 16px;
  }
  .newsBlock .locationInfo .loc .room {
    font-size: 18px;
  }
  .newsBlock .mainType {
    right: 5%;
  }
  .newsBlock .wayInfo .tel .telNumber {
    font-size: 30px;
    margin-top: 8px;
  }
  .newsBlock .wayInfo .tel .telNumber .t {
    margin-bottom: 2px;
  }
  .newsBlock .wayInfo .tel .telNumber div:last-child {
    font-size: 22px;
  }
  .newsBlock .timeInfo .date {
    margin-right: 28px;
  }
  .newsBlock .timeInfo .date .day {
    font-size: 32px;
  }
  .newsBlock .timeInfo .date .day b {
    font-size: 22px;
    width: 28px;
    height: 28px;
    top: 6px;
    margin-left: 6px;
    padding-left: 1px;
  }
  .newsBlock .timeInfo .date .time {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1600px) {
  .newsBlock .locationInfo .circleButton {
    margin-top: -15px;
  }
  .newsBlock .timeInfo .circleButton {
    margin-top: -15px;
  }
}

@media only screen and (max-width: 1500px) {
  .newsBlock {
    width: calc(100% - 130px);
    padding: 50px 5% 50px 50px;
  }
  .newsBlock .title .tw {
    font-size: 24px;
  }
  .newsBlock .locationInfo .loc {
    margin-right: 30px;
  }
  .newsBlock .timeInfo .circleButton {
    margin-top: -0;
  }
  .newsBlock .wayInfo .tel .telNumber {
    margin-top: 20px;
  }
  .newsBlock .mainType {
    height: calc(100% - 98px);
  }
  .newsBlock .timeInfo {
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid black;
  }
  .newsBlock .locationInfo {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .newsBlock .locationInfo .circleButton {
    margin-top: 0;
  }
  .newsBlock .locationInfo .name {
    top: 18px;
  }
  .newsBlock .wayInfo {
    padding-top: 30px;
    margin-top: 30px;
    width: 50%;
  }
  .newsBlock .wayInfo .tel {
    padding-left: 25px;
  }
  .newsBlock .onlineInfo {
    padding-top: 30px;
    margin-top: 30px;
    width: 50%;
  }
  .newsBlock .onlineInfo .go {
    letter-spacing: 2px;
    padding-bottom: 30px;
  }
  .newsBlock .onlineInfo .go .memo {
    left: 227px;
    position: absolute;
    bottom: 0;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1200px) {
  .newsBlock {
    width: calc(100% - 100px);
  }
  .newsBlock .onlineInfo {
    width: 100%;
    border-top: 0;
    padding-top: 0;
    margin-right: 0;
    padding-left: 45px;
    margin-top: 50px;
  }
  .newsBlock .onlineInfo .go .linkButton {
    margin-right: 20px;
  }
  .newsBlock .onlineInfo .go .memo {
    left: auto;
    position: relative;
  }
  .newsBlock .onlineInfo::before {
    content: '';
    background-color: silver;
    position: absolute;
    width: calc(100% - 45px);
    height: 1px;
    top: -24px;
    left: 45px;
  }
  .newsBlock .timeInfo .date .day b {
    font-size: 22px;
    width: 25px;
    height: 25px;
    top: 6px;
    margin-left: 6px;
    border: 1px solid;
  }
  .newsBlock .wayInfo .tel .telNumber {
    font-size: 32px;
  }
  .newsBlock .wayInfo {
    width: 100%;
  }
}

@media only screen and (max-width: 1000px) {
  .newsBlock {
    width: calc(100% - 30px);
  }
  .newsBlock .title .tw {
    font-size: 20px;
  }
  .newsBlock .title .en {
    font-size: 15px;
  }
}

@media only screen and (max-width: 650px) {
  .newsBlock {
    overflow: hidden;
    WIDTH: 100%;
    padding: 65px 30PX 50px 30PX;
  }
  .newsBlock .title .tw {
    line-height: 1.5;
  }
  .newsBlock .title .en {
    font-size: 14px;
  }
  .newsBlock .block {
    width: 100%;
  }
  .newsBlock .block .name {
    position: relative;
    width: auto;
    margin-bottom: 10px;
    letter-spacing: 3px;
  }
  .newsBlock .mainType {
    display: none;
  }
  .newsBlock .circleButton {
    width: 80%;
    margin: 0 auto;
  }
  .newsBlock .locationInfo {
    display: block;
    padding-left: 0;
    border: 0;
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
  .newsBlock .locationInfo .name {
    top: 0;
  }
  .newsBlock .locationInfo::after {
    content: '';
    background-color: black;
    position: absolute;
    width: 100vw;
    bottom: 0;
    left: 50%;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .newsBlock .locationInfo .circleButton {
    margin: 12px auto 0px;
    width: 200px;
    padding-right: 0;
  }
  .newsBlock .locationInfo .loc {
    margin-bottom: 30px;
    display: block;
    margin-right: 0;
  }
  .newsBlock .locationInfo .loc .addr {
    font-size: 20px;
  }
  .newsBlock .locationInfo .loc .room {
    font-size: 18px;
  }
  .newsBlock .wayInfo {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    border: 0;
    display: block;
  }
  .newsBlock .wayInfo .tel {
    padding-left: 0;
    margin-top: 20px;
  }
  .newsBlock .wayInfo .tel .text {
    font-size: 14px;
    line-height: 1.5;
  }
  .newsBlock .wayInfo .tel .text span {
    font-size: 14px;
  }
  .newsBlock .wayInfo .tel .telNumber {
    font-size: 34px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .newsBlock .wayInfo .tel .telNumber .t {
    font-size: 14px;
    margin-left: 0;
  }
  .newsBlock .wayInfo .tel .telNumber div:first-child {
    margin-right: 12px;
  }
  .newsBlock .wayInfo .tel .telNumber div:last-child {
    font-size: 28px;
  }
  .newsBlock .onlineInfo {
    border-top: 1px solid #cecece;
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 0;
  }
  .newsBlock .onlineInfo::before {
    display: none;
  }
  .newsBlock .onlineInfo .name {
    font-size: 14px;
    line-height: 1.5;
  }
  .newsBlock .onlineInfo .name span {
    font-size: 14px;
  }
  .newsBlock .onlineInfo .go {
    display: block;
    padding-bottom: 0;
  }
  .newsBlock .onlineInfo .go .linkButton {
    display: block;
    margin-top: 35px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    line-height: 1.4;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .newsBlock .onlineInfo .go .linkButton .arrow {
    right: 14px;
  }
  .newsBlock .onlineInfo .go .memo {
    text-align: center;
  }
  .newsBlock .timeInfo {
    display: block;
    padding-left: 0;
    border: 0;
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
  .newsBlock .timeInfo::after {
    content: '';
    background-color: black;
    position: absolute;
    width: 100vw;
    bottom: 0;
    left: 50%;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .newsBlock .timeInfo .circleButton {
    margin: 50px auto 0px;
    width: 200px;
    padding-right: 0;
  }
  .newsBlock .timeInfo .date {
    margin-bottom: 28px;
  }
  .newsBlock .timeInfo .date .day {
    font-size: 40px;
  }
  .newsBlock .timeInfo .date .day b {
    font-size: 22px;
    width: 25px;
    height: 25px;
    top: 10px;
    margin-left: 3px;
  }
  .newsBlock .timeInfo .date .time {
    font-size: 28px;
  }
}

.circleButton {
  position: relative;
  background-color: #e3ece1;
  width: 120px;
  min-width: 120px;
  height: 120px;
  min-height: 120px;
  border-radius: 50%;
  color: #000;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 7px;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.circleButton .buttonName {
  position: relative;
}

.circleButton div {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  bottom: 12px;
  color: #538049;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.circleButton .arrow::after {
  content: '';
  background-color: #538049;
  position: absolute;
  width: 8px;
  height: 1px;
  right: 6px;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.circleButton .arrow::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid #538049;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: 50%;
}

@media only screen and (min-width: 1200px) {
  .circleButton:hover {
    background-color: #538049;
    color: white;
  }
  .circleButton:hover div {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@media only screen and (max-width: 1600px) {
  .circleButton {
    min-width: 100px;
    width: 100px;
    min-height: 100px;
    height: 100px;
    font-size: 14px;
  }
  .circleButton .buttonName {
    top: -5px;
  }
}

@media only screen and (max-width: 1200px) {
  .circleButton {
    background-color: #538049;
    color: white;
  }
}

@media only screen and (max-width: 650px) {
  .circleButton {
    padding: 14px 100px 14px 28px;
    border-radius: 34px;
    width: auto;
    min-height: auto;
    height: auto;
    text-align: left;
    display: block;
  }
  .circleButton .buttonName {
    top: 0;
  }
  .circleButton div {
    right: 14px;
    left: auto;
    bottom: 15px;
  }
}

.timeLine {
  position: relative;
  max-width: 1600px;
  margin: 180px auto;
  width: 80%;
}

.timeLine .mainType {
  position: absolute;
  width: 20px;
  line-height: 1.2;
  left: 0;
  font-size: 20px;
  margin-top: -17px;
}

.timeLine .linkButton {
  width: 200px;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

@media only screen and (min-width: 1200px) {
  .timeLine .linkButton:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.timeLine.starter .linkButton {
  opacity: 1;
  -webkit-transition: all .6s ease, opacity .6s ease 2.6s;
  transition: all .6s ease, opacity .6s ease 2.6s;
}

@media only screen and (min-width: 1200px) {
  .timeLine.starter .linkButton:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.timeLine .timeLine_block {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto 65px;
  padding: 0 120px;
}

.timeLine .timeLine_block.starter .timeLineBox {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.timeLine .timeLine_block .timeLineBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  padding: 10px 22px;
  min-height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 60px;
  overflow: hidden;
  font-size: 18px;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  -webkit-transition: all .6s ease, color .5s ease;
  transition: all .6s ease, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(2) {
  -webkit-transition: all .6s ease .2s, color .5s ease;
  transition: all .6s ease .2s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(3) {
  -webkit-transition: all .6s ease .4s, color .5s ease;
  transition: all .6s ease .4s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(4) {
  -webkit-transition: all .6s ease .6s, color .5s ease;
  transition: all .6s ease .6s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(5) {
  -webkit-transition: all .6s ease .8s, color .5s ease;
  transition: all .6s ease .8s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(6) {
  -webkit-transition: all .6s ease 1s, color .5s ease;
  transition: all .6s ease 1s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(7) {
  -webkit-transition: all .6s ease 1.2s, color .5s ease;
  transition: all .6s ease 1.2s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(8) {
  -webkit-transition: all .6s ease 1.4s, color .5s ease;
  transition: all .6s ease 1.4s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(9) {
  -webkit-transition: all .6s ease 1.6s, color .5s ease;
  transition: all .6s ease 1.6s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(10) {
  -webkit-transition: all .6s ease 1.8s, color .5s ease;
  transition: all .6s ease 1.8s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(11) {
  -webkit-transition: all .6s ease 2s, color .5s ease;
  transition: all .6s ease 2s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(12) {
  -webkit-transition: all .6s ease 2.2s, color .5s ease;
  transition: all .6s ease 2.2s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(13) {
  -webkit-transition: all .6s ease 2.4s, color .5s ease;
  transition: all .6s ease 2.4s, color .5s ease;
}

.timeLine .timeLine_block .timeLineBox:nth-child(even) {
  background-color: white;
}

.timeLine .timeLine_block .timeLineBox .time {
  position: relative;
  width: 25%;
  font-weight: 300;
}

.timeLine .timeLine_block .timeLineBox .title {
  position: relative;
  width: 45%;
  line-height: 1.5;
}

.timeLine .timeLine_block .timeLineBox .name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 34%;
}

.timeLine .timeLine_block .timeLineBox .name .name_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 25px;
}

.timeLine .timeLine_block .timeLineBox .name .name_box:last-child {
  margin-right: 0;
}

.timeLine .timeLine_block .timeLineBox .name .name_box .myimg {
  position: relative;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  MARGIN-RIGHT: 12px;
}

.timeLine .timeLine_block .timeLineBox .name .name_box .myimg img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.timeLine .timeLine_block .timeLineBox .name .name_box .myname {
  position: relative;
}

@media only screen and (min-width: 1200px) {
  .timeLine .timeLine_block .timeLineBox:hover {
    color: #538049;
  }
}

@media only screen and (max-width: 1600px) {
  .timeLine {
    width: calc(100% - 160px);
    margin-left: 160px;
    margin-right: 0;
  }
  .timeLine .timeLine_block {
    padding: 0 60px;
  }
  .timeLine .timeLine_block .timeLineBox .name {
    width: 40%;
    font-size: 16px;
  }
  .timeLine .timeLine_block .timeLineBox .time {
    width: 235px;
  }
}

@media only screen and (max-width: 1500px) {
  .timeLine {
    width: calc(100% - 130px);
    margin-left: 130px;
  }
  .timeLine .mainType {
    margin-top: -4px;
  }
  .timeLine .timeLine_block .timeLineBox {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1200px) {
  .timeLine {
    width: calc(100% - 100px);
    margin-left: 100px;
  }
  .timeLine .timeLine_block .timeLineBox .name {
    min-width: 200px;
    font-size: 16px;
    margin-left: 35px;
    width: 15%;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box:nth-child(2) {
    margin-top: 5px;
  }
  .timeLine .timeLine_block .timeLineBox .title {
    color: #538049;
  }
}

@media only screen and (max-width: 1000px) {
  .timeLine {
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-top: 100px;
    margin-bottom: 120px;
  }
  .timeLine .mainType {
    position: relative;
    margin-top: 0;
    padding-left: 20px;
    width: auto;
    margin-bottom: 16px;
  }
  .timeLine .timeLine_block {
    padding: 0;
    margin-bottom: 40px;
  }
  .timeLine .timeLine_block .timeLineBox .name {
    font-size: 14px;
    min-width: 190px;
  }
}

@media only screen and (max-width: 650px) {
  .timeLine {
    margin-top: 55px;
    margin-bottom: 55px;
  }
  .timeLine .mainType {
    padding-left: 0;
    font-size: 16px;
    margin-bottom: 28px;
    letter-spacing: 3px;
  }
  .timeLine::before {
    content: '';
    position: absolute;
    left: -13px;
    background-color: #cecece;
    top: 47px;
    height: calc(100% - 140px);
    width: 1px;
  }
  .timeLine::after {
    content: '';
    position: absolute;
    left: -13px;
    background-color: black;
    top: 47px;
    height: 15px;
    width: 1px;
  }
  .timeLine .timeLine_block .timeLineBox,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) {
    background-color: white;
    margin-bottom: 16px;
    border-radius: 20px;
    display: block;
    padding-bottom: 20px;
    padding-top: 22px;
  }
  .timeLine .timeLine_block .timeLineBox .time,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .time {
    width: 100%;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .timeLine .timeLine_block .timeLineBox .title,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .title {
    font-size: 16px;
    width: 100%;
  }
  .timeLine .timeLine_block .timeLineBox .name,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name {
    font-size: 14px;
    min-width: auto;
    width: 100%;
    margin-left: 0;
    text-align: left;
    display: block;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name .name_box {
    margin-right: 0;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box:nth-child(1),
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name .name_box:nth-child(1) {
    margin-top: 15px;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box .myimg,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name .name_box .myimg {
    width: 50px;
    height: 50px;
  }
  .timeLine .timeLine_block .timeLineBox .name .name_box:last-child,
  .timeLine .timeLine_block .timeLineBox:nth-child(even) .name .name_box:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.peopleList {
  position: relative;
  max-width: 1600px;
  margin: 180px auto;
  width: 80%;
}

.peopleList .peopleBlock {
  position: relative;
  width: 100%;
  margin: 0 auto 65px;
  padding: 0 55px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.peopleList .peopleBlock.starter {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.peopleList .peopleBlock .mainType {
  position: absolute;
  width: 20px;
  line-height: 1.2;
  left: 0;
  font-size: 20px;
  margin-top: -17px;
  text-align: center;
}

.peopleList .peopleBlock .mainType span {
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  display: block;
  padding-top: 26px;
}

.peopleList .peopleBlock .mainType span::before {
  content: '';
  background-color: black;
  position: absolute;
  width: 14px;
  height: 1px;
  top: 13px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  opacity: .8;
  left: 2px;
}

.peopleList .peopleBlock .peopleBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.peopleList .peopleBlock .peopleBox .people {
  position: relative;
  width: 18%;
  display: block;
  margin-bottom: 60px;
  margin-right: 2.5%;
  border-radius: 0% 0 0 60px;
  overflow: hidden;
  -webkit-box-shadow: -1px 9px 2px transparent;
          box-shadow: -1px 9px 2px transparent;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  border: 1px solid transparent;
}

.peopleList .peopleBlock .peopleBox .people:nth-child(5n) {
  margin-right: 0;
}

.peopleList .peopleBlock .peopleBox .people .img {
  position: relative;
  width: 100%;
}

.peopleList .peopleBlock .peopleBox .people .img img {
  position: relative;
  display: block;
  width: 100%;
}

.peopleList .peopleBlock .peopleBox .people .text {
  position: relative;
  background-color: white;
  font-size: 18px;
  text-align: center;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.peopleList .peopleBlock .peopleBox .people .text .name {
  position: relative;
  font-size: 20px;
  width: 100%;
  color: #538049;
  letter-spacing: 5px;
  margin-bottom: 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.peopleList .peopleBlock .peopleBox .people .text .title {
  position: relative;
  font-weight: 300;
  display: block;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .peopleList .peopleBlock .peopleBox .people:hover {
    -webkit-box-shadow: -1px 9px 10px rgba(0, 0, 0, 0.05);
            box-shadow: -1px 9px 10px rgba(0, 0, 0, 0.05);
    border-color: #c5c5c5;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .peopleList .peopleBlock .peopleBox .people:hover .text .name {
    color: black;
  }
}

@media only screen and (max-width: 1600px) {
  .peopleList {
    width: calc(100% - 160px);
    margin-left: 160px;
    margin-right: 0;
  }
}

@media only screen and (max-width: 1500px) {
  .peopleList {
    width: calc(100% - 130px);
    margin-left: 130px;
  }
  .peopleList .peopleBlock .mainType {
    margin-top: -20px;
  }
  .peopleList .peopleBlock .peopleBox .people {
    border-radius: 0% 0 0 45px;
    margin-bottom: 20px;
  }
  .peopleList .peopleBlock .peopleBox .people .text {
    font-size: 16px;
    height: 100px;
  }
  .peopleList .peopleBlock .peopleBox .people .text .name {
    font-size: 18px;
    letter-spacing: 3px;
  }
}

@media only screen and (max-width: 1200px) {
  .peopleList {
    width: calc(100% - 100px);
    margin-left: 100px;
    margin-top: 95px;
    margin-bottom: 95px;
  }
}

@media only screen and (max-width: 1000px) {
  .peopleList {
    width: calc(100% - 60px);
    margin-left: 30px;
  }
  .peopleList .peopleBlock {
    padding-right: 0;
    padding-left: 0;
  }
  .peopleList .peopleBlock .mainType {
    position: relative;
    margin: 0;
    width: 100%;
    font-size: 20px;
    text-align: left;
    letter-spacing: 3px;
    margin-bottom: 24px;
  }
  .peopleList .peopleBlock .mainType span {
    display: inline-block;
    margin-top: 0;
    font-size: 14px;
    padding-top: 0;
  }
  .peopleList .peopleBlock .mainType span::before {
    content: '/';
    position: relative;
    width: auto;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    background-color: transparent;
    padding-right: 7px;
    padding-left: 2px;
  }
  .peopleList .peopleBlock .peopleBox .people,
  .peopleList .peopleBlock .peopleBox .people:nth-child(5n) {
    border-radius: 0% 0 0 30px;
    width: 22%;
    margin-right: 3%;
  }
  .peopleList .peopleBlock .peopleBox .people:nth-child(4n),
  .peopleList .peopleBlock .peopleBox .people:nth-child(5n):nth-child(4n) {
    margin-right: 0;
  }
  .peopleList .peopleBlock .peopleBox .people .text,
  .peopleList .peopleBlock .peopleBox .people:nth-child(5n) .text {
    height: 85px;
  }
}

@media only screen and (max-width: 650px) {
  .peopleList {
    margin-top: 60px;
    margin-bottom: 0;
    padding-bottom: 25px;
  }
  .peopleList .peopleBlock {
    padding: 0;
    margin-bottom: 30px;
  }
  .peopleList .peopleBlock .peopleBox .people,
  .peopleList .peopleBlock .peopleBox .people:nth-child(5n) {
    border-radius: 0% 0 0 30px;
    width: 48%;
    margin-right: 4%;
  }
  .peopleList .peopleBlock .peopleBox .people:nth-child(2n),
  .peopleList .peopleBlock .peopleBox .people:nth-child(5n):nth-child(2n) {
    margin-right: 0;
  }
  .peopleList .peopleBlock .peopleBox .people .text,
  .peopleList .peopleBlock .peopleBox .people:nth-child(5n) .text {
    height: 66px;
    font-size: 14px;
  }
  .peopleList .peopleBlock .peopleBox .people .text .name,
  .peopleList .peopleBlock .peopleBox .people:nth-child(5n) .text .name {
    font-size: 16px;
    margin-bottom: 2px;
  }
}

.unitBlock {
  position: relative;
  max-width: 1600px;
  margin: 180px auto 0;
  width: 80%;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.unitBlock.starter {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.unitBlock .mainType {
  position: absolute;
  width: 20px;
  line-height: 1.2;
  left: 0;
  font-size: 20px;
  margin-top: -17px;
}

.unitBlock .block {
  position: relative;
  width: 100%;
  margin: 0 auto 0;
  padding: 0 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.unitBlock .block .brand {
  position: relative;
  background-color: white;
  font-size: 18px;
  color: black;
  padding: 0;
  text-align: center;
  line-height: 1.6;
  border: 1px solid #c5c5c5;
  -webkit-box-shadow: -1px 9px 10px rgba(0, 0, 0, 0);
          box-shadow: -1px 9px 10px rgba(0, 0, 0, 0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  margin-left: -1px;
  width: 25%;
}

.unitBlock .block .brand img {
  position: relative;
  display: block;
  width: 100%;
}

.unitBlock .block .brand .name {
  position: relative;
  border-top: 1px solid #ededed;
  height: 102px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.unitBlock .block .brand .name::after {
  content: '';
  background-color: #538049;
  width: 0%;
  position: absolute;
  bottom: -1px;
  left: 50%;
  height: 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media only screen and (min-width: 1200px) {
  .unitBlock .block .brand:hover {
    -webkit-box-shadow: -1px -1px 10px rgba(0, 0, 0, 0.1);
            box-shadow: -1px -1px 10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .unitBlock .block .brand:hover .name {
    color: #538049;
  }
  .unitBlock .block .brand:hover .name::after {
    width: 100%;
    left: 0;
  }
}

@media only screen and (max-width: 1700px) {
  .unitBlock .block .brand .name {
    font-size: 16px;
    padding: 5px 20px;
  }
}

@media only screen and (max-width: 1500px) {
  .unitBlock .mainType {
    margin-top: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .unitBlock {
    margin-top: 0;
  }
  .unitBlock::after {
    content: '';
    background-color: white;
    position: absolute;
    width: 100vw;
    height: 55%;
    bottom: -56px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    left: 50%;
  }
  .unitBlock .block {
    padding-right: 0;
  }
}

@media only screen and (max-width: 1000px) {
  .unitBlock {
    width: calc(100% - 60px);
  }
  .unitBlock::after {
    height: 23%;
  }
  .unitBlock .mainType {
    position: relative;
    margin-top: 0;
    padding-left: 0;
    width: auto;
    margin-bottom: 25px;
  }
  .unitBlock .block {
    padding-right: 0;
    padding-left: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .unitBlock .block .brand {
    width: 50%;
    margin-top: -1px;
  }
  .unitBlock .block .brand img {
    max-width: 349px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 650px) {
  .unitBlock .mainType {
    font-size: 16px;
    letter-spacing: 3px;
  }
  .unitBlock .block .brand {
    width: 100%;
    margin-left: 0;
  }
  .unitBlock .block .brand .name {
    font-size: 14px;
    padding: 5px 28px;
    height: 74px;
  }
  .unitBlock::after {
    content: '';
    position: absolute;
    z-index: -1;
    background-color: white;
    width: 100vw;
    height: 32vw;
    bottom: -58px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

main {
  position: relative;
  z-index: 3;
}

footer {
  position: relative;
  background-color: white;
  margin-top: -100px;
  z-index: 2;
  padding-top: 280px;
  display: block;
}

footer .block {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 114px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 50px 130px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer .block .logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .block .logo .logoImg {
  position: relative;
}

footer .block .logo .name {
  position: relative;
  display: block;
  margin-left: 20px;
}

footer .block .logo .name .tw {
  position: relative;
  font-size: 20px;
  color: #343434;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

footer .block .logo .name .en {
  position: relative;
  font-weight: 300;
  opacity: .7;
  font-size: 15px;
}

footer .block::after {
  content: '';
  background-color: #538049;
  height: 14px;
  width: calc(100% - 100px);
  position: absolute;
  bottom: 0;
}

footer .info {
  position: relative;
  display: block;
  width: 47%;
  margin-left: 7%;
  line-height: 1.3;
}

footer .info .line {
  position: relative;
  padding: 18px 0;
  border-bottom: 1px solid #dde6db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .info .line:last-child {
  border-bottom: 0;
}

footer .info .line label {
  position: relative;
  width: 120px;
  min-width: 120px;
}

footer .info .line a {
  position: relative;
  color: #000;
  opacity: .8;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (min-width: 1200px) {
  footer .info .line a:hover {
    color: #538049;
    opacity: 1;
  }
}

footer .fb {
  position: absolute;
  bottom: auto;
  background-color: #4f7bcb;
  color: white;
  width: 18%;
  margin-left: 7%;
  right: 50px;
  top: 17px;
  padding-right: 50px;
  min-width: 260px;
}

footer .fb .arrow::before {
  border-color: black;
}

footer .fb .arrow::after {
  background-color: black;
}

footer .tip {
  position: absolute;
  bottom: 0;
  opacity: 0.6;
  bottom: 62px;
  left: 335px;
  margin-left: 7%;
}

footer .copyright {
  position: absolute;
  top: 90px;
  right: 50px;
  opacity: .6;
  font-size: 14px;
  width: 18%;
  min-width: 260px;
  line-height: 1.6;
  text-align: center;
}

footer #gotop {
  position: absolute;
  bottom: 62px;
  right: 50px;
  width: 18%;
  min-width: 260px;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10;
  padding-left: 35px;
  letter-spacing: 2px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

footer #gotop span {
  position: relative;
}

footer #gotop::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid black;
  border-bottom: 0;
  border-right: 0;
  left: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

footer #gotop::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #538049;
  border-bottom: 0;
  border-right: 0;
  left: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  opacity: 0;
  -webkit-transform: translateY(15px) rotate(45deg);
          transform: translateY(15px) rotate(45deg);
}

@media only screen and (min-width: 1200px) {
  footer #gotop:hover {
    color: #538049;
  }
  footer #gotop:hover::before {
    opacity: 0;
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  footer #gotop:hover::after {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
    -webkit-transition: all .5s ease .2s;
    transition: all .5s ease .2s;
  }
}

@media only screen and (max-width: 1700px) {
  footer .info {
    width: 48%;
    margin-left: 4%;
  }
  footer .tip {
    margin-left: 4%;
  }
  footer .block {
    width: 90%;
  }
}

@media only screen and (max-width: 1500px) {
  footer .info .line {
    line-height: 1.5;
  }
  footer .fb {
    min-width: 220px;
  }
  footer .copyright {
    min-width: 220px;
    font-size: 13px;
    text-align: left;
  }
  footer .tip {
    margin-left: 0;
    left: 325px;
    font-size: 13px;
  }
  footer #gotop {
    min-width: 220px;
    width: auto;
  }
  footer .block .logo {
    top: 9px;
  }
  footer .block .logo .name {
    margin-left: 15px;
  }
  footer .block .logo .name .tw {
    font-size: 16px;
  }
  footer .block .logo .name .en {
    font-size: 13px;
  }
  footer .block .logo .logoImg {
    width: 60px;
  }
}

@media only screen and (max-width: 1200px) {
  footer {
    z-index: 100;
    margin-top: 50px;
    padding-top: 50px;
  }
  footer .block {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 45px;
  }
  footer .block .logo {
    position: absolute;
  }
  footer .block::after {
    width: 100%;
    height: 8px;
  }
  footer .info {
    width: calc(100% - 300px);
    margin-left: 300px;
  }
  footer .fb {
    min-width: 220px;
    position: relative;
    right: auto;
    top: 0;
    margin-left: 300px;
    margin-top: 12px;
  }
  footer .tip {
    margin-left: 0;
    font-size: 13px;
    position: relative;
    bottom: auto;
    margin-top: 65px;
    left: 0;
    width: 100%;
    padding-left: 300px;
  }
  footer .copyright {
    margin-left: 0;
    font-size: 13px;
    position: relative;
    bottom: auto;
    margin-top: 12px;
    left: 300px;
    right: auto;
    width: auto;
    top: auto;
  }
  footer #gotop {
    position: fixed;
    background-color: #538049;
    WIDTH: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid white;
    bottom: 5%;
    right: 5%;
    padding: 0;
    margin: 0;
    min-width: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: -2px 3px 5px #00000033;
            box-shadow: -2px 3px 5px #00000033;
    opacity: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  footer #gotop::before {
    position: relative;
    border-color: white;
    left: auto;
    top: 3px;
  }
  footer #gotop div, footer #gotop::after {
    display: none;
  }
  footer #gotop.show {
    opacity: 1;
  }
}

@media only screen and (max-width: 1000px) {
  footer .tip {
    left: 0;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
  footer .block {
    padding-bottom: 25px;
  }
  footer .block::after {
    height: 5px;
  }
  footer .copyright {
    left: 0;
    text-align: center;
    width: 100%;
  }
}

@media only screen and (max-width: 750px) {
  footer {
    margin-top: 10px;
  }
  footer .info {
    width: 100%;
    margin-left: 0;
    margin-top: 18px;
  }
  footer .info .line {
    display: block;
    font-size: 14px;
  }
  footer .info .line label {
    width: 100%;
    margin-bottom: 5px;
    display: block;
  }
  footer .info .line a {
    width: 100%;
    display: block;
  }
  footer .fb {
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    font-size: 14px;
  }
  footer .fb .arrow {
    right: 15px;
  }
  footer .tip {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid gray;
    padding-bottom: 15px;
    line-height: 1.5;
  }
  footer .copyright {
    width: 100%;
    text-align: left;
  }
  footer .block {
    width: calc(100% - 60px);
  }
  footer .block::after {
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  footer .block .logo {
    position: relative;
    top: 0;
  }
  footer .block .logo .logoImg {
    width: 50px;
  }
  footer .block .logo .name .tw {
    font-size: 15px;
  }
}

.jump_box {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.jump_box.show {
  -webkit-transition: opacity .8s ease, -webkit-transform .5s ease .2s;
  transition: opacity .8s ease, -webkit-transform .5s ease .2s;
  transition: opacity .8s ease, transform .5s ease .2s;
  transition: opacity .8s ease, transform .5s ease .2s, -webkit-transform .5s ease .2s;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.jump_box .box {
  left: 50%;
  position: fixed;
  top: 5%;
  padding: 0;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  border-radius: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.jump_box .box.show {
  opacity: 1;
}

.jump_box .box img {
  max-height: 85vh;
  margin: 0 auto;
  max-width: 80vw;
}

.jump_box .inner {
  display: block;
  position: relative;
  height: 100%;
  padding-right: 0;
}

.jump_box .closebtn {
  position: absolute;
  background-color: #e3ece1;
  z-index: 10;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  left: auto;
  width: 72px;
  height: 72px;
  right: 0;
  -webkit-transform: translateX(108px);
          transform: translateX(108px);
  top: 0;
}

@media only screen and (min-width: 1200px) {
  .jump_box .closebtn:hover {
    background-color: #538049;
  }
  .jump_box .closebtn:hover span {
    background-color: #e3ece1;
  }
}

.jump_box span {
  position: relative;
  width: 35px;
  height: 1px;
  -webkit-transform: rotate(34deg);
          transform: rotate(34deg);
  background-color: #538049;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.jump_box span:last-child {
  position: absolute;
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
}

.jump_box a {
  word-break: break-all;
}

@media only screen and (max-width: 1200px) {
  .jump_box .closebtn {
    width: 60px;
    height: 60px;
    -webkit-transform: translateX(80px);
            transform: translateX(80px);
  }
}

@media only screen and (max-width: 1000px) {
  .jump_box .closebtn {
    width: 60px;
    height: 60px;
    -webkit-transform: translateY(-75px);
            transform: translateY(-75px);
  }
  .jump_box .box {
    top: 100px;
  }
  .jump_box .box img {
    max-width: 90vw;
  }
}

@media only screen and (max-width: 650px) {
  .jump_box .closebtn {
    width: 42px;
    height: 42px;
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
  .jump_box span {
    width: 25px;
  }
  .jump_box .box {
    top: 90px;
  }
  .jump_box .box img {
    max-width: 90vw;
  }
}

#cookie {
  position: fixed;
  background-color: #2b2b2b;
  color: white;
  z-index: 800;
  bottom: 5vh;
  left: 14%;
  width: 76%;
  padding: 25px 88px;
  font-size: 16px;
  display: block;
  line-height: 2;
  border-radius: 140px;
  display: none;
}

#cookie .box {
  position: relative;
  width: 100%;
  padding-right: 170px;
  DISPLAY: block;
  text-align: justify;
}

#cookie .box .title {
  position: relative;
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
  word-break: keep-all;
}

#cookie .box .memo {
  position: relative;
  opacity: .8;
}

#cookie .btn {
  position: absolute;
  right: 7%;
  top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 5;
}

#cookie .confirm {
  z-index: 10;
  position: absolute;
  color: white;
  width: 70px;
  height: 70px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 50px;
  cursor: pointer;
}

#cookie .confirm span {
  position: relative;
  z-index: 5;
}

#cookie .confirm::before {
  content: '';
  background-color: #538049;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#cookie .confirm::after {
  content: '';
  background-color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: .5;
}

@media only screen and (min-width: 1200px) {
  #cookie .confirm:focus::after {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
  #cookie .confirm:hover::before {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  #cookie .confirm:hover::after {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

#cookie .close {
  position: absolute;
  top: -15px;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 5;
  right: -60px;
}

#cookie .close::before {
  content: '';
  position: relative;
  position: relative;
  width: 35px;
  height: 1px;
  -webkit-transform: rotate(34deg);
          transform: rotate(34deg);
  background-color: #2b2b2b;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#cookie .close::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 1px;
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
  background-color: #2b2b2b;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (min-width: 1200px) {
  #cookie .close:hover {
    opacity: 1;
  }
  #cookie .close:hover::before {
    width: 45px;
  }
  #cookie .close:hover::after {
    width: 45px;
  }
}

@media only screen and (max-width: 1800px) {
  #cookie .box {
    padding-right: 110px;
  }
}

@media only screen and (max-width: 1000px) {
  #cookie {
    border-radius: 0;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 30px 30px;
  }
  #cookie .box .title {
    margin-bottom: 10px;
  }
  #cookie .confirm {
    position: relative;
    right: auto;
    background-color: #538049;
    border-radius: 45px;
    height: 50px;
    text-align: left;
    margin: 0 auto;
    display: block;
    padding-left: 27px;
    width: 200px;
    margin-top: 26px;
    line-height: 48px;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
  #cookie .confirm::after {
    position: absolute;
    width: 6px;
    height: 8px;
    background-color: transparent;
    border: 1px solid black;
    border-radius: 0;
    border-left: 0;
    border-top: 0;
    right: 23px;
    left: auto;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
    top: 50%;
    z-index: 5;
    margin-top: -2px;
  }
  #cookie .confirm::before {
    position: absolute;
    width: 18px;
    background-color: white;
    right: 14px;
    top: 50%;
    left: auto;
    height: 18px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: .8;
  }
  #cookie .close {
    right: 17px;
    top: 14px;
  }
  #cookie .close::before {
    background-color: white;
  }
  #cookie .close::after {
    background-color: white;
  }
  #cookie .box {
    padding-right: 0;
    font-size: 14px;
  }
}
/*# sourceMappingURL=voice.css.map */