@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400&display=swap");
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img {
  border: 0;
  display: block;
}

legend, hr {
  display: none;
}

th {
  font-style: inherit;
  font-weight: inherit;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
  text-decoration: none;
  cursor: pointer;
}

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

* {
  box-sizing: border-box;
}

/* main.css ==============================================*/
@font-face {
  font-family: "toyota_type";
  src: url("../font/toyotatype-regular-webfont.woff2") format("woff2"), url("../font/toyotatype-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "toyota_type";
  src: url("../font/toyotatype-bold-webfont.woff2") format("woff2"), url("../font/toyotatype-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: bold;
}
/*Variable*/
/*Mixin*/
/*Reset*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
  display: block;
}

.hide {
  display: none;
}

::selection {
  background: #000;
  color: #fff;
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

*:focus {
  outline: none;
}

a {
  color: #444;
  text-decoration: none;
  transition: color 0.4s;
}

a:hover {
  color: #004293;
}

*::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}

/*Body*/
#g-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: 1s;
  z-index: 101;
  text-align: center;
}
#g-loader .center {
  width: 100%;
  height: 150px;
  color: #000;
}
#g-loader .center p {
  font-size: 12px;
  letter-spacing: 5px;
  margin: 15px 0;
}
#g-loader .center .bar {
  width: 100%;
  height: 3px;
  background-color: #ccc;
  position: relative;
}
#g-loader .center .bar .move {
  width: 20%;
  height: 3px;
  background-color: #263f53;
  position: absolute;
  animation: bar-move 0.5s ease infinite;
}
@keyframes bar-move {
  0% {
    left: 0%;
    width: 0%;
  }
  50% {
    left: 40%;
    width: 20%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
#g-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

html {
  font-size: 1.3vw;
}

html.is-lock, body.is-lock {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.15rem;
  color: #000;
  font-family: "toyota_type", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  overflow-x: hidden;
  background: url(../img/bg-lines.png) center;
  background-color: #fff;
  text-align: left;
  text-align: justify;
}
body.lock {
  overflow: hidden;
}

* {
  -webkit-text-size-adjust: none;
          text-size-adjust: none;
}

.color-white {
  color: #fff !important;
}

.color-blue {
  color: #263f53 !important;
}

.color-red {
  color: #bd0a23 !important;
}

.color-yellow {
  color: #fdffcb !important;
}

.bg-blue {
  background-color: #263f53 !important;
}

.bg-red {
  background-color: #bd0a23 !important;
}

.bg-yellow {
  background-color: #fdffcb !important;
}

.btns {
  display: flex;
  justify-content: space-between;
}
.btns .g-bt {
  width: 48%;
}

.g-bt {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 2.2;
  border-radius: 0.5rem;
  cursor: pointer;
}
.g-bt:before {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
.g-bt.bg-blue:hover {
  background-color: #2d618b !important;
  color: #fff;
}
.g-bt.bg-red:hover {
  background-color: #e41c38 !important;
  color: #fff;
}
.g-bt.bg-yellow:hover {
  background-color: #f5ff86 !important;
  color: #fff;
}

.g-bt-border {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #bd0a23;
  border: 0.15rem solid #bd0a23;
  background-color: #fff;
  padding: 0 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
  border-radius: 50rem;
  cursor: pointer;
}
.g-bt-border:before {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.msg-box {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 0;
  transform: scale(1);
  perspective: 700px;
  pointer-events: none;
}
.msg-box.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 102;
  pointer-events: auto;
}
.msg-box .msg-wrap {
  background: #fff;
  max-width: 550px;
  width: 90%;
  height: 60%;
  max-width: 600px;
  max-height: 90%;
  position: relative;
  margin: 0 auto;
  top: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 30px;
  transform: scale(1) translate3d(0, -50%, 0);
  transform-style: preserve-3d;
  transition-delay: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.msg-box .msg-wrap > .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 5%;
  height: 0;
  padding-bottom: 5%;
  transition: 0.2s;
  background: url(../img/icon-close.svg?v2) #263f53 no-repeat center;
  background-size: 45%;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  transition-delay: 0.5s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}
.msg-box.is-active .msg-wrap {
  transform: scale(1) translate3d(0, -50%, 0);
  opacity: 1;
  visibility: visible;
}
.msg-box.is-active .msg-wrap > .close {
  transform: scale(1);
  opacity: 1;
}
.msg-box.is-active .msg-wrap > .close:hover {
  transform: rotate(90deg);
}
.msg-box .msg-content {
  overflow-y: auto;
  overflow-x: hidden;
  height: 95%;
  text-align: left;
  font-size: 20px;
  -webkit-overflow-scrolling: touch;
}
.msg-box .msg-content header {
  font-size: 40px;
  font-weight: bold;
}
.msg-box .msg-content img {
  max-width: 100%;
}
.msg-box .msg-content .bt {
  background-color: #000;
  border-radius: 10px;
  width: auto;
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
}
.msg-box .msg-content .bt:hover {
  background: #bd0a23;
  transition: 0.2s;
}

#msg-alert .msg-wrap {
  height: auto;
  min-height: 100px;
  max-width: 500px;
}
#msg-alert .msg-content {
  text-align: center;
}
#msg-alert .msg-content header {
  font-size: 30px;
  margin-bottom: 20px;
}

.counter {
  position: relative;
  height: 2vw;
  height: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.counter * {
  margin: 0;
  padding: 0;
}
.counter > div {
  position: relative;
  transform: translateY(-1000%);
  transition-timing-function: cubic-bezier(0, 0.575, 0.565, 1.05);
}
.counter > div:nth-child(1) {
  transition-duration: 1s;
}
.counter > div:nth-child(2) {
  transition-duration: 1.2s;
}
.counter > div:nth-child(3) {
  transition-duration: 1.4s;
}
.counter > div:nth-child(4) {
  transition-duration: 1.6s;
}
.counter > div:nth-child(5) {
  transition-duration: 1.8s;
}
.counter > div:nth-child(6) {
  transition-duration: 2s;
}
.counter > div:nth-child(7) {
  transition-duration: 2.2s;
}
.counter > div:nth-child(8) {
  transition-duration: 2.4s;
}
.counter > div:nth-child(9) {
  transition-duration: 2.6s;
}
.counter > div:nth-child(10) {
  transition-duration: 2.8s;
}
.counter > div > span {
  display: block;
  font-size: 40px;
  color: #fff;
  font-weight: normal;
  line-height: 1;
}
.counter > span {
  display: block;
  font-size: 40px;
  color: #fff;
  font-weight: normal;
  line-height: 1;
}
.counter.is-animate > div {
  transform: translateY(0);
}
.counter.delay200 > div:nth-child(1) {
  transition-duration: 1.4s;
}
.counter.delay200 > div:nth-child(2) {
  transition-duration: 1.6s;
}
.counter.delay200 > div:nth-child(3) {
  transition-duration: 1.8s;
}
.counter.delay400 > div:nth-child(1) {
  transition-duration: 1.8s;
}
.counter.delay400 > div:nth-child(2) {
  transition-duration: 2s;
}
.counter.delay400 > div:nth-child(3) {
  transition-duration: 2.2s;
}
.counter.delay600 > div:nth-child(1) {
  transition-duration: 2.2s;
}
.counter.delay600 > div:nth-child(2) {
  transition-duration: 2.4s;
}
.counter.delay600 > div:nth-child(3) {
  transition-duration: 2.6s;
}
.counter.delay800 > div:nth-child(1) {
  transition-duration: 2.6s;
}
.counter.delay800 > div:nth-child(2) {
  transition-duration: 2.8s;
}
.counter.delay800 > div:nth-child(3) {
  transition-duration: 3s;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: auto;
}

.owl-btn-prev,
.owl-btn-next {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 48%;
  z-index: 1;
  cursor: pointer;
  background-color: #000;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.4s;
  text-indent: -9999px;
}

.owl-btn-prev {
  left: 0;
  background-image: url(../img/if-prev-bold-fff.svg);
}

.owl-btn-next {
  right: 0;
  background-image: url(../img/if-next-bold-fff.svg);
}

#video-btn-prev, #video-btn-next {
  top: 300px;
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  margin-top: 10px;
}
.owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background-color: #bd0a23;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-nav [class*=owl-]:hover {
  background: #fff;
  color: #FFF;
  text-decoration: none;
}
.owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-nav.disabled + .owl-dots {
  margin-top: 17px;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 5px 15px;
  background-color: #bd0a23;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 50%;
  transition: 0.2s;
}
.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  background: #fff;
}

