body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.container {
  text-align: center;
  margin-top: 60px;
  width: 100%;
  max-width: 600px;
}

/* スマホ向けの追加スタイル */
@media (max-width: 600px) {
	.container {
		margin-top: 0px;
	}
}

.logo {
  font-size: 64px;
  font-weight: bold;
  color: #ff1493;
  font-family: 'Product Sans', Arial, sans-serif;
  margin-bottom: 30px;
  margin-top: 50px;
  letter-spacing: -2px;
}

/* スマホ向けの追加スタイル */
@media (max-width: 600px) {
	.logo {
		margin-top: 30px;
	}
}

.aaa {
  color: #ff1493;
}

.iii {
  color: #1e90ff;
}

.logo::after {
  content: '';
  display: block;
  height: 8px;
  margin-top: 5px;
  background: linear-gradient(to right,
    #9370db 0%, #9370db 25%,
    #EA4335 25%, #EA4335 50%,
    #FBBC05 50%, #FBBC05 75%,
    #34A853 75%, #34A853 100%);
}

.search-box input[type="text"] {
  width: 100%;
  max-width: 500px;
  padding: 14px 20px;
  font-size: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 24px;
  outline: none;
  transition: box-shadow 0.2s ease;
  box-sizing: border-box;
}

.search-box input[type="text"]:focus {
  box-shadow: 0 0 5px rgba(66, 133, 244, 0.5);
}

.buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background-color: #f8f9fa;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

button:hover {
  background-color: #f1f1f1;
}

/* スマホ向けの追加スタイル */
@media (max-width: 600px) {
  .logo {
    font-size: 48px;
  }

  .search-box input[type="text"] {
    font-size: 14px;
    padding: 12px 16px;
  }

  button {
    font-size: 13px;
    padding: 8px 16px;
  }
}
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.search-wrapper input[type="text"] {
  width: 100%;
  padding: 14px 50px 14px 20px; /* 右側に余白を追加 */
  font-size: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 24px;
  outline: none;
  box-sizing: border-box;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-45%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
}
.search-icon:hover {
  background: none;
}
.below-text {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.6; /* 行間を広げる */
}

.below-text .count {
  color: #ff1493; /* 件数の色（赤系の例） */
  font-weight: bold; /* 強調したいなら追加 */
}

.below-text2 {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,hr,h1,h2,h3,h4,h5,h6{
    margin:0;
    padding:0;
}

h1,h2,h3,h4,h5,h6{font-size:100%;}
ol,ul,li,dl{list-style-position: inside;}
button,input,select,textarea{margin:0;}
button, input, select, textarea {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

html{
  box-sizing:border-box;
  line-height:1;
  font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
}

*,*:before,*:after{box-sizing:inherit;}
table{
  border-collapse:collapse;
  border-spacing:0;
}

td,th{
  padding:0;
  text-align:left;
}

hr{
  height: 0;
  border: 0;
}

body {
	width:100%;
	font-family:"Lato",
				"游ゴシック体",
				"Yu Gothic",
				"YuGothic",
				"ヒラギノ角ゴシック Pro",
				"Hiragino Kaku Gothic Pro",
				"メイリオ",
				"Meiryo",
				"ＭＳ Ｐゴシック",
				"MS PGothic",
				"sans-serif";
	font-size: 1.2rem;
	font-weight:500;
	color:#191919;
	-webkit-text-size-adjust: 100%;
	word-wrap : break-word;
	overflow-wrap : break-word;
}

@media (min-width: 768px) {
	body {
		max-width: 1270px; /* 表示幅を制限 */
		margin: 0 auto; /* 左右中央に配置 */
	}
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

/*IEハック*/
@media all and (-ms-high-contrast:none) {
	body {
		font-family:"Lato",
					"メイリオ",
					"游ゴシック体",
					"Yu Gothic",
					"YuGothic",
					"ヒラギノ角ゴシック Pro",
					"Hiragino Kaku Gothic Pro",
					"Meiryo",
					"ＭＳ Ｐゴシック",
					"MS PGothic",
					"sans-serif";
	}
}

a {
  color: inherit;
  text-decoration: none;
}

.l-main {
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .l-main {
    width: calc(70% - 30px);
  }
}

.full-disp-y {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.container {
  position: relative;
  max-width: 1170px;
  margin-left: 15px;
  margin-right: 15px;
}

@media only screen and (min-width: 1139px){
  /*コンテナー（左右余白）*/
  .container {
    gin-left: auto;
    gin-right: auto;
    ding-left: 15px;
    padding-right: 15px;
  }
}

.dividerBottom {
  margin-bottom: 20px;
}

.dateList {
  list-style: none;
  margin-bottom: 5px;
}

.dateList__item {
  display: inline-block;
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.2rem;
  margin-right: 5px;
  line-height: 1.5;
}

.dateList-main {
  margin-bottom: 10px;
}

.postContents {
  width: 100%;
}

.content {
  position: relative;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 7px;
}

.content img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.content p {
  margin-top: 2rem;
}

.content table {
  margin-top: 2rem;
  width: 100%;
  font-size: 1.2rem;
  border-top: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
  border-right: 0;
  border-bottom: 0;
}

.content table td {
  padding: 10px;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.content table tr:nth-child(odd) td {
  background-color: #f2f2f2;
}

/* ボタン */
.content .ep-btn {
  position: relative;
  display: inline-block;
  line-height: 1;
  background-color: rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 18.5px;
  overflow: hidden;
  transition: 0.3s;
  padding: 10px 15px;
}

/* 汎用クラス */
.content .es-size100 { width: 100%; }
.content .es-TpaddingS { padding-top: 1.5rem; }
.content .es-RpaddingM { padding-right: 3rem; }
.content .es-BpaddingS { padding-bottom: 1.5rem; }
.content .es-LpaddingM { padding-left: 3rem; }
.content .es-bold { font-weight: bold; }
.content .es-radius { border-radius: 5px; }
.content .es-BT3d { border-bottom: solid 5px rgba(0, 0, 0, 0.25); }
.content .ftc-white { color: #ffffff; }
.content .bgc-Vorange { background-color: #ff1493; }

.u-shadow {
  background: #ffffff;
  padding: 0px;
  margin-top:10px;
  border-bottom: none;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
	.u-shadow {
		box-shadow: none;
	}
}

/*ラッパー(メイン・サイドバー用ラッパー)
------------------------------------------------------------*/
.l-wrapper {
  display:flex;
  align-items: flex-start;
  justify-content: space-between;
}


.l-wrapper{
  margin:10px auto 20px;
}

/*ラッパー(メイン・サイドバー用ラッパー)
------------------------------------------------------------*/
.l-wrapper {
  position:relative;
  max-width:1270px;
  margin:40px 15px;
}

.l-wrapper-lp {margin:0 15px;}
.l-wrapper {margin: 60px 20px;}
.l-wrapper-lp {margin:0 20px;}

.l-wrapper {
  margin-left:auto;
  margin-right:auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (max-width:767px){
  .l-wrapper{
    margin:10px 10px 40px;
  }
}

/* サムネイル画像 */
.site-new-image-container-ALL {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.site-new-image-item-kanren {
  position: relative;
  text-align: center;
  border-radius: 5px;
  border: 2px solid #ff1493;
}

.site-new-image-item-kanren {
  position: relative;
  text-align: center;
  border-radius: 5px;
  border: 2px solid #ff1493;
}

.site-new-image-item-kanren img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  display: block;
  margin: 0;
}

.site-new-image-item-kanren p {
  position: absolute; /* テキストを絶対位置指定 */
  bottom: 0; /* テキストを下に配置 */
  left: 0; /* テキストを左に配置 */
  width: 100%; /* テキストの幅を100%に設定 */
  font-size: 13px;
  font-weight: bold; /* テキストを太字に設定 */
  padding: 2px;
  line-height: 1.5; /* 行間隔を設定 */
  background-color: #fff; /* 透明度付きの背景色を指定 */
  border-top-left-radius: 2px; /* 左上の角を丸くする */
  border-top-right-radius: 2px; /* 右上の角を丸くする */
  overflow: hidden;
  color: #000;
}

.site-new-image-item-kanren .additional-text {
  position: absolute;
  left: -0.0725rem;
  bottom: -5px; /* テキストを下に配置（必要に応じて調整） */
  width: calc(100% + 0.19rem);
  height: 15px; /* 背景の高さを固定 */
  font-size: 11px; /* テキストのフォントサイズを設定 */
  color: #fff; /* テキストの色を設定 */
  background-color: #4169e1; /* 透明度付きの背景色を指定 */
  display: flex; /* Flexbox を使用 */
  flex-direction: column; /* 列方向に要素を配置 */
  justify-content: center; /* 垂直方向に中央揃え */
  align-items: center; /* 水平方向に中央揃え */
}

.site-new-image-item-kanren .additional-text2 {
  position: absolute; /* 相対位置指定に変更 */
  border-radius: 1px; /* 丸角にするためのプロパティ */
  top: 0; /* テキストを上に配置 */
  right: 0; /* テキストを右に配置 */
  color: #fff; /* テキストの色を設定 */
  -ms-flex-negative:0;
  flex-shrink:0;
  width:58px;
  height:18px;
  text-align:center;
  line-height:16px;
  font-size:11px;
  font-weight:700;
}

/* デスクトップでは6列 */
@media (min-width: 1025px) {
  .site-new-image-item-kanren {
    width: calc(25% - 20px); /* 100% / 4列 - 列の間隔 */
    margin-bottom: 10px;
  }
  .site-new-image-item-kanren p {
    height: 20px;
  }
}

/* タブレットでは4列 */
@media (min-width: 769px) and (max-width: 1024px) {
  .site-new-image-item-kanren {
    width: calc(25% - 20px); /* 100% / 4列 - 列の間隔 */
    margin-bottom: 10px;
  }
  .site-new-image-item-kanren p {
    height: 20px;
  }
}

/* スマートフォンでは3列 */
@media (max-width: 768px) {
  .site-new-image-item-kanren {
    width: calc(33% - 10px); /* 100% / 3列 - 列の間隔 */
    margin-bottom: 10px;
  }
  .site-new-image-item-kanren p {
    height: 20px;
    font-size: 12px;
  }
  
  .site-new-image-item-kanren img {
    height: 105px;
  }
}

/* タイトル */
.content-header-title {
  padding: 20px 0 20px 15px;
  font-family: "Helvetica Neue", sans-serif;
  position: relative;
  font-weight: 700;
  color: #000;
  font-size: 26px;
}

.content-header-title::after {
  margin-top: 5px;
  margin-bottom: 7px;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: #ff0000;
  position: absolute;
  bottom: 10;
  left: 0;
}

.single_content-header-title {
  margin-top: 15px;
  padding: 15px 5px 15px 10px;
  font-family: "Helvetica Neue", sans-serif;
  position: relative;
  font-weight: 700;
  color: #000;
  font-size: 26px;
  line-height: 35px;
  background-color: #ffe4e1;
}

/* 個別説明 */
.kobetsu_item_desc {
  font-size: 17.5px;
  line-height: 185%;
  font-weight: normal;
  margin-bottom: 10px;
}

.kobetsu_item_desc .itemdisc {
  margin: 10px 0;
}

/* RSSリスト */
ul.rss-img-list {
  border: 1px solid #ccc;
  padding: 10px !important;
  list-style: none;
}

ul.rss-img-list li a {
  font-size: 16px;
  display: block;
  text-decoration: none;
  overflow: hidden;
  padding: 3px 0;
}

ul.rss-img-list li a .feed_image {
  float: left;
  width: 62px;
  height: 62px;
  margin-right: 10px;
  border: 1px solid #ffc0cb;
  overflow: hidden;
}

ul.rss-img-list li a .feed_image img {
  width: 100%;
  height: 60px !important;
  object-fit: cover;
  display: block;
  background: #e0e0de url(data:image/png;base64,iVBORw0KGgo...) no-repeat center;
  background-size: contain;
}

ul.rss-img-list li a .feed_title {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
}

ul.rss-img-list li a .feed_name {
  font-size: 12px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single_content-header-title_2 {
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: 'Helvetica Neue', sans-serif;
  padding-left: 15px;
  position: relative;
  font-weight: 700;
  color: #000;
  font-size: 22px;
  line-height: 35px;
}

.single_content-header-title_2::after {
  content: '';
  display: block;
  width: 100%;
  height: 0.5px;
  border-bottom: 2px dotted #ff69b4;
  position: absolute;
  bottom: 10;
  left: 0;
}

.single_content-header-title_2 a:first-child {
  font-weight: 700;
  color: #000;
  font-size: 26px;
  line-height: 1.5;
  margin: 0;
}

.single_content-header-title_2 a:last-child {
  font-weight: 700;
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 769px) and (max-width: 1024px) {

	.single_content-header-title_2 {
	  font-size: 21px;
	}
	
		.single_content-header-title_2 a:first-child {
	  font-size: 21px;
	}

	.single_content-header-title_2 a:last-child {
	  font-size: 16px;
	}
	
}

@media (max-width: 768px) {

	.single_content-header-title_2 {
		font-size: 20px;
	}

	.single_content-header-title_2 a:first-child {
		font-size: 20px;
	}

	.single_content-header-title_2 a:last-child {
		font-size: 15px;
	}
}

.search-item {
  position: relative;
  text-align: center;
}

.search-item p {
  position: absolute; /* テキストを絶対位置指定 */
  bottom: 0; /* テキストを下に配置 */
  left: 0; /* テキストを左に配置 */
  width: 100%; /* テキストの幅を100%に設定 */
  font-size: 18px;
  font-weight: bold; /* テキストを太字に設定 */
  padding: 2px;
  color: #fff; /* テキストの色を設定 */
}

@media (max-width: 600px) {
	.search-item p {
	  font-size: 13px;
	  line-height: 1.3;
	}
}
/*ページネーション
------------------------------------------------------------*/
.pager{
	position:relative;
	width:100%;
	text-align:center;
	list-style:none;
	font-size:0;
	margin-top: 30px;
}
/*クリックエリア*/
.pager__item{
	font-family: "Fjalla One";
	display:inline-block;
	color:#a83f3f;
	background:#ffffff;
	border:rgba(0,0,0,0.10) 1px solid;
	font-size:1.3rem;
	margin-left:-1px;
}

/*リンクタグに余白を持たせる処理*/
.pager__item-current,
.pager__item a{
	display:inline-block;
	padding:10px;
	min-width: calc(1.2rem + 20px);
}
/*現在地とマウスオーバー時の変化*/
.pager__item:hover,
.pager__item-current{
	color:#ffffff;
	background:#ff1493;
	transition: .15s;
}
/*前次ボタンの矢印*/
.pager__item-prev,
.pager__item-next  {position: relative;}
.pager__item-prev a{padding-left: 20px;}
.pager__item-next a{padding-right:20px;}
.pager__item-prev::before,
.pager__item-next::before{
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    margin: auto;
    border-top: 1px solid;
}
.pager__item-prev::before{
	left: 10px;
	border-left: 1px solid;
	transform: rotate(-45deg);
}
.pager__item-next::before{
	right: 10px;
	border-right: 1px solid;
	transform: rotate(45deg);
}
/*-----ページ内ページネーション-----*/
.pagePager{
	position:relative;
	width:100%;
	text-align:center;
	list-style:none;
	font-size:0;
	margin-top:60px;
}
.pagePager__item{
	font-family: "Fjalla One";
	display:inline-block;
	color:#a83f3f;
	background:#ffffff;
	border:rgba(0,0,0,0.10) 1px solid;
	font-size:1.2rem;
	margin-left:-1px;
}

.pagePager__item-current,
.pagePager__item a{
	display:inline-block;
	padding:10px;
	min-width: calc(1.2rem + 20px);
}
.pagePager__item:hover,
.pagePager__item-current{
	color:#ffffff;
	background:#a83f3f;
	transition: .15s;
}

.site-footer {
    background-color: #fff;
    text-align: center;
    padding: 10px 30px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #ddd;
    margin-top: 40px;
    width: 100%;
}

.site-footer .footer-content p {
    margin: 10px 0;
}

@media (max-width: 768px) {
	.site-footer {
		margin-top: 0px;
	}
}

.box27 {
    position: relative;
    padding: 0.5em 1em;
    border: solid 1px #000;
    margin-top:40px;
    margin-left:10px;
    margin-right:10px;
	font-size:15px;
	font-weight: bold;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.box27 {
		font-size:14px;
	}
}

.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    border: solid 1px #000;
    background: #ffc0cb;
    color: #000;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}

.box27 .count {
  color: #ff1493; /* 件数の色（赤系の例） */
  font-weight: bold;
}

.box27 p {
    margin: 0; 
    padding: 0;
}

.box27 h3 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 4px solid #000;
    background: #f0f8ff;
}

/* WPFormsの各フィールド */
.wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ラベル */
.wpforms-field-label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

/* テキスト、メール、テキストエリア共通 */
.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.wpforms-field textarea {
    min-height: 150px; /* デフォルトより広め */
    resize: vertical;  /* ユーザーが高さを変えられるようにする（不要なら削除） */
}

/* フォーカス時の見た目 */
.wpforms-field input:focus,
.wpforms-field textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 4px rgba(0,115,170,0.3);
}

/* 送信ボタン */
.wpforms-submit {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wpforms-submit:hover {
    background: #005f87;
}

.load-more-button {
  display: block;
  margin: 10px auto;
  algin:center;
  width: 97%;
  padding: 5px 10px;
  background-color: #ff1493;
  color: #fff;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  border: 2px solid #ff69b4;
  border-radius: 20px;
  cursor: pointer;
  font-size: 19px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.load-more-button:hover {
	  color: #fff;
	  background-color: #ff00ff;
}

@media (max-width: 768px) {
	.load-more-button {
		font-size: 16px;
	}
}

.waku-ul {
	width:auto;
	height:auto ;
}
.waku-zentai{
	width:auto;
	height:auto;
	padding-top : 10px;
	padding-bottom : 10px;
	padding-right : 5px;
	border-top:1px solid #cccccc;
}

.waku-right{
	width:70%;
	height:auto;
}

.waku-zentai .waku-daimei{
	display:block;
	width:auto;
	height:auto;
	float:none;
	font-weight:bold;
	overflow:hidden;
	max-height:80px;
	height:auto;
	max-height:100px;
	color:#000;
	font-size:18px;
	text-decoration: underline;
	padding-left : 10px;
	line-height:1.5;
}

@media only screen and (min-width: 768px) and (max-width: 992px){
	.waku-zentai .waku-daimei{
		font-size:15px;
	}
	.waku-zentai .waku-hiduke{
		font-size:13px;
	}
	.waku-zentai .waku-saitomei{
		font-size:13px;
	}
}

@media (max-width: 768px) {
	.waku-zentai .waku-daimei{
		font-size:15px;
	}
	.waku-zentai .waku-hiduke{
		font-size:13px;
	}
	.waku-zentai .waku-saitomei{
		font-size:13px;
	}
}

.waku-zentai .tag-cloud {
	margin-left: 6px;
    display: flex;
    flex-wrap: wrap;
}
.waku-zentai .tag-cloud a {
	border:1px solid #4169e1;
	color: #000;
	line-height: 1.0;
	margin-top: 6px;
	margin-left: 6px;
	padding: 3px;
	font-size: 11px!important;
	font-weight:700;
	background-color: #fff9fc;
}
.waku-zentai .tag-cloud a:hover {
	text-decoration:underline !important;
}

.waku-zentai .tag-cloud2 {
	padding-top: 7px;
	margin-left: 6px;
    display: flex;
    flex-wrap: wrap;
}
.waku-zentai .tag-cloud2 a {
	border:1px solid #4169e1;
	color: #000;
	line-height: 1.0;
	margin-top: 6px;
	margin-left: 6px;
	padding: 3px;
	font-size: 11px!important;
	font-weight:700;
	background-color: #fff9fc;
}
.waku-zentai .tag-cloud2 a:hover {
	text-decoration:underline !important;
}

.waku-zentai .waku-left2{
	float:left;
}

.waku-zentai .waku-left2 img{
	object-fit: cover;
	width:150px;
	height:150px;
}

@media (max-width: 768px) {
	.waku-zentai .waku-left2 img{
		object-fit: cover;
		width:120px;
		height:120px;
		padding-left:10px;
	}
}

.end{
	float:none;
	clear:both;
}

.filter-area {
  margin: 10px 0;
  padding: 10px;
  background: #f9f9f9;
}
.filter-block {
  margin-bottom: 8px;
}
.filter-block a {
  margin-right: 6px;
  text-decoration: none;
  color: #0073aa;
}
.filter-block a:hover {
  text-decoration: underline;
}

/* PCデフォルト：6列 */
.waku-images img {
	width: calc((100% - 50px) / 6);
	height: 220px; object-fit:
	cover; flex-shrink: 0;
}

/* タブレットなど中間サイズ：3列 */
@media screen and (max-width: 1024px) {
  .waku-images img {
  	width: calc((100% - 20px) / 3);
  		height: 200px;
  	}
}

/* スマホ：2列 */
@media screen and (max-width: 600px) {
  .waku-images {
    display: flex;
    flex-wrap: wrap;        /* 折り返し可能 */
    justify-content: center; /* 中央寄せ */
  }
  .waku-images img {
    width: 47%;           /* ← 45% → 47% に拡大 */
    height: auto;
    margin: 0 4px 12px;   /* 余白を少し狭めて調整 */
  }
  .waku-daimei {
    font-size: 16px;
  }
}

.kiji_head {
	margin-top: 25px;
	border: 2.5px solid #000;
	padding: 7px;
	background: #ffc0cb;
	font-weight:bold;
	font-size: 1.8rem;
}

@media only screen and (min-width: 768px) and (max-width: 992px){
	.kiji_head {
		font-size: 1.7rem;
	}
}

@media (max-width: 768px) {
	.kiji_head {
		font-size: 1.7rem;
	}
}

.waku-ul,
.waku-ul-ALL {
	width:auto;
	height:auto ;
}

.waku-zentai .waku-left{
	padding-left:10px;
	float:left;
}

.waku-zentai .waku-left img{
	object-fit: cover;
	width:150px;
	height:150px;
}

@media (max-width: 768px) {
	.waku-zentai .waku-left img{
		object-fit: cover;
		width:120px;
		height:120px;
	}
}

.kiji_detail_box {
    padding: .5em 1em;
    margin: 2em 0;
    font-weight: 700;
    background: #fff;
    border: solid 3px #000;
    border-radius: 10px;
}

.maker {
    background: linear-gradient(transparent 60%, #ffa500 60%);
}

/* タイトル */
.entry_title {
  padding: 20px 0 20px 15px;
  font-family: "Helvetica Neue", sans-serif;
  position: relative;
  font-weight: 700;
  color: #000;
  font-size: 26px;
}

.entry_title::after {
  margin-top: 5px;
  margin-bottom: 7px;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: #ff0000;
  position: absolute;
  bottom: 10;
  left: 0;
}

.entry_outline {
    margin-top: 15px;
    padding: 15px 5px 15px 10px;
    font-family: "Helvetica Neue", sans-serif;
    position: relative;
    font-weight: 700;
    color: #000;
    font-size: 26px;
    line-height: 35px;
    background-color: #ffc0cb;
}
.wider {
    position: relative;
    width: 100%;
    padding-left:10px;
    background-color: #fff0f5;
}
@media only screen and (min-width: 768px) {
    .breadcrumb {
        overflow: visible;
    }
}
.breadcrumb {
    padding: 5px 0;
    overflow-x: auto;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    font-size: 12px;
    color: #666;
    font-weight: 700;
}
@media only screen and (min-width: 768px) {
    .breadcrumb__list {
        list-style: none;
        display: block;
    }
}
.breadcrumb__list {
    list-style: none;
    display: table;
}
.breadcrumb__item:first-child {
    padding-left: 0;
}

@media only screen and (min-width: 768px) {
	.breadcrumb {
	    font-size: 10px;
	    font-weight: 600;
	}
    .breadcrumb__item {
        display: block;
        float: left;
    }
}
.breadcrumb__item {
    position: relative;
    display: table-cell;
    white-space: nowrap;
    padding-left: 2px;
    font-size: 1.2rem;
    line-height: 1.75;
    color: #7f7f7f;
}

.responsive-img{
	width:100%;
	height:auto;
	display:block;
	margin-bottom:20px;
}
