@charset "utf-8";
/* CSS Document */

#mv_common_2 .txt_area {
  padding-top: 330px;
}
@media screen and (max-width: 750px) {
  main .wrap {
    padding: 0 6.13333333333333vw;
  }
  #mv_common_2 .wrap {
    overflow: visible;
    padding: 0;
  }
  #mv_common_2 .mv_img_2 {
    width: 42vw;
    position: absolute;
    bottom: -16.8vw;
    right: 0;
  }
  #mv_common_2 .txt_area {
      padding-top: 7.2vw;
  }
  #mv_common_2 p {
    font-size: 3.6vw;
    padding: 0 6.13333333333333vw;
  }
  #mv_common_2 picture:has(.mv_img) {
    margin-left: 0;
  }
}

/* ===============================
	news_list
 =============================== */
#news_list {
  margin-bottom: 90px;
}
#news_list ul {
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  flex-wrap: wrap;
  gap: 48px 20px;
}
#news_list li {
  width: calc((100% - (20px * 2)) / 3);
  min-width: 260px;
  background: var(--C-white);
}
#news_list li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px 16px 24px 24px;
}
#news_list li a:hover {
  opacity: 1;
}
#news_list .list_con {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
#news_list .list_img {
  width: 95px;
  height: fit-content;
  aspect-ratio: 95 / 128;
  overflow: hidden;
}
#news_list .list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.8s;
}
#news_list li a:hover .list_img img {
  transform: scale(1.1);
}
#news_list .list_con p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.705882352941176;
}
#news_list .list_con p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  max-height: 3lh;
}
#news_list .list_con:has(> .list_img) p {
  width: calc(100% - 95px);
}
#news_list .list_btn_con {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 10px;
}
#news_list .list_btn_con time {
  font-size: 17px;
  font-weight: 500;
}
#news_list .list_btn_con .list_btn {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: var(--C-gray) 1px solid;
  border-radius: 100px;
  width: 110px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.4s;
}
#news_list li a:hover .list_btn_con .list_btn {
  color: var(--C-white);
  background: var(--C-green);
}
#news_list .list_btn_con .list_btn::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/plan/icon_arrow.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  #news_list {
    margin-top: 12.8vw;
    margin-bottom: 8vw;
  }
  #news_list .wrap {
    overflow: visible;
  }
  #news_list ul {
    gap: 4vw;
    position: relative;
    z-index: +1;
  }
  #news_list li {
    width: 100%;
  }
  #news_list li a {
    padding: 2.93333333333333vw 5.6vw 4.26666666666667vw 4.8vw;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #news_list li a:has(.list_img) {
    padding-top: 4.26666666666667vw;
  }
  #news_list .list_con {
    gap: 3.2vw;
  }
  #news_list .list_img {
    width: 26vw;
    aspect-ratio: 1 / 1;
  }
  #news_list .list_btn_con {
    width: 100%;
    flex-direction: column;
    align-items: inherit;
    gap: 2.13333333333333vw;
    margin-top: 4.53333333333333vw;
  }
  #news_list .list_con p {
    font-size: 3.8vw;
  }
  #news_list .list_con:has(> .list_img) p {
    width: calc(100% - 26vw - 3.2vw);
    margin-bottom: 9vw;
  }
  #news_list .list_con:has(> .list_img) + .list_btn_con {
    width: calc(100% - 26vw - 3.2vw);
    flex-direction: row;
    margin-top: -7.4vw;
    margin-left: auto;
  }
  #news_list .list_btn_con p {
    font-size: 3.33333333333333vw;
    line-height: 1.68;
    margin-bottom: 3.2vw;
  }
  #news_list .list_btn_con time {
    font-size: 3.2vw;
  }
  #news_list .list_btn_con .list_btn {
    font-size: 3.4vw;
    width: 23.46666666666667vw;
    height: 7.46666666666667vw;
    margin-left: auto;
    margin-right: 0;
  }
  #news_list .list_btn_con .list_btn::after {
    width: 4.26666666666667vw;
    height: 4.26666666666667vw;
    right: 1.6vw;
  }
}

/* ===============================
	news_pagenation
 =============================== */
