@charset "UTF-8";
/* CSS Document */
/* 非表示のチェックボックス */
.categoryCheckbox {
  display: none;
}
/* トグル用ラベル */
.categoryLabel {
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  position: relative;
  color: #fff;
  font-family: bilo, sans-serif;
}
/* ↓ 初期状態の矢印 */
.categoryLabel .arrow::after {
  content: "↓";
  display: inline-block;
  margin-left: 0.5em;
  transition: transform 0.3s ease;
}
/* ↑ チェックされたときに切り替え */
.categoryCheckbox:checked + .categoryLabel .arrow::after {
  content: "↑";
}
/* アコーディオンするカテゴリーリスト */
.categoryList {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin: 0;
  font-weight: 500;
  font-family: bilo, sans-serif;
  li {
    margin-top: 6px;
    &:first-of-type {
      padding-bottom: 4px;
    }
    a {
      color: #fff;
      display: block;
      &:hover {
        color: #000;
      }
    }
  }
}
/* チェックされたら展開 */
.categoryCheckbox:checked ~ .categoryList {
  max-height: 500px; /* 内容に合わせて調整可 */
}

/* 共通 */
.newslistArea .inner,
.news_singlArea .inner {
  position: relative;
  padding: 100px 40px 120px;
  .categoryArea {
    position: absolute;
    z-index: 1;
    right: 40px;
    top: -16px;
    background-color: #e9545d;
    padding: 12px 16px;
    border-radius: .8rem;
    }
  }

/* newslistArea */
.newslistArea .inner .listArea ul li {
  padding-bottom: 80px;
  border-bottom: 1px solid #f1ede5;
  .item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 80px;
    &:last-of-type {
      padding-top: 0;
    }
    .left {
      width: calc(66% - 50px);
      .img a {
        display: block;
        &:hover {
          opacity: .7;
        }
        img {
          border-radius: 2rem;
          width: 100%;
          aspect-ratio: 660 / 440;
          object-fit: cover;
        }
      }
    }
    .right {
      width: calc(34% - 50px);
      text-align: left;
      .deta {
        font-family: bilo, sans-serif;
        span {
          display: block;
          letter-spacing: 0.16em;
          font-size: 20px;
          &.cate {
            padding-top: 20px;
          }
        }
      }
    }
  }
}
.newslistArea .inner .listArea ul li p {
  padding-top: 40px;
  font-weight: 700;
  font-size: 24px;
}
.newslistArea .inner .listArea ul li .btnArea {
  padding-top: 26px;
  .btn {
    width: 154px;
    font-family: bilo, sans-serif;
    letter-spacing: 0.16em;
    font-size: 17px;
    .btnarrow {
      display: block;
      padding: 0 4px 8px;
      position: relative;
      transition: all .2s linear;
      border-bottom: 1px solid #000;
      &:hover {
        border-bottom: 1px solid #e9545d;
      }
      &::before {
        content: "";
        position: absolute;
        top: calc(50% - 5px);
        right: 6px;
        width: 18px;
        height: 1px;
        background: #000;
        transition: all .2s linear;
      }
      &::after {
        content: "";
        position: absolute;
        top: calc(50% - 8px);
        right: 6px;
        width: 6px;
        height: 6px;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
        transform: rotate(45deg);
        transition: all .2s linear;
      }
      &:hover::before {
        right: 0px;
        width: 24px;
        background: #e9545d;
      }
      &:hover::after {
        right: 0px;
        border-top: 1px solid #e9545d;
        border-right: 1px solid #e9545d;
      }
    }
  }
}

/* newslistArea */
/* ページャー */
.pnavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding-top: 60px;
  font-family: bilo, sans-serif;
  font-weight: 500;
}
.pnavi .page-numbers {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 24px;
  text-align: center;
  border: 1px solid #e26363;
  border-radius: 50%;
  color: #e26363;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.pnavi .page-numbers.current {
  background-color: #e26363;
  color: #fff;
  border-color: #e26363;
}
.pnavi .page-numbers:hover {
  background-color: #e26363;
  color: #fff;
}
.pnavi .page-numbers.prev,
.pnavi .page-numbers.next {
  border: none;
  background: none;
  width: auto;
  height: auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  color: #000;
  font-weight: bold;
}
.pnavi .page-numbers.prev::before {
  content: "";
  display: inline-block;
  width: 88px;
  height: 28px;
  background: url("../img/common02/back_arrow.svg") no-repeat center;
  background-size: contain;
}
.pnavi .page-numbers.next::after {
  content: "";
  display: inline-block;
  width: 88px;
  height: 28px;
  background: url("../img/common02/next_arrow.svg") no-repeat center;
  background-size: contain;
}
.newslistArea .dots {
  background: transparent;
	border: none;
  &:hover {
    background-color: transparent;
    cursor: default;
    color: #e26363;
  }
}

