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

/************************************
** 基本設定（PC表示：1024px以上）
************************************/
.wrap {
width: 100%;
margin: 0 auto;
}

/************************************
** 共通コンテナ（全ページ幅統一：1000px）
** HOME・流れ・代表メッセージ・お問い合わせ・会社概要で共通使用
************************************/
.page-container{
  max-width:1000px;
  margin:0 auto;
  box-sizing:border-box;
}
@media (max-width:1023px){
  .page-container{
    padding:0 20px;
  }
}

#content{ 
	margin-top:-5px;
	margin-bottom: 0;
}
#content-in{margin:0 auto;background-color:#ffffff;}
#content::after{ display:none;}

#main{ padding:0;margin-bottom:0; border:none;}

/*　余白を設定する　*/
/* HOME */
.home .page .inner{
	max-width:1000px;
	margin:0 auto;
	padding:0 29px
}


/*投稿日を非表示にする*/
.page .post-date {
  display: none;
}

/*更新日を非表示にする*/
.page .post-update{
  display: none;
}

/*snsを非表示にする*/
.page .sns-follow,
.page .author-info{
    display: none;
}

/* ============================================================
   PC/タブレット/スマホ画像切り替え用共通クラス
   （現在はTOPのFVで fv-pc / fv-sp を使用。
     他ページで画像を出し分ける際にも使える汎用クラス）
   ============================================================ */
.pc-img { display: inline !important;}
.tab-img { display: none !important;}
.tab-smt { display: none !important;}
.smt-img { display: none !important;}

