@charset "UTF-8";
.dispPC {
  display: block;
}
@media screen and (max-width: 840px) {
  .dispPC {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .dispPC {
    display: none;
  }
}

.dispOnPC {
  display: none;
}
@media screen and (max-width: 1060px) {
  .dispOnPC {
    display: block;
  }
}

.dispOnLTB {
  display: none;
}
@media screen and (max-width: 960px) {
  .dispOnLTB {
    display: block;
  }
}

.dispOffmTB {
  display: block;
}
@media screen and (max-width: 950px) {
  .dispOffmTB {
    display: none;
  }
}

.dispOnMTB {
  display: none;
}
@media screen and (max-width: 950px) {
  .dispOnMTB {
    display: block;
  }
}

.dispOffTB {
  display: block;
}
@media screen and (max-width: 840px) {
  .dispOffTB {
    display: none;
  }
}

.dispOnTB {
  display: none;
}
@media screen and (max-width: 840px) {
  .dispOnTB {
    display: block;
  }
}

.dispSP {
  display: none;
}
@media screen and (max-width: 840px) {
  .dispSP {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .dispSP {
    display: block;
  }
}

.dispOnMSP {
  display: none;
}
@media screen and (max-width: 420px) {
  .dispOnMSP {
    display: block;
  }
}

/* ------------------------
html body基本設定
------------------------*/
html {
  width: 100%;
  height: 100%;
  font-size: 100%;
  overflow-y: auto;
  /* or scroll */
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6em;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.1em;
  font-feature-settings: "palt" 1;
  word-break: normal;
  hanging-punctuation: last allow-end;
  min-height: 100svh;
  max-width: 100%;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  min-height: -webkit-fill-available;
  opacity: 1;
  transition: opacity 1.5s ease;
  overflow: visible;
  margin: 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.innerPD25-20 {
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .innerPD25-20 {
    padding: 0 20px;
  }
}

.innerPD25-20-15 {
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .innerPD25-20-15 {
    padding: 0 20px;
  }
}
@media screen and (max-width: 378px) {
  .innerPD25-20-15 {
    padding: 0 15px;
  }
}

header {
  box-shadow: 0 10px 0 rgba(0, 0, 66, 0.5);
}
@media screen and (max-width: 1160px) {
  header {
    padding: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 0;
  }
}
header .header-Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  header .header-Wrap {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    margin-left: 20px;
  }
}
header .header-Logo {
  max-width: 284px;
}
@media screen and (max-width: 960px) {
  header .header-Logo {
    max-width: 220px;
  }
}
@media screen and (max-width: 960px) {
  header .header-Logo {
    max-width: 194px;
  }
}
@media screen and (max-width: 340px) {
  header .header-Logo {
    max-width: 165px;
  }
}
header .header-Logo a img {
  vertical-align: middle;
  width: 100%;
}
header .header-Link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 960px) {
  header .header-Link {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  header .header-Link {
    display: none;
  }
}
header .header-Link .headertext {
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 960px) {
  header .header-Link .headertext {
    font-size: 0.875rem;
  }
}
header .header-Link .headertext::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
header .header-Link .headerLink-Wrap {
  position: relative;
  display: inline-block;
  background-image: repeating-linear-gradient(90deg, #e30012, #e30012 10px, transparent 10px, transparent 20px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 4px;
}
header .header-Link .headerLink-Wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-image: repeating-linear-gradient(90deg, #ffeb00, #ffeb00 10px, transparent 10px, transparent 20px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
header .header-Link .headerLink-Wrap:hover::after {
  opacity: 1;
}
header .header-Link .headerLink-Wrap a {
  display: block;
  text-align: center;
  padding: 0 28px 4px 30px;
}
@media screen and (max-width: 960px) {
  header .header-Link .headerLink-Wrap a {
    padding: 0 20px 4px 20px;
  }
}
@media screen and (max-width: 767px) {
  header .header-Link .headerLink-Wrap a {
    padding: 0 10px 4px 10px;
  }
}
header .header-Link .headerLink-Wrap a span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000042;
}
@media screen and (max-width: 960px) {
  header .header-Link .headerLink-Wrap a span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  header .header-Link .headerLink-Wrap a span {
    font-size: 0.875rem;
  }
}
header .header-Link-SP {
  background-color: #014099;
  width: 37%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .header-Link-SP a {
  display: inline-block;
  width: 77%;
}
header .header-Link-SP a img {
  width: 100%;
}

#mainvisual {
  position: relative;
  background-image: url("../images/mv-bg_PC.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #mainvisual {
    padding-bottom: 40px;
  }
}
#mainvisual .mv-Wrap {
  padding-left: 25px;
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #mainvisual .mv-Wrap {
    padding-left: 0;
    padding-top: 120px;
  }
}
@media screen and (max-width: 580px) {
  #mainvisual .mv-Wrap {
    padding-top: 80px;
  }
}
@media screen and (max-width: 420px) {
  #mainvisual .mv-Wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#mainvisual .mv-Wrap .mv_PC {
  padding-right: 120px;
}
#mainvisual .mv-Wrap .mv_PC img {
  width: 100%;
}
#mainvisual .mv-Wrap .mv_SP img {
  width: 100%;
}

