@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
/*最後に削除する！--*/
/*--最後に削除する！*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,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 dl {
  width: 90%;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: clamp(60px, 8.93vw + 31.4px, 100px);
}
.p-news .-archive dl a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.3s;
  padding: 1em 0;
  border-bottom: 1px solid #cecece;
}
@media screen and (min-width: 768px) {
  .p-news .-archive dl a {
    padding: 2em 0;
    flex-direction: row;
  }
}
.p-news .-archive dl a:hover {
  opacity: 0.7;
}
.p-news .-archive dl a dt {
  width: 10em;
  font-size: 14px;
  color: #909090;
}
.p-news .-archive dl a dd {
  width: calc(100% - 10em);
  font-weight: bold;
  font-size: clamp(16px, 0vw + 16px, 16px);
}
.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 .-post {
    flex-direction: row;
  }
}
.p-news .-post .-postbody {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-news .-post .-postbody {
    width: 66%;
    margin: 0;
  }
}
.p-news .-post .-postbody .-img,
.p-news .-post .-postbody .wp-block-post-featured-image {
  margin: 0 calc(50% - 50vw) 3rem;
}
@media screen and (min-width: 768px) {
  .p-news .-post .-postbody .-img,
  .p-news .-post .-postbody .wp-block-post-featured-image {
    margin: 0 auto 3rem;
  }
}
.p-news .-post .-postbody .-body {
  margin-top: 2em;
}
.p-news .-post .-postbody h2 {
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.p-news .-post .-postbody .-date {
  font-size: 12px;
  font-weight: 300;
}
.p-news .-post .-module {
  width: 90%;
  margin: 5em auto 0;
}
@media screen and (min-width: 768px) {
  .p-news .-post .-module {
    width: 20%;
    margin: 0 auto;
  }
}
.p-news .-post .-module h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1rem;
}
.p-news .-post .-module ul li a {
  position: relative;
  padding-right: 6rem;
}
.p-news .-post .-module ul li a:before, .p-news .-post .-module ul li a:after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 10px;
  transition: 0.3s;
}
.p-news .-post .-module ul li a:before {
  width: 38px;
  height: 1px;
  background-color: #333333;
}
.p-news .-post .-module ul li a:after {
  width: 10px;
  height: 1px;
  background-color: #333333;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.p-news .-post .-module ul li a:hover:before, .p-news .-post .-module ul li a:hover:after {
  right: 0;
}/*# sourceMappingURL=news.css.map */