/************************************
** clearfix（会社概要ページで使用）
************************************/
.clearfix {
  *zoom: 1; /* IE6-7対応 */
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.cf::after {
  content: "";
  display: table;
  clear: both;
}

/************************************
** margin / padding（共通ユーティリティ）
************************************/
p:empty{ display:none;}
.mt10{ margin-top:10px;}
.mt30{ margin-top:30px!important;}
.mt50{ margin-top:50px;}
.mt100{ margin-top:100px!important;}
.mt-100{ margin-top:-100px!important;}


.mb0{ margin-bottom:0px!important;}
.mb15{ margin-bottom:15px;}
.mb30{ margin-bottom:30px!important;}
.mb40{ margin-bottom:40px!important;}
.mb50{ margin-bottom:50px!important;}
.mb100{ margin-bottom:100px!important;}


.mr0{margin-right:0!important;}
.mr10{margin-right:10px!important;}
.mr40{margin-right:40px!important;}

.ml80{margin-left:80px!important;}

.pt10{ padding-top:10px;}
.pt100{ padding-top:100px;}

.pb30{ padding-bottom:30px;}

/************************************
** Font（共通ユーティリティ・サイト全体で使用）
************************************/
.fss{font-size:60%;}
.fs{font-size:80%!important;}
.fm{font-size:120%;}
.fl{font-size:140%!important;}
.fll{font-size:180%;}
.fbig{ font-size:250%;}

.bold{ font-weight:bold; }
.uline{ text-decoration:underline;}
.line{ border-bottom:1px solid #a2a2a2; padding-bottom:7px;}
.marker-blue{
  background: linear-gradient(transparent 60%, #c2e5fb 60%);
  font-weight: bold;
  display: inline;
}
.marker-y {
    background: linear-gradient(transparent 30%, #fff871 30%, #fff871 85%, transparent 85%);
    display: inline;
    padding: 0 2px;
}
.marker-green {
  background-image: linear-gradient(
    transparent 65%,
    rgba(0, 150, 80, 0.25) 65%
  );
  background-repeat: no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.15em;
}

.marker-orange {
  background-image: linear-gradient(
    transparent 65%,
    rgba(255, 140, 26, 0.3) 65%
  );
  background-repeat: no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.1em;
}

.underline {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffffff;
}
.border-dotte{ border-bottom:4px dotted #c6c2b2; padding-bottom:5px;}


.red{ color:#e02051;}
.white{ color:#ffffff!important;}
.green{ color:#009b4a;}
.orange{color:#f18200!important;}
.blue{color:#0052a6;}
.yellow{color:#ffe55f;}

.mincho{font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;}

.center{ text-align:center!important;}
.right{ text-align:right!important;}
.left{ text-align:left!important;}


/* スマホの時だけ改行させるクラス*/
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}


/* ==== 見出し装飾スラッシュ（共通パーツ・TOPページで多数使用） ==== */
.deco-slash{
  position:relative;
  flex:0 0 auto;
  width:34px;
  height:26px;
}
.deco-slash::before,
.deco-slash::after{
  content:'';
  position:absolute;
  top:0;
  width:4px;
  height:100%;
  background:var(--slash-color, #2f6e58);
  border-radius:2px;
}
.deco-slash--left::before{ left:6px; transform:rotate(340deg); }
.deco-slash--left::after{ left:20px; transform:rotate(340deg); }
.deco-slash--right::before{ left:6px; transform:rotate(-340deg); }
.deco-slash--right::after{ left:20px; transform:rotate(-340deg); }

@media (max-width:768px){
  .deco-slash{
    width:20px;
    height:18px;
  }
}

/* ============================================================
   固定ページ h1（entry-title）：中央下線型
   ============================================================ */
.page:not(.home) h1.entry-title {
  box-sizing: border-box;
  max-width: 1100px;
  margin: 0 auto !important;
  padding: 40px 20px 40px !important;
  text-align: center;
  font-size: 32px !important;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  background: none !important;
  border-bottom: none !important;
}
.page:not(.home) h1.entry-title::before {
  content: attr(data-eyebrow);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #e8763c;
  margin-bottom: 10px;
}

.page:not(.home) h1.entry-title .entry-title-accent {
  color: #e8763c;
}
@media screen and (max-width: 768px) {
  .page:not(.home) h1.entry-title {
    font-size: 24px !important;
    padding: 30px 15px 6px !important;
  }
  .page:not(.home) h1.entry-title::before {
    font-size: 11px;
    margin-bottom: 8px;
  }
}


.article h2 {
  background-color: transparent!important;
}


.article h3,
.article h4{ border:none;padding:0;}
	
	

/************************************
** ヘッダー基本設定（全ページ共通）
************************************/
header { 
    margin: 0 auto 0 auto;
}

#header-in { 
    max-width: 1200px; 
    margin: 0 auto;
}

.header-container { 
    margin: 0 auto;
    background-color: #fff;
    position: relative;
height:80px;}

.logo { 
    position: absolute;
    top: 10px;
    text-align: left !important;
}

.logo img {
    max-height: 70px !important;
} 

.header-container-in .navi-in { 
    position: absolute;
    right: 20px;
    left: auto;
    top: 15px; 
}

.header-container-in.hlt-top-menu .navi-in .item-label { 
    font-size: 0.8em !important; 
    text-align: center;
	font-weight:bold;
	color:#444;
}

/************************************
** リストスタイル（共通）
************************************/
ul{ list-style:none;}

.listDisc li {
  position: relative;
  padding-left: 16px;
}

.listDisc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: #1a4471;
  border-radius: 50%;
}


/************************************
** table（会社概要ページの会社概要表で使用）
************************************/
.entry-content table.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 40px;
  font-size: 18px;
}

.entry-content table.info-table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #eee;
}

.entry-content table.info-table tr:nth-child(odd) {
  background-color: #fafafa;
}

.entry-content table.info-table th {
  width: 160px;
  padding: 16px 14px !important;
  text-align: left;
  font-weight: 700;
  color: #333;
  background: none !important;
  border: none !important;
  vertical-align: top;
}

.entry-content table.info-table td {
  padding: 16px 14px !important;
  color: #555;
  border: none !important;
  vertical-align: top;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .entry-content table.info-table,
  .entry-content table.info-table tbody,
  .entry-content table.info-table tr,
  .entry-content table.info-table th,
  .entry-content table.info-table td {
    display: block;
    width: 100% !important;
  }

  .entry-content table.info-table tr {
    padding: 12px 0;
  }

  .entry-content table.info-table th {
    padding: 0 0 6px !important;
    font-size: 16px;
  }

  .entry-content table.info-table td {
    padding: 0 !important;
    font-size: 16px;
  }
}

/************************************
** ヘッダーメニューの基本構造（全ページ共通）
************************************/
.menu-header {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu-header li {
    width: auto !important;
    min-width: 60px;
    height: 50px!important;
    text-align: center;
    line-height: 2 !important; 
padding:5px 10px 0 10px !important;
    position: relative;
	    display: flex;
    align-items: center;
	justify-content: center;

}


/************************************
** PCヘッダー：無料見積もり／LINEボタン
** ※menu-item-20（無料見積もり）/ menu-item-21（LINE相談）
************************************/
.menu-header #menu-item-20{
	width:auto!important;
	margin-left:10px;
	padding:0;
}
.menu-header #menu-item-20 a{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:6px;
	width:auto!important;
	height:40px!important;
	min-height:0;
	padding:0 18px 0 14px;
	white-space:nowrap;
	border-radius:10px;
	background-color:#ff9228;
	color:#fff!important;
	font-weight:bold;
	font-size:16px;
}
.menu-header #menu-item-20 a .item-label,
.menu-header #menu-item-20 a .caption-wrap,
.menu-header #menu-item-20 a .caption-wrap div {
    overflow: visible !important;
    text-overflow: unset !important;
    white-space: nowrap !important;
    width: auto !important;
    color: #fff !important;
}


.menu-header #menu-item-20 a::before{
	content:"";
	display:inline-block;
	width:18px;
	height:18px;
	background:url('images/icon-mail.png') no-repeat center/contain;
}


.menu-header #menu-item-21{
	width:auto!important;
	padding:0;
}
.menu-header #menu-item-21 a{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:6px;
	width:auto!important;
	height:40px!important;
	min-height:0;
	padding:0 18px 0 14px;
	white-space:nowrap;
	border-radius:10px;
	background-color:#06c755;
	color:#fff!important;
	font-weight:bold;
	font-size:16px;
}
.menu-header #menu-item-21 a .item-label,
.menu-header #menu-item-21 a .caption-wrap,
.menu-header #menu-item-21 a .caption-wrap div {
    overflow: visible !important;
    text-overflow: unset !important;
    white-space: nowrap !important;
    width: auto !important;
    color: #fff !important;
}

.menu-header #menu-item-21 a::before{
	content:"";
	display:inline-block;
	width:30px;
	height:30px;
	background:url('images/icon-line.png') no-repeat center/contain;
}


