@charset "UTF-8";

/* ---------------
archive
--------------- */

/* -- トップ -- */
#solutionTop_mv {
  max-width: 1200px;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 0 0 60px;
}
#solutionTop_mv h1 {
  font-size: 26px;
}

/* -- news,columnカテゴリーアイコン --  */
#news-column_link {
  display: flex;
  flex-wrap: nowrap;
  align-items: normal;
  max-width: 1200px;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 0 0 30px;
}
#news-column_link a {
  display: block;
  width: 90px;
  margin-right: 1em;
  border: solid 1px #27b1b1;
  border-radius: 5px;
  box-sizing: border-box;
  color: #27b1b1;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
#news-column_link a.is-active {
  background: #27b1b1;
  color: #fff;
}

/* -- メイン -- */
#solutionTop_about {
  padding: 60px 45px;
  background: #fafbfb;
}
.contents-wrapper {
  display: flex;
  justify-content: space-between;
  /* gap: 40px; */
}

/* -- 記事一覧ブロック -- */
.main-contents {
  flex: 1;
  width: calc(100% - 330px - 20px);
  margin-right: 20px;
}
.su-posts {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: baseline;
}
.su-post {
  width: calc(50% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  border: solid 1px #eee;
  box-sizing: border-box;
}
.su-post:nth-child(2n) {
  margin-right: 0;
}
.su-post a {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  /* height: 220px; */
}
.su-post img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.su-post .su-post-meta,
.su-post h2,
.su-post .su-post-excerpt {
  padding: 0.5em 0.5em 0;
}
.su-post .su-post-meta {
  font-size: 14px;
}
.su-post h2 a {
  aspect-ratio: unset;
  font-size: 18px;
  color: #000;
}
.su-post .su-post-excerpt {
  padding-bottom: 0.5em;
}
.su-post .su-post-excerpt a {
  aspect-ratio: unset;
  font-size: 16px;
  color: #000;
  line-height: 26px;
}
.su-post h2 a:hover,
.su-post .su-post-excerpt a:hover {
  color: #27b1b1;
}
.su-post .su-post-tags {
  padding: 0.5em;
}
.post-tags li {
  display: inline-block;
  margin-right: 1em;
  font-size: 10px;
}
.post-tags li a {
  aspect-ratio: unset;
}

/* -- ページネーション -- */
/* ページネーション全体のスタイル */
.pagination {
  margin: 50px auto;
  text-align: center;
}
.pagination ul.page-numbers {
  display: inline-flex;
  list-style: none;
  padding: 0;
  gap: 12px;
}
/* 各数字・ボタンの共通スタイル */
.pagination ul.page-numbers li a,
.pagination ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: #000;
  background: #eee;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s;
}
/* ホバー時と現在のページのスタイル */
.pagination ul.page-numbers li a:hover,
.pagination ul.page-numbers li span.current {
  background: #27b1b1;
  color: #fff;
}
/* 「前へ」「次へ」の幅を調整 */
.pagination ul.page-numbers li a.prev,
.pagination ul.page-numbers li a.next {
  width: auto;
  position: relative;
}
.pagination ul.page-numbers li a.prev span:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #000;
  border-left: solid 2px #000;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
}
.pagination ul.page-numbers li a.next span:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 6px);
}
.pagination ul.page-numbers li a.prev:hover span,
.pagination ul.page-numbers li a.next:hover span {
  background: inherit;
}
.pagination ul.page-numbers li a.prev:hover span:before,
.pagination ul.page-numbers li a.next:hover span:before {
  border-color: #fff;
}

/* -- 右側サイドバー -- */
.sidebar {
  width: 330px;
}
.sidebar .widget {
  margin-bottom: 20px;
  padding: 20px 20px 30px;
  background: #f4f4f4;
  border-radius: 15px;
}
.sidebar .widget:last-child {
  margin-bottom: 0;
}
.sidebar .widget h3 {
  margin-bottom: 1.5em;
  font-size: 20px;
  color: #164d4d;
  border-bottom: solid 1px #164d4d;
}

