@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: "NotoSansCJKtc-Bold";
  src: local("NotoSansCJKtc"), url("fonts/NotoSansCJKtc-Bold.otf") format("OpenType");
  font-display: swap;
}
@font-face {
  font-family: "DMSans-Bold";
  src: local("NotoSansCJKtc"), url("fonts/DMSans-Bold.ttf") format("OpenType");
  font-display: swap;
}
html {
  width: 100%;
}

body {
  font-family: "微軟正黑體";
  line-height: 1.5;
  color: #2F2E2E;
  overflow-x: hidden;
  width: 100%;
  background-color: #f3f0f0;
  font-size: 20px;
  height: 100%;
  min-height: 100vh;
  position: relative;
}
body.menu-open {
  overflow: hidden;
}
body.fozen {
  height: 100vh;
  overflow: hidden;
}
body.fozen header {
  -webkit-transform: translateY(-91px);
          transform: translateY(-91px);
  opacity: 0;
  -webkit-transition: opacity 1s 2.5s ease;
  transition: opacity 1s 2.5s ease;
}
body.fozen .banner-text {
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 2s ease;
  transition: 2s ease;
}
body p {
  line-height: 1.8;
}
body.fozen.in {
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
}
body.fozen.in header {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}
body.fozen.in .banner-text {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(204, 204, 204, 0.075);
  background-color: transparent;
}
body::-webkit-scrollbar {
  width: 6px;
  background-color: rgba(214, 214, 214, 0.356);
}
body::-webkit-scrollbar-thumb {
  background-color: #868686;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #2F2E2E;
}
a:hover {
  color: #FD9264;
}

.index-about p {
  text-align: center;
  margin-bottom: 20px;
}

.textture {
  background-image: url(../images/p0017_m.jpg);
  width: 100%;
  height: 100vh;
  position: fixed;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 2;
  top: 0;
  left: 0;
}

header {
  position: fixed;
  width: 100%;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  z-index: 10;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
  padding: 24px 80px;
}
header:hover {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 10px rgba(17, 17, 17, 0.2);
          box-shadow: 0px 5px 10px rgba(17, 17, 17, 0.2);
}
header.bgwhite {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 10px rgba(17, 17, 17, 0.2);
          box-shadow: 0px 5px 10px rgba(17, 17, 17, 0.2);
}
header.bgwhite .menu a {
  color: #333;
}
header.bgwhite .bar {
  background-color: #333;
}
header.bgwhite .bar::after, header.bgwhite .bar::before {
  background-color: #333;
}

.container-lg {
  margin: auto;
}

.logo {
  width: 300px;
  z-index: 4;
  letter-spacing: 1px;
}
.logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo a:hover {
  color: #111;
}
.logo span {
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: bold;
  padding-left: 10px;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu {
  font-family: "DMSans-Bold", "NotoSansCJKtc-Bold", "微軟正黑體";
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu li {
  display: inline-block;
  position: relative;
}
.menu li:after {
  content: "";
  width: 1%;
  display: inline-block;
  height: 2px;
  position: absolute;
  bottom: -10px;
  left: 0px;
}
.menu li a {
  border-bottom: 1px solid transparent;
  padding: 10px 12px;
  font-weight: bold;
}
.menu li .sub {
  display: none;
  background-color: #fff;
  border-radius: 8px;
  padding: 8px;
  -webkit-box-shadow: 0 0 15px rgba(17, 17, 17, 0.1725490196);
          box-shadow: 0 0 15px rgba(17, 17, 17, 0.1725490196);
}
.menu li .sub li {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .menu li .svg {
    display: none;
  }
  .menu li:hover .sub {
    display: block;
    position: absolute;
    top: 40px;
    left: 0;
    width: 250px;
  }
}
.menu a:hover {
  text-decoration: none;
}

.m-img {
  display: none;
}

.menu li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: relative;
  left: 5px;
  top: 15px;
  border: 3px solid #757175;
  display: block;
  border-radius: 100%;
  opacity: 0;
}

.menu li:hover::before {
  left: 1px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.mb-menu-list {
  display: none;
}

.menu-bar-btn {
  position: relative;
  top: -15px;
  width: 48px;
  height: 48px;
  border-color: transparent;
  border-radius: 23px;
  outline: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: none;
  text-align: center;
  padding-top: 10px;
}
.menu-bar-btn .bar {
  position: relative;
  display: block;
  margin: auto;
  top: 12px;
  width: 24px;
  height: 2px;
  background-color: #030303;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 2px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.menu-bar-btn .bar::after, .menu-bar-btn .bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 24px;
  height: 2px;
  background-color: #030303;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
          transition-delay: 0.3s, 0s;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}
.menu-bar-btn .bar::after {
  top: 8px;
}
.menu-bar-btn .bar.active {
  background: transparent;
}
.menu-bar-btn .bar.active::after, .menu-bar-btn .bar.active::before {
  top: 0;
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}
.menu-bar-btn .bar.active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu-bar-btn .bar.active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header-icon a, .header-icon svg {
  margin-left: 8px;
}

.bannerArea {
  font-family: "DMSans-Bold", "NotoSansCJKtc-Bold", "微軟正黑體";
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  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;
  overflow: hidden;
  height: 100vh;
}
.bannerArea .scrollDown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 10px;
  width: 45px;
  height: 45px;
  padding: 15px;
  z-index: 2;
}
.bannerArea .skip {
  position: absolute;
  bottom: 10px;
  z-index: 100;
  padding: 4px 8px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 3px 4px #111;
          box-shadow: 3px 4px #111;
  border: 1px solid #111;
  right: 24px;
  bottom: 24px;
}
.bannerArea .skip:hover {
  color: #111;
  background-color: #FD9264;
  text-decoration: none;
  cursor: pointer;
}
.bannerArea.in .banner-text {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: 0.4s 0.3s ease-in;
  transition: 0.4s 0.3s ease-in;
}
.bannerArea.in #tunnel {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mb-menu-list {
  display: none;
}