/************************************
** 固定ヘッダー（全ページ共通）
************************************/
.fixed-header { 
    height: 85px; 
    background-color: #ffffff !important;
    width: 100% !important;
}

.fixed-header .menu-header li {
    width: 85px;
}

.fixed-header #nav {
    background-color: #ffffff; 
    padding-bottom: 0 !important;
}

.fixed-header #navi .navi-in {
    position: absolute;
    right: 0;
    top: 15px;
	box-shadow: none;
    border: none;
}

.fixed-header .logo { 
    position: absolute;
    top: 10px;
    left: 0; 
}

.fixed-header .cl-slim .logo-header img { 
    max-height: 60px;
}

.fixed-header .menu-header .navi-in a {
    color: #012351; 
    background-color: transparent;
}

.fixed-header .menu-header li a:hover {
    opacity: 0.6;
} 

.fixed-header .h-submenu { 
    display: none;
}

.fixed-header .h-submenu img.pc-img { 
    max-width: 95%;
} 

.fixed-header .header-container-in.hlt-top-menu .h-submenu li { 
    padding-top: 10px;
}

.fixed-header .header-container-in.hlt-top-menu .h-submenu li::marker {
    display: none;
}

.fixed-header .header-container-in.hlt-top-menu .navi-in .item-label { 
    font-size: 11px; 
    color: #222; 
    font-weight: bold;
}

/************************************
** footer
************************************/
.footer{ margin-top:0;}
#navi-footer-in li a{ background-color:none;}