/* -- 検索窓 -- */
.sidebar .widget .searchform div {
  display: flex;
}
.sidebar .widget .searchform input[type="text"] {
  width: 60%;
  height: 40px;
  padding-left: 0.75em;
  border: solid 1px #ccc;
  border-radius: 5px 0 0 5px;
  box-sizing: border-box;
  font-size: 14px;
}
.sidebar .widget .searchform input::placeholder {
  color: #bcbcbc;
}
.sidebar .widget .searchform input[type="submit"] {
  width: 40%;
  height: 40px;
  background: #27b1b1;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

/* -- 人気記事 -- */
.sidebar .widget .popular-post-item {
  margin-bottom: 20px;
}
.sidebar .widget .popular-post-link {
  display: flex;
  align-items: normal;
  width: 100%;
}
.sidebar .widget .popular-post-link .popular-post-thumb {
  width: 40%;
  height: 80px;
  position: relative;
}
.sidebar .widget .popular-post-link .popular-post-thumb .rank-number {
  width: 28px;
  height: 28px;
  background: #fff;
  border: solid 1px #dfdfdf;
  box-sizing: border-box;
  text-align: center;
  line-height: 27px;
  position: absolute;
  top: 0;
  left: 0;
}
.sidebar .widget .popular-post-item:first-child .rank-number {
  background: #ffedab;
  border: none;
}
.sidebar .widget .popular-post-item:nth-child(2) .rank-number {
  background: #dfdfdf;
  border: none;
}
.sidebar .widget .popular-post-item:nth-child(3) .rank-number {
  background: #dfcd8e;
  border: none;
}
.sidebar .widget .popular-post-link .popular-post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar .widget .popular-post-link .popular-post-text {
  width: 60%;
  padding-left: 0.5em;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  line-height: 22px;
}
/* -- タグ -- */
.sidebar .widget .tag-container a {
  font-size: 16px;
}

/* ---------------
single
--------------- */
.single-news main,
.single-column main {
  padding: 60px 40px;
  background: #fafbfb;
}

/* -- パンくず -- */
.single-news .breadcrumb,
.single-column .breadcrumb {
  padding: 20px 0;
}

/* -- 記事ブロック -- */
.single-news .main-contents,
.single-column .main-contents {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
}
.single-news .post-category,
.single-column .post-category {
  display: inline-block;
  width: 90px;
  margin-bottom: 10px;
  background: #27b1b1;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.single-news #solutionTop_mv,
.single-column #solutionTop_mv {
  max-width: unset;
  width: 100%;
  padding: 0 0 20px;
  border-bottom: solid 1px #eee;
}
.single-news #solutionTop_mv h1,
.single-column #solutionTop_mv h1 {
  padding: 0.25em 0;
  font-size: 22px;
  line-height: 1.5;
}
.single-news .contents-wrapper,
.single-column .contents-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.single-news .contents-wrapper p,
.single-column .contents-wrapper p {
  font-size: 16px;
}

/* -- 記事上部コンテンツ -- */
.single-news .post-meta time,
.single-column .post-meta time {
  margin-right: 1em;
}
.single-news .post-meta .post-author,
.single-column .post-meta .post-author {
  padding-left: 1.5em;
  background: url(../images/news-column/mingcute_pen-line.webp) no-repeat left
    center;
  background-size: auto 100%;
}
.single-news .post-tags,
.single-column .post-tags {
  padding: 0.5em 0;
}

/* -- 本文内 -- */
.single-news article,
.single-column article {
  padding: 40px 0;
}
.single-news article .entry-eye-catch,
.single-column article .entry-eye-catch {
  margin-bottom: 30px;
  text-align: center;
}
.single-news article .entry-eye-catch img,
.single-column article .entry-eye-catch img {
  display: block;
  width: 100%;
  height: auto;
}

