@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*
i-functions
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
news
-----------------------------------------------------*/
.p-news .-archive,
.p-news .-post {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-news .-archive,
  .p-news .-post {
    flex-direction: row;
  }
}
.p-news .-archive h2,
.p-news .-post h2 {
  width: 100%;
  font-size: clamp(30px, 1.07vw + 26.6px, 44px);
  margin-bottom: clamp(40px, 2.29vw + 32.7px, 70px);
}
.p-news .-archive section,
.p-news .-post section {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news .-archive section,
  .p-news .-post section {
    width: 62%;
  }
}
.p-news .-archive section dl,
.p-news .-post section dl {
  width: 100%;
  font-size: clamp(16px, -0.45vw + 19.5px, 18px);
  line-height: 1.8;
}
.p-news .-archive section dl > a,
.p-news .-post section dl > a {
  display: block;
  position: relative;
  padding: 0.5em 1em;
  border-bottom: 1px solid #e6e0db;
}
@media screen and (min-width: 768px) {
  .p-news .-archive section dl > a,
  .p-news .-post section dl > a {
    padding: 0.5em 0;
  }
}
.p-news .-archive section dl > a div,
.p-news .-post section dl > a div {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-news .-archive section dl > a div,
  .p-news .-post section dl > a div {
    flex-direction: row;
  }
}
.p-news .-archive section dl > a div dt,
.p-news .-post section dl > a div dt {
  font-size: clamp(14px, 0vw + 14px, 14px);
  color: #919191;
}
@media screen and (min-width: 768px) {
  .p-news .-archive section dl > a div dt,
  .p-news .-post section dl > a div dt {
    width: 11em;
  }
}
.p-news .-archive section dl > a div dt span,
.p-news .-post section dl > a div dt span {
  font-size: 10px;
  color: #fff;
  background: #7abf85;
  margin-left: 1em;
  padding: 0.2em 1em;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-news .-archive section dl > a div dd,
  .p-news .-post section dl > a div dd {
    width: calc(100% - 11em);
  }
}
.p-news .-archive nav,
.p-news .-post nav {
  border: 1px solid #91e34a;
  border-radius: 20px;
  padding: 1em 5%;
  width: 100%;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-news .-archive nav,
  .p-news .-post nav {
    width: 24%;
    padding: 1.5em 1em;
    margin-top: 0;
  }
}
.p-news .-archive nav h2,
.p-news .-post nav h2 {
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  border-bottom: 1px solid #91e34a;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-news .-archive nav h2,
  .p-news .-post nav h2 {
    text-align: center;
  }
}
.p-news .-archive .-select,
.p-news .-post .-select {
  display: block;
  position: relative;
  border: 1px solid #dbdbdb;
  vertical-align: middle;
}
.p-news .-archive .-select:after,
.p-news .-post .-select:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0.9em;
  right: 1em;
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  transform: rotate(45deg);
}
.p-news .-archive .-select select,
.p-news .-post .-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 11px 15px;
  padding-right: 1em;
  border: none;
  outline: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
}
.p-news .-archive article,
.p-news .-post article {
  font-weight: 600;
}
.p-news .-archive article .-meta,
.p-news .-post article .-meta {
  color: #959595;
  font-size: clamp(14px, 0vw + 14px, 14px);
  margin-bottom: 1em;
}
.p-news .-archive article .-meta span,
.p-news .-post article .-meta span {
  font-size: 10px;
  color: #fff;
  background: #7abf85;
  margin-left: 1em;
  padding: 0.2em 1em;
  border-radius: 10px;
}
.p-news .-archive article h2,
.p-news .-post article h2 {
  font-size: clamp(30px, 0.76vw + 27.6px, 40px);
  padding-bottom: 2em;
  margin-bottom: 1em;
  border-bottom: 1px solid #cecece;
}/*# sourceMappingURL=news.css.map */