/************************************
** HOME（TOPページ）
************************************/
.home .article{ margin-bottom:0;}
.home .entry-content{ max-width:100%;}

.home section{ padding:0px 0 30px 0;}

.home #content{
	max-width:100%;
	margin:0 auto;
	padding:0;
}

.home .article-header{ display:none;}
.home .entry-content,
.home .entry-title{ margin-top:0!important;}


/*=========================
   お問い合わせボックス
========================== */
.estimate-cta{
  max-width:1000px;
  margin:0 auto;
  background:
#fef8f3;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
 border:2px solid 
#fdedde;
}

.estimate-cta__top{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding:26px 150px 26px 50px;
}

.estimate-cta__top::after{
  content:"";
  position:absolute;
  left:50px;
  right:50px;
  bottom:0;
  border-bottom:3px dotted #f4640f;
}


.estimate-cta__text{
  position:relative;
  z-index:1;
  width:100%;
}

.estimate-cta__lead{
  margin:0 0 8px!important;
  font-size:1.4rem;
  font-weight:700;
  color:#333;
  text-align:center;
}

.estimate-cta__headline{
  margin:0 0 16px!important;
  font-size:2.2rem;
  font-weight:800;
  color:
#f4640f;
  line-height:1.4;
  text-align:center;
}

.estimate-cta__headline .deco{
  color:
#f4640f;
  font-weight:800;
  margin:0 4px;
}

.estimate-cta__phone{
  display:flex;
  align-items:center;
  gap:10px;
}

.estimate-cta__icon{
  flex:0 0 auto;
  width:50px;
  height:50px;
  border-radius:50%;
  background:
#f4640f;
  display:flex;
  align-items:center;
  justify-content:center;
}

.estimate-cta__icon img{
  width:30px;
  height:30px;
  display:block;
  object-fit:contain;
}

.estimate-cta__label{
  flex:0 0 8.5em;
  font-size:1.2rem;
  font-weight:700;
  color:#333;
  white-space:nowrap;
}

.estimate-cta__number{
  font-size:2.4rem;
  font-weight:800;
  color:
#f4640f;
  text-decoration:none;
  letter-spacing:0.5px;
}

.estimate-cta__number--black{
  color:#222;
}

.estimate-cta__note{
  margin:0!important;
  font-size:1rem;
  color:#000;
  text-align:center;
}

.estimate-cta__character{
  position:absolute;
  right:70px;
  top:70px;
  width:150px;
  z-index:2;
}

.estimate-cta__character img{
  display:block;
  width:100%;
  height:auto;
}

.estimate-cta__buttons{
  display:flex;
  justify-content:center;
  gap:24px;
  padding:16px 20px 20px;
}

.estimate-cta__btn{
  flex:0 1 auto; 
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 22px; 
  border-radius:15px;
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
  line-height:1.35;
  box-shadow:0 2px 5px rgba(0,0,0,0.12);
  transition:opacity .2s ease;
}
.estimate-cta__btn:hover{
  opacity:0.85;
}

.estimate-cta__btn--line{
  background:
#00b900;
  color:#fff;
}

.estimate-cta__btn--mail{
  background:
#3a76bd;
  color:#fff;
}

.estimate-cta__btn-icon{
  flex:0 0 auto;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
}


.estimate-cta__btn-icon img{
  width:100%;
  height:auto;
  display:block;
}

.estimate-cta__btn-text{
  text-align:left;
}

.estimate-cta__btn-arrow{
  font-size:1.1rem;
  line-height:1;
}


/* ---------- レスポンシブ（タブレット：1024px〜769px） ---------- */
@media (max-width:1024px){
 .estimate-cta__character{
    right:20px;
    top:70px;
    width:120px;
  }
}


/* ---------- レスポンシブ（タブレット：601px〜768px） ---------- */
@media (max-width:768px){
  .estimate-cta__top{
    padding:24px 130px 24px 30px;
  }
  .estimate-cta__character{
    right:40px;
    top:70px;
    width:120px;
  }
  .estimate-cta__lead{
    font-size:1.2rem;
  }
  .estimate-cta__headline{
    font-size:1.6rem;
  }
  .estimate-cta__label{
    flex:0 0 7em;
    font-size:1.05rem;
  }
  .estimate-cta__number{
    font-size:1.8rem;
  }
}

