/* ======
  pr
 ====== */
.pr {
  width: 100%;
  position: relative;
}
.carousel-caption {
  z-index: 3;
  bottom: auto;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(1rem, 0.8058rem + 0.8285vw, 1.8rem);
  color:#fff;
  line-height:1.5;
  padding:10vw 0 0;
}
.carousel-caption p {
  font-weight: bold;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .carousel-caption {
    padding:3vw 0 0;
  }
}
/* ======
  main
 ====== */
main {
  overflow: hidden;
}
main section {
  position: relative;
}

/* ======
  headline
 ====== */
/*
 h2.headline {
  font-size: 1.2rem;
  color: var(--main);
  line-height: 1;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
}
h2.headline::before {
  content: attr(data-en);
  display: block;
  color: var(--main);
  font-size: 11vw;
  font-weight: 600;
  margin-bottom: 0.5rem;
  flex: 1 1 100%;
  text-transform: capitalize;
  line-height: 0.8;
}
main > section:not(:first-of-type) div.headline {
  width: 100%;
}
@media (min-width: 576px) {
  h2.headline::before {
    font-size: 6.5vw;
    flex: 0 0 auto;
    margin: 0 15px 0 0;
  }
}
@media (min-width: 768px) {
  h2.headline::before {
    font-size: 6vw;
  }
}
@media (min-width: 992px) {
  h2.headline::before {
    font-size: 3.8rem;
  }
}
*/

h2.headline {
  font-size: 1.5rem;
  color: var(--main);
  line-height: 1;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 992px) {
  h2.headline {
    font-size: 2rem;
  }
}
/* ======
  news
 ====== */
.news-wrap div {
  box-sizing: border-box;
  transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.news-wrap .tab {
  margin: 0px;
  cursor: pointer;
}

.news-wrap #news-content {
  overflow: hidden;
  position: relative;
  padding-bottom: 1px;
}

.news-wrap .tabcontent {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #fff;
  width: 100%;
  transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
}

.news-wrap .tabcontent:first-child {
  position: relative;
}

.news-wrap .tabcontent.tab-active {
  border-top: 0px;
  display: block;
  transform: translateY(0%);
  -moz-transform: translateY(0%);
  -webkit-transform: translateY(0%);
}
.news-wrap #news-container {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.news-wrap .tab {
  padding: 0.5rem 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #333;
  text-align: center;
  flex: 1;
  font-size: 0.85rem;
  border:1px solid #dfdfdf;
}

.news-wrap .current-tab {
  background: var(--main);
  color: #fff;
  border-color:var(--main);
}

@media (min-width: 992px) {
  .news-wrap {
    display: grid;
    grid-template-columns: 230px 1fr;
    grid-auto-flow: column;
    gap: 40px;
  }
  .news-wrap .news_inner {
    justify-content: center;
    padding-top: 2rem;
  }
  .news-wrap #news-container {
    display: block;
  }
  .news-wrap .tab {
    padding: 0.5rem 2rem;
    font-size: 0.95rem;
  }
}

.index-menulist div.col {
  display: grid;
}
.index-menulist .index-menulist-item {
  display: grid;
  padding: 1rem;
  border-radius: 10px;
}
.index-menulist .index-menulist-item:hover{color:#333 !important;}
@media (min-width: 992px) {
  .index-menulist .index-menulist-item {
    padding: 1.5rem;
  }
  .index-menulist .index-menulist-item > img {
    align-self: flex-end;
  }
}

.swiper-wrap {
  position: relative;
  padding: 0 3rem;
}
.swiper {
  position: static;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--main);
}
.swiper-pagination {
  margin-top:1rem;
  position: static;
}
.swiper-pagination-bullet-active {
  background: var(--main);
}