@charset "UTF-8";
:root {
  --base-font-size: 16px;
}

body, html {
  background-color: #fff;
}

a, img {
  display: block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.red {
  color: #CE0E2D;
}

.org {
  color: #FF8300;
}

.isMobile {
  display: none;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding-left: calc(70 / 16 * var(--base-font-size));
  padding-right: calc(70 / 16 * var(--base-font-size));
}

.secBtn{
  display: flex;
  justify-content: flex-end;
}

.noticeBtn {
  color: #FF8300;
  font-size: calc(18 / 16 * var(--base-font-size));
  line-height: 2;
  text-align: center;
  padding: 0 0.5em;
  width: 7em;
  border-radius: 99em;
  border: 1px solid #FF8300;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #fff), to(#fff4e8));
  background: linear-gradient(to bottom, #fff 15%, #fff4e8);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}
.noticeBtn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #FFBF00), to(#FF3300));
  background: linear-gradient(to bottom, #FFBF00 15%, #FF3300);
  -webkit-transition: inherit;
  transition: inherit;
  opacity: 0;
  z-index: 0;
}
.noticeBtn img {
  display: inline-block;
  margin-left: 0.3em;
  width: 0.45em;
  position: relative;
  z-index: 5;
  -webkit-transition: inherit;
  transition: inherit;
}
.noticeBtn span {
  position: relative;
  z-index: 5;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media (hover: hover) {
  .noticeBtn:hover {
    color: #fff;
  }
  .noticeBtn:hover img {
    -webkit-filter: brightness(2);
            filter: brightness(2);
  }
  .noticeBtn:hover:before {
    opacity: 1;
  }
}

header .nav_ctn {
  position: relative;
}

.ntc_frame {
  font-size: calc(16 / 16 * var(--base-font-size));
}
.ntc_frame #ntc1 {
  font-size: calc(24 / 16 * var(--base-font-size));
}

footer {
  position: relative;
}
footer a {
  display: inline;
}

.toolBox {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
}
.toolBox .container {
  position: relative;
}

a.goTop {
  display: block;
  position: fixed;
  right: 1rem;
  bottom: 3rem;
  margin-left: auto;
  width: calc(40 / 16 * var(--base-font-size));
  z-index: 1;
}

.float_frame.hideOn:not(.active) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.float_frame.hideOn.ready {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.float_frame {
  right: calc(16 / 16 * var(--base-font-size));
}

.applyNow {
  width: calc(117 / 16 * var(--base-font-size));
  position: relative;
}
.applyNow a {
  -webkit-animation: gloveJump 1.8s 1s ease-in infinite;
          animation: gloveJump 1.8s 1s ease-in infinite;
}

.toolball {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  width: 60.7%;
  bottom: 22%;
  right: 15%;
  -webkit-transform: translateY(-230%) rotate(-155deg);
          transform: translateY(-230%) rotate(-155deg);
  opacity: 1;
  -webkit-animation: ballFall 1.8s 1s ease-in infinite;
          animation: ballFall 1.8s 1s ease-in infinite;
}

@-webkit-keyframes ballFall {
  0% {
    -webkit-transform: translateY(-230%) rotate(-155deg);
            transform: translateY(-230%) rotate(-155deg);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 1;
  }
  30% {
    -webkit-transform: translateY(11%) rotate(0deg);
            transform: translateY(11%) rotate(0deg);
    opacity: 1;
  }
  36% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 1;
  }
  42% {
    -webkit-transform: translateY(7%) rotate(0deg);
            transform: translateY(7%) rotate(0deg);
    opacity: 1;
  }
  60% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 0;
  }
}

@keyframes ballFall {
  0% {
    -webkit-transform: translateY(-230%) rotate(-155deg);
            transform: translateY(-230%) rotate(-155deg);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 1;
  }
  30% {
    -webkit-transform: translateY(11%) rotate(0deg);
            transform: translateY(11%) rotate(0deg);
    opacity: 1;
  }
  36% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 1;
  }
  42% {
    -webkit-transform: translateY(7%) rotate(0deg);
            transform: translateY(7%) rotate(0deg);
    opacity: 1;
  }
  60% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0%) rotate(0deg);
            transform: translateY(0%) rotate(0deg);
    opacity: 0;
  }
}
@-webkit-keyframes gloveJump {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  31% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  32% {
    -webkit-transform: scale(1.12, 0.8);
            transform: scale(1.12, 0.8);
  }
  40% {
    -webkit-transform: scale(0.95, 0.95);
            transform: scale(0.95, 0.95);
  }
  55% {
    -webkit-transform: scale(1.1, 0.88);
            transform: scale(1.1, 0.88);
  }
  63% {
    -webkit-transform: scale(1.05, 0.95);
            transform: scale(1.05, 0.95);
  }
  70% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes gloveJump {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  31% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  32% {
    -webkit-transform: scale(1.12, 0.8);
            transform: scale(1.12, 0.8);
  }
  40% {
    -webkit-transform: scale(0.95, 0.95);
            transform: scale(0.95, 0.95);
  }
  55% {
    -webkit-transform: scale(1.1, 0.88);
            transform: scale(1.1, 0.88);
  }
  63% {
    -webkit-transform: scale(1.05, 0.95);
            transform: scale(1.05, 0.95);
  }
  70% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.creditGift {
  width: calc(103 / 16 * var(--base-font-size));
  position: relative;
  margin-left: auto;
}
.creditGift img {
  position: relative;
}
@media (hover: hover) {
  .creditGift:hover .tool_suitcase {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.tool_suitcase {
  width: 72.8%;
  margin: auto;
  z-index: 5;
  -webkit-animation: shineCase_tool 5s ease-out infinite;
          animation: shineCase_tool 5s ease-out infinite;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.toolball2 {
  margin-top: calc(-45 / 16 * var(--base-font-size)) !important;
}

@-webkit-keyframes shineCase_tool {
  0% {
    -webkit-filter: drop-shadow(0 0 0px #fdffce) drop-shadow(0 0 0px #fdffce);
            filter: drop-shadow(0 0 0px #fdffce) drop-shadow(0 0 0px #fdffce);
  }
  30% {
    -webkit-filter: drop-shadow(0 0 7px #fdffce) drop-shadow(0 0 5px #fdffce);
            filter: drop-shadow(0 0 7px #fdffce) drop-shadow(0 0 5px #fdffce);
  }
  80% {
    -webkit-filter: drop-shadow(0 0 7px #fdffce) drop-shadow(0 0 5px #fdffce);
            filter: drop-shadow(0 0 7px #fdffce) drop-shadow(0 0 5px #fdffce);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 0px #fdffce) drop-shadow(0 0 0px #fdffce);
            filter: drop-shadow(0 0 0px #fdffce) drop-shadow(0 0 0px #fdffce);
  }
}

@keyframes shineCase_tool {
  0% {
    -webkit-filter: drop-shadow(0 0 0px #fdffce) drop-shadow(0 0 0px #fdffce);
            filter: drop-shadow(0 0 0px #fdffce) drop-shadow(0 0 0px #fdffce);
  }
  30% {
    -webkit-filter: drop-shadow(0 0 7px #fdffce) drop-shadow(0 0 5px #fdffce);
            filter: drop-shadow(0 0 7px #fdffce) drop-shadow(0 0 5px #fdffce);
  }
  80% {
    -webkit-filter: drop-shadow(0 0 7px #fdffce) drop-shadow(0 0 5px #fdffce);
            filter: drop-shadow(0 0 7px #fdffce) drop-shadow(0 0 5px #fdffce);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 0px #fdffce) drop-shadow(0 0 0px #fdffce);
            filter: drop-shadow(0 0 0px #fdffce) drop-shadow(0 0 0px #fdffce);
  }
}
._pop ul {
  padding-left: 1.5em;
  list-style: decimal;
}
._pop ul li.redT {
  margin-bottom: calc(30 / 16 * var(--base-font-size));
}
._pop ul li.redT::marker {
  color: #CE0E2D;
  font-weight: 700;
}
@supports (-webkit-touch-callout: none) {
  ._pop ul {
    padding-left: 2em;
  }
}
._pop ol {
  list-style: none;
  counter-reset: list-counter;
  padding-left: 1.3em;
}
._pop ol li {
  text-indent: 0;
  counter-increment: list-counter;
  position: relative;
  padding-left: 0.5em;
}
._pop ol li::before {
  content: "(" counter(list-counter) ") ";
  position: absolute;
  right: 100%; /* 確保編號貼齊左側 */
  -webkit-transform: translateX(0.2em);
          transform: translateX(0.2em);
  width: 3em;
  text-align: right;
}
._pop .infos {
  margin-top: calc(20 / 16 * var(--base-font-size));
  margin-bottom: calc(20 / 16 * var(--base-font-size));
}
._pop a {
  color: blue;
}
@media (hover: hover) {
  ._pop a {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}
._pop .newTag {
  width: calc(60 / 16 * var(--base-font-size));
  margin-right: calc(10 / 16 * var(--base-font-size));
  vertical-align: middle;
}
._pop .p_frame {
  border-radius: calc(15 / 16 * var(--base-font-size));
}
._pop .p_frame:before {
  display: none;
}

@media (max-width: 1024px) {
  .float_frame.hideOn.ready {
    display: block;
    left: auto;
    bottom: 30%;
  }
}
@media (max-width: 768px) {
  .float_frame.hideOn.ready {
    right: calc(5 / 16 * var(--base-font-size));
    bottom: 6rem;
  }
  .applyNow {
    width: calc(98 / 16 * var(--base-font-size));
  }
  .creditGift {
    width: calc(83 / 16 * var(--base-font-size));
  }
  .p_frame .p_ctn {
    padding: 3em calc(20 / 16 * var(--base-font-size));
  }
}
.kv {
  position: relative;
  padding-bottom: calc(120 / 16 * var(--base-font-size));
  z-index: 5;
}

.kv_bg {
  position: absolute;
  top: calc(-110 / 16 * var(--base-font-size));
  left: 0;
  width: 100%;
  height: calc(100% + 120 / 16 * var(--base-font-size));
}
.kv_bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: 48% 50%;
     object-position: 48% 50%;
}

.kv_content {
  position: relative;
}

.kvImgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.7s 0.1s;
  transition: 0.7s 0.1s;
}
.kvImgBox .kvImg_L {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36.54%;
}
.kvImgBox .kvImg_R {
  margin-left: calc(-5 / 16 * var(--base-font-size));
}
.kvImgBox.unShow {
  opacity: 0;
  -webkit-transform: scale(0.8) translateY(5%);
          transform: scale(0.8) translateY(5%);
}

.kvTent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: calc(-10 / 16 * var(--base-font-size));
  height: calc(441 / 16 * var(--base-font-size));
}
.kvTent > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper_kvBox {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 40%;
  margin-bottom: calc(44 / 16 * var(--base-font-size));
  margin-left: calc(-50 / 16 * var(--base-font-size));
  position: relative;
  -webkit-transition: 0.5s 1.2s;
  transition: 0.5s 1.2s;
}
.swiper_kvBox.unShow {
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.swiper_kvBox.unShow .newCard {
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.swiper_kvBox .newCard {
  position: absolute;
  width: calc(165 / 16 * var(--base-font-size));
  bottom: calc(100% + 50 / 16 * var(--base-font-size));
  right: calc(105 / 16 * var(--base-font-size));
  -webkit-transition: 0.4s 1.8s;
  transition: 0.4s 1.8s;
}
.swiper_kvBox .swiper-slide {
  width: calc(520 / 16 * var(--base-font-size));
}
.swiper_kvBox .swiper-slide img {
  width: calc(260 / 16 * var(--base-font-size));
}
.swiper_kvBox .swiper-slide img:nth-child(2) {
  margin-left: calc(-10 / 16 * var(--base-font-size));
}
.swiper_kvBox .swiper-slide-prev {
  -webkit-transition: opacity 0.2s, -webkit-transform 0.8s !important;
  transition: opacity 0.2s, -webkit-transform 0.8s !important;
  transition: opacity 0.2s, transform 0.8s !important;
  transition: opacity 0.2s, transform 0.8s, -webkit-transform 0.8s !important;
}

.suitcaseBox {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.suitcaseBox .sCase {
  position: relative;
  width: calc(248 / 16 * var(--base-font-size));
}
.suitcaseBox.hasLight .sCaseShine {
  -webkit-animation: shineCase 5s ease-out infinite;
          animation: shineCase 5s ease-out infinite;
}
.suitcaseBox .sCase01 {
  z-index: 5;
  -webkit-transition: 0.4s 0.8s;
  transition: 0.4s 0.8s;
  background-image: url(../images/suitcase01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.suitcaseBox .sCase01.unShow {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.suitcaseBox .sCase02 {
  margin-left: -20.5%;
  z-index: 0;
  -webkit-transition: 0.4s 0.6s;
  transition: 0.4s 0.6s;
  background-image: url(../images/suitcase02.png);
  background-repeat: no-repeat;
  background-position: center top calc(-38 / 16 * var(--base-font-size));
  background-size: 100% auto;
}
.suitcaseBox .sCase02 .sCaseShine {
  -webkit-transform: translateY(calc(-38 / 16 * var(--base-font-size)));
          transform: translateY(calc(-38 / 16 * var(--base-font-size)));
}
.suitcaseBox .sCase02.unShow {
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.slogan2 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 19.54%;
  margin-bottom: calc(38 / 16 * var(--base-font-size));
  margin-left: calc(24 / 16 * var(--base-font-size));
  -webkit-transition: 0.3s 1.1s;
  transition: 0.3s 1.1s;
}

.unShow .slogan2 {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

@-webkit-keyframes shineCase {
  0% {
    -webkit-filter: drop-shadow(0 0 0px #fff) drop-shadow(0 0 0px #fff);
            filter: drop-shadow(0 0 0px #fff) drop-shadow(0 0 0px #fff);
  }
  30% {
    -webkit-filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 5px #fff);
            filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 5px #fff);
  }
  80% {
    -webkit-filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 5px #fff);
            filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 5px #fff);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 0px #fff) drop-shadow(0 0 0px #fff);
            filter: drop-shadow(0 0 0px #fff) drop-shadow(0 0 0px #fff);
  }
}

@keyframes shineCase {
  0% {
    -webkit-filter: drop-shadow(0 0 0px #fff) drop-shadow(0 0 0px #fff);
            filter: drop-shadow(0 0 0px #fff) drop-shadow(0 0 0px #fff);
  }
  30% {
    -webkit-filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 5px #fff);
            filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 5px #fff);
  }
  80% {
    -webkit-filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 5px #fff);
            filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 5px #fff);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 0px #fff) drop-shadow(0 0 0px #fff);
            filter: drop-shadow(0 0 0px #fff) drop-shadow(0 0 0px #fff);
  }
}
@media (max-width: 768px) {
  .kv {
    padding-bottom: calc(0 / 16 * var(--base-font-size));
  }
  .kv_bg {
    top: calc(0 / 16 * var(--base-font-size));
    height: calc(1000 / 16 * var(--base-font-size));
  }
  .kv_bg img {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
  .kvImgBox {
    display: block;
    -webkit-transition: 0.7s 0.1s;
    transition: 0.7s 0.1s;
  }
  .kvImgBox .kvImg_L {
    width: calc(240 / 16 * var(--base-font-size));
  }
  .kvImgBox .kvImg_L img {
    -webkit-transform: translate(40%, -2.5%);
            transform: translate(40%, -2.5%);
  }
  .kvImgBox .kvImg_R {
    margin-left: calc(0 / 16 * var(--base-font-size));
    width: calc(338 / 16 * var(--base-font-size));
    margin-top: calc(-30 / 16 * var(--base-font-size));
  }
  .kvImgBox.unShow {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(5%);
            transform: scale(0.8) translateY(5%);
  }
  .kvTent {
    display: block;
    margin-top: calc(22 / 16 * var(--base-font-size));
    height: calc(568 / 16 * var(--base-font-size));
  }
  .swiper_kvBox {
    width: auto;
    margin-bottom: calc(44 / 16 * var(--base-font-size));
    margin-left: calc(0 / 16 * var(--base-font-size));
    -webkit-transition: 0.5s 0.6s;
    transition: 0.5s 0.6s;
  }
  .swiper_kvBox.unShow {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .swiper_kvBox .newCard {
    width: calc(84 / 16 * var(--base-font-size));
    bottom: calc(100% + 5 / 16 * var(--base-font-size));
    right: calc(20 / 16 * var(--base-font-size));
    -webkit-transition: 0.4s 1s;
    transition: 0.4s 1s;
  }
  .swiper_kvBox .swiper-slide {
    width: calc(350 / 16 * var(--base-font-size));
  }
  .swiper_kvBox .swiper-slide img {
    width: calc(175 / 16 * var(--base-font-size));
  }
  .swiper_kvBox .swiper-slide img:nth-child(2) {
    margin-left: calc(-15 / 16 * var(--base-font-size));
  }
  .suitcaseBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .suitcaseBox .sCase {
    width: calc(118 / 16 * var(--base-font-size));
  }
  .suitcaseBox .sCase01 {
    -webkit-transition: 0.4s 1.7s;
    transition: 0.4s 1.7s;
  }
  .suitcaseBox .sCase01.unShow {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .suitcaseBox .sCase02 {
    margin-left: -14%;
    z-index: 0;
    -webkit-transition: 0.4s 1.4s;
    transition: 0.4s 1.4s;
    background-position: center top calc(-20 / 16 * var(--base-font-size));
  }
  .suitcaseBox .sCase02 .sCaseShine {
    -webkit-transform: translateY(calc(-20 / 16 * var(--base-font-size)));
            transform: translateY(calc(-20 / 16 * var(--base-font-size)));
  }
  .suitcaseBox .sCase02.unShow {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .slogan2 {
    width: calc(300 / 16 * var(--base-font-size));
    margin: calc(5 / 16 * var(--base-font-size)) auto;
    -webkit-transition: 0.4s 0.5s ease-out;
    transition: 0.4s 0.5s ease-out;
  }
  .slogan2.unShow {
    opacity: 0;
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  .unShow .slogan2 {
    opacity: 1;
    -webkit-transform: inherit;
            transform: inherit;
  }
}
.titleBox {
  position: relative;
}

.title {
  margin-bottom: calc(42 / 16 * var(--base-font-size));
}
.title.flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.title .titleBall {
  width: calc(166 / 16 * var(--base-font-size));
  margin-right: calc(20 / 16 * var(--base-font-size));
}

.long_sec01 {
  position: absolute;
  width: calc(322 / 16 * var(--base-font-size));
  right: calc(50% + 296 / 16 * var(--base-font-size));
  top: calc(122 / 16 * var(--base-font-size));
  z-index: 5;
  -webkit-transition: 1.4s 0.6s;
  transition: 1.4s 0.6s;
}
.long_sec01.unShow {
  opacity: 0;
  -webkit-transform: translate(-60%, 10%);
          transform: translate(-60%, 10%);
}

.sec_01 {
  background-color: #fff;
  position: relative;
  padding-top: calc(126 / 16 * var(--base-font-size));
  padding-bottom: calc(120 / 16 * var(--base-font-size));
}
.sec_01 .topLinear {
  position: absolute;
  width: 100%;
  height: 40%;
  top: calc(-200 / 16 * var(--base-font-size));
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #FFE9D1), to(#fff));
  background: linear-gradient(to bottom, #FFE9D1 10%, #fff);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.sec_01 .title {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sec_01 .title .titleBall {
  margin-right: calc(0 / 16 * var(--base-font-size));
  margin-left: calc(-30 / 16 * var(--base-font-size));
}
.sec_01 .titleBox {
  -webkit-transition: 0.8s 0.2s;
  transition: 0.8s 0.2s;
}
.sec_01 .titleBox.unShow {
  opacity: 0;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}
.sec_01 .titleTxt {
  width: calc(316 / 16 * var(--base-font-size));
}
.sec_01 .subTitle {
  text-align: center;
}
.sec_01 .subTitle h3 {
  color: #CE0E2D;
  font-weight: 900;
  font-size: calc(48 / 16 * var(--base-font-size));
  line-height: 1.5;
  margin-bottom: 0.15em;
  display: inline-block;
  position: relative;
}
.sec_01 .subTitle h3::before, .sec_01 .subTitle h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 1.6em;
  height: 2px;
  background-color: #DBB364;
  top: calc(50% - 1px);
  right: calc(100% + 0.8em);
}
.sec_01 .subTitle h3::after {
  right: inherit;
  left: calc(100% + 0.8em);
}
.sec_01 .subTitle p {
  font-weight: 700;
  font-size: calc(24 / 16 * var(--base-font-size));
}
.sec_01 .subTitle p span {
  color: #FF8300;
}
.sec_01 .subTitle p span b {
  font-weight: 900;
  font-size: 2em;
}

.moveBox.unShow .pinkBallBox,
.moveBox.unShow .giftBox {
  opacity: 0;
  -webkit-transform: translateY(calc(250 / 16 * var(--base-font-size)));
          transform: translateY(calc(250 / 16 * var(--base-font-size)));
}

.pinkBallBox {
  position: relative;
  background-image: url(../images/sec_01/sec01_BG.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto calc(448 / 16 * var(--base-font-size));
  padding: calc(60 / 16 * var(--base-font-size)) 0 calc(40 / 16 * var(--base-font-size)) 0;
  -webkit-transition: 0.8s 0.2s;
  transition: 0.8s 0.2s;
}
.pinkBallBox .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.pinkBallBox .ball {
  width: 27.15%;
  max-width: 352px;
  margin-left: calc(20 / 16 * var(--base-font-size));
  margin-right: calc(20 / 16 * var(--base-font-size));
}
.pinkBallBox .ball02 {
  margin-top: calc(60 / 16 * var(--base-font-size));
}
.pinkBallBox .noticeBtn {
  margin-right: calc(100 / 16 * var(--base-font-size));
  font-size: calc(16 / 16 * var(--base-font-size));
}

.giftBox {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #fff), color-stop(60%, #FFE9D1), to(#fff));
  background: linear-gradient(to bottom, #fff 10%, #FFE9D1 60%, #fff);
  padding-top: calc(90 / 16 * var(--base-font-size));
  -webkit-transition: 0.8s 0s;
  transition: 0.8s 0s;
  height: calc(980 / 16 * var(--base-font-size));
}
.giftBox .swiper-slide {
  width: auto;
  padding-right: calc(40 / 16 * var(--base-font-size));
  padding-left: calc(40 / 16 * var(--base-font-size));
  padding-top: 4px;
  padding-bottom: 10px;
}
.giftBox .container {
  padding: 0;
}

#swiper_gift {
  overflow: hidden;
}

.giftCard {
  background-color: #fff;
  width: calc(400 / 16 * var(--base-font-size));
  border-radius: calc(20 / 16 * var(--base-font-size));
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: calc(48 / 16 * var(--base-font-size));
  padding: calc(16 / 16 * var(--base-font-size)) calc(20 / 16 * var(--base-font-size));
  height: calc(720 / 16 * var(--base-font-size));
  overflow: hidden;
}

.giftTltPic {
  margin: auto;
  width: calc(248 / 16 * var(--base-font-size));
  margin-bottom: calc(12 / 16 * var(--base-font-size));
}

.giftTlt {
  font-size: calc(30 / 16 * var(--base-font-size));
  line-height: 1.5;
  color: #FF8300;
  font-weight: 700;
  text-align: center;
  margin-bottom: calc(12 / 16 * var(--base-font-size));
}
.giftTlt span {
  color: #000;
  font-size: 0.5em;
  font-weight: normal;
  margin-right: 1em;
}

.giftDate {
  font-size: calc(18 / 16 * var(--base-font-size));
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: calc(12 / 16 * var(--base-font-size));
}

.giftTxt {
  font-size: calc(16 / 16 * var(--base-font-size));
  line-height: 1.82;
  margin-bottom: calc(12 / 16 * var(--base-font-size));
  letter-spacing: 0;
}
.giftTxt a {
  font-size: 1.2em;
  color: #CE0E2D;
  display: block;
  margin: 3.625rem auto 0 auto;
  text-align: center;
  width: 6em;
}
@media (hover: hover) {
  .giftTxt a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}

.swPagination {
  margin-top: calc(40 / 16 * var(--base-font-size));
  text-align: center;
}
.swPagination span {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 99em;
  display: inline-block;
}
.swPagination span.swiper-pagination-bullet-active {
  width: 25px;
  background-color: #FF0000;
}

@media (max-width: 768px) {
  .title {
    margin-bottom: calc(0 / 16 * var(--base-font-size));
  }
  .title .titleBall {
    width: calc(110 / 16 * var(--base-font-size));
    margin-right: calc(10 / 16 * var(--base-font-size));
  }
  .long_sec01 {
    width: calc(170 / 16 * var(--base-font-size));
    right: auto;
    left: calc(20 / 16 * var(--base-font-size));
    top: calc(204 / 16 * var(--base-font-size));
    -webkit-transition: 1.4s 0.6s;
    transition: 1.4s 0.6s;
  }
  .long_sec01.unShow {
    opacity: 0;
    -webkit-transform: translate(-60%, 10%);
            transform: translate(-60%, 10%);
  }
  .sec_01 {
    padding-top: calc(80 / 16 * var(--base-font-size));
    padding-bottom: calc(78 / 16 * var(--base-font-size));
  }
  .sec_01 .topLinear {
    height: calc(420 / 16 * var(--base-font-size));
    top: calc(-20 / 16 * var(--base-font-size));
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #FFE9D1), color-stop(80%, #FFE9D1), to(#fff));
    background: linear-gradient(to bottom, #FFE9D1 60%, #FFE9D1 80%, #fff);
  }
  .sec_01 .titleBox {
    -webkit-transition: 0.8s 0.2s;
    transition: 0.8s 0.2s;
  }
  .sec_01 .titleBox.unShow {
    opacity: 0;
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
  .sec_01 .title {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
  }
  .sec_01 .title .titleBall {
    margin-right: calc(10 / 16 * var(--base-font-size));
    margin-left: calc(0 / 16 * var(--base-font-size));
  }
  .sec_01 .titleTxt {
    width: calc(212 / 16 * var(--base-font-size));
  }
  .sec_01 .subTitle {
    text-align: right;
    margin-top: calc(86 / 16 * var(--base-font-size));
    padding-right: calc(20 / 16 * var(--base-font-size));
  }
  .sec_01 .subTitle h3 {
    font-size: calc(39 / 16 * var(--base-font-size));
    width: 5em;
  }
  .sec_01 .subTitle h3::before, .sec_01 .subTitle h3::after {
    display: none;
  }
  .pinkBallBox {
    background-size: auto calc(448 / 16 * var(--base-font-size));
    -webkit-transition: 0.8s 0.2s;
    transition: 0.8s 0.2s;
    padding-top: calc(40 / 16 * var(--base-font-size));
    padding-bottom: calc(10 / 16 * var(--base-font-size));
  }
  .pinkBallBox .ball {
    width: calc(186 / 16 * var(--base-font-size));
    max-width: none;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: calc(-55 / 16 * var(--base-font-size));
    margin-right: calc(-55 / 16 * var(--base-font-size));
    margin-top: calc(180 / 16 * var(--base-font-size));
  }
  .pinkBallBox .ball02 {
    width: calc(220 / 16 * var(--base-font-size));
    margin-top: calc(-10 / 16 * var(--base-font-size));
  }
  .pinkBallBox .noticeBtn {
    margin-right: calc(0 / 16 * var(--base-font-size));
    margin-top: calc(26 / 16 * var(--base-font-size));
  }
  .giftBox {
    padding-top: calc(40 / 16 * var(--base-font-size));
    -webkit-transition: 0.8s 0s;
    transition: 0.8s 0s;
    height: calc(814 / 16 * var(--base-font-size));
  }
  .giftBox .swiper-slide {
    padding-right: calc(25 / 16 * var(--base-font-size));
    padding-left: calc(25 / 16 * var(--base-font-size));
  }
  .giftCard {
    width: calc(342 / 16 * var(--base-font-size));
    margin-bottom: calc(27 / 16 * var(--base-font-size));
    padding: calc(16 / 16 * var(--base-font-size)) calc(16 / 16 * var(--base-font-size));
    height: calc(668 / 16 * var(--base-font-size));
  }
  .giftTltPic {
    margin: auto;
    width: calc(210 / 16 * var(--base-font-size));
  }
  .giftTlt {
    font-size: calc(26 / 16 * var(--base-font-size));
    letter-spacing: 0;
  }
  .giftDate {
    font-size: calc(16 / 16 * var(--base-font-size));
  }
  .giftTxt {
    font-size: calc(15 / 16 * var(--base-font-size));
    margin-bottom: calc(12 / 16 * var(--base-font-size));
  }
  .giftTxt a {
    margin-top: calc(50 / 16 * var(--base-font-size));
  }
  .giftPic {
    margin-top: calc(40 / 16 * var(--base-font-size));
  }
  .swPagination {
    margin-top: calc(5 / 16 * var(--base-font-size));
  }
}
.long_sec02_1 {
  position: absolute;
  width: calc(276 / 16 * var(--base-font-size));
  left: calc(50% + 400 / 16 * var(--base-font-size));
  top: calc(50 / 16 * var(--base-font-size));
  z-index: 5;
}
.long_sec02_1 img {
  -webkit-transition: 1s 0.6s;
  transition: 1s 0.6s;
}
.long_sec02_1.unShow img {
  opacity: 0;
  -webkit-transform: translate(0%, -20%);
          transform: translate(0%, -20%);
}

.long_sec02_2 {
  position: absolute;
  width: calc(376 / 16 * var(--base-font-size));
  left: calc(1005 / 16 * var(--base-font-size));
  top: calc(34 / 16 * var(--base-font-size));
  z-index: 5;
  -webkit-transition: 1.4s 0.6s;
  transition: 1.4s 0.6s;
}
.long_sec02_2.unShow {
  opacity: 0;
  -webkit-transform: translate(60%, 5%);
          transform: translate(60%, 5%);
}

.flyBall {
  position: absolute;
  width: calc(218 / 16 * var(--base-font-size));
  z-index: 5;
  bottom: calc(100% - 66 / 16 * var(--base-font-size));
  left: 8.8%;
  -webkit-transform: scale(0.8) translate(-170%, -100%);
          transform: scale(0.8) translate(-170%, -100%);
  opacity: 0;
  -webkit-animation: flyball 8s ease-in infinite;
          animation: flyball 8s ease-in infinite;
}

@-webkit-keyframes flyball {
  0% {
    -webkit-transform: scale(0.8) translate(-250%, -85%);
            transform: scale(0.8) translate(-250%, -85%);
    opacity: 0;
  }
  5% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  98% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    opacity: 0;
  }
}

@keyframes flyball {
  0% {
    -webkit-transform: scale(0.8) translate(-250%, -85%);
            transform: scale(0.8) translate(-250%, -85%);
    opacity: 0;
  }
  5% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  98% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    opacity: 0;
  }
}
.sec_02 {
  background-color: #FFE9D1;
  position: relative;
  padding-top: calc(96 / 16 * var(--base-font-size));
  padding-bottom: calc(90 / 16 * var(--base-font-size));
}
.sec_02 .titleBox {
  -webkit-transition: 0.8s 0.2s;
  transition: 0.8s 0.2s;
  margin-bottom: calc(80 / 16 * var(--base-font-size));
}
.sec_02 .titleBox.unShow {
  opacity: 0;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}
.sec_02 .titleTxt {
  width: calc(512 / 16 * var(--base-font-size));
}
.sec_02 .subTitle {
  max-width: 580px;
  margin: auto;
  letter-spacing: 0;
  line-height: 1.583;
}
.sec_02 .subTitle p {
  font-weight: 700;
  font-size: calc(24 / 16 * var(--base-font-size));
}
.sec_02 .subTitle p span {
  font-weight: normal;
  font-size: 0.625em;
}
.sec_02 .noticeBtn {
  margin-right: 0;
  margin-top: calc(36 / 16 * var(--base-font-size));
}

.moveBox {
  position: relative;
}
.moveBox.unShow .homeRunSec {
  opacity: 0;
  -webkit-transform: translateY(calc(250 / 16 * var(--base-font-size)));
          transform: translateY(calc(250 / 16 * var(--base-font-size)));
}
.moveBox.unShow .flyBall {
  -webkit-animation: none;
          animation: none;
}

.homeRbox {
  background-color: #fff;
  border-radius: 1.1em;
  -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  padding: calc(22 / 16 * var(--base-font-size)) calc(22 / 16 * var(--base-font-size)) calc(35 / 16 * var(--base-font-size)) calc(22 / 16 * var(--base-font-size));
  margin-top: calc(58 / 16 * var(--base-font-size));
}
.homeRbox .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.hoRnTlt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: calc(32 / 16 * var(--base-font-size));
}
.hoRnTlt h3 {
  font-size: calc(36 / 16 * var(--base-font-size));
  font-weight: 700;
}
.hoRnTlt h3 span {
  color: #CE0E2D;
  font-size: 1.39em;
}

.hrbag {
  width: calc(174 / 16 * var(--base-font-size));
  margin-right: calc(20 / 16 * var(--base-font-size));
}

.hrB {
  padding-bottom: calc(40 / 16 * var(--base-font-size));
  width: 100%;
}
.hrB:not(.hrB_L) {
  border-left: 1px solid #FF8300;
}
.hrB h4 {
  font-size: calc(28 / 16 * var(--base-font-size));
  color: #CE0E2D;
  line-height: 1;
  margin-bottom: 0.4em;
}
.hrB .hrTxt {
  font-size: calc(15 / 16 * var(--base-font-size));
  line-height: 1.58;
}
.hrB .hrTxt b {
  font-size: 1.3333em;
  letter-spacing: 0em;
}
.hrB .hrTxt b span {
  font-size: 1.7em;
  color: #FF8300;
  line-height: 1;
}
.hrB .hrTxt p {
  line-height: 1.8;
  margin-top: 0.5em;
}


.hrInner {
  max-width: 330px;
  margin: auto;
  width: 90%;
}

.seat{
  width: 100% !important;
}

.homeRun01 {
  -webkit-transition: 0.8s 0s;
  transition: 0.8s 0s;
}
.homeRun01 .container {
  position: relative;
}
.homeRun01 .hrB_M h4 {
  margin-bottom: 0.5em;
}
.homeRun01 .hrB_M .hrInner {
  max-width: 310px;
}
.homeRun01 .hrB_R .hrInner {
  max-width: 346px;
}

.homeRun02 {
  -webkit-transition: 0.8s 0s;
  transition: 0.8s 0s;
  width: calc(875 / 16 * var(--base-font-size));
}
.homeRun02 .hrB_L p {
  margin-top: 2.5em;
}
.homeRun02 .hrB_M .hrInner {
  max-width: 365px;
}

.homeRunOther {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.homeRunOther .homeRunSec {
  max-width: calc(634 / 16 * var(--base-font-size));
  width: 49%;
}
.homeRunOther .hrTxt {
  width: 90%;
  margin: auto;
  font-size: calc(14 / 16 * var(--base-font-size));
}
.homeRunOther .hrTxt b {
  font-size: calc(20 / 16 * var(--base-font-size));
}
.homeRunOther .hrTxt b span {
  font-size: 1.3em;
}
.homeRunOther .hrTxt p b {
  font-size: 1em;
}

.homeRun03 {
  -webkit-transition: 0.8s 0s;
  transition: 0.8s 0s;
}

.homeRun04 {
  -webkit-transition: 0.8s 0.2s;
  transition: 0.8s 0.2s;
}
.homeRun04 h3 img {
  width: calc(60 / 16 * var(--base-font-size));
}

@media (max-width: 768px) {
  .long_sec02_1 {
    width: calc(158 / 16 * var(--base-font-size));
    left: calc(25 / 16 * var(--base-font-size));
    top: calc(105 / 16 * var(--base-font-size));
  }
  .long_sec02_1 img {
    -webkit-transition: 0.8s 1s;
    transition: 0.8s 1s;
  }
  .long_sec02_2 {
    display: none;
  }
  .flyBall {
    width: calc(138 / 16 * var(--base-font-size));
    bottom: auto;
    top: calc(5 / 16 * var(--base-font-size));
    left: calc(-36 / 16 * var(--base-font-size));
    right: 0;
    -webkit-transform: scale(0.8) translate(-150%, -80%);
            transform: scale(0.8) translate(-150%, -80%);
    opacity: 1;
    -webkit-animation: flyball2 8s ease-in infinite;
            animation: flyball2 8s ease-in infinite;
  }
  @-webkit-keyframes flyball2 {
    0% {
      -webkit-transform: scale(0.8) translate(-150%, -80%);
              transform: scale(0.8) translate(-150%, -80%);
      opacity: 0;
    }
    5% {
      -webkit-transform: scale(1) translate(0, 0);
              transform: scale(1) translate(0, 0);
      opacity: 1;
    }
    98% {
      -webkit-transform: scale(1) translate(0, 0);
              transform: scale(1) translate(0, 0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1) translate(0, 0);
              transform: scale(1) translate(0, 0);
      opacity: 0;
    }
  }
  @keyframes flyball2 {
    0% {
      -webkit-transform: scale(0.8) translate(-150%, -80%);
              transform: scale(0.8) translate(-150%, -80%);
      opacity: 0;
    }
    5% {
      -webkit-transform: scale(1) translate(0, 0);
              transform: scale(1) translate(0, 0);
      opacity: 1;
    }
    98% {
      -webkit-transform: scale(1) translate(0, 0);
              transform: scale(1) translate(0, 0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1) translate(0, 0);
              transform: scale(1) translate(0, 0);
      opacity: 0;
    }
  }
  .sec_02 {
    padding-top: calc(54 / 16 * var(--base-font-size));
    padding-bottom: calc(85 / 16 * var(--base-font-size));
  }
  .sec_02 .container {
    padding-left: calc(18 / 16 * var(--base-font-size));
    padding-right: calc(18 / 16 * var(--base-font-size));
  }
  .sec_02 .titleBox {
    -webkit-transition: 0.8s 0.2s;
    transition: 0.8s 0.2s;
    margin-bottom: calc(40 / 16 * var(--base-font-size));
  }
  .sec_02 .titleBox.unShow {
    opacity: 0;
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
  .sec_02 .titleBall {
    margin-right: 0;
    margin-bottom: calc(10 / 16 * var(--base-font-size));
  }
  .sec_02 .titleTxt {
    width: calc(512 / 16 * var(--base-font-size));
  }
  .sec_02 .title {
    display: block;
    margin-left: calc(190 / 16 * var(--base-font-size));
  }
  .sec_02 .subTitle {
    text-align: left;
    width: calc(100% - 32 / 16 * var(--base-font-size));
    max-width: none;
    margin-top: calc(40 / 16 * var(--base-font-size));
  }
  .sec_02 .subTitle p {
    font-size: calc(20 / 16 * var(--base-font-size));
  }
  .sec_02 .subTitle p span {
    font-size: calc(15 / 16 * var(--base-font-size));
    margin-left: 6.5em;
  }
  .sec_02 .noticeBtn {
    font-size: calc(14.4 / 16 * var(--base-font-size));
  }
  .homeRbox {
    padding: calc(20 / 16 * var(--base-font-size));
    padding-bottom: 0;
    margin-top: calc(58 / 16 * var(--base-font-size));
  }

  .homeRbox .flex {
    display: block;
  }
  .hoRnTlt {
    margin-bottom: calc(36 / 16 * var(--base-font-size));
    display: block;
  }
  .hoRnTlt h3 {
    font-size: calc(30 / 16 * var(--base-font-size));
    text-align: center;
  }

  .hoRnTlt h3 div{
    justify-content: center;
  }

  .hoRnTlt h3 span {
    font-size: calc(46 / 16 * var(--base-font-size));
    line-height: 1;
  }
  .hrbag {
    width: calc(154 / 16 * var(--base-font-size));
    margin: auto;
    margin-bottom: calc(16 / 16 * var(--base-font-size));
  }
  .hrB {
    padding-bottom: calc(30 / 16 * var(--base-font-size));
    width: 100%;
    border-left: none !important;
  }
  .hrB h4 {
    font-size: calc(24 / 16 * var(--base-font-size));
    margin-bottom: 0.8em;
  }
  .hrB .hrTxt b {
    font-size: calc(18 / 16 * var(--base-font-size));
  }
  .hrB .hrTxt b span {
    font-size: calc(24 / 16 * var(--base-font-size));
  }
  .hrB .hrTxt p {
    line-height: 1.8;
    margin-top: 0.5em;
    letter-spacing: 0;
  }
  .hrB .spl {
    display: block;
    margin-top: 0.6em;
  }
  .hrInner {
    max-width: none;
    width: auto;
  }
  .homeRun01 {
    -webkit-transition: 0.8s 0s;
    transition: 0.8s 0s;
  }
  .homeRun01 .hrB_M h4 {
    margin-bottom: 0.6em;
  }
  .homeRun01 .hrB_M .hrInner {
    max-width: none;
  }
  .homeRun01 .hrB_R .hrInner {
    max-width: none;
  }
  .homeRun02 {
    -webkit-transition: 0.8s 0s;
    transition: 0.8s 0s;
    width: auto;
  }
  .homeRun02 .hrB_L p {
    margin-top: 0.5em;
  }
  .homeRun02 .hrB_M .hrInner {
    max-width: 365px;
  }
  .homeRunOther {
    display: block;
  }
  .homeRunOther .homeRunSec {
    max-width: none;
    width: auto;
  }
  .homeRunOther .hrTxt {
    width: auto;
    margin: auto;
    font-size: calc(14 / 16 * var(--base-font-size));
  }
  .homeRunOther .hrTxt b {
    font-size: calc(20 / 16 * var(--base-font-size));
  }
  .homeRunOther .hrTxt b span {
    font-size: 1.3em;
  }
  .homeRunOther .hrTxt p b {
    font-size: 1em;
  }
  .homeRun03 {
    -webkit-transition: 0.8s 0s;
    transition: 0.8s 0s;
  }
  .homeRun04 {
    -webkit-transition: 0.8s 0.2s;
    transition: 0.8s 0.2s;
  }
  .homeRun04 h3 {
    text-align: left;
    letter-spacing: 0;
    margin-left: -0.2em;
  }
}
.long_sec03 {
  position: absolute;
  width: calc(282 / 16 * var(--base-font-size));
  left: calc(50% + 400 / 16 * var(--base-font-size));
  top: calc(10 / 16 * var(--base-font-size));
  z-index: 5;
  -webkit-transition: 1.4s 0.6s;
  transition: 1.4s 0.6s;
}
.long_sec03.unShow {
  opacity: 0;
  -webkit-transform: translate(60%, 5%);
          transform: translate(60%, 5%);
}

.sec_03 {
  background-color: #fff;
  position: relative;
  padding-top: calc(70 / 16 * var(--base-font-size));
  padding-bottom: calc(90 / 16 * var(--base-font-size));
  background-image: url(../images/sec_03/sec03_BG.png);
  background-repeat: repeat-x;
  background-position: top calc(96 / 16 * var(--base-font-size)) center;
  background-size: auto calc(830 / 16 * var(--base-font-size));
}
.sec_03 .titleBox {
  -webkit-transition: 0.8s 0.2s;
  transition: 0.8s 0.2s;
  margin-bottom: calc(80 / 16 * var(--base-font-size));
}
.sec_03 .titleBox.unShow {
  opacity: 0;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}
.sec_03 .titleTxt {
  width: calc(602 / 16 * var(--base-font-size));
}

.noticeBtn_red {
  background-color: #fff;
  font-size: calc(16 / 16 * var(--base-font-size));
  color: #CE0E2D;
  text-align: center;
  line-height: 2.3;
  border-radius: 99em;
  margin-top: calc(40 / 16 * var(--base-font-size));
  border: 1px solid #CE0E2D;
  -webkit-box-shadow: 0px 3.94px 3.94px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 3.94px 3.94px 0px rgba(0, 0, 0, 0.2509803922);
  font-weight: 400;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .noticeBtn_red:hover {
    color: #fff;
    background-color: rgba(255, 0, 0, 0.8);
  }
}

.moveBox {
  position: relative;
}
.moveBox.unShow .sec03Slide {
  opacity: 0;
  -webkit-transform: translateY(calc(250 / 16 * var(--base-font-size)));
          transform: translateY(calc(250 / 16 * var(--base-font-size)));
}

.sec03Slide {
  width: calc(1240 / 16 * var(--base-font-size));
  overflow: hidden;
  margin: auto;
}
.sec03Slide .swiper-slide {
  padding: 0 calc(42 / 16 * var(--base-font-size)) calc(20 / 16 * var(--base-font-size)) calc(42 / 16 * var(--base-font-size));
}

.uperSlider {
  -webkit-transition: 0.8s 0s;
  transition: 0.8s 0s;
  margin-top: calc(130 / 16 * var(--base-font-size));
}
.uperSlider .swPagination {
  display: none;
}

.downerSlider {
  -webkit-transition: 0.8s 0.2s;
  transition: 0.8s 0.2s;
  margin-top: calc(80 / 16 * var(--base-font-size));
}
.downerSlider .swiper-slide {
  padding: 0 calc(30 / 16 * var(--base-font-size)) calc(20 / 16 * var(--base-font-size)) calc(30 / 16 * var(--base-font-size));
  width: 20%;
}

@media (max-width: 768px) {
  .long_sec03 {
    width: calc(174 / 16 * var(--base-font-size));
    left: auto;
    right: calc(18 / 16 * var(--base-font-size));
    top: calc(110 / 16 * var(--base-font-size));
    -webkit-transition: 1.4s 0.6s;
    transition: 1.4s 0.6s;
  }
  .long_sec03.unShow {
    opacity: 0;
    -webkit-transform: translate(60%, 5%);
            transform: translate(60%, 5%);
  }
  .sec_03 {
    padding-top: calc(108 / 16 * var(--base-font-size));
    padding-bottom: calc(45 / 16 * var(--base-font-size));
    background-position: top calc(210 / 16 * var(--base-font-size)) center;
    background-size: auto calc(700 / 16 * var(--base-font-size));
  }
  .sec_03 .titleBox {
    -webkit-transition: 0.8s 0.2s;
    transition: 0.8s 0.2s;
    margin-bottom: calc(0 / 16 * var(--base-font-size));
  }
  .sec_03 .titleBox.unShow {
    opacity: 0;
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
  .sec_03 .titleTxt {
    width: calc(602 / 16 * var(--base-font-size));
  }
  .sec_03 .title {
    display: block;
    width: calc(196 / 16 * var(--base-font-size));
    padding-left: calc(10 / 16 * var(--base-font-size));
  }
  .sec_03 .title .titleBall {
    margin: auto;
  }
  .noticeBtn_red {
    font-size: calc(11.5 / 16 * var(--base-font-size));
    margin-top: calc(28 / 16 * var(--base-font-size));
    white-space: nowrap;
    letter-spacing: 0;
  }
  .sec03Slide {
    width: auto;
    margin: auto;
  }
  .sec03Slide .swiper-slide {
    padding: 0 calc(18 / 16 * var(--base-font-size)) calc(20 / 16 * var(--base-font-size)) calc(18 / 16 * var(--base-font-size));
  }
  .uperSlider {
    -webkit-transition: 0.8s 0s;
    transition: 0.8s 0s;
    margin-top: calc(50 / 16 * var(--base-font-size));
  }
  .uperSlider .swPagination {
    display: block;
  }
  .downerSlider {
    -webkit-transition: 0.8s 0.2s;
    transition: 0.8s 0.2s;
    margin-top: calc(50 / 16 * var(--base-font-size));
  }
  .downerSlider .swiper-slide {
    padding: 0 calc(15 / 16 * var(--base-font-size)) calc(20 / 16 * var(--base-font-size)) calc(15 / 16 * var(--base-font-size));
    width: calc(184 / 16 * var(--base-font-size));
  }
}
.sec_04 {
  padding-top: calc(51 / 16 * var(--base-font-size));
  padding-bottom: calc(160 / 16 * var(--base-font-size));
  background-image: url(../images/sec_04/sec04_BG2.png);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: calc(1490 / 16 * var(--base-font-size)) auto;
  position: relative;
}
.sec_04 .sec04BG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/sec_04/sec04_BG.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: calc(1490 / 16 * var(--base-font-size)) auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.sec_04 h3 {
  font-size: calc(54 / 16 * var(--base-font-size));
  font-weight: 700;
  text-align: center;
  color: #FF8300;
}
.sec_04 .moveBox {
  padding-top: calc(58 / 16 * var(--base-font-size));
}
.sec_04 .titleBox {
  -webkit-transition: 0.8s 0.2s;
  transition: 0.8s 0.2s;
}
.sec_04 .titleBox.unShow {
  opacity: 0;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}

.moveBox.unShow .swiperRLBox {
  opacity: 0;
  -webkit-transform: translateY(calc(250 / 16 * var(--base-font-size)));
          transform: translateY(calc(250 / 16 * var(--base-font-size)));
}

.swiperRLBox {
  -webkit-transition: 0.8s 0.2s;
  transition: 0.8s 0.2s;
}
.swiperRLBox .flex {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.swiperRLBox .swiperRL {
  background-color: #FFEEDD;
  height: calc(450 / 16 * var(--base-font-size));
  width: calc(580 / 16 * var(--base-font-size));
  padding: calc(34 / 16 * var(--base-font-size)) 0 calc(22 / 16 * var(--base-font-size)) 0;
  position: relative;
}
.swiperRLBox .swiper-container {
  width: calc(425 / 16 * var(--base-font-size));
  margin: auto;
  overflow: hidden;
}
.swiperRLBox .swPagination {
  margin-top: calc(22 / 16 * var(--base-font-size));
}
.swiperRLBox .swPagination .swiper-pagination-bullet-active {
  background-color: #FF8300;
}

.swRL_tlt {
  font-size: calc(36 / 16 * var(--base-font-size));
  line-height: 1;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.8em;
}

.swiperRL-btnBox {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
}
.swiperRL-btnBox .swiperRL-btn {
  width: calc(18 / 16 * var(--base-font-size));
  position: absolute;
  top: 0;
  cursor: pointer;
  -webkit-filter: grayscale(0.9);
          filter: grayscale(0.9);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .swiperRL-btnBox .swiperRL-btn:hover {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}
.swiperRL-btnBox .swiperRL-btnL {
  left: calc(12.8 / 16 * var(--base-font-size));
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.swiperRL-btnBox .swiperRL-btnR {
  right: calc(12.8 / 16 * var(--base-font-size));
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 768px) {
  .sec_04 {
    padding-top: calc(50 / 16 * var(--base-font-size));
    padding-bottom: calc(95 / 16 * var(--base-font-size));
    background-image: url(../images/sec_04/sec04_BG_m.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto calc(882 / 16 * var(--base-font-size));
  }
  .sec_04 h3 {
    font-size: calc(33 / 16 * var(--base-font-size));
  }
  .sec_04 .moveBox {
    padding-top: calc(76 / 16 * var(--base-font-size));
  }
  .swiperRLBox {
    -webkit-transition: 0.8s 0.2s;
    transition: 0.8s 0.2s;
  }
  .swiperRLBox .flex {
    display: block;
  }
  .swiperRLBox .swiperRL {
    height: calc(282 / 16 * var(--base-font-size));
    width: auto;
    padding: calc(23 / 16 * var(--base-font-size)) 0 calc(22 / 16 * var(--base-font-size)) 0;
  }
  .swiperRLBox .swiper-container {
    width: calc(264 / 16 * var(--base-font-size));
  }
  .swiperRLBox .swPagination {
    margin-top: calc(20 / 16 * var(--base-font-size));
  }
  .swRL_tlt {
    font-size: calc(23 / 16 * var(--base-font-size));
  }
  .swiperRL-btnBox .swiperRL-btn {
    width: calc(12 / 16 * var(--base-font-size));
    position: absolute;
    top: 0;
    cursor: pointer;
    -webkit-filter: grayscale(0.9);
            filter: grayscale(0.9);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
@media (max-width: 768px) and (hover: hover) {
  .swiperRL-btnBox .swiperRL-btn:hover {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}
@media (max-width: 768px) {
  .swiperRL-btnBox .swiperRL-btnL {
    left: calc(8 / 16 * var(--base-font-size));
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .swiperRL-btnBox .swiperRL-btnR {
    right: calc(8 / 16 * var(--base-font-size));
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .swiper_L {
    margin-bottom: calc(54 / 16 * var(--base-font-size));
  }
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  display: block;
  overflow-x: auto;
  white-space: normal;
}

th,
td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  word-break: keep-all;
}

th {
  background-color: #ffe9d2;
  font-weight: bold;
}

.giftbut a {
  display: inline;
  color: red;
  font-size: calc(16 / 16 * var(--base-font-size));
}

@media (max-width: 1440px) {
  :root {
    --base-font-size: 1.1111vw;
  }
}
@media (max-width: 1024px) {
  header .nav_box.active {
    -webkit-box-shadow: inherit;
            box-shadow: inherit;
  }
}
@media (max-width: 768px) {
  :root {
    --base-font-size: 4.061vw;
  }
  .isPC {
    display: none;
  }
  .isMobile {
    display: block;
  }
  .container {
    padding-left: calc(20 / 16 * var(--base-font-size));
    padding-right: calc(20 / 16 * var(--base-font-size));
  }
  .noticeBtn {
    font-size: calc(18.24 / 16 * var(--base-font-size));
  }
}