/* ---------- レスポンシブ（スマホ） ---------- */
@media (max-width:600px){
  .estimate-cta__top{
    flex-direction:column;
    padding:20px 5px 130px;
  }
  .estimate-cta__character{
    right:10px;
    top:70%;
    width:110px;
  }
  .estimate-cta__number{
    font-size:1.3rem;
  }
  .estimate-cta__headline{
    font-size:1.1rem;
  }
  .estimate-cta__phone{
    flex-wrap:wrap;
    justify-content:center;
    text-align:center;
    margin-bottom:0;
  }
  .estimate-cta__label{
    flex:0 0 auto;
  }
  .estimate-cta__number{
    flex:0 0 100%;
    display:block;
    text-align:center;
    margin-top:6px;
    font-size:1.5rem;
  }

  .estimate-cta__buttons{
    flex-direction:column;
gap:0px!important;
  }
  .estimate-cta__btn{
    padding:14px;
  }
}


/************************************
**　固定ページ共通
************************************/
.entry-content{max-width:1100px; margin:0 auto;}

body:not(.home) .entry-content h2{ margin:0; padding:0;}

body:not(.home) .entry-content {
  padding: 0 20px !important;
  box-sizing: border-box;
}

.page:not(.home) .entry-content > * {
  margin-bottom:1.8em!important;
}

.page:not(.home) .entry-content > p:last-child {
  margin-bottom: 3em !important;
}

.alignright, 
.alignleft {
  float: right;
}
.alignleft{ float:left; }

@media screen and (max-width: 1023px) {
 .alignright, 
 .alignleft {
    float: none !important;
    display: block;
    margin: 10px auto;
  }
  
  img.alignright, 
  img.alignleft {
    display: block;
    margin: 10px auto;
  } 
}


/************************************
**　レスポンシブ対応 (1100px以下 - タブレット横向き)
************************************/
@media screen and (max-width: 1100px) {
.home .page .inner,
.page-id-237 .page .inner{
	width:100%;
	margin:0 auto;
	padding:0 10px;	
}
	
.page:not(.home) #main
.page-id-237 .page:not(.home) #main{
	width:100%;
	margin:0 auto;
}		
	
/************************************
** ヘッダー
************************************/
    #header-container-in { 
        width: 100%; 
        position: relative; 
        padding-top: 70px !important;
    }
    
    #header-container {
        padding-top: 5px;
        padding-bottom: 10px;
    }
    
    .logo {
        position: absolute;
        top: 0px;
        left: 0;
    }
	
    .fixed-header #navi .navi-in {
        position: absolute;
        left: 50px !important;
        top: 10px;
    }
    
    .fixed-header .header-container-in.hlt-top-menu .navi-in .item-label { 
        font-size: 0.8em !important;
    }
    
    .fixed-header .logo { 
        position: absolute;
        top: 10px;
        left: 0; 
    }
    
    .fixed-header .h-submenu {
        width: 340px;
        position: absolute;
        top: -10px;
        left: 750px;
        margin-top: 0 !important;
    }
    
    .fixed-header .h-submenu li { 
        max-width: 120px;
    }
}

/************************************
** タブレット表示（841px以上1023px以下）
************************************/
@media screen and (min-width: 841px) and (max-width: 1023px) {
	 .fixed-header .menu-header li {
        width: 70px!important;
        padding: 10px 2px 0 2px;
    }
    
    .fixed-header .menu-header li#menu-item-13 {
        width: 100px;
    }	
	
    .pc-img { display: none !important;}
    .tab-img { display: inline !important;}
    .tab-smt { display: inline !important;}
    .smt-img { display: none !important;}
}

/************************************
** ヘッダーメニュー：中間幅での折り返し防止（1024〜1300px）
************************************/
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  .menu-header {
    flex-wrap: nowrap;
  }
  .menu-header li {
    width: auto;
    min-width: 0;
    padding: 5px 8px 0 8px;
  }
  .header-container-in.hlt-top-menu .navi-in .item-label {
    font-size: 0.72em !important;
    white-space: nowrap;
  }
}