/* news_singlArea */
.news_singlArea .inner .newsArea {
  max-width: 1000px;
  margin: 0 auto;
  .ttlArea {
    .item {
      font-family: bilo, sans-serif;
      letter-spacing: 0.16em;
      font-size: 17px;
      display: flex;
      justify-content: flex-start;
      .date {
        width: 140px;
      }
        .cate {
          padding-left: 10px;
        }
      }
      .img {
        padding-top: 40px;
        a {
          img {
            border-radius: 2rem;
            width: 100%;
            aspect-ratio: 660 / 440;
            object-fit: cover;
          }
        }
      }
    }
  }
  .news_singlArea .inner .newsArea .textArea {
    padding-top: 40px;
    p {
      padding-top: 20px;
    }
  }
  .news_singlArea .inner .btn02 {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 26px;
    border-top: 1px solid #f1ede5;
    .btnarrow02 {
      display: block;
      width: 140px;
      font-family: bilo, sans-serif;
      letter-spacing: 0.16em;
      font-size: 17px;
      position: relative;
      padding-right: 36px;
      &::after {
        content: url("../img/common02/arrow.svg");
        width: 28px;
        position: absolute;
        top: calc(50% - 14px);
        right: 10px;
        transition: all .3s;
      }
      &:hover::after {
        right: 0;
      }
    }
  }

/* news_singlArea */
/* ページャー */
.news_singlArea .inner .pager-single {
  max-width: 260px;
  margin: 0 auto;
  padding-top: 80px;
  ul {
    position: relative;
    height: 30px;
    padding-bottom: 60px;
    .arrow a {
      display: block;
    }
    .prearrow {
      position: absolute;
      top: 0;
      left: 0;
    }
    .nextarrow {
      position: absolute;
      top: 0;
      right: 0;
    }
  }
}

@media screen and (max-width: 1000px) {
/* newslistArea */
  .newslistArea .inner .listArea ul li {
    padding-bottom: 60px;
    .item {
      padding-top: 60px;
      .left {
        width: calc(60% - 20px);
      }
      .right {
        width: calc(40% - 20px);
      }
    }
  }
}

@media screen and (max-width: 768px) {
/* 共通 */
.newslistArea .inner {
  padding: 40px 6vw 60px;
  .categoryArea {
    right: 6vw;
    top: -30px;
    border-radius: .6rem;
  }
}
.news_singlArea .inner {
  padding: 60px 6vw;
  .categoryArea {
    right: 6vw;
    top: -30px;
    border-radius: .6rem;
  }
}

/* newslistArea */
  .newslistArea .inner .listArea ul li {
    padding-bottom: 40px;
    .item {
      padding-top: 40px;
      .left {
        width: calc(60% - 10px);
        .img a img {
          border-radius: 1.2rem;
        }
      }
      .right {
        width: calc(40% - 10px);
      }
    }
  }
  .newslistArea .inner .listArea ul li .item .right .deta span {
    font-size: clamp(0.875rem, 0.757rem + 0.59vw, 1.125rem);
  }
  .newslistArea .inner .listArea ul li p {
    padding-top: 20px;
    font-size: clamp(1rem, 0.866rem + 0.67vw, 1.188rem);
  }
  .newslistArea .inner .listArea ul li .btnArea {
		padding-top: 20px;
		.btn {
			width: 134px;
			font-size: 15px;
			.btnarrow {
				padding-bottom: 6px;
			}
		}
	}
  .pnavi {
    padding-top: 30px;
  }
  .pnavi .page-numbers {
    width: 16px;
    height: 16px;
    line-height: 14px;
    font-size: 10px;
  }
  .pnavi .page-numbers.prev::before {
    width: 58px;
      height: 19px;
  }
  .pnavi .page-numbers.next::after {
    width: 58px;
    height: 19px;
  }

/* news_singlArea */
  .news_singlArea .inner .newsArea .ttlArea .item {
    font-size: 15px;
    .date {
      width: 126px;
      }
    }
  .news_singlArea .inner .newsArea .ttlArea .img {
    padding-top: 20px;
    a {
      img {
        border-radius: 1.6rem;
      }
    }
  }
  .news_singlArea .inner .newsArea .textArea {
    padding-top: 20px;
    p {
      padding-top: 16px;
    }
  }
  .news_singlArea .inner .btn02 .btnarrow02 {
    width: 128px;
    font-size: 15px;
  }
  .news_singlArea .inner .pager-single {
    padding-top: 50px;
  }
}

@media screen and (max-width: 600px) {
/* newslistArea */
  .newslistArea .inner .listArea ul li .item {
    .left {
      width: calc(60% - 8px);
      .img a img {
        border-radius: .8rem;
      }
    }
    .right {
      width: calc(40% - 8px);
    }
  }

/* news_singlArea */
  .news_singlArea .inner .newsArea .ttlArea .img a img {
    border-radius: 1rem;
  }
}
