@charset "UTF-8";

/*---------------
TABLE OF CONTENTS
1) Elements
2) navbar
3) index
4) banner
5) Pages ( blog, about etc )
6) all_pagetitle
-----------------*/
:root {
  --domin-red: #1A659E;
}

body {
  font-family: Microsoft JhengHei, 微軟正黑體, "Open Sans", arial, sans-serif;
  font-size: 1rem;
  color: #333333;
}

p {
  color: #636262;
  line-height: 1.8;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.h7,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Microsoft JhengHei, 微軟正黑體, "Open Sans", arial, sans-serif;
  font-weight: 500;
}

.g-color-domin {
  color: var(--domin-red) !important;
}

.g-color-domin--hover:hover {
  color: var(--domin-red) !important;
}

.g-bg-domin {
  background-color: var(--domin-red) !important;
}

.g-brd-domin {
  border-color: var(--domin-red) !important;
}

a {
  color: var(--domin-red);
}

/*------------- 2. navbar --------------*/
.header .navbar-nav li .nav-link {
  color: dimgray;
  font-size: 1.1rem;
  padding: 10px 20px;
  z-index: 102;
  border: none;
  font-weight: 200;
  letter-spacing: 0.25rem;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  -webkit-transition: none;
  transition: none;
}

.header .navbar-nav li .nav-link:focus,
.header .navbar-nav li .nav-link:hover,
.header .navbar-nav .show>.nav-link,
.header .navbar-nav li .nav-link.show,
.header .navbar-nav .active.show>.nav-link,
.header .navbar-nav li.show .nav-link.active {
  background-color: #ffffff;
  border-bottom-color: #ffffff;
  border-right: 1px solid #f5f5f5;
  border-left: 1px solid #f5f5f5;
  z-index: 106;
}

.header .scrollspy .navbar-nav li .nav-link:focus,
.header .scrollspy .navbar-nav li .nav-link:hover {
  background-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

.header .navbar-nav .active>.nav-link,
.header .navbar-nav li .nav-link.active {
  background-color: transparent;
}

.header .navbar-nav .dropdown-toggle::after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 600;
  position: absolute;
  top: 51%;
  left: auto;
  right: 0px;
  line-height: 20px;
  font-size: 2px;
  border: none;
  width: 20px;
  height: 20px;
  margin: 0;
  text-align: center;
  margin-top: -10px;
  opacity: 0;
}

@media (min-width: 992px) {
  .dropdown-menu {
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
    border: none;
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
}

@media (max-width: 1300px) {
  .header .navbar-nav li .nav-link {
    padding: 15px;
  }
}

@media (max-width: 1200px) {
  .header .navbar-nav li .nav-link {
    padding: 12px;
  }
}

@media (max-width: 992px) {
  .header .navbar-nav li .nav-link {
    border-bottom: 1px solid #f3f3f3 !important;
    padding: 10px 14px !important;
  }

  #navbar-collapse-1 {
    background-color: #fff;
  }

  .dropdown-toggle {
    position: relative;
  }

  .header .navbar-nav .dropdown-toggle::after {
    position: absolute;
    top: 20px;
    opacity: 1;
  }

  .show>.dropdown-menu {
    display: block;
    max-height: 100vh !important;
  }

  .show>a {
    outline: 0;
  }

  .show .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-nav .show .dropdown-menu>li>a,
  .navbar-nav .show .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }

  .navbar-nav .show .dropdown-menu>li>a {
    line-height: 20px;
  }

  .navbar-nav .show .dropdown-menu>li>a:hover,
  .navbar-nav .show .dropdown-menu>li>a:focus {
    background-image: none;
  }
}

@media (max-width: 767px) {
  body.out nav .navbar-toggle {
    background-color: transparent !important;
  }
}