.video-item {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.video-item .video-iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
}
.video-item .video-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-item .video-iframe .video-thumb {
  position: absolute;
  overflow: hidden;
  float: left;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.2s;
  background-size: cover;
}
.video-item .video-iframe .video-thumb .video-btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: play-jump 0.5s infinite alternate;
  z-index: 2;
}
@keyframes play-jump {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.video-item .video-iframe .video-thumb.active {
  opacity: 0;
  visibility: hidden;
}
.video-item .video-iframe p {
  font-size: 15px;
}
.video-item .video-iframe:hover .img img {
  transform: scale(1.3);
}
.video-item .video-iframe:hover .img:before {
  opacity: 0;
}

.video-btn-play {
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  text-indent: -9999px;
  width: 5rem;
  height: 4rem;
  background: url(../img/icon-play.svg) no-repeat center;
  background-size: 100%;
}

.splitEffect {
  overflow: hidden;
  white-space: nowrap;
}
.splitEffect span {
  display: inline-block;
  transform: translateY(100%);
}
.splitEffect span:nth-of-type(1) {
  animation-delay: 0.03s !important;
}
.splitEffect span:nth-of-type(2) {
  animation-delay: 0.06s !important;
}
.splitEffect span:nth-of-type(3) {
  animation-delay: 0.09s !important;
}
.splitEffect span:nth-of-type(4) {
  animation-delay: 0.12s !important;
}
.splitEffect span:nth-of-type(5) {
  animation-delay: 0.15s !important;
}
.splitEffect span:nth-of-type(6) {
  animation-delay: 0.18s !important;
}
.splitEffect span:nth-of-type(7) {
  animation-delay: 0.21s !important;
}
.splitEffect span:nth-of-type(8) {
  animation-delay: 0.24s !important;
}
.splitEffect span:nth-of-type(9) {
  animation-delay: 0.27s !important;
}
.splitEffect span:nth-of-type(10) {
  animation-delay: 0.3s !important;
}
.splitEffect span:nth-of-type(11) {
  animation-delay: 0.33s !important;
}
.splitEffect span:nth-of-type(12) {
  animation-delay: 0.36s !important;
}
.splitEffect span:nth-of-type(13) {
  animation-delay: 0.39s !important;
}
.splitEffect span:nth-of-type(14) {
  animation-delay: 0.42s !important;
}
.splitEffect span:nth-of-type(15) {
  animation-delay: 0.45s !important;
}
.splitEffect span:nth-of-type(16) {
  animation-delay: 0.48s !important;
}
.splitEffect span:nth-of-type(17) {
  animation-delay: 0.51s !important;
}
.splitEffect span:nth-of-type(18) {
  animation-delay: 0.54s !important;
}
.splitEffect span:nth-of-type(19) {
  animation-delay: 0.57s !important;
}
.splitEffect span:nth-of-type(20) {
  animation-delay: 0.6s !important;
}
.splitEffect span:nth-of-type(21) {
  animation-delay: 0.63s !important;
}
.splitEffect span:nth-of-type(22) {
  animation-delay: 0.66s !important;
}
.splitEffect span:nth-of-type(23) {
  animation-delay: 0.69s !important;
}
.splitEffect span:nth-of-type(24) {
  animation-delay: 0.72s !important;
}
.splitEffect span:nth-of-type(25) {
  animation-delay: 0.75s !important;
}
.splitEffect span:nth-of-type(26) {
  animation-delay: 0.78s !important;
}
.splitEffect span:nth-of-type(27) {
  animation-delay: 0.81s !important;
}
.splitEffect span:nth-of-type(28) {
  animation-delay: 0.84s !important;
}
.splitEffect span:nth-of-type(29) {
  animation-delay: 0.87s !important;
}
.splitEffect span:nth-of-type(30) {
  animation-delay: 0.9s !important;
}
.splitEffect.is-animate span {
  animation: se1 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes se1 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.splitEffect.is-animate.delay200 span:nth-of-type(1) {
  animation-delay: 0.23s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(2) {
  animation-delay: 0.26s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(3) {
  animation-delay: 0.29s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(4) {
  animation-delay: 0.32s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(5) {
  animation-delay: 0.35s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(6) {
  animation-delay: 0.38s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(7) {
  animation-delay: 0.41s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(8) {
  animation-delay: 0.44s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(9) {
  animation-delay: 0.47s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(10) {
  animation-delay: 0.5s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(11) {
  animation-delay: 0.53s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(12) {
  animation-delay: 0.56s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(13) {
  animation-delay: 0.59s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(14) {
  animation-delay: 0.62s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(15) {
  animation-delay: 0.65s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(16) {
  animation-delay: 0.68s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(17) {
  animation-delay: 0.71s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(18) {
  animation-delay: 0.74s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(19) {
  animation-delay: 0.77s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(20) {
  animation-delay: 0.8s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(21) {
  animation-delay: 0.83s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(22) {
  animation-delay: 0.86s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(23) {
  animation-delay: 0.89s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(24) {
  animation-delay: 0.92s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(25) {
  animation-delay: 0.95s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(26) {
  animation-delay: 0.98s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(27) {
  animation-delay: 1.01s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(28) {
  animation-delay: 1.04s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(29) {
  animation-delay: 1.07s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(30) {
  animation-delay: 1.1s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(1) {
  animation-delay: 0.43s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(2) {
  animation-delay: 0.46s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(3) {
  animation-delay: 0.49s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(4) {
  animation-delay: 0.52s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(5) {
  animation-delay: 0.55s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(6) {
  animation-delay: 0.58s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(7) {
  animation-delay: 0.61s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(8) {
  animation-delay: 0.64s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(9) {
  animation-delay: 0.67s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(10) {
  animation-delay: 0.7s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(11) {
  animation-delay: 0.73s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(12) {
  animation-delay: 0.76s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(13) {
  animation-delay: 0.79s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(14) {
  animation-delay: 0.82s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(15) {
  animation-delay: 0.85s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(16) {
  animation-delay: 0.88s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(17) {
  animation-delay: 0.91s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(18) {
  animation-delay: 0.94s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(19) {
  animation-delay: 0.97s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(20) {
  animation-delay: 1s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(21) {
  animation-delay: 1.03s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(22) {
  animation-delay: 1.06s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(23) {
  animation-delay: 1.09s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(24) {
  animation-delay: 1.12s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(25) {
  animation-delay: 1.15s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(26) {
  animation-delay: 1.18s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(27) {
  animation-delay: 1.21s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(28) {
  animation-delay: 1.24s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(29) {
  animation-delay: 1.27s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(30) {
  animation-delay: 1.3s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(1) {
  animation-delay: 0.63s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(2) {
  animation-delay: 0.66s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(3) {
  animation-delay: 0.69s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(4) {
  animation-delay: 0.72s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(5) {
  animation-delay: 0.75s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(6) {
  animation-delay: 0.78s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(7) {
  animation-delay: 0.81s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(8) {
  animation-delay: 0.84s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(9) {
  animation-delay: 0.87s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(10) {
  animation-delay: 0.9s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(11) {
  animation-delay: 0.93s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(12) {
  animation-delay: 0.96s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(13) {
  animation-delay: 0.99s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(14) {
  animation-delay: 1.02s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(15) {
  animation-delay: 1.05s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(16) {
  animation-delay: 1.08s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(17) {
  animation-delay: 1.11s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(18) {
  animation-delay: 1.14s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(19) {
  animation-delay: 1.17s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(20) {
  animation-delay: 1.2s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(21) {
  animation-delay: 1.23s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(22) {
  animation-delay: 1.26s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(23) {
  animation-delay: 1.29s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(24) {
  animation-delay: 1.32s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(25) {
  animation-delay: 1.35s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(26) {
  animation-delay: 1.38s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(27) {
  animation-delay: 1.41s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(28) {
  animation-delay: 1.44s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(29) {
  animation-delay: 1.47s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(30) {
  animation-delay: 1.5s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(1) {
  animation-delay: 0.83s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(2) {
  animation-delay: 0.86s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(3) {
  animation-delay: 0.89s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(4) {
  animation-delay: 0.92s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(5) {
  animation-delay: 0.95s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(6) {
  animation-delay: 0.98s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(7) {
  animation-delay: 1.01s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(8) {
  animation-delay: 1.04s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(9) {
  animation-delay: 1.07s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(10) {
  animation-delay: 1.1s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(11) {
  animation-delay: 1.13s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(12) {
  animation-delay: 1.16s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(13) {
  animation-delay: 1.19s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(14) {
  animation-delay: 1.22s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(15) {
  animation-delay: 1.25s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(16) {
  animation-delay: 1.28s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(17) {
  animation-delay: 1.31s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(18) {
  animation-delay: 1.34s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(19) {
  animation-delay: 1.37s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(20) {
  animation-delay: 1.4s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(21) {
  animation-delay: 1.43s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(22) {
  animation-delay: 1.46s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(23) {
  animation-delay: 1.49s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(24) {
  animation-delay: 1.52s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(25) {
  animation-delay: 1.55s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(26) {
  animation-delay: 1.58s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(27) {
  animation-delay: 1.61s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(28) {
  animation-delay: 1.64s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(29) {
  animation-delay: 1.67s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(30) {
  animation-delay: 1.7s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(1) {
  animation-delay: 1.03s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(2) {
  animation-delay: 1.06s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(3) {
  animation-delay: 1.09s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(4) {
  animation-delay: 1.12s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(5) {
  animation-delay: 1.15s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(6) {
  animation-delay: 1.18s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(7) {
  animation-delay: 1.21s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(8) {
  animation-delay: 1.24s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(9) {
  animation-delay: 1.27s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(10) {
  animation-delay: 1.3s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(11) {
  animation-delay: 1.33s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(12) {
  animation-delay: 1.36s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(13) {
  animation-delay: 1.39s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(14) {
  animation-delay: 1.42s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(15) {
  animation-delay: 1.45s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(16) {
  animation-delay: 1.48s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(17) {
  animation-delay: 1.51s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(18) {
  animation-delay: 1.54s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(19) {
  animation-delay: 1.57s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(20) {
  animation-delay: 1.6s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(21) {
  animation-delay: 1.63s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(22) {
  animation-delay: 1.66s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(23) {
  animation-delay: 1.69s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(24) {
  animation-delay: 1.72s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(25) {
  animation-delay: 1.75s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(26) {
  animation-delay: 1.78s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(27) {
  animation-delay: 1.81s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(28) {
  animation-delay: 1.84s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(29) {
  animation-delay: 1.87s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(30) {
  animation-delay: 1.9s !important;
}

.owl-btn-prev.is-lock,
.owl-btn-next.is-lock {
  background-color: #999;
  pointer-events: none;
  border: 1px solid #ccc;
}

#g-gotop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  cursor: pointer;
  transition: 0.2s;
  background: url(../img/icon-up-fff.svg) no-repeat center #bd0a23;
  background-size: 50%;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
  text-indent: -9999px;
  opacity: 0;
  visibility: hidden;
}
#g-gotop:hover {
  background-color: #263f53;
  background-position: center 30%;
}
#g-gotop.active {
  opacity: 1;
  visibility: visible;
}

.tns-outer {
  position: relative;
}

.tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
  position: absolute;
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  background-color: transparent;
  z-index: 3;
  text-indent: -9999px;
  border: 0;
  transform: translateY(-50%);
  background-color: #263f53;
  cursor: pointer;
}
.tns-controls button:hover, .tns-controls div:hover, .tns-cus-controls button:hover, .tns-cus-controls div:hover {
  background-color: #263f53;
}
.tns-controls button:active, .tns-controls div:active, .tns-cus-controls button:active, .tns-cus-controls div:active {
  background-color: #bd0a23;
}
.tns-controls button:nth-of-type(1), .tns-controls div:nth-of-type(1), .tns-cus-controls button:nth-of-type(1), .tns-cus-controls div:nth-of-type(1) {
  left: 0;
  background-image: url(../img/icon-left-fff.svg);
}
.tns-controls button:nth-of-type(2), .tns-controls div:nth-of-type(2), .tns-cus-controls button:nth-of-type(2), .tns-cus-controls div:nth-of-type(2) {
  right: 0;
  background-image: url(../img/icon-right-fff.svg);
}

.tns-nav {
  width: 100%;
  text-align: center;
}
.tns-nav button {
  width: 1rem;
  height: 1rem;
  border: 0;
  margin: 0.2rem;
  position: relative;
  background-color: transparent;
}
.tns-nav button:before, .tns-nav button:after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background-color: #ddd;
  border-radius: 50rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.tns-nav button:after {
  transform: translate(-50%, -50%) scale(0);
}
.tns-nav button:hover:before, .tns-nav button:hover:after {
  background-color: #263f53;
}
.tns-nav button.tns-nav-active:after {
  background-color: #bd0a23;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

.tns-controls {
  text-align: center;
}

#g-wrap {
  width: 100%;
  position: relative;
  margin: 0 auto;
  position: relative;
  background-size: 100%;
  overflow: hidden;
}
#g-wrap img {
  max-width: 100%;
}

.g-section {
  position: relative;
}
.g-section header h2 {
  font-size: 3.3rem;
  font-weight: bold;
}
.g-section h3 {
  font-size: 2.5rem;
}
#g-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.7rem 7.5rem;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  transition: padding 0.5s;
}
#g-header.active {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 7.5rem;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
}

#g-logo {
  width: 12.1rem;
  display: block;
}

#g-nav-trigger {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  background-color: #263f53;
  border-radius: 0.4rem;
  position: relative;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
  transform-origin: 100% 0;
  display: none;
  z-index: 10;
}
#g-nav-trigger span {
  width: 1.2rem;
  height: 0.1rem;
  background: #fff;
  position: absolute;
  left: 20%;
  transition: 0.4s;
}
#g-nav-trigger span:nth-of-type(1) {
  top: 25%;
  transform-origin: 0 0;
}
#g-nav-trigger span:nth-of-type(2) {
  top: 45%;
}
#g-nav-trigger span:nth-of-type(3) {
  top: 65%;
  transform-origin: 0 100%;
}
#g-nav-trigger.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(0.1rem, -0.1rem);
}
#g-nav-trigger.active span:nth-of-type(2) {
  transform: scale(0);
}
#g-nav-trigger.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(0.1rem, 0.12rem);
}

#g-nav ol {
  display: flex;
}
#g-nav li {
  margin-left: 0.9rem;
}
#g-nav li.is-important a {
  background: linear-gradient(to bottom, transparent 70%, #fdffcb 70.1%);
  border-radius: 0;
}
#g-nav a {
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 0 0.3rem;
  min-width: 6.5rem;
  background: #263f53;
  border-radius: 0.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#g-nav a:hover {
  background-color: #2d618b;
}
#g-nav a.active {
  background-color: #bd0a23;
  pointer-events: none;
}
#g-nav [class^=icon-nav-] {
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon-nav.svg);
  background-size: 300%;
  display: inline-block;
  margin-right: 0.2rem;
}
#g-nav .icon-nav-1 {
  background-position: 0 0;
}
#g-nav .icon-nav-2 {
  background-position: 50% 0;
}
#g-nav .icon-nav-3 {
  background-position: 100% 0;
}
#g-nav .sub {
  display: none;
}

#aside-nav {
  position: fixed;
  top: 50%;
  right: 3%;
  transform: translateY(-45%);
  z-index: 5;
  filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.5));
}
#aside-nav li {
  padding: 0.2rem;
  background-color: #fff;
  border-radius: 50%;
  margin-bottom: -0.2rem;
  position: relative;
}
#aside-nav li:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #bd0a23;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.4s;
}
#aside-nav li:after {
  content: "";
  width: 2.4rem;
  height: 0.6rem;
  width: 2rem;
  background: url(../img/icon-aside-patch.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 92%;
  top: 91%;
  left: 27%;
}
#aside-nav li:last-child:after {
  display: none;
}
#aside-nav li:hover:before, #aside-nav li.active:before {
  transform: scale(0.9);
  transition: 0.2s;
}
#aside-nav li:hover a, #aside-nav li.active a {
  color: #fff;
}
#aside-nav li.is-important {
  background-color: #fff679;
}
#aside-nav li.is-important a {
  border-color: #263f53;
}
#aside-nav li.is-important a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -0.075rem;
  left: -0.075rem;
  z-index: 10;
  border: 0.15rem solid #fff679;
  border-top: 0.15rem solid transparent;
  border-bottom: 0.15rem solid transparent;
  border-radius: 50%;
  animation: rotate_360 1s linear infinite;
}
@keyframes rotate_360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#aside-nav a {
  width: 4.7rem;
  height: 4.7rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.15rem solid #bd0a23;
  display: block;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  font-size: 1.2rem;
  font-size: 1rem;
  text-align: center;
  color: #263f53;
}

.bt-pie-yellow {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  padding: 0.2rem;
  position: relative;
}
.bt-pie-yellow:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #263f53;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.4s;
}
.bt-pie-yellow a {
  width: 4.7rem;
  height: 4.7rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.15rem solid #263f53;
  display: block;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  font-size: 1.2rem;
  font-size: 1rem;
  text-align: center;
  color: #263f53;
}
.bt-pie-yellow:hover:before {
  transform: scale(0.9);
  transition: 0.2s;
}
.bt-pie-yellow:hover a {
  color: #fff;
}

.icon-arrow {
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/icon-arrow.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
}

.icon-star {
  width: 2.7rem;
  height: 2.7rem;
  background: url(../img/icon-star.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
}

[class^=bg-flower-] {
  width: 80.5rem;
  height: 75.7rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
}

[class^=bg-flower-grey] {
  background-image: url(../img/bg-flower-grey.svg);
}

[class^=bg-flower-yellow] {
  background-image: url(../img/bg-flower-yellow.svg);
}

[class^=bg-flower-red] {
  background-image: url(../img/bg-flower-red.svg);
}

[class^=bg-flower-blue] {
  background-image: url(../img/bg-flower-blue.svg);
}

[class^=bg-char] {
  width: 15.5rem;
  height: 24.9rem;
  background: url(../img/bg-char.png) no-repeat;
  background-size: 400%;
  display: block;
  position: absolute;
  z-index: 2;
}
[class^=bg-char][class^=bg-char-1] {
  background-position: 0 0;
}
[class^=bg-char][class^=bg-char-2] {
  background-position: 33.3% 0;
}
[class^=bg-char][class^=bg-char-3] {
  background-position: 66.6% 0;
}
[class^=bg-char][class^=bg-char-4] {
  background-position: 100% 0;
}

[class^=bg-pie] {
  width: 18rem;
  height: 18rem;
  background: url(../img/bg-pie.png) no-repeat;
  background-size: 300%;
  display: block;
  position: absolute;
  z-index: 2;
}
[class^=bg-pie].bg-pie-1 {
  background-position: 0 0;
}
[class^=bg-pie].bg-pie-2 {
  background-position: 50% 0;
}
[class^=bg-pie].bg-pie-3 {
  background-position: 100% 0;
}

[class^=bg-dots] {
  width: 19.5rem;
  height: 15.9rem;
  background: url(../img/bg-dots.png) no-repeat;
  background-size: 300%;
  display: block;
  position: absolute;
  z-index: 2;
}
[class^=bg-dots].bg-dots-1 {
  background-position: 0 0;
}
[class^=bg-dots].bg-dots-2 {
  background-position: 50% 0;
}
[class^=bg-dots].bg-dots-3 {
  background-position: 100% 0;
}

[class^=bg-math-] {
  position: absolute;
  font-style: normal;
}
[class^=bg-math-]:nth-of-type(1) {
  animation-delay: -0.2s;
}
[class^=bg-math-]:nth-of-type(2) {
  animation-delay: -0.4s;
}
[class^=bg-math-]:nth-of-type(3) {
  animation-delay: -0.6s;
}
[class^=bg-math-]:nth-of-type(4) {
  animation-delay: -0.8s;
}
[class^=bg-math-]:nth-of-type(5) {
  animation-delay: -1s;
}
[class^=bg-math-]:nth-of-type(6) {
  animation-delay: -1.2s;
}
[class^=bg-math-]:nth-of-type(7) {
  animation-delay: -1.4s;
}
[class^=bg-math-]:nth-of-type(8) {
  animation-delay: -1.6s;
}
[class^=bg-math-]:nth-of-type(9) {
  animation-delay: -1.8s;
}
[class^=bg-math-]:nth-of-type(10) {
  animation-delay: -2s;
}

[class^=bg-math-o-] {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 0.3rem solid #c6c6c6;
}
[class^=bg-math-o-][class^=bg-math-o-red] {
  border-color: #e06b7c;
}

[class^=bg-math-r-] {
  position: absolute;
  transform: rotate(-30deg);
  animation: bg_math_r_move 2s linear infinite alternate;
}
@keyframes bg_math_r_move {
  0% {
    transform: scale(0.5, 1) rotate(-15deg);
  }
  100% {
    transform: scale(1, 1) rotate(-30deg);
  }
}
[class^=bg-math-r-]:before {
  content: "=";
  font-size: 3rem;
  color: #c6c6c6;
}
[class^=bg-math-r-][class^=bg-math-r-red]:before {
  color: #e06b7c;
}

[class^=bg-math-a-] {
  transform: rotate(-30deg);
  animation: bg_math_a_move 2s ease-in-out infinite alternate;
}
@keyframes bg_math_a_move {
  0% {
    transform: translate(-0.5rem, 0.5rem) rotate(-30deg) scale(0.9);
  }
  100% {
    transform: translate(0.5rem, -0.5rem) rotate(-30deg) scale(1.1);
  }
}
[class^=bg-math-a-]:before {
  content: ">>";
  font-family: "Noto Sans TC";
  font-size: 2rem;
  color: #c6c6c6;
  letter-spacing: -0.5rem;
  transform: scale(1, 2);
  display: block;
}
[class^=bg-math-a-][class^=bg-math-a-red]:before {
  color: #e06b7c;
}

[class^=bg-math-p-] {
  transform: rotate(-30deg);
  transform-origin: 50% 53%;
  animation: bg_math_p_move 2s linear infinite;
}
@keyframes bg_math_p_move {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
[class^=bg-math-p-]:before {
  content: "+";
  font-size: 3rem;
  color: #c6c6c6;
}
[class^=bg-math-p-][class^=bg-math-p-red]:before {
  color: #e06b7c;
}

.page-index {
  background-size: 100%;
}
.page-index .bg-flower-grey-1 {
  top: -50%;
  left: -50.5%;
}
.page-index .bg-flower-grey-2 {
  top: 39.1%;
  left: -24.2%;
  width: 60rem;
  transform: rotate(-33deg);
}
.page-index .bg-flower-red-1 {
  top: 26.6%;
  left: 9.9%;
}
.page-index .bg-char-2 {
  top: 7.6%;
  left: 70.4%;
}
.page-index .bg-char-3 {
  top: 45.6%;
  left: 36.4%;
  transform: scale(-0.85, 0.85) rotate(7deg);
}
.page-index .bg-char-4 {
  top: 18.9%;
  left: 8.6%;
  transform: scale(-0.88, 0.88);
}
.page-index .bg-pie-2 {
  top: 19.3%;
  left: 10.9%;
}
.page-index #kv {
  height: 36rem;
  color: #263f53;
}
.page-index #kv .bg-math-o-1 {
  top: 19.2%;
  left: 77.9%;
}
.page-index #kv .bg-math-r-1 {
  top: 92.2%;
  left: 87.3%;
}
.page-index #kv .bg-math-a-1 {
  top: 62.5%;
  left: 30.7%;
}
.page-index #kv .bg-math-p-1 {
  top: 14.2%;
  left: 48.7%;
}
.page-index #kv .bg-math-o-red-1 {
  top: 74.6%;
  left: 59.8%;
}
.page-index #kv .bg-math-r-red-1 {
  top: 13.2%;
  left: 18.3%;
}
.page-index #kv .bg-math-a-red-1 {
  top: 24.9%;
  left: 64.2%;
}
.page-index #kv .bg-math-p-red-1 {
  top: 113.5%;
  left: 12.2%;
}
.page-index #kv header {
  margin-top: 11.7rem;
  padding-left: 24.5%;
  position: relative;
  opacity: 0;
}
.page-index #kv header > p {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
}
.page-index #kv .icon-star {
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  top: 5.4%;
  left: 48.2%;
  z-index: 1;
}
.page-index #kv .icon-car {
  background: url(../img/icon-car.png) no-repeat;
  background-size: 100%;
  position: absolute;
  width: 4rem;
  height: 1.6rem;
  top: 37%;
  left: 41.9%;
  z-index: 1;
}
.page-index #kv h1 b {
  font-size: 6rem;
  line-height: 1;
  margin-top: -0.5rem;
  display: block;
  letter-spacing: 0.3rem;
}
.page-index #kv h1 p {
  font-size: 3.4rem;
  font-weight: bold;
  margin-left: 22%;
}
.page-index #kv h1 p u {
  transform: rotate(10deg);
  display: inline-block;
  text-decoration: none;
}
.page-index #kv.is-animate header {
  animation: header_show 1s forwards;
}
@keyframes header_show {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.page-index #intro {
  height: 29rem;
  padding: 1.4rem 13% 0 35.6%;
  color: #fff;
}
.page-index #intro header h2 {
  display: flex;
  align-items: center;
}
.page-index #intro header h2 p {
  font-size: 3.3rem;
  font-weight: bold;
}
.page-index #intro header h2 div {
  margin-left: 0.8rem;
}
.page-index #intro header h2 div small {
  display: block;
  font-size: 1rem;
}
.page-index #intro header h2 div b {
  font-size: 1.2rem;
  display: block;
  line-height: 1;
}
.page-index #intro .text-think-amazing {
  width: 11rem;
  height: 1.8rem;
  background: url(../img/text-think-amazing.svg) no-repeat center;
  background-size: 100%;
  text-indent: -9999px;
  display: inline-block;
}
.page-index #plan {
  height: 45rem;
}
.page-index #plan .bg-math-o-1 {
  top: -8.8%;
  left: 77.9%;
}
.page-index #plan .bg-math-r-1 {
  top: 49.2%;
  left: 87.3%;
}
.page-index #plan .bg-math-a-1 {
  top: 50.5%;
  left: 54.2%;
}
.page-index #plan .bg-math-p-1 {
  top: -19.8%;
  left: 52.7%;
}
.page-index #plan .bg-math-o-red-1 {
  top: 33.6%;
  left: 47.8%;
}
.page-index #plan .bg-math-r-red-1 {
  top: -13.8%;
  left: 18.3%;
}
.page-index #plan .bg-math-a-red-1 {
  top: -9.1%;
  left: 64.2%;
}
.page-index #plan .bg-math-p-red-1 {
  top: 65.5%;
  left: 12.2%;
}
.page-index #plan .flex {
  display: flex;
  width: 82%;
  margin: 0 auto;
}
.page-index #plan .group {
  width: 50%;
  padding: 1.5rem 0 0 2rem;
}
.page-index #plan .group h2 p {
  font-size: 2.2rem;
  font-weight: bold;
  color: #263f53;
  display: inline-block;
}
.page-index #plan .group dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 1.5rem;
}
.page-index #plan .group dl dt {
  width: 20%;
  border-radius: 0.4rem;
  margin-right: 4%;
  text-align: center;
  padding: 0.2rem 0;
}
.page-index #plan .group dl dd {
  width: 76%;
}
.page-index #plan .group dl dd p {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;
}
.page-index #plan .group dl dd small {
  display: block;
  line-height: 1.3;
}
.page-index #plan .group dl dt, .page-index #plan .group dl dd {
  margin-bottom: 1.2rem;
}
.page-index #plan .group .btns {
  margin-top: 1rem;
  width: 66%;
  margin-left: 24%;
}
.page-index #plan .group:nth-of-type(1) dl dd small {
  padding-right: 5%;
}
.page-index #plan .group:nth-of-type(2) h2 {
  margin-left: 4rem;
}
.page-index #plan .group:nth-of-type(2) h2 small {
  display: block;
  text-align: right;
  margin-top: -0.5rem;
  margin-bottom: -0.7rem;
  margin-right: 2.7rem;
  line-height: 1;
  font-size: 1.2rem;
}
.page-index #plan .group:nth-of-type(2) .btns {
  margin-top: 4.5rem;
}

.dt-bg-red dt {
  background-color: #bd0a23;
  color: #fff;
}

.dd-color-blue dd {
  color: #263f53;
}

.dt-bg-blue dt {
  background-color: #263f53;
  color: #fff;
}

.dd-color-white dd {
  color: #fff;
}
.dd-color-white dd small {
  color: #fdffcb;
}

.page-summer #kv, .page-workplace #kv {
  color: #263f53;
}
.page-summer #kv header, .page-workplace #kv header {
  padding-top: 10.2rem;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.page-summer #kv .icon-arrow, .page-workplace #kv .icon-arrow {
  position: absolute;
  top: 74.2%;
  left: 30%;
}
.page-summer #kv .icon-star, .page-workplace #kv .icon-star {
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  top: 51.4%;
  left: 48.2%;
}
.page-summer #kv h1 p, .page-workplace #kv h1 p {
  font-size: 5rem;
  font-weight: bold;
  margin-left: 16.5%;
}
.page-summer #kv h1 p span, .page-workplace #kv h1 p span {
  width: 2rem;
  display: inline-block;
}
.page-summer #kv h1 p u, .page-workplace #kv h1 p u {
  transform: rotate(10deg);
  display: inline-block;
  text-decoration: none;
}
.page-summer #kv.is-animate header, .page-workplace #kv.is-animate header {
  animation: header_show 1s forwards;
}
.page-summer #intro, .page-workplace #intro {
  padding-left: 36%;
  padding-top: 4.5%;
  padding-right: 12%;
}
.page-summer #intro .text-syi, .page-workplace #intro .text-syi {
  width: 27.2rem;
  height: 3.5rem;
  background: url(../img/text-syi.svg) no-repeat;
  background-size: 100%;
  display: block;
  text-indent: -9999px;
  margin: 2rem 0 0;
}
.page-summer #intro dl, .page-workplace #intro dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 1.5rem;
}
.page-summer #intro dl dt, .page-workplace #intro dl dt {
  width: 14%;
  border-radius: 0.4rem;
  margin-right: 2%;
  text-align: center;
  padding: 0.2rem 0;
}
.page-summer #intro dl dt.lh-1, .page-workplace #intro dl dt.lh-1 {
  line-height: 1.2;
}
.page-summer #intro dl dd, .page-workplace #intro dl dd {
  padding-top: 0.3rem;
  width: 84%;
}
.page-summer #intro dl dd p, .page-workplace #intro dl dd p {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.3;
}
.page-summer #intro dl dd small, .page-workplace #intro dl dd small {
  display: inline-block;
  line-height: 1.3;
}
.page-summer #intro dl dt, .page-summer #intro dl dd, .page-workplace #intro dl dt, .page-workplace #intro dl dd {
  margin-bottom: 0.8rem;
}
.page-summer #career, .page-workplace #career {
  width: 68%;
  margin: 0 auto;
}
.page-summer #career header, .page-workplace #career header {
  padding-top: 4.9rem;
  padding-right: 25%;
}
.page-summer #career header .flex, .page-workplace #career header .flex {
  display: flex;
  align-items: center;
}
.page-summer #career header .flex h2, .page-workplace #career header .flex h2 {
  margin-right: 1rem;
}
.page-summer #career .career-list, .page-workplace #career .career-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2.3rem;
}
.page-summer #career .career-list > li, .page-workplace #career .career-list > li {
  width: 45%;
  margin-bottom: 2rem;
}
.page-summer #career .career-list > li h3, .page-workplace #career .career-list > li h3 {
  font-size: 2.1rem;
  font-weight: bold;
  color: #263f53;
  white-space: nowrap;
}
.page-summer #career .career-list > li h3:before, .page-workplace #career .career-list > li h3:before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/icon-arrow.svg);
  background-size: 100%;
  display: inline-block;
  position: relative;
  top: 0.2rem;
}
.page-summer #career .career-list > li h4, .page-workplace #career .career-list > li h4 {
  color: #fff;
  border-radius: 0.4rem;
  text-align: center;
  width: 25%;
  font-size: 1.1rem;
  margin: 0.8rem 0;
}
.page-summer #process, .page-workplace #process {
  width: 70%;
  margin: 0 auto;
}
.page-summer #process header, .page-workplace #process header {
  padding-top: 4.5rem;
}
.page-summer #process header h2, .page-workplace #process header h2 {
  text-align: center;
}
.page-summer #process h3, .page-workplace #process h3 {
  text-align: center;
  font-size: 2rem;
  color: #263f53;
}
.page-summer #process .process-list, .page-workplace #process .process-list {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}
.page-summer #process .process-list > li, .page-workplace #process .process-list > li {
  display: flex;
  align-items: center;
  padding: 1rem 0 1rem 2.5rem;
  height: 8.5rem;
  margin-bottom: 1.2rem;
  position: relative;
}
.page-summer #process .process-list > li:before, .page-workplace #process .process-list > li:before {
  content: "";
  width: 0.1rem;
  height: 70%;
  background: #000;
  position: absolute;
  top: 19%;
  left: 36.5%;
}
.page-summer #process .process-list > li:nth-child(odd), .page-workplace #process .process-list > li:nth-child(odd) {
  background-color: #eee;
}
.page-summer #process .process-list > li:nth-child(even), .page-workplace #process .process-list > li:nth-child(even) {
  background-color: #fdffcb;
}
.page-summer #process .process-list .step, .page-workplace #process .process-list .step {
  width: 8rem;
}
.page-summer #process .process-list .step h4, .page-workplace #process .process-list .step h4 {
  color: #263f53;
  font-size: 1.8rem;
  line-height: 1.3;
}
.page-summer #process .process-list .step h4 b, .page-workplace #process .process-list .step h4 b {
  color: #bd0a23;
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 1;
}
.page-summer #process .process-list .step p, .page-workplace #process .process-list .step p {
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0.25rem;
}
.page-summer #process .process-list [class^=icon-process-], .page-workplace #process .process-list [class^=icon-process-] {
  width: 6.5rem;
  height: 6.5rem;
  background: url(../img/icon-process.svg);
  background-size: 500%;
  margin: 0 0.5rem;
}
.page-summer #process .process-list [class^=icon-process-].icon-process-1, .page-workplace #process .process-list [class^=icon-process-].icon-process-1 {
  background-position: 0 0;
}
.page-summer #process .process-list [class^=icon-process-].icon-process-2, .page-workplace #process .process-list [class^=icon-process-].icon-process-2 {
  background-position: 25% 0;
}
.page-summer #process .process-list [class^=icon-process-].icon-process-3, .page-workplace #process .process-list [class^=icon-process-].icon-process-3 {
  background-position: 50% 0;
}
.page-summer #process .process-list [class^=icon-process-].icon-process-4, .page-workplace #process .process-list [class^=icon-process-].icon-process-4 {
  background-position: 75% 0;
}
.page-summer #process .process-list [class^=icon-process-].icon-process-5, .page-workplace #process .process-list [class^=icon-process-].icon-process-5 {
  background-position: 100% 0;
}
.page-summer #process .process-list .txt, .page-workplace #process .process-list .txt {
  width: 55%;
  line-height: 1.5;
  margin-left: 3.5rem;
}
.page-summer #process .process-list .txt small, .page-workplace #process .process-list .txt small {
  display: block;
}
.page-summer #qa header, .page-workplace #qa header {
  padding-top: 0rem;
  margin-left: 53%;
}
.page-summer #qa header h2 b, .page-workplace #qa header h2 b {
  font-size: 4.5rem;
}
.page-summer #qa .qa-list, .page-workplace #qa .qa-list {
  width: 70%;
  margin: 0.5rem auto 0;
  justify-content: space-between;
  display: flex;
}
.page-summer #qa .qa-list > ol, .page-workplace #qa .qa-list > ol {
  width: 48%;
}
.page-summer #qa .qa-list > ol:nth-of-type(2), .page-workplace #qa .qa-list > ol:nth-of-type(2) {
  margin-top: 22rem;
}
.page-summer #qa .qa-list > ol > li, .page-workplace #qa .qa-list > ol > li {
  margin-bottom: 1.5rem;
}
.page-summer #qa .qa-list .q, .page-workplace #qa .qa-list .q {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.8rem;
}
.page-summer #qa .qa-list .q b, .page-workplace #qa .qa-list .q b {
  font-size: 6rem;
  line-height: 1;
  font-weight: normal;
}
.page-summer #qa .qa-list .q p, .page-workplace #qa .qa-list .q p {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 0.43rem;
  padding-left: 5%;
}
.page-summer #qa .qa-list .a, .page-workplace #qa .qa-list .a {
  padding-left: 14%;
}
.page-summer #qa .qa-list .a p, .page-workplace #qa .qa-list .a p {
  letter-spacing: 0.05rem;
}

.page-summer {
  height: 527rem;
}
.page-summer .bg-flower-grey-1 {
  top: -9.5%;
  left: -55.5%;
}
.page-summer .bg-flower-blue-1 {
  top: 3.3%;
  left: 4%;
  width: 93rem;
  height: 95rem;
  transform: scale(0.9, 1) rotate(-5deg);
}
.page-summer .bg-flower-yellow-1 {
  top: 18.9%;
  left: 39%;
  width: 58rem;
  height: 58rem;
  transform: rotate(12deg) scale(1.2, 1);
}
.page-summer .bg-flower-yellow-2 {
  top: 53%;
  left: -35%;
  width: 90rem;
  height: 90rem;
  transform: rotate(-9deg);
}
.page-summer .bg-flower-grey-2 {
  top: 57%;
  left: 36%;
  transform: rotate(16deg) scale(0.9, 1);
}
.page-summer .bg-flower-red-1 {
  top: 81.5%;
  left: -40%;
  width: 90rem;
  height: 90rem;
  transform: rotate(-5deg);
}
.page-summer .bg-flower-blue-2 {
  top: 85%;
  left: 29.5%;
  transform: rotate(10deg) scale(0.9, 0.95);
}
.page-summer .bg-char-3 {
  top: 3.9%;
  left: 13.8%;
}
.page-summer .bg-char-4 {
  top: 18.3%;
  left: 69%;
}
.page-summer .bg-char-2 {
  top: 53.1%;
  left: 68.3%;
}
.page-summer .bg-char-1 {
  top: 83%;
  left: 69.3%;
}
.page-summer .bg-pie-3 {
  top: 18.5%;
  left: 64%;
}
.page-summer .bg-dots-3 {
  top: 1.2%;
  left: 67.6%;
}
.page-summer .bg-dots-2 {
  top: 83%;
  left: 65.8%;
}
.page-summer #aside-nav li:nth-of-type(2) {
  letter-spacing: 0rem;
}
.page-summer #kv {
  height: 24rem;
}
.page-summer #intro {
  height: 82rem;
}
.page-summer #intro .bg-math-r-1 {
  top: 54%;
  left: 23%;
}
.page-summer #intro .bg-math-a-1 {
  top: 24%;
  left: 26.5%;
}
.page-summer #intro .bg-math-p-1 {
  top: 80%;
  left: 82%;
}
.page-summer #intro .bg-math-p-red-1 {
  top: 87%;
  left: 21.3%;
}
.page-summer #life {
  height: 45rem;
  padding-top: 3rem;
  width: 78%;
  margin: 0 auto;
}
.page-summer #life header {
  margin-left: 7%;
  margin-right: 27%;
}
.page-summer #life header h2 {
  margin-bottom: 0.5rem;
}
.page-summer #life .flex {
  display: flex;
  justify-content: space-between;
  margin-top: 1.8rem;
}
.page-summer #life .card {
  width: 32.5%;
  border-radius: 1rem;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
  background-color: #eee;
  padding-top: 0.2rem;
}
.page-summer #life .card h3 {
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.6rem;
  text-indent: 0.6rem;
}
.page-summer #life .card p {
  width: 92%;
  margin: 0.9rem auto;
  font-size: 0.8rem;
  text-align: left;
  line-height: 1.2;
}
.page-summer #life .card p u {
  text-decoration: none;
  letter-spacing: 0;
}
.page-summer #life .tns-wrap {
  width: 92%;
  margin: 0.5rem auto;
  text-align: center;
}
.page-summer #life .tns-wrap ol {
  display: flex;
}
.page-summer #life .tns-wrap img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.page-summer #life .tns-wrap .tns-item {
  opacity: 0;
  transition: 1s;
}
.page-summer #life .tns-wrap .tns-item.tns-slide-active {
  opacity: 1;
}
.page-summer #feedback {
  height: 85rem;
  width: 70%;
  margin: 0 auto;
}
.page-summer #feedback header {
  padding-top: 2.3rem;
}
.page-summer #feedback .feedback-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-summer #feedback .feedback-list li {
  width: 47%;
  margin: 2rem 0 1rem;
}
.page-summer #feedback .feedback-list li img {
  width: 7rem;
  border: 0.3rem solid #bd0a23;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  box-shadow: 0.3rem 0.3rem 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 0.1rem;
}
.page-summer #feedback .feedback-list li h3 {
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.2;
}
.page-summer #feedback .feedback-list li h3 small {
  font-size: 0.8rem;
  text-align: right;
}
.page-summer #feedback .feedback-list li b {
  font-size: 1.2rem;
}
.page-summer #feedback .feedback-list li p {
  letter-spacing: 0;
  line-height: 1.5;
}
.page-summer #feedback .feedback-list li:nth-child(odd) img {
  float: left;
  margin-right: 1.2rem;
}
.page-summer #feedback .feedback-list li:nth-child(even) img {
  float: right;
  margin-left: 1.2rem;
}
.page-summer #career {
  height: 83rem;
}
.page-summer #career .bg-math-o-1 {
  top: 2.2%;
  left: -7.1%;
}
.page-summer #career .bg-math-r-1 {
  top: 84.2%;
  left: 35.3%;
}
.page-summer #career .bg-math-p-1 {
  top: -1%;
  left: 34.7%;
}
.page-summer #career .bg-math-p-2 {
  top: 61%;
  left: 100.4%;
}
.page-summer #career .bg-math-o-red-1 {
  top: 103.6%;
  left: -0.8%;
}
.page-summer #career .bg-math-a-red-1 {
  top: 3.9%;
  left: 69.2%;
}
.page-summer #career .bg-math-a-red-2 {
  top: 41.9%;
  left: 98.2%;
}
.page-summer #career .bg-math-a-red-3 {
  top: 63.9%;
  left: 32.2%;
}
.page-summer #career .bg-math-p-red-1 {
  top: 94%;
  left: 90.4%;
}
.page-summer #process {
  height: 69rem;
}
.page-summer .graph-list {
  display: flex;
  margin-top: 1rem;
}
.page-summer .graph-list li > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.7rem;
  position: relative;
}
.page-summer .graph-list li > div:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.4rem 0 2.4rem 2rem;
  border-color: transparent transparent transparent #007bff;
  position: absolute;
  top: 0;
  left: 100%;
  filter: drop-shadow(0.05rem 0 0 #fff) drop-shadow(0.1rem 0 0 #fff) drop-shadow(0.12rem 0 0 #fff);
  z-index: 1;
}
.page-summer .graph-list li > div.bg-grey {
  background-color: #eee;
}
.page-summer .graph-list li > div p {
  font-size: 1.2rem;
  line-height: 1.2;
}
.page-summer .graph-list li > div .icon-arrow {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.6rem 0 0.6rem 0.6rem;
  border-color: transparent transparent transparent #bd0a23;
  margin: 0 0.5rem;
}
.page-summer .graph-list li > div .red-lines {
  border: 0.1rem dashed #bd0a23;
  border-radius: 0.4rem;
  position: relative;
  padding: 0.3rem;
}
.page-summer .graph-list li > div .red-lines small {
  color: #bd0a23;
  position: absolute;
  left: 20%;
  bottom: 90%;
  padding: 0 0.3rem;
  text-align: center;
  background-color: #eee;
  line-height: 1;
}
.page-summer .graph-list li time {
  color: #bd0a23;
  text-align: center;
  display: block;
  margin: 0.5rem 0;
}
.page-summer .graph-list li:nth-of-type(1) > div {
  padding: 0 0.5rem;
}
.page-summer .graph-list li:nth-of-type(1) > div:after {
  border-color: transparent transparent transparent #eee;
}
.page-summer .graph-list li:nth-of-type(2) > div {
  padding: 0 0.7rem 0 2.6rem;
}
.page-summer .graph-list li:nth-of-type(2) > div:after {
  border-color: transparent transparent transparent #fdffcb;
}
.page-summer .graph-list li:nth-of-type(3) > div {
  padding: 0 0rem 0 3rem;
  background-color: #ffeded;
}
.page-summer .graph-list li:nth-of-type(3) > div:after {
  border-color: transparent transparent transparent #ffeded;
}
.page-summer .graph-list li:nth-of-type(3) > div .red-lines small {
  background-color: #ffeded;
}
.page-summer .graph-list li:nth-of-type(4) > div {
  padding: 0 0rem 0 2.7rem;
  background-color: #ffeded;
}
.page-summer .graph-list li:nth-of-type(4) > div:after {
  border-color: transparent transparent transparent #ffeded;
}
.page-summer .graph-list li:nth-of-type(5) > div {
  padding: 0 0 0 2.7rem;
  background-color: #e06b7c;
  color: #fff;
}
.page-summer .graph-list li:nth-of-type(5) > div:after {
  border-color: transparent transparent transparent #e06b7c;
}
.page-summer #qa {
  height: 90rem;
}
.page-summer #qa .bg-math-o-1 {
  top: 86.5%;
  left: 71.6%;
}
.page-summer #qa .bg-math-r-1 {
  top: 83.2%;
  left: 21.6%;
}
.page-summer #qa .bg-math-r-2 {
  top: 47%;
  left: 92%;
}
.page-summer #qa .bg-math-o-red-1 {
  top: 31.4%;
  left: 11.5%;
}
.page-summer #qa .bg-math-o-red-2 {
  top: 0.4%;
  left: 45%;
}
.page-summer #qa .bg-math-a-red-3 {
  top: 63.9%;
  left: 32.2%;
}
.page-summer #qa .bg-math-r-red-1 {
  top: 12.9%;
  left: 62.2%;
}
.page-summer #qa .bg-math-p-red-1 {
  top: 77.4%;
  left: 81.8%;
}
.page-summer #qa .list-triangle-white li a {
  color: #fff;
}