.cta-Wrap {
  position: relative;
  display: block;
  z-index: 5;
  height: 100px;
  display: flex;
  align-items: center;
  background: url("../images/cta-bg_PC.png"), linear-gradient(#014099, #014099);
  background-repeat: no-repeat, no-repeat;
  background-size: cover, auto;
}
@media screen and (max-width: 767px) {
  .cta-Wrap {
    height: 100px;
    background: url("../images/cta-bg_SP.png"), linear-gradient(#014099, #014099);
    background-repeat: no-repeat, no-repeat;
    background-size: cover, auto;
    background-position: right;
  }
}
@media screen and (max-width: 580px) {
  .cta-Wrap {
    height: 80px;
  }
}
@media screen and (max-width: 420px) {
  .cta-Wrap {
    height: 70px;
  }
}
@media screen and (max-width: 340px) {
  .cta-Wrap {
    height: 60px;
  }
}
.cta-Wrap.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(100% - 100px);
}
@media screen and (max-width: 580px) {
  .cta-Wrap.sticky {
    top: calc(100% - 80px);
  }
}
@media screen and (max-width: 420px) {
  .cta-Wrap.sticky {
    top: calc(100% - 70px);
  }
}
@media screen and (max-width: 340px) {
  .cta-Wrap.sticky {
    top: calc(100% - 60px);
  }
}
.cta-Wrap .cta-Link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1060px) {
  .cta-Wrap .cta-Link {
    padding: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .cta-Wrap .cta-Link {
    padding: 0;
    width: 92vw;
  }
}
.cta-Wrap .cta-Link .ctatext-Block {
  width: 66%;
}
@media screen and (max-width: 767px) {
  .cta-Wrap .cta-Link .ctatext-Block {
    width: 38%;
  }
}
.cta-Wrap .cta-Link .ctatext-Block img {
  width: 100%;
}
.cta-Wrap .cta-Link a {
  display: block;
  width: 30%;
  border-radius: 30px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .cta-Wrap .cta-Link a {
    width: 55%;
  }
}
.cta-Wrap .cta-Link a img {
  width: 100%;
}
.cta-Wrap .cta-Link a:hover {
  background-position: right center;
  background-size: 200% auto;
  animation: ripple 1.5s infinite;
  color: #fff;
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 #e30012;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(227, 0, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 0, 18, 0);
  }
}
.cta-Wrap .container {
  position: relative;
}

