@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Montserrat:wght@100..900&display=swap");
* {
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.08em;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  overflow: hidden;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-thumb {
  background-color: #39a0ca;
  border-radius: 10px;
}

body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.7);
}

h1 {
  font-size: unset;
}

.focusMainBlock {
  position: absolute;
  background: #fff;
  padding: 5px;
  opacity: 0;
}

.focusMainBlock:focus {
  opacity: 1;
}

.breadcrumb-brick2 {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: 999;
  color: #fff;
  opacity: 0;
}

.breadcrumb-brick2:focus {
  opacity: 1;
}

nav .city {
  color: #FDD108 !important;
}

/*.subMenu .itemBox a:nth-child(2) .item {
  color: #FDD108 !important;
  font-size: 28px !important;
}
@media (max-width: 767px) {
  .subMenu .itemBox a:nth-child(2) .item {
    font-size: 16px !important;
  }
}*/

.video {
  width: 100%;
  height: 47vw;
  position: relative;
}
@media (max-width: 1024px) {
  .video {
    height: 170dvw;
  }
}
.video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.video .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.video .title img {
  width: 100%;
}

@media (max-width: 1024px) {
  .pc {
    display: none;
  }
}
.pc img {
  width: 100dvw;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile {
  display: none;
}
@media (max-width: 1024px) {
  .mobile {
    display: block;
  }
}
.mobile img {
  width: 100dvw;
}

.youTubeBox #showBox {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.youTubeBox #showBox iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.titleBox {
  position: absolute;
  background-color: rgba(35, 24, 21, 0.7);
}
.titleBox .title {
  font-weight: 400;
  width: 35.2vw;
}
.titleBox .title span {
  font-weight: 900;
}
.titleBox .title2 {
  font-size: 4vw;
  margin-bottom: 2.6vw;
  color: #FDD108;
  line-height: 1;
}
@media (max-width: 1024px) {
  .titleBox .title2 {
    font-size: 7.6vw;
    width: 67vw;
    margin: 0 auto 6vw auto;
    text-align: center;
  }
}
.titleBox .text {
  font-size: 2.2vw;
  color: #fff;
  line-height: 1.2;
  width: 35.2vw;
}
@media (max-width: 1024px) {
  .titleBox .text {
    font-size: 4vw;
    width: 64vw;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.5;
  }
}
.titleBox .img {
  width: 100%;
  margin-bottom: 2vw;
}
@media (max-width: 1024px) {
  .titleBox .img {
    width: 67vw;
    margin: 0 auto 6vw auto;
  }
}
.titleBox .img img {
  width: 100%;
}

.titleBox1 {
  bottom: 7vh;
  left: 50%;
  padding: 2.5vw 4.5vw 2.5vw 4.5vw;
  overflow: hidden;
  opacity: 1;
  height: 30vw;
  transform: translate(-50%);
  transition: width 1.3s, opacity 0.8s;
  animation: kvShow 2s;
}
@media (max-width: 1024px) {
  .titleBox1 {
    width: 70vw;
    height: 45vw;
    bottom: 30dvh;
    padding: 2vw 4.5vw 2vw 4.5vw;
    animation: kvShowMobile 2s;
  }
}
@keyframes kvShow {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: 30vw;
  }
}
@keyframes kvShowMobile {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: 45vw;
  }
}
.titleBox1 .mainTitle {
  color: #fff;
  white-space: nowrap;
  text-align: center;
  font-size: 6.25vw;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 1.5vw;
  margin-bottom: 1.5vw;
  position: relative;
}
@media (max-width: 1024px) {
  .titleBox1 .mainTitle {
    font-size: 10vw;
  }
}
.titleBox1 .mainTitle span {
  font-weight: 900;
  line-height: 1;
}
.titleBox1 .mainTitle .border {
  height: 2px;
  width: 100%;
  background: #FDD108;
  position: absolute;
  bottom: 0;
  animation: borderKv 2s 0.5s;
}
@keyframes borderKv {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.titleBox1 .subTitle {
  color: #fff;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  font-weight: 900;
  font-size: 2.9vw;
}
@media (max-width: 1024px) {
  .titleBox1 .subTitle {
    font-size: 4.6vw;
  }
}

.wrapper {
  background: url(../img/city/content2/bgDeco1.png) repeat-y left top/10vw auto, url(../img/city/content2/bgDeco2.png) repeat-y right top/10vw auto;
}
@media (max-width: 1024px) {
  .wrapper {
    background: unset;
  }
}

section {
  width: 75vw;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  section {
    width: 100%;
    padding: 20px;
  }
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.tit {
  color: #595757;
  font-size: 7vw;
  font-size: clamp(45px, 7vw, 160px);
  text-align: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.subTit {
  color: #b28247;
  font-size: 3vw;
  font-size: clamp(26px, 4vw, 60px);
  text-align: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.info {
  color: #999;
  font-size: clamp(30px, 4vw, 60px);
}

p {
  font-size: 20px;
  font-size: clamp(17px, 1.2vw, 30px);
  text-align: center;
}
p span {
  color: #b28247;
}

.decoLine {
  transform: scale(1.1);
}

.s2 {
  background: url(../img/city/content2/2.jpg) no-repeat left top 4%/12% auto, url(../img/city/content2/3.jpg) no-repeat right top 4%/12% auto;
}
@media (max-width: 1024px) {
  .s2 {
    background: unset;
  }
}
.s2 article {
  width: calc(76% - 40px);
  margin: 0 auto 15%;
}
@media (max-width: 1024px) {
  .s2 article {
    margin: 0 auto;
    width: 100%;
  }
}
.s2 .imgBox {
  display: flex;
}
@media (max-width: 1024px) {
  .s2 .imgBox {
    flex-direction: column;
  }
}
.s2 .imgBox img {
  width: 50%;
  flex-grow: 1;
  flex-shrink: 1;
}
@media (max-width: 1024px) {
  .s2 .imgBox img {
    width: 100%;
  }
}

.s3 .imgBox {
  width: 58.95vw;
  margin: 0 auto;
}
.s3 .imgBox img {
  width: 100%;
}
@media (max-width: 1024px) {
  .s3 .imgBox {
    width: 92vw;
  }
}

.s4 {
  display: flex;
  align-items: start;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  .s4 {
    margin-top: 0;
  }
}
.s4 > * {
  width: 50%;
}
@media (max-width: 1024px) {
  .s4 > * {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .s4 .side {
    display: none;
  }
}
.s4 b {
  display: block;
  font-size: clamp(30px, 3vw, 45px);
}/*# sourceMappingURL=cityContent2.css.map */