.page-workplace {
  background-size: 100%;
}
.page-workplace .bg-flower-grey-1 {
  top: -15.7%;
  left: -55.5%;
}
.page-workplace .bg-flower-red-1 {
  top: 6.7%;
  left: 11%;
  transform: rotate(-5deg);
}
.page-workplace .bg-flower-yellow-1 {
  top: 31.4%;
  left: 28%;
  width: 65rem;
  height: 65rem;
  transform: rotate(9deg);
}
.page-workplace .bg-flower-grey-2 {
  top: 28.4%;
  left: -48%;
  transform: rotate(16deg) scale(1.1);
}
.page-workplace .bg-flower-yellow-2 {
  top: 69.3%;
  left: -36%;
  width: 90rem;
  height: 90rem;
  transform: rotate(-5deg);
}
.page-workplace .bg-flower-grey-3 {
  top: 75.4%;
  left: 34.5%;
  transform: rotate(10deg) scale(0.9, 0.95);
}
.page-workplace .bg-char-1 {
  top: 2.5%;
  left: 71.3%;
  transform: scale(0.85);
}
.page-workplace .bg-char-2 {
  top: 20.6%;
  left: 13.5%;
  transform: scale(-1, 1);
}
.page-workplace .bg-char-3 {
  top: 45%;
  left: 20%;
  transform: scale(-1, 1) rotate(3deg);
}
.page-workplace .bg-char-4 {
  top: 69.4%;
  left: 68.4%;
}
.page-workplace .bg-pie-1 {
  top: 69.3%;
  left: 62.2%;
}
.page-workplace .bg-dots-1 {
  top: -0.4%;
  left: 24.2%;
}
.page-workplace #kv {
  height: 24rem;
}
.page-workplace #kv .bg-math-r-red-1 {
  top: 20.7%;
  left: 18.3%;
}
.page-workplace #kv .bg-math-a-red-1 {
  top: 35.5%;
  left: 61%;
}
.page-workplace #kv .bg-math-p-1 {
  top: 20%;
  left: 48.7%;
}
.page-workplace #kv b {
  display: block;
  margin-left: 16.5%;
  font-size: 2.3rem;
  line-height: 1;
  margin-top: -0.4rem;
}
.page-workplace #kv .icon-star {
  top: 44.4%;
  left: 44.5%;
}
.page-workplace #kv .icon-arrow {
  top: 67.2%;
}
.page-workplace #intro {
  height: 70rem;
}
.page-workplace #intro .bg-math-o-1 {
  top: 14.7%;
  left: 15.3%;
}
.page-workplace #intro .bg-math-o-2 {
  top: 37.6%;
  left: 92.6%;
}
.page-workplace #intro .bg-math-a-1 {
  top: 1%;
  left: 25%;
}
.page-workplace #intro .bg-math-a-2 {
  top: 28%;
  left: 26.5%;
}
.page-workplace #intro .bg-math-r-1 {
  top: 75%;
  left: 82%;
}
.page-workplace #intro .bg-math-p-red-1 {
  top: 41%;
  left: 11.2%;
}
.page-workplace #career {
  height: 67.7rem;
}
.page-workplace #career .bg-math-r-1 {
  top: 78%;
  left: -8%;
}
.page-workplace #career .bg-math-p-1 {
  top: 75.3%;
  left: 46%;
}
.page-workplace #career .bg-math-o-red-1 {
  top: 95.4%;
  left: 105%;
}
.page-workplace #career .bg-math-p-red-1 {
  top: 1.3%;
  left: 43%;
}
.page-workplace #career .bg-math-a-red-1 {
  top: 41%;
  left: 40%;
}
.page-workplace #career .bg-math-r-red-2 {
  top: 41%;
  left: 106%;
}
.page-workplace #career .career-list {
  margin-top: 0;
}
.page-workplace #career .career-list > li {
  width: 47%;
}
.page-workplace #career .career-list > li h4 {
  margin-top: 2rem;
}
.page-workplace #career .career-list p, .page-workplace #career .career-list h5 {
  color: #263f53;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
}
.page-workplace #career .list-dot-red {
  margin: 1rem 0;
}
.page-workplace #career .career-detail li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.page-workplace #career .career-detail li:before {
  top: 1rem;
}
.page-workplace #career .career-detail li p {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
.page-workplace #process {
  height: 58rem;
}
.page-workplace #qa {
  height: 92rem;
}
.page-workplace #qa .bg-math-o-1 {
  top: 39.5%;
  left: 12%;
}
.page-workplace #qa .bg-math-p-1 {
  top: -2%;
  left: 46.3%;
}
.page-workplace #qa .bg-math-r-1 {
  top: 11%;
  left: 56%;
}
.page-workplace #qa .bg-math-o-red-1 {
  top: -3.4%;
  left: 20.2%;
}
.page-workplace #qa .bg-math-o-red-2 {
  top: 96.3%;
  left: 93%;
}
.page-workplace #qa .bg-math-a-red-1 {
  top: -5%;
  left: 85%;
}
.page-workplace #qa .bg-math-p-red-1 {
  top: 34.6%;
  left: 81.7%;
}
.page-workplace #qa .bg-math-p-red-2 {
  top: 67.7%;
  left: 48%;
}

