@charset "UTF-8";

/**********************************************/
/********** 一覧共通 ***************************/
/**********************************************/
.post_section {
  padding-top: 130px;
}

.post_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  min-height: 200px;
}

.post_card {
  position: relative;
}

.post_thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
}

.post_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  transform-origin: center center;
}

.post_thumb:hover img {
  transform: scale(1.06);
}

.post_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.post_label {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 999px;
  background: var(--Lightgray);
  font-size: 0.8rem;
  font-weight: 700;
}

.post_body {
  padding: 16px 16px 20px;
}

.post_date {
  font-size: 0.9rem;
  color: var(--Green);
}

.post_title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.post_empty {
  grid-column: 1 / -1;
  text-align: center;
}

.post_more_wrap {
  text-align: right;
}

a.post_more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  text-decoration: underline;
}

a.post_more::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url('../img/green_arrow_b.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

a.post_more:hover {
  opacity: 0.7;
}

a.post_more:hover::after {
  transform: translateX(3px);
}

/* ページネーション */
.post_pagination {
  margin: 40px 0 0;
  text-align: center;
}

.post_pagination ul {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.post_pagination li {
  margin: 0;
  padding: 0;
}

.post_pagination .page-numbers {
  padding: 6px 12px;
  text-decoration: none;
  color: var(--Richblack);
  border-radius: 6px;
}

.post_pagination .page-numbers.current {
  background:var(--Richblack);
  color: var(--White);
  cursor: default;
}

.post_pagination .page-numbers.dots {
  padding: 0 4px;
}

.post_pagination .page-numbers.prev,
.post_pagination .page-numbers.next {
  padding: 6px 10px;
  color: var(--Richblack);
}


@media screen and (max-width: 1024px) {
  .post_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .post_list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post_body {
    padding: 14px 14px 18px;
  }
}

/**********************************************/
/********** 会員専用ページ *********************/
/**********************************************/
.members .post_thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background-color: var(--White);
}

.members .post_thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  transform-origin: center center;
}

/**********************************************/
/********** お問い合わせエリア *****************/
/**********************************************/
.contact_section {
  padding-top: 0;
  position: relative;
}

.contact_inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact_head {
  margin-bottom: 40px;
}

.contact_image {
  max-width: 220px;
  margin: 0 auto 24px;
  display: block;
}

.contact_section .midashi {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact_section .read {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 8px;
  font-weight: 700;
}

.merit_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0 60px;
}

.merit_list .list_item {
  background: var(--White);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.merit_list .list_icon {
  width: 100px;
  height: 100px;
  margin-bottom: 4px;
  object-fit: contain;
}

.merit_list .badge {
  display: inline-block;
  font-weight: 700;
  color: var(--Blue);
}

.merit_list .title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

a.contact_btn {
  background-color: var(--Green);
  color: var(--White);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  padding: 16px 52px 16px 24px;
  border-radius: 5px;
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  position: relative;
}

a.contact_btn::after {
  content: '';
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url('../img/white_arrow_s.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

a.contact_btn:hover {
  opacity: 0.8;
}

a.contact_btn:hover::after {
  transform: translateY(-50%) translateX(4px);
}

.contact_decor {
  position: absolute;
  z-index: 1;
}

.contact_decor img {
  width: 100%;
  height: 100%;
  display: block;
}

.contact_decor--top {
  top: 110px;
  right: 5%;
  width: 170px;
}

.contact_decor--bottom {
  bottom: 60px;
  left: 5%;
  width: 230px;
}



@media screen and (max-width: 1024px) {
  .contact_inner {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .contact_section .midashi {
    font-size: 1.5rem;
  }

  .merit_list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .merit_list .list_item {
    padding: 20px 18px;
  }

  .contact_btn {
    width: 100%;
    max-width: 320px;
  }
}





@media screen and (max-width: 1024px) {
  
}

@media screen and (max-width: 768px) {
 
}