/* -- 本文内画像 -- */
/* 中央揃え */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* 左寄せ */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}
/* 右寄せ */
.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}
/* 回り込み解除（画像の下にテキストをしっかり落とすため） */
.entry-content::after {
  content: "";
  display: table;
  clear: both;
}
/* 本文内画像サイズカスタム */
/* 本文内の画像：基本設定 */
.entry-content img {
  max-width: 100%;
  height: auto; /* 通常の画像は比率を維持 */
}
/* 投稿画面でサイズ変更（width属性を保持）している画像への上書き */
.entry-content :where(img[class*="wp-image-"][width]) {
  width: attr(width px);
  height: attr(height px);
}

/* -- この記事を書いた人 -- */
.single-column article .whiter-info {
  margin-top: 60px;
  padding: 30px 80px;
  background: #e5f5f5;
}
.single-column article .whiter-info h3 {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}
.single-column article .whiter-info .img-wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: normal;
  margin-bottom: 30px;
}
.single-column article .whiter-info .img-wrap figure {
  width: 30%;
}
.single-column article .whiter-info .img-wrap figure img {
  display: block;
  margin: 0 auto;
}
.single-column article .whiter-info .img-wrap .name {
  width: 70%;
  padding: 20px 20px 0;
}
.single-column article .whiter-info .img-wrap .name p {
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.single-column article .whiter-info .img-wrap .name p b {
  margin-right: 1em;
  font-size: 24px;
}

/* -- SNSリンク -- */
.single-news article .sns-link,
.single-column article .sns-link {
  padding: 40px 0;
  overflow: hidden;
}
.single-news article .sns-link .a2a_kit,
.single-column article .sns-link .a2a_kit {
  float: right;
}

/* -- 関連記事 -- */
.single-news article .related-posts,
.single-column article .related-posts {
  padding: 0 0 40px;
  border-bottom: solid 1px #eee;
}
.single-news article .related-posts h3,
.single-column article .related-posts h3 {
  margin-bottom: 40px;
  font-size: 20px;
}
.single-news article .related-list,
.single-column article .related-list {
  padding-bottom: 30px;
}
.single-news article .related-list a,
.single-column article .related-list a {
  display: block;
  width: 100%;
  color: initial;
}
.single-news article .related-list a img,
.single-column article .related-list a img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.single-news article .related-list a .related-thumb,
.single-column article .related-list a .related-thumb {
  border: solid 1px #eee;
  box-sizing: border-box;
}
.single-news article .related-list a .related-thumb img.no-eyecatch,
.single-column article .related-list a .related-thumb img.no-eyecatch {
  width: 300px;
  height: auto;
  margin: 0 auto;
}
.single-news article .related-list a .related-title,
.single-column article .related-list a .related-title {
  padding: 1em 0 0;
  font-size: 14px;
  line-height: 1;
}
.single-news article .related-list a .related-date,
.single-column article .related-list a .related-date {
  font-size: 10px;
}
/* 関連記事スライダーの調整 */
.js-related-slider {
  position: relative;
  padding: 0 50px;
}
.splide__track {
  overflow: hidden;
}
.js-related-slider .splide__arrow {
  background: transparent;
  border: none;
  opacity: 1;
}
.js-related-slider .splide__arrow--prev {
  left: 0;
}
.js-related-slider .splide__arrow--next {
  right: 0;
}
.js-related-slider .splide__arrow svg {
  fill: #333;
  width: 15px;
  height: 15px;
}
/* Splideの「準備中非表示」を、特定の条件下で解除する */
.related-list.js-mobile-slider-only,
.related-list.no-slider {
  visibility: visible !important;
}
/* PC: スライダーが動いていない時（3等分）の指定 */
.related-posts
  .related-list.js-mobile-slider-only:not(.is-initialized)
  .splide__list,
.related-posts .related-list.no-slider .splide__list {
  display: flex !important;
  gap: 20px !important;
  width: 100% !important;
  transform: none !important;
  visibility: visible !important;
}
.related-posts
  .related-list.js-mobile-slider-only:not(.is-initialized)
  .related-item,
.related-posts .related-list.no-slider .related-item {
  width: calc((100% - 40px) / 3) !important;
  flex: 0 0 auto !important;
}
.related-posts .related-list .splide__pagination__page.is-active {
  background: #333;
}

/* 一覧へ戻るボタン */
.single-news article .back-to-list,
.single-column article .back-to-list {
  margin: 40px 0;
  text-align: center;
}
.single-news article .back-to-list a.newslist_btn,
.single-column article .back-to-list a.newslist_btn {
  display: inline-block;
  padding: 10px 30px;
  border: solid 1px #333;
  box-sizing: border-box;
  border-radius: unset;
  font-size: 20px;
  color: initial;
  text-decoration: none;
}

/* 前の記事／次の記事 */
.single-news article .post-navigation,
.single-column article .post-navigation {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
  min-height: 220px; /* 万が一の高さ確保用 */
}
.single-news article .prev-post,
.single-news article .next-post,
.single-column article .prev-post,
.single-column article .next-post {
  max-width: 210px;
  width: 40%;
  position: static;
}
.single-news article .next-post,
.single-column article .next-post {
  text-align: right;
  margin-left: auto;
}
.single-news article .prev-post p,
.single-column article .prev-post p,
.single-news article .next-post p,
.single-column article .next-post p {
  padding: 0.5em 0 0;
  font-size: 14px;
}
.single-news article .next-post p,
.single-column article .next-post p {
  text-align: left;
}
.single-news article .prev-post a,
.single-news article .next-post a,
.single-column article .prev-post a,
.single-column article .next-post a {
  display: block;
  width: 100%;
  color: initial;
}
.single-news article .prev-post a span,
.single-news article .next-post a span,
.single-column article .prev-post a span,
.single-column article .next-post a span {
  font-size: 20px;
}
.single-news article .prev-post a img,
.single-news article .next-post a img,
.single-column article .prev-post a img,
.single-column article .next-post a img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-top: 10px;
  border: solid 1px #eee;
  box-sizing: border-box;
}

