.bg-fixed-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url(../img/bg_gray.webp) center center/cover no-repeat;
  background-color: #F4F4F4;
}

.kv {
  position: relative;
  z-index: 0;
  background-color: #3B3A3A;
  background-image: url(../img/bg_black.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .kv {
    background-attachment: scroll;
  }
}

.news .news__inner.wrap {
  display: grid;
  padding: 60px 0 100px;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap {
    padding: min(100 / 750 * 100vw, 100px) 0 min(140 / 750 * 100vw, 140px);
  }
}
.news .news__inner.wrap .news__list {
  display: grid;
}
.news .news__inner.wrap .news__item {
  border-top: 1px solid #E8E8E8;
}
.news .news__inner.wrap .news__item:last-of-type {
  border-bottom: 1px solid #E8E8E8;
}
.news .news__inner.wrap .news__item .news__item-link {
  display: grid;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__item .news__item-link {
    padding: min(48 / 750 * 100vw, 48px);
  }
}
.news .news__inner.wrap .news__item .news__item-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.news .news__inner.wrap .news__item .news__date {
  padding-bottom: 1em;
  color: #707070;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__item .news__date {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
.news .news__inner.wrap .news__item .news__title {
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  .news .news__inner.wrap .news__item .news__title {
    font-size: clamp(14px, 36 / 750 * 100vw, 36px);
  }
}
.news .news__inner.wrap .news__item .news__text {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .news__inner.wrap .news__item .news__text p {
  margin-bottom: 0.5em;
}
.news .news__inner.wrap .news__item .news__text p:last-child {
  margin-bottom: 0;
}
.news .news__inner.wrap .news__item .news__text p .news__more {
  color: #AD8F5E;
  font-weight: 600;
  margin-top: 0.5em;
}
.news .news__pagination {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .news .news__pagination {
    margin-top: min(80 / 750 * 100vw, 80px);
  }
}
.news .news__pagination .pagination__info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news .news__pagination .pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  transition: all 0.3s ease;
}
.news .news__pagination .pagination__btn .pagination__arrow {
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #1F1F1F;
  border-right: 1px solid #1F1F1F;
  cursor: pointer;
}
.news .news__pagination .pagination__btn.pagination__prev .pagination__arrow {
  transform: rotate(-135deg);
}
.news .news__pagination .pagination__btn.pagination__next .pagination__arrow {
  transform: rotate(45deg);
}
.news .news__pagination .pagination__btn:hover {
  background-color: #AD8F5E;
}
.news .news__pagination .pagination__btn:hover .pagination__arrow {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
.news .news__pagination .pagination__btn.pagination__disabled {
  color: #707070;
  border-color: #E8E8E8;
}
.news .news__pagination .pagination__btn.pagination__disabled:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #707070;
  border-color: #E8E8E8;
}
.news .news__pagination .pagination__current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  font-size: 14px;
  font-weight: 600;
  color: #1F1F1F;
  padding: 0 12px;
}
@media screen and (max-width: 750px) {
  .news .news__pagination .pagination__current {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
@media screen and (max-width: 750px) {
  .news .news__pagination .pagination__current {
    padding: 0 min(24 / 750 * 100vw, 24px);
  }
}
.news .news__pagination .pagination__current .pagination__current-total {
  color: #707070;
}

.news-detail .news-detail__inner.wrap {
  display: grid;
  gap: 80px;
  padding: 100px 0;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap {
    gap: min(120 / 750 * 100vw, 120px);
    padding: min(100 / 750 * 100vw, 100px) 0 min(140 / 750 * 100vw, 140px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__header {
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__header {
    margin-bottom: min(60 / 750 * 100vw, 60px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__date {
  font-size: 14px;
  color: #707070;
  margin-bottom: 1em;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__date {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__title {
  margin-bottom: 64px;
  font-weight: 700;
  font-size: 32px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__title {
    margin-bottom: min(48 / 750 * 100vw, 48px);
    font-size: clamp(14px, 40 / 750 * 100vw, 40px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__content {
  margin-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__content {
    font-size: 14px;
    margin-bottom: min(100 / 750 * 100vw, 100px);
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__content {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__content p {
  margin-bottom: 1em;
}
.news-detail .news-detail__inner.wrap .news-detail__content p:last-child {
  margin-bottom: 0;
}
.news-detail .news-detail__inner.wrap .news-detail__content a {
  color: #AD8F5E;
  text-decoration: underline;
}
.news-detail .news-detail__inner.wrap .news-detail__content figure img {
  width: auto;
  max-width: 100%;
}
.news-detail .news-detail__inner.wrap .news-detail__back {
  text-align: center;
}
.news-detail .news-detail__inner.wrap .news-detail__back a {
  display: inline-block;
  width: 352px;
  height: 64px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__back a {
    width: 100%;
    height: min(128 / 750 * 100vw, 128px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__back a p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
  background: #1F1F1F;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__back a p {
    border: none;
    background: #AD8F5E;
    color: #FFFFFF;
  }
}
.news-detail .news-detail__inner.wrap .news-detail__back a p::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__back a p::before {
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
    bottom: min(16 / 750 * 100vw, 16px);
    right: min(16 / 750 * 100vw, 16px);
    width: min(24 / 750 * 100vw, 24px);
    height: min(24 / 750 * 100vw, 24px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__back a p::after {
  background: #AD8F5E;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.news-detail .news-detail__inner.wrap .news-detail__back a p:hover {
  border: 1px solid #AD8F5E;
  color: #FFFFFF;
}
.news-detail .news-detail__inner.wrap .news-detail__back a p:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}
.news-detail .news-detail__inner.wrap .news-detail__back a p:hover::before {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0) 0% 50%, #FFFFFF 50% 100%);
}
.news-detail .news-detail__inner.wrap .news-detail__back img {
  width: 24px;
  height: 24px;
  padding: 4px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__back img {
    width: min(48 / 750 * 100vw, 48px);
    height: min(48 / 750 * 100vw, 48px);
    padding: min(8 / 750 * 100vw, 8px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__navigation {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__navigation {
    margin-top: min(80 / 750 * 100vw, 80px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__inner {
    gap: min(128 / 750 * 100vw, 128px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__prev .news-navigation__arrow,
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__next .news-navigation__arrow {
  width: 0.8em;
  height: 0.8em;
  border-top: 1px solid #1F1F1F;
  border-right: 1px solid #1F1F1F;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__prev .news-navigation__arrow,
  .news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__next .news-navigation__arrow {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__link {
  display: flex;
  align-items: center;
  gap: 1em;
  transition: all 0.3s ease;
  padding: 1em;
}
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__link.news-navigation__link--prev .news-navigation__arrow {
  transform: rotate(-135deg);
}
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__link.news-navigation__link--next .news-navigation__arrow {
  transform: rotate(45deg);
}
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__link:hover {
  border-color: #AD8F5E;
  background-color: #AD8F5E;
  color: #FFFFFF;
}
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__link:hover.news-navigation__link--prev .news-navigation__arrow, .news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__link:hover.news-navigation__link--next .news-navigation__arrow {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__text {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__text {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__text {
    font-size: clamp(14px, 24 / 750 * 100vw, 24px);
  }
}
.news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__disabled {
  padding: 1em;
  color: #707070;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .news-detail .news-detail__inner.wrap .news-detail__navigation .news-navigation__disabled {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}

.pp .pp__inner.wrap {
  display: grid;
  gap: 80px;
  padding: 60px 0 100px;
}
@media screen and (max-width: 750px) {
  .pp .pp__inner.wrap {
    gap: min(120 / 750 * 100vw, 120px);
    padding: min(100 / 750 * 100vw, 100px) 0 min(140 / 750 * 100vw, 140px);
  }
}
.pp .pp__inner.wrap p {
  line-height: 2;
}
.pp .pp__inner.wrap p .underline,
.pp .pp__inner.wrap p a {
  text-decoration: underline;
}
.pp .pp__inner.wrap p.pp__cookie__txt {
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .pp .pp__inner.wrap p.pp__cookie__txt {
    margin-bottom: min(60 / 750 * 100vw, 60px);
  }
}
.pp .pp__inner.wrap div h2 {
  margin-bottom: 60px;
  padding-left: 1em;
  text-align: left;
  background-color: #1F1F1F;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .pp .pp__inner.wrap div h2 {
    font-size: clamp(14px, 48 / 750 * 100vw, 48px);
  }
}
@media screen and (max-width: 750px) {
  .pp .pp__inner.wrap div h2 {
    margin-bottom: min(60 / 750 * 100vw, 60px);
  }
}
.pp .pp__inner.wrap div dl {
  display: grid;
}
.pp .pp__inner.wrap div dl dt {
  margin-bottom: 32px;
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .pp .pp__inner.wrap div dl dt {
    font-size: clamp(14px, 40 / 750 * 100vw, 40px);
  }
}
@media screen and (max-width: 750px) {
  .pp .pp__inner.wrap div dl dt {
    margin-bottom: min(48 / 750 * 100vw, 48px);
  }
}
.pp .pp__inner.wrap div dl dd {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1F1F1F;
}
.pp .pp__inner.wrap div dl dd:last-of-type {
  margin-bottom: 0;
}
.pp .pp__inner.wrap div dl dd p {
  margin-bottom: 0;
}
.pp .pp__inner.wrap div dl dd ul {
  padding-left: 1.5em;
  list-style-type: disc;
}
.pp .pp__inner.wrap div dl dd ul li {
  margin-bottom: 1em;
}
@media screen and (max-width: 750px) {
  .pp .pp__inner.wrap div dl dd {
    margin-bottom: min(40 / 750 * 100vw, 40px);
    padding-bottom: min(40 / 750 * 100vw, 40px);
  }
}

.footer {
  padding-top: 0;
}