@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
/* Color */
/* Breakpoints（對齊 Bootstrap） */
/* Font Size - Desktop */
/* Font Size - Mobile */
/* Font Family */
section {
  overflow: hidden;
}

.page01 {
  overflow: hidden;
  background: linear-gradient(180deg, #F9E8BE 50%, #F3F2EE 100%);
}
.page01 .layer {
  -webkit-mask-image: linear-gradient(-55deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 12%, rgb(0, 0, 0) 22%, rgba(0, 0, 0, 0.5) 32%, rgba(0, 0, 0, 0.15) 42%, rgba(0, 0, 0, 0.65) 54%, rgb(0, 0, 0) 64%, rgba(0, 0, 0, 0.45) 74%, rgba(0, 0, 0, 0.1) 100%);
          mask-image: linear-gradient(-55deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 12%, rgb(0, 0, 0) 22%, rgba(0, 0, 0, 0.5) 32%, rgba(0, 0, 0, 0.15) 42%, rgba(0, 0, 0, 0.65) 54%, rgb(0, 0, 0) 64%, rgba(0, 0, 0, 0.45) 74%, rgba(0, 0, 0, 0.1) 100%);
  -webkit-mask-size: 300% 300%;
          mask-size: 300% 300%;
  animation: auroraWave 7s ease-in-out infinite;
}
.page01 .layer:nth-child(1) {
  animation-delay: 0s;
}
.page01 .layer:nth-child(2) {
  animation-delay: -1.75s;
}
.page01 .layer:nth-child(3) {
  animation-delay: -3.5s;
}
.page01 .layer:nth-child(4) {
  animation-delay: -5.25s;
}

@keyframes auroraWave {
  0% {
    -webkit-mask-position: 0% 0%;
            mask-position: 0% 0%;
  }
  50% {
    -webkit-mask-position: 100% 100%;
            mask-position: 100% 100%;
  }
  100% {
    -webkit-mask-position: 0% 0%;
            mask-position: 0% 0%;
  }
}
.page02 {
  background: linear-gradient(to bottom, #F3F2EE 90%, #F9E8BE 100%);
}
@media (max-width: 991px) {
  .page02 {
    padding: 20% 0;
  }
}
@media (min-width: 992px) {
  .page02 .row {
    min-height: 100vh;
  }
}
.page02 .Txt .title {
  color: #2E424D;
}
.page02 .Img img {
  mix-blend-mode: darken;
}

.page03 {
  position: relative;
}
.page03 .TxtBox {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.page03 .Img .innerImg {
  padding-top: 55%;
}
@media (max-width: 991px) {
  .page03 .Img .innerImg {
    padding-top: 84%;
  }
}

.page04 {
  background-color: #F9E8BE;
}
.page04::before {
  content: "";
  position: absolute;
  left: 4%;
  top: 33%;
  width: 30px;
  height: 200px;
  background-image: url(../images/img/deco-1.png);
}
@media (max-width: 991px) {
  .page04::before {
    left: 6%;
    top: 36%;
    transform: scale(0.5);
    transform-origin: bottom;
  }
}
.page04 .TxtBox {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page05 {
  min-height: 100vh;
  padding-top: 10%;
  background-size: cover;
  background-position: bottom;
}
@media (max-width: 991px) {
  .page05 {
    background-position: 30% bottom;
    padding-top: 30%;
  }
}

.page06 {
  background-color: #F9E8BE;
}
.page06 .imgSlick .innerImg {
  padding-top: 125%;
}
@media (max-width: 991px) {
  .page06 .imgSlick .innerImg {
    padding-top: 70%;
  }
}
@media (min-width: 1367px) {
  .page06 .leftBox {
    padding-left: 6rem;
  }
}
@media (max-width: 1366px) {
  .page06 .leftBox {
    padding-left: 3rem;
  }
}
@media (max-width: 991px) {
  .page06 .leftBox {
    padding-left: 0rem;
  }
}
.page06 .rightBox .infoImg {
  top: 100%;
  bottom: auto;
  text-shadow: none;
  color: #727171;
  padding: 0;
  white-space: nowrap;
}
.page06 .rightBox .Txt::before {
  content: "";
  position: absolute;
  bottom: 95%;
  width: 30px;
  height: 200px;
  background-image: url(../images/img/deco-1.png);
}
@media (max-width: 991px) {
  .page06 .rightBox .Txt::before {
    bottom: 0;
    right: calc(100% + 8px);
    transform: scale(0.5);
    transform-origin: bottom;
  }
}
.page06 .grid {
  display: grid;
  gap: 24px 8px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: ". . a b" ". . c d" "f f f e" "f f f .";
}
.page06 .a {
  grid-area: a;
}
.page06 .b {
  grid-area: b;
}
.page06 .c {
  grid-area: c;
}
.page06 .d {
  grid-area: d;
}
.page06 .e {
  grid-area: e;
}
.page06 .f {
  grid-area: f;
}
@media (max-width: 991px) {
  .page06 .grid {
    grid-template-areas: "f f f f" "a a b b" "c c d d" ". . e e";
  }
}

.page07 {
  background: linear-gradient(180deg, #F9E8BE 10%, #F3F2EE 20%, #F3F2EE 80%, #F9E8BE 100%);
}
@media (min-width: 1367px) {
  .page07 .leftBox {
    padding-left: 4.8rem;
  }
}
@media (max-width: 1366px) {
  .page07 .leftBox {
    padding-left: 3rem;
  }
}
@media (max-width: 991px) {
  .page07 .leftBox {
    padding-left: 0rem;
  }
}
.page07 .TxtBox::before {
  content: "";
  background-image: url(../images/img/deco-1.png);
  position: absolute;
  width: 30px;
  height: 200px;
  right: 0;
  top: 0;
}
@media (max-width: 991px) {
  .page07 .TxtBox::before {
    transform: scale(0.5);
    transform-origin: top;
    top: -39px;
    right: -8px;
  }
}
.page07 .infoImg {
  top: 100%;
  bottom: auto;
  text-shadow: none;
  color: #727171;
  padding: 0;
  white-space: nowrap;
}

.page08 {
  background-color: #F9E8BE;
}
@media (min-width: 1367px) {
  .page08 .leftBox {
    padding-left: 4.8rem;
  }
}
@media (max-width: 1366px) {
  .page08 .leftBox {
    padding-left: 3rem;
  }
}
@media (max-width: 991px) {
  .page08 .leftBox {
    padding-left: 0rem;
  }
}
.page08 .rightBox {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.page08 .rightBox::before {
  content: "";
  position: absolute;
  right: 0%;
  bottom: 10%;
  width: 30px;
  height: 200px;
  background-image: url(../images/img/deco-1.png);
}
@media (max-width: 991px) {
  .page08 .rightBox::before {
    transform: scale(0.5);
    bottom: auto;
    top: 0;
    right: auto;
    left: 5%;
  }
}
.page08 .rightBox .infoImg {
  top: 100%;
  bottom: auto;
  text-shadow: none;
  color: #727171;
  padding: 0;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .page08 .rightBox .TxtBox {
    padding-left: 22px;
  }
}

.page09 {
  background: linear-gradient(180deg, #F9E8BE 10%, #F3F2EE 20%, #F3F2EE 80%, #F9E8BE 100%);
}
@media (max-width: 991px) {
  .page09 {
    background: linear-gradient(180deg, #F9E8BE 5%, #F3F2EE 10%, #F3F2EE 80%, #F9E8BE 100%);
  }
}
.page09 .TxtBox {
  position: relative;
}
.page09 .TxtBox::before {
  content: "";
  position: absolute;
  bottom: 100%;
  width: 30px;
  height: 200px;
  background-image: url(../images/img/deco-1.png);
}
@media (max-width: 991px) {
  .page09 .TxtBox::before {
    bottom: 0;
    left: 5%;
    right: calc(100% + 16px);
    transform: scale(0.5);
    transform-origin: bottom;
  }
}

.page10 {
  background-color: #F9E8BE;
}
.page10 .TxtBox {
  position: relative;
}
.page10 .TxtBox::before {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0%;
  width: 30px;
  height: 200px;
  background-image: url(../images/img/deco-1.png);
}
@media (max-width: 991px) {
  .page10 .TxtBox::before {
    bottom: 0;
    left: auto;
    right: calc(100% + 16px);
    transform: scale(0.5);
    transform-origin: bottom;
  }
}

.page11 {
  background: linear-gradient(180deg, #F9E8BE 10%, #F3F2EE 20%, #F3F2EE 80%, #F9E8BE 100%);
}
@media (min-width: 992px) {
  .page11 .innerImg {
    padding-top: 56%;
  }
}
@media (max-width: 991px) {
  .page11 .skymap .innerImg {
    padding-top: 100%;
  }
  .page11 .skymap .innerImg .image {
    background-position: 74%;
  }
}
.page11 .TxtBox {
  position: relative;
}
.page11 .TxtBox::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0%;
  width: 30px;
  height: 200px;
  background-image: url(../images/img/deco-1.png);
}
@media (max-width: 991px) {
  .page11 .TxtBox::before {
    right: 0%;
    transform: scale(0.5);
  }
}

.page12 {
  background-color: #F9E8BE;
}
.page12 .TxtBox {
  position: relative;
}
.page12 .TxtBox::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 200px;
  background-image: url(../images/img/deco-1.png);
  right: 105%;
  top: 5%;
}
@media (max-width: 991px) {
  .page12 .TxtBox::before {
    transform: scale(0.5);
    top: -44px;
    right: -20px;
  }
}

.page13 {
  background: linear-gradient(180deg, #F9E8BE 10%, #F3F2EE 20%);
}
.page13 .TxtBox {
  position: relative;
}
@media (max-width: 991px) {
  .page13 .TxtBox {
    padding-left: 12%;
  }
}
.page13 .TxtBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40%;
  width: 30px;
  height: 200px;
  background-image: url(../images/img/deco-1.png);
}
@media (max-width: 991px) {
  .page13 .TxtBox::before {
    display: none;
  }
}

.page14 {
  background-image: url(../images/img/page14-bg.jpg);
  background-position: center bottom;
  background-size: cover;
  color: #ffffff;
}
@media (max-width: 991px) {
  .page14 {
    background-size: 175%;
    background-position: 80% bottom;
    padding-bottom: 42%;
    background-repeat: no-repeat;
    background-color: #001541;
  }
}
.page14 .text-solgen h2 {
  color: #ffffff;
  letter-spacing: 5px;
  line-height: 1.8;
  font-size: 16px;
}
@media (max-width: 991px) {
  .page14 .text-solgen h2 {
    letter-spacing: 2px;
  }
}
@media (max-width: 991px) {
  .page14 .text-solgen a {
    font-size: 24px !important;
  }
}
.page14 input::-moz-placeholder, .page14 textarea::-moz-placeholder {
  color: #ffffff;
}
.page14 input::placeholder,
.page14 textarea::placeholder {
  color: #ffffff;
}
.page14 .form-floating > label {
  color: rgba(255, 255, 255, 0.65);
}
.page14 .form-floating > .form-control:not(:-moz-placeholder) ~ label {
  transform: scale(0.85) translateY(-1.5rem) translateX(0.15rem);
}
.page14 .form-floating > .form-control:focus ~ label,
.page14 .form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-1.5rem) translateX(0.15rem);
}
.page14 .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  box-shadow: none;
}
.page14 .form-control:focus {
  background-color: transparent;
  border-bottom-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
}
.page14 .form-control:-webkit-autofill, .page14 .form-control:-webkit-autofill:hover, .page14 .form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: #ffffff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  border-bottom: 1px solid #ffffff;
}

footer {
  background: #4D4D4D;
}

.btn-dark {
  background-color: #4D4D4D;
  border-color: #4D4D4D;
}/*# sourceMappingURL=style.css.map */