/********************************************************************
** レスポンシブ対応 (1023px以下 - タブレット縦向き・モバイル切り替え)
** ※Cocoon本体のモバイルメニュー切り替えタイミングに合わせて統一
*********************************************************************/

@media screen and (max-width: 1023px) {
	body{ background:none;}	
	
    #header-container {
        padding-top: 15px;
        padding-bottom: 0px;
        display: none;
    }
    
    .fixed-header #navi .navi-in {
        position: absolute;
        left: 230px !important;
        top: 10px;
    }
}

@media screen and (max-width: 1023px)  {

.pc-img { display: none !important;}
.tab-img { display: none !important;}
.tab-smt { display: inline !important;}
.smt-img { display: inline !important;}

.mobile-menu-buttons{ min-height:60px;}	
.mobile-menu-buttons .menu-caption{ display:none;}	
	
.mobile-menu-buttons .logo-menu-button {
position: absolute;
left: 0;
top: 7px;
width: 200px;
}	

.mobile-menu-buttons .navi-menu-button{
        position: absolute;
        right: 0px;
        top: 15px;
        width: 48px;
        min-width: 48px;
}
.mobile-menu-buttons .menu-icon .fa-bars::before{ font-size:1.4em!important;color:#222;}
	
.btn-mobile-square {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    text-decoration: none;
}
.btn-mobile-square img {
    width: 20px;
    height: 20px;
    display: block;
}
.btn-mobile-mail {
    background-color: #ff9228;
}
.btn-mobile-line {
    background-color: #06C755;
}
.btn-mobile-tel {
    background-color: #1f75cb;
    color: #fff;
}
.btn-mobile-tel .fa-phone {
    font-size: 22px;
}

.h-submenu-item {
        display: block;
        list-style: none;
}
.h-submenu {
        display: flex !important;
        position: absolute;
        top: 10px;
		right:52px;
		width: auto !important;
           margin: 0;
        padding: 0;
        list-style: none;
        align-items: center;
        gap: 6px;
    }
.h-submenu li{max-width:40px;}
	
li::marker {
  content: ""!important;
}
.btn-mobile-square img{
width: 25px;
        height: 25px;		
}	
.h-contact .btn-mobile-square img{
width: 25px;
height: 20px;		
}	

	
}

/************************************
** 小型スマートフォン対応（480px以下）ヘッダー微調整
************************************/
@media screen and (max-width: 480px) {
  /* ロゴ */
  .mobile-menu-buttons .logo-menu-button {
    top: 8px;
    width: 116px;
    height: 44px;
  }

  /* 電話・お問い合わせ・LINEの並び */
  .h-submenu {
    top: 8px;
    right: 52px;
    gap: 6px;
    height: 44px;
    align-items: center;
  }

  /* 既存のmax-width:40pxを解除 */
  .h-submenu li {
    flex: 0 0 44px;
    width: 44px;
    max-width: none;
    height: 44px;
    margin: 0;
  }

  .btn-mobile-square {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 9px;
  }

  /* 電話アイコン */
  .btn-mobile-tel .fa-phone {
    font-size: 24px;
    line-height: 1;
  }

  /* メール・LINE画像 */
  .btn-mobile-square img {
    display: block;
    width: 27px;
    height: 27px;
    object-fit: contain;
  }

  .h-contact .btn-mobile-square img {
    width: 28px;
    height: 23px;
  }

  /* ハンバーガーメニューの位置と大きさ */
  .mobile-menu-buttons .navi-menu-button {
    top: 8px;
    right: 2px;
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .mobile-menu-buttons .navi-menu-button .menu-button-in {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }

  .mobile-menu-buttons .navi-menu-button .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
}

/************************************
** googlemap（共通・将来使用）
************************************/
.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* ============================================================
　　投稿ページ用（カテゴリページ／シングルページ）
 ============================================================　*/
:root{
  --zr-orange: #e8763c;
  --zr-orange-dark: #d9622a;
  --zr-orange-100: #fdece0;
  --zr-green: #3c8c4b;
  --zr-green-100: #e7f3e6;
  --zr-cream: #fdf6ec;
  --zr-text: #3a3a3a;
  --zr-line: #e9d9c6;
}
 
/* ============================================================
  1. カテゴリページ（投稿一覧）
============================================================= */
 .category #content.content,
.tag #content.content,
.archive #content.content{
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 40px 20px !important;
  background: #fff;
  border-radius: 16px;
}
 
/* カテゴリ見出し */
.category .archive-title,
.tag .archive-title{
  position: relative;            
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px !important;   
  padding: 0 !important;
  background: none;
  border: none;
}

.category .archive-title::after,
.tag .archive-title::after{
  content: "";
  position: absolute;             
  left: 0;
  bottom: -14px;                   
  width: 56px;
  height: 3px;
  background-color: var(--zr-orange);
  margin: 0;                     
}

.category .archive-title .cat-title,
.tag .archive-title .cat-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #2f2f2f !important;
  margin: 0 !important;
  line-height: 1.4;
}

