@charset "UTF-8";
/*----------------------------------------------------
ニュースレター一覧
----------------------------------------------------*/
.page_body {
  padding: 10px 0 50px;
}
@media all and (min-width: 751px) {
  .page_body {
    padding: 15px 0 88px;
  }
}

.newsletter_intro {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 500;
}
@media all and (min-width: 751px) {
  .newsletter_intro {
    text-align: center;
    font-size: 18px;
    line-height: 2.1;
    margin-bottom: 70px;
  }
}

.news_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media all and (min-width: 751px) {
  .news_list {
    -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 35px;
  }
}

.news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 8px;
}

.news_thumbnail {
  margin-bottom: 20px;
  overflow: hidden;
  aspect-ratio: 315/213;
}
@media all and (min-width: 751px) {
  .news_thumbnail {
    border-radius: 10px;
  }
}
.news_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .news_thumbnail:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.category_button {
  border: 1px solid #3B97D4;
  color: #3B97D4;
  padding: 0 10px;
  font-size: 12px;
  min-width: 80px;
  margin-bottom: 5px;
  height: 26px;
  line-height: 26px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .category_button {
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    padding: 0 20px;
    margin-bottom: 10px;
  }
}
@media (hover: hover) {
  .category_button:hover {
    background: #3B97D4;
    color: #fff;
  }
}

.title {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: 500;
}
@media all and (min-width: 751px) {
  .title {
    font-size: 20px;
    line-height: 1.6;
  }
}
.title a {
  display: block;
}

.date {
  position: relative;
  display: block;
  color: #999;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding-left: 16px;
}
@media all and (min-width: 751px) {
  .date {
    font-size: 16px;
    padding-left: 22px;
  }
}
.date::before {
  content: "";
  position: absolute;
  background-image: url(../../images/newsletter/icon_date.svg);
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .date::before {
    width: 16px;
    height: 16px;
  }
}

.no_posts {
  text-align: center;
  color: #666;
  font-size: 16px;
  padding: 40px 0;
}

/*----------------------------------------------------
ページネーション
----------------------------------------------------*/
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .wp-pagenavi {
    margin-top: 88px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  padding: 0;
  margin: 0;
}
.wp-pagenavi .current,
.wp-pagenavi a {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  width: 41px;
  height: 41px;
  font-weight: bold;
  font-family: "Hind", sans-serif;
  font-style: normal;
  font-weight: bold;
}
@media all and (min-width: 751px) {
  .wp-pagenavi .current,
  .wp-pagenavi a {
    width: 44px;
    height: 44px;
  }
}
.wp-pagenavi .current {
  background: #3B97D4;
  color: #fff;
}
.wp-pagenavi a.page {
  background: #fff;
  color: #3B97D4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .wp-pagenavi a.page:hover {
    background: #3B97D4;
    color: #fff;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 0;
  position: relative;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  background-image: url(../../images/newsletter/arrow.svg);
  width: 11px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wp-pagenavi .previouspostslink::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

/*----------------------------------------------------
検索フォーム
----------------------------------------------------*/
.search {
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .search {
    margin-bottom: 40px;
  }
}

.search_title {
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
  background: #3c77bb;
  padding: 20px;
}

.search_form {
  width: 100%;
  font-size: 18px;
}

.search_input_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search_field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font: inherit;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #b5b5b5;
  padding: 18px 40px 18px 18px;
  /* バツボタン（クリアボタン）を非表示にする */
  /* IE/Edge用 */
  /* プレースホルダー */
}
@media all and (min-width: 751px) {
  .search_field {
    font-size: 18px;
    padding-right: 50px;
  }
}
.search_field::-webkit-search-cancel-button, .search_field::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.search_field::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.search_field::-webkit-input-placeholder, .search_field::-moz-placeholder, .search_field:-ms-input-placeholder {
  color: #b5b5b5;
  font: inherit;
}

.search_field:focus {
  outline: none;
  border-color: #0066cc;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
          box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.search_submit {
  position: absolute;
  cursor: pointer;
  aspect-ratio: 1;
  width: 40px;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .search_submit {
    width: 50px;
  }
}
.search_submit .search_icon {
  position: relative;
  display: block;
  aspect-ratio: 1;
  width: 100%;
  background-image: url(../../images/newsletter/icon_search.svg);
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-position: center;
}
@media all and (min-width: 751px) {
  .search_submit .search_icon {
    background-size: 22px auto;
  }
}

/*----------------------------------------------------
検索結果ページ
----------------------------------------------------*/
.search_wrap {
  max-width: 420px;
  position: relative;
  margin: 0 auto;
}

.search_query {
  color: #2c2c2c;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media all and (min-width: 751px) {
  .search_query {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
.search_query span {
  font-weight: bold;
  color: #3c77bb;
  font-size: 30px;
}
@media all and (min-width: 751px) {
  .search_query span {
    font-size: 48px;
  }
}

.search_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.search_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.search_thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
.search_thumbnail img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.search_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.no_results {
  text-align: center;
  padding-top: 37px;
  margin-bottom: 28px;
}
@media all and (min-width: 751px) {
  .no_results {
    padding-top: 45px;
    margin-bottom: 34px;
  }
}
.no_results h2 {
  color: #2c2c2c;
  font-weight: 500;
  font-size: 18px;
}
@media all and (min-width: 751px) {
  .no_results h2 {
    font-size: 28px;
  }
}

/*----------------------------------------------------
カテゴリーページ
----------------------------------------------------*/
.category_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
@media all and (min-width: 751px) {
  .category_list {
    margin-bottom: 90px;
  }
}

.category_button_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (min-width: 751px) {
  .category_button_list {
    gap: 10px;
  }
}