@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/
/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
body {
    color: #444;
   /* font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;*/
}
/*サイドバーのシャドウを消す*/
.main, .sidebar aside{
	box-shadow:none;
}
/*トップアピール背景削除*/
.appeal-content{
	background:none;
}
aside#feedzy_wp_widget-3{
	width:100%;
}
.list-title-in,
.navi .item-label, 
.navi .item-description ,
.appeal-content dl dt ,
.appeal-content dl dd{
	font-family: "Zen Maru Gothic", sans-serif;
}
/* トップメッセージ */
.appeal-content dl dt{
	color:#fff;
	font-size: 2.5rem;
  	font-style: bold;
	font-weight: 800;
	text-shadow: 1px 1px 1px rgba(0, 0, 139, 0.8);
}
.appeal-content dl dd{
	color:#fff;
	font-size: 1.5rem;
  	font-style:bold;
	font-weight: 800;
	text-shadow: 1px 1px 1px rgba(0, 0, 139, 0.8); 
}
.appeal-content dl strong{
	color:#e2ff08;
}
/* H1 2段目 */
h1.list-new-entries-title{
	font-size:1.5rem;
  	font-style:bold;
	font-weight: 600;
	letter-spacing:1.2rem
}
.sidebar h2, .sidebar h3{
	background: linear-gradient(
	  135deg,          /* 右下方向に向けたグラデーション */
	  #fa2a88  0%,     
	  #5795f7 20%,    
	  #5795f7 75%,     
	  #ffb94c 100%  
	)!important;
}
div#content-bottom {
    /* background: #ccc;*/
/* フッター設定 */
	background:url("/wp-content/uploads/2025/07/zaitakun-fotter.png")	center/cover no-repeat;
    padding: 2em;
    text-align: center;
}
aside#custom_html-3 , 
.content-top, .content-bottom{
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
}
.footer{
	margin-top:0;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}
/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}
/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}


/************************************
** 事業所一覧
************************************/

/* 県・市絞り込みリンク */
.pref-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.pref-filter a {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.pref-filter a:hover,
.pref-filter a.active {
    background: #5795f7;
    border-color: #5795f7;
    color: #fff;
}

/* 一覧縦並び */
.jigyosyo-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 20px 0;
    border-top: 1px solid #eee;
}

/* 各行 */
.jigyosyo-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 12px;
    border-bottom: 1px solid #eee;
    background: #fff;
    transition: background 0.2s;
}

.jigyosyo-item:hover {
    background: #f5f8ff;
}

/* アイキャッチ非表示 */
.jigyosyo-item > a:first-child {
    display: none;
}

/* タイトル */
.jigyosyo-item h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.jigyosyo-item h2 a {
    color: #333;
    text-decoration: none;
}

.jigyosyo-item h2 a:hover {
    color: #5795f7;
}

/* テキスト情報 */
.jigyosyo-item p {
    font-size: 13px;
    color: #666;
    margin: 2px 0;
    line-height: 1.6;
    display: inline;
}

.jigyosyo-item p::after {
    content: '　';
}

/************************************
** レスポンシブ（一覧）
************************************/

@media screen and (max-width: 834px) {
    .jigyosyo-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media screen and (max-width: 480px) {
    .jigyosyo-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pref-filter {
        gap: 6px;
    }
}