@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  display: block;
}

ul,
li {
  padding: 0;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
  list-style: none;
}

/**** Variables ****/
:root {
  --footerbg-color: #5e534c;
  --bg-color: #f9ddb3;
  --font-color: #6c2828;
  --lightpoint: #cd3939;
  --bg-lightpoint: #cd3939;
  --title-color: #ae3232;
  --bg-title-color: #ffe4d1;
  --bg-numbg-color: #eadecc;
  --but: #d35350;
  --unbut: #ffdbda;
  --font-but: #d1f6f8;
  --span: 1.25rem;
  --font-size-XS: 0.95rem;
  --font-size-S: 1.1rem;
  --font-size-M: 1.2rem;
  --font-size-L: 1.3rem;
  --font-size-XL: 1.5rem;
  --font-size-XXL: 1.8rem;
  --font-size-XXXL: 2.187rem;
  --body-font: "Noto Sans TC", sans-serif;
  --scrollbar-bg: #fff2da;
  --scrollbar-thumb: #ffb330;
  --scrollbar-thumb-hover: #ffa60c;
}

/**** Font ****/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

p {
  font-size: var(--font-size-S);
  line-height: calc(var(--font-size-S) * 1.75);
}

/**** Scrollbar ****/
::-webkit-scrollbar {
  width: 15px;
  background-color: var(--scrollbar-bg);
  /* bar 背景色 */
}

::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  /* bar 滑動色 */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