.list-pie-no li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}
.list-pie-no .label {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-dot-red li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}
.list-dot-red li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #bd0a23;
  border-radius: 50%;
  position: absolute;
  top: 0.6rem;
  left: 0.8rem;
}

.list-triangle-white, .list-triangle-red {
  margin-left: -1rem;
}
.list-triangle-white li, .list-triangle-red li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.list-triangle-white li:before, .list-triangle-red li:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4rem 0 0.4rem 0.6rem;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0.6rem;
  left: 0;
}

.list-triangle-red li:before {
  border-color: transparent transparent transparent #bd0a23;
}

#g-footer {
  font-size: 0.8rem;
  color: #263f53;
  padding: 1.6rem 0;
  text-align: center;
  position: relative;
}

#documentary {
  width: 79%;
  margin: 0 auto 3rem;
}
#documentary header {
  margin-left: 7%;
}
#documentary .video-item {
  padding: 1rem;
  background: #eee;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}

@media screen and (min-width: 990px) {
  .is-m {
    display: none !important;
  }
}
@media screen and (max-width: 990px) {
  .is-pc {
    display: none !important;
  }

  html {
    font-size: 4vw;
  }

  #g-header {
    padding: 1rem;
  }
  #g-header.active {
    padding: 0.5rem 1rem;
  }

  #g-nav-trigger {
    display: block;
  }

  #g-logo {
    width: 9rem;
  }

  #g-nav {
    position: fixed;
    width: 50%;
    height: 100vh;
    top: 0;
    right: -100%;
    opacity: 0;
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(0.3rem);
            backdrop-filter: blur(0.3rem);
    border-left: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #g-nav > ol {
    display: block;
  }
  #g-nav > ol > li {
    margin-bottom: 1rem;
    margin-left: 0;
  }
  #g-nav > ol > li > a {
    padding: 0.7rem 1rem;
  }
  #g-nav .sub {
    display: block;
    margin: 1rem auto 2rem;
  }
  #g-nav .sub li {
    text-align: left;
    margin-left: 1rem;
  }
  #g-nav .sub a {
    background: none;
    color: #263f53;
    padding: 0;
    display: block;
  }
  #g-nav .sub a:before {
    content: "-";
  }
  #g-nav .sub a br {
    display: none;
  }
  #g-nav.active {
    right: 0;
    opacity: 1;
  }

  .video-btn-play {
    width: 4rem;
    height: 3rem;
  }

  .page-index {
    height: auto;
  }
  .page-index .bg-flower-grey-1 {
    top: -41.5%;
    left: -121.5%;
  }
  .page-index .bg-flower-red-1 {
    top: 17.6%;
    left: -71.1%;
  }
  .page-index .bg-flower-grey-2 {
    top: 34.1%;
    left: -83.2%;
  }
  .page-index .bg-flower-red-2 {
    top: 60%;
    left: -101.1%;
    transform: scale(1, 0.58);
  }
  .page-index .bg-char-2 {
    top: 5.6%;
    left: 42.4%;
    transform: scale(0.7);
  }
  .page-index .bg-char-3 {
    top: 34%;
    left: 28.4%;
  }
  .page-index .bg-char-4 {
    top: 8.9%;
    left: -0.4%;
  }
  .page-index .bg-pie-2 {
    top: 10.3%;
    left: -3.1%;
  }
  .page-index #kv .bg-math-o-1 {
    top: 1.2%;
    left: 70.9%;
  }
  .page-index #kv .bg-math-a-1 {
    top: 67.5%;
    left: 5.7%;
  }
  .page-index #kv .bg-math-p-1 {
    top: 6.2%;
    left: 48.7%;
  }
  .page-index #kv .bg-math-r-red-1 {
    top: 7.2%;
    left: -2.7%;
  }
  .page-index #kv .bg-math-o-red-1 {
    top: 88.6%;
  }
  .page-index #kv .bg-math-a-red-1 {
    top: 10.9%;
    left: 84.2%;
  }
  .page-index #kv .bg-math-p-red-1 {
    top: 91.5%;
    left: 5.2%;
  }
  .page-index #kv header {
    margin-top: 7.7rem;
    padding-left: 5%;
  }
  .page-index #kv header > p {
    font-size: 1.5rem;
  }
  .page-index #kv h1 b {
    font-size: 3.3rem;
  }
  .page-index #kv h1 p {
    font-size: 2.4rem;
    margin-left: 0;
  }
  .page-index #kv .icon-arrow {
    width: 1.7rem;
    height: 1.7rem;
  }
  .page-index #kv .icon-star {
    width: 2.5rem;
    height: 2.5rem;
    top: 3.4%;
    left: 57.2%;
  }
  .page-index #kv .icon-car {
    width: 2.5rem;
    height: 1.6rem;
    top: 36%;
    left: 35.5%;
  }
  .page-index #intro {
    height: auto;
    padding: 1.4rem 5% 0 5%;
  }
  .page-index #intro header h2 p {
    font-size: 3rem;
  }
  .page-index #intro header h2 div b {
    font-size: 0.65rem;
  }
  .page-index #plan {
    height: auto;
  }
  .page-index #plan .bg-math-o-red-1 {
    top: 3.6%;
    left: 7.8%;
  }
  .page-index #plan .bg-math-r-red-1 {
    top: 56.2%;
    left: 18.3%;
  }
  .page-index #plan .bg-math-a-red-1 {
    top: -1.1%;
    left: 89.2%;
  }
  .page-index #plan .bg-math-p-red-1 {
    top: 90.5%;
    left: 25.2%;
  }
  .page-index #plan .bg-math-p-1 {
    top: 10.2%;
  }
  .page-index #plan .bg-math-a-1 {
    top: 40.5%;
    left: 11.2%;
  }
  .page-index #plan .bg-math-o-1 {
    top: 31.2%;
  }
  .page-index #plan .flex {
    width: 90%;
    display: block;
  }
  .page-index #plan .group {
    width: 100%;
    padding: 0;
    margin: 10rem 0;
  }
  .page-index #plan .group dl dt {
    width: 30%;
  }
  .page-index #plan .group dl dd {
    width: 66%;
  }
  .page-index #plan .group h2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-index #plan .group h2 p {
    white-space: nowrap;
  }
  .page-index #plan .group:nth-of-type(1) {
    margin-top: 15rem;
  }
  .page-index #plan .group:nth-of-type(2) h2 {
    margin-left: 0;
    position: relative;
  }
  .page-index #plan .group:nth-of-type(2) h2 small {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .page-index #plan .group:nth-of-type(2) .btns {
    margin-top: 1.5rem;
  }
  .page-index #plan .group .btns {
    margin-left: 0%;
    width: 100%;
  }

  .page-summer, .page-workplace {
    height: auto;
  }
  .page-summer #kv h1 p, .page-workplace #kv h1 p {
    font-size: 3rem;
    line-height: 1.2;
    margin-left: 5%;
  }
  .page-summer #kv h1 p span, .page-workplace #kv h1 p span {
    display: block;
  }
  .page-summer #kv .icon-arrow, .page-workplace #kv .icon-arrow {
    top: 62.2%;
  }
  .page-summer #kv .icon-star, .page-workplace #kv .icon-star {
    top: 66.4%;
    left: 78.2%;
  }
  .page-summer #intro, .page-workplace #intro {
    height: auto;
    padding-left: 5%;
    padding-right: 5%;
  }
  .page-summer #intro .text-syi, .page-workplace #intro .text-syi {
    width: 22.8rem;
    height: 2.9rem;
  }
  .page-summer #intro dl dt, .page-workplace #intro dl dt {
    width: 25%;
  }
  .page-summer #intro dl dd, .page-workplace #intro dl dd {
    width: 73%;
  }
  .page-summer #career, .page-workplace #career {
    height: auto;
    width: 90%;
    margin: 15rem auto 10rem;
  }
  .page-summer #career header, .page-workplace #career header {
    padding-right: 0;
  }
  .page-summer #career .career-list > li, .page-workplace #career .career-list > li {
    width: 100%;
  }
  .page-summer #process, .page-workplace #process {
    height: auto;
    width: 90%;
  }
  .page-summer #process h3, .page-workplace #process h3 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin: 1rem 0 1.5rem;
  }
  .page-summer #process .process-list > li, .page-workplace #process .process-list > li {
    height: auto;
    display: block;
    padding-left: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-summer #process .process-list > li:before, .page-workplace #process .process-list > li:before {
    display: none;
  }
  .page-summer #process .process-list [class^=icon-process-], .page-workplace #process .process-list [class^=icon-process-] {
    display: block;
    margin: 0.5rem 0;
  }
  .page-summer #process .process-list .txt, .page-workplace #process .process-list .txt {
    position: absolute;
    top: 0;
    right: 5%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-summer #process .process-list .txt small, .page-workplace #process .process-list .txt small {
    position: absolute;
    bottom: 5%;
    left: 0;
  }
  .page-summer #qa, .page-workplace #qa {
    height: auto;
    margin: 15rem auto 5rem;
  }
  .page-summer #qa header, .page-workplace #qa header {
    margin-left: 0;
  }
  .page-summer #qa .qa-list, .page-workplace #qa .qa-list {
    width: 90%;
    display: block;
  }
  .page-summer #qa .qa-list > ol, .page-workplace #qa .qa-list > ol {
    width: 100%;
  }
  .page-summer #qa .qa-list > ol:nth-of-type(2), .page-workplace #qa .qa-list > ol:nth-of-type(2) {
    margin-top: 0;
  }
  .page-summer #qa .qa-list .q b, .page-workplace #qa .qa-list .q b {
    font-size: 4rem;
  }

  .page-summer .bg-flower-grey-1 {
    top: -7.8%;
    left: -46.5%;
  }
  .page-summer .bg-flower-blue-1 {
    top: 3.6%;
    left: -79%;
    width: 98rem;
    height: 100rem;
    transform: scale(1, 1.22) rotate(31deg);
  }
  .page-summer .bg-flower-yellow-1 {
    top: 15.2%;
    left: 46%;
  }
  .page-summer .bg-flower-yellow-2 {
    top: 56.4%;
    left: -235%;
    width: 90rem;
    height: 90rem;
    transform: rotate(-9deg) scale(1.5, 2);
  }
  .page-summer .bg-flower-grey-2 {
    top: 58.4%;
    left: 102%;
    transform: rotate(9deg) scale(1.5, 2);
  }
  .page-summer .bg-flower-red-1 {
    top: 88.2%;
    left: -19%;
    width: 90rem;
    height: 90rem;
    transform: rotate(-5deg) scale(1.4);
  }
  .page-summer .bg-flower-blue-2 {
    top: 88.5%;
    left: -210.5%;
  }
  .page-summer .bg-char-1 {
    top: 84.5%;
    left: 48.3%;
  }
  .page-summer .bg-char-2 {
    top: 51.3%;
    left: 36.3%;
  }
  .page-summer .bg-char-3 {
    top: -0.4%;
    left: 32.8%;
    transform: scale(0.8);
  }
  .page-summer .bg-char-4 {
    top: 14.8%;
    left: 63%;
  }
  .page-summer .bg-pie-3 {
    top: 14.6%;
    left: 44%;
  }
  .page-summer .bg-dots-2 {
    top: 30.9%;
    left: 40.8%;
  }
  .page-summer .bg-dots-3 {
    top: 1.3%;
    left: 16.6%;
  }
  .page-summer #kv {
    height: 30rem;
  }
  .page-summer #kv h1 p {
    letter-spacing: 0;
  }
  .page-summer #intro .bg-math-a-1 {
    top: -1%;
    left: 86.5%;
  }
  .page-summer #intro .bg-math-p-1 {
    top: 70%;
    left: 4%;
  }
  .page-summer #intro .bg-math-r-1 {
    top: 102%;
  }
  .page-summer #intro .bg-math-p-red-1 {
    top: 129%;
    left: 83.3%;
  }
  .page-summer #life {
    height: auto;
    width: 90%;
    margin: 13rem auto 5rem;
  }
  .page-summer #life header {
    margin-left: 0;
  }
  .page-summer #life .flex {
    display: block;
  }
  .page-summer #life .card {
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  .page-summer #feedback {
    width: 90%;
    height: auto;
  }
  .page-summer #feedback header h2 {
    position: relative;
    z-index: 2;
  }
  .page-summer #feedback .feedback-list {
    position: relative;
    z-index: 2;
  }
  .page-summer #feedback .feedback-list li {
    width: 100%;
  }
  .page-summer #feedback .feedback-list li b {
    line-height: 1.2;
    margin: 0.5rem 0;
    display: block;
  }
  .page-summer #career .bg-math-p-1 {
    top: -5%;
    left: 24.7%;
  }
  .page-summer #career .bg-math-p-2 {
    top: 56%;
    left: 86.4%;
  }
  .page-summer #career .bg-math-r-1 {
    top: 82.2%;
  }
  .page-summer #career .bg-math-a-red-2 {
    top: 41.9%;
    left: 82.2%;
  }
  .page-summer #career .bg-math-a-red-3 {
    top: 70.9%;
    left: 65.2%;
  }
  .page-summer #career .bg-math-p-red-1 {
    top: 94%;
    left: 82.4%;
  }
  .page-summer #documentary {
    width: 90%;
  }
  .page-summer #documentary header {
    margin-left: 0;
    margin-bottom: 2rem;
  }
  .page-summer #documentary header h2 {
    line-height: 1.2;
  }
  .page-summer .graph-list {
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
  }
  .page-summer .graph-list li time {
    margin: 1rem 0 0.5rem;
  }
  .page-summer .graph-list li > div:after {
    border-width: 1rem 1.5rem 0 1.5rem;
    border-color: #eee transparent transparent transparent;
    top: 100%;
    left: calc(50% - 1.5rem);
  }
  .page-summer .graph-list li:nth-of-type(1) {
    width: 100%;
  }
  .page-summer .graph-list li:nth-of-type(1) > div {
    padding: 0 2rem;
  }
  .page-summer .graph-list li:nth-of-type(1) > div:after {
    border-color: #eee transparent transparent transparent;
  }
  .page-summer .graph-list li:nth-of-type(2) {
    width: 100%;
  }
  .page-summer .graph-list li:nth-of-type(2) > div {
    padding: 0 2rem;
  }
  .page-summer .graph-list li:nth-of-type(2) > div:after {
    border-color: #fdffcb transparent transparent transparent;
  }
  .page-summer .graph-list li:nth-of-type(3) {
    width: 100%;
  }
  .page-summer .graph-list li:nth-of-type(3) > div {
    padding: 0 2rem;
  }
  .page-summer .graph-list li:nth-of-type(3) > div:after {
    border-color: #ffeded transparent transparent transparent;
  }
  .page-summer .graph-list li:nth-of-type(4) {
    width: 100%;
  }
  .page-summer .graph-list li:nth-of-type(4) > div {
    padding: 0 2rem;
    justify-content: center;
  }
  .page-summer .graph-list li:nth-of-type(4) > div br {
    display: none;
  }
  .page-summer .graph-list li:nth-of-type(4) > div:after {
    border-color: #ffeded transparent transparent transparent;
  }
  .page-summer .graph-list li:nth-of-type(5) {
    width: 100%;
  }
  .page-summer .graph-list li:nth-of-type(5) > div {
    padding: 0 2rem;
    justify-content: center;
  }
  .page-summer .graph-list li:nth-of-type(5) > div br {
    display: none;
  }
  .page-summer .graph-list li:nth-of-type(5) > div:after {
    border-color: #e06b7c transparent transparent transparent;
  }
  .page-summer #qa h2 {
    margin-top: -7rem;
    margin-bottom: 7rem;
    margin-left: 5%;
  }
  .page-summer #qa .bg-math-o-red-2 {
    top: -9.6%;
  }
  .page-summer #qa .bg-math-o-red-1 {
    top: 34.4%;
    left: -1.5%;
  }
  .page-summer #qa .bg-math-r-1 {
    top: 98.2%;
    left: 21.6%;
  }

  .page-workplace .bg-flower-grey-1 {
    top: -14.7%;
    left: -125.5%;
  }
  .page-workplace .bg-flower-red-1 {
    top: 7.1%;
    left: -81%;
    transform: rotate(-5deg) scale(1, 1.25);
  }
  .page-workplace .bg-flower-grey-2 {
    top: 24.1%;
    left: -111%;
    transform: scale(0.65);
  }
  .page-workplace .bg-flower-yellow-1 {
    top: 37%;
    left: -89%;
    transform: scale(1.4);
  }
  .page-workplace .bg-flower-yellow-2 {
    top: 76.8%;
    left: -36%;
    transform: rotate(26deg) scale(1.7);
  }
  .page-workplace .bg-flower-grey-3 {
    top: 80.4%;
    left: -275.5%;
    transform: rotate(10deg) scale(1.2);
  }
  .page-workplace .bg-char-1 {
    top: 3.4%;
    left: 53.3%;
    transform: scale(0.85) rotate(-5deg);
  }
  .page-workplace .bg-char-2 {
    top: 22.9%;
    left: 42.5%;
  }
  .page-workplace .bg-char-3 {
    top: 51.2%;
    left: 27.5%;
  }
  .page-workplace .bg-char-4 {
    top: 69.9%;
    left: 50.4%;
  }
  .page-workplace .bg-dots-1 {
    top: 0.6%;
    left: 45.2%;
  }
  .page-workplace #kv {
    height: 30rem;
  }
  .page-workplace #kv .bg-math-a-red-1 {
    top: 81.5%;
    left: 33%;
  }
  .page-workplace #kv .bg-math-p-1 {
    top: -1%;
    left: 53.7%;
  }
  .page-workplace #kv b {
    margin-left: 5%;
    margin-top: 0;
    line-height: 1.4;
    font-size: 2rem;
  }
  .page-workplace #kv .icon-arrow {
    top: 54.2%;
  }
  .page-workplace #kv .icon-star {
    top: 68.4%;
    left: 85.2%;
  }
  .page-workplace #intro .bg-math-o-1 {
    top: 20.7%;
    left: 82.3%;
  }
  .page-workplace #intro .bg-math-o-2 {
    top: 103.6%;
    left: 86.6%;
  }
  .page-workplace #intro .bg-math-a-1 {
    top: 109%;
    left: 5%;
  }
  .page-workplace #intro .bg-math-a-2 {
    top: 37%;
    left: 66.5%;
  }
  .page-workplace #intro .bg-math-r-1 {
    top: 83%;
    left: 84%;
  }
  .page-workplace #intro .bg-math-p-red-1 {
    top: 54%;
    left: 7.2%;
  }
  .page-workplace #career .bg-math-a-red-1 {
    top: 23%;
    left: 80%;
  }
  .page-workplace #career .bg-math-o-red-1 {
    top: 81.4%;
    left: 93%;
  }
  .page-workplace #career .bg-math-p-1 {
    top: 75%;
    left: 70%;
  }
  .page-workplace #career .bg-math-r-1 {
    top: 55%;
    left: 1%;
  }
  .page-workplace #career .career-list > li {
    margin: 2rem 0 5rem;
  }
  .page-workplace #career .career-list > li:nth-child(2) .career-detail li {
    display: block;
  }
  .page-workplace #career .career-list > li:nth-child(2) .career-detail li a {
    margin-top: 0.5rem;
  }
  .page-workplace #career .career-detail p {
    letter-spacing: 0;
  }
  .page-workplace #qa header h2 {
    margin-left: 5%;
  }
  .page-workplace #qa .bg-math-p-red-1 {
    top: 60.6%;
  }
  .page-workplace #qa .bg-math-p-red-2 {
    top: 98.7%;
    left: 4%;
  }
  .page-workplace #qa .bg-math-o-red-2 {
    top: 75.3%;
    left: 80%;
  }
  .page-workplace #qa .bg-math-o-1 {
    left: 1%;
  }
  .page-workplace #qa .bg-math-r-1 {
    top: 12%;
  }

  #aside-nav {
    display: none;
  }
}