#news_pagenation {
  background: rgba(255, 255, 255, .55);
  margin-bottom: 90px;
  padding: 36px 0;
}
#news_pagenation a:hover {
  opacity: 1;
}
#news_pagenation .pagenation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
#news_pagenation .pagenation .pagination-no-num a {
  font-weight: 700;
  color: var(--C-white);
  background: var(--C-green);
  border-radius: 100px;
  padding: 4px 6px;
}
#news_pagenation .pagenation .pagination-no-num:hover a {
  color: var(--C-green);
  background: var(--C-white);
}
#news_pagenation .pagenation .pagination-sp a {
  font-size: 13px;
  font-weight: 500;
  display: block;
  padding: 0 10px 2px;
}
#news_pagenation .pagenation .pagination-index a,
#news_pagenation .pagenation .pagination-sp:hover a {
  color: var(--C-white);
  background: var(--C-gray);
}
@media screen and (max-width: 750px) {
  #news_pagenation {
    margin-bottom: 9.06666666666667vw;
    padding: 2.93333333333333vw 0;
  }
  #news_pagenation .pagenation {
    gap: 3.2vw;
  }
  #news_pagenation .pagenation .pagination-sp a {
    font-size: 3.06666666666667vw;
    padding: .3vw 2.66666666666667vw 1.06666666666667vw;
  }
}

/****************************/
/********** detail **********/
/****************************/

/* ===============================
	news_detail
 =============================== */
#news_detail .news_detail_con {
  background: var(--C-white);
  padding: 42px 66px 144px 80px;
}
#news_detail time {
  font-size: 17px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
#news_detail h3.title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.851851851851852;
  margin-bottom: 46px;
}
/* #news_detail img {
  width: 100%;
  height: auto;
} */
#news_detail p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .wrap:has(> #news_detail) {
    overflow: visible;
  }
  #news_detail {
    margin-top: -5.06666666666667vw;
    position: relative;
    z-index: +1;
  }
  #news_detail .news_detail_con {
    padding: 4.53333333333333vw 4.26666666666667vw 0;
  }
  #news_detail time {
    font-size: 3vw;
    margin-bottom: 0;
  }
  #news_detail h3.title {
    font-size: 5.8vw;
    margin-bottom: 4.8vw;
  }
  #news_detail p {
    font-size: 3.6vw;
  }
}

/* ===============================
	news_detail_pagenation
 =============================== */
#news_detail_pagenation {
  background: rgba(255, 255, 255, .55);
  margin-top: 120px;
  margin-bottom: 92px;
  padding: 29px 0;
}
#news_detail_pagenation ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
#news_detail_pagenation li {
  width: 168px;
  border: var(--C-gray) 2px solid;
  border-radius: 100px;
  background: var(--C-white);
  transition: 0.4s;
}
#news_detail_pagenation li:hover {
  background: var(--C-green);
}
#news_detail_pagenation li a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: calc((100% - (20px + 6px)) - 2px);
  height: 34px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
#news_detail_pagenation li a:hover {
  color: var(--C-white);
  /* background: var(--C-green); */
  opacity: 1;
}
#news_detail_pagenation li a::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/plan/icon_arrow.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: -20px;
  margin: 0;
}
#news_detail_pagenation li.prev a::after {
  transform: rotate(180deg);
}
#news_detail_pagenation li.all a::after {
  transform: rotate(90deg);
}
#news_detail_pagenation li.null {
  pointer-events: none;
  opacity: 0.3;
}
#news_detail_pagenation li.null a::after {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
@media screen and (max-width: 750px) {
  #news_detail_pagenation {
    background: var(--C-white);
    margin: 0 6.13333333333333vw 7.73333333333333vw;
    padding: 11.73333333333333vw 5.33333333333333vw 8.26666666666667vw;
  }
  #news_detail_pagenation .wrap {
    padding: 0;
  }
  #news_detail_pagenation ul {
    gap: 0;
  }
  #news_detail_pagenation li {
    width: 25.33333333333333vw;
    border-radius: 0;
  }
  #news_detail_pagenation li a {
    font-size: 2.66666666666667vw;
    border-radius: 0;
    background: none;
    width: calc((100% - (4.8vw + 4px)) - 2px);
    height: 8.26666666666667vw;
    gap: 1vw;
  }
  #news_detail_pagenation li.prev {
    border-radius: 100px 0 0 100px;
    margin-right: -2px;
  }
  #news_detail_pagenation li.next {
    border-radius: 0 100px 100px 0;
    margin-left: -2px;
  }
  #news_detail_pagenation li a::after {
    width: 4.8vw;
    height: 4.8vw;
    right: -4.8vw;
  }
}