#tunnel, #indexVideo {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: -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;
}

iframe, video {
  z-index: 2;
}

#tunnel {
  height: 100%;
  background-image: url("../images/PlanB-1.jpg");
  background-size: cover;
  background-position: center center;
  opacity: 0;
}

.circle {
  position: absolute;
  width: 2500px;
  height: 2500px;
  border-radius: 100%;
  border: 1px solid #fff;
  background-color: #f2f2f2;
  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;
  overflow: hidden;
}
.circle img {
  height: 100%;
}

.circle-center {
  width: 50px;
  height: 50px;
  z-index: 2;
  background-color: #fff;
}

.circle-bg {
  z-index: 1;
  width: 200px;
  height: 200px;
  display: none;
}

.zoomIn {
  -webkit-animation: hole 20s 0s ease-in-out;
          animation: hole 20s 0s ease-in-out;
}

@-webkit-keyframes hole {
  0% {
    width: 2500px;
    height: 2500px;
  }
  100% {
    width: 200px;
    height: 200px;
  }
}

@keyframes hole {
  0% {
    width: 2500px;
    height: 2500px;
  }
  100% {
    width: 200px;
    height: 200px;
  }
}
@-webkit-keyframes zoomInOut {
  0% {
    width: 50px;
    height: 50px;
  }
  100% {
    width: 100px;
    height: 100px;
  }
}
@keyframes zoomInOut {
  0% {
    width: 50px;
    height: 50px;
  }
  100% {
    width: 100px;
    height: 100px;
  }
}
.banner-text {
  position: absolute;
  bottom: 0;
  padding: 80px 80px 20px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#D94C38), to(rgba(255, 177, 153, 0)));
  background-image: linear-gradient(to top, #D94C38 0%, rgba(255, 177, 153, 0) 100%);
  width: 100%;
  color: #fff;
  text-align: center;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.banner-text h1 {
  font-size: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-text .banner-text-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 5px;
}
.banner-text .banner-text-bottom .JP {
  font-size: 36px;
}

.mb-banner-text {
  display: none;
}

.index-page-wrap {
  min-height: 100vh;
  background-color: #D94C38;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 120px;
}
.index-page-wrap .page-bg {
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: blur(2.3em);
          filter: blur(2.3em);
}
.index-page-wrap .page-title {
  font-family: "DMSans-Bold", "NotoSansCJKtc-Bold", "微軟正黑體";
  color: #aaeef7;
  font-size: 24px;
  margin-bottom: 10px;
}
.index-page-wrap .text {
  padding: 30px;
  text-align: justify;
  line-height: 1.8;
  color: #fff;
}

h3 {
  font-family: "DMSans-Bold", "NotoSansCJKtc-Bold", "微軟正黑體";
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.title-bg {
  position: relative;
  background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
  padding: 0 4px;
  color: #030303;
}
.title-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
  -webkit-animation: boxout 0.8s 0.4s forwards linear;
          animation: boxout 0.8s 0.4s forwards linear;
}

.jp-text {
  font-family: "DMSans-Bold", "NotoSansCJKtc-Bold", "微軟正黑體";
  color: #FFC107;
  font-size: 32px;
}

@-webkit-keyframes boxout {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes boxout {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.opticy5 {
  opacity: 0.2;
  pointer-events: none;
}

.box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
}
.box1 .img {
  width: 45%;
  text-align: center;
}
.box1 .img img {
  border-radius: 25px;
  border: 10px solid #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(17, 17, 17, 0.1215686275);
          box-shadow: 0 0 15px rgba(17, 17, 17, 0.1215686275);
  -webkit-transform: rotateZ(0deg);
          transform: rotateZ(0deg);
  max-height: 500px;
  width: auto;
  margin: auto;
}
.box1 .img:hover img {
  -webkit-transform: rotateZ(5deg);
          transform: rotateZ(5deg);
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}
.box1 .text {
  width: 55%;
}

.box2 {
  position: relative;
  background-color: #ffba6e;
  border-radius: 15px;
}
.box2 .img {
  width: 45%;
  text-align: center;
  z-index: 1;
}
.box2 .img img {
  max-height: 600px;
  width: auto;
  margin: auto;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}
.box2 .text {
  z-index: 1;
  color: #111;
  width: 100%;
}
.box2 .jp-text {
  color: #2769B3;
}
.box2 .box {
  position: relative;
  border-top: 1px solid #111;
}
.box2 .box .text {
  width: 100%;
}
.box2 .box h4 {
  font-family: "DMSans-Bold", "NotoSansCJKtc-Bold", "微軟正黑體";
  padding-right: 64px;
  font-size: 24px;
}

.box3 {
  margin-top: 24px;
  background-color: #2769B3;
  border-radius: 15px;
  -webkit-box-shadow: 3px 4px #111;
          box-shadow: 3px 4px #111;
  border: 1px solid #111;
}
.box3 .box {
  position: relative;
  border-bottom: 1px solid #b3bcd8;
}
.box3 .box .text {
  width: 100%;
}
.box3 .box h3 {
  padding-right: 64px;
}
.box3 .box:last-child {
  border: 0;
}

.toPost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 56px;
  height: 56px;
  top: 16px;
  right: 24px;
  background-color: #dadada;
  -webkit-box-shadow: 3px 4px #111;
          box-shadow: 3px 4px #111;
  border: 1px solid #111;
  border-radius: 100%;
}
.toPost img {
  -webkit-filter: brightness(7);
          filter: brightness(7);
  width: 50%;
}
.toPost:hover {
  background-color: #FD9264;
}

.link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 8px;
  background: #dadada;
  width: 120px;
  border-radius: 10px;
  font-size: smaller;
  margin-bottom: 20px;
}
.link img {
  width: 20px;
  margin-left: 4px;
}
.link img:hover {
  text-decoration: none;
}

.img-note {
  font-size: 14px;
  color: #888;
  margin-top: 20px;
}

:root {
  --gap: 150px;
  --duration: 30s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
  scroll-behavior: smooth;
}

.marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: var(--gap);
}
.marquee span {
  color: #aaeef7;
  font-size: 144px;
  font-family: "DMSans-Bold", "微軟正黑體";
}

