.Main {
  position: relative;
  width: 100%;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: #f6f3ee;
}
@media screen and (max-width: 768px) {
  .Main {
    gap: 20px;
  }
}
.Firstview {
  position: relative;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .Firstview {
    height: 400px;
  }
}
.Swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
}
.SwiperSlideImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  transition: transform 8s ease-in-out;
}
.swiper-slide-active .SwiperSlideImage {
  transform: scale(1.1);
}
.Firstview__Overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
  width: 100%;
  height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Firstview-Catch {
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: fit-content;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px;
  background-color: #fff;
  font-size: 60px;
  color: #000;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .Firstview-Catch {
    display: block;
    font-size: 28px;
    text-align: center;
  }
}
.__Content {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  justify-content: center;
}
.__ContentInner {
  width: 85%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .__ContentInner {
    width: 100%;
    gap: 40px;
  }
}
.Message {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.Message-Headline {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .Message-Headline {
    font-size: 20px;
  }
}
.Message-Text {
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  padding: 16px;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.8;
  word-break: auto-phrase;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .Message-Text {
    font-size: 16px;
  }
}
.Message-More {
  align-self: flex-end;
  font-size: 20px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .Message-More {
    font-size: 16px;
  }
}
.Message-More:hover {
  color: #ff9a00;
}
.__TmpLayout {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: auto auto;
  grid-template-areas: "Map Categories" "Map Tags";
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .__TmpLayout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "Map" "Categories" "Tags";
    gap: 12px;
  }
}
.__TmpMap {
  grid-area: Map;
}
.Map-Headline {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .Map-Headline {
    font-size: 20px;
  }
}
.Map__Wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  aspect-ratio: 16/9;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .Map__Wrapper {
    aspect-ratio: 1/1;
  }
}
.Map-Overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  background-color: rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .Map-Overlay {
    display: none;
  }
}
.Map-Overlay-Text {
  padding: 8px;
  background-color: #fff;
  color: #000;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .Map-Overlay-Text {
    font-size: 12px;
  }
}
.Map-Frame {
  width: 100%;
  height: 100%;
}
.Categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.__TmpCategories {
  grid-area: Categories;
  width: fit-content;
  min-width: 300px;
}
@media screen and (max-width: 768px) {
  .__TmpCategories {
    width: 100%;
    min-width: none;
  }
}
.Categories-Headline {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .Categories-Headline {
    font-size: 20px;
  }
}
.Categories-List {
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .Categories-List {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.Categories-List-Item {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .Categories-List-Item {
    gap: 8px;
  }
}
.CategoryLabel {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .CategoryLabel {
    font-size: 16px;
  }
}
.CategoryLabel:hover {
  text-decoration: underline;
}
.Categories-List-Item-ChildrenList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .Categories-List-Item-ChildrenList {
    flex-direction: row;
    padding-left: 0em;
    gap: 4px;
  }
}
.ChildCategoryLabel {
  border-radius: 8px;
  padding-top: 4px;
  padding-bottom: 6px;
  padding-left: 0.5em;
  padding-right: 0em;
  font-size: 16px;
  background-color: #ff9a00;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.ChildCategoryLabel:hover {
  opacity: 0.65;
}
@media screen and (max-width: 768px) {
  .ChildCategoryLabel {
    font-size: 14px;
  }
}
.ChildCategoryLabel-Count {
  color: #fff;
}
.Tags {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.__TmpTags {
  grid-area: Tags;
  width: fit-content;
  min-width: 300px;
}
@media screen and (max-width: 768px) {
  .__TmpTags {
    width: 100%;
    min-width: none;
  }
}
.Tags-Headline {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .Tags-Headline {
    font-size: 20px;
  }
}
.Tags-List {
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .Tags-List {
    flex-direction: row;
    gap: 12px;
  }
}
.Tags-List-Item {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .Tags-List-Item {
    gap: 8px;
  }
}
.TagLabel {
  border-radius: 8px;
  padding-top: 4px;
  padding-bottom: 6px;
  padding-left: 0.5em;
  padding-right: 0em;
  font-size: 16px;
  background-color: #88e0ef;
  font-weight: 600;
  text-align: center;
}
.TagLabel:hover {
  opacity: 0.65;
}
@media screen and (max-width: 768px) {
  .TagLabel {
    font-size: 14px;
  }
}
.LatestArticles {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.LatestArticles-Headline {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .LatestArticles-Headline {
    font-size: 20px;
  }
}
.LatestArticles-List {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .LatestArticles-List {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }
}
.LatestArticles-List-Item {
  flex: 1;
}
.ArticleCard {
  position: relative;
  width: 100%;
  height: 100%;
}
.ArticleCard__Link {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .ArticleCard__Link {
    border-radius: 8px;
  }
}
.ArticleCard__Link:hover {
  opacity: 0.65;
}
.ArticleCard__ImageWrapper {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/2;
}
.ArticleCard-Image {
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.2s;
}
.ArticleCard__Link:hover .ArticleCard-Image {
  transform: scale(1.1);
}
.ArticleCard__BadgeArea {
  position: absolute;
  top: 8px;
  left: 8px;
}
.ArticleCard-Category {
  border-radius: 8px;
  padding-top: 4px;
  padding-bottom: 6px;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 16px;
  background-color: #ff9a00;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ArticleCard-Category {
    font-size: 14px;
  }
}
.ArticleCard__Body {
  width: 100%;
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .ArticleCard__Body {
    padding: 8px;
    gap: 4px;
  }
}
.ArticleCard-Title {
  width: 100%;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 600;
  word-break: auto-phrase;
}
@media screen and (max-width: 768px) {
  .ArticleCard-Title {
    font-size: 16px;
  }
}
.ArticleCard-Excerpt {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  word-break: auto-phrase;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .ArticleCard-Excerpt {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
}
.ArticleCard-Tag {
  margin-top: auto;
  align-self: flex-end;
  border-radius: 8px;
  padding-top: 4px;
  padding-bottom: 6px;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 12px;
  background-color: #88e0ef;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ArticleCard-Tag {
    font-size: 10px;
  }
}
.LatestArticles-More {
  align-self: flex-end;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .LatestArticles-More {
    font-size: 16px;
  }
}
.LatestArticles-More:hover {
  color: #ff9a00;
}
.Map {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