/* ---------------
search
--------------- */
.search main {
  padding-top: 60px;
  background: #fafbfb;
}
.search-title {
  padding: 100px 0 60px;
  background: url(../images/news-column/search.webp) center top no-repeat;
  background-size: auto 60px;
  text-align: center;
}
.search-title h2 {
  font-size: 24px;
}
.search-title p {
  font-size: 18px;
}
/* 検索結果あり */
.search-results-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
}
.search-item {
  width: calc(50% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  border: solid 1px #eee;
  box-sizing: border-box;
}
.search-item:nth-child(2n) {
  margin-right: 0;
}
.search-item-thumb a {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}
.search-item-thumb a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-item-body {
  padding: 1em 0.5em 0.5em;
}
.search-item-body .post-type-label {
  display: inline-block;
  padding: 0 10px;
  background: #333;
  border-radius: 5px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
}
.search-item-body .search-item-meta {
  padding: 0.5em 0 0;
  font-size: 14px;
}
.search-item-body .search-item-title {
  padding: 0.5em 0 0;
  font-size: 18px;
}
.search-item-body .search-item-excerpt {
  padding: 0.5em 0 0;
  font-size: 16px;
  line-height: 1.7;
}
.search-item-body .search-item-title a,
.search-item-body .search-item-excerpt a {
  color: #000;
}
.search-item-body .search-item-title a:hover,
.search-item-body .search-item-excerpt a:hover {
  color: #27b1b1;
}
.search-item-body .search-item-tags {
  margin-top: 1em;
  padding: 0.5em 0 0;
  font-size: 10px;
}
.search-item-body .search-item-tags a {
  margin-right: 1em;
}
/* 検索結果なし */
.no-results {
  padding: 0 0 50px;
  text-align: center;
}
.no-results p.zero {
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.no-results .retry-search {
  max-width: 500px;
  margin: 30px auto;
  padding: 30px 0;
}
.no-results .retry-search p {
  margin-bottom: 1.5em;
  padding-bottom: 0.5em;
  font-size: 20px;
  font-weight: bold;
  color: #164d4d;
  position: relative;
}
.no-results .retry-search p:after {
  content: "";
  display: block;
  width: 8em;
  height: 1px;
  background: #164d4d;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.no-results .retry-search .search-box {
  width: 340px;
  margin: 0 auto;
}
.no-results .retry-search .search-box .searchform div {
  display: flex;
}
.no-results .retry-search .search-box input[type="text"] {
  width: 60%;
  height: 40px;
  padding-left: 0.75em;
  border: solid 1px #ccc;
  border-radius: 5px 0 0 5px;
  box-sizing: border-box;
  font-size: 14px;
}
.no-results .retry-search .search-box input[type="submit"] {
  width: 40%;
  height: 40px;
  background: #27b1b1;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
.no-results .search-by-tag {
  max-width: 500px;
  margin: 30px auto;
  padding: 30px 0;
}
.no-results .search-by-tag p {
  margin-bottom: 1.5em;
  padding-bottom: 0.5em;
  font-size: 20px;
  font-weight: bold;
  color: #164d4d;
  position: relative;
}
.no-results .search-by-tag p:after {
  content: "";
  display: block;
  width: 8em;
  height: 1px;
  background: #164d4d;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.no-results .search-by-tag .tag-wrap {
  margin-bottom: 1em;
}
.no-results .search-by-tag .tag-wrap:last-child {
  margin-bottom: 0;
}
.no-results .search-by-tag p.tag-wrap-title {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: initial;
}
.no-results .search-by-tag p.tag-wrap-title::after {
  display: none;
}
.no-results .search-by-tag .tag-list a {
  display: inline-block;
  margin-right: 1em;
  line-height: 2;
}
.no-results .search-by-tag .tag-list a:last-child {
  margin-right: 0;
}
.no-results .to-top {
  display: flex;
  flex-wrap: nowrap;
  align-items: normal;
  justify-content: center;
  max-width: 500px;
  margin: 60px auto;
}
.no-results .to-top a {
  display: block;
  width: 45%;
  max-width: 220px;
  height: auto;
  margin-right: 5%;
  padding-right: 1.5em;
  background: #fff;
  border: solid 1px #333;
  box-sizing: border-box;
  font-size: 16px;
  color: #333;
  line-height: 55px;
  position: relative;
}
.no-results .to-top a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 1.5em;
}
.no-results .to-top a:last-child {
  margin-right: 0;
}
.no-results .to-top a:hover {
  background: #333;
  color: #fff;
}
.no-results .to-top a:hover:before {
  border-color: #fff;
}
/* サイドバー人気記事 */
.search .widget .post-type-label {
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 0 10px;
  background: #333;
  border-radius: 5px;
  font-size: 10px;
  color: #fff;
  line-height: 2;
}
.search .widget .popular-post-title {
  display: block;
}
/* サイドバータグ一覧 */
.search .widget .tag-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: normal;
}
.search .widget .tag-wrap {
  width: 48%;
  margin-right: 4%;
}
.search .widget .tag-wrap:last-child {
  margin-right: 0;
}
.search .widget .tag-wrap h4 {
  margin-bottom: 0.25em;
  font-size: 16px;
  color: #164d4d;
}
.search .widget .tag-wrap .tag-list a {
  display: block;
}

@media screen and (max-width: 768px) {
  #solutionTop_mv {
    width: 100%;
    padding: 0 0 30px;
  }
  #solutionTop_mv h1 {
    padding: 0 20px;
    font-size: 20px;
  }
  #news-column_link {
    width: 100%;
    padding: 0 20px 20px;
  }
  #news-column_link a {
    width: 70px;
    font-size: 12px;
  }
  #solutionTop_about {
    padding: 45px 10px;
  }
  .contents-wrapper {
    display: block;
  }
  .main-contents {
    width: 100%;
    margin-right: 0;
  }
  .su-post .su-post-excerpt {
    display: none;
  }
  .su-post .su-post-meta {
    font-size: 12px;
  }
  .su-post h2 a {
    font-size: 12px;
  }
  .pagination ul.page-numbers {
    gap: 4px;
  }
  .pagination ul.page-numbers li a,
  .pagination ul.page-numbers li span {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .sidebar {
    width: 100%;
  }
  /* ---------------
  single
  --------------- */
  .single-news main,
  .single-column main {
    padding: 60px 10px;
  }
  .single-news .main-contents,
  .single-column .main-contents {
    margin-bottom: 60px;
    padding: 20px 10px;
  }
  .single-news .post-category,
  .single-column .post-category {
    width: 70px;
    font-size: 12px;
  }
  .single-news #solutionTop_mv h1,
  .single-column #solutionTop_mv h1 {
    font-size: 18px;
  }
  .single-news #solutionTop_mv .post-meta,
  .single-column #solutionTop_mv .post-meta {
    font-size: 14px;
  }
  .single-news #solutionTop_mv .post-tags,
  .single-column #solutionTop_mv .post-tags {
    font-size: 12px;
  }
  .single-column article .whiter-info {
    padding: 30px 10px;
  }
  .single-column article .whiter-info h3 {
    font-size: 18px;
  }
  .single-column article .whiter-info p {
    font-size: 14px;
  }
  .single-column article .whiter-info .img-wrap .name {
    padding: 0 0 0 1em;
  }
  .single-column article .whiter-info .img-wrap .name p b {
    margin-right: 0.5em;
  }
  .single-news article .related-posts h3,
  .single-column article .related-posts h3 {
    margin-bottom: 20px;
  }

  /* --- スマホ画面スライダー調整 --- */
  /* スマホでは矢印を消してスワイプのみにする */
  .js-related-slider {
    padding: 0;
  }
  .js-related-slider .splide__arrows {
    display: none;
  }
  /* スライダー起動中（.is-initialized）は、自作CSSのwidth指定を解除する */
  .related-posts .related-list.splide.is-initialized .related-item {
    /* !importantを外す、または unset にすることで、
        Splideが計算した style="width: calc(...)" を優先 
    */
    width: auto !important;
    flex: 0 0 auto !important;
  }
  /* リスト部分の余計な干渉を消す */
  .related-posts .related-list.splide.is-initialized .splide__list {
    display: flex !important;
    transform: translate3d(0, 0, 0); /* ここに!importantをつけないのがコツ */
  }
  /* 1記事しかない(no-slider)場合は100% */
  .related-posts .related-list.no-slider .splide__slide {
    width: 100% !important;
  }

  .single-news article .back-to-list a.newslist_btn,
  .single-column article .back-to-list a.newslist_btn {
    font-size: 16px;
  }
  .single-news article .post-navigation,
  .single-column article .post-navigation {
    min-height: 150px;
  }
  .single-news article .prev-post a span,
  .single-news article .next-post a span,
  .single-column article .prev-post a span,
  .single-column article .next-post a span {
    font-size: 14px;
  }
  .single-news article .prev-post p,
  .single-column article .prev-post p,
  .single-news article .next-post p,
  .single-column article .next-post p {
    font-size: 12px;
  }
  /* ---------------
  search
  --------------- */
  .search .main-contents {
    padding-bottom: 60px;
  }
  .search-title {
    padding: 100px 0 40px;
  }
  .search-title h2 {
    font-size: 20px;
  }
  .search-title p,
  .no-results p.zero {
    font-size: 16px;
  }
  .search-item-inner {
    display: block;
  }
  .search-item-thumb {
    width: 100%;
  }
  .search-item-body .search-item-excerpt {
    display: none;
  }
  .no-results {
    padding: 0 0 40px;
  }
  .no-results p.zero {
    margin-bottom: 40px;
  }
  .no-results .retry-search {
    margin: 20px auto;
    padding: 20px 0;
  }
  .no-results .retry-search p {
    font-size: 18px;
  }
  .no-results .retry-search .search-box {
    width: 275px;
  }
  .no-results .search-by-tag {
    margin: 20px auto;
    padding: 20px 0;
  }
  .no-results .search-by-tag p {
    font-size: 18px;
  }
  .no-results .to-top {
    display: block;
    margin: 40px auto;
  }
  .no-results .to-top a {
    width: 80%;
    max-width: 220px;
    margin: 0 auto 20px;
  }
  .no-results .to-top a:last-child {
    margin: 0 auto;
  }
}