#voice {
  position: relative;
  z-index: 3;
  background: url("../images/voice-bg_PC.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
#voice::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: rgba(0, 0, 66, 0.3);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #voice {
    background: url("../images/voice-bg_SP.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#voice .voice-ttl-Block {
  background-color: rgba(0, 0, 66, 0.5);
  padding-top: 74px;
  padding-bottom: 74px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #voice .voice-ttl-Block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#voice .voice-ttl-Block .voice-ttl-cap {
  margin-bottom: 15px;
  display: inline-block;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1em;
  color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  #voice .voice-ttl-Block .voice-ttl-cap {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 580px) {
  #voice .voice-ttl-Block .voice-ttl-cap {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 420px) {
  #voice .voice-ttl-Block .voice-ttl-cap {
    font-size: 1.125rem;
  }
}
#voice .voice-ttl-Block .voice-ttl-cap::before {
  content: "";
  width: 30px;
  height: 40px;
  background-image: url("../images/btn-cap_L.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -40px;
}
@media screen and (max-width: 767px) {
  #voice .voice-ttl-Block .voice-ttl-cap::before {
    width: 24px;
    height: 32px;
  }
}
@media screen and (max-width: 580px) {
  #voice .voice-ttl-Block .voice-ttl-cap::before {
    width: 20px;
    height: 26px;
    left: -30px;
  }
}
@media screen and (max-width: 420px) {
  #voice .voice-ttl-Block .voice-ttl-cap::before {
    width: 15px;
    height: 22px;
    left: -20px;
  }
}
#voice .voice-ttl-Block .voice-ttl-cap::after {
  content: "";
  width: 30px;
  height: 40px;
  background-image: url("../images/btn-cap_R.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: -40px;
}
@media screen and (max-width: 767px) {
  #voice .voice-ttl-Block .voice-ttl-cap::after {
    width: 24px;
    height: 32px;
  }
}
@media screen and (max-width: 580px) {
  #voice .voice-ttl-Block .voice-ttl-cap::after {
    width: 20px;
    height: 26px;
    right: -30px;
  }
}
@media screen and (max-width: 420px) {
  #voice .voice-ttl-Block .voice-ttl-cap::after {
    width: 15px;
    height: 22px;
    right: -20px;
  }
}
#voice .voice-ttl-Block .voice-ttl {
  color: #ffeb00;
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  #voice .voice-ttl-Block .voice-ttl {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 580px) {
  #voice .voice-ttl-Block .voice-ttl {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 420px) {
  #voice .voice-ttl-Block .voice-ttl {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 340px) {
  #voice .voice-ttl-Block .voice-ttl {
    font-size: 1.25rem;
  }
}
#voice .voice-ttl-Block .voice-ttl .ttl_small {
  font-size: 2.1875rem;
}
@media screen and (max-width: 767px) {
  #voice .voice-ttl-Block .voice-ttl .ttl_small {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 580px) {
  #voice .voice-ttl-Block .voice-ttl .ttl_small {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 420px) {
  #voice .voice-ttl-Block .voice-ttl .ttl_small {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 340px) {
  #voice .voice-ttl-Block .voice-ttl .ttl_small {
    font-size: 1rem;
  }
}
#voice .voice-comment-Block {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #voice .voice-comment-Block {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
#voice .voice-comment-Block .voic-comment {
  max-width: 840px;
  margin: 0 auto;
}
#voice .voice-comment-Block .voic-comment img {
  width: 100%;
}

#achieve {
  margin-top: -1px;
  position: relative;
  z-index: 4;
  box-shadow: 0 10px 0 rgba(0, 0, 66, 0.3);
  background: url("../images/achieve-bg_PC.svg"), linear-gradient(#014099, #014099);
  background-repeat: no-repeat, no-repeat;
  background-size: cover, auto;
  padding-top: 88px;
  padding-bottom: 100px;
}
#achieve::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(0, 0, 66, 0.5);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #achieve {
    background: url("../images/achieve-bg_SP.svg"), linear-gradient(0% #014099, 100% #014099);
    background-repeat: no-repeat, no-repeat;
    background-size: cover, auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#achieve .achieve_Wrap {
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  #achieve .achieve_Wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#achieve .achieve_ttl {
  width: 100%;
}
#achieve .achieve_ttl img {
  width: 100%;
}
#achieve .graph-Block {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #achieve .graph-Block {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 420px) {
  #achieve .graph-Block {
    margin-bottom: 25px;
  }
}
#achieve .graph-Block .graph-Wrap {
  margin-top: 100px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (max-width: 767px) {
  #achieve .graph-Block .graph-Wrap {
    padding-left: 0;
    padding-right: 0;
    margin-top: 20%;
    margin-bottom: 25px;
  }
}
#achieve .graph-Block .graph-Wrap .per70 {
  max-width: 36%;
  position: absolute;
  z-index: 10;
  top: -32%;
  right: 4%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #achieve .graph-Block .graph-Wrap .per70 {
    right: 0;
    max-width: 40%;
  }
}
#achieve .graph-Block .graph-Wrap .per70 img {
  width: 100%;
}
#achieve .graph-Block .graph-Wrap .per70:hover {
  transform: scale(1.1, 1.1);
}
#achieve .graph-Block .graph-Wrap .per37 {
  max-width: 33%;
  position: absolute;
  z-index: 10;
  top: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #achieve .graph-Block .graph-Wrap .per37 {
    max-width: 37%;
  }
}
#achieve .graph-Block .graph-Wrap .per37 img {
  width: 100%;
}
#achieve .graph-Block .graph-Wrap .per37:hover {
  transform: scale(1.1, 1.1);
}
#achieve .graph-Block .graph-Wrap .graphImg {
  position: relative;
  z-index: 1;
  max-width: 51%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #achieve .graph-Block .graph-Wrap .graphImg {
    max-width: 57%;
  }
}
#achieve .graph-Block .graph-Wrap .graphImg img {
  width: 100%;
}
#achieve .graph-Block .graphCap {
  max-width: 45%;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  #achieve .graph-Block .graphCap {
    max-width: 100%;
  }
}
#achieve .graph-Block .graphCap img {
  width: 100%;
}
#achieve .achieveList img {
  width: 100%;
}

