@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Serif TC", serif;
  scroll-behavior: smooth;
}

/* Regular */
@font-face {
  font-family: "GenSekiGothic2TW";
  src: url("./../font/GenSekiGothic2TW-R.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* Light */
@font-face {
  font-family: "GenSekiGothic2TW";
  src: url("./../font/GenSekiGothic2TW-L.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/* Medium */
@font-face {
  font-family: "GenSekiGothic2TW";
  src: url("./../font/GenSekiGothic2TW-M.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
/* Bold */
@font-face {
  font-family: "GenSekiGothic2TW";
  src: url("./../font/GenSekiGothic2TW-B.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/* Heavy */
@font-face {
  font-family: "GenSekiGothic2TW";
  src: url("./../font/GenSekiGothic2TW-H.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "odstemplikBold";
  src: url("./../font/odstemplikBold.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
img {
  width: 100%;
}

.pc {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc {
    display: block !important;
  }
}

.pc-flex {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc-flex {
    display: flex !important;
  }
}

.mb {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .mb {
    display: block !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f1d8e8;
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

footer {
  background-color: #a575aa;
  padding: 140px 20px 140px;
  text-align: center;
  width: 100%;
  border: 1px solid #c7c8ca;
  font-family: odstemplikBold, GenSekiGothic2TW;
}
@media screen and (max-width: 1200px) {
  footer {
    padding: 65px 50px;
  }
}
footer .footer-container {
  max-width: 1035px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25%;
  font-weight: 500;
  color: white;
  position: relative;
}
@media screen and (max-width: 1200px) {
  footer .footer-container {
    flex-wrap: wrap;
  }
}
footer .footer-container::after {
  content: "";
  display: block;
  background-color: #fff;
  height: 100%;
  width: 1px;
  position: absolute;
  left: 33.5%;
  top: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  footer .footer-container::after {
    display: none;
  }
}
footer .footer-container .footer-left {
  width: 40%;
  font-size: 27px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .footer-container .footer-left p {
  width: 242px;
  text-align: center;
}
footer .footer-container .footer-left p.line {
  font-size: 61px;
}
footer .footer-container .footer-left img {
  margin: 28px 0 15px;
  max-width: 242px;
}
footer .footer-container .footer-right {
  width: 60%;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  footer .footer-container .footer-right {
    text-align: center;
    width: 100%;
  }
}
footer .footer-container .footer-right .title {
  font-size: 62px;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  footer .footer-container .footer-right .title {
    font-size: 33px;
  }
}
footer .footer-container .footer-right p:not(.title) {
  white-space: nowrap;
  margin-top: 20px;
  font-size: 30px;
  line-height: 48px;
  font-family: GenSekiGothic2TW;
}
@media screen and (max-width: 1500px) {
  footer .footer-container .footer-right p:not(.title) {
    font-size: 26px;
  }
}
@media screen and (max-width: 1200px) {
  footer .footer-container .footer-right p:not(.title) {
    font-size: 13px;
    white-space: wrap;
    line-height: 22px;
    margin-top: 10px;
  }
}
footer .footer-container .footer-right p:not(.title) a {
  color: #fff;
  text-decoration: none;
  position: relative;
}
footer .footer-container .footer-right p:not(.title) a::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  height: 1px;
  width: 0;
  transform: translateX(-50%);
  transition: 0.3s;
}
footer .footer-container .footer-right p:not(.title) a:hover::after {
  width: 80%;
}
footer .footer-container .footer-mb {
  margin-top: 30px;
  position: relative;
  padding-top: 38px;
}
footer .footer-container .footer-mb p {
  font-size: 15px;
}
footer .footer-container .footer-mb::after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
footer .footer-container .footer-mb .btn {
  margin-top: 20px;
  text-decoration: none;
  color: #fff;
  width: 100px;
  font-size: 30px;
  border-radius: 30px;
  border: 1px solid #fff;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  transition: 0.3s;
  text-decoration: none;
}
footer .footer-container .footer-mb .btn:hover {
  color: #a575aa;
  background-color: #fff;
}
footer .mb {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  footer .mb {
    display: block !important;
  }
}
footer .pc {
  display: none !important;
}
@media screen and (min-width: 1200px) {
  footer .pc {
    display: block !important;
  }
}

[data-aos=fade-in] {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

[data-aos=fade-in].aos-animate {
  opacity: 1;
}

.bg-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1d8e8;
  background-image: url("./../image/hero-bg.png");
  background-size: cover;
  background-position: bottom;
  z-index: -100;
  opacity: 0.8;
}
@media screen and (max-width: 992px) {
  .bg-hero {
    height: 100%;
  }
}
@media screen and (max-width: 480px) {
  .bg-hero {
    height: 68%;
    background-image: url("./../image/hero-bg-m.png");
    min-height: 550px;
  }
}
.bg-love-story {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1d8e8;
  background-image: url("./../image/love-story.jpg");
  background-size: cover;
  background-position: center;
  z-index: -100;
  opacity: 0.8;
  display: none;
}
@media screen and (max-width: 992px) {
  .bg-love-story {
    background-position: top right;
    background-image: url("./../image/love-story-m.png");
  }
}

section.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 720px;
}
@media screen and (max-width: 992px) {
  section.hero {
    min-height: 720px;
    height: 100vh;
  }
}
@media screen and (max-width: 480px) {
  section.hero {
    height: 65vh;
    min-height: 550px;
  }
}
section.hero .hero-content {
  max-width: 520px;
  width: 24%;
  margin-bottom: 7%;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.hero .hero-content {
    width: 60%;
    margin-bottom: 10%;
    max-width: 350px;
  }
}
@media screen and (max-width: 480px) {
  section.hero .hero-content {
    margin-bottom: 20%;
  }
}
@media screen and (min-width: 1500px) {
  section.hero .hero-content {
    margin-bottom: 10%;
    width: 30%;
  }
}
section.hero .hero-title {
  width: 100%;
}
section.hero .hero-dec-1 {
  position: absolute;
  width: 25%;
  top: 50%;
  right: 0%;
  transform: rotate(-15deg);
  transition: 0.3s;
  animation: dec-1 2s linear alternate infinite;
}
@keyframes dec-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(8deg) scale(1.1);
  }
}
section.hero .hero-dec-2 {
  position: absolute;
  width: 20%;
  top: 15%;
  left: 4%;
  transform: rotate(0deg);
  animation: dec-2 1.5s linear alternate infinite;
}
@keyframes dec-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(8deg) scale(1.1);
  }
}
section.hero .hero-dec-3 {
  position: absolute;
  width: 15%;
  top: 5%;
  left: 20%;
  animation: dec-3 1.6s linear alternate infinite;
}
@keyframes dec-3 {
  0% {
    transform: rotate(0deg) scale(1.1);
  }
  100% {
    transform: rotate(-8deg);
  }
}
section.hero .hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1500px) {
  section.hero .hero-scroll {
    bottom: 40px;
  }
}
section.hero .hero-scroll p {
  font-family: "odstemplikBold";
  font-size: 30px;
  line-height: 1.7;
  letter-spacing: 1.2px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
@media screen and (min-width: 1500px) {
  section.hero .hero-scroll p {
    padding-bottom: 10px;
    font-size: 42px;
  }
}
section.hero .hero-scroll img {
  height: 42px;
  width: auto;
  transition: 0.3s;
  animation: scroll-arrow 1s infinite linear alternate;
}
@keyframes scroll-arrow {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
section.intro {
  background-color: #f1d8e8;
  min-height: 100vh;
  font-family: "odstemplikBold", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 2.4px;
  text-align: center;
  padding: 80px 20px 120px;
}
@media screen and (max-width: 992px) {
  section.intro {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 480px) {
  section.intro {
    padding: 0px 20px 55px;
  }
}
section.intro .intro-title p {
  font-family: "odstemplikBold", sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 2.4px;
  text-align: center;
  padding: 80px 20px 40px;
  color: #a575aa;
  display: inline-block;
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 250ms;
  transition: 1s;
}
section.intro .intro-title p.active {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 992px) {
  section.intro .intro-title p {
    font-size: 28px;
    padding: 60px 15px 30px;
    line-height: 1;
  }
  section.intro .intro-title p span {
    display: block;
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  section.intro .intro-title p {
    font-size: 20px;
  }
  section.intro .intro-title p span {
    display: block;
    margin-top: 20px;
  }
}
section.intro .intro-info {
  display: flex;
  max-width: 1150px;
  margin: auto;
}
@media screen and (max-width: 992px) {
  section.intro .intro-info {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1500px) {
  section.intro .intro-info {
    gap: 150px;
  }
}
section.intro .intro-info > div {
  margin-top: 0px;
  width: 50%;
}
@media screen and (max-width: 992px) {
  section.intro .intro-info > div {
    margin-top: 20px;
    width: 100%;
  }
}
@media screen and (min-width: 1500px) {
  section.intro .intro-info > div {
    margin-top: 100px;
  }
}
section.intro .intro-info > div p {
  font-family: "odstemplikBold", sans-serif;
  font-size: 52px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  section.intro .intro-info > div p {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  section.intro .intro-info > div p {
    font-size: 22px;
  }
}
section.intro .intro-info > div .groom-info,
section.intro .intro-info > div .bride-info {
  max-width: 490px;
  padding: 45px 35px;
  color: #fff;
  background-color: #aa83b2;
  margin: 70px auto;
  position: relative;
}
@media screen and (max-width: 992px) {
  section.intro .intro-info > div .groom-info,
  section.intro .intro-info > div .bride-info {
    padding: 27px 25px;
    max-width: 400px;
  }
}
@media screen and (max-width: 480px) {
  section.intro .intro-info > div .groom-info,
  section.intro .intro-info > div .bride-info {
    padding: 27px 25px;
    max-width: 280px;
    margin: 20px auto 40px;
  }
}
section.intro .intro-info > div .groom-info p,
section.intro .intro-info > div .bride-info p {
  font-family: GenSekiGothic2TW;
  font-size: 20px;
  line-height: 35px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(0px);
  transition: 0.4s;
}
@media screen and (max-width: 992px) {
  section.intro .intro-info > div .groom-info p,
  section.intro .intro-info > div .bride-info p {
    font-size: 16px;
    line-height: 25px;
  }
}
@media screen and (max-width: 480px) {
  section.intro .intro-info > div .groom-info p,
  section.intro .intro-info > div .bride-info p {
    font-size: 12px;
    line-height: 20px;
  }
}
@media screen and (min-width: 1500px) {
  section.intro .intro-info > div .groom-info p,
  section.intro .intro-info > div .bride-info p {
    font-size: 27px;
    line-height: 42px;
  }
}
section.intro .intro-info > div .groom-info.active p:nth-child(1),
section.intro .intro-info > div .bride-info.active p:nth-child(1) {
  transition-delay: 0;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .intro-info > div .groom-info.active p:nth-child(2),
section.intro .intro-info > div .bride-info.active p:nth-child(2) {
  transition-delay: 300ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .intro-info > div .groom-info.active p:nth-child(4),
section.intro .intro-info > div .bride-info.active p:nth-child(4) {
  transition-delay: 600ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .intro-info > div .groom-info.active p:nth-child(5),
section.intro .intro-info > div .bride-info.active p:nth-child(5) {
  transition-delay: 900ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .intro-info > div .groom-info.active p:nth-child(7),
section.intro .intro-info > div .bride-info.active p:nth-child(7) {
  transition-delay: 1200ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .intro-info > div .groom-info.active p:nth-child(8),
section.intro .intro-info > div .bride-info.active p:nth-child(8) {
  transition-delay: 1500ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .intro-info > div .groom-info.active p:nth-child(9),
section.intro .intro-info > div .bride-info.active p:nth-child(9) {
  transition-delay: 1800ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .intro-info > div .groom-info::before,
section.intro .intro-info > div .bride-info::before {
  content: "";
  position: absolute;
  top: calc(-5% + 5px);
  width: 103%;
  aspect-ratio: 505/37;
  left: -1.5%;
  background-size: cover;
  background-image: url("./../image/icon-dec-1.svg");
}
@media screen and (max-width: 992px) {
  section.intro .intro-info > div .groom-info::before,
  section.intro .intro-info > div .bride-info::before {
    top: -5%;
  }
}
@media screen and (max-width: 480px) {
  section.intro .intro-info > div .groom-info::before,
  section.intro .intro-info > div .bride-info::before {
    top: -4%;
  }
}
section.intro .intro-info > div .groom-info::after,
section.intro .intro-info > div .bride-info::after {
  content: "";
  position: absolute;
  bottom: calc(-5% + 5px);
  width: 103%;
  aspect-ratio: 505/37;
  left: -1.5%;
  background-size: cover;
  background-image: url("./../image/icon-dec-1.svg");
}
@media screen and (max-width: 992px) {
  section.intro .intro-info > div .groom-info::after,
  section.intro .intro-info > div .bride-info::after {
    bottom: -5%;
  }
}
@media screen and (max-width: 480px) {
  section.intro .intro-info > div .groom-info::after,
  section.intro .intro-info > div .bride-info::after {
    bottom: -4%;
  }
}
section.intro .intro-info > div .groom-info img,
section.intro .intro-info > div .bride-info img {
  width: 31px;
  display: block;
  margin: 25px auto;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.intro .intro-info > div .groom-info img,
  section.intro .intro-info > div .bride-info img {
    width: 15px;
    margin: 10px auto;
  }
}
section.intro .intro-info > div img.groom {
  max-width: 369px;
  opacity: 0;
  transform: translateY(0px) translateX(-3%);
  transition-delay: 250ms;
  transition: 1s;
}
@media screen and (max-width: 480px) {
  section.intro .intro-info > div img.groom {
    max-width: 200px;
  }
}
section.intro .intro-info > div img.groom.active {
  opacity: 1;
  transform: translateY(0px) translateX(-3%);
}
section.intro .intro-info > div img.bride {
  max-width: 372px;
  opacity: 0;
  transform: translateY(0px) translateX(3%);
  transition-delay: 250ms;
  transition: 1s;
}
@media screen and (max-width: 480px) {
  section.intro .intro-info > div img.bride {
    max-width: 206px;
    transform: translateX(3%) translateY(0px);
  }
}
section.intro .intro-info > div img.bride.active {
  opacity: 1;
  transform: translateY(0px) translateX(3%);
}
section.intro .intro-info > div h3 {
  font-family: "odstemplikBold", sans-serif;
  font-size: 72px;
  color: #a575aa;
  opacity: 0;
  transform: translateY(100px);
  transition: 0.4s;
}
section.intro .intro-info > div h3.active {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 992px) {
  section.intro .intro-info > div h3 {
    font-size: 32px;
  }
}
section.intro .common-interests {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 120px auto 0;
  gap: 10%;
}
@media screen and (max-width: 992px) {
  section.intro .common-interests {
    flex-direction: column-reverse;
    gap: 40px;
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 480px) {
  section.intro .common-interests {
    gap: 15px;
    margin: 50px auto 0;
  }
}
section.intro .common-interests .heart-1 {
  animation: heartBeat 2s ease-in-out infinite;
  animation-delay: 0s;
  transform-origin: center;
}
section.intro .common-interests .heart-2 {
  animation: heartBeat 2s ease-in-out infinite;
  animation-delay: 0.3s;
  transform-origin: center;
}
section.intro .common-interests .heart-3 {
  animation: heartBeat 2s ease-in-out infinite;
  animation-delay: 0.6s;
  transform-origin: center;
}
@keyframes heartBeat {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
}
section.intro .common-interests .left {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 50px;
  position: relative;
  width: 60%;
}
@media screen and (max-width: 992px) {
  section.intro .common-interests .left {
    padding: 40px 15px 25px;
  }
}
section.intro .common-interests .left.active h3 {
  transition-delay: 0;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .common-interests .left.active p:nth-child(2) {
  transition-delay: 300ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .common-interests .left.active p:nth-child(3) {
  transition-delay: 600ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .common-interests .left.active p:nth-child(4) {
  transition-delay: 900ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .common-interests .left.active p:nth-child(5) {
  transition-delay: 1200ms;
  opacity: 1;
  transform: translateY(0px);
}
section.intro .common-interests .left h3 {
  font-size: 28px;
  color: #a575aa;
  font-weight: 600;
  font-family: GenSekiGothic2TW;
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(0px);
  transition-delay: 250ms;
  transition: 1s;
}
@media screen and (max-width: 992px) {
  section.intro .common-interests .left h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  section.intro .common-interests .left h3 {
    font-size: 14px;
  }
}
@media screen and (min-width: 1540px) {
  section.intro .common-interests .left h3 {
    font-size: 30px;
  }
}
section.intro .common-interests .left h3.active {
  opacity: 1;
  transform: translateY(0px);
}
section.intro .common-interests .left h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #a575aa;
  bottom: -30px;
  left: 0;
}
@media screen and (max-width: 992px) {
  section.intro .common-interests .left h3::after {
    bottom: -15px;
  }
}
section.intro .common-interests .left::before {
  content: "";
  position: absolute;
  top: calc(-5% + 5px);
  width: 103%;
  aspect-ratio: 646/25;
  left: -1.5%;
  background-size: cover;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("./../image/icon-dec-2.svg");
}
@media screen and (max-width: 992px) {
  section.intro .common-interests .left::before {
    top: calc(-5% + 2px);
  }
}
section.intro .common-interests .left::after {
  content: "";
  position: absolute;
  bottom: calc(-5% + 5px);
  width: 103%;
  aspect-ratio: 646/25;
  left: -1.5%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("./../image/icon-dec-2.svg");
}
@media screen and (max-width: 992px) {
  section.intro .common-interests .left::after {
    bottom: calc(-5% + 2px);
  }
}
section.intro .common-interests .left p {
  font-size: 25px;
  color: #a575aa;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: GenSekiGothic2TW;
  opacity: 0;
  transform: translateY(0px);
  transition-delay: 250ms;
  transition: 1s;
}
@media screen and (max-width: 992px) {
  section.intro .common-interests .left p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  section.intro .common-interests .left p {
    font-size: 12px;
  }
}
@media screen and (min-width: 1540px) {
  section.intro .common-interests .left p {
    font-size: 28px;
  }
}
section.intro .common-interests .left p.active {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 992px) {
  section.intro .common-interests .left {
    max-width: 400px;
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  section.intro .common-interests .left {
    max-width: 90%;
    width: 90%;
  }
}
section.intro .common-interests .right {
  width: 40%;
  position: relative;
}
section.intro .common-interests .right img {
  opacity: 0;
  transform: translateY(0px);
  transition-delay: 250ms;
  transition: 1s;
}
section.intro .common-interests .right img.active {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 992px) {
  section.intro .common-interests .right {
    max-width: 400px;
    width: 60%;
  }
  section.intro .common-interests .right img {
    max-width: 400px;
  }
}
@media screen and (max-width: 480px) {
  section.intro .common-interests .right {
    width: 80%;
    max-width: 200px;
  }
  section.intro .common-interests .right img {
    max-width: 200px;
  }
}
section.intro .common-interests .right svg {
  z-index: 1;
  position: absolute;
  width: 108px;
  right: 20%;
  transform: translateX(50%);
  top: 10%;
  overflow: visible;
}
@media screen and (max-width: 992px) {
  section.intro .common-interests .right svg {
    width: 20%;
    right: 20%;
  }
}
@media screen and (max-width: 480px) {
  section.intro .common-interests .right svg {
    width: 30%;
    right: 3%;
    transform: translateX(0%);
  }
}
section.loveStory {
  padding: 100px 20px;
}
@media screen and (max-width: 992px) {
  section.loveStory {
    padding: 60px 20px;
  }
}
section.loveStory .container {
  max-width: 1200px;
  margin: auto;
}
@media screen and (min-width: 1540px) {
  section.loveStory .container {
    max-width: calc(100vw - 400px);
  }
}
section.loveStory .container .item {
  max-width: 800px;
  position: relative;
}
@media screen and (min-width: 1540px) {
  section.loveStory .container .item {
    max-width: 1000px;
  }
}
@media screen and (max-width: 992px) {
  section.loveStory .container .item {
    max-width: 500px;
    margin: auto;
  }
}
section.loveStory .container .item .section-bg {
  width: 100%;
}
section.loveStory .container .item .section-title {
  height: 70px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 50px));
  transition: 1s;
}
section.loveStory .container .item .section-title.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 992px) {
  section.loveStory .container .item .section-title {
    height: 50px;
    top: 9%;
  }
}
@media screen and (max-width: 480px) {
  section.loveStory .container .item .section-title {
    height: 31px;
    top: 9%;
  }
}
section.loveStory .container .item .section-subtitle {
  position: absolute;
  height: 28px;
  top: calc(10% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 50px));
  transition: 1s;
}
section.loveStory .container .item .section-subtitle.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 992px) {
  section.loveStory .container .item .section-subtitle {
    height: 20px;
    top: calc(9% + 35px);
  }
}
@media screen and (max-width: 480px) {
  section.loveStory .container .item .section-subtitle {
    height: 14px;
    top: calc(9% + 25px);
  }
}
section.loveStory .container .content {
  width: 100%;
  text-align: center;
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 992px) {
  section.loveStory .container .content {
    text-align: left;
    padding: 0 40px;
    top: calc(50% + 20px);
  }
}
@media screen and (max-width: 480px) {
  section.loveStory .container .content {
    top: calc(50% + 20px);
  }
}
section.loveStory .container .content.active p:nth-child(3) {
  transition-delay: 0;
  opacity: 1;
  transform: translateY(0px);
}
section.loveStory .container .content.active p:nth-child(6) {
  transition-delay: 400ms;
  opacity: 1;
  transform: translateY(0px);
}
section.loveStory .container .content.active p:nth-child(9) {
  transition-delay: 800ms;
  opacity: 1;
  transform: translateY(0px);
}
section.loveStory .container .content.active p:nth-child(10) {
  transition-delay: 1200ms;
  opacity: 1;
  transform: translateY(0px);
}
section.loveStory .container .content.active p:nth-child(11) {
  transition-delay: 1600ms;
  opacity: 1;
  transform: translateY(0px);
}
section.loveStory .container .content.active p:nth-child(14) {
  transition-delay: 2000ms;
  opacity: 1;
  transform: translateY(0px);
}
section.loveStory .container .content.active p:nth-child(15) {
  transition-delay: 2400ms;
  opacity: 1;
  transform: translateY(0px);
}
section.loveStory .container .content.active p:nth-child(18) {
  transition-delay: 2800ms;
  opacity: 1;
  transform: translateY(0px);
}
section.loveStory .container .content .flower-2 {
  position: absolute;
  left: calc(50% + 160px);
  top: -35px;
  width: 110px;
}
section.loveStory .container .content .flower-1 {
  position: absolute;
  right: calc(50% + 170px);
  top: -20px;
  width: 92px;
}
@media screen and (max-width: 992px) {
  section.loveStory .container .content .flower-1 {
    position: absolute;
    right: calc(50% - 145px);
    top: -2px;
    width: 60px;
  }
}
@media screen and (max-width: 480px) {
  section.loveStory .container .content .flower-1 {
    position: absolute;
    right: calc(50% - 120px);
    top: -5px;
    width: 46px;
  }
}
section.loveStory .container .content p {
  line-height: 1.8;
  font-family: GenSekiGothic2TW;
  color: #85498e;
  font-size: 19px;
  display: inline-block;
  opacity: 0;
  transform: translateY(0px);
  transition-delay: 250ms;
  transition: 1s;
}
@media screen and (max-width: 992px) {
  section.loveStory .container .content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 480px) {
  section.loveStory .container .content p {
    font-size: 12px;
    line-height: 1.7;
  }
}
section.loveStory .container .content p.active {
  opacity: 1;
  transform: translateY(0px);
}
section.loveStory .container .content p span:not(.hightlight) {
  font-size: 14px;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  section.loveStory .container .content p span:not(.hightlight) {
    font-size: 10px;
    line-height: 1.5;
  }
}
section.loveStory .container .content p .hightlight {
  font-weight: 700;
  display: inline-block;
  position: relative;
}
section.loveStory .container .content p .hightlight::after {
  content: "";
  display: block;
  width: 105%;
  height: 60%;
  position: absolute;
  top: 40%;
  left: -2%;
  background-color: #f1d8e8;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  section.loveStory .container .content p .hightlight::after {
    top: 20%;
  }
}
section.dateAndSchedule {
  padding: 100px 20px;
  background-color: #f1d8e8;
}
@media screen and (max-width: 992px) {
  section.dateAndSchedule {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 480px) {
  section.dateAndSchedule {
    padding: 60px 20px 30px;
  }
}
@media screen and (min-width: 1540px) {
  section.dateAndSchedule {
    padding: 200px 20px 120px;
  }
}
section.dateAndSchedule .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
}
@media screen and (min-width: 1500px) {
  section.dateAndSchedule .container {
    max-width: 1500px;
  }
}
@media screen and (max-width: 992px) {
  section.dateAndSchedule .container {
    flex-wrap: wrap;
  }
}
section.dateAndSchedule .container .item.right {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.dateAndSchedule .container .item.right {
    width: 100%;
  }
}
section.dateAndSchedule .container .item.right h2 {
  font-family: odstemplikBold;
  font-size: 70px;
  color: #a575aa;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}
@media screen and (min-width: 1500px) {
  section.dateAndSchedule .container .item.right h2 {
    font-size: 77px;
  }
}
@media screen and (max-width: 480px) {
  section.dateAndSchedule .container .item.right h2 {
    font-size: 36px;
  }
}
section.dateAndSchedule .container .item.right h2.active {
  opacity: 1;
  transform: translateY(0px);
}
section.dateAndSchedule .container .item.right p {
  font-family: GenSekiGothic2TW;
  font-size: 30px;
  color: #a575aa;
  font-weight: 500;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}
@media screen and (max-width: 480px) {
  section.dateAndSchedule .container .item.right p {
    font-size: 14px;
    margin-top: 0px;
  }
}
section.dateAndSchedule .container .item.right p.active {
  opacity: 1;
  transform: translateY(0px);
}
section.dateAndSchedule .container .item.right img {
  margin-top: 20px;
  max-width: 505px;
  width: 80%;
}
@media screen and (max-width: 992px) {
  section.dateAndSchedule .container .item.right img {
    max-width: 400px;
  }
}
@media screen and (max-width: 480px) {
  section.dateAndSchedule .container .item.right img {
    max-width: 300px;
  }
}
section.dateAndSchedule .container .item.left {
  width: 60%;
}
section.dateAndSchedule .container .item.left img {
  opacity: 0;
  transform: translateY(0px);
  transition-delay: 250ms;
  transition: 1s;
}
section.dateAndSchedule .container .item.left img.active {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 992px) {
  section.dateAndSchedule .container .item.left {
    width: 100%;
  }
  section.dateAndSchedule .container .item.left img {
    max-width: 550px;
    margin: auto;
    display: block;
  }
}
section.information {
  background-color: #f1d8e8;
  padding: 100px 20px;
}
@media screen and (max-width: 992px) {
  section.information {
    padding: 30px 20px;
  }
}
section.information .container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  section.information .container {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  section.information .container {
    gap: 20px;
  }
}
@media screen and (min-width: 1540px) {
  section.information .container {
    max-width: 1500px;
  }
}
section.information .container .item.left {
  max-width: 430px;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  section.information .container .item.left {
    max-width: 400px;
  }
}
@media screen and (max-width: 480px) {
  section.information .container .item.left {
    max-width: 300px;
  }
}
@media screen and (min-width: 1500px) {
  section.information .container .item.left {
    max-width: 545px;
  }
}
section.information .container .item.left h2 {
  font-family: odstemplikBold;
  font-size: 65px;
  color: #a575aa;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
  text-align: left;
}
@media screen and (min-width: 1500px) {
  section.information .container .item.left h2 {
    font-size: 77px;
  }
}
@media screen and (max-width: 480px) {
  section.information .container .item.left h2 {
    font-size: 36px;
  }
}
section.information .container .item.left h2.h2-2 {
  transform: translateY(100px) translateX(150px);
}
section.information .container .item.left h2.h2-2.active {
  opacity: 1;
  transform: translateX(150px) translateY(0px);
}
@media screen and (max-width: 992px) {
  section.information .container .item.left h2.h2-2 {
    transform: translateY(100px) translateX(150px);
  }
  section.information .container .item.left h2.h2-2.active {
    opacity: 1;
    transform: translateX(150px) translateY(0px);
  }
}
section.information .container .item.left h2.active {
  opacity: 1;
  transform: translateY(0px);
}
section.information .container .item.left .information-subtitle {
  max-width: 298px;
  width: 100%;
  margin: 20px auto;
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}
section.information .container .item.left .information-subtitle.active {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 480px) {
  section.information .container .item.left .information-subtitle {
    max-width: 300px;
    margin: 10px auto;
  }
}
@media screen and (max-width: 480px) {
  section.information .container .item.left .information-subtitle {
    max-width: 150px;
  }
}
section.information .container .item.left .information-info {
  margin-top: 20px;
  max-width: 505px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  section.information .container .item.left .information-info {
    max-width: 400px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  section.information .container .item.left .information-info {
    max-width: 300px;
  }
}
section.information .container .item.right {
  width: 57.5%;
  aspect-ratio: 863/674;
  background-image: url("./../image/map.png");
  transition: 0.3s;
  background-size: cover;
  position: relative;
  clip-path: polygon(0 20px, 20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
}
@media screen and (max-width: 992px) {
  section.information .container .item.right {
    width: 100%;
  }
}
section.information .container .item.right a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
section.information .container .item.right::before {
  content: "";
  background-color: rgba(165, 117, 170, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 1s;
  pointer-events: none;
}
section.information .container .item.right::after {
  content: "";
  background-image: url("./../image/map-cover-w.svg");
  height: auto;
  background-repeat: no-repeat;
  width: 55%;
  aspect-ratio: 555/73;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 1s;
  pointer-events: none;
}
section.information .container .item.right:hover::before {
  opacity: 1;
}
section.information .container .item.right:hover::after {
  opacity: 1;
}
@media screen and (max-width: 992px) {
  section.information .container .item.right::before {
    opacity: 1;
  }
  section.information .container .item.right::after {
    opacity: 1;
  }
}
section.dress-code {
  background-color: #f1d8e8;
  padding: 100px 20px;
}
@media screen and (max-width: 992px) {
  section.dress-code {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 480px) {
  section.dress-code {
    padding: 30px 20px 35px;
  }
}
section.dress-code .container {
  display: flex;
  max-width: 1100px;
  margin: auto;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  section.dress-code .container {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  section.dress-code .container {
    gap: 30px;
  }
}
section.dress-code .container .item.left {
  width: 35%;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  section.dress-code .container .item.left {
    width: 100%;
    max-width: 245px;
  }
}
@media screen and (max-width: 480px) {
  section.dress-code .container .item.left {
    max-width: 60%;
  }
}
@media screen and (min-width: 1500px) {
  section.dress-code .container .item.left {
    max-width: 545px;
  }
}
section.dress-code .container .item.left img {
  opacity: 0;
  transform: translateY(0px);
  transition-delay: 250ms;
  transition: 1s;
}
section.dress-code .container .item.left img.active {
  opacity: 1;
  transform: translateY(0px);
}
section.dress-code .container .item.right {
  width: 65%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.dress-code .container .item.right {
    width: 100%;
    text-align: left;
    max-width: 500px;
  }
}
@media screen and (max-width: 480px) {
  section.dress-code .container .item.right {
    max-width: 300px;
  }
}
section.dress-code .container .item.right > p {
  font-size: 20px;
  line-height: 1.7;
  font-family: GenSekiGothic2TW;
  font-weight: 500;
  color: #a575aa;
}
@media screen and (max-width: 992px) {
  section.dress-code .container .item.right > p {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  section.dress-code .container .item.right > p {
    font-size: 14px;
  }
}
section.dress-code .container .item.right .color-container {
  display: flex;
  justify-content: space-between;
}
section.dress-code .container .item.right .color-container div {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
@media screen and (max-width: 992px) {
  section.dress-code .container .item.right .color-container div {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 480px) {
  section.dress-code .container .item.right .color-container div {
    width: 80px;
    height: 80px;
  }
}
section.dress-code .container .item.right .color-container div.color-item {
  margin-top: 50px;
  font-family: "odstemplikBold", sans-serif;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 992px) {
  section.dress-code .container .item.right .color-container div.color-item {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  section.dress-code .container .item.right .color-container div.color-item {
    margin-top: 30px;
  }
}
section.dress-code .container .item.right .color-container div.color-item:nth-child(1) {
  transition: 1s;
  transition-delay: 50ms;
}
section.dress-code .container .item.right .color-container div.color-item:nth-child(2) {
  transition: 1s;
  transition-delay: 250ms;
}
section.dress-code .container .item.right .color-container div.color-item:nth-child(3) {
  transition: 1s;
  transition-delay: 450ms;
}
section.dress-code .container .item.right .color-container div.color-item.active {
  opacity: 1;
  transform: translateY(0px);
}
section.dress-code .container .item.right .color-container div.color-item p {
  font-size: 37px;
  margin-top: 15px;
  color: #a575aa;
}
@media screen and (max-width: 992px) {
  section.dress-code .container .item.right .color-container div.color-item p {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  section.dress-code .container .item.right .color-container div.color-item p {
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
  }
}
section.dress-code .container .item.right .color-container div.color-item-1 {
  background-color: #dcbbd8;
}
section.dress-code .container .item.right .color-container div.color-item-2 {
  background-color: #c3e8fc;
}
section.dress-code .container .item.right .color-container div.color-item-3 {
  background-color: #ffb7ce;
}
section.photos {
  padding: 60px 20px;
  text-align: center;
  background-color: #f1d8e8;
}
@media screen and (max-width: 992px) {
  section.photos {
    padding: 60px 20px;
  }
}
section.photos h2 {
  font-family: odstemplikBold;
  font-size: 84px;
  color: #a575aa;
}
@media screen and (max-width: 992px) {
  section.photos h2 {
    font-size: 55px;
  }
}
@media screen and (max-width: 480px) {
  section.photos h2 {
    font-size: 38px;
  }
}
section.photos > img {
  width: 170px;
}
@media screen and (max-width: 992px) {
  section.photos > img {
    width: 120px;
  }
}
@media screen and (max-width: 480px) {
  section.photos > img {
    width: 85px;
  }
}
section.photos .container {
  display: flex;
  gap: 26px;
  aspect-ratio: 2000/1500;
  max-width: 850px;
  margin: 60px auto 0;
}
@media screen and (min-width: 1500px) {
  section.photos .container {
    max-width: 1460px;
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 992px) {
  section.photos .container {
    aspect-ratio: 1000/1500;
    margin: 30px auto;
  }
}
section.photos .item {
  width: 50%;
  display: flex;
  gap: 26px;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  section.photos .item {
    width: 100%;
  }
}
section.photos .item .slick-1,
section.photos .item .slick-2,
section.photos .item .slick-3 {
  width: 100%;
  height: 100%;
  background-color: rgba(165, 117, 170, 0.8);
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
}
section.photos .item .slick-1 .slick-1,
section.photos .item .slick-1 .slick-2,
section.photos .item .slick-2 .slick-1,
section.photos .item .slick-2 .slick-2,
section.photos .item .slick-3 .slick-1,
section.photos .item .slick-3 .slick-2 {
  aspect-ratio: 1000/1500;
}
section.photos .btn {
  width: 250px;
  padding: 16px 30px;
  background: transparent;
  font-family: "GenSekiGothic2TW";
  border: 2px solid #85498e;
  border-radius: 40px;
  color: #85498e;
  font-size: 26px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 50px auto 0;
  letter-spacing: 2px;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  section.photos .btn {
    width: 180px;
    padding: 10px 15px;
    background: transparent;
    border: 2px solid #a575aa;
    border-radius: 40px;
    color: #85498e;
    font-size: 18px;
    font-weight: 500;
    font-family: "GenSekiGothic2TW";
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    letter-spacing: 2px;
  }
}
section.photos .btn:hover {
  color: white;
  background-color: #85498e;
}
section.video {
  padding: 50px 20px;
  text-align: center;
  background-color: #f1d8e8;
}
@media screen and (max-width: 992px) {
  section.video {
    padding: 50px 20px;
  }
}
section.video h2 {
  font-family: odstemplikBold;
  font-size: 84px;
  color: #a575aa;
}
@media screen and (max-width: 992px) {
  section.video h2 {
    font-size: 55px;
  }
}
@media screen and (max-width: 480px) {
  section.video h2 {
    font-size: 38px;
  }
}
section.video > img {
  width: 170px;
}
@media screen and (max-width: 992px) {
  section.video > img {
    width: 120px;
  }
}
@media screen and (max-width: 480px) {
  section.video > img {
    width: 105px;
  }
}
section.video .container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
}
@media screen and (min-width: 1540px) {
  section.video .container {
    max-width: 1500px;
  }
}
@media screen and (max-width: 480px) {
  section.video .container {
    margin: 30px auto 0;
  }
}
section.video .container .item {
  width: 100%;
}
section.video .container .item iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
}
section.countdown {
  background-color: #f1d8e8;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 992px) {
  section.countdown {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 480px) {
  section.countdown {
    padding: 35px 20px;
  }
}
section.countdown h2 {
  font-family: odstemplikBold;
  font-size: 84px;
  color: #a575aa;
}
@media screen and (min-width: 1500px) {
  section.countdown h2 {
    font-size: 77px;
  }
}
@media screen and (max-width: 992px) {
  section.countdown h2 {
    font-size: 55px;
  }
}
@media screen and (max-width: 480px) {
  section.countdown h2 {
    font-size: 36px;
  }
}
section.countdown > img {
  width: 300px;
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  section.countdown > img {
    width: 200px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  section.countdown > img {
    width: 150px;
  }
}
section.countdown .highlight {
  font-family: GenSekiGothic2TW;
  font-size: 28px;
  color: #a575aa;
  font-weight: 500;
  margin-top: 10px;
  position: relative;
  letter-spacing: 0.3em;
  margin-top: 70px;
  display: inline-block;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  section.countdown .highlight {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  section.countdown .highlight {
    font-size: 10px;
    margin-top: 20px;
  }
}
section.countdown .highlight::after {
  content: "";
  display: block;
  top: 40%;
  left: -4%;
  position: absolute;
  width: 0%;
  z-index: -1;
  height: 100%;
  transition: 0.3s;
  background-color: rgba(133, 73, 142, 0.3);
  color: #fff;
}
section.countdown .highlight.active::after {
  width: 105%;
}
section.countdown .container {
  width: 100%;
  max-width: 1000px;
  margin: 70px auto 0;
}
@media screen and (min-width: 1500px) {
  section.countdown .container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 480px) {
  section.countdown .container {
    margin: 30px auto 0;
  }
}
section.countdown .container .item {
  display: flex;
  gap: 40px;
  font-family: "odstemplikBold", sans-serif;
  justify-content: space-between;
}
@media screen and (min-width: 1500px) {
  section.countdown .container .item {
    gap: 80px;
  }
}
@media screen and (max-width: 992px) {
  section.countdown .container .item {
    gap: 20px;
    justify-content: center;
  }
}
section.countdown .container .item #days {
  transition: 1s;
  transition-delay: 50ms;
}
section.countdown .container .item #hours {
  transition: 1s;
  transition-delay: 150ms;
}
section.countdown .container .item #mins {
  transition: 1s;
  transition-delay: 250ms;
}
section.countdown .container .item #secs {
  transition: 1s;
  transition-delay: 350ms;
}
section.countdown .container .item #days,
section.countdown .container .item #hours,
section.countdown .container .item #mins,
section.countdown .container .item #secs {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: rgba(165, 117, 170, 0.8);
  color: #f1d8e8;
  font-size: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (min-width: 1500px) {
  section.countdown .container .item #days,
  section.countdown .container .item #hours,
  section.countdown .container .item #mins,
  section.countdown .container .item #secs {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 992px) {
  section.countdown .container .item #days,
  section.countdown .container .item #hours,
  section.countdown .container .item #mins,
  section.countdown .container .item #secs {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}
section.countdown .container .item #days.active,
section.countdown .container .item #hours.active,
section.countdown .container .item #mins.active,
section.countdown .container .item #secs.active {
  opacity: 1;
  transform: translateY(0px);
}
section.countdown .container .item span {
  font-size: 60px;
  margin-top: 20px;
  color: #a575aa;
  display: block;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.countdown .container .item span {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  section.countdown .container .item span {
    font-size: 20px;
    margin-top: 10px;
  }
}
section.RSVP {
  padding: 50px 0px 200px;
  background-color: #f1d8e8;
  font-family: "GenSekiGothic2TW";
  color: #85498e;
  /* 修復：添加選中狀態的樣式 */
}
@media screen and (max-width: 992px) {
  section.RSVP {
    padding: 50px 30px 80px;
  }
}
section.RSVP .container {
  max-width: 590px;
  margin: 0 auto;
}
section.RSVP .rsvp-header {
  text-align: center;
  margin-bottom: 40px;
}
section.RSVP .rsvp-title {
  font-size: 84px;
  color: #a575aa;
  margin-bottom: 30px;
  letter-spacing: 3px;
  font-family: "odstemplikBold";
}
@media screen and (min-width: 1500px) {
  section.RSVP .rsvp-title {
    font-size: 77px;
  }
}
@media screen and (max-width: 992px) {
  section.RSVP .rsvp-title {
    font-size: 55px;
  }
}
@media screen and (max-width: 480px) {
  section.RSVP .rsvp-title {
    font-size: 36px;
  }
}
section.RSVP .attend-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
section.RSVP .attend-option {
  position: relative;
  cursor: pointer;
  padding: 15px 10px;
  font-size: 36px;
  font-weight: 500;
  color: #a575aa;
  border-bottom: 1px solid #a575aa;
  opacity: 0.3;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 992px) {
  section.RSVP .attend-option {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  section.RSVP .attend-option {
    font-size: 20px;
  }
}
section.RSVP .attend-option:hover {
  color: #a575aa;
}
section.RSVP .attend-option.active {
  color: #a575aa;
  opacity: 1;
}
section.RSVP .attend-option input {
  display: none;
}
section.RSVP .form-section {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 80px;
}
@media screen and (max-width: 480px) {
  section.RSVP .form-section {
    margin-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  section.RSVP .form-section {
    font-size: 14px;
  }
}
section.RSVP .form-group {
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  section.RSVP .form-group {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1500px) {
  section.RSVP .form-group {
    margin-bottom: 70px;
  }
}
section.RSVP .form-group.align {
  display: flex;
  align-items: center;
}
section.RSVP .form-group.align .form-label {
  margin-bottom: 0;
  white-space: nowrap;
}
section.RSVP .form-group.align .yes-no-group {
  margin-top: 0;
  margin-left: 10px;
  white-space: nowrap;
}
section.RSVP .form-group.align .inline-input-group {
  margin-top: 0;
  margin-left: 10px;
  white-space: nowrap;
}
section.RSVP .form-group.align .inline-input-group input[type=type] {
  width: 100%;
}
section.RSVP .form-label {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
  color: #85498e;
}
@media screen and (max-width: 480px) {
  section.RSVP .form-label {
    margin-bottom: 8px;
  }
}
section.RSVP .form-label span {
  color: red;
  display: inline-block;
  margin-right: 5px;
}
section.RSVP .form-input {
  width: 100%;
  padding: 19px 12px;
  border: none;
  background-color: rgba(133, 73, 142, 0.3);
  color: #85498e;
  font-size: 20px;
  line-height: 1.6;
  font-family: "GenSekiGothic2TW";
}
@media screen and (max-width: 480px) {
  section.RSVP .form-input {
    font-size: 14px;
    padding: 8px 8px;
  }
}
section.RSVP .form-input:focus {
  outline: none;
}
section.RSVP .container {
  max-width: 590px;
  margin: 0 auto;
}
section.RSVP .rsvp-header {
  text-align: center;
  margin-bottom: 40px;
}
section.RSVP .rsvp-title {
  font-size: 84px;
  color: #a575aa;
  margin-bottom: 30px;
  letter-spacing: 3px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.RSVP .rsvp-title {
    font-size: 55px;
  }
}
@media screen and (max-width: 480px) {
  section.RSVP .rsvp-title {
    font-size: 36px;
  }
}
section.RSVP .attend-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
section.RSVP .attend-option {
  position: relative;
  cursor: pointer;
  padding: 15px 10px;
  font-size: 36px;
  font-weight: 500;
  color: #a575aa;
  border-bottom: 1px solid #a575aa;
  opacity: 0.3;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 992px) {
  section.RSVP .attend-option {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  section.RSVP .attend-option {
    font-size: 20px;
  }
}
section.RSVP .attend-option:hover {
  color: #a575aa;
}
section.RSVP .attend-option.active {
  color: #a575aa;
  opacity: 1;
}
section.RSVP .attend-option input {
  display: none;
}
section.RSVP .form-section {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 80px;
}
@media screen and (max-width: 480px) {
  section.RSVP .form-section {
    margin-top: 50px;
    font-size: 14px;
  }
}
section.RSVP .form-group.align {
  display: flex;
  align-items: center;
}
section.RSVP .form-group.align .form-label {
  margin-bottom: 0;
  white-space: nowrap;
}
section.RSVP .form-group.align .checkbox-group {
  margin-top: 0;
  margin-left: 10px;
  white-space: nowrap;
}
section.RSVP .form-group.align .inline-input-group {
  margin-top: 0;
  margin-left: 10px;
  white-space: nowrap;
}
section.RSVP .form-label {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
  color: #85498e;
}
@media screen and (max-width: 480px) {
  section.RSVP .form-label {
    margin-bottom: 8px;
  }
}
section.RSVP .form-input {
  width: 100%;
  padding: 19px 12px;
  border: none;
  background-color: rgba(133, 73, 142, 0.3);
  color: #85498e;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  section.RSVP .form-input {
    font-size: 14px;
    padding: 8px 8px;
  }
}
section.RSVP .form-input:focus {
  outline: none;
}
section.RSVP .radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 10px;
}
section.RSVP .radio-group.vertical {
  grid-template-columns: repeat(1, 1fr);
}
section.RSVP .radio-option {
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #85498e;
}
@media screen and (max-width: 480px) {
  section.RSVP .radio-option {
    font-size: 14px;
  }
}
section.RSVP .radio-option input {
  display: none;
}
section.RSVP .custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #85498e;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background-color: transparent;
}
section.RSVP .radio-option input:checked + .custom-radio {
  background-color: #6b238e;
  border-color: #6b238e;
}
section.RSVP .radio-option input:checked + .custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
section.RSVP .checkbox-group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  white-space: nowrap;
  margin-left: 10px;
}
section.RSVP .checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 20px;
  color: #85498e;
}
@media screen and (max-width: 480px) {
  section.RSVP .checkbox-option {
    font-size: 14px;
  }
}
section.RSVP .checkbox-option input {
  display: none;
}
section.RSVP .custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #6b238e;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background-color: transparent;
}
section.RSVP .checkbox-option input:checked + .custom-checkbox {
  background-color: #6b238e;
  border-color: #6b238e;
}
section.RSVP .checkbox-option input:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
section.RSVP .inline-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
section.RSVP .inline-input-group input[type=text] {
  width: 80px;
  padding: 19px 12px;
  line-height: 1.6;
  border: none;
  background-color: rgba(133, 73, 142, 0.3);
  color: #6b238e;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  section.RSVP .inline-input-group input[type=text] {
    font-size: 14px;
    padding: 8px 8px;
  }
}
section.RSVP .inline-input-group #adults,
section.RSVP .inline-input-group #children {
  width: 100%;
}
section.RSVP .inline-input-group label {
  white-space: nowrap;
}
section.RSVP .message-area {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  font-size: 20px;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  resize: none;
  color: #85498e;
}
@media screen and (max-width: 480px) {
  section.RSVP .message-area {
    font-size: 14px;
  }
}
section.RSVP .message-area:focus {
  outline: none;
}
section.RSVP .submit-btn {
  width: 200px;
  padding: 15px 30px;
  background: transparent;
  border-radius: 25px;
  color: #85498e;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  letter-spacing: 2px;
}
section.RSVP .submit-btn.disable {
  pointer-events: none;
  cursor: not-allowed;
  color: #6e6e6e;
  border: 2px solid #6e6e6e;
}
section.RSVP .submit-btn:not(.disable):hover {
  color: white;
  transform: translateY(-2px);
}
section.RSVP .hidden {
  display: none;
}
section.RSVP .fade-in {
  animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.RSVP .yes-no-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
section.RSVP .yes-no-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
section.RSVP .yes-no-option input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
section.RSVP .inline-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
section.RSVP .inline-input-group input[type=number] {
  width: 80px;
  padding: 19px 12px;
  border: none;
  background-color: rgba(133, 73, 142, 0.3);
  color: #6b238e;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  font-family: "GenSekiGothic2TW";
}
@media screen and (max-width: 480px) {
  section.RSVP .inline-input-group input[type=number] {
    font-size: 14px;
    padding: 8px 8px;
  }
}
section.RSVP .inline-input-group input[type=type] {
  width: 80px;
  padding: 19px 12px;
  border: none;
  background-color: rgba(133, 73, 142, 0.3);
  color: #a575aa;
  text-align: center;
  color: #6b238e;
  font-size: 20px;
  line-height: 1.6;
  font-family: "GenSekiGothic2TW";
}
@media screen and (max-width: 480px) {
  section.RSVP .inline-input-group input[type=type] {
    font-size: 14px;
    padding: 8px 8px;
  }
}
section.RSVP .inline-input-group #adults,
section.RSVP .inline-input-group #children {
  width: 100%;
}
section.RSVP .inline-input-group label {
  white-space: nowrap;
}
section.RSVP .number-group {
  display: flex;
  gap: 20px;
  align-items: center;
}
section.RSVP .number-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
section.RSVP .number-input select {
  width: 80px;
  padding: 8px;
  border: none;
  background-color: rgba(133, 73, 142, 0.3);
  color: #6b238e;
}
section.RSVP .invitation-options {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
section.RSVP .invitation-option {
  flex: 1;
  cursor: pointer;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  background: rgba(139, 122, 139, 0.1);
}
section.RSVP .invitation-option:hover {
  background-color: rgba(133, 73, 142, 0.3);
  color: #6b238e;
}
section.RSVP .invitation-option.selected {
  background: rgba(139, 122, 139, 0.4);
  color: #6b238e;
  font-weight: 500;
}
section.RSVP .invitation-option input {
  display: none;
}
section.RSVP .message-area {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  font-size: 20px;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  resize: none;
  color: #85498e;
  font-family: "GenSekiGothic2TW";
}
@media screen and (max-width: 480px) {
  section.RSVP .message-area {
    font-size: 14px;
  }
}
section.RSVP .message-area:focus {
  outline: none;
}
section.RSVP .submit-btn {
  width: 178px;
  padding: 16px 30px;
  background: transparent;
  border: 2px solid #a575aa;
  border-radius: 40px;
  color: #85498e;
  font-size: 26px;
  font-weight: 500;
  font-family: "GenSekiGothic2TW";
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  letter-spacing: 2px;
}
@media screen and (max-width: 480px) {
  section.RSVP .submit-btn {
    width: 100px;
    padding: 10px 15px;
    background: transparent;
    border: 2px solid #a575aa;
    border-radius: 40px;
    color: #85498e;
    font-size: 18px;
    font-weight: 500;
    font-family: "GenSekiGothic2TW";
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0px auto 0;
    letter-spacing: 2px;
  }
}
section.RSVP .submit-btn:hover {
  background: #85498e;
  color: white;
}
section.RSVP .hidden {
  display: none;
}
section.RSVP .fade-in {
  animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.RSVP .success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-family: "GenSekiGothic2TW";
}
section.RSVP .success-content {
  background: white;
  padding: 30px 50px;
  line-height: 1.5;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  font-size: 18px;
  font-family: "GenSekiGothic2TW";
}
@media screen and (max-width: 480px) {
  section.RSVP .success-content {
    max-width: 80%;
    padding: 30px 20px;
  }
}
section.RSVP .success-title {
  font-size: 30px;
  color: #a575aa;
  margin-bottom: 5px;
  line-height: 1.5;
  font-family: "GenSekiGothic2TW";
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.RSVP .success-title {
    font-size: 26px;
  }
}
section.RSVP .close-btn {
  width: 178px;
  padding: 10px 30px;
  background: transparent;
  border: 2px solid #a575aa;
  border-radius: 40px;
  color: #85498e;
  font-size: 20px;
  font-weight: 500;
  font-family: "GenSekiGothic2TW";
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  letter-spacing: 2px;
}
section.RSVP .close-btn:hover {
  background: #85498e;
  color: white;
}

.background-container::after {
  content: "";
  position: absolute;
  opacity: 0.3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #8583b9 0%, #9d88c4 15%, #b595ce 35%, #ce93b4 60%, #d6a5bc 80%, #e0b0c4 100%);
  z-index: -2;
  background-size: 600% 600%;
  min-height: 720px;
  animation: gradientFlow 5s linear infinite;
}
.background-container::before {
  content: "";
  position: absolute;
  opacity: 0.3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  background-image: url("./../image/Asset 1@2x.png");
  z-index: -1;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 50% 100%;
  }
  75% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 0% 0%;
  }
}/*# sourceMappingURL=style.css.map */