@charset "UTF-8";
/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* svg 線を描くアニメーション */
.stroke path {
  fill: transparent;
  stroke: transparent;
}

.is-stroke path {
  -webkit-animation: stroke 1.5s ease-in-out forwards;
          animation: stroke 1.5s ease-in-out forwards;
  fill: #fff;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2;
}

@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #fff;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* ふわふわ
======================================== */
.anime-upDown {
  -webkit-animation: 3s upDown infinite;
          animation: 3s upDown infinite;
}

@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn, .fadeUpDown, .fadeLeftRight, .fadeRightLeft, .fadeInOpacity, .fv_fadeRightLeft, .fv_fadeInOpacity,
.fadeInSP, .fadeUpDownSP, .fadeLeftRightSP, .fadeRightLeftSP {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeInSP {
  -webkit-animation-name: fadeInAnimeSP;
          animation-name: fadeInAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDown {
  -webkit-animation-name: fadeUpDownAnime;
          animation-name: fadeUpDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  -webkit-animation-name: fadeUpDownAnimeSP;
          animation-name: fadeUpDownAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeLeftRight {
  -webkit-animation-name: fadeLeftRightAnime;
          animation-name: fadeLeftRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  -webkit-animation-name: fadeLeftRightAnimeSP;
          animation-name: fadeLeftRightAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeft {
  -webkit-animation-name: fadeRightLeftAnime;
          animation-name: fadeRightLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  -webkit-animation-name: fadeRightLeftAnimeSP;
          animation-name: fadeRightLeftAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeInOpacity {
  -webkit-animation-name: fadeInOpacityAnime;
          animation-name: fadeInOpacityAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpSP {
  -webkit-animation-name: fadeUpAnimeSP;
          animation-name: fadeUpAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.parallax {
  overflow: hidden;
}
.parallax img {
  -webkit-transform: translateZ(0) scale(1.2, 1.2);
          transform: translateZ(0) scale(1.2, 1.2);
}

/*　遅延時間
======================================== */
.delay-time_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-time_n1 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_n2 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

html {
  margin-top: 0 !important;
}

body {
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.111vw, 16px);
  color: #28435F;
  background-color: #E3EDF7;
  line-height: 1.4375;
  width: 100%;
  overflow-x: hidden;
}

main {
  margin-top: 100px;
}
@media (max-width: 768px) {
  main {
    margin-top: 65px;
  }
}
main.top {
  margin-top: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #28435F;
}

h2, h3, h4, h5, h6 {
  font-size: clamp(12px, 1.111vw, 16px);
}

ol, ul {
  list-style-type: none;
}

img, video, iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

.full-size {
  margin: 0 calc(50% - 50vw);
}

/* section common
====================================== */
.section__inner {
  width: 80%;
  padding: clamp(5em, 8.3333vw, 10em) 0;
  max-width: 1520px;
  margin: auto;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .section__inner {
    padding: 5em 0;
    width: 89.333%;
  }
}
.section__inner.--s {
  max-width: 880px;
}
.section__inner.--l {
  width: 88.889%;
  max-width: 1280px;
}
.section__inner.--center {
  text-align: center;
}
.section__title {
  font-size: clamp(0.75em, 1.1111vw, 1em);
  margin-bottom: 6em;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .section__title {
    margin-bottom: 3em;
  }
}
.section__title::before {
  content: "";
  display: block;
  width: 10.856875em;
  height: 10.880625em;
  background: url(../img/common/icons/icon_piece-blue.svg) no-repeat center center/contain;
  position: absolute;
  top: -3em;
  left: -6em;
  z-index: -1;
}
@media (max-width: 768px) {
  .section__title::before {
    left: -3em;
  }
}
.section__title.--center {
  text-align: center;
}
.section__title.--white .section__title-en, .section__title.--white .section__title-jp {
  color: #fff;
}
.section__title.--white::before {
  background: url(../img/common/icons/icon_piece-gray.svg) no-repeat center center/contain;
}
.section__title.--blue::before {
  background: url(../img/common/icons/icon_piece-white.svg) no-repeat center center/contain;
}
.section__title-en, .section__title-jp {
  display: block;
}
.section__title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 3em;
  letter-spacing: 0.05em;
  line-height: 1.23;
  font-weight: 600;
  margin-bottom: 3px;
}
.section__title-jp {
  color: #3C95FA;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.section__text {
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section__text {
    font-size: 0.875em;
    line-height: 1.8;
  }
}

.footer {
  background-color: rgba(248, 249, 251, 0.8);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 6.5em 6.5em 0 0;
  background-color: #28435F;
}
@media (max-width: 768px) {
  .footer::before {
    border-radius: 3em 3em 0 0;
  }
}
.footer__piece {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 62.4vw;
  height: 53.3vw;
  border-radius: 0 6.5em 0 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer__piece {
    width: 75vw;
    height: 64vw;
    border-radius: 0 3em 0 0;
  }
}
.footer-contact__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(93% - 20.625em);
  gap: 2em 6%;
}
@media (max-width: 1024px) {
  .footer-contact__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer-contact__contents {
    width: 100%;
  }
}
.footer-contact__inner {
  padding-top: clamp(8em, 10.41667vw, 12.5em);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #F5F3EF;
  gap: 2em 6%;
}
@media (max-width: 1024px) {
  .footer-contact__inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .footer-contact__inner {
    padding-top: 5em;
    padding-bottom: 4em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-contact__title {
  padding-top: 0;
  margin-bottom: 0;
}
.footer-contact__title::before {
  display: none;
}
.footer-contact__text {
  font-size: clamp(1em, 1.04167vw, 1.25em);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
}
.footer__inner {
  padding-bottom: 7.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-top: 4em;
    padding-bottom: 5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    max-width: 150px;
  }
}
.footer__nav {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .footer__nav {
    margin-bottom: 2em;
  }
}
.footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5em;
}
@media (max-width: 768px) {
  .footer__nav-list {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1rem;
  }
}
.footer__nav-item {
  height: 100%;
}
.footer__nav-item > a {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375em;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.75em 0;
}
@media (max-width: 768px) {
  .footer__nav-item > a {
    font-size: 0.8125em;
  }
}
.footer__nav-item > a:hover {
  color: #F6B500;
}
.footer__privacy {
  text-align: right;
  margin-bottom: 3.5em;
}
.footer__privacy a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75em;
  color: #fff;
}
.footer__privacy a:hover {
  opacity: 0.7;
}
.footer__copy {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375em;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  text-align: right;
  margin-bottom: 5em;
}
.footer__pageTop {
  width: 7.5em;
  height: 7.5em;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer__pageTop {
    width: 6.25em;
    height: 6.25em;
  }
}
.footer__pageTop a {
  border: 1.5px solid #F5F3EF;
  border-radius: 16px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__pageTop a:hover {
  background-color: #fff;
  border: 1.5px solid #28435F;
}
.footer__pageTop a:hover .image::before {
  -webkit-transform: rotate(-90deg) translateX(100%);
          transform: rotate(-90deg) translateX(100%);
}
.footer__pageTop a:hover .image::after {
  -webkit-transform: rotate(-90deg) translateX(0);
          transform: rotate(-90deg) translateX(0);
}
.footer__pageTop a:hover .text {
  color: #28435F;
}
.footer__pageTop .image {
  width: 1.5em;
  height: 1.5em;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5em;
}
.footer__pageTop .image::before, .footer__pageTop .image::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer__pageTop .image::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background: url(../img/common/icons/icon_arrow-white.svg) no-repeat center center/contain;
}
.footer__pageTop .image::after {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-90deg) translateX(-100%);
          transform: rotate(-90deg) translateX(-100%);
  background: url(../img/common/icons/icon_arrow-navy.svg) no-repeat center center/contain;
}
.footer__pageTop .text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375em;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
  background: #F4F7FA;
}
@media (max-width: 768px) {
  .header {
    height: 65px;
  }
}
.header.--is_front {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.7778% 0 3.3333%;
}
.header__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5em;
}
@media (max-width: 1024px) {
  .header__left {
    gap: 2em;
  }
}
.header__logo a {
  display: block;
  width: clamp(120px, 12.7778vw, 184px);
}
@media (max-width: 768px) {
  .header__logo a {
    width: 131.5px;
  }
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.header__nav {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 2.7778vw, 40px);
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-item {
  height: 100%;
}
.header__nav-item > a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375em;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  padding: 1rem 1.3333em;
}
.header__nav-item > a:hover {
  color: #F6B500;
}
.header__nav-contact a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5625em;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background-color: #F6B500;
  border: 2px solid #F6B500;
  padding: 1rem 1.6em;
  border-radius: 60px;
  color: #fff;
}
@media (max-width: 768px) {
  .header__nav-contact a {
    width: 3rem;
    height: 3rem;
    padding: 0.5em;
  }
}
.header__nav-contact a::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/icons/icon_mail-white.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .header__nav-contact a > span {
    display: none;
  }
}
.header__nav-contact a:hover {
  background-color: #fff;
  color: #F6B500;
}
.header__nav-contact a:hover::after {
  background: url(../img/common/icons/icon_mail-yellow.svg) no-repeat center center/contain;
}
.header__btn {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 8;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75em;
  line-height: 1;
  letter-spacing: 0.05em;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #F6B500;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
@media (max-width: 768px) {
  .header__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__btn .bar {
  background-color: #F6B500;
  display: block;
  width: 1.75rem;
  height: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100vw;
  height: auto;
  overflow: scroll;
  background-color: rgba(255, 255, 255, 0.9);
}
.header__menu-inner {
  margin: 0 auto;
}
.header__menu-list {
  margin-bottom: 0.5rem;
}
.header__menu-item a {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
  padding: 0.5rem 0;
}
.header__menu-item a:hover {
  color: #F6B500;
}
.header__menu-contact {
  max-width: 250px;
  margin: 0 auto;
}
.header__menu-contact a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #F6B500;
  padding: 0.5em;
  border-radius: 20px;
}
.header__menu-contact a:hover {
  background-color: #28435F;
  color: #fff;
}
.header__menu-contact a:hover::before {
  background-color: #fff;
}
.header__menu-info-item:nth-child(n+2) {
  margin-top: 0.5rem;
}
.header__menu-info-item a {
  font-size: 0.75em;
  font-weight: 400;
  line-height: 2;
}
.header__menu-info-item a:hover {
  color: #28435F;
}

.is-open .header__inner {
  height: 65px;
}
.is-open .header__menu {
  display: block;
}
.is-open .header__btn .bar:nth-child(1) {
  -webkit-transform: translateY(0.4rem) rotate(45deg);
          transform: translateY(0.4rem) rotate(45deg);
}
.is-open .header__btn .bar:nth-child(2) {
  opacity: 0;
}
.is-open .header__btn .bar:nth-child(3) {
  -webkit-transform: translateY(-0.4rem) rotate(-45deg);
          transform: translateY(-0.4rem) rotate(-45deg);
}

/* btn 
========================================= */
.btn {
  position: relative;
}
.btn > a, .btn > span, .btn > input {
  font-size: 0.9375rem;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__arrow a {
  font-size: 1.25em;
  font-weight: 500;
  color: #3C95FA;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625em 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .btn__arrow a {
    font-size: 1em;
  }
}
.btn__arrow a .text {
  position: relative;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  overflow: hidden;
}
.btn__arrow a .text .main {
  opacity: 0;
}
.btn__arrow a .text::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn__arrow a .text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.btn__arrow a .image {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.btn__arrow a .image::before, .btn__arrow a .image::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  background: url(../img/common/icons/icon_arrow-blue.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .btn__arrow a .image::before, .btn__arrow a .image::after {
    width: 1.25em;
    height: 1.25em;
  }
}
.btn__arrow a .image::before {
  position: absolute;
  -webkit-transform: translate(-100%, 100%) scale(0);
          transform: translate(-100%, 100%) scale(0);
}
.btn__arrow a::before, .btn__arrow a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3C95FA;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.btn__arrow a::before {
  -webkit-transform: translateX(-100%) scale(0);
          transform: translateX(-100%) scale(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.btn__arrow a:hover .text .main {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.btn__arrow a:hover .text::before {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.btn__arrow a:hover .text::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.btn__arrow a:hover .image::after {
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
}
.btn__arrow a:hover .image::before {
  -webkit-transform: translate(0) scale(1);
          transform: translate(0) scale(1);
}
.btn__arrow a:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn__arrow a:hover::after {
  -webkit-transform: translateX(100%) scale(0);
          transform: translateX(100%) scale(0);
}
.btn__arrow.--white a .text {
  color: #fff;
}
.btn__arrow.--white a .image::before, .btn__arrow.--white a .image::after {
  background: url(../img/common/icons/icon_arrow-white.svg) no-repeat center center/contain;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn__arrow.--white a .image::before {
  -webkit-transform: translate(-100%, 100%) scale(0) rotate(-45deg);
          transform: translate(-100%, 100%) scale(0) rotate(-45deg);
}
.btn__arrow.--white a::before, .btn__arrow.--white a::after {
  background-color: #fff;
}
.btn__arrow.--white a:hover .image::after {
  -webkit-transform: translate(100%, -100%) rotate(-45deg);
          transform: translate(100%, -100%) rotate(-45deg);
}
.btn__arrow.--white a:hover .image::before {
  -webkit-transform: translate(0) scale(1) rotate(-45deg);
          transform: translate(0) scale(1) rotate(-45deg);
}
.btn__arrow.--bottom a .text::before {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.btn__arrow.--bottom a .text::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.btn__arrow.--bottom a .image::before {
  -webkit-transform: translate(-100%, -100%) scale(0) rotate(90deg);
          transform: translate(-100%, -100%) scale(0) rotate(90deg);
}
.btn__arrow.--bottom a .image::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.btn__arrow.--bottom a:hover .text::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.btn__arrow.--bottom a:hover .text::after {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.btn__arrow.--bottom a:hover .image::before {
  -webkit-transform: translate(0) scale(1) rotate(90deg);
          transform: translate(0) scale(1) rotate(90deg);
}
.btn__arrow.--bottom a:hover .image::after {
  -webkit-transform: translate(100%, 100%) rotate(90deg);
          transform: translate(100%, 100%) rotate(90deg);
}
.btn__white {
  width: 100%;
  max-width: 20.625em;
  height: 5.5em;
}
@media (max-width: 768px) {
  .btn__white {
    max-width: 20em;
    height: 4em;
  }
}
.btn__white a {
  font-size: 1.25em;
  font-weight: 500;
  color: #28435F;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
  background-color: #fff;
  height: 100%;
  border-radius: 44px;
  border: 1.5px solid #28435F;
  padding: 0.625em 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .btn__white a {
    font-size: 1em;
    gap: 1em;
  }
}
.btn__white a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #28435F;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.5s ease, height 0.5s ease;
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}
.btn__white a .image {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.btn__white a .image::before, .btn__white a .image::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media (max-width: 768px) {
  .btn__white a .image::before, .btn__white a .image::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.btn__white a .image::before {
  position: absolute;
  -webkit-transform: translate(-100%, 100%) scale(0) rotate(-45deg);
          transform: translate(-100%, 100%) scale(0) rotate(-45deg);
  background: url(../img/common/icons/icon_arrow-white.svg) no-repeat center center/contain;
}
.btn__white a .image::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: url(../img/common/icons/icon_arrow-navy.svg) no-repeat center center/contain;
}
.btn__white a:hover {
  background-color: #28435F;
  color: #fff;
  border: 1.5px solid #fff;
}
.btn__white a:hover::before {
  width: 330px;
  height: 330px;
}
.btn__white a:hover .image::after {
  -webkit-transform: translate(100%, -100%) rotate(-45deg);
          transform: translate(100%, -100%) rotate(-45deg);
}
.btn__white a:hover .image::before {
  -webkit-transform: translate(0) scale(1) rotate(-45deg);
          transform: translate(0) scale(1) rotate(-45deg);
}

/* TOP Works
========================================= */
.swiper-button-next, .swiper-button-prev {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff !important;
  letter-spacing: 0.05em;
  width: 7.5em !important;
  height: 7.5em !important;
  border: 1.5px solid #fff;
  border-radius: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-top: 0 !important;
  top: inherit !important;
  left: inherit !important;
  right: inherit !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative !important;
}
@media (max-width: 768px) {
  .swiper-button-next, .swiper-button-prev {
    width: 5em !important;
    height: 5em !important;
  }
}
.swiper-button-next::after, .swiper-button-prev::after {
  display: none !important;
}
.swiper-button-next .image, .swiper-button-prev .image {
  overflow: hidden;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}
@media (max-width: 768px) {
  .swiper-button-next .image, .swiper-button-prev .image {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.swiper-button-next .image::before, .swiper-button-next .image::after, .swiper-button-prev .image::before, .swiper-button-prev .image::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .swiper-button-next .image::before, .swiper-button-next .image::after, .swiper-button-prev .image::before, .swiper-button-prev .image::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.swiper-button-next .image::before, .swiper-button-prev .image::before {
  background: url(../img/common/icons/icon_arrow-white.svg) no-repeat center center/contain;
}
.swiper-button-next .image::after, .swiper-button-prev .image::after {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/common/icons/icon_arrow-navy.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .swiper-button-next .text, .swiper-button-prev .text {
    font-size: 0.75rem;
  }
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: #fff;
  border: 1.5px solid #28435F;
  color: #28435F !important;
}

.swiper-button-next {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .swiper-button-next {
    margin-bottom: 0;
  }
}
.swiper-button-next .image::after {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.swiper-button-next:hover .image::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.swiper-button-next:hover .image::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.swiper-button-prev .image::before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.swiper-button-prev .image::after {
  -webkit-transform: translateX(100%) rotate(-180deg);
          transform: translateX(100%) rotate(-180deg);
}
.swiper-button-prev:hover .image::before {
  -webkit-transform: translateX(-100%) rotate(-180deg);
          transform: translateX(-100%) rotate(-180deg);
}
.swiper-button-prev:hover .image::after {
  -webkit-transform: translateX(0) rotate(-180deg);
          transform: translateX(0) rotate(-180deg);
}