#method {
  padding-top: 85px;
  box-shadow: 0 10px 0 rgba(0, 0, 66, 0.5);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 580px) {
  #method {
    padding-top: 50px;
  }
}
@media screen and (max-width: 420px) {
  #method {
    padding-top: 25px;
  }
}
#method .method-Block {
  position: relative;
  padding: 0 25px;
  padding-bottom: 100px;
  border-top: 1px solid rgba(1, 64, 153, 0.3);
  background: url("../images/method-bg_PC.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#method .method-Block .methodClip_SP {
  width: 30px;
  position: absolute;
  right: 10%;
  top: -12px;
}
@media screen and (max-width: 420px) {
  #method .method-Block .methodClip_SP {
    width: 20px;
  }
}
#method .method-Block .methodClip_SP img {
  width: 100%;
}
@media screen and (max-width: 950px) {
  #method .method-Block {
    background: url("../images/method-bg_SP.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  #method .method-Block {
    padding-bottom: 50px;
  }
}
#method .method-ttl-Wrap {
  margin-bottom: 60px;
  position: relative;
}
#method .method-ttl-Wrap .method-ttl {
  width: 90%;
  margin-top: -4%;
}
#method .method-ttl-Wrap .method-ttl img {
  width: 100%;
}
#method .method-ttl-Wrap .methodTTL_sp {
  width: 100%;
}
#method .method-ttl-Wrap .methodTTL_sp img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  #method .method-ttl-Wrap {
    padding: 0 25px;
  }
}
@media screen and (max-width: 950px) {
  #method .method-ttl-Wrap {
    display: block;
    width: 100%;
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  #method .method-ttl-Wrap {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 420px) {
  #method .method-ttl-Wrap {
    padding-top: 50px;
    margin-bottom: 25px;
  }
}
#method .method-ttl-Wrap .methodClip_PC {
  width: 36px;
  position: absolute;
  right: 3%;
  top: 24px;
}
#method .method-ttl-Wrap .methodClip_PC img {
  width: 100%;
}
#method .method-ttl-Wrap .method-ttl h2 img {
  width: 100%;
}
#method .method-Item-Wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  #method .method-Item-Wrap {
    flex-direction: column;
    row-gap: 50px;
  }
}
@media screen and (max-width: 420px) {
  #method .method-Item-Wrap {
    row-gap: 25px;
  }
}
#method .method-Item-Wrap .method-Item {
  width: 30%;
}
@media screen and (max-width: 950px) {
  #method .method-Item-Wrap .method-Item {
    width: 80%;
  }
}
#method .method-Item-Wrap .method-Item h3 img {
  width: 100%;
}

#movie {
  padding-top: 100px;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
  background: url("../images/movie-bg_PC.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #movie {
    padding-top: 50px;
    background: url("../images/movie-bg_SP.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#movie h2 {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #movie h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 420px) {
  #movie h2 {
    font-size: 1.375rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 950px) {
  #movie .movieLink_Wrap {
    padding: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  #movie .movieLink_Wrap {
    padding: 0 20px;
  }
}
@media screen and (max-width: 420px) {
  #movie .movieLink_Wrap {
    margin-bottom: 25px;
  }
}
#movie .movieLink {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 893px;
  aspect-ratio: 16/9;
}
#movie .movieLink iframe {
  width: 100%;
  height: 100%;
}
#movie .movieLink-btn {
  text-align: center;
}
#movie .movieLink-btn a {
  display: inline-block;
  padding: 30px 60px 20px 36px;
  margin: 0 auto;
  border-radius: 40px;
  background: #ffeb00;
  transition: all 0.3s;
}
@media screen and (max-width: 420px) {
  #movie .movieLink-btn a {
    padding: 13px 34px 13px 18px;
  }
}
#movie .movieLink-btn a span {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e30012;
  line-height: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  #movie .movieLink-btn a span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 420px) {
  #movie .movieLink-btn a span {
    font-size: 0.8125rem;
  }
}
#movie .movieLink-btn a span::before {
  content: "";
  width: 20px;
  height: 24px;
  background-image: url("../images/arrow-movie.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #movie .movieLink-btn a span::before {
    right: -30px;
    top: 50%;
    transform: translateY(-45%);
    width: 16px;
    height: 20px;
  }
}
@media screen and (max-width: 420px) {
  #movie .movieLink-btn a span::before {
    right: -18px;
    top: 50%;
    transform: translateY(-40%);
    width: 10px;
    height: 17px;
  }
}
#movie .movieLink-btn a:hover {
  background: #e30012;
}
#movie .movieLink-btn a:hover span {
  color: #ffffff;
  letter-spacing: 0.12em;
  line-height: 1em;
  position: relative;
}
#movie .movieLink-btn a:hover span::before {
  background-image: url("../images/arrow-movie_Change.svg");
  top: 50%;
  transform: translateY(-40%);
}