.Toggle_btn {
  background-color: transparent !important;
  border: 0;
  height: 40px;
  width: 40px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.Toggle_btn:hover,
.Toggle_btn:focus {
  outline: 0;
  background-color: transparent !important;
}

.menu-btn_burgir {
  width: 35px;
  height: 3px;
  background: #888;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(53, 51, 51, 0.2);
  box-shadow: 0 2px 5px rgba(53, 51, 51, 0.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn_burgir::after,
.menu-btn_burgir::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: #888;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(53, 51, 51, 0.2);
  box-shadow: 0 2px 5px rgba(53, 51, 51, 0.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn_burgir::before {
  -webkit-transform: translateX(-14px) translateY(-10px);
  transform: translateX(-14px) translateY(-10px);
}

.menu-btn_burgir::after {
  -webkit-transform: translateX(-14px) translateY(10px);
  transform: translateX(-14px) translateY(10px);
}

.Toggle_btn.open .menu-btn_burgir {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.Toggle_btn.open .menu-btn_burgir::before {
  -webkit-transform: rotate(45deg) translate(35px, -35px);
  transform: rotate(45deg) translate(35px, -35px);
}

.Toggle_btn.open .menu-btn_burgir::after {
  -webkit-transform: rotate(-45deg) translate(35px, 35px);
  transform: rotate(-45deg) translate(35px, 35px);
}

.Toggle_btn.open .menu-btn_burgir::after,
.Toggle_btn.open .menu-btn_burgir::before {
  left: -10px;
}

/*-----------3. index ------------ */
/* indexcont */
.main-title {
  font-size: 60px;
  margin: 0px;
  color: transparent;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
  display: inline-block;
  -webkit-text-stroke: 1px #777777cf;
  text-stroke: 1px #777777cf;
}

.sub-title {
  font-size: 22px;
  color: #777777cf;
  letter-spacing: 4px;
  display: inline-block;
  padding-left: 20px;
  font-weight: 300;
}

figure {
  overflow: hidden;
}

/* Shine */
.shine_hover figure {
  position: relative;
}

.shine_hover figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.shine_hover figure:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}


/* index-news */
.news_swiper .swiper-slide {
  width: 100%;
  display: flex;
  flex-direction: row;
  transition: all 2s ease;
}

.news_swiper .swiper-slide img {
  width: 70%;
}

.news_swiper .swiper-slide .data {
  width: 30%;
  background-color: var(--domin-red);
  position: absolute;
  right: 5%;
  top: 35%;
  padding: 30px;
  color: #fff;
  opacity: 0.5;
}

.playText {
  animation: transitionText 2s ease;
}

@keyframes transitionText {
  0% {
    right: -100%;
  }

  100% {
    right: 5%;
  }
}


.news_swiper .swiper-slide .data h2 {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.news_swiper .swiper-slide .data p {
  margin: 5px 0 0 0;
  font-size: 1rem;
  font-weight: 200;
  color: #eee;
}

.news_swiper .swiper-slide .data .button {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 2px;
  color: white;
  transition: all 0.3s ease-in-out;
  padding: 0 15px;
  left: 0;
  position: relative;
}

.news_swiper .swiper-slide .data .button:before {
  content: "";
  background-color: white;
  width: 2px;
  height: 20px;
  position: absolute;
  z-index: 2;
  left: -1px;
  top: -2px;
  border-radius: inherit;
  transition: all 0.3s ease-in-out;
}

.news_swiper .swiper-slide .data .button:after {
  content: "";
  width: 0px;
  height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: absolute;
  border: solid 2px transparent;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  top: 3px;
  left: -10px;
  transition: all 0.3s ease-in-out;
}

.news_swiper .swiper-slide .data .button:hover::before {
  left: 11px;
  transform: rotate(90deg);
}

.news_swiper .swiper-slide .data .button:hover::after {
  border: solid 2px white;
  border-left: 0;
  border-bottom: 0;
  left: 10px;
  width: 10px;
  height: 10px;
  opacity: 1;
}

.news_swiper .swiper-slide .data .button:hover {
  padding-left: 35px;
}

.news_swiper .swiper-slide .data .number {
  width: auto;
  height: auto;
  position: absolute;
  right: 10px;
  bottom: -40px;
  font-size: 120px;
  -webkit-text-stroke: 1px white;
  color: transparent;
  font-weight: 600;
  font-family: "IBM Plex Sans", sans-serif;
  opacity: 0.3;
}

.swiper-arrows {
  height: 80px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0px;
  right: 30%;
}

.swiper-button-prev,
.swiper-button-next {
  width: 80px;
  height: 80px;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  margin: 0;
  transition: all 0.3s ease;
}

.swiper-button-prev {
  right: 80px;
  left: auto;
  background-color: rgba(255, 255, 255, 0.7);
}

.swiper-button-next {
  right: 0px;
  background-color: rgba(255, 255, 255, 0.8);
}

.swiper-button-prev span,
.swiper-button-next span {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: absolute;
  border: solid 2px #666666;
  border-left: 0;
  border-bottom: 0;
  transition: all 0.1s ease;
}

.swiper-button-prev span {
  transform: rotate(-135deg);
  left: 49%;
}

.swiper-button-next span {
  transform: rotate(45deg);
  right: 49%;
}

.swiper-button-prev:hover span,
.swiper-button-next:hover span {
  width: 8px;
  height: 8px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  width: 0px;
  height: inherit;
  content: "";
  position: absolute;
  background-color: white;
  transition: all 0.4s ease-in-out;
  z-index: -1;
  opacity: 0.8;
}

.swiper-button-prev:after {
  right: 0;
}

.swiper-button-next:after {
  left: 0;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
  width: inherit;
}

.swiper-button-disabled {
  opacity: 1 !important;
}

.swiper-button-disabled.swiper-button-prev span,
.swiper-button-disabled.swiper-button-next span {
  opacity: 0.2;
}

@media (max-width: 767px) {
  .news_swiper .swiper-slide {
    margin-bottom: 110px;
  }

  .news_swiper .swiper-slide img {
    width: 100%;
  }

  .news_swiper .swiper-slide .data {
    width: 100%;
    top: 100%;
    right: 0%;
    padding: 20px;
  }

  .news_swiper .swiper-slide .data h2 {
    font-size: 1.25rem;
  }

  .news_swiper .swiper-slide .data p {
    font-size: 1rem;
  }

  .swiper-arrows {
    right: 0%;
    bottom: 20%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .swiper-button-prev {
    right: 40px;
  }
}

/* index-g */
.gallery {
  margin: 16px;
  display: grid;
  grid-gap: 2px;
  grid-template-columns: repeat(2, 1fr);
}

.gallery::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -1px;
  top: -2px;
  border-radius: inherit;
  width: 80px;
  height: 150px;
  background: var(--domin-red);
  opacity: 0.4;
}

.gallery::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 10px;
  bottom: -0px;
  border-radius: inherit;
  width: 40px;
  height: 40px;
  background: var(--domin-red);
  opacity: 0.4;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
  transition: all 1s ease-in-out;
}

.gallery-item .text {
  width: 100%;
  height: 100%;
  background-color: rgba(2, 2, 2, 0.5);
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0px;
  z-index: -1;
  position: absolute;
  pointer-events: none;
}

.gallery-item:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.gallery-item:hover .text {
  z-index: 3;
}

.item-large {
  grid-area: 1 / 1 / 3 / 3;
}

@media screen and (min-width: 321px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .item-large {
    grid-area: 1 / 2 / 3 / 5;
  }
}

@media screen and (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .item-large {
    grid-area: 1 / 3 / 3 / 5;
    /* grid-row-start、grid-column-start、grid-row-end，最後是 grid-column-end。 */
  }

  .gallery::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 10px;
    bottom: -50px;
    border-radius: inherit;
    width: 700px;
    height: 400px;
    background: var(--domin-red);
  }
}


/* ---------------- 4. banner ------------------- */
.mid-banner {
  /* background-repeat: repeat-y; */
  background-position: center;
  /* background-attachment: fixed; */
  background-size: cover;
}

/* ------------- 5. Pages ( blog, about etc ) ------------- */
/* video */
.videoCard {
  width: 350px;
  height: 350px;
  position: relative;
  margin-bottom: 20px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.videoCard:not(:first-child) {
  margin-left: 20px;
}

.videoCard-body {
  position: absolute;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0.7)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 20%, transparent);
  width: 100%;
  padding: 10px 15px;
}

.hover01 a figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hover01 a figure:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .videoCard:not(:first-child) {
    margin-left: 0px;
  }
}

/* product */
.text-shadow-dark-v1 {
  text-shadow: 0.1em 0.1em 0.05em #333;
}

.shadow-2 {
  -webkit-box-shadow: 0 10px 6px -6px #999;
  box-shadow: 0 10px 6px -6px #999;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.shadow-2:hover {
  -webkit-box-shadow: 0 18px 24px -9px #999;
  box-shadow: 0 18px 24px -9px #999;
}

/* ebook */
.book-box {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  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;
}

.book-card {
  width: 100%;
  padding: 25px;
  border-radius: 3px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.book-card .book-card_cover {
  position: relative;
  width: 200px;
  height: 300px;
  margin: 0 auto 8px auto;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.book-card .book-card_book {
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.book-card .book-card_book-front {
  position: absolute;
  height: 100%;
}

.book-card .book-card_book-back {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: translateZ(-40px);
  transform: translateZ(-40px);
}

.book-card .book-card_book-side {
  position: absolute;
  top: 5px;
  bottom: 2px;
  right: -29px;
  width: 40px;
  background-size: 5px;
  background-color: #e1e1e1;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(35%, #ccc), color-stop(35%, #e1e1e1));
  background-image: linear-gradient(to right, #ccc 35%, #e1e1e1 35%);
  opacity: 0;
  -webkit-transform: rotate3d(0, 1, 0, 90deg);
  transform: rotate3d(0, 1, 0, 90deg);
}

.book-card .book-card_img {
  width: 100%;
  height: 100%;
  background-color: #e1e1e1;
}

.book-card .book-card_title {
  font-size: 1em;
  margin-bottom: 8px;
}

.book-card .book-card_day {
  color: #757575;
  font-size: 0.7em;
}

.book-card:hover .book-card_book {
  -webkit-transform: rotate3d(0, -1, 0, 30deg) translate(-15px, -30px);
  transform: rotate3d(0, -1, 0, 30deg) translate(-15px, -30px);
}

.book-card:hover .book-card_book-back {
  -webkit-box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.35);
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.35);
}

.book-card:hover .book-card_book-side {
  opacity: 1;
}

/* download */
.download-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: calc(100% - 2em);
  background: #fbfbfb;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2em;
  -webkit-box-shadow: 0 10px 22px rgba(148, 161, 193, 0.2), 0 6px 12px rgba(64, 66, 93, 0.15);
  box-shadow: 0 10px 22px rgba(148, 161, 193, 0.2), 0 6px 12px rgba(64, 66, 93, 0.15);
  border-bottom: 1px solid #d2d2d2;
  border-left: 1px solid #dadada;
  margin: 0 1em 2em;
  padding-left: calc(10px);
}

.download-card_content {
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.download-card_category {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  margin: 0 0 2em;
  display: block;
}

.download-card_category::before {
  content: "| ";
  color: #386696;
}

.download-card_title {
  line-height: 1;
  margin: 0 0 0.5em;
  font-size: 18px;
}

.download-card_description {
  line-height: 1.5;
  padding: 0;
  margin: 0 0 1.5em;
  clear: both;
  color: #8b8e9c;
  font-size: 16px;
}

.download-card a.button {
  text-decoration: none;
  margin: 0;
  padding: 1em 2em;
  border-radius: 2em;
  color: #cccccc;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7em;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 170px;
}

.download-card a.button:hover {
  color: white;
}

.download-card a.button i {
  margin-right: 0.5em;
  opacity: 0.4;
}

/* message */
.form-control {
  border-radius: 5px;
  background-color: #ffffff;
  height: 40px;
  font-weight: 300;
  font-size: 16px;
  padding-right: 30px;
  border-color: #e1e1e1;
  color: #777777;
  position: relative;
  -webkit-appearance: none;
  -webkit-box-shadow: inset 0 1px 2px rgb(0 0 0 / 8%);
  box-shadow: inset 0 1px 2px rgb(0 0 0 / 8%);
}

.form-control:focus {
  border-color: #dbdbdb !important;
  box-shadow: inset 0 1px 5px rgb(0 0 0 / 10%) !important;
}

/* news2 */
.news2_list .num {
  padding: 0.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  counter-increment: chapter;
}

.news2_list .num:before {
  font-size: 4rem;
  font-weight: bold;
  color: #000;
  width: 2rem;
  opacity: 0.05;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  content: counter(chapter) ".";
}

.news2_list .num h3 {
  position: relative;
  left: -1.5rem;
  color: #4d4d4d;
  font-size: 1.3rem;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.news2_list .num .news_tag {
  position: relative;
  left: -1.2rem;
  color: #3d3d3dc4;
  font-size: 0.3rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.news2_list .num:hover {
  background-color: #fafafa;
  cursor: pointer;
}

.news2_list .num:hover:before {
  opacity: 0.2;
  font-size: 4.5rem;
}

.news2_list .num:hover h3 {
  left: 2.3rem;
}

.news2_list .num:hover .news_tag {
  left: 2.4rem;
}

.news2-title {
  position: relative;
  margin: 0 -15px 8px;
  padding: 35px 20px 20px 70px;
  letter-spacing: 2px;
  font-size: 24px;
  border-bottom: 1px solid transparent;
  line-height: 1.5;
}

.news2-date {
  position: absolute;
  width: 42px;
  height: 67px;
  line-height: 20px;
  color: #c1c1c1;
  font-size: 12px;
  text-align: center;
  left: 25px;
  top: 0;
  z-index: 15;
  letter-spacing: 0.35px;
}

.news2-date small {
  color: #AAAAAA;
  font-size: 15px;
  position: absolute;
  left: 100%;
  top: 0;
  margin: 12px 0 0 15px;
}

.news2-date b {
  font-size: 25px;
  color: #FFF;
  display: block;
  -webkit-transition: all .2s;
  transition: all .2s;
  margin: 25px 0 0 0;
}

.news2-date b::before {
  content: "|";
  position: absolute;
  top: -10px;
  left: 40%;
  color: #ccc;
}

@media (max-width: 767px) {
  .news2_list .num {
    padding: 0.5rem 1rem;
  }

  .news2_list .num h3 {
    font-size: 1rem;
    left: 1.8rem;
  }

  .news2_list .num .news_tag {
    left: 2.5rem;
  }

  .news2-title {
    padding: 85px 20px 20px;
    margin-bottom: 3px;
  }

  .news2-date small {
    font-size: 17px;
    top: 30px;
  }
}

/* news */
.news_box {
  width: 50%;
  padding: 0px 30px;
  display: inline-block;
  float: left;
}

@media (max-width: 767px) {
  .news_box {
    width: 100%;
    display: inline-block;
  }
}

/* links */
.link-box:hover {
  -webkit-transform: translateY(-5%);
  transform: translateY(-5%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/*------------- 6. all_pagetitle ------------- */
/* title */
.pageTitle {
  font-size: 27px;
  color: #777;
  letter-spacing: 2px;
  font-weight: 300;
  line-height: 1em;
  margin: 0 0 .3em 0;
}

.breadcrumb_tit:before {
  content: "";
  width: 80px;
  height: 1px;
  background: #ddd;
  position: absolute;
  top: 17px;
  right: 100%;
}

@media (max-width: 767px) {
  .breadcrumb_tit {
    opacity: 0;
    visibility: hidden;
  }
}

.d-inline {
  display: inline;
}

/*-----------  footer ------------  */
.subfooter {
  background-color: #999999;
}

.marble_bg {
  background-image: url(../images/marble_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* 語言切換 */
.switch {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.current {
  text-transform: uppercase;
  height: 42px;
  position: relative;
  z-index: 1;
  font-size: 1rem;
  text-align: center;
  line-height: 42px;
  display: flex;
  background-color: rgba(156, 156, 156, 0.404);
  transition: all 0.2s ease-out;
  border-radius: 3px;
  padding: 0 0.2em 0 0.7em;
}

.current span {
  display: inline-block;
  line-height: 1;
  padding: 0.7em 0.2em 0 0;
  color: rgb(100, 100, 100);
  font-weight: 600;
}

.current .arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.current:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.options {
  position: absolute;
  left: 0;
  top: 0em;
  z-index: 0;
  opacity: 0;
  transition: all 0.36s ease-out;
  display: none;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.switch.show-options .options {
  display: block;
  z-index: 5;
}

.switch.anim-options .options {
  opacity: 1;
}

.switch.show-shadow .options {
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.4);
}

.options-list {
  margin: 0;
  padding: 0.4rem 0.8em;
  position: relative;
  z-index: 5;
}

.options-list li {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0.5em 0.75em;
  border-bottom: 1px solid #E1E4E6;
  transform: translateX(10px);
  transition: all 0.24s ease-out;
  transition-delay: 0.1s;
  opacity: 0;
  font-size: 1rem;
  line-height: 1.3;
  white-space: nowrap;
  color: var(--domin-red)
}

.options-list li:last-child {
  border-bottom: none;
}

.options-list li:nth-child(1) {
  transition-delay: 0.1s;
}

.options-list li:nth-child(2) {
  transition-delay: 0.15s;
}

.options-list li:nth-child(3) {
  transition-delay: 0.2s;
}

.switch.anim-options .options-list li {
  transform: translateX(0);
  opacity: 1;
}

#trans-circle {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -80px;
  right: -80px;
  padding: 0;
  margin: 0;
  border: none;
  z-index: 1;
  transition: all 0.4s ease-out;
  transform: scale(0.5);
  overflow: hidden;
}

#trans-circle svg {
  max-width: 100%;
  max-height: 100%;
}

.switch.anim-options #trans-circle {
  transform: scale(9);
}

/* 202111月end */