.category .cat-header .cat-description,
.tag .cat-header .cat-description{
  font-size: 13px;
  color: #777;
  margin: 6px 0 0 !important;
}
 
 
/* カード本体（article.entry-card）：色・角丸・影・ホバーのみ調整 */
.category .entry-card,
.tag .entry-card,
.archive .entry-card{
  background: #fff !important;
  border: 1px solid var(--zr-line) !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(60,40,20,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.category .entry-card:hover,
.tag .entry-card:hover,
.archive .entry-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(60,40,20,.12);
}
.category .entry-card-wrap,
.tag .entry-card-wrap,
.archive .entry-card-wrap{
  text-decoration: none !important;
}
 
/* サムネイル（カード上部・横幅いっぱい） */
.category .entry-card-thumb,
.tag .entry-card-thumb,
.archive .entry-card-thumb{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.category .entry-card-thumb img,
.tag .entry-card-thumb img,
.archive .entry-card-thumb img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
/* カテゴリラベル（サムネイル左上のバッジ） */
.category .cat-label,
.tag .cat-label,
.archive .cat-label{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.category .cat-label a,
.tag .cat-label a,
.archive .cat-label a{
  display: inline-block;
  background: var(--zr-orange) !important;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none !important;
}
 
/* カード本文（サムネイルの下） */
.category .entry-card-content,
.tag .entry-card-content,
.archive .entry-card-content{
  padding: 16px 18px 18px !important;
}
.category .entry-card-title,
.tag .entry-card-title,
.archive .entry-card-title{
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 8px !important;
}
.category .entry-card-title a,
.tag .entry-card-title a,
.archive .entry-card-title a{
  color: #2f2f2f !important;
  text-decoration: none !important;
}
.category .entry-card-snippet,
.tag .entry-card-snippet,
.archive .entry-card-snippet{
  font-size: 12px !important;
  line-height: 1.7;
  color: #777 !important;
  margin: 0 0 10px !important;
}
 
/* 下段メタ情報（閲覧数・日付） */
.category .entry-card-meta,
.tag .entry-card-meta,
.archive .entry-card-meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #aaa !important;
  border-top: 1px dashed var(--zr-line);
  padding-top: 8px;
}
.category .entry-date,
.tag .entry-date,
.archive .entry-date{
  font-size: 11px;
  color: #999 !important;
}
 
/* ページネーション */
.category .pagination,
.tag .pagination,
.archive .pagination{
  margin-top: 32px !important;
  text-align: center;
}
.category .pagination .page-numbers,
.tag .pagination .page-numbers,
.archive .pagination .page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 4px !important;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--zr-line);
  color: #555 !important;
  text-decoration: none !important;
}
.category .pagination .page-numbers.current,
.tag .pagination .page-numbers.current,
.archive .pagination .page-numbers.current{
  background: var(--zr-orange) !important;
  border-color: var(--zr-orange) !important;
  color: #fff !important;
  font-weight: 700;
}
 