.marquee--group {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: var(--gap);
  -webkit-animation: scroll-y var(--duration) linear infinite;
          animation: scroll-y var(--duration) linear infinite;
}

@-webkit-keyframes scroll-y {
  from {
    -webkit-transform: translateX(var(--scroll-start));
            transform: translateX(var(--scroll-start));
  }
  to {
    -webkit-transform: translateX(var(--scroll-end));
            transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    -webkit-transform: translateX(var(--scroll-start));
            transform: translateX(var(--scroll-start));
  }
  to {
    -webkit-transform: translateX(var(--scroll-end));
            transform: translateX(var(--scroll-end));
  }
}
.nowrap {
  white-space: nowrap;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.col-md-6 {
  width: 50%;
}

footer {
  width: 100%;
  background-color: #080808;
  color: #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 1px;
  padding: 32px 15px 16px;
  line-height: 30px;
  font-size: 14px;
}
footer .footer-social {
  position: absolute;
  top: 0px;
  right: 16px;
  width: 32px;
}
footer .footer-social img {
  width: 32px;
}
footer .container-lg {
  position: relative;
}
footer a {
  color: #ddd;
}
footer p {
  line-height: 2em;
  text-align: left;
  margin-bottom: 10px;
}
footer span {
  margin-right: 4px;
  font-size: 14px;
  white-space: nowrap;
}
footer .text {
  color: #2F2E2E;
  padding-bottom: 0px;
}
footer .footer-title {
  font-size: 24px;
  margin-bottom: 8px;
}
footer .info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .info li {
  margin: 5px 0;
  border-radius: 25px;
  margin-right: 16px;
  border-radius: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 30px;
}
footer .info li .ft-title {
  font-size: large;
  font-weight: 700;
}
footer .info a {
  font-size: 14px;
}
footer .footer-logo {
  height: 45px;
  width: auto;
  margin-right: 20px;
  margin-bottom: 8px;
}
footer .footer-nav a {
  padding: 4px 8px;
  font-size: 16px;
  letter-spacing: 2px;
  display: inline-block;
}
footer .social-icon {
  margin-bottom: 12px;
}
footer .social-icon a {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: inline-block;
}
footer .footer-bottom {
  padding-bottom: 8px;
  padding-top: 8px;
  font-size: 14px;
  color: #888;
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
}

.navigation a {
  padding: 0px 15px;
}

.footer-nav {
  padding: 0;
}

.footer-col-1 {
  margin-bottom: 20px;
}

.list-info {
  background-color: #ffffff;
  margin-bottom: 30px;
}
.list-info img {
  width: 55px;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 1320px;
  }
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 18px;
  }
  header {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 1200px) {
  .box2::before {
    height: 100%;
  }
  .mb-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 101;
  }
  .nav-menu {
    position: fixed;
    top: 0px;
    right: 0;
    padding-top: 120px;
    display: block;
    height: 100vh;
    width: 250px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 100;
  }
  .nav-menu.in {
    background: #fff;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-box-shadow: -5px 6px 7px rgba(169, 169, 169, 0.35);
            box-shadow: -5px 6px 7px rgba(169, 169, 169, 0.35);
  }
  .menu {
    display: block;
    padding-left: 0px;
  }
  .menu li {
    width: 100%;
  }
  .menu li.has-sub {
    position: relative;
  }
  .menu li img.svg {
    position: absolute;
    width: 50px;
    top: 14px;
    right: 14px;
    opacity: 0.8;
    padding: 15px;
  }
  .menu li .sub.open {
    display: block;
    position: relative;
    width: 100%;
    top: 0px;
    background-color: #f2f2f2;
  }
  .menu li .sub.open li::before {
    display: none;
  }
  .menu li::before {
    top: 31px;
    left: 40px;
    width: 16px;
    height: 16px;
    border: 6px solid #D94C38;
    display: block;
  }
  .menu li:hover::before {
    left: 33px;
  }
  .menu a {
    text-align: center;
    display: block;
    border-bottom: 1px solid transparent;
    padding: 10px 12px;
    font-weight: bold;
    text-align: left;
    margin-left: 51px;
  }
  .menu > a:hover {
    color: 0;
    border-bottom: 0;
  }
  .menu li:after {
    display: none;
  }
  .banner-text h1, .banner-text .banner-text-bottom {
    display: none;
  }
  .banner-text .mb-banner-text {
    display: block;
  }
  .page-bannner .banner-text h1 {
    font-size: 24px;
  }
  .page-bannner .banner-text .banner-text-bottom .JP {
    font-size: 32px;
  }
  .page-bannner .banner-text .banner-text-bottom h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  #indexVideo {
    width: 100%;
    height: 100% !important;
  }
  h3, .jp-text {
    font-size: 24px;
  }
  .box1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .box1 .img, .box1 .text {
    width: 100%;
  }
  .box2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .box2::before {
    width: 130%;
  }
  .box2 .text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .box2 .img {
    width: 100%;
  }
  .box2 .img img {
    height: 270px;
    position: absolute;
    -webkit-transform: translateY(-100px) translateX(141px);
            transform: translateY(-100px) translateX(141px);
  }
  .box2 .box h4 {
    font-size: 18px;
  }
  .marquee span {
    font-size: 104px;
  }
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .banner-text {
    padding: 80px 24px 20px;
  }
  .box2 .img {
    display: none;
  }
  .box3, .box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .box3 .img, .box3 .text, .box .img, .box .text {
    width: 100%;
  }
  .box3 .text:first-child, .box .text:first-child {
    padding-bottom: 0;
  }
  .box3 .text:nth-child(2), .box .text:nth-child(2) {
    padding-top: 0;
  }
  body.menu-open {
    height: 100vh;
    overflow: hidden;
  }
  .container-lg {
    width: 100%;
    padding: 0px 15px;
  }
  .col-md-6 {
    width: 100%;
  }
  .text {
    padding: 40px 0px;
    padding-top: 0px;
  }
  .t-en {
    font-size: 32px;
  }
  footer .footer-logo {
    height: 36px;
    width: auto;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  footer .info {
    display: block;
  }
  .contact {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .bannerArea {
    height: 90vh;
  }
  footer .col-md-4 img {
    max-width: 269px !important;
  }
}


#menu li:nth-child(6){display:none}

/*# sourceMappingURL=style.css.map */