@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, ar, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

@-webkit-keyframes ani-hover-scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes ani-hover-scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes ani-light {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ani-light {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes ani-to-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes ani-to-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes ani-to-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes ani-to-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes ani-to-left-bottom {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-5px, 5px);
            transform: translate(-5px, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes ani-to-left-bottom {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-5px, 5px);
            transform: translate(-5px, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes ani-to-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes ani-to-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes ani-to-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes ani-to-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

body {
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.2;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 991px) {
  body {
    margin-top: 66px;
  }
}
@media (max-width: 767px) {
  body {
    margin-top: 60px;
  }
}

select, button, textarea, input {
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
}

table {
  border-collapse: collapse;
}

a {
  color: #ffffff;
}

a, a:focus {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

a:active {
  outline: none;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1350px;
  }
}
@media (min-width: 1800px) {
  .container {
    width: 1720px;
  }
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 991px) {
  .navbar {
    position: fixed;
    z-index: 1030;
  }
}
@media (min-width: 768px) {
  .navbar .container {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1800px) {
  .navbar .container {
    width: 1730px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .navbar--active {
    background: #ffffff;
  }
}
@media (max-width: 1199px) {
  .navbar--active .navbar__toggle-item:first-child {
    top: 17px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .navbar--active .navbar__toggle-item:nth-child(2) {
    display: none;
  }
  .navbar--active .navbar__toggle-item:last-child {
    top: 17px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media (max-width: 1199px) {
  .navbar--active .navbar__overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  }
}
@media (max-width: 1199px) {
  .navbar--active .navbar__body {
    top: 60px;
  }
}
.navbar__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 25px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .navbar__block {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.navbar__head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -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: 5;
}
@media (max-width: 991px) {
  .navbar__head::before {
    content: "";
    display: block;
    display: block;
    width: 100vw;
    height: 66px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    background: #ffffff;
  }
}
@media (max-width: 991px) {
  .navbar__head::before {
    height: 66px;
  }
}
@media (max-width: 767px) {
  .navbar__head::before {
    height: 60px;
  }
}
.navbar__head-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 5;
}
@media (max-width: 991px) {
  .navbar__head-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.navbar__logo-main {
  position: relative;
  display: block;
  width: 242px;
}
@media (max-width: 767px) {
  .navbar__logo-main {
    width: 180px;
  }
}
@media (max-width: 480px) {
  .navbar__logo-main {
    width: 150px;
  }
}
@media (max-width: 374px) {
  .navbar__logo-main {
    width: 135px;
  }
}
.navbar__logo-main img {
  display: block;
}
.navbar__logo-sub {
  width: 192px;
  margin-left: 50px;
}
@media (max-width: 991px) {
  .navbar__logo-sub {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .navbar__logo-sub {
    width: 130px;
  }
}
@media (max-width: 480px) {
  .navbar__logo-sub {
    width: 110px;
  }
}
@media (max-width: 374px) {
  .navbar__logo-sub {
    width: 100px;
    margin-left: 5px;
  }
}
.navbar__logo-sub img {
  display: block;
}
.navbar__toggle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 5;
  display: none;
}
@media (max-width: 991px) {
  .navbar__toggle {
    display: block;
  }
}
.navbar__toggle-item {
  display: block;
  width: 40px;
  height: 3px;
  background: #4f4c4b;
  position: absolute;
  top: 9px;
  left: 0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.navbar__toggle-item:nth-child(2) {
  top: 20px;
}
.navbar__toggle-item:last-child {
  top: 32px;
}
.navbar__body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 991px) {
  .navbar__body {
    position: absolute;
    top: -100vh;
    right: 0;
    z-index: 3;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    max-height: calc(100vh - 100px);
    background: #ffffff;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .navbar__links {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 999;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .navbar__links {
    right: 62px;
  }
}
.navbar__link {
  display: block;
  position: relative;
  font-size: 1.125rem;
  color: #4f4c4b;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-top: 34px;
}
@media (max-width: 991px) {
  .navbar__link {
    letter-spacing: 0.6em;
  }
}
.navbar__link:first-child {
  margin-top: 0;
}
.navbar__link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #4f4c4b;
  position: absolute;
  left: 0;
  bottom: -4px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: width;
  transition-property: width;
}
@media (hover: hover) {
  .navbar__link:hover::after {
    width: 100%;
  }
}
.navbar__japan {
  width: 60px;
  margin-left: 17px;
}
@media (max-width: 1199px) {
  .navbar__japan {
    width: 50px;
  }
}
@media (max-width: 991px) {
  .navbar__japan {
    margin-left: 0;
    margin-top: 15px;
    margin-right: 10px;
  }
}
.navbar__japan img {
  display: block;
}
.navbar__socials {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .navbar__socials {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
  }
}
.navbar__social {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-left: 15px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 991px) {
  .navbar__social {
    margin-left: 0;
    margin-top: 10px;
  }
}
.navbar__social:hover {
  opacity: 0.8;
}
.navbar__social:first-child {
  margin-left: 0;
}
@media (max-width: 991px) {
  .navbar__social:first-child {
    margin-top: 0;
  }
}
.navbar__social--ig {
  background-size: 42px 84px;
  background-repeat: no-repeat;
  background-image: url("../images/icon.png");
  background-position: 0 -42px;
}
.navbar__social--fb {
  background-size: 42px 84px;
  background-repeat: no-repeat;
  background-image: url("../images/icon.png");
  background-position: 0 0;
}

.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #001655;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.footer__block {
  width: 1350px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1399px) {
  .footer__block {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__text {
  font-size: 1rem;
  font-weight: 300;
  color: white;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .footer__text {
    width: 100%;
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .footer__links {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/*-- kv --*/
.kv__item img {
  display: block;
  width: 100%;
}

/*-- s1 --*/
.s1 {
  overflow: hidden;
}
.s1__wrap1 {
  padding-top: 60px;
  padding-bottom: 145px;
}
@media (max-width: 767px) {
  .s1__wrap1 {
    padding-bottom: 60px;
  }
}
.s1__block1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .s1__block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .s1__block1 {
    margin-top: 30px;
  }
}
.s1__content {
  padding-right: 84px;
  text-align: center;
}
@media (max-width: 1799px) {
  .s1__content {
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .s1__title {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .s1__title {
    width: 180px;
  }
}
.s1__text {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.075em;
  color: #4f4c4b;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .s1__text {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .s1__text {
    font-size: 1.125rem;
  }
}
.s1__subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: #4f4c4b;
  letter-spacing: 0.1em;
  margin-top: 45px;
}
@media (max-width: 1199px) {
  .s1__subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .s1__subtitle {
    font-size: 1.25rem;
  }
}
.s1__subtitle::after {
  content: "";
  display: block;
  width: 456px;
  height: 25px;
  background: url("../images/s1/s1-subtitle-bg.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .s1__subtitle::after {
    width: 350px;
    height: 16px;
  }
}
@media (max-width: 767px) {
  .s1__subtitle::after {
    width: 280px;
    height: 12px;
  }
}
.s1__img {
  padding-left: 70px;
}
@media (max-width: 1799px) {
  .s1__img {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .s1__img {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.s1__wrap2 {
  background: #efefef;
  border-top-right-radius: 180px;
  border-bottom-left-radius: 198px;
  padding-top: 76px;
  padding-bottom: 98px;
}
@media (max-width: 1199px) {
  .s1__wrap2 {
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }
}
@media (max-width: 767px) {
  .s1__wrap2 {
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.s1__thirdttile {
  font-size: 1.875rem;
  font-weight: 700;
  color: #4f4c4b;
  letter-spacing: 0.2em;
}
@media (max-width: 1199px) {
  .s1__thirdttile {
    font-size: 1.625rem;
  }
}
@media (max-width: 767px) {
  .s1__thirdttile {
    font-size: 1.375rem;
  }
}
.s1__content2 {
  position: relative;
  padding-left: 28px;
}
@media (max-width: 991px) {
  .s1__content2 {
    padding-left: 0;
  }
}
.s1__content2-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 36px;
  padding-left: 14px;
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 991px) {
  .s1__content2-text {
    position: relative;
    top: auto;
    left: auto;
  }
}
.s1__content2 .s1__text {
  letter-spacing: 0.2em;
  margin-top: 10px;
}
.s1__block2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background: url("../images/s1/s1-block2-bg.png");
  background-size: auto;
  background-position: center top 48px;
  background-repeat: no-repeat;
}
@media (max-width: 1399px) {
  .s1__block2 {
    background-size: 400px auto;
  }
}
@media (max-width: 991px) {
  .s1__block2 {
    background-size: 200px auto;
    background-position: center center;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .s1__block2 {
    background-size: 100px auto;
  }
}
@media (max-width: 480px) {
  .s1__block2 {
    background-size: 80px auto;
  }
}
@media (max-width: 374px) {
  .s1__block2 {
    background-size: 50px auto;
  }
}
.s1__item {
  margin-left: 612px;
  position: relative;
}
@media (max-width: 1399px) {
  .s1__item {
    margin-left: 500px;
  }
}
@media (max-width: 1199px) {
  .s1__item {
    margin-left: 420px;
  }
}
@media (max-width: 991px) {
  .s1__item {
    margin-left: 220px;
  }
}
@media (max-width: 767px) {
  .s1__item {
    margin-left: 120px;
  }
}
@media (max-width: 480px) {
  .s1__item {
    margin-left: 100px;
  }
}
@media (max-width: 374px) {
  .s1__item {
    margin-left: 60px;
  }
}
.s1__item:first-child {
  margin-left: 0;
}
.s1__item:first-child::before {
  content: "";
  display: block;
  width: 27px;
  height: 26px;
  background: url("../images/s1/s1-item-bg-2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: -38px;
  bottom: -13px;
  -webkit-animation: ani-to-left-bottom 0.8s ease infinite;
          animation: ani-to-left-bottom 0.8s ease infinite;
}
@media (max-width: 767px) {
  .s1__item:first-child::before {
    width: 16px;
    height: 16px;
    left: -20px;
    bottom: -8px;
  }
}
.s1__item:first-child .s1__item-title {
  width: 242px;
  height: 160px;
  top: 66px;
  left: -220px;
}
@media (max-width: 1199px) {
  .s1__item:first-child .s1__item-title {
    width: 170px;
    height: 120px;
    left: -150px;
  }
}
@media (max-width: 767px) {
  .s1__item:first-child .s1__item-title {
    width: 100px;
    height: 70px;
    top: 50px;
    left: -90px;
  }
}
@media (max-width: 480px) {
  .s1__item:first-child .s1__item-title {
    width: 80px;
    height: 50px;
    left: -70px;
  }
}
@media (max-width: 374px) {
  .s1__item:first-child .s1__item-title {
    left: -65px;
  }
}
.s1__item:last-child::before {
  content: "";
  display: block;
  width: 191px;
  height: 121px;
  background: url("../images/s1/s1-item-bg-4.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  left: -44px;
  -webkit-animation: ani-light 1.2s ease infinite;
          animation: ani-light 1.2s ease infinite;
}
@media (max-width: 767px) {
  .s1__item:last-child::before {
    width: 120px;
    height: 80px;
    top: 0;
    left: -30px;
  }
}
.s1__item:last-child::after {
  content: "";
  display: block;
  width: 171px;
  height: 37px;
  background: url("../images/s1/s1-item-bg-5.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  left: -38px;
  -webkit-animation: ani-to-top 0.8s ease infinite;
          animation: ani-to-top 0.8s ease infinite;
}
@media (max-width: 767px) {
  .s1__item:last-child::after {
    width: 110px;
    height: 26px;
    left: -28px;
  }
}
.s1__item:last-child .s1__item-title {
  width: 188px;
  height: 148px;
  top: 82px;
  right: -160px;
}
@media (max-width: 1199px) {
  .s1__item:last-child .s1__item-title {
    width: 140px;
    height: 110px;
    right: -110px;
  }
}
@media (max-width: 767px) {
  .s1__item:last-child .s1__item-title {
    width: 90px;
    height: 70px;
    top: 40px;
    right: -80px;
  }
}
@media (max-width: 480px) {
  .s1__item:last-child .s1__item-title {
    width: 70px;
    height: 50px;
    right: -60px;
  }
}
.s1__item-img {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .s1__item-img {
    width: 60px;
  }
}
.s1__item-title {
  position: absolute;
  z-index: 1;
}
.s1__list {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4f4c4b;
  line-height: 1.5;
  letter-spacing: 0.075em;
  width: 1000px;
  padding-left: 215px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1399px) {
  .s1__list {
    padding-left: 0;
    width: 780px;
  }
}
@media (max-width: 1199px) {
  .s1__list {
    font-size: 1.125rem;
    width: 590px;
  }
}
@media (max-width: 767px) {
  .s1__list {
    font-size: 1rem;
    width: 100%;
  }
}
.s1__list li {
  list-style: none;
  margin-top: 10px;
  position: relative;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .s1__list li {
    padding-left: 36px;
  }
}
.s1__list li::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 26px;
  position: absolute;
  top: 5px;
  left: 0;
}
@media (max-width: 1199px) {
  .s1__list li::before {
    width: 26px;
    height: 20px;
  }
}
.s1__list li:nth-child(odd)::before {
  background: url("../images/s1/s1-star-1.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s1__list li:nth-child(even)::before {
  background: url("../images/s1/s1-star-2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s1__list li:first-child {
  margin-top: 0;
}

/*-- s2 --*/
.s2 {
  overflow: hidden;
}
.s2__wrap1 {
  padding-top: 80px;
  padding-bottom: 154px;
  position: relative;
}
@media (max-width: 767px) {
  .s2__wrap1 {
    padding-bottom: 60px;
  }
}
.s2__wrap1::before {
  content: "";
  display: block;
  width: 32px;
  height: 158px;
  background: url("../images/s2/s2-block1-bg.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -50px;
  left: calc(50vw - 16px);
  -webkit-animation: ani-to-bottom 1.4s ease infinite;
          animation: ani-to-bottom 1.4s ease infinite;
}
@media (max-width: 1399px) {
  .s2__wrap1::before {
    width: 26px;
    height: 130px;
    left: calc(50vw - 13px);
  }
}
@media (max-width: 991px) {
  .s2__wrap1::before {
    width: 20px;
    height: 120px;
    left: calc(50vw - 10px);
  }
}
@media (max-width: 767px) {
  .s2__wrap1::before {
    width: 16px;
    height: 80px;
    left: calc(50vw - 6px);
    bottom: -40px;
  }
}
.s2__block1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% + 100px);
  margin-left: -50px;
  margin-right: -50px;
  margin-top: 85px;
}
@media (max-width: 1399px) {
  .s2__block1 {
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media (max-width: 1199px) {
  .s2__block1 {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .s2__block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .s2__block1 {
    margin-top: 30px;
  }
}
.s2__item1 {
  width: 350px;
  text-indent: -9999px;
  margin-left: 45px;
  margin-right: 45px;
  padding-top: 65px;
  position: relative;
}
@media (max-width: 1399px) {
  .s2__item1 {
    width: 280px;
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 55px;
  }
}
@media (max-width: 1199px) {
  .s2__item1 {
    width: 250px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .s2__item1 {
    width: 280px;
    margin: 60px auto 0;
  }
}
@media (max-width: 767px) {
  .s2__item1 {
    width: 250px;
  }
}
.s2__item1::before {
  content: "";
  display: block;
  width: 32px;
  height: 30px;
  position: absolute;
  bottom: 100px;
  right: 25px;
  -webkit-animation: ani-light 1.2s ease infinite;
          animation: ani-light 1.2s ease infinite;
}
@media (max-width: 1399px) {
  .s2__item1::before {
    bottom: 70px;
    right: 15px;
  }
}
@media (max-width: 1199px) {
  .s2__item1::before {
    width: 26px;
    height: 20px;
    bottom: 80px;
  }
}
.s2__item1:nth-child(1) .s2__item1-title {
  background: url("../images/s2/s2-item1-title-1.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(1) .s2__item1-subtitle {
  background: url("../images/s2/s2-item1-subtitle-1.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(1) .s2__item1-subtitle::before {
  background: url("../images/s2/s2-item1-icon-1.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(1) .s2__item1-img {
  background: url("../images/s2/s2-item1-img-1.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(1) .s2__item1-img::before {
  background: url("../images/s2/s2-item1-pen-1.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(2) .s2__item1-title {
  background: url("../images/s2/s2-item1-title-2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(2) .s2__item1-subtitle {
  background: url("../images/s2/s2-item1-subtitle-2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(2) .s2__item1-subtitle::before {
  background: url("../images/s2/s2-item1-icon-2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(2) .s2__item1-img {
  background: url("../images/s2/s2-item1-img-2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(2) .s2__item1-img::before {
  background: url("../images/s2/s2-item1-pen-2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(3) .s2__item1-title {
  background: url("../images/s2/s2-item1-title-3.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(3) .s2__item1-subtitle {
  background: url("../images/s2/s2-item1-subtitle-3.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(3) .s2__item1-subtitle::before {
  background: url("../images/s2/s2-item1-icon-3.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(3) .s2__item1-img {
  background: url("../images/s2/s2-item1-img-3.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item1:nth-child(3) .s2__item1-img::before {
  background: url("../images/s2/s2-item1-pen-3.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .s2__item1:first-child {
    margin-top: 0;
  }
}
.s2__item1:first-child::after {
  content: "";
  display: block;
  width: 94px;
  height: 30px;
  background: url("../images/s2/s2-item1-bg-1.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 20px);
  right: -92px;
}
@media (max-width: 1399px) {
  .s2__item1:first-child::after {
    width: 74px;
    height: 22px;
    right: -80px;
  }
}
@media (max-width: 1199px) {
  .s2__item1:first-child::after {
    width: 54px;
    height: 18px;
    right: -60px;
  }
}
@media (max-width: 991px) {
  .s2__item1:first-child::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    right: calc(50% - 27px);
    top: auto;
    bottom: -60px;
  }
}
.s2__item1:nth-child(2)::after {
  content: "";
  display: block;
  width: 94px;
  height: 30px;
  background: url("../images/s2/s2-item1-bg-2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 20px);
  right: -92px;
}
@media (max-width: 1399px) {
  .s2__item1:nth-child(2)::after {
    width: 70px;
    height: 23px;
    right: -74px;
  }
}
@media (max-width: 1199px) {
  .s2__item1:nth-child(2)::after {
    width: 50px;
    height: 16px;
    right: -58px;
  }
}
@media (max-width: 991px) {
  .s2__item1:nth-child(2)::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    right: calc(50% - 27px);
    top: auto;
    bottom: -60px;
  }
}
.s2__item1:nth-child(2) .s2__item1-img::before {
  -webkit-animation-name: ani-to-left;
          animation-name: ani-to-left;
}
.s2__item1-title {
  width: 100%;
  height: 124px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .s2__item1-title {
    height: 94px;
  }
}
.s2__item1-subtitle {
  width: 100%;
  height: 100px;
  position: relative;
  margin-top: 20px;
  text-indent: -9999px;
}
@media (max-width: 1399px) {
  .s2__item1-subtitle {
    height: 80px;
  }
}
.s2__item1-subtitle::before {
  content: "";
  display: block;
  width: 32px;
  height: 20px;
  position: absolute;
  top: -8px;
  right: 34px;
  z-index: 1;
  -webkit-animation: ani-light 2s ease infinite;
          animation: ani-light 2s ease infinite;
}
@media (max-width: 1399px) {
  .s2__item1-subtitle::before {
    top: -18px;
    right: 22px;
  }
}
.s2__item1-box {
  border: 3px solid #dcecff;
  width: 340px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10em;
  padding: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1399px) {
  .s2__item1-box {
    width: 280px;
    height: 280px;
  }
}
@media (max-width: 1199px) {
  .s2__item1-box {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 991px) {
  .s2__item1-box {
    width: 280px;
    height: 280px;
  }
}
@media (max-width: 767px) {
  .s2__item1-box {
    width: 250px;
    height: 250px;
  }
}
.s2__item1-img {
  background: #5686b0;
  height: 322px;
  border-radius: 10em;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .s2__item1-img {
    height: 100%;
  }
}
.s2__item1-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-animation: ani-to-bottom 2s ease infinite;
          animation: ani-to-bottom 2s ease infinite;
}
.s2__wrap2 {
  background: #c9ccc5;
  border-top-right-radius: 198px;
  border-bottom-left-radius: 198px;
  padding-top: 136px;
  padding-bottom: 130px;
}
@media (max-width: 1199px) {
  .s2__wrap2 {
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }
}
@media (max-width: 767px) {
  .s2__wrap2 {
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.s2__thirdttile {
  font-size: 1.875rem;
  font-weight: 700;
  color: #4f4c4b;
  letter-spacing: 0.075em;
}
@media (max-width: 1199px) {
  .s2__thirdttile {
    font-size: 1.625rem;
  }
}
@media (max-width: 767px) {
  .s2__thirdttile {
    font-size: 1.375rem;
  }
}
.s2__text {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #4f4c4b;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .s2__text {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .s2__text {
    font-size: 1.125rem;
  }
}
.s2__content {
  text-align: center;
}
.s2__block2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .s2__block2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
}
.s2__item2 {
  margin-left: 52px;
  margin-right: 52px;
  position: relative;
}
@media (max-width: 767px) {
  .s2__item2 {
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}
.s2__item2::before {
  content: "";
  display: block;
  position: absolute;
}
.s2__item2:nth-child(1)::before {
  background: url("../images/s2/s2-item2-icon-1.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.s2__item2:nth-child(2)::before {
  background: url("../images/s2/s2-item2-icon-2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .s2__item2:first-child {
    margin-top: 0;
  }
}
.s2__item2:first-child::before {
  width: 158px;
  height: 90px;
  left: -98px;
  bottom: -5px;
}
@media (max-width: 991px) {
  .s2__item2:first-child::before {
    width: 120px;
    height: 70px;
    left: -70px;
    bottom: 5px;
  }
}
@media (max-width: 480px) {
  .s2__item2:first-child::before {
    width: 100px;
    height: 60px;
    left: -50px;
    bottom: 15px;
  }
}
@media (max-width: 374px) {
  .s2__item2:first-child::before {
    left: -25px;
    bottom: -15px;
  }
}
.s2__item2:last-child::before {
  width: 370px;
  height: 122px;
  top: 112px;
  left: -35px;
  -webkit-animation: ani-light 1.2s ease infinite;
          animation: ani-light 1.2s ease infinite;
}
@media (max-width: 991px) {
  .s2__item2:last-child::before {
    width: 300px;
    left: -30px;
    top: 60px;
  }
}
.s2__item2:last-child .s2__item2-title {
  background: #4f4c4b;
  color: #ffffff;
}
.s2__item2-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #4f4c4b;
  letter-spacing: 0.075em;
  background: #ffffff;
  border: 1px solid #4f4c4b;
  width: 272px;
  padding: 16px;
  border-radius: 10em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .s2__item2-title {
    width: 220px;
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .s2__item2-title {
    width: 180px;
    font-size: 1.125rem;
    padding: 12px;
  }
}
.s2__item2-img {
  margin-top: 25px;
}
@media (max-width: 991px) {
  .s2__item2-img {
    width: 250px;
    margin-top: 15px;
  }
}

/*-- s3 --*/
.s3 {
  overflow: hidden;
}
.s3__wrap1 {
  padding-top: 80px;
  padding-bottom: 154px;
  position: relative;
}
@media (max-width: 767px) {
  .s3__wrap1 {
    padding-bottom: 60px;
  }
}
.s3__btn {
  font-size: 1.125rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.05em;
  color: #5686b0;
  width: 202px;
  margin-left: auto;
}
@media (max-width: 1399px) {
  .s3__btn {
    width: 250px;
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .s3__btn {
    padding-right: 0;
    width: 220px;
  }
}
@media (max-width: 991px) {
  .s3__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .s3__btn {
    font-size: 1rem;
  }
}
@media (max-width: 374px) {
  .s3__btn {
    font-size: 0.875rem;
  }
}
.s3__btn-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .s3__btn-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 20%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0;
  }
}
.s3__btn-item .highlight {
  font-size: 1.6667em;
  line-height: 1;
}
.s3__btn-item.active .s3__btn-size {
  background: #5686b0;
  color: #ffffff;
  border-radius: 10em;
  font-weight: 700;
}
.s3__btn-item.active .s3__btn-qty {
  opacity: 1;
}
.s3__btn-item:first-child {
  margin-top: 0;
}
.s3__btn-size {
  padding: 4px;
  width: 118px;
  text-align: center;
}
@media (max-width: 767px) {
  .s3__btn-size {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .s3__btn-size {
    width: 68px;
    height: 68px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 8px;
  }
}
@media (max-width: 374px) {
  .s3__btn-size {
    width: 58px;
    height: 58px;
  }
}
.s3__btn-qty {
  position: relative;
  margin-left: 30px;
  opacity: 0;
}
@media (max-width: 991px) {
  .s3__btn-qty {
    margin-left: 0;
    margin-top: 30px;
  }
}
.s3__btn-qty::before {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: #5686b0;
  border-radius: 10em;
  position: absolute;
  top: 50%;
  left: -22px;
}
@media (max-width: 991px) {
  .s3__btn-qty::before {
    top: -22px;
    left: 50%;
    width: 1px;
    height: 14px;
  }
}
.s3__link {
  font-size: 1.125rem;
  color: #4f4c4b;
  letter-spacing: 0.2em;
  padding-right: 62px;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  display: block;
  text-align: right;
  margin-top: 50px;
  width: 200px;
}
@media (max-width: 1399px) {
  .s3__link {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .s3__link {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .s3__link {
    font-size: 1rem;
    width: 180px;
  }
}
.s3__link::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: #5686b0;
  position: absolute;
  top: 50%;
  left: 154px;
}
@media (max-width: 767px) {
  .s3__link::after {
    left: 134px;
  }
}
@media (hover: hover) {
  .s3__link:hover {
    color: #5686b0;
  }
}
.s3__content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  margin-top: 155px;
}
@media (max-width: 991px) {
  .s3__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }
}
.s3__head {
  width: 460px;
  padding-right: 57px;
  padding-top: 40px;
}
@media (max-width: 1799px) {
  .s3__head {
    width: 300px;
    padding-right: 30px;
  }
}
@media (max-width: 1399px) {
  .s3__head {
    width: 250px;
  }
}
@media (max-width: 1199px) {
  .s3__head {
    padding-right: 15px;
    width: 280px;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .s3__head {
    width: 100%;
    padding-right: 0;
  }
}
.s3__body {
  width: calc(100% - 460px);
}
@media (max-width: 1799px) {
  .s3__body {
    width: calc(100% - 300px);
  }
}
@media (max-width: 1399px) {
  .s3__body {
    width: calc(100% - 250px);
  }
}
@media (max-width: 1199px) {
  .s3__body {
    width: calc(100% - 280px);
  }
}
@media (max-width: 991px) {
  .s3__body {
    width: 100%;
    margin-top: 30px;
  }
}
.s3__body-item {
  width: 1036px;
  text-align: center;
  display: none;
}
@media (max-width: 1399px) {
  .s3__body-item {
    width: 100%;
    padding-right: 100px;
  }
}
@media (max-width: 1199px) {
  .s3__body-item {
    padding-right: 60px;
  }
}
@media (max-width: 991px) {
  .s3__body-item {
    padding-right: 0;
  }
}
.s3__block {
  width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1799px) {
  .s3__block {
    width: 680px;
  }
}
@media (max-width: 1399px) {
  .s3__block {
    width: 500px;
  }
}
@media (max-width: 1199px) {
  .s3__block {
    width: 360px;
  }
  .s3__block img {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .s3__block {
    width: 340px;
  }
}
@media (max-width: 374px) {
  .s3__block {
    width: 100%;
  }
}
.s3__block .slick-track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.s3__box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1199px) {
  .s3__box img {
    width: 90%;
  }
}
.s3__box .s3__block {
  margin-left: 0;
  margin-right: 0;
}
.s3__box-prev, .s3__box-next {
  opacity: 0.3;
  width: 167px;
  text-align: center;
  position: relative;
}
@media (max-width: 1399px) {
  .s3__box-prev, .s3__box-next {
    width: 125px;
  }
}
@media (max-width: 1199px) {
  .s3__box-prev, .s3__box-next {
    width: 90px;
  }
}
@media (max-width: 767px) {
  .s3__box-prev, .s3__box-next {
    display: none;
  }
}
.s3__box-prev::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #fff 10%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.s3__box-next::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(10%, #fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to left, #fff 10%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.s3__wrap2 {
  background: #bdcace;
  border-top-right-radius: 198px;
  padding-top: 35px;
  padding-bottom: 48px;
}
@media (max-width: 1199px) {
  .s3__wrap2 {
    border-top-right-radius: 100px;
  }
}
@media (max-width: 767px) {
  .s3__wrap2 {
    border-top-right-radius: 40px;
  }
}

/*-- s4 --*/
.s4 {
  overflow: hidden;
  background: #bdcace;
  border-top-right-radius: 198px;
  padding-top: 35px;
  padding-bottom: 48px;
}
@media (max-width: 1199px) {
  .s4 {
    border-top-right-radius: 100px;
  }
}
@media (max-width: 767px) {
  .s4 {
    border-top-right-radius: 40px;
  }
}
.s4__block {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -54px;
}
@media (max-width: 1799px) {
  .s4__block {
    margin-top: 0;
  }
}
@media (max-width: 1199px) {
  .s4__block {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .s4__block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.s4__img {
  position: relative;
}
.s4__img img {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
.s4__icon {
  width: 176px;
  height: 58px;
  position: absolute;
  top: 135px;
  right: -64px;
}
@media (max-width: 1399px) {
  .s4__icon {
    top: 100px;
    right: -60px;
    width: 120px;
    height: 48px;
  }
}
@media (max-width: 991px) {
  .s4__icon {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    right: calc(50% + 140px);
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .s4__icon {
    width: 80px;
    height: 42px;
  }
}
@media (max-width: 480px) {
  .s4__icon {
    right: calc(50% + 100px);
  }
}
.s4__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/s4/s4-icon.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: ani-to-right 1.4s ease infinite;
          animation: ani-to-right 1.4s ease infinite;
}
.s4__subtitle {
  position: absolute;
  top: 30px;
  right: calc(50% - 540px);
}
@media (max-width: 1399px) {
  .s4__subtitle {
    right: calc(50% - 520px);
  }
}
@media (max-width: 1199px) {
  .s4__subtitle {
    right: calc(50% - 460px);
    width: 280px;
  }
}
@media (max-width: 991px) {
  .s4__subtitle {
    position: relative;
    top: auto;
    right: auto;
    width: 300px;
    margin-top: 30px;
    padding-left: 15px;
  }
}
@media (max-width: 480px) {
  .s4__subtitle {
    width: 260px;
    padding-left: 25px;
  }
}
.s4__img2 {
  margin-top: 212px;
  margin-left: 40px;
}
.s4__img2 img {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
@media (max-width: 991px) {
  .s4__img2 {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .s4__img2 img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .hide--sm {
    display: none;
  }
}

.show--lg {
  display: none;
}
@media (max-width: 1399px) {
  .show--lg {
    display: block;
  }
}

.show--sm {
  display: none;
}
@media (max-width: 767px) {
  .show--sm {
    display: block;
  }
}

.title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.title__item {
  width: 430px;
  height: 90px;
  text-indent: -9999px;
}
@media (max-width: 1199px) {
  .title__item {
    width: 350px;
    height: 73px;
  }
}
@media (max-width: 767px) {
  .title__item {
    width: 260px;
    height: 54px;
  }
}
.title__item--1 {
  background: url("../images/s1/title.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.title__item--2 {
  background: url("../images/s2/title.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.title__item--3 {
  background: url("../images/s3/title.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.title__item--4 {
  background: url("../images/s4/title.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.title__item--4 {
  height: 156px;
}
@media (max-width: 991px) {
  .title__item--4 {
    height: 130px;
  }
}
.title::after {
  content: "";
  display: inline-block;
  width: 256px;
  height: 22px;
  background: url("../images/common/title-bg.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .title::after {
    width: 200px;
    height: 18px;
  }
}
@media (max-width: 767px) {
  .title::after {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.gotop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 10;
  background: url("../images/top.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  cursor: pointer;
  display: none;
}
@media (max-width: 1199px) {
  .gotop {
    width: 60px;
    height: 60px;
  }
}
@media (hover: hover) {
  .gotop:hover {
    -webkit-animation: ani-hover-scale 0.8s ease infinite;
            animation: ani-hover-scale 0.8s ease infinite;
  }
}

@media (max-width: 991px) {
  .offset--y {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
  }
}