/* パンくずリスト */
.category .breadcrumb,
.tag .breadcrumb,
.archive .breadcrumb{
  max-width: 900px !important;
  margin: 12px auto !important;
  padding: 0 20px !important;
  font-size: 12px;
  color: #999 !important;
}
.zr-voice__customer{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 24px !important;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8763c;
}
.zr-voice__area{
  font-size: 13px;
  color: #999;
}
.zr-voice__name{
  font-size: 18px;
  font-weight: 800;
  color: #2f2f2f;
}

 
@media (max-width: 900px){
  .category #content.content,
  .tag #content.content,
  .archive #content.content{
    padding: 28px 20px !important;
  }
}
@media (max-width: 640px){
  .category #content.content,
  .tag #content.content,
  .archive #content.content{
    padding: 20px 14px !important;
  }
}
 
 
/* ============================================================
  2. シングルページ
============================================================= */
 .single #content.content{
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 20px !important;
}
 
/* 投稿ヘッダー（アイキャッチ＋タイトル）を縦積み・中央寄せに固定
   ※Cocoon側の設定で「サムネイルをタイトルの左に表示」等になっていると
   横並びのflexレイアウトになるため、ここで強制的に解除しています */
.single .article .entry-header,
.single .article .top-of-entry-content,
.single .article .entry-title-and-thumbnail{
  display: block !important;
}
 
/* アイキャッチ画像（中央寄せ） */
.single .article .eye-catch{
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  text-align: center;
  margin: 0 0 28px !important;
}
.single .article .eye-catch img{
  display: inline-block;
  float: none !important;
  width: 100%;
  max-width: 500px;
  max-height: 600px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(60,40,20,.1);
}
 
/* 記事タイトル・メタ情報（装飾つき） */
.single .article .entry-title{
  display: block !important;
  font-size: 24px !important;
  font-weight: 800;
  color: #2f2f2f !important;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 14px !important;
}
.single .article .entry-title::after{
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background-color: var(--zr-orange);
  margin: 14px auto 0 !important;
}
.single .article .entry-date,
.single .article .cat-link-box{
  display: inline-block;
  font-size: 12px;
  color: #999 !important;
  text-align: center;
}

.single .article .date-tags{ display:none;}
.single .article .entry-meta-top{
  text-align: center;
  margin: 0 0 24px !important;
}
 
/* 本文タイポグラフィ */
.single .article .entry-content{
  font-size: 16px !important;
  line-height: 1.9 !important;
  color: var(--zr-text) !important;
}
.single .article .entry-content h2{
  font-size: 20px !important;
  font-weight: 800;
  color: #2f2f2f !important;
  border-left: 5px solid var(--zr-orange);
  padding-left: 12px;
  margin: 40px 0 20px !important;
}
.single .article .entry-content h3{
  font-size: 17px !important;
  font-weight: 800;
  color: #2f2f2f !important;
  margin: 32px 0 16px !important;
}
.single .article .entry-content p{
  margin: 0 0 22px !important;
}
.single .article .entry-content img{
  border-radius: 10px;
}

.single .article .entry-content .wp-caption-text{
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #2f2f2f !important;
  text-align: center;
  padding: 10px 4px !important;
  margin: 0 !important;
  line-height: 1.5;
}

/* 記事本文のリストマークを復元 */
.entry-content ul.wp-block-list {
  list-style: disc outside;
  margin: 1.4em 0;
  padding-left: 2em;
}

.entry-content ol.wp-block-list {
  list-style: decimal outside;
  margin: 1.4em 0;
  padding-left: 2em;
}

.entry-content .wp-block-list li {
  display: list-item;
  margin-bottom: 0.5em;
}

.entry-content .wp-block-list li::marker {
  content: normal !important;
}
 
@media (max-width: 640px){
  .single .article .eye-catch img{
    max-height: 220px;
  }
  .single .article .entry-title{
    font-size: 19px !important;
  }
    .single .estimate-cta__buttons {
        flex-direction: column;
        gap: 10px !important;
    }
}