footer {
  position: relative;
  z-index: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url("../images/footer-bg_PC.png");
  background-repeat: no-repeat;
  background-size: cover;
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: rgba(0, 0, 66, 0.5);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 48px;
    padding-bottom: 40px;
    background: url("../images/footer-bg_SP.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
footer .footer-Logo {
  max-width: 496px;
  margin: 0 auto;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  footer .footer-Logo {
    max-width: 446.4px;
  }
}
@media screen and (max-width: 580px) {
  footer .footer-Logo {
    max-width: 401.76px;
  }
}
@media screen and (max-width: 420px) {
  footer .footer-Logo {
    max-width: 237px;
  }
}
footer .footer-Logo img {
  width: 100%;
}
footer .footer-Logo:hover {
  transform: scale(1.1, 1.1);
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2015 Daniel Eden
 */
.animate {
  opacity: 0;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 5%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #ffffff;
  --swiper-pagination-color: #ffeb00;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0 0 50px 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #fff);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 10;
}

#mainvisual {
  margin-top: 70px;
}

.follow-btn {
  position: absolute;
  z-index: 6;
  right: 25px;
  top: -160px;
  width: 184px;
}
@media screen and (max-width: 767px) {
  .follow-btn {
    top: -110px;
    width: 145px;
    right: 0;
  }
}
@media screen and (max-width: 420px) {
  .follow-btn {
    top: -85px;
    width: 112px;
  }
}
.follow-btn a img {
  width: 100%;
  animation-name: bounce;
  animation-duration: 7s;
  animation-delay: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center bottom;
}
.follow-btn a img:hover {
  animation: shake 0.4s ease;
  cursor: pointer;
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  3% {
    transform: scale(1.15, 0.7) translate(0%, 0%);
  }
  6% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  9% {
    transform: scale(0.85, 1.25) translate(0%, -17%);
  }
  12% {
    transform: scale(1, 0.9) translate(0%, -30%);
  }
  15% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes shake {
  0% {
    transform: rotate(0);
  }
  16% {
    transform: rotate(8deg);
  }
  32% {
    transform: rotate(-8deg);
  }
  48% {
    transform: rotate(4deg);
  }
  64% {
    transform: rotate(-4deg);
  }
  80% {
    transform: rotate(2deg);
  }
  96% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.voice-comment-Block .container {
  max-width: 840px;
}
@media screen and (max-width: 767px) {
  .voice-comment-Block .container {
    max-width: 100%;
  }
}
.voice-comment-Block .container .swiper-wrapper.voic-comment {
  max-width: 640px !important;
}
@media screen and (max-width: 767px) {
  .voice-comment-Block .container .swiper-wrapper.voic-comment {
    max-width: calc(100% - 20px) !important;
  }
}
.voice-comment-Block .container .swiper-wrapper.voic-comment .swiper-slide img {
  margin-left: -20px;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .voice-comment-Block .container .swiper-wrapper.voic-comment .swiper-slide img {
    margin-left: 0 !important;
    max-width: calc(100% - 20px) !important;
  }
}
.voice-comment-Block .swiper-horizontal > .swiper-pagination-bullets,
.voice-comment-Block .swiper-pagination-bullets.swiper-pagination-horizontal,
.voice-comment-Block .swiper-pagination-custom,
.voice-comment-Block .swiper-pagination-fraction {
  bottom: 32px;
}
@media screen and (max-width: 767px) {
  .voice-comment-Block .swiper-horizontal > .swiper-pagination-bullets,
  .voice-comment-Block .swiper-pagination-bullets.swiper-pagination-horizontal,
  .voice-comment-Block .swiper-pagination-custom,
  .voice-comment-Block .swiper-pagination-fraction {
    bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .voice-comment-Block .swiper-button-prev,
  .voice-comment-Block .swiper-button-next {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */