@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
	/* -------- スマホヘッターメニュー下が隠れる -------- */
	body:where(.mblt-header-mobile-buttons, .mblt-header-and-footer-mobile-buttons) {
		margin-top: 70px;
	}
}

/*768px以下*/
@media screen and (max-width: 768px){
	.article p{
		margin-bottom: 1.2em;
		line-height: 1.6em;
	}
	.breadcrumb .sp{
		margin: 0 5px;	/*パンくずナビ　狭く10→5*/
	}
	
}


/************************************
** 変更
************************************/
#main{
    background-color: #fbfbf8;
}
#breadcrumb{
	margin: 0;
}

aside{
	margin: 0 !important; 
}
article{
	padding: 0 !important; 
}
/* -------- 更新日の鉛筆マークを消す -------- */
.post-update .fa-pencil-alt {
  display: none;
}
/* 投稿者名（author-name fn）を消す */
.author-info {
  display: none;
}

/* ------------ TOPスライダー下 余白消す ------------ */
/* スライダー ウィジェットエリアの余白消す */
#content-top,
#content-top-in,
.widget-content-top {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}
/* 固定ページのタイトルエリア（HOME）を非表示余白消す */
.page-id-149 .article-header {
    display: none !important;
}
/* コンテンツ全体の余白リセット */
#content {
    margin-top: 0 !important; /* 5px空いていたのを0に */
}
/* 記事エリア（main）と記事本文（entry-content）の余白をゼロにする */
#main {
    padding-top: 0 !important;
}
.entry-content {
    margin-top: 0 !important;
}
/* Smart Slider 3 自体が持つ微細な隙間を消す */
.n2-section-smartslider {
    margin-bottom: 0 !important;
}


/* -------- h1 変更　すべて　 -------- */
/* h1全体の基本設定 */
h1.entry-title,
.col-main h1{        			 /* ショップ情報タイトル */
    text-align: center;
    font-size: 30px;
    color: #009944;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: .05em;
    position: relative;          /* ラインの位置基準 */
    padding-bottom: 15px;        /* テキストとラインの間の余白 */
	padding-top: 0.5em;
    border: none !important;     /* Cocoonデフォルトの枠線を消す */
    margin-bottom: 30px;         /* 下のコンテンツとの間隔 */
	background: none !important;  /* 背景画像を消す */
}
/* 中央下のライン（擬似要素） */
h1.entry-title::after,
.col-main h1::after{        	 /* ショップ情報タイトル */
    content: "";
    position: absolute;
    bottom: 0;                   /* 一番下に配置 */
    left: 50%;                   /* 左から50%の位置へ */
    transform: translateX(-50%); /* 自身の幅の半分戻して完全中央へ */
    width: 50px;                 /* ラインの横幅 */
    height: 5px;                 /* ラインの太さ */
    background-color: #a89868;   /* ラインのカラー */
	border-radius: 10px;    /* 角の丸み（10px） */
}
@media (max-width: 768px) {
h1.entry-title,
.col-main h1{        			 /* ショップ情報タイトル */
    text-align: center;
    font-size: 22px;
    color: #009944;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: .05em;
    position: relative;          /* ラインの位置基準 */
    padding-bottom: 10px;        /* テキストとラインの間の余白 */
    border: none !important;     /* Cocoonデフォルトの枠線を消す */
    margin-bottom: 20px;         /* 下のコンテンツとの間隔 */
	background: none !important;  /* 背景画像を消す */
	}
/* 中央下のライン（擬似要素） */
h1.entry-title::after,
.col-main h1::after{        	 /* ショップ情報タイトル */
    content: "";
    position: absolute;
    bottom: 0;                   /* 一番下に配置 */
    left: 50%;                   /* 左から50%の位置へ */
    transform: translateX(-50%); /* 自身の幅の半分戻して完全中央へ */
    width: 50px;                 /* ラインの横幅 */
    height: 5px;                 /* ラインの太さ */
    background-color: #a89868;   /* ラインのカラー */
	border-radius: 10px;    /* 角の丸み（10px） */
	}	
}

/* -------- h2 変更　固定ページ　 -------- */
/* 固定ページのh2デザイン変更 */
.page .entry-content h2 {
    font-size: 28px;
    color: #444;                 /* 2文字目以降の色 */
	font-weight: 400;
	letter-spacing: .05em;
    position: relative;
    padding-bottom: 15px;        /* 文字と下のラインの隙間 */
	padding-left: 0;
    border: none;                /* Cocoonデフォルトの線を消す */
	background: none !important;      /* 背景画像を消す */
}
/* 1文字目だけの色指定 */
.page .entry-content h2::first-letter {
    color: #009944;
}
/* 下線の設定（2色ライン） */
.page .entry-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;                 /* ライン全体の長さ（100%） */
    height: 3px;                 /* ラインの太さ */
    /* 背景グラデーションで色を塗り分ける */
    background: linear-gradient(to right, 
        #33ad69 0px, #33ad69 8em, 
        #a89868 8em, #a89868 100%
    );
}
@media (max-width: 768px) {
	.page .entry-content h2 {
		font-size: 20px;
		color: #444;                 /* 2文字目以降の色 */
		font-weight: 400;
		letter-spacing: .05em;
		position: relative;
		padding-bottom: 10px;        /* 文字と下のラインの隙間 */
		padding-left: 0;
		border: none;                /* Cocoonデフォルトの線を消す */
		background: none !important;      /* 背景画像を消す */
		margin-bottom: 0.5em !important; 
	}
	.page .entry-content h2::first-letter {
		color: #009944;
	}
	.page .entry-content h2::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;                 /* ライン全体の長さ（100%） */
		height: 2px;                 /* ラインの太さ */
		/* 背景グラデーションで色を塗り分ける */
		background: linear-gradient(to right, 
        #33ad69 0px, #33ad69 8em, 
        #a89868 8em, #a89868 100%
    );
	}
}	
	
	
/* -------- 固定ページのみ幅を1000pxにする -------- */
.page .main {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important; /* サイドバーなし設定の場合のズレ防止 */
}
/* 記事内の余白を微調整（必要に応じて） */
.page .article {
    padding: 20px 0;
}


/************************************
** ヘッター・フッター　レイアウト変更
************************************/

/*------------------------- PCヘッダー共通設定 ------------------------- */
/*1023px以下*/
@media screen and (max-width: 1023px){
#header-container{
		display: none;
	}
/* モバイルヘッダー */
.mobile-header-menu-buttons {
	padding: 0px 0 10px;
	background-color: #fbfbf8;
	height: 30px;
	width: 100%;
	background-image: url('https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/menu_line.png');
    background-size: auto 12px; 
    background-repeat: repeat-x;
	background-position: center bottom;
	}
.mobile-menu-buttons {
	height: 70px;
	}
}
/* PCヘッダー */
.custom-header {
    width: 100%;
    font-family: sans-serif;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    height: 100%;
    align-items: center;
}

/* 1段目：高さ50px、背景#ffffff、左右配置 */
.header-row-1 {
    height: 50px;
    background-color: #ffffff;
}
.header-row-1 .header-inner {
    justify-content: space-between;
}
/* h1-h2指定+h1自体の余白などをリセット */
.header-left {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: flex-start; /* 左寄せ（必要に応じて） */
}
.header-inner h1 {
    margin: 0;   /* h1自体の余白をリセット */
    padding: 0;
    line-height: 1.8; /* 行間を詰めたい場合はここを調整（1が最小） */
	font-size: 14px;
	font-weight: 500;
	color: #009944;
}
.header-inner h2 {
    margin: 0;   /* h2自体の余白をリセット */
    padding: 0;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
	color: #785c2e;
}
/* リンクの装飾を消す */
.header-inner h1 a,
.header-inner h2 {
    display: inline-block;
    text-decoration: none;
}

/* 右コンテンツ */
.header-right {
    display: flex;
	align-items: center; /* 縦方向の中央揃え */
    gap: 15px;
	font-size: 13px;
}
/* 縦ライン　テキスト左右 */
.nav-link {
    border-left: 1px solid #785c2e;
    padding: 0 10px;
    text-decoration: none;
}
.header-right a:last-child {
    border-right: 1px solid #785c2e;
    padding-right: 10px; /* 右側の余白 */
}
.header-right a {
    display: inline-block;
    text-decoration: none;
	color: #009944;
}

/* 2段目：高さ100px、背景#fbfbf8、文字18px、センタリング */
.header-row-2 {
    height: 100px;
    background-color: #fbfbf8;
    text-align: center;
	border-top: solid 1px #785c2e;
}
.header-row-2 .header-inner {
    flex-direction: column;
    justify-content: center;
}
/* h3自体の余白などをリセット */
.header-inner h3 {
    margin: 0;
    padding: 0;
    line-height: 1;
}
/* ロゴ画像のサイズを固定 */
.header-inner h3 img {
    width: 340px;
    height: 60px;
    display: block; /* 下の余白を消すため */
    object-fit: contain; /* 枠内で比率を保つ */
}
/* リンクの装飾を消す */
.header-inner h3 a {
    display: inline-block;
    text-decoration: none;
}

/* 3段目：高さ70px、背景#fbfbf8、文字18px、カラー#785c2e、センタリング */
.header-row-3 {
    height: 70px;
    background-color: #fbfbf8;
	/* 親要素をFlexboxにして、中身を中央に寄せる */
    display: flex;
    justify-content: center;	
}
.header-row-3 .menu-list {
	display: flex; /* これを追加して横並びに */
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 50px;
	margin-top:10px;
}
/* 各リスト項目に左線を引く */
.header-row-3 .menu-list li {
    border-left: 1px dashed #785c2e;
    display: flex;
}
/* 一番右の項目だけ右線も引く（これで「左右」が囲まれる） */
.header-row-3 .menu-list li:last-child {
    border-right: 1px solid #dcdcdc;
}
/* aタグの調整（リンクエリアを広げる） */
.header-row-3 .menu-list li a {
    height: 50px;
    font-size: 17px;
    color: #785c2e;
    text-decoration: none;
    padding: 0 30px; /* 左右の余白を調整 */
    display: flex;
    align-items: center;
	white-space: nowrap; /* 文字の折り返しを防ぐ */
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif !important;
}

/* 3段目のアイコン画像設定 */
.header-row-3 .menu-list li a::before {
    content: "";
    display: inline-block;
    width: 45px;  /* アイコン幅 */
    height: 45px; /* アイコン高さ */
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* アイコン画像のURL（実際のパスに書き換えてください） */
.icon-item1::before {
    background-image: url('https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/menu_1.svg'); 
}
.icon-item2::before {
    background-image: url('https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/menu_2.svg'); 
}
.icon-item3::before {
    background-image: url('https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/menu_3.svg'); 
}
.icon-item4::before {
    background-image: url('https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/menu_4.svg'); 
}
.icon-item5::before {
    background-image: url('https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/menu_5.svg'); 
}

/* 4段目：高さ16px*/
.header-row-4 {
    height: 16px;
	width: 100%;
	background-image: url('https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/menu_line.png');
	/* 画像の「高さ」を親要素の16pxに合わせ、横幅は比率を維持して自動（auto）にする */
    background-size: auto 16px; 
    background-repeat: repeat-x;
    background-position: left center;
}


/* ----------- フッター マージン・ロゴ・snsの位置調整 ----------- */
.footer-bottom{
	padding-bottom: 20px;
}
.footer-bottom-logo{
	padding-bottom: 20px;
}
/* SNS画像エリア */
#custom_html-2,
#custom_html-3{
	margin-bottom: 0; /* sns下マージン */
}
.footer-sns-area {
  display: flex;
  justify-content: center; /* 横方向の中央寄せ */
  gap: 25px;               /* 画像同士の間隔を20pxに設定 */
  margin: 20px 0 0;          /* 上下の余白（適宜調整してください） */
}
/* 画像自体のサイズ指定 */
.footer-sns-area img {
  width: 30px;             /* 横幅30px */
  height: auto;
  display: block;          /* 余計な隙間を消す */
}
/* マウスを乗せた時に少し薄くする演出（お好みで） */
.footer-sns-area a:hover {
  opacity: 0.7;
}
.copyright{
	font-size: 12px;
}
.navi-footer-in a{
	font-size: 12px;
}

/* スマホ対応 */
@media (max-width: 768px) {
#navi-footer {
	display: none; /* フッターメニュー非表示 */
	}
.footer-bottom-logo{
	padding-bottom: 0px;
	}
.logo-image img {
	max-width:200px; /* ロゴサイズ */
	height: 39px;
	}	
}

/* ----------- モバイル　ロゴ+メニューサイズ ----------- */

/* --- 元々のカスタマイズ：ロゴやボタンの見た目 --- */
.logo-menu-button img {
    max-height: 40px;
}
/* サイドバーボタンとシェアボタンを非表示 */
.mobile-menu-buttons .sidebar-menu-button,
.mobile-footer-menu-buttons .share-menu-button {
    display: none !important;
}
/* ハンバーガーメニューのサイズ */
.mobile-menu-buttons .menu-icon .fa-bars {
    font-size: 30px;
}



/************************************
** TOPページ
************************************/
/* ------------------ TOPページ背景色変更 ------------------ */
.page-id-149 #content {
    background-color: #fff; /* ページID */
}
/* Cocoonのメインコンテンツエリアの背景も変えたい場合 */
.page-id-149 #main {
    background-color: #fff;
}
/* ------------------ 外枠：横幅いっぱい ------------------ */
.full-width-section_obi{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-position: center;
    padding: 10px 0; /* 上下の余白 */
	background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/top_obi.png");
	background-repeat: repeat;
  	background-size: auto;     /* 原寸サイズ（デフォルト） */
	padding-bottom: 1.5em;
	letter-spacing: .07em;
}
.full-width-section_obi .obi_ti{
	font-size: 18px;
	font-weight: 500;
	color: #009944;
	text-align: center;
	line-height: 1.5em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
.full-width-section_1,
.full-width-section_2{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-size: cover;
    background-position: center;
    padding: 35px 0; /* 上下の余白 */
}
.full-width-section_1{
	background-color: #fbfbf8;
}
.full-width-section_2 {
	background-color: #f2faf6;
}
/* 内枠：1000pxに制限して中央寄せ */
.inner-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px; /* スマホ時の左右余白 */
    box-sizing: border-box;
}
/* Cocoonのメインエリアの余白を消してフル幅を許容する（固定ページのみ） */
.page .entry-content {
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 767px) {
.full-width-section_obi {
	padding-bottom: 0.8em;
	letter-spacing: .0.3em;
	font-size: 14px;
	line-height: 1.5em;
	}
.full-width-section_1,
.full-width-section_2{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-size: cover;
    background-position: center;
    padding: 20px 0; /* 上下の余白 */
	}	
}


/* PC用スライダー：スマホ（768px未満）隠す */
@media screen and (max-width: 767px) {
    div#n2-ss-3-placeholder, 
    div#n2-ss-3 {
        display: none !important;
    }
}

/* スマホ用スライダー：PC（768px以上）隠す */
@media screen and (min-width: 768px) {
    div#n2-ss-4-placeholder, 
    div#n2-ss-4 {
        display: none !important;
    }
}


/* TOP タイトルicon+テキスト */
.top_ti_area{
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	color: #666;
	line-height: 1.5em;
}
.top_ti_area img{
	height: 100px;
	width: auto;
}
.top_ti_area .top_area_w100 img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 767px) {
.top_ti_area img{
	height: 75px;
	width: auto;
	}
}
/* TOPショップ情報 画像ボタン（ショップ情報カテゴリーに記入） */

/* 動画　幅100%*/
.full-width-video {
    position: relative;
    width: 100%;            /* 1000pxの中で100% */
    /*padding-top: 56.25%;     16:9の比率を維持  ダブりで消す */
    margin-top: 20px;       /* 上のテキストとの隙間（お好みで） */
}
.full-width-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
}
.video-container {
    max-width: 100% !important; /* Cocoonの自動ビデオコンテナの幅制限を解除640px */
    width: 100% !important;
}

/* ------------- 固定ページ内のショートコードでもお知らせタイトルのデザインを維持する -------------- */
.news-list-container .news-title {
    background: none !important;      /* 背景を消す */
    border: none !important;          /* 枠線や左の線を消す */
    padding: 0 !important;            /* 余計な余白を消す */
    margin: 0 !important;             /* 余白リセット */
    color: #785c2e !important;        /* 指定の緑色 */
    font-size: 14px !important;     /* 文字サイズ */
    font-weight: normal !important;
    line-height: 1.4 !important;
    text-align: left !important;      /* 左寄せ */
}
/* 前後の装飾（疑似要素）が出ている場合の消去 */
.news-list-container .news-title::before,
.news-list-container .news-title::after {
    content: none !important;
}

/* -------------- top_map ------------- */
.top_map {
	flex-basis: 100%;
	border: solid 1px #ccc;
	margin-top: 3rem;
}
.top_map iframe {
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
.top_map {
	flex-basis: 100%;
	border: solid 1px #ccc;
	margin-top: 1.5rem;
	}
.top_map iframe {
  vertical-align: bottom;
	}
}

/* -------------- ボタン ------------- */
.btn_g_01 {
	display: inline-block;
	padding: 0.3em 1em;
	text-decoration: none;
	color: #009944;
	border: solid 1px #009944;
	transition: .4s;
	margin-top: 1em;
	background-color: #fff;
}
.btn_g_01:hover {
	background: #33ad69;
	color: white;
}

/************************************
** レイアウト変更
************************************/
/* --------------header直下の帯　親カテゴリーに設定--------------*/
/* 帯のベース設定 */
/* ヘッダー下の帯（リピート設定） */
.custom-header-band {
  width: 100%;
  height: 120px;
  /* 背景画像の設定 */
  background-repeat: repeat-x;    /* 横方向にのみ繰り返す */
  background-position: left center; /* 左端から開始し、上下は中央 */
  background-size: auto 120px;     /* 高さを帯の137pxに合わせ、横は画像本来の比率を維持 */  
  /* ロゴ（または文字）を中央に配置する設定 */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ロゴエリアの設定 */
.custom-band-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* 親要素の幅 */
}
/* 画像の設定 */
.custom-band-logo img {
  /* SVGには必ず高さを指定してください */
  height: 70px; 
  width: auto; /* アスペクト比を維持 */
  /* SVGがくっきり見えるようにする設定 */
  image-rendering: -webkit-optimize-contrast; 
}
/* 画像のアクション */
.custom-band-logo img {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


@media screen and (max-width: 767px) {
	.custom-header-band {
		width: 100%;
  		height: 80px;
		/* 背景画像の設定 */
		background-repeat: repeat-x;    /* 横方向にのみ繰り返す */
		background-position: left center; /* 左端から開始し、上下は中央 */
		background-size: auto 80px;     /* 高さを帯の137pxに合わせ、横は画像本来の比率を維持 */  
		/* ロゴ（または文字）を中央に配置する設定 */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	/* ロゴエリアの設定 */
	.custom-band-logo {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%; /* 親要素の幅 */
	}
	/* 画像の設定 */
	.custom-band-logo img {
		/* SVGには必ず高さを指定してください */
		height: 60px; 
		width: auto; /* アスペクト比を維持 */
		/* SVGがくっきり見えるようにする設定 */
		image-rendering: -webkit-optimize-contrast; 
	}
}



/************************************
** お知らせページ
************************************/
/* -------------- NEWS　お知らせ一覧専用デザイン --------------*/
/*  お知らせ一覧：4列カードデザインへの書き換え */
.news-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 1.3%; /* カード間の隙間 */
    margin-top: 20px;
}
/* 1枚のカードの設定 */
.news-item {
    width: 24%; /* PCで4列 */
    background-color: #fff;
    padding: 15px !important;
    border-radius: 8px;
    border: 1px solid #eee;
    list-style: none;
    box-sizing: border-box;
    display: flex;
}
/* リンクを縦並びのボックスに変更 */
.news-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
}
/* 写真の設定（一行目） */
.news-thumbnail {
    width: 100% !important;
    flex: 0 0 auto !important; /* 横幅固定を解除 */
    margin-right: 0 !important;
    margin-bottom: 12px;       /* 写真下の余白 */
}
.news-thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;       /* 他のカードと比率を合わせる */
    object-fit: cover;
    border-radius: 4px;
}
/* テキスト部分の設定 */
.news-content {
    flex: 1;
}
/* 日付の設定（二行目） */
.news-date {
    display: block;
    font-size: 0.8em;
    color: #888;
    margin-bottom: 5px;
    margin-right: 0;
}
/* タイトルの設定（三行目） */
.news-title {
    display: block;
    font-size: 1.05em;
    color: #785c2e;
    font-weight: normal;
    margin: 0;
    line-height: 1.4;
	font-size: 14px;
}
/* 抜粋を非表示にする場合（不要なら） */
.news-excerpt {
    display: none; 
}
/* ----- 日付とラベルを横並びにする ----- */
/* 日付とラベルを囲むボックス */
.news-meta-box {
    display: flex;         /* 横並びにする */
    align-items: center;   /* 上下の中央を揃える */
    gap: 8px;              /* 日付とラベルの間隔 */
    margin-bottom: 8px;    /* 下（タイトル）との余白 */
    flex-wrap: wrap;       /* 幅が狭い時は折り返す */
}
/* 日付のスタイル（既存のものを微調整） */
.news-date {
    font-size: 0.8em;
    color: #888;
    margin-bottom: 0 !important; /* 横並びにするため下余白を消す */
}
/* ラベルのスタイル */
.news-label {
    display: inline-block;
    background-color: #009944; /* 緑色 */
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px 3px;
    border-radius: 3px;
    line-height: 1;
    white-space: nowrap;      /* ラベル内で改行させない */
}
/* タイトルとのバランス調整 */
.news-title {
    display: block;
    clear: both;
}
/* ------ 二重になったmainの余白を打ち消す ------ */
#main #main {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* --- タブレット：3列 --- */
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .news-item {
        width: 32%;
    }
}
/* ------ スマホ：2列または1列 ------ */
/* スマホ：2列表示の最適化 */
@media screen and (max-width: 767px) {
    /* コンテナ自体の左右余白を削って横幅を広げる */
    .news-list-container {
        gap: 8px 2%; /* 隙間を10pxから8pxに微減 */
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .news-item {
        /* (100% - 隙間2%) / 2枚 = 49% */
        width: 49% !important; 
        /* 内側の余白を10pxからさらに絞って中身を広くする */
        padding: 8px !important; 
        border-radius: 5px; /* 小さいカードに合わせて角丸も少し控えめに */
    }
    .news-thumbnail {
        margin-bottom: 8px; /* 写真下の隙間も詰める */
    }
    .news-meta-box {
        gap: 4px; /* 日付とラベルの間隔を詰める */
        margin-bottom: 5px;
    }
    .news-date {
        font-size: 0.7em; /* 文字を少し小さく */
    }
    .news-label {
        font-size: 9px;   /* ラベルも最小限に */
        padding: 1px 4px;
    }
    .news-title {
        font-size: 0.85em; /* タイトルが2列でも入りやすいサイズに */
        line-height: 1.3;
    }
	/* 二重になったmainスマホでのさらなる最適化 */
    .post-type-archive-news .main {
        padding-left: 10px !important;  /* Cocoon標準より少し狭くする */
        padding-right: 10px !important;
    }
}
/* 一覧（エントリーカード）の画像をシャープにする */
.entry-card-thumb img {
  image-rendering: -webkit-optimize-contrast; /* コントラストを強調してボケを消す */
  image-rendering: crisp-edges;
  object-fit: cover;
  width: 100% !important;
  height: auto !important;
}
/* 縦型カードの画像エリアが引き伸ばされないように高さを固定 */
.ect-vertical-card-3-wrap .entry-card-thumb {
  aspect-ratio: 16 / 9; /* 比率を固定して無理な拡大を防ぐ */
  background-color: #f0f0f0;
}

/* ------- お知らせページの幅 ------- */
/* カスタム投稿 news の詳細ページの幅を制限する */
.single-news #main {
	max-width: 900px;  /* ここで幅を調整（例: 800px） */
	margin-left: auto;
	margin-right: auto;
	float: none;       /* サイドバーがない場合のレイアウト崩れ防止 */
}
/* 記事内の余白も調整したい場合（必要に応じて） */
.single-news .entry-content {
	padding-left: 0;
	padding-right: 0;
}

/************************************
** 商店街について
************************************/
/* ----- 駅 ----- */
.about_column_1 {
  display: flex;
  gap: 25px;           /* 写真とテキストの間の余白 */
  width: 100%;
}
/* PC用の設定（左30% / 右 自由） */
.about_column_1-img {
  flex: 0 0 50%; /* 幅を30%に固定 */
}
.about_column_1-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about_column_1-text {
  flex: 1; /* 残りの幅をすべて使う */
}
/* ----- 牛めし松屋 ----- */
/* ベースの箱 */
.about_column_2 {
  display: flex;
  gap: 20px;           /* 写真とテキストの間の余白 */
  width: 70%;
}
/* PC用の設定（左40% / 右 自由） */
.about_column_2-img {
  flex: 0 0 40%; /* 幅を40%に固定 */
}
.about_column_2-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about_column_2-text {
  flex: 1; /* 残りの幅をすべて使う */
}
/* --- 4通りイラスト --- */
.about_img_w1{
	width: 80%;
	margin: 0 auto;
}
.about_img_w1 img{
	width: 100%;
	padding: 2em 0;
}
/* スマホ用の設定（画面幅768px以下） */
@media (max-width: 768px) {
	.about_column_1 {
		flex-direction: column; /* 縦並びに変更 */
		text-align: center;     /* テキストを中央寄せ */
		width: 100%; 
	}
	.about_column_1-img {
		width: 90%;            /* 横幅を80%に縮小 */
		margin: 0 auto;        /* 中央に配置 */
	}
	.about_column_1-text {
		width: 100%;
		text-align: left;
	}
	.about_column_2 {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	.about_column_2-img {
		width: 80%;            /* 横幅を80%に縮小 */
		margin: 0 auto;        /* 中央に配置 */
	}
	/* --- 4通りイラスト --- */
	.about_img_w1{
		width: 100%;
	}
	.about_img_w1 img{
		width: 100%;
		padding: 0em 0 1em;
	}
}

/* --- イベント テキスト・写真 --- */
.about_event_ti {
	color: #009944;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0em;
}
.about_event {
	display: flex;        /* Flexboxを有効化 */
	flex-wrap: wrap;      /* 折り返しを許可（これで2行になる） */
	gap: 10px;            /* 写真の間の余白（縦・横） */
	justify-content: center; /* 必要に応じて、中央寄せ */
	margin: 0 auto;
	width: 90%; 
}
.about_event-item {
  /* 親の幅の半分から、gapの分を引いて計算 */
	width: calc(50% - 10px / 2);
	box-sizing: border-box; /* パディングを含めた幅計算 */
	margin-bottom: 2em;
}
.about_event-item img {
	width: 90%;          /* 親要素(.photo-item)の幅いっぱいに画像を表示 */
	height: auto;         /* 比率を保って高さを自動調整 */
	vertical-align: bottom; /* 下部の余計な隙間を消す */
	text-align: center;
}
.about_event-item span {
	color: #009944;
	font-size: 14px;
	text-align: center;
	display: block;
	letter-spacing: 0em;
}
@media (max-width: 768px) {
	.about_event {
		display: flex;        /* Flexboxを有効化 */
		flex-wrap: wrap;      /* 折り返しを許可（これで2行になる） */
		gap: 10px;            /* 写真の間の余白（縦・横） */
		justify-content: center; /* 必要に応じて、中央寄せ */
		margin: 0 auto;
		width: 100%; 
	}
	.about_event-item {
		/* 親の幅の半分から、gapの分を引いて計算 */
		width: calc(50% - 10px / 2);
		box-sizing: border-box; /* パディングを含めた幅計算 */
		margin-bottom: 1em;
	}
	.about_event-item img {
		width: 100%;          /* 親要素(.photo-item)の幅いっぱいに画像を表示 */
		height: auto;         /* 比率を保って高さを自動調整 */
		vertical-align: bottom; /* 下部の余計な隙間を消す */
		
	}
}

/* --- 歴史写真 --- */
.about_photo-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;    /* 枠同士の隙間 */
}
.item1 {
  width: calc(13% - 7px); 
}
.item2 {
  width: calc(28% - 3px);
}
/* 2行目・3行目：100% */
.item3, .item4 {
  width: 28%;
}
.photo-item img {
	width: 100%;
	height:auto; 
	display: block;
}
@media (max-width: 768px) {
.about_photo-container {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 10px;       /* アイテム間の隙間 */
}
/* 1行目：30% と 70% */
/* gapがある場合、30%から「隙間の数 × 隙間の幅 / 要素数」を引くと完璧です */
.item1 {
  width: calc(30% - 7px); 
}
.item2 {
  width: calc(70% - 3px);
}
/* 2行目・3行目：100% */
.item3, .item4 {
  width: 100%;
}
}



/************************************
** 江古田情報
************************************/
.ekoda_column_1 {
  display: flex;
  gap: 25px;           /* 写真とテキストの間の余白 */
  width: 100%;
}
/* （左30% / 右 自由） */
.ekoda_column_1-img {
  flex: 0 0 40%; /* 幅を30%に固定 */
}
.ekoda_column_1-img img {
  width: 100%;
  height: auto;
  display: block;
}
.ekoda_column_1-text {
  flex: 1; /* 残りの幅をすべて使う */
}
/* 江古田の歴史*/
.ekoda_column_2 {
  display: flex;
  gap: 25px;           /* 写真とテキストの間の余白 */
  width: 100%;
}
/* PC用の設定（左30% / 右 自由） */
.ekoda_column_2-img {
  flex: 0 0 30%; /* 幅を30%に固定 */
}
.ekoda_column_2-img img {
  width: 100%;
  height: auto;
  display: block;
}
.ekoda_column_2-text {
  flex: 1; /* 残りの幅をすべて使う */
}
/* 画像3×1 */
.ekoda_column_3 {
  display: flex;
  gap: 25px;           /* 写真とテキストの間の余白 */
  width: 100%;
}
.ekoda_column_3 img {
  width: 100%;
  height: auto;
  display: block;
}
.ekoda_column_3 span {
  width: 100%;
  display: block;
	font-size: 14px;
	color: #555;
}
.ekoda_img_1{
	width: 80%;	/* 3駅 */
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.ekoda_column_1 {
		display: flex;
		flex-direction: column;
		gap: 0px;           /* 写真とテキストの間の余白 */
		width: 100%;
	}
	/* （左30% / 右 自由） */
	.ekoda_column_1-img {
		flex: 0 0 100%; /* 幅を30%に固定 */
	}
	.ekoda_column_1-img img {
		height: auto;
		display: block;
	}
	.ekoda_column_1-text {
		flex: 1; /* 残りの幅をすべて使う */
	}
	.ekoda_img_1{
		width: 100%;
		margin: 0 auto;
	}
	/* --- 江古田の歴史 --- */
	.ekoda_column_2 {
		display: flex;
		flex-direction: column;
		gap: 0px;           /* 写真とテキストの間の余白 */
		width: 100%;
	}
	.ekoda_column_2-img {
		flex: 0 0 100%; /* 幅を30%に固定 */
	}
	.ekoda_column_2-img img {
		width: 100%;
		height: auto;
		display: block;
	}
	.ekoda_column_2-text {
		flex: 1; /* 残りの幅をすべて使う */
	}
	/* 画像3×1 */
	.ekoda_column_3 {
		display: flex;
		flex-direction: column;
		justify-content: center; /* 水平中央 */
		gap: 0px;           /* 写真とテキストの間の余白 */
		width: 100%;
		margin-bottom: 1em;
	}
	.ekoda_column_3 img {
		width: 90%;
		height: auto;
		display: block;
		margin: 0 auto;
	}
	.ekoda_column_3 span {
		width: 90%;
		display: block;
		font-size: 12px;
		color: #555;
		margin: 0 auto;
		padding-bottom: 1em;
	}
}


/************************************
** ショップ情報
************************************/
/* ------------------- ショップ情報関連のタイトルを非表示 -------------------*/
/* カテゴリーIDが 5 のページだけタイトルを消す */
.category-6 .archive-title,
.category-7 .archive-title,
.category-8 .archive-title,
.category-9 .archive-title,
.category-10 .archive-title,
.category-11 .archive-title,
.category-12 .archive-title{
	display: none;
}

/* ------------------- ショップ情報　TOP　タイトル部 -------------------*/
.shop_ti_2{
	font-size: 20px;
	color: #444444;
}
.shop_ti_3{
	font-size: 18px;
	color: #785c2e;
	display: block;
}
@media screen and (max-width: 767px) {
	.shop_ti_2{
		font-size: 18px;
		line-height: 1.4em;
		color: #444444;
	}
	.shop_ti_3{
		font-size: 16px;
		line-height: 1.3em;
		color: #785c2e;
		display: block;
		padding-top: 1em;
	}
}
/* コンテナ全体 */
.center-layout-container {
    display: flex;
    align-items: center; /* 上下中央揃え */
    width: 100%;
    margin: 1em 0;
}
/* 左右のカラム（比率 1） */
.col-side {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 中央のカラム（比率 2） */
.col-main {
    flex: 3; /* ここを2にすることで左右の3倍の幅になります */
    text-align: center;
    padding: 0 20px; /* 文字が画像に近すぎないよう余白を設定 */
}
/* 画像のレスポンシブ設定 */
.col-side img {
    max-width: 80%;
    height: auto;
    display: block;
}
/* スマホ表示の調整（画面が狭い場合） */
@media (max-width: 600px) {
    .main-title {
        font-size: 1.1rem; /* スマホでは文字を少し小さく */
    }
	.col-side {
        display: none;
    }
    /* 中央のカラムを横幅いっぱいにする */
    .col-main {
        flex: 100%;      /* 幅を100%に広げる */
        padding: 0 10px; /* 必要に応じてスマホ用の余白に調整 */
    }
    /* コンテナのflex解除（念のため） */
    .center-layout-container {
        display: block;  /* 縦並びのブロック要素に変更 */
    }

}


/* ============ ショップ情報　一覧　PC・タブレット：縦型カードを4列に、2列指定。
	※「抜粋」を画像の下に配置、ライン、ラベル指定
	固定ページ「ショップ情報」ページ下、「カスタムcss」に記述！！
============ */


/* -------------- ショップ情報カテゴリー　画像リンクボタン（テンプレート） --------------*/
.custom-button-container,
.custom-button-container_top{
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 8px; /* ボタン同士の隙間 */
    width: 100%; 
    max-width: 1100px;
    margin: 20px auto;
}
.custom-button-container_top{
    gap: 25px; /* ボタン同士の隙間 */
}
@media screen and (max-width: 767px) {
	.custom-button-container,
	.custom-button-container_top{
   		display: flex;
		flex-wrap: wrap; 
		justify-content: center;
		gap: 8px; /* ボタン同士の隙間 */
		width: 100%; 
		max-width: 1100px;
		margin: 10px auto;
	}
}
.nav-btn,
.nav-btn_top{
    display: block;
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;   
    /* 重要：画像サイズ 608:405 ≒ 3:2 の比率に設定 */
    aspect-ratio: 3 / 2; 
	border-radius: 10px;
}
.nav-btn:hover,
.nav-btn_top:hover{
    transform: translateY(-3px); /* 3px上に動く */
	filter: brightness(115%); /* 115%の明るさに（暗くしたいなら90%） */
    box-shadow: 0 3px 10px rgba(0,0,0,0.2); /* 影をつけて浮遊感を出す */
    transition: all 0.3s ease; /* 動きを滑らかにする */
}
/* 「現在地ではない」ボタンにだけホバーを適用
.nav-btn:not([class*="page-id-"]):hover {
    transform: translateY(-3px);
    transition: 0.3s;
} */
/* --- 通常時の画像指定（6枚分） --- */
.btn-1 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_1.jpg"); }
.btn-2 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_2.jpg"); }
.btn-3 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_3.jpg"); }
.btn-4 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_4.jpg"); }
.btn-5 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_5.jpg"); }
.btn-6 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_6.jpg"); }
/* --- 現在地のボタン画像差し替え 各ページのIDに合わせて設定 --- */
.category-8 .btn-1 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_1_2.jpg"); }
.category-9 .btn-2 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_2_2.jpg"); }
.category-7 .btn-3 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_3_2.jpg"); }
.category-11 .btn-4 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_4_2.jpg"); }
.category-10 .btn-5 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_5_2.jpg"); }
.category-12 .btn-6 { background-image: url("https://ekoda-kitaguchi.com/wp-content/themes/cocoon-child-master/images/shop_ca_6_2.jpg"); }

/* --- PC用：1列に6個 --- */
@media screen and (min-width: 768px) {
    .nav-btn {
        /* (100% - 隙間8px × 5個) / 6 */
        width: calc((100% - 40px) / 6); 
    }
	.nav-btn_top {
        /* (90% - 隙間25px × 2個) / 3 */
        width: calc((90% - 50px) / 3); 
    }
}
/* --- スマホ用 --- */
@media screen and (max-width: 767px) {
    .nav-btn {
        /* (100% - 隙間8px × 2個) / 3 */
        width: calc((100% - 16px) / 3); 
    }
	.custom-button-container_top{
    	gap: 12px; /* ボタン同士の隙間 */
	}
	.nav-btn_top {
        /* (100% - 隙間12px × 1個) / 2 */
        width: calc((100% - 12px) / 2); 
    }
}

/* -------------- ショップ　カテゴリー 各ページ　ゴロとライン --------------*/
/* コンテナ全体のデザイン */
.logo-divider-container {
  display: flex;
  align-items: flex-end; /* 下揃えに指定 */
  width: 100%;
  gap: 10px;            /* ロゴと線の間の余白 */
	padding-top: 1em;
}
/* 左右のドット線 */
.dot-line {
  flex-grow: 1;         /* 左右いっぱいに広がる */
  height: 0;
  border-bottom: 2px dotted #785c2e; /* 1pxのドット線 */
  margin-bottom: 5px;   /* 線の位置を微調整したい場合に調整 */
}
/* ロゴの枠（130px x 50px） */
.logo-wrapper {
  flex-shrink: 0;       /* 枠が潰れないように固定 */
  width: 150px;
  height: 60px;
  display: flex;
  justify-content: center; /* ロゴを枠内の中央に（横） */
  align-items: flex-end;   /* ロゴを枠内の下側に（縦） */
}
/* ロゴ画像自体の指定 */
.logo-wrapper img {
  width: auto;          /* 幅は成り行き */
  height: 100%;         /* 高さを100%に固定 */
  display: block;
}
@media screen and (max-width: 480px) {
	.logo-wrapper {
		flex-shrink: 0;       /* 枠が潰れないように固定 */
		width: 150px;
		height: 40px;
		display: flex;
		justify-content: center; /* ロゴを枠内の中央に（横） */
		align-items: flex-end;   /* ロゴを枠内の下側に（縦） */
	}
}	
	
	
/* -------------- ショップ情報　各店舗レイアウト --------------*/
/* 全体コンテナ */
.shop-page-wrap {
	max-width: 1000px;
	margin: 0 auto;
	color: #333;
	padding-top: 2em;
}
@media screen and (max-width: 767px) {
	.shop-page-wrap {
		max-width: 1000px;
		margin: 0 auto;
		color: #333;
		padding-top: 0.5em;
	}
}	
	
/* ------ ショップタイトル枠 -------- */
.shop-header-container {
	display: flex;
	align-items: flex-start; /* （上揃え）に変更 */
	margin-bottom: 30px;
}
/* ロゴ画像 */
.shop-logo-area {
	flex: 0 0 130px; /* 縦幅を130pxで固定 */
	height: 50px;
}
.shop-logo-area img {
	width: 100%;
	height: auto;
	object-fit: contain; /* 画像の比率を維持 */
	vertical-align: top;
	display: block; /* 上揃えを確実にするため */
}
/* テキストエリア */
.shop-info-area {
	flex-grow: 1; /* 残りの幅をすべて使う */
	text-align: center; /* 中身を中央揃え */
}
/* 店名 */
.shop-name_1,
.shop-name_2,
.shop-name_3,
.shop-name_4,
.shop-name_5,
.shop-name_6{
	font-size: 30px !important;
	margin: 0 !important;
	padding: 0 0 8px 0;
	display: inline-block; /* 文字の幅に合わせて線を引く */
	width: 100%;
	padding-right: 130px;
}
.shop-name_1{
	border-bottom: 2px dotted #ff7449;
}
.shop-name_2{
	border-bottom: 2px dotted #e85298;
}
.shop-name_3{
	border-bottom: 2px dotted #009ad1;
}
.shop-name_4{
	border-bottom: 2px dotted #b268cf;
}
.shop-name_5{
	border-bottom: 2px dotted #005ead;
}
.shop-name_6{
	border-bottom: 2px dotted #8fc31f;
}
/* カテゴリ */
.shop-category_1,
.shop-category_2,
.shop-category_3,
.shop-category_4,
.shop-category_5,
.shop-category_6{
	font-size: 18px;
	margin-top: 3px;
	padding-right: 130px;	
}
.shop-category_1{
	color: #ff7449;
}
.shop-category_2{
	color: #e85298;
}
.shop-category_3{
	color: #009ad1;
}
.shop-category_4{
	color: #b268cf;
}
.shop-category_5{
	color: #005ead;
}
.shop-category_6{
	color: #8fc31f;
}
@media screen and (max-width: 768px) {
/* --- ショップタイトル枠 ----- */
	.shop-header-container {
		display: flex;
		flex-direction: column; /* スマホでは縦に並べる */
		align-items: center;    /* 中央寄せ */
		margin-bottom: 10px;
	}
	/* ロゴ画像 */
	.shop-logo-area {
		flex: 0 0 70px; /* 高さを70pxで固定 */
		height: 45px;
	}
	.shop-logo-area img {
		width:auto;
		height: 45px;
		object-fit: contain; /* 画像の比率を維持 */
		vertical-align: top;
		display: block; /* 上揃えを確実にするため */
	}
	/* テキストエリア */
	.shop-info-area {
		flex-grow: 1; /* 残りの幅をすべて使う */
		text-align: center; /* 中身を中央揃え */
		width: 100%;
	}
	/* 店名 */
	.shop-name_1,
	.shop-name_2,
	.shop-name_3,
	.shop-name_4,
	.shop-name_5,
	.shop-name_6{
		font-size: 22px !important;
		margin: 0 !important;
		padding: 0 0 8px 0;
		display: inline-block; /* 文字の幅に合わせて線を引く */
		width: 100%;
		padding-right: 0 !important;
	}
	/* カテゴリ */
	.shop-category_1,
	.shop-category_2,
	.shop-category_3,
	.shop-category_4,
	.shop-category_5,
	.shop-category_6{
		font-size: 16px;
		margin-top: 3px;
		padding-right: 0px;
	}
}

/* --- ショップ-テキスト ----- */
.section-2 {
	text-align: center;
	margin-bottom: 50px;
}
.section-2 h2{
	background-color:transparent !important;	
	margin-bottom: 1em;
	font-weight: 500;
	font-size: 22px !important;
	color: #785c2e;
}
.shop-copy1 {
	margin-top: 18px;
	line-height: 1.8;
	font-size: 18px !important;	
	text-align: left;
	letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
	.section-2 {
		text-align: center;
		margin-bottom: 50px;
	}
	.section-2 h2{
		background-color:transparent !important;	
		margin-bottom: 0.5em;
		font-weight: 500;
		font-size: 18px !important;
		color: #785c2e;
		line-height: 1.5em;
	}
	.shop-copy1 {
		margin-top: 0px;
		line-height: 1.8;
		font-size: 16px !important;	
		text-align: left;
		letter-spacing: .08em;
	}
}	
	
/* --- ショップ-2カラム設定 ----- */
.column-container {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}
.column-left, .column-right {
	flex: 1;
}
.column-left img {
	width: 100%;
	height: auto;
}
.side-img {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
	display: block;
}
@media (max-width: 834px) {
	.column-container {
		display: flex;
		gap: 20px;
		align-items: flex-start;
	}
}
@media (max-width: 480px) {
	.column-container {
		display: flex;
		gap: 0px;
		align-items: flex-start;
		flex-direction: column;
	}
	.column-left,
	.column-right {
		width: 100%;
	}
}

/* テーブル全体のスタイル */
table.shop-data-table {
	width: 100%;
	border: 1px solid #33ad69;      /* 外枠の太さと色 */
	border-radius: 8px;            /* 角をアールにする */
	border-spacing: 0;
	border-collapse: separate;      /* 角丸を有効にするために必要 */
	overflow: hidden;               /* 中の背景色が角からはみ出ないようにする */
}
/* 共通のセル設定（縦線を消し、余白を調整） */
table.shop-data-table th,
table.shop-data-table td {
	padding: 8px 15px;
	border-left: none;              /* 縦線を消す */
	border-right: none;             /* 縦線を消す */
	border-bottom: 1px dotted #33ad69; /* 横線はドット1px */
}
/* 最後の行のドット線を消す（外枠と重ならないように） */
table.shop-data-table tr:last-child th,
table.shop-data-table tr:last-child td {
	border-bottom: none;
}
/* 1行目の設定 (thead内のth) */
table.shop-data-table thead th {
	background-color: #33ad69;      /* 背景色 */
	color: #fff;                    /* 文字カラー */
	font-size: 20px;                /* 文字サイズ */
	font-weight: normal;
	text-align: center;             /* センター配置 */
	border-bottom: none;            /* 見出し下の線を消す（任意） */
}
/* 2行目以降の見出し (tbody内のth) */
table.shop-data-table tbody th {
	color: #009944;                 /* 文字カラー */
	background-color: #fff;         /* 背景色 */
	text-align: left;               /* 左寄せ */
	width: 7em;                     /* 項目の幅（お好みで調整） */
	font-weight: normal;
}
/* データセル (td) */
table.shop-data-table td {
	text-align: left;               /* 左寄せ */
	font-size: 15px;                /* 文字サイズ */
	background-color: #fff;         /* 背景色 */
}
/* sns文字 */
table.shop-data-table td .ft_sns {
	display: inline-block;
	font-size: 12px;
	color: #785c2e;
	line-height: 1em;
}
.column-left figure {
	margin-bottom: 1.5em; /* 画像下マージン */
}
@media (max-width: 480px) {
	/* 共通のセル設定（縦線を消し、余白を調整） */
	table.shop-data-table th,
	table.shop-data-table td {
		padding: 8px 10px 8px 15px;
		border-left: none;              /* 縦線を消す */
		border-right: none;             /* 縦線を消す */
		border-bottom: 1px dotted #33ad69;/* 横線はドット1px */
	}
	/* 2行目以降の見出し (tbody内のth) */
	table.shop-data-table tbody th {
		color: #009944;                 /* 文字カラー */
		background-color: #fff;         /* 背景色 */
		text-align: left;               /* 左寄せ */
		width: 6em;                     /* 項目の幅（お好みで調整） */
		font-weight: normal;
	}
}	


@media (max-width: 768px) {
	.main-title {
		font-size: 28px !important;
	}
	.shop-name {
		font-size: 20px !important;
	}
}


/* --- Googleマップを囲む枠のスタイル --- */
.o_ma_map{
	margin-top: 40px; /* mapアイコン */
}
.google-map-frame {
  width: 100%;               /* 基本は100%（スマホなど1000px以下の画面用） */
  max-width: 1000px;         /* 最大幅を1000pxに制限 */
  height: 500px;             /* 高さは150pxで固定 */
  margin: 0 auto 30px auto;  /* 「auto」で左右中央寄せに配置 */
  border: 1px solid #009944; /* テーブルと同じ緑色の枠線 */
  border-radius: 6px;       /* テーブルと同じ角丸 */
  overflow: hidden;          /* 地図が角からはみ出さないようにする */
  line-height: 0;            /* 下部の不要な隙間を解消 */
  margin-bottom: 20px;
  margin-top: 1em;
}
/* 中のiframe（地図本体）のサイズ設定 */
.google-map-frame iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}



