@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* news */
/* ============================================ */
.news-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-top: 70px;
}
@media all and (max-width: 896px) {
  .news-inner {
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
  }
}
.news-inner nav {
  flex: none;
  width: 200px;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .news-inner nav {
    width: 100%;
  }
}
.news-inner nav h2 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #363628;
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .news-inner nav h2 {
    margin-bottom: 12px;
  }
}
.news-inner nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media all and (max-width: 896px) {
  .news-inner nav ul {
    flex-direction: row;
    gap: 30px;
  }
}
.news-inner nav ul a {
  position: relative;
  padding-left: 24px;
}
@media all and (max-width: 896px) {
  .news-inner nav ul a {
    padding-left: 20px;
  }
}
.news-inner nav ul a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-top: 2px solid #363628;
  border-right: 2px solid #363628;
  rotate: 45deg;
  transition: 0.3s;
}
@media (hover: hover) {
  .news-inner nav ul a:hover {
    color: #4179af;
    opacity: 1;
  }
  .news-inner nav ul a:hover::after {
    border-color: #4179af;
  }
}
.news-inner .list {
  width: 100%;
  border-bottom: 1px solid #a89981;
  font-weight: 500;
}
.news-inner .list li {
  border-top: 1px solid #a89981;
}
.news-inner .list li a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  padding: 24px 24px 24px 85px;
}
@media all and (max-width: 896px) {
  .news-inner .list li a {
    padding: 10px 0 10px 45px;
  }
}
.news-inner .list li a::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 60px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  translate: 0 -50%;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .news-inner .list li a::before {
    width: 30px;
    font-size: 1.4rem;
  }
}
.news-inner .list li a time {
  position: relative;
}
.news-inner .list li a em {
  display: inline-flex;
  justify-content: center;
  position: relative;
  top: -2px;
  width: 6em;
  margin-left: 15px;
  padding: 2px 8px;
  border: 1px solid #a89981;
  color: #a89981;
  font-size: 1.4rem;
  font-style: normal;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .news-inner .list li a em {
    top: 0;
    padding-top: 1px;
    font-size: 1.2rem;
  }
}
@media (hover: hover) {
  .news-inner .list li a:hover {
    color: #4179af;
    opacity: 1;
  }
  .news-inner .list li a:hover em {
    border-color: #4179af;
    background: #4179af;
    color: #fff;
  }
}
.news-inner .list li.info a::before {
  height: 47px;
  background: url(../images/news/ico_news.svg) no-repeat center/cover;
}
@media all and (max-width: 896px) {
  .news-inner .list li.info a::before {
    height: 24px;
  }
}
.news-inner .list li.store a::before {
  height: 49px;
  background: url(../images/news/ico_shop.svg) no-repeat center/cover;
}
@media all and (max-width: 896px) {
  .news-inner .list li.store a::before {
    height: 24px;
  }
}
.news-inner .list li.event a::before {
  height: 54px;
  background: url(../images/news/ico_event.svg) no-repeat center/cover;
}
@media all and (max-width: 896px) {
  .news-inner .list li.event a::before {
    height: 26px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination .screen-reader-text {
  display: block;
  overflow: hidden;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media all and (max-width: 896px) {
  .pagination .nav-links {
    gap: 15px;
  }
}
@media (hover: hover) {
  .pagination .nav-links a:hover {
    background: #fff;
    color: #a89981;
    opacity: 1;
  }
}
.pagination .nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid #a89981;
  border-radius: 50%;
  background: #a89981;
  color: #fff;
}
@media all and (max-width: 896px) {
  .pagination .nav-links .page-numbers {
    width: 35px;
    height: 35px;
  }
}
.pagination .nav-links .page-numbers.current {
  background: #fff;
  color: #a89981;
}
.pagination .nav-links .page-numbers.prev, .pagination .nav-links .page-numbers.next {
  font-size: 0;
}
.pagination .nav-links .page-numbers.prev::after, .pagination .nav-links .page-numbers.next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: -135deg;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .pagination .nav-links .page-numbers.prev::after, .pagination .nav-links .page-numbers.next::after {
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
}
@media (hover: hover) {
  .pagination .nav-links .page-numbers.prev:hover::after, .pagination .nav-links .page-numbers.next:hover::after {
    border-color: #a89981;
  }
}
.pagination .nav-links .page-numbers.next::after {
  rotate: 45deg;
  margin-left: -12px;
}
@media all and (max-width: 896px) {
  .pagination .nav-links .page-numbers.next::after {
    margin-left: -8px;
  }
}

/* news detail */
/* ============================================ */
.news-detail {
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  .news-detail {
    margin-top: 40px;
  }
}
.news-detail hgroup {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #363628;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .news-detail hgroup {
    margin-bottom: 20px;
  }
}
.news-detail hgroup h2 {
  font-size: 2.4rem;
}
@media all and (max-width: 896px) {
  .news-detail hgroup h2 {
    margin-top: 5px;
    font-size: 1.8rem;
  }
}
.news-detail p {
  margin-block: 1em;
}
.news-detail a {
  color: #4179af;
  text-decoration: underline;
}
@media (hover: hover) {
  .news-detail a:hover {
    text-decoration: none;
  }
}
.news-detail figure + figure {
  margin-top: 1.5em;
}

.back {
  display: flex;
  justify-content: center;
}
@media all and (max-width: 896px) {
  .back {
    margin-top: 20px;
  }
}
.back .btn {
  justify-content: center;
}

/*Languages*/
html[lang=en] .news-inner .list li a em {
  width: 11em;
}

/*# sourceMappingURL=news.css.map */
