@keyframes scrollDown {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@keyframes scrollDown2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@keyframes loop_x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pcircle {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}
@keyframes rotate_y {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes top_logo {
  0% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes loading {
  0% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(720deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@keyframes deco_kaku {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(10deg);
  }
}
@keyframes deco_kaku2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-10deg);
  }
}
.p-news__list {
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-news__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.p-news__list-item {
  border-top: 1px solid #b39242;
}
.p-news__list-item:last-child {
  border-bottom: 1px solid #b39242;
}
.p-news__list-inner {
  padding: 17px 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-news__list-inner {
    padding: 12px 0px 14px;
    display: block;
  }
}
.p-news__list-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(179, 146, 66, 0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .p-news__list-inner:hover::before {
    opacity: 1;
  }
  .p-news__list-inner:hover .p-news__list-ttl {
    color: #b39242;
  }
}
.p-news__list-date {
  display: flex;
  align-items: center;
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  color: #ca4949;
  flex-shrink: 0;
  width: 18.2rem;
  height: 100%;
  position: relative;
  margin-right: 26px;
}
@media screen and (max-width: 959px) {
  .p-news__list-date {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
  }
  .p-news__list-date.is-pc {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .p-news__list-date.is-sp {
    display: none;
  }
}
.p-news__list-date::before {
  content: "";
  width: 1.4rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/ic_star.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-news__list-date::before {
    width: 1rem;
  }
}
.p-news__list-date .p-in_year {
  font-size: 1.9rem;
  flex-shrink: 0;
  letter-spacing: -0.5px;
  margin-right: 9px;
}
.p-news__list-date .p-in_date {
  font-size: 3.7rem;
}
.p-news__list-ttl {
  position: relative;
  line-height: 1.6;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0.3px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-news__list-ttl {
    letter-spacing: 0;
    line-height: 1.5;
    font-size: 1.2rem;
  }
}
.p-news__pager {
  margin-top: 45px;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-news__pager {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 959px) {
  .p-news__pager {
    margin-top: 19px;
  }
}
.p-news__back {
  text-align: center;
  margin-top: 32px;
  transform: translateY(35px);
  opacity: 0;
}
@media screen and (max-width: 959px) {
  .p-news__back {
    margin-top: 19px;
  }
}
.is-load .p-news__back {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}

.p-news_detail {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: 40vh;
  padding: 42px 50px 68px;
  background-color: #fff;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-news_detail {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 959px) {
  .p-news_detail {
    padding: 21px 21px 48px;
  }
}
.p-news_detail__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-news_detail__frame-item {
  position: absolute;
}
.p-news_detail__frame-item.-top {
  width: 100%;
  height: 8px;
  top: 0;
  left: 0;
  background: url(../img/in_frame_repeat_pc.png) repeat-x left top;
  background-size: auto 8px;
}
@media screen and (max-width: 959px) {
  .p-news_detail__frame-item.-top {
    background: url(../img/in_frame_repeat_sp.png) repeat-x left top;
    background-size: auto 6px;
    height: 6px;
  }
}
.p-news_detail__frame-item.-bottom {
  width: 100%;
  height: 8px;
  bottom: 0;
  left: 0;
  background: url(../img/in_frame_repeat_pc.png) repeat-x left top;
  background-size: auto 8px;
  transform: scaleY(-1);
}
@media screen and (max-width: 959px) {
  .p-news_detail__frame-item.-bottom {
    background: url(../img/in_frame_repeat_sp.png) repeat-x left top;
    background-size: auto 6px;
    height: 6px;
  }
}
.p-news_detail__frame-item.-left {
  width: 8px;
  height: 100%;
  bottom: 0;
  left: 0;
  background: url(../img/in_frame_repeat_y_pc.png) repeat-y left top;
  background-size: 8px auto;
}
@media screen and (max-width: 959px) {
  .p-news_detail__frame-item.-left {
    background: url(../img/in_frame_repeat_y_sp.png) repeat-y left top;
    background-size: auto 2px;
    width: 6px;
  }
}
.p-news_detail__frame-item.-right {
  width: 10px;
  height: 100%;
  bottom: 0;
  right: 0;
  background: url(../img/in_frame_repeat_y_pc.png) repeat-y left top;
  background-size: 8px auto;
  transform: scaleX(-1);
}
@media screen and (max-width: 959px) {
  .p-news_detail__frame-item.-right {
    background: url(../img/in_frame_repeat_y_sp.png) repeat-y left top;
    background-size: auto 2px;
    width: 6px;
  }
}
.p-news_detail__frame-corner {
  position: absolute;
  width: 8px;
  height: 8px;
  background: url(../img/in_frame_corner_pc.png) no-repeat 0 0;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-news_detail__frame-corner {
    background: url(../img/in_frame_corner_sp.png) no-repeat 0 0;
    background-size: contain;
    width: 6px;
  }
}
.p-news_detail__frame-corner.-topright {
  right: 0;
  top: 0;
  transform: scaleX(-1);
}
.p-news_detail__frame-corner.-topleft {
  left: 0;
  top: 0;
}
.p-news_detail__frame-corner.-bottomright {
  right: 0;
  bottom: 0;
  transform: scale(-1, -1);
}
.p-news_detail__frame-corner.-bottomleft {
  left: 0;
  bottom: 0;
  transform: scaleY(-1);
}
.p-news_detail__head {
  border-bottom: 1px solid #b39242;
  padding-bottom: 33px;
  margin-bottom: 31px;
}
@media screen and (max-width: 959px) {
  .p-news_detail__head {
    padding-bottom: 19px;
    margin-bottom: 17px;
  }
}
.p-news_detail__head-date {
  color: #ca4949;
  font-family: "Bodoni Moda", serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  padding-right: 30px;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1;
}
.p-news_detail__head-date::before {
  content: "";
  width: 14px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/ic_star.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-news_detail__head-date::before {
    width: 1rem;
  }
}
@media screen and (max-width: 959px) {
  .p-news_detail__head-date {
    font-size: 1.2rem;
    padding-right: 1.5rem;
    letter-spacing: 0;
    margin-bottom: 6px;
  }
}
.p-news_detail__head-ttl {
  line-height: 1.8;
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .p-news_detail__head-ttl {
    font-size: 1.3rem;
  }
}
.p-news_detail__content {
  line-height: 2;
}
@media screen and (max-width: 959px) {
  .p-news_detail__content {
    font-size: 1.3rem;
  }
}
.p-news_detail__content iframe {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 960px) {
  .p-news_detail__content iframe {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 959px) {
  .p-news_detail__content iframe {
    height: 51.73vw !important;
  }
}
.p-news_detail__content img {
  height: auto !important;
  width: auto !important;
}
.p-news_detail__content strong, .p-news_detail__content span {
  vertical-align: baseline;
}
.p-news_detail__content a {
  color: #b39242;
}
@media screen and (min-width: 960px) {
  .p-news_detail__content a:hover {
    text-decoration: none;
  }
}