@charset "UTF-8";
/******************** NEWS ********************/

/*** --------------- News All --------------- ***/
.news_area {
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
  margin: 40px 0 200px;
}
.news_area .news_main {
  width: calc(100% - 300px);
}
.news_area .news_side {
  width: 250px;
}

@media screen and (max-width: 991px) {
  .news_area {
    margin: 40px 0 150px;
  }
  .news_area .news_main {
    width: 100%;
  }
  .news_area .news_side {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .news_area {
    margin: 40px 0 100px;
  }
}

/*** --------------- News Archive --------------- ***/

/* ----- Archive H1 ----- */
.archive_h1 {
	padding-bottom: 20px;
	font-size: 2.8rem;
	text-align: center;
	position: relative;
}
.archive_h1::after {
	content: '';
	width: 100%;
	height: 3px;
	background: #D1C1B5;
	border-radius: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 575px) {
	.archive_h1 {
		font-size: 2.4rem;
	}
}

/* ----- News List ----- */
.news_list .news_box {
  border-bottom: 1px solid #D1C1B5;
}
.news_list .news_box a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  padding: 30px;
  transition: 0.3s;
}
.news_list .news_box a:hover {
  background: #F5F4EE;
}
.news_list .news_box .news_img {
  width: 300px;
}
.news_list .news_box:nth-of-type(2n) .news_img {
  order: 2;
}
.news_list .news_box:nth-of-type(2n+1) .news_img {
    mask-image: url(../img/mask_news.svg);
    mask-position: center center;
    mask-size: contain;
    mask-repeat: no-repeat;

    -webkit-mask-image: url(../img/mask_news.svg);
    -webkit-mask-position: center center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}
.news_list .news_box:nth-of-type(2n) .news_img {
    mask-image: url(../img/mask_news_r.svg);
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;

    -webkit-mask-image: url(../img/mask_news_r.svg);
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}
.news_list .news_box .news_img img {
  width: 100%;
  height: auto;
}
.news_list .news_box .news_text {
  width: calc(100% - 350px);
}
.news_list .news_box:nth-of-type(2n) .news_text {
  order: 1;
}
.news_list .news_box .news_title {
  margin-top: 15px;
  font-size: 2.0rem;
  font-weight: bold;
}
.news_list .news_box .new {
  display: inline-block;
  margin-left: 5px;
  padding: 3px;
  color: #D93330;
  font-size: 1.4rem;
  vertical-align: top;
}
.news_list .news_box .news_excerpt {
  margin-top: 12px;
}
.news_list .news_box .news_info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-right: 30px;
  position: relative;
}
.news_list .news_box .news_info::after {
  content: '';
  width: 15px;
  aspect-ratio: 3 / 4;
  background: url(../img/arrow_img02.png) center center / contain no-repeat;
  position: absolute;
  bottom: 0;
  right: 5px;
  transition: 0.3s;
}
.news_list .news_box a:hover .news_info::after {
  right: 0;
}
.news_list .news_box .news_date {
  margin-right: 5px;
  font-size: 1.4rem;
}
.news_list .news_box .news_tag {
  padding: 5px 15px;
  background: #EDE5DC;
  border-radius: 10px;
  font-size: 1.2rem;
}

@media (max-width: 1199px) {
  .news_list .news_box a {
    gap: 15px 30px;
    padding: 30px 20px;
  }
  .news_list .news_box .news_img {
    width: 220px;
  }
  .news_list .news_box .news_text {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 767px) {
  .news_list .news_box .news_img {
    width: 100%;
    max-width: 400px;
  }
  .news_list .news_box:nth-of-type(2n) .news_img {
    order: 1;
  }
  .news_list .news_box .news_text {
    width: 100%;
  }
  .news_list .news_box:nth-of-type(2n) .news_text {
    order: 2;
  }
}
@media screen and (max-width: 575px) {
  .news_list .news_box a {
    padding: 25px 15px;
  }
  .news_list .news_box .news_info {
    padding-right: 20px;
  }
  .news_list .news_box .news_info::after {
    width: 10px;
  }
}


/* ----- News Category ----- */
.news_cate {
  display: inline-block;
  padding: 4px 15px;
  background: #714E2B;
  border-radius: 10px;
  color: #FFF;
  font-size: 1.4rem;
  text-align: center;
}
.news_cate.news {
  background: #E67C7E;
}
.news_cate.event {
  background: #B4C95E;
}
.news_cate.blog {
  background: #E2B841;
}
.news_cate.movie {
  background: #FBAC3B;
}

/* ----- News Page ----- */
.news_page {
  margin-top: 60px;
}
.news_page .nav-links {
  width: 100%;
}
.news_page ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.news_page ul li {
  font-weight: bold;
}
.news_page ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 5px 10px;
  border: 2px solid #EEE5DC;
  border-radius: 25px;
  transition: 0.3s;
}
.news_page ul li a:hover {
  background: #EEE5DC;
}
.news_page ul li a img {
  width: 15px;
  height: 20px;
  position: relative;
  top: calc(50% - 10px);
}
.news_page ul li .next img{
  right: -2px;
}
.news_page ul li .prev img {
  left: -2px;
}
.news_page ul li .current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 5px 10px;
  background: #EEE5DC;
  border-radius: 25px;
}

@media screen and (max-width: 991px) {
  .news_page {
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .news_page {
    margin-top: 40px;
  }
}

/*** --------------- News Content --------------- ***/
.news_content {
  padding: 30px;
  background: #EEE5DC;
  border-radius: 20px;
}
.news_content .news_content_in {
  padding: 30px 40px 80px;
  background: #FFF;
  border-radius: 10px;
}
.news_content .news_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  padding: 0 15px;
}
.news_content .news_info .news_date {
  margin: 0;
  font-size: 1.8rem;
}
.news_content .news_h1 {
	margin: 15px 0 30px;
	padding: 0 15px 30px;
	font-size: 3.0rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
}
.news_content .news_h1::before {
  content: '';
  width: 100%;
  aspect-ratio: 762 / 11;
  background: url(../img/h1_line_news.png) bottom center / contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
.news_content .news_in {
  padding: 0 15px;
}
.news_content p {
  margin-top: 15px;
}
.news_content .wp-block-image,
.news_content .wp-block-columns {
	margin: 15px 0 0;
}
.news_content .wp-block-columns .wp-block-image {
	margin: 0;
}
.news_content .wp-block-image a:hover {
	opacity: 0.8;
}
.news_content .wp-block-image figcaption {
  margin: 5px 0 0;
	font-size: 87.5%;
	text-align: center;
}
.news_content img {
	border-radius: 10px;
}
.news_content .post-password-form p {
  display: inline-table;
}
.news_content .post-password-form p:first-child {
    display: block;
}
.news_content .post-password-form label input {
  background: transparent;
  border: 2px solid #DBC9BC;
  border-right: none;
  border-radius: 5px 0 0 5px;
  padding: 0 5px;
  margin-bottom: 5px;
}
.news_content .post-password-form input {
  background: #DBC9BC;
  border-radius: 0 5px 5px 0;
  padding: 2px 10px;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.news_content .post-password-form label input:hover {
  background: transparent;
}
.news_content .post-password-form input:hover{
  background: #A89383;
}

@media (max-width: 1199px) {
  .news_content {
    padding: 15px;
  }
  .news_content .news_content_in {
    padding: 30px 20px 80px;
  }
  .news_content .news_h1 {
    padding: 0 15px 25px;
  }
}

@media screen and (max-width: 575px) {
  .news_content {
    padding: 10px;
  }
  .news_content .news_content_in {
    padding: 20px 10px 60px;
  }
  .news_content .news_info {
    gap: 10px;
  }
  .news_content .news_info .news_date {
    font-size: 1.6rem;
  }
  .news_content .news_h1 {
    margin-bottom: 20px;
    padding: 0 10px 20px;
    font-size: 2.4rem;
  }
  .works_area .works_h3 {
    margin-bottom: 20px;
    padding: 0 70px 10px;
  }
  .news_content .news_in {
    padding: 0;
	}
}

/* ----- News PrevNext ----- */
.news_prevnext {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: 50px;
  padding: 0 70px;
}
.news_prevnext li {
  width: calc((100% - 60px) / 3);
}
.news_prevnext li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  background: #EEE5DC;
  border-radius: 5px;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
}
.news_prevnext li a:hover {
  background: #DBC9BC;
}
.news_prevnext li.prev a {
  padding-left: 40px;
}
.news_prevnext li.next a {
  padding-right: 40px;
}
.news_prevnext li.prev a::after {
  content: '';
  width: 15px;
  height: 20px;
  background: url(../img/arrow_img02.png) center center / contain no-repeat;
  position: absolute;
  top: calc(50% - 10px);
  left: 20px;
  transition: 0.3s;
  transform: scale(-1, 1);
}
.news_prevnext li.prev a:hover::after {
  left: 10px;
}
.news_prevnext li.next a::after {
  content: '';
  width: 15px;
  height: 20px;
  background: url(../img/arrow_img02.png) center center / contain no-repeat;
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
  transition: 0.3s;
}
.news_prevnext li.next a:hover::after {
  right: 10px;
}

@media screen and (max-width: 991px) {
  .news_prevnext {
    margin-top: 40px;
  }
  .news_prevnext li {
    width: calc((100% - 40px) / 3);
  }
  .news_prevnext li a {
    font-size: 87.5%;
  }
}
@media screen and (max-width: 575px) {
  .news_prevnext {
    margin-top: 30px;
  }
  .news_prevnext li {
    width: calc((100% - 30px) / 3);
  }
  .news_prevnext li a {
    padding: 10px;
  }
  .news_prevnext li.prev a {
    padding-left: 10px;
  }
  .news_prevnext li.next a {
    padding-right: 10px;
  }
  .news_prevnext li.prev a::after,
  .news_prevnext li.next a::after {
    content: none;
  }
}

/*** --------------- News Sidebar --------------- ***/
.news_side .side_box {
  margin-top: 40px;
  padding: 20px;
  background: #F8F4E6;
  border-radius: 10px;
}
.news_side .side_box:first-of-type {
  margin-top: 0;
}
.news_side .side_box h2 {
  padding-bottom: 15px;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.news_side .side_box h2::before {
  content: '';
	width: 100%;
	height: 1px;
	background: #D1C1B5;
  border-radius: 1px;
	position: absolute;
	bottom: 4px;
	left: 0;
}
.news_side .side_box h2::after {
  content: '';
	width: 100%;
	height: 2px;
	background: #D1C1B5;
  border-radius: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.news_side .side_box ul {
  margin-top: 14px;
}
.news_side .side_box ul.tag_list {
  display: flex;
	flex-wrap: wrap;
}
.news_side .side_box ul li a {
  display: inline-block;
  width: 100%;
  padding: 6px 35px 6px 15px;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
}
.news_side .side_box ul.tag_list li a {
  padding: 4px 8px;
	font-size: 1.2rem;
}
.news_side .side_box ul li a:hover {
  background: #FFF;
}
.news_side .side_box ul.tag_list li a::before {
	content: '#';
	padding-right: 2px;
}
.news_side .side_box ul li a::after {
  content: '';
  width: 10px;
  height: 14px;
  background: url(../img/arrow_img02.png) center center / contain no-repeat;
  position: absolute;
  top: calc(50% - 7px);
  right: 15px;
  transition: 0.3s;
}
.news_side .side_box ul li a:hover::after {
	right: 10px;
}
.news_side .side_box ul.tag_list li a::after {
  content: none;
}
.news_side .side_box .date {
  display: inline-block;
  width: 100%;
  font-size: 1.2rem;
}
.news_side .side_box ul li button {
  display: inline-block;
  width: 100%;
  padding: 6px 35px 6px 15px;
  border-radius: 20px;
  font-size: 87.5%;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: 0.3s;
  position: relative;
}
.news_side .side_box ul li button:hover {
  background: #FFF;
}
.news_side .side_box ul li button::before {
  content: '';
  width: 10px;
  height: 14px;
  background: url(../img/arrow_img02.png) center center / contain no-repeat;
  position: absolute;
  top: calc(50% - 7px);
  right: 15px;
  transition: 0.3s;
  transform: rotate(90deg);
}
.news_side .side_box ul li button[aria-expanded="true"]::before {
  transform: rotate(-90deg);
}
.news_side .side_box ul.month_list {
  margin: 0 0 0 10px;
}

@media screen and (max-width: 991px) {
  .news_side .side_box {
    margin-top: 40px;
  }
  .news_side .side_box:first-of-type {
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .news_side .side_box {
    margin-top: 30px;
  }
  .news_side .side_box:first-of-type {
    margin-top: 40px;
  }
}