/**** breakpoint ****/
body {
  font-family: var(--body-font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #effbff;
}

/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(#863131), color-stop(50%, rgb(161, 48, 48)), to(#802525));
  background-image: linear-gradient(to left, #863131 0%, rgb(161, 48, 48) 50%, #802525 100%);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: white;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

a {
  text-decoration: none;
}

button {
  all: unset;
  display: inline-block;
  cursor: pointer;
  background-color: var(--unbut);
  border-radius: 5px;
  padding: 0.3em 1rem;
  font-weight: 400;
  font-size: var(--font-size-S);
  line-height: 18px;
  letter-spacing: 1px;
}
button:hover {
  background-color: var(--lightpoint);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
button :focus {
  outline: none;
}

.kv,
.contentWrapper {
  text-align: center;
}

.tabWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: #6c2828;
  z-index: 10;
}
.tabWrapper .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #ffdddd;
  letter-spacing: 0.1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1rem;
}
@media (min-width: 800px) {
  .tabWrapper .tab {
    font-size: 1.2rem;
  }
}

.tabWrapper--top {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 2560px;
}

.kv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.kv .kvBg {
  width: 2560px;
  max-width: 100%;
}
.kv header h1 {
  position: absolute;
  top: 1%;
  left: 1em;
}
@media (max-width: 768px) {
  .kv header h1 {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.kv header h1 a {
  display: inline-block;
  background: url(../images/logo.png) no-repeat center;
  width: 21.1875rem;
  height: 5.25rem;
  background-size: contain;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .kv header h1 a {
    width: 14.1875rem;
    height: 3.25rem;
  }
}
@media (max-width: 768px) {
  .kv header h1 a {
    width: 24.5rem;
    height: 6rem;
  }
}
@media (max-width: 576px) {
  .kv header h1 a {
    width: 22.5rem;
    height: 5rem;
  }
}
@media (max-width: 550px) {
  .kv header h1 a {
    width: 19.5rem;
    height: 5rem;
  }
}
@media (max-width: 450px) {
  .kv header h1 a {
    width: 12.85rem;
    height: 3rem;
  }
}
.kv h2 {
  position: absolute;
  top: 80%;
  right: 50%;
  -webkit-transform: translate(50%, -80%);
          transform: translate(50%, -80%);
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1150px) {
  .kv h2 {
    top: 76%;
  }
}
@media (max-width: 860px) {
  .kv h2 {
    top: 73%;
  }
}
@media (max-width: 768px) {
  .kv h2 {
    top: 84%;
  }
}
@media (max-width: 450px) {
  .kv h2 {
    top: 82%;
  }
}
@media (max-width: 390px) {
  .kv h2 {
    top: 80%;
  }
}
@media (max-width: 320px) {
  .kv h2 {
    top: 78%;
  }
}
.kv h2 .slogan {
  background: url(../images/kvH2.png?v=0829) no-repeat center;
  background-size: contain;
  width: 41.625rem;
  height: 12.25rem;
}
@media (max-width: 1700px) {
  .kv h2 .slogan {
    width: 31.625rem;
    height: 9.25rem;
  }
}
@media (max-width: 1500px) {
  .kv h2 .slogan {
    width: 29.625rem;
    height: 8.25rem;
  }
}
@media (max-width: 1300px) {
  .kv h2 .slogan {
    width: 28.625rem;
    height: 8.25rem;
  }
}
@media (max-width: 1150px) {
  .kv h2 .slogan {
    width: 18.625rem;
    height: 5.25rem;
  }
}
@media (max-width: 820px) {
  .kv h2 .slogan {
    width: 15.625rem;
    height: 4.25rem;
  }
}
@media (max-width: 768px) {
  .kv h2 .slogan {
    width: 35.625rem;
    height: 10.25rem;
  }
}
@media (max-width: 576px) {
  .kv h2 .slogan {
    width: 30.625rem;
    height: 9.25rem;
  }
}
@media (max-width: 550px) {
  .kv h2 .slogan {
    width: 26.625rem;
    height: 8.25rem;
  }
}
@media (max-width: 450px) {
  .kv h2 .slogan {
    width: 19.625rem;
    height: 5.25rem;
  }
}
@media (max-width: 375px) {
  .kv h2 .slogan {
    width: 16.625rem;
    height: 4.6rem;
  }
}
.kv h2 button {
  background: url(../images/kvH3.png) no-repeat center;
  background-size: contain;
  width: 26rem;
  height: 3.2rem;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.kv h2 button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  top: 83%;
}
@media (max-width: 1500px) {
  .kv h2 button {
    width: 20rem;
    height: 2.2rem;
  }
}
@media (max-width: 1300px) {
  .kv h2 button {
    width: 16rem;
  }
}
@media (max-width: 1150px) {
  .kv h2 button {
    width: 14rem;
    height: 1.2rem;
  }
}
@media (max-width: 820px) {
  .kv h2 button {
    width: 12rem;
    height: 0.8rem;
  }
}
@media (max-width: 768px) {
  .kv h2 button {
    width: 24rem;
    height: 3.8rem;
  }
}
@media (max-width: 576px) {
  .kv h2 button {
    width: 21rem;
    height: 2.8rem;
  }
}
@media (max-width: 550px) {
  .kv h2 button {
    width: 17rem;
    height: 1.8rem;
  }
}
@media (max-width: 450px) {
  .kv h2 button {
    width: 12rem;
    height: 1.2rem;
  }
}
@media (max-width: 375px) {
  .kv h2 button {
    width: 11rem;
    height: 1.1rem;
  }
}
.kv canvas {
  -webkit-filter: blur(1px);
          filter: blur(1px);
  max-width: 2560px;
  width: 100%;
  position: absolute;
}
.kv .rabbitFlow {
  background: url(../images/flow.gif) no-repeat center;
  background-size: contain;
  width: 7rem;
  height: 10rem;
  position: absolute;
  right: 5%;
  top: 10%;
  z-index: 15;
  -webkit-animation: bounce 3s ease-in-out infinite;
          animation: bounce 3s ease-in-out infinite;
  /*飄動態*/
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.kv .rabbitFlow .bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@media (max-width: 1300px) {
  .kv .rabbitFlow {
    width: 5rem;
    height: 8rem;
  }
}
@media (max-width: 1200px) {
  .kv .rabbitFlow {
    width: 5rem;
    height: 7rem;
  }
}
@media (max-width: 860px) {
  .kv .rabbitFlow {
    top: 5%;
    width: 3rem;
    height: 6rem;
  }
}
@media (max-width: 768px) {
  .kv .rabbitFlow {
    top: 8%;
    width: 5rem;
    height: 9rem;
  }
}
@media (max-width: 450px) {
  .kv .rabbitFlow {
    top: 36%;
    width: 4rem;
    height: 7rem;
    right: 0;
  }
}
@media (max-width: 375px) {
  .kv .rabbitFlow {
    width: 3rem;
    height: 6rem;
  }
}
.kv .kvImg {
  position: absolute;
}
.kv .kv01 {
  top: 5.667%;
  left: 34.042%;
  width: 34.916%;
}
@media (max-width: 768px) {
  .kv .kv01 {
    top: 10.667%;
    left: 15.042%;
    width: 73.916%;
  }
}
.kv .kv02 {
  top: 29%;
  left: 26.042%;
  width: 13%;
}
@media (max-width: 768px) {
  .kv .kv02 {
    top: 41%;
    left: 29.042%;
    width: 25%;
  }
}
.kv .kv03 {
  top: 29%;
  left: 63.042%;
  width: 13%;
}
@media (max-width: 768px) {
  .kv .kv03 {
    top: 41%;
    left: 50.042%;
    width: 25%;
  }
}
.kv .kv04 {
  top: 57.667%;
  left: 69.042%;
  width: 10.916%;
}
@media (max-width: 768px) {
  .kv .kv04 {
    top: 51.667%;
    left: 69.042%;
    width: 23.916%;
  }
}
.kv .kv05 {
  top: 21.667%;
  left: 4.042%;
  width: 20.916%;
}
@media (max-width: 768px) {
  .kv .kv05 {
    display: none;
  }
}
.kv .kv06 {
  display: none;
}
@media (max-width: 768px) {
  .kv .kv06 {
    display: block;
    width: 18%;
    left: 10%;
    top: 55%;
  }
}

main {
  position: relative;
}
main .bgdeco {
  position: absolute;
  -webkit-animation: rotateDeco 4s ease-in-out infinite;
          animation: rotateDeco 4s ease-in-out infinite;
  left: 10%;
  top: 5%;
}
@media (max-width: 1024px) {
  main .bgdeco {
    display: none;
  }
}
main .bgdeco02 {
  position: absolute;
  -webkit-animation: rotateDeco2 10s 0.1s ease-in-out infinite;
          animation: rotateDeco2 10s 0.1s ease-in-out infinite;
  right: 5%;
  top: 15%;
}
@media (max-width: 1024px) {
  main .bgdeco02 {
    display: none;
  }
}
main .bgdec03 {
  right: 5%;
  top: 58%;
}
@media (max-width: 1024px) {
  main .bgdec03 {
    display: none;
  }
}
main .bgdeco04 {
  right: 5%;
  top: 63%;
}
main .bg {
  position: fixed;
  top: 0;
  background: url("../images/bg.jpg") no-repeat;
  background-position: 50% 20%;
  background-size: cover;
  width: 100%;
  height: 100vh;
  z-index: -1;
  margin: 0 auto;
  max-width: 2560px;
  -webkit-animation: moveBackground 70s linear infinite;
          animation: moveBackground 70s linear infinite;
}
@-webkit-keyframes moveBackground {
  0% {
    background-position: 0% 10%;
  }
  50% {
    background-position: 100% 40%;
  }
  100% {
    background-position: 0% 10%;
  }
}
@keyframes moveBackground {
  0% {
    background-position: 0% 10%;
  }
  50% {
    background-position: 100% 40%;
  }
  100% {
    background-position: 0% 10%;
  }
}
main section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 5rem;
}
main section .pointT {
  color: var(--lightpoint);
  background-color: transparent;
  display: inline;
  margin: 0;
  padding: 0;
}
main h1 {
  font-size: 2rem;
  margin: 0 auto;
  letter-spacing: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 5rem;
}
@media (min-width: 800px) {
  main h1 .kv h1,
  main h1 .contentWrapper h1 {
    font-size: 3rem;
  }
}
main h3 {
  position: relative;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: var(--font-size-XL);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1rem;
  color: var(--font-color);
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
}
@media (min-width: 800px) {
  main h3 .kv h3,
  main h3 .contentWrapper h3 {
    font-size: 1rem;
  }
}
@media (max-width: 450px) {
  main h3 {
    font-size: var(--font-size-L);
  }
}
main h3::before {
  content: "";
  background: url("../images/clock.png") no-repeat;
  background-size: contain;
  width: 2.1875rem;
  height: 2.1875rem;
  margin-right: 0.5rem;
}
main h3 span {
  color: #ff8017;
  font-size: var(--font-size-XXL);
}
@media (max-width: 450px) {
  main h3 span {
    font-size: var(--font-size-L);
  }
}
main h3 button {
  background-color: #ae3232;
  border: 2px solid white;
  color: #fbe9a5;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  padding: 3px 3px;
  text-shadow: none;
  margin-left: 0.5rem;
  margin-top: 0;
  -webkit-animation: pulse 0.7s infinite;
          animation: pulse 0.7s infinite;
  -webkit-box-shadow: 0 0 0 2em transparent;
          box-shadow: 0 0 0 2em transparent;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0.2em #ffffff;
            box-shadow: 0 0 0 0.2em #ffffff;
  }
  100% {
    -webkit-box-shadow: 0 0 0 1em transparent;
            box-shadow: 0 0 0 1em transparent;
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0.2em #ffffff;
            box-shadow: 0 0 0 0.2em #ffffff;
  }
  100% {
    -webkit-box-shadow: 0 0 0 1em transparent;
            box-shadow: 0 0 0 1em transparent;
  }
}
@media (max-width: 414px) {
  main h3 button {
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1.2rem;
  }
}
main #systemMessage1,
main #systemMessage2 {
  font-size: var(--font-size-S);
  font-weight: 400;
  background-color: rgb(131, 83, 83);
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  z-index: 8;
  text-shadow: none;
  text-wrap: nowrap;
}
@media (max-width: 450px) {
  main #systemMessage2 {
    text-wrap: wrap;
  }
}
main .hidden {
  display: none;
}
main .title {
  font-weight: 600;
  background-color: var(--bg-title-color);
  position: relative;
  padding: 0.5rem 1.5rem 0.5rem 3rem;
  color: var(--title-color);
  font-size: var(--font-size-L);
  display: inline-block;
  margin-bottom: 2rem;
  margin-left: 3rem;
}
main .title::before {
  content: "";
  position: absolute;
  background: url("../images/sticker.png") no-repeat center;
  background-size: contain;
  width: 4.37rem;
  height: 3.75rem;
  top: 50%;
  /* 垂直居中 */
  left: -2.185rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.content {
  margin: 0 auto;
  position: relative;
  background-color: #fff8ec;
  border: 8px #dfd3c3 solid;
  border-radius: 0.7rem;
  -webkit-box-shadow: 0 0 0 1px #835251;
          box-shadow: 0 0 0 1px #835251;
  padding: 4rem 3.12rem;
  color: var(--font-color);
  max-width: 860px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 500;
  text-align: left;
  font-size: var(--font-size-M);
}
@media (max-width: 860px) {
  .content {
    width: 90%;
    padding: 4rem 2rem;
  }
}
@media (max-width: 650px) {
  .content {
    padding: 2rem;
  }
}
@media (max-width: 450px) {
  .content {
    padding: 4rem 2rem;
    font-size: var(--font-size-S);
  }
}
@media (max-width: 414px) {
  .content {
    padding: 4rem 1rem 2rem 1rem;
  }
}
@media (max-width: 350px) {
  .content {
    width: 95%;
  }
}
.content::before {
  content: "";
  background: url("../images/deco.png") no-repeat center;
  background-size: contain;
  width: 10.75rem;
  height: 1.62rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.content::after {
  content: "";
  background: url("../images/deco.png") no-repeat center;
  background-size: contain;
  width: 10.75rem;
  height: 1.62rem;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
.content p {
  font-size: var(--font-size-S);
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.8rem;
}
.content span {
  background-color: var(--font-but);
  display: inline-block;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}
.content .part {
  margin-bottom: 5rem;
}

.sec01 .loginWrap {
  margin-bottom: 3rem;
  text-align: right;
  font-size: var(--font-size-S);
}
.sec01 .loginWrap button {
  margin: 0 0.2rem;
  text-wrap: nowrap;
  border: 3px solid #ffc8c6;
}
@media (max-width: 375px) {
  .sec01 .loginWrap button {
    margin: 0;
  }
}
.sec01 .loginWrap .signIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 450px) {
  .sec01 .loginWrap .signIn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec01 .loginWrap .signInButWrap {
  margin-left: 1em;
}
@media (max-width: 450px) {
  .sec01 .loginWrap .signInButWrap {
    margin-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
  }
}
@media (max-width: 450px) {
  .sec01 .loginWrap .signInButWrap button {
    margin: 0.2em;
  }
}
.sec01 .loginWrap .signOut {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 820px) {
  .sec01 .loginWrap .signOut {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 450px) {
  .sec01 .loginWrap .signOut {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec01 .loginWrap select {
  color: var(--font-color);
  font-size: var(--font-size-S);
  font-weight: 600;
  background-color: #ffcccb;
  padding: 6px 12px;
  font-size: 16px;
  border-radius: 4px;
  border: 3px solid #ffc8c6;
  cursor: pointer;
  outline: none;
  margin: 0 0.5rem;
}
.sec01 .loginWrap select:focus {
  border-color: rgb(237, 112, 107);
}
@media (max-width: 768px) {
  .sec01 .loginWrap select {
    padding: 6px 2px;
  }
}
@media (max-width: 450px) {
  .sec01 .loginWrap select {
    width: 19rem;
    margin-bottom: 0.7em;
  }
}
.sec01 .loginWrap option {
  padding: 8px;
  background-color: #ffcccb;
  color: var(--font-color);
}
.sec01 .loginWrap option:hover {
  background-color: #f1f1f1;
}
.sec01 .message01 {
  position: absolute;
  top: 100%;
  left: 50%;
}
@media (max-width: 450px) {
  .sec01 .message01 {
    left: 10%;
  }
}
.sec01 h1 {
  background: url("../images/H4-01.png") no-repeat center;
  background-size: contain;
  width: 22.75rem;
  height: 8.25rem;
}
@media (max-width: 450px) {
  .sec01 h1 {
    height: 7.25rem;
    width: 20.75rem;
  }
}
@media (max-width: 375px) {
  .sec01 h1 {
    height: 5.25rem;
    width: 14.75rem;
  }
}
.sec01 ul {
  margin-left: 1rem;
  font-size: var(--font-size-S);
}
.sec01 ul li[data-num="1"]::before {
  content: "1";
}
.sec01 ul li[data-num="2"]::before {
  content: "2";
}
.sec01 ul li[data-num="3"]::before {
  content: "3";
}
.sec01 ul li[data-num="4"]::before {
  content: "4";
}
.sec01 ul li[data-num="5"]::before {
  content: "5";
}
.sec01 ul li[data-num="6"]::before {
  content: "6";
}
.sec01 ul li[data-num="7"]::before {
  content: "7";
}
@media (max-width: 820px) {
  .sec01 ul li {
    line-height: 18px;
    margin-bottom: 1.3rem;
  }
}
@media (max-width: 450px) {
  .sec01 ul li {
    line-height: 25px;
  }
}
.sec01 ul li::before {
  content: "1";
  background-color: var(--bg-numbg-color);
  color: var(--font-color);
  background-size: contain;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  line-height: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px;
  margin-bottom: 0.4rem;
  margin-right: 0.3rem;
}
@media (max-width: 820px) {
  .sec01 ul li::before {
    margin-right: 1rem;
  }
}
@media (max-width: 450px) {
  .sec01 ul li::before {
    margin-bottom: 0;
    margin-right: 0.5rem;
  }
}
.sec01 .signCardWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .sec01 .signCardWrap {
    gap: 1rem;
  }
}
@media (max-width: 550px) {
  .sec01 .signCardWrap {
    gap: 0.7rem;
  }
}
.sec01 .signCardWrap li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}
.sec01 .signCardWrap .cardWrap {
  position: relative;
  width: 8.14rem;
  height: 10rem;
}
@media (max-width: 1200px) {
  .sec01 .signCardWrap .cardWrap {
    width: 10.14rem;
    height: 12rem;
  }
}
@media (max-width: 820px) {
  .sec01 .signCardWrap .cardWrap {
    width: 11.5rem;
    height: 14.125rem;
  }
}
@media (max-width: 550px) {
  .sec01 .signCardWrap .cardWrap {
    width: 8.14rem;
    height: 10rem;
  }
}
@media (max-width: 375px) {
  .sec01 .signCardWrap .cardWrap {
    width: 7.14rem;
    height: 9rem;
  }
}
.sec01 .signCardWrap .card {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.sec01 .signCardWrap .cardFront {
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.sec01 .signCardWrap .cardBack {
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.sec01 .signCardWrap .cardFlip {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.sec01 .signCardWrap .day01F {
  background: url("../images/signcard1.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day02F {
  background: url("../images/signcard2.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day01B {
  background: url("../images/signcard2.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day02B {
  background: url("../images/signcard1.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day03B {
  background: url("../images/signcard2.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day04B {
  background: url("../images/signcard1.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day05B {
  background: url("../images/signcard2.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day06B {
  background: url("../images/signcard1.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day07B {
  background: url("../images/signcard1.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day08B {
  background: url("../images/signcard1.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day09B {
  background: url("../images/signcard1.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap .day10B {
  background: url("../images/signcard2.png") center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.sec01 .signCardWrap button {
  padding: 0.5em 0;
}
.sec01 .noyet button {
  cursor: not-allowed;
  background-color: var(--unbut);
  color: var(--font-color);
}
.sec01 .disable button {
  cursor: not-allowed;
  background-color: var(--unbut);
  color: var(--font-color);
}
.sec01 .mask {
  background-color: rgba(6, 6, 6, 0.6);
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 7;
  top: 0;
  border-radius: 5px;
}
.sec01 .mask img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sec01 button {
  background-color: var(--but);
  color: white;
  margin-top: 0.5rem;
}
.sec01 button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.sec01 h3 button {
  margin-top: 0;
}
.sec01 .countSign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.sec01 .countSign li {
  width: 48%;
  height: 120px;
  border-radius: 10px;
  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;
  position: relative;
}
@media (max-width: 650px) {
  .sec01 .countSign li {
    width: 100%;
  }
}
.sec01 .countSign li .name {
  width: 18%;
  background-color: #fff0d6;
  border: 1px solid #bea69e;
  border-radius: 5px 0 0 5px;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec01 .countSign li .item {
  position: relative;
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 7px;
  -webkit-box-shadow: inset 0 1px 0 0 #bea69e, inset 0 -1px 0 0 #bea69e;
          box-shadow: inset 0 1px 0 0 #bea69e, inset 0 -1px 0 0 #bea69e;
}
.sec01 .countSign li .item::after {
  content: "";
  position: absolute;
  background-color: #dfd3c3;
  background-size: contain;
  width: 2px;
  height: 74px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sec01 .countSign li .item li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: none;
  text-align: center;
  font-size: var(--font-size-XS);
  line-height: var(--font-size-S);
}
.sec01 .countSign li .item li img {
  margin-bottom: 5px;
}
.sec01 .countSign li .buttonWrap {
  width: 18%;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 5px 5px 0;
  -webkit-box-shadow: inset 0 1px 0 0 #bea69e, inset 0 -1px 0 0 #bea69e, inset -1px 0 0 0 #bea69e;
          box-shadow: inset 0 1px 0 0 #bea69e, inset 0 -1px 0 0 #bea69e, inset -1px 0 0 0 #bea69e;
}
.sec01 .countSign li button {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background-color: var(--unbut);
  padding: 0 0.5rem;
  height: 90%;
  border-radius: 5px;
  margin: 0 1rem;
  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;
  text-align: center;
  min-width: 2rem;
}
@media (max-width: 768px) {
  .sec01 .countSign li button {
    padding: 0 0.2rem;
  }
}
.sec01 .countSign li .clickBut {
  background-color: var(--but);
}
.sec01 p {
  text-align: center;
}
.sec01 .chR01 {
  position: absolute;
  right: -22rem;
  bottom: 10rem;
  background: url("../images/chR01.png") no-repeat;
  background-size: contain;
  width: 15.3125rem;
  height: 26.3125rem;
}
@media (max-width: 1700px) {
  .sec01 .chR01 {
    right: -16rem;
    width: 13.3125rem;
    height: 23.3125rem;
  }
}
@media (max-width: 1600px) {
  .sec01 .chR01 {
    right: -15rem;
    width: 12.375rem;
    height: 21.1875rem;
  }
}
@media (max-width: 1400px) {
  .sec01 .chR01 {
    right: -12rem;
    width: 9.375rem;
    height: 16.1875rem;
  }
}
@media (max-width: 1300px) {
  .sec01 .chR01 {
    display: none;
  }
}
.sec01 .chL01 {
  position: absolute;
  left: -27rem;
  bottom: 5rem;
  background: url("../images/chL01.png") no-repeat;
  background-size: contain;
  width: 20.8125rem;
  height: 34.5625rem;
}
@media (max-width: 1700px) {
  .sec01 .chL01 {
    left: -22rem;
    width: 18.8125rem;
    height: 31.5625rem;
  }
}
@media (max-width: 1600px) {
  .sec01 .chL01 {
    left: -18rem;
    width: 15.8125rem;
    height: 25.5625rem;
  }
}
@media (max-width: 1400px) {
  .sec01 .chL01 {
    left: -14rem;
    width: 11.8125rem;
    height: 19.5625rem;
  }
}
@media (max-width: 1300px) {
  .sec01 .chL01 {
    display: none;
  }
}

.sec02,
.sec04 {
  background: url("../images/part2bg.jpg") no-repeat center #e5e9a6;
  background-size: cover;
  width: 100%;
  height: 76rem;
  max-width: 160rem;
}
@media (max-width: 1200px) {
  .sec02,
  .sec04 {
    height: 70rem;
  }
}
@media (max-width: 1024px) {
  .sec02,
  .sec04 {
    height: 68rem;
  }
}
@media (max-width: 650px) {
  .sec02,
  .sec04 {
    background: url("../images/M-part2bg.jpg") no-repeat center;
    background-size: cover;
    width: 100%;
    height: 104rem;
  }
}
@media (max-width: 430px) {
  .sec02,
  .sec04 {
    height: 95rem;
  }
}
@media (max-width: 390px) {
  .sec02,
  .sec04 {
    height: 92rem;
  }
}
.sec02 h1,
.sec04 h1 {
  margin: 0 auto;
  margin-top: 7rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1200px) {
  .sec02 h1,
  .sec04 h1 {
    margin-top: 5rem;
  }
}

.sec02 .content {
  height: 35rem;
}
@media (max-width: 650px) {
  .sec02 .content {
    height: 65rem;
  }
}
.sec02 h1 {
  background: url("../images/H4-02.png") no-repeat center;
  background-size: contain;
  width: 25rem;
  height: 8.25rem;
}
@media (max-width: 450px) {
  .sec02 h1 {
    width: 24rem;
    height: 7.25rem;
  }
}
@media (max-width: 390px) {
  .sec02 h1 {
    width: 20rem;
    height: 6.25rem;
  }
}
@media (max-width: 375px) {
  .sec02 h1 {
    width: 17rem;
    height: 6.25rem;
  }
}
.sec02 h3 {
  margin-bottom: 3.5rem;
}
.sec02 .book {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 650px) {
  .sec02 .book {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec02 .book .left {
  width: 45%;
}
@media (max-width: 650px) {
  .sec02 .book .left {
    width: 100%;
  }
}
.sec02 .book .left .scroll {
  position: relative;
}
.sec02 .book .left .scroll img {
  position: absolute;
  z-index: 3;
  right: 3rem;
}
@media (max-width: 768px) {
  .sec02 .book .left .scroll img {
    right: -1rem;
    width: 100%;
  }
}
@media (max-width: 650px) {
  .sec02 .book .left .scroll img {
    right: 2rem;
    width: 80%;
  }
}
@media (max-width: 576px) {
  .sec02 .book .left .scroll img {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .sec02 .book .left .scroll img {
    right: 0;
  }
}
.sec02 .book .right {
  position: relative;
  width: 55%;
}
.sec02 .book .right img {
  position: absolute;
  right: -3rem;
  top: -5rem;
  z-index: 1;
}
@media (max-width: 820px) {
  .sec02 .book .right img {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .sec02 .book .right img {
    right: -10rem;
    top: 21rem;
    rotate: 15deg;
  }
}
@media (max-width: 576px) {
  .sec02 .book .right img {
    right: -7rem;
  }
}
@media (max-width: 450px) {
  .sec02 .book .right img {
    right: -6rem;
    top: 17rem;
    rotate: 8deg;
    width: 126%;
  }
}
@media (max-width: 390px) {
  .sec02 .book .right img {
    right: -4rem;
  }
}
.sec02 .content {
  position: relative;
}
.sec02 .content .rabbit {
  position: absolute;
  bottom: -5rem;
  left: 40%;
  z-index: 5;
}
@media (max-width: 768px) {
  .sec02 .content .rabbit {
    left: 54%;
  }
}
@media (max-width: 650px) {
  .sec02 .content .rabbit {
    bottom: 4rem;
    left: 3%;
  }
}
@media (max-width: 450px) {
  .sec02 .content .rabbit img {
    width: 80%;
  }
}

.part {
  margin-top: 2rem;
}
.part .infoWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media (max-width: 650px) {
  .part .infoWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.part .infoWrap img {
  margin: 0 auto;
}
@media (max-width: 320px) {
  .part .infoWrap img {
    width: 80%;
  }
}
.part .info {
  width: 55%;
  font-size: var(--font-size-S);
}
@media (max-width: 650px) {
  .part .info {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .part .info {
    width: 90%;
  }
}
.part .info span {
  font-size: var(--font-size-M);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  margin-bottom: 1rem;
  text-shadow: -1px -1px 2px #6c2828, 1px -1px 2px #6c2828, -1px 1px 2px #6c2828, 1px 1px 2px #6c2828;
  width: 17rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffdc8e), to(#ffb0b0));
  background-image: linear-gradient(to right, #ffdc8e 0%, #ffb0b0 100%);
  border-radius: 5rem;
}
@media (max-width: 768px) {
  .part .info span {
    width: 13rem;
  }
}
.part .info span::before {
  content: "";
  background: url("../images/sparkle.png") no-repeat bottom;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 0.5rem;
}
.part .info li {
  margin-bottom: 0.1rem;
}
.part .info li span {
  color: var(--lightpoint);
  background-color: transparent;
  background-image: none;
  padding: 0;
  text-shadow: none;
  display: inline;
  margin-bottom: 0;
  border-radius: 0;
  font-size: var(--font-size-S);
}
.part .info li span::before {
  content: "";
  background: transparent;
  margin-right: 0;
  width: 0;
  height: 0;
}

.sec03 .message02 {
  position: absolute;
  top: 100%;
  left: 50%;
}
@media (max-width: 1024px) {
  .sec03 .message02 {
    left: 10%;
  }
}
@media (max-width: 450px) {
  .sec03 .message02 {
    left: 0;
  }
}
.sec03 h1 {
  background: url("../images/H4-03.png") no-repeat center;
  background-size: contain;
  width: 25rem;
  height: 8.25rem;
}
@media (max-width: 450px) {
  .sec03 h1 {
    height: 7.25rem;
    width: 23rem;
  }
}
@media (max-width: 390px) {
  .sec03 h1 {
    height: 6.25rem;
    width: 20rem;
  }
}
@media (max-width: 375px) {
  .sec03 h1 {
    height: 5.25rem;
    width: 17rem;
  }
}
.sec03 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec03 .content .part {
  margin-bottom: 3rem;
}
.sec03 .infoWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec03 p {
  max-width: 500px;
}
.sec03 .chR03 {
  position: absolute;
  right: -23rem;
  bottom: 5rem;
  background: url("../images/chR03.png") no-repeat;
  background-size: contain;
  width: 21.125rem;
  height: 22.56rem;
}
@media (max-width: 1700px) {
  .sec03 .chR03 {
    width: 19.125rem;
    height: 20.56rem;
    right: -21rem;
  }
}
@media (max-width: 1600px) {
  .sec03 .chR03 {
    right: -16rem;
    width: 14.5625rem;
    height: 16.0625rem;
  }
}
@media (max-width: 1400px) {
  .sec03 .chR03 {
    right: -13rem;
    width: 11.5625rem;
    height: 12.0625rem;
  }
}
@media (max-width: 1300px) {
  .sec03 .chR03 {
    display: none;
  }
}
.sec03 .chL03 {
  position: absolute;
  left: -27rem;
  bottom: 5rem;
  background: url("../images/chL03.png") no-repeat;
  background-size: contain;
  width: 29.625rem;
  height: 37.1875rem;
  z-index: -1;
}
@media (max-width: 1700px) {
  .sec03 .chL03 {
    width: 23.625rem;
    height: 30.1875rem;
    left: -21rem;
  }
}
@media (max-width: 1600px) {
  .sec03 .chL03 {
    height: 26.1875rem;
    width: 23.625rem;
    left: -19rem;
  }
}
@media (max-width: 1400px) {
  .sec03 .chL03 {
    height: 20.1875rem;
    width: 16.625rem;
    left: -15rem;
  }
}
@media (max-width: 1300px) {
  .sec03 .chL03 {
    display: none;
  }
}

@media (max-width: 1024px) {
  .sec04 {
    height: 72rem;
  }
}
@media (max-width: 650px) {
  .sec04 {
    height: 125rem;
  }
}
@media (max-width: 430px) {
  .sec04 {
    height: 114rem;
  }
}
@media (max-width: 414px) {
  .sec04 {
    height: 109rem;
  }
}
@media (max-width: 350px) {
  .sec04 {
    height: 110rem;
  }
}
@media (max-width: 320px) {
  .sec04 {
    height: 102rem;
  }
}
.sec04 h1 {
  background: url("../images/H4-04.png") no-repeat center;
  background-size: contain;
  width: 23.625rem;
  height: 8.25rem;
}
@media (max-width: 450px) {
  .sec04 h1 {
    height: 7.25rem;
    width: 21.625rem;
  }
}
@media (max-width: 390px) {
  .sec04 h1 {
    height: 6.25rem;
    width: 18.625rem;
  }
}
@media (max-width: 375px) {
  .sec04 h1 {
    height: 5.25rem;
    width: 15.625rem;
  }
}
.sec04 .lightTitle {
  background-color: none;
}
.sec04 .content p {
  width: 38rem;
  margin: 0 auto;
}
@media (max-width: 650px) {
  .sec04 .content p {
    width: 100%;
  }
}
.sec04 .content .part {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.sec04 .content .infoWrap {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 650px) {
  .sec04 .content .infoWrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec04 .content .info span {
  width: 22rem;
}
@media (max-width: 450px) {
  .sec04 .content .info span {
    width: 100%;
  }
}
.sec04 .content .info .lightT {
  color: #ffa132;
  margin-bottom: 1rem;
  width: inherit;
}
.sec04 .content .info li {
  margin-bottom: 0.2em;
}
.sec04 .content .chR04 {
  position: absolute;
  right: -27rem;
  bottom: 7rem;
  background: url("../images/chR04.png") no-repeat;
  background-size: contain;
  width: 23.5rem;
  height: 33.25rem;
}
@media (max-width: 1700px) {
  .sec04 .content .chR04 {
    width: 19.5rem;
    height: 27.25rem;
    right: -21rem;
  }
}
@media (max-width: 1600px) {
  .sec04 .content .chR04 {
    height: 23.25rem;
    width: 16.5rem;
    right: -19rem;
  }
}
@media (max-width: 1400px) {
  .sec04 .content .chR04 {
    height: 17.25rem;
    width: 12.5rem;
    right: -14rem;
  }
}
@media (max-width: 1300px) {
  .sec04 .content .chR04 {
    display: none;
  }
}
.sec04 .content .chL04 {
  position: absolute;
  left: -17rem;
  bottom: 5rem;
  background: url("../images/chL04.png") no-repeat;
  background-size: contain;
  width: 13.12rem;
  height: 20.5rem;
}
@media (max-width: 1700px) {
  .sec04 .content .chL04 {
    width: 11.12rem;
    height: 17.5rem;
    left: -14rem;
  }
}
@media (max-width: 1600px) {
  .sec04 .content .chL04 {
    width: 10rem;
    height: 15.06rem;
    left: -13rem;
  }
}
@media (max-width: 1400px) {
  .sec04 .content .chL04 {
    width: 7rem;
    height: 11.06rem;
    left: -9rem;
  }
}
@media (max-width: 1300px) {
  .sec04 .content .chL04 {
    display: none;
  }
}
.sec04 .smallPic {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 650px) {
  .sec04 .smallPic {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 450px) {
  .sec04 .smallPic {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1em;
  }
}
@media (max-width: 375px) {
  .sec04 .smallPic {
    gap: 10px;
  }
}
@media (max-width: 350px) {
  .sec04 .smallPic {
    gap: 6px;
  }
}
.sec04 .smallPic li {
  cursor: pointer;
  position: relative;
  margin-right: 0.5em;
}
@media (max-width: 450px) {
  .sec04 .smallPic li {
    margin-right: 0;
  }
}
.sec04 .smallPic li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 6, 6, 0.6);
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.sec04 .smallPic li:hover::after, .sec04 .smallPic li.active::after {
  background-color: transparent;
  -webkit-box-shadow: 0 0 10px 0px #ff5555;
          box-shadow: 0 0 10px 0px #ff5555;
}
.sec04 .smallPic li:last-child {
  margin-right: 0;
}
.sec04 .smallPic .smallPic01 {
  background: url("../images/gacha01-S.png") no-repeat center;
  background-size: contain;
  width: 5.6rem;
  height: 5.6rem;
}
@media (max-width: 450px) {
  .sec04 .smallPic .smallPic01 {
    width: 7.6rem;
    height: 7.6rem;
  }
}
@media (max-width: 375px) {
  .sec04 .smallPic .smallPic01 {
    width: 6rem;
    height: 6rem;
  }
}
.sec04 .smallPic .smallPic02 {
  background: url("../images/gacha02-S.png") no-repeat center;
  background-size: contain;
  width: 5.6rem;
  height: 5.6rem;
}
@media (max-width: 450px) {
  .sec04 .smallPic .smallPic02 {
    width: 7.6rem;
    height: 7.6rem;
  }
}
@media (max-width: 375px) {
  .sec04 .smallPic .smallPic02 {
    width: 6rem;
    height: 6rem;
  }
}
.sec04 .smallPic .smallPic03 {
  background: url("../images/gacha03-S.png") no-repeat center #fff;
  background-size: contain;
  width: 5.6rem;
  height: 5.6rem;
}
@media (max-width: 450px) {
  .sec04 .smallPic .smallPic03 {
    width: 7.6rem;
    height: 7.6rem;
  }
}
@media (max-width: 375px) {
  .sec04 .smallPic .smallPic03 {
    width: 6rem;
    height: 6rem;
  }
}
.sec04 .smallPic .smallPic04 {
  background: url("../images/gacha04-S.png") no-repeat center #fff;
  background-size: contain;
  width: 5.6rem;
  height: 5.6rem;
}
@media (max-width: 450px) {
  .sec04 .smallPic .smallPic04 {
    width: 7.6rem;
    height: 7.6rem;
  }
}
@media (max-width: 375px) {
  .sec04 .smallPic .smallPic04 {
    width: 6rem;
    height: 6rem;
  }
}
.sec04 .info01,
.sec04 .info02 {
  overflow-y: scroll;
  height: 12rem;
}

.note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4rem;
}
@media (max-width: 768px) {
  .note {
    gap: 1rem;
    padding: 0 1em;
  }
}
@media (max-width: 650px) {
  .note img {
    display: none;
  }
}
.note h1 {
  background: url("../images/H4-05.png") no-repeat center;
  background-size: contain;
  width: 13.875rem;
  height: 3.125rem;
  margin: revert;
}
.note ol {
  text-align: left;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffecd2), to(#f9ddb3));
  background-image: linear-gradient(to right, #ffecd2 0%, #f9ddb3 100%);
  padding: 1rem;
  color: var(--font-color);
  border-radius: 10px;
  font-weight: 500;
}
.note ol li {
  margin-bottom: 0.5rem;
}
.note ol a {
  color: #2b75da;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.note ol a:hover {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}
.note .innerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 450px) {
  .note .innerWrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.fcWrap {
  z-index: 10;
  position: fixed;
  left: 0;
  top: 60%;
  -webkit-transform: translate(0, -60%);
          transform: translate(0, -60%);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.fcWrap p {
  position: relative;
  padding: 1em 0.2em;
  background: url("../images/fc-star.png") #935277 no-repeat center;
  background-size: contain;
  text-align: center;
  color: white;
  font-size: var(--font-size-L);
  border-radius: 0 10px 0 0;
  letter-spacing: 5px;
}
.fcWrap p::after {
  content: "";
  position: absolute;
  background: url("../images/fc-deco.png") no-repeat center;
  background-size: cover;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 26px;
}
.fcWrap ol {
  padding: 2em 1.5em 1em 1em;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 10px 0;
}
.fcWrap ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5em;
}
.fcWrap ol li:last-child {
  margin-bottom: 0;
}
.fcWrap ol a {
  display: block;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.fcWrap ol a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.fcWrap button {
  background-color: #965376;
  padding: 0.7em;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.fcWrap button button img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.fcWrap button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.fcWrap .fcOpen {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.fcWrap .fcOpen button img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media (max-width: 820px) {
  .fcWrap {
    display: none;
  }
}

.fcActive {
  left: -10.5em;
}
.fcActive button img {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.fcWrapM {
  display: none;
}
@media (max-width: 820px) {
  .fcWrapM {
    display: block;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 5em;
    z-index: 50;
    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;
    gap: 1em;
  }
}

footer {
  background-color: #473737;
}