@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italianno&family=Noto+Sans+JP:wght@300;500;700;900&display=swap");
@import url("nav-footer.css");
.main-container .banner-768 {
  display: none;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-container .banner-768 img {
  width: 100%;
}
.main-container .banner-768 .title {
  position: relative;
  text-align: center;
  margin-top: 28px;
}
.main-container .banner-768 .title p {
  background: linear-gradient(to bottom, #aa0000 20%, #d1d1d1, #ffffff);
  background: -webkit-linear-gradient(to bottom, #aa0000 20%, #d1d1d1, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Italianno", cursive;
  font-size: 96px;
  font-weight: 400;
}
.main-container .banner-768 .title span {
  width: 100%;
  font-size: var(--font-size-sec-title);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: var(--font-weight-bold);
  letter-spacing: 8px;
  color: var(--first-color);
}

section {
  display: block;
}

img {
  width: 100%;
  vertical-align: middle;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1920px;
}
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 498px) {
  .container {
    width: 100%;
    margin: 0;
    padding: 0 10px;
  }
}

section {
  padding: 40px 0;
}
section .tags {
  display: flex;
  justify-content: center;
  color: #a74444;
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 498px) {
  section .tags {
    flex-wrap: wrap;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 0;
  }
  section .tags.open {
    overflow: initial;
  }
  section .tags.open::before {
    transform: rotate(180deg) translate(0, 50%);
  }
  section .tags::before {
    font-family: "Font Awesome 5 Free";
    content: url(../Image/photo/activity/chevron-down.png);
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    transform-origin: center;
    font-size: 15px;
    font-weight: 900;
    color: inherit;
    z-index: 9;
  }
}
section .tags .tag {
  font-weight: semibold;
  padding: 10px 16px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
}
section .tags .tag.active {
  background-color: #3B6580;
  color: #FAF8EF;
}
@media (max-width: 498px) {
  section .tags .tag.active {
    color: #3B6580;
    background-color: #FAF8EF;
    order: -1;
  }
}
@media (max-width: 498px) {
  section .tags .tag {
    flex-basis: 100%;
    margin-right: 0;
    background-color: #fff;
    z-index: 9;
  }
  section .tags .tag:hover {
    color: #3B6580;
    background-color: #FAF8EF;
  }
}
@media (max-width: 498px) {
  section .area {
    padding-top: 30px;
  }
}
section .area .gutter-sizer {
  width: 2%;
}
section .area .grid-sizer,
section .area .photo {
  width: 32%;
}
@media (max-width: 768px) {
  section .area .grid-sizer,
  section .area .photo {
    width: 49%;
  }
}
@media (max-width: 498px) {
  section .area .grid-sizer,
  section .area .photo {
    width: 99%;
  }
}
section .area .photo {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
section .area .photo::before {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 48.92%, rgba(0, 0, 0, 0.6) 81.35%);
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.8s ease-in-out;
  width: 100%;
  z-index: 2;
}
section .area .photo:hover img {
  transform: scale(1.2);
}
section .area .photo:hover p {
  bottom: 0;
}
section .area .photo:hover::before {
  opacity: 1;
}
section .area .photo img {
  transition: transform 0.5s;
  border-radius: 10px;
}
section .area .photo p {
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  font-size: 1.8rem;
  color: #fff;
  font-family: serif;
  font-weight: bold;
  z-index: 3;
  transition: bottom 0.5s;
}

@media (max-width: 768px) {
  .main-container .banner {
    display: none;
  }
  .main-container .banner-768 {
    display: flex;
  }
}/*# sourceMappingURL=photo.css.map */