/************************************
** ショップMAP
************************************/
/* カテゴリー　カラードット */
.shop_map_1{
	margin: 0 auto;
	text-align: center;
}
.shop_map_1 img{
	width: 60%;

}
@media screen and (max-width: 768px){
	.shop_map_1 img{
		width: 95%;
	}
}
/* ----- map_ol----- */	
.map_ol {
	width: 96%;
	padding: 20px;
	margin: 1.5em auto;
	box-sizing: border-box;
}
.map_ol ol{
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.map_ol li {
	width: 21%;
	margin-top: 0.8em !important;
	margin-bottom: 0.8em !important;
	margin-left: 50px;
	box-sizing: border-box;
	display: block;
	position: relative;
	border-bottom: dotted 1px #999;
}
.map_ol li span{
	list-style: none;
	display: inline-block;
	width: 33px;
	height: 33px;
	margin: 3px 10px 0 0;
	padding-top: 1px;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	box-sizing: border-box;
	position: absolute;
	top: -8px;
	left: -42px;
}
.map_c_1 span {
	background-color: #ff7449;
}
.map_c_2 span {
	background-color: #e85298;
}
.map_c_3 span {
	background-color: #009ad1;
}
.map_c_4 span {
	background-color: #b268cf;
}
.map_c_5 span {
	background-color: #005ead;
}
.map_c_6 span {
	background-color: #8fc31f;
}
.map_ol li a{
	color: #444;
	text-decoration: none;
}
.map_ol li a:hover{
	color: #00A8C6;
}
@media screen and (max-width: 767px) {
/* ----- map_ol----- */	
.map_ol {
	width: 96%;
	padding: 0;
	margin: 1em auto;
	box-sizing: border-box;
	}
.map_ol ol{
    display: flex;
	flex-wrap: wrap;
	margin-left: 1.5em;
	}
.map_ol li {
	width: 100%;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	margin-left: 50px;
	box-sizing: border-box;
	display: block;
	position: relative;
	border-bottom: dotted 1px #999;
	}
.map_ol li span{
	list-style: none;
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 5px 10px 0 0;
	padding-top: 1px;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	box-sizing: border-box;
	position: absolute;
	top: -8px;
	left: -42px;
	font-size: 14px;
	}
}


/************************************
** パンくず　（お知らせ個別ページ）非表示
************************************/
/* お知らせ個別ページ（single-news）のみパンくずリストを完全に隠す */
.single-news .breadcrumbs,
.single-news .breadcrumbs-container,
.single-news .breadcrumb {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/************************************
** 投稿記事の下　カテゴリー非表示
************************************/
/* すべての個別投稿ページで記事下のカテゴリー・タグエリアを非表示 */
.single .entry-categories-tags {
    display: none !important;
}
/************************************
** 記事ナビ（ポストナビ）非表示
************************************/
/* すべての投稿ページで下段の「前後の記事ナビ」を非表示 */
#pager-post-navi,
.post-navi {
    display: none !important;
}
/************************************
** 投稿　お知らせ一覧へ戻るボタン
************************************/
/* お知らせ一覧へ戻るボタンの装飾 */
.back-to-news {
    text-align: left;
    margin: 40px 0 0; /* 前後の余白 */
}
.btn-news-back {
	display: inline-block;
	padding: 0.3em 1em;
	text-decoration: none;
	color: #009944;
	border: solid 1px #009944;
	transition: .4s;
	margin-top: 1em;
	background-color: #fff;
	font-size: 13px;
}
.btn-news-back:hover {
	background: #33ad69;
	color: white;
}




/************************************
** contactform7
************************************/
/*ContactForm7カスタマイズ*/
table.CF7_table{
	width:80%;
	margin:0 auto;
	border: 3px solid #e5e5e5;
	font-size: 1rem;
}
table.CF7_table th{
	text-align: left;
	font-weight: normal;
	background-color: #f6f5f0;
}
table.CF7_table tr{
	border-top: 1px solid #e5e5e5;
	background-color: #fff;
}
table.CF7_table th p,
table.CF7_table tr p{
	margin-bottom: 0;
}
.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
	display:table;
}
/*入力欄*/
.CF7_table input, .CF7_table textarea {
	border: 1px solid #d8d8d8;
}
.CF7_table ::placeholder {
	color:#797979;
}
/*「必須」文字*/
.CF7_req{
	font-size:.8em;
	padding: 5px;
	background: #33ad69;/*緑*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}
/*「任意」文字*/
.CF7_unreq{
	font-size:.8em;
	padding: 5px;
	background: #bdbdbd;/*グレー*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}
/* タイトル列 */
@media screen and (min-width: 768px){
	.CF7_table th{
	width:30%;/*横幅*/
	background-color:#ebedf5;/*ブルーグレー*/
	}
}
/* レスポンシブ */
@media screen and (max-width: 768px){
	table.CF7_table{
	width:95%;
	}
	.CF7_table tr, .CF7_table td, .CF7_table th{
	display: block;
	width: 100%;
	line-height:2.5em;
	}
	.CF7_table th{
	background-color:#ebedf5;
	}
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#009944;/* オレンジ*/
	border:0;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	margin:0 auto;
}
.CF7_btn{
	text-align:center;
	margin-top:20px;
	width: 12em;
	margin: 0 auto;
}
.wpcf7-spinner{
	width:0;
	margin:0;
}




/************************************
** ベース
************************************/
.txt_c{
	text-align: center;
}
.txt_l{
	text-align:left;
}
.ma_t_1{
	margin-top: 1em;
}
.fc_1{
	color: #009944;
}
.fc_2{
	color: #785c2e;
}
/* 1・3・4normal・5・7bold・9*/
.fw_normal{
	font-weight: 400;
}
.fw_5{
	font-weight: 500;
}
.fw_7{
	font-weight: 700;
}
.fwb{
	font-weight: bold;
}
.fs_20{
	font-size: 20px;
}

@media screen and (max-width: 767px) {
.txt_l_sp{
	text-align:left;
	}
}


/*-------------------------------
	メディア　PC
----------------------------------*/
.pc_s {
	display: block;	
}
.sp_s{
	display: none;
}
/*--- 画面の横幅が767px以上 （メディア・クエリ（Media Queries））---*/
@media screen and (max-width: 767px) {
.pc_s {
	display: none;
	}
.sp_s {
	display: block;	
	}
}








