@charset "UTF-8";
/*
Theme Name: madokobo
Theme URI: https://www.34al.com/
Description: 窓工房
Version: 2.0
Author: NUKUMORI PROJECT 
Text Domain: madokobo
Domain Path: /languages
*/

/* --- 34al.cssを移植 --- */

@import url("css/lightbox.css");

/*****デフォルトスタイルシートのリセット*****/

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	padding: 0;
	margin: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
}

/*****メイン*****/

html {
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	font: 100% "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	color: #333333;
	text-align: center;
	background: #eeeeee;
	background-image: url(../../../images/back.gif);
}

/*****文字の装飾*****/

strong {
	font-weight: bold;
}

em {
	font-style:italic;
}


.normal {
	font-size: inherit;
	font-weight: normal;
}

.big {
	font-size: 110%;
}

.big2 {
	font-size: 130%;
}

.small {
	font-size: 90%;
}

.bold {
	font-weight: bold;
}

.red {
	color: #cc0000;
}

.green {
	color: #669900;
}

.gray {
	color: #777777;
}

.brown {
	color: #CC3300;
}

.brown2 {
	color: #660000;
}

.notes {
	clear: both;
	font-size: 95%;
	color: #777;
	text-align: left;
}

.redbig {
	font-size: 110%;
	color: #cc0000;
}

.redbold {
	font-weight: bold;
	color: #cc0000;
}

.b-beige {
	padding:3px 0;
	background-color: #FFE5DE;
	font-weight:bold;
	letter-spacing:1px;
	line-height:1.9;
}

.mediatitle {
	font-size: 120%;
	font-weight: bold;
}

.number {
	font-size: 140%;
	font-weight: bold;
	color: #FF3300;
}

.rank-star {
	font-family: "Times New Roman", Times, serif;
	font-size: 140%;
	color: #FF9900;
}

.recommend {
	font-size: 90%;
	color: #FF6600;
	vertical-align: super;
}

.underline {
	border-bottom: dotted 1px #FF8080;
}

a:hover {
	color: #bb0000;
}

/*****テキストの横位置****/

.center {
	text-align: center;
}

.left {
	text-align: left;
}

/*****画像を線で囲む*****/

img.border {
	padding: 4px !important;
	border: #cccccc solid 1px;
}

/*****画像の回り込み*****/

#main-content img.img-right,
#main-content img.alignright {
	float: right;
	padding: 0;
	margin: 7px 0px 7px 10px;
}

#main-content img.img-left,
#main-content img.alignleft {
	float: left;
	padding: 0;
	margin: 7px 10px 7px 0px;
}

#main-content img.aligncenter {
	display:block;
	margin: 7px  auto;
}

#main-content div.img-right,
#main-content div.right {
	float: right;
	margin: 7px 0px 9px 10px;
}

#main-content div.img-left,
#main-content div.left {
	float: left;
	margin: 7px 10px 9px 10px;
}

#main-content div.img-center {
	margin: 0 auto 24px;
}

#main-content div.img-left,
#main-content div.img-right,
#main-content div.img-center {
	padding: 0;
	font-size: 95%;
	font-weight: bold;
	color: #555555;
	line-height: 1.5;
	text-align: center;
}

#main-content div.img-left img,
#main-content div.img-right img,
#main-content div.img-center img {
	padding: 4px;
	border: #cccccc solid 1px;
}

/*****画像の横並び*****/

/* 訪問インタビュー：CSS-only 版（JS不要） — 2025-09-02 / 原田 */

/* ガター（吹き出しの左右 padding と合わせる） */
:root { --mado-gutter: 10px; --mado-max: 684px; }

/* 親幅を基準に左右にガターだけ空ける（中央寄せ） */
.mado-interview-images {
  box-sizing: border-box !important;
  width: calc(100% - (var(--mado-gutter) * 2)) !important;
  max-width: var(--mado-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 14px !important;
  padding-left: 0 !important;    /* 内側パディングは子で管理 */
  padding-right: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  align-items: flex-start !important;
}

/* 親に左右余白（実際の表示端を揃えたいなら margin を使う代替も可能） */
.mado-interview-images--with-gutter {
  margin-left: var(--mado-gutter) !important;
  margin-right: var(--mado-gutter) !important;
  width: calc(100% - (var(--mado-gutter) * 2)) !important;
}

/* 画像アイテム（2カラム） */
.mado-interview-images > figure.mado-interview-item {
  box-sizing: border-box !important;
  flex: 0 0 calc(50% - 8px) !important;
  width: calc(50% - 8px) !important;
  max-width: calc(50% - 8px) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

/* 片側の内側微調整（不要なら削除） */
.mado-interview-images > figure.mado-interview-item:nth-child(odd) { padding-right: 8px !important; }
.mado-interview-images > figure.mado-interview-item:nth-child(even) { padding-left: 8px !important; }

/* 画像は内部で100%に */
.mado-interview-images img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  margin: 0 !important;
  border: none !important;
}

/* 1枚表示用クラス（使うときだけ .mado-interview-images--single を付ける） */
.mado-interview-images.mado-interview-images--single {
  justify-content: center !important;
  max-width: 560px !important;
  width: calc(100% - (var(--mado-gutter) * 2)) !important;
}
.mado-interview-images.mado-interview-images--single > figure.mado-interview-item {
  flex: 0 1 100% !important;
  width: 100% !important;
  max-width: 560px !important;
}

/* スマホ：2カラム維持したまま左右にガターを確保（要望どおり2枚並び可） */
@media (max-width: 600px) {
  .mado-interview-images {
	width: calc(100% - (var(--mado-gutter) * 2)) !important;
	max-width: none !important;
	margin-left: var(--mado-gutter) !important;
	margin-right: var(--mado-gutter) !important;
	gap: 0 !important; /* ご希望どおり詰める */
  }
  .mado-interview-images > figure.mado-interview-item {
	flex: 0 0 50% !important;
	width: 50% !important;
	max-width: 50% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
  }
  .mado-interview-images > figure.mado-interview-item figcaption {
	font-size: 90% !important;
	line-height: 1.4 !important;
  }
}

/* 訪問インタビューのカテゴリアーカイブページ — 2025-08-31 / 原田 */

#main-content .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  margin-left: 18px;
  margin-right: 9px;
  width: calc(100% - 27px);
  box-sizing: border-box;
  margin-bottom: 0 !important;
}

#main-content .row:not(:first-child) {
  border-top: 3px solid #eef4d9;
  padding-top: 12px;
  padding-bottom: 12px;
}

#main-content .row .box:first-child {
  flex: 0 0 252px;
  max-width: 252px;
  box-sizing: border-box;
}

#main-content .row .box:last-child {
  flex: 1 1 calc(100% - 270px);
  min-width: 220px;
  box-sizing: border-box;
}

#main-content .row .box img {
  display: block;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

#main-content .row .box a > img,
#main-content .row .box a img {
  display: block;
  border: 1px solid #ccc;
  padding: 2px;
  background: #fff;
  box-sizing: border-box;
  max-width: 100%;
  height: auto;
}

#main-content .row .box a {
  font-size: 120%;
}

#main-content .row .box p {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 767px) {
  #main-content .row,
  #main-content .row .box {
	display: block;
	width: 100%;
	box-sizing: border-box;
	gap: 0;
  }

  #main-content .row {
	margin-left: 0;
	margin-right: 0;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 22px !important;
	padding-bottom: 0 !important;
	width: 100%;
  }

  #main-content .row .box {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }

  #main-content .row .box:first-child {
	width: 100% !important;
	max-width: none !important;
	text-align: center;
	margin-bottom: 6px !important;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
  }

  #main-content .row .box:first-child a {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	width: 100% !important;
	box-sizing: border-box !important;
	padding: 0 !important;
  }

  #main-content .row .box:first-child a img,
  #main-content .row .box:first-child a > img {
	display: block !important;
	width: auto !important;
	max-width: 240px !important;
	height: auto !important;
	margin-left: auto !important;
	margin-right: auto !important;
	border: 1px solid #ccc !important;
	padding: 2px !important;
	box-sizing: border-box;
  }

  #main-content .row .box:last-child {
	margin-top: 0;
	padding-left: 0;
	padding-right: 0;
  }
}

/* 訪問インタビューのカテゴリアーカイブページ — ページナビ中央寄せ / 原田 */

#main-content .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 0;
  text-align: center;
}

#main-content .wp-pagenavi .pages,
#main-content .wp-pagenavi .current,
#main-content .wp-pagenavi a,
#main-content .wp-pagenavi .extend {
  display: inline-block;
  vertical-align: middle;
}

/* デスクトップからタブレットの共通レスポンシブ（必要なら調整） */
@media (min-width: 601px) {
  .mado-interview-images {
	gap: 0 !important;
	max-width: var(--mado-interview-max) !important;
  }
  .mado-interview-images > figure.mado-interview-item {
	flex: 0 0 calc(50% - 8px) !important;
	width: calc(50% - 8px) !important;
  }
}

/* スマホ用フォールバック：左右に10pxの余白を確保しつつ2カラムを維持 */
@media (max-width: 600px) {
  .mado-interview-images {
	width: calc(100% - 20px) !important;
	max-width: calc(100% - 20px) !important;
	margin-left: 10px !important;
	margin-right: 10px !important;
	gap: 0px !important;
	box-sizing: border-box !important;
  }
  .mado-interview-images > figure.mado-interview-item {
	flex: 0 0 50% !important;
	width: 50% !important;
	max-width: 50% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box !important;
	margin: 0 !important;
  }
  /* ここで figcaption を小さくする */
  .mado-interview-images > figure.mado-interview-item figcaption {
	font-size: 90% !important;
	line-height: 1.4 !important;
  }
}

/* 2枚の横並べ 旧バージョン */

#main-content .two-box {
	clear: both;
	width: 100%;
	margin: 15px auto 0 auto;
	line-height: 1.66;
	text-align: center;
}

#sekou #main-content .two-box .one-box,
#default #main-content .two-box .one-box{
	float: left;
	width: 49%;
	padding: 0 0 10px 5px;
	margin: 0 auto;
	font-size: 90%;
	text-align: center;
}

#main-content .two-box img {
	padding: 4px;
	border: 1px solid #cccccc;
	margin:5px 0 5px 0;
}

/*****レイアウト****/

#container {
	position: relative;
	width: 960px;
	padding: 0;
	margin: 0 auto;
	border: 1px solid #59890A;
	text-align: left;
	background: #FFFFFF;
}

div.topicpath {
	clear: both;
	height: 29px;
	padding: 0 10px;
	margin: 5px 0;
	font-size: 85%;
	color: #565656;
	line-height:28px;
}

#content {
	width: 924px;
	margin: 0 auto 10px;
}

/*****IE6.0向けのハック*****/
/* \*/
* html #content {
	margin: 0 16px 10px 16px;
}

#main-content {
	float: right;
	width: 684px;
	margin: 48px 0 10px 0;
	font-size: 95%;
	line-height: 1.66;
}

#sidebar {
	float: left;
	width: 220px;
	font-size: 95%;
	line-height: 1.5;
}

#reference {
	clear: both;
	padding: 7px 0 7px;
	border-top: #A2BB55 solid 1px;
	border-bottom: #A2BB55 solid 1px;
	text-align: center;
}

/*****ヘッダー*****/

#header {
	position: relative;
	height: 74px;
	border-bottom: 1px dotted #690;
}

#header h1 {
	position: absolute;
	left: 258px;
	top: 115px;
	width: 673px;
	margin: 0;
	border-bottom: 1px solid #690;
	font-size: 130%;
	font-weight: bold;
	line-height: 44px;
	height:44px;
	text-indent: 28px;
	background: url(../../../images/back-h1.gif) left top;
}

#header h1.toppage {
	top:80px;
	left:8px;
	text-indent:0;
	font-size:85%;
	background:none;
	border:none;
	line-height:1.66;
	font-weight:normal;
	color: #565656;
}

#header p {
	marigin:0;
	padding:0;
}

#header p.head_text {
	position: absolute;
	top: 41px;
	padding: 0 0 0 8px;
	margin: 0;
	font-size: 85%;
	font-weight: normal;
	color: #360;
	line-height: 2.5;
}

#header h2 a {
	color: #fff;
	text-decoration: none;
}

#header h2,
#header h3 {
	height: 20px;
	padding: 0 0 0 8px;
	margin: 0;
	font-size: 73%;
	color: #fff;
	line-height: 1.4;
	background-color: #669900;
	background-image: none;
}

#header p img {
	position: absolute;
	top: 1px;
	right: 5px;
	padding: 0;
	margin: 0;
	width:143px;
	border: none;
}

/*****メインコンテンツ*****/

.main-content-top {
	margin-top:0px !important;
}

#main-content #main-head {
	margin-top:10px;
}

#main-content p,
#main-content object{
	margin: 1.0em 9px 1.0em 18px;
}

#main-content h2,
#main-content h3,
#main-content h4,
#main-content h5 {
	clear: both;
	font-weight: bold;
}

#main-content h2 {
	padding: 3px 0 4px 28px;
	margin: 0 0 0.8em 0;
	border-bottom: 1px solid #690;
	font-size: 136%;
	color: #333333;
	background: url(../../../images/back-h2.gif) left top;
}

#main-content h3 {
	padding: 10px 0 7px 10px;
	margin: 1.0em 3px 1.0em 3px;
	border-bottom: 1px solid #CBD69E;
	border-left: 5px solid #CBD69E;
	font-size: 120%;
	color: #333333;
	line-height: 1.66;
	background:url(../../../images/back-h3.gif) repeat-x top left;
}

#main-content h3 a {
	text-decoration: none;
}

#main-content h3.customer {
	color: #ff0000;
}

#main-content h4 {
	padding: 5px 0 5px 20px;
	margin: 20px 0 0.7em 10px;
	font-size: 110%;
	font-weight: bold;
	line-height: 1.66;
	border-top:1px dotted #CBD69E;
	border-bottom:1px dotted #CBD69E;
	background: url(../../../images/back-h5.gif) 5px 50% no-repeat #FAFCF8;
}

#main-content h4.no1,
#main-content h4.no2,
#main-content h4.no3,
#main-content h4.no4,
#main-content h4.no5 {
	padding: 5px 0 5px 33px;
}

#main-content h4.no1 {
	background: url(../../../images/back-h4-1.gif) 5px 50% no-repeat #FAFCF8;
}

#main-content h4.no2 {
	background: url(../../../images/back-h4-2.gif) 5px 50% no-repeat #FAFCF8;
}

#main-content h4.no3 {
	background: url(../../../images/back-h4-3.gif) 5px 50% no-repeat #FAFCF8;
}

#main-content h4.no4 {
	background: url(../../../images/back-h4-4.gif) 5px 50% no-repeat #FAFCF8;
}

#main-content h4.no5 {
	background: url(../../../images/back-h4-5.gif) 5px 50% no-repeat #FAFCF8;
}

#main-content h5 {
	margin: 1.0em 0 0.8em 12px;
	padding:0 0 0 7px;
	font-size: 105%;
	font-weight:bold;
	border-left:3px solid #ccc;
	border-bottom:1px dotted #aaa;
	line-height:1.66;
}

#main-content h6 {
	margin: 1.0em 0 0 16px;
	padding:0 0 0 7px;
	font-size: 105%;
	font-weight:bold;
	line-height:1.66;
	border-bottom:1px dotted #ccc;
}

#main-content div.link-box {
	padding: 4px;
	margin: 0 0 0 16px;
	border: 1px dotted #CBD69E;
}

#main-content div.link-box p {
	margin: 0 0 7px 16px;
}

#main-content div.link-box a {
	padding: 0 0 0 24px;
	margin: 0 0 10px 0;
	font-size: 110%;
	display: block;
	background: url(../../../images/mark-square.gif) left 50% no-repeat;
}

#main-content ul.list,
#main-content ul.example {
	margin: 10px 0 10px 20px;
	list-style: inside;
	list-style-type: disc;
}

#main-content ul.example {
	color: #666666;
}

#main-content ul.decimal {
	margin: 10px 0 10px 26px;
	color: #c00;
	list-style: decimal inside;
}

#main-content ul.decimal li {
	margin-bottom: 3px;
}

#main-content ul p {
	padding: 0;
	maring: 0;
}

#main-content table.table {
	margin: 0 0 10px 20px;
}

/*横並びのテーブル*/

#main-content .one-box p {
	margin-left: 10px;
	text-align: left;
}

#main-content .one-box table {
	margin: 0 0 0 10px;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	width: auto;
}

#main-content .one-box table td {
	padding: 4px;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}

/* USP */

#usp {
	padding: 3px 3px 5px 12px;
	margin: 10px 0 16px 0;
	background-color:#FAFCF8;
}

#usp .title {
	font-size: 105%;
	font-weight: bold;
	color: #cc0000;
	letter-spacing: 1px;
}

#usp ul {
	padding: 0;
	margin: 0;
}

#usp ul li {
	margin: 0 0 0 0;
	list-style-position: inside;
	list-style-type: disc;
}

#usp p {
	padding: 0;
	margin: 0;
}

/* 流れの矢印 */

#main-content img.arrow-under {
	margin-left: 90px;
}

/* ガイドライン（対策方法など）*/

#main-content div.guideline,
#main-content ul.guideline {
	padding: 0 10px 10px 10px;
	margin: 0 10px 0 20px;
	border: 1px solid #eeeeee;
	background: #FFFDFD;
}

#main-content div.guideline p {
	margin: 10px 0 0 0;
}

#main-content ul.guideline {
	padding-top: 10px;
}

/* エコガラスの省エネ等級表示 */

#main-content span.star {
	color: #FEE02A;
}

#main-content table.ecoglass-label,
#main-content table.table-common {
	width: 510px;
	margin: 0 0 0 auto;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
}

#main-content table.ecoglass-label th,
#main-content table.table-common th {
	padding: 3px;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	text-align: center;
	background-color: #F7FAF1;
}

#main-content table.ecoglass-label td,
#main-content table.table-common td {
	padding: 2px 5px;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}

#main-content .ecoglass-label .star {
	font-size: 110%;
	font-weight: bold;
	color: #FEE02A;
	text-align: center;
	background-color: #00AC4D;
}

#main-content table.table-common td.center,
#main-content table.table-common-center {
	text-align:center;
	vertical-align: bottom;
	margin: 0 auto;
}

/*テーブルの共通スタイル*/

#main-content table td.title {
	text-align: center;
	background-color: #EEF8D6;
}

#main-content table td.appeal {
	background-color: #FFEEEE;
}

#main-content table td.td-blue {
	background-color: #B6E8F7;
}

/*熱貫流率の値*/

#main-content td.netu {
	text-align: center;
	background-color: #F4FBEC;
}

/*スペーシアの選び方*/

#main-content #hexagon {
	margin:0 0 20px 16px;
}

#main-content #hexagon li.hexagon-blue,
#main-content #hexagon li.hexagon-pink,
#main-content #hexagon li.hexagon-orange {
	width:83px;
	height:95px;
	text-align:center;
	line-height:95px;
	font-weight:bold;
	font-size:110%;
	float:left;
}

#main-content #hexagon li.hexagon-blue {
	background:url(../../../images/insulation/spacia/hexagon-blue.gif) no-repeat;
}

#main-content #hexagon li.hexagon-pink {
	background:url(../../../images/insulation/spacia/hexagon-pink.gif) no-repeat;
}

#main-content #hexagon li.hexagon-orange {
	background:url(../../../images/insulation/spacia/hexagon-orange.gif) no-repeat;
}

#hexagon:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}

/*****トップへ戻る*****/

div.navi-top {
	clear: both;
	padding-top: 5px;
	margin: 0 10px 14px 0;
	text-align: right;
}

/*****サイドバー*****/

#sidebar .side-logo-prize {
	height: 65px;
	width: 220px;
	padding: 0;
	margin: 0;
	line-height: 1.0;
}

#sidebar .side-logo-prize a {
	height: 65px;
	width: 220px;
	overflow: hidden;
	line-height: 1.0;
	display: block;
	text-indent: -9999px;
	background-image: url(../../../images/sidebar-logo-prize.jpg);
}

#sidebar .side-logo {
	height: 135px;
	width: 220px;
	padding: 0;
	margin: 0;
	line-height: 1.66;
}

#sidebar .side-logo a {
	height: 135px;
	width: 220px;
	overflow: hidden;
	line-height: 1.0;
	display: block;
	text-indent: -9999px;
	background-image: url(../../../images/sidebar-logo.gif);
}

#sidebar .side-telnumber {
	margin: 4px 0 4px 0;
	line-height: 1.0;
}

#sidebar .contactform {
	padding: 0;
	margin: 0 0 6px 0;
	line-height: 1.0;
}

#sidebar .contactform a {
	height: 60px;
	width: 212px;
	margin: 0 4px;
	overflow: hidden;
	display: block;
	text-indent: -9999px;
	background-image: url(../../../images/button-contact-roll.gif);
}

#sidebar .contactform a:hover {
	background-position: 212px 0;
}

/* 窓工房の実績 */

#sidebar #prize {
	background-color:#F7FAF1;
}

#sidebar .prize-asahi,
#sidebar .prize-nihon,
#sidebar .site-nijyumado {
	padding: 5px 0 0 0;
	margin: 0;
	line-height: 1.0;
}

#sidebar .prize-asahi a,
#sidebar .prize-nihon a,
#sidebar .site-nijyumado a,
#sidebar .site-dannetumado a {
	height: 70px;
	width: 212px;
	margin: 0 4px;
	overflow: hidden;
	display: block;
	text-indent: -9999px;
}

#sidebar .prize-asahi a {
	background-image: url(../../../images/sidebar-prize-asahi.jpg);
}

#sidebar .prize-nihon a {
	background-image: url(../../../images/sidebar-prize-nihon.jpg);
}

#sidebar .site-nijyumado a {
	background-image: url(../../../images/sidebar-site-nijyumado.jpg);
}

#sidebar .site-dannetumado a {
	background-image: url(../../../images/sidebar-site-dannetumado.jpg);
}

#sidebar .prize-asahi a:hover,
#sidebar .prize-nihon a:hover,
#sidebar .site-nijyumado a:hover,
#sidebar .site-dannetumado a:hover {
	background-position: 212px 0;
}


#sidebar h3 {
	padding: 3px 0 3px 13px;
	font-size: 100%;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1.3;
	background-image: url(../../../images/sidebar-midashi.gif);
	background-repeat: no-repeat;
}

#sidebar p {
	margin: 0 4px 0 4px;
	font-size: 90%;
}

#sidebar ul {
	padding: 3px 0 5px 0;
	margin: 0 0 0 3px;
	background-color: #F7FAF1;
	list-style-position: outside;
	line-height:1.66;
}

#sidebar ul li {
	padding: 0 0 0 20px;
	margin: 0 0 0 0;
	background: url(../../../images/sidebar-mark.gif) left 50% no-repeat;
}

#sidebar ul li.out {
	padding: 0 0 0 20px;
	margin: 0 0 0 0;
	background: url(../../../images/sidebar-mark-o.gif) left 50% no-repeat;
}

#sidebar ul.job {
	margin:10px 0px 10px 3px;
	background:#FFeeee;
	border:solid 1px #669900;
}

#sidebar ul.job li {
	padding:4px 4px 4px 6px;
	background:none;
}

#sidebar li.mark-ecogalass {
	background: url(../../../images/mark-ecoglass.gif) left 4px no-repeat;
	list-style-position: outside;
}

#sidebar li.indent {
	margin: 0 0 0 12px;
}

#sidebar div.subsubtitle {
	margin: 16px 0 0 0;
	padding: 3px 0 0 4px;
	font-weight: bold;
	font-size:105%;
	color: #336600;
	background: #DDEFA7;
}

#sidebar .award {
	padding: 2px 0 0;
	background-color: #F7FAF1;
}

#sidebar .search {
	margin: 5px auto 0;
	text-align: center;
}

#sidebar ul.sidebar-area {
	background-color: #FAFCF8;
}

div.sidebar-area {
	padding: 1px 4px 1px;
	margin: 0;
	color: #464646;
	background-color: #FAFCF8;
}

div.sidebar-area .local-area {
	font-weight: bold;
	color: #669933;
}

/*****お問い合わせ先*****/

/*****営業エリア*****/

#area {
	padding: 7px 5px;
	margin: 10px 10px;
	border: 1px solid #eeeeee;
	font-size: 80%;
	color: #666;
	line-height: 1.5;
	background-color: #FBFEF3;
}

#area p + p {
	margin-top: 10px;
}

/*****下部メニュー*****/

#footer-menu {
	padding: 10px 0;
	font-size: 95%;
	line-height:1.7;
	color: #cccccc;
	text-align: center;
}

/*****フッター*****/

#footer {
	position: relative;
	padding: 10px 0 18px 20px;
	font-size: 95%;
	font-style: normal;
	text-align: center;
	background-image: url(../../../images/footer.jpg);
}

#footer p {
	position: absolute;
	top: 7px;
	right: 7px;
}

#footer h3 {
	background: none;
	border: none;
}

#footer h3 a {
	text-decoration:none;
	color:#333333;
	cursor:default;
}

.clearfloat {
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}

/*****************************

	トップページ

******************************/

#topnews {
	font-size: 110%;
}

.syousai {
	clear: both;
	padding: 0;
	margin: 0 8px 10px 0;
	text-align: right;
}

.syousai a {
	font-size: 110%;
}

.sekousya {
	margin: 10px auto 7px;
	text-align: center;
}

/* 3ボックス */

#main-content .top-three-box {
	width: 674px;
	margin: 0;
	text-align: center;
}

#main-content .top-one-box {
	float: left;
	width: 33.3%;
	padding: 0 0 10px 0;
	margin: 0 auto;
	line-height: 1.3;
}

#main-content .top-one-box img {
	width:90%;
}

#main-content .margin-box {
	margin-bottom: 10px;
}

#main-content .border-box img {
	padding: 4px;
	border: 1px solid #ccc;
}

/* 2ボックス */

.top-two-box{
  width: 100%;
  display: inline-table;
  padding-bottom: 1em;
}
.top-two-box .top-one-box2{
  display: table-cell;
  width: 50%;
  text-align: center;
}


/*****お客さまの声*****/

.voice-top {
	padding: 2px 4px;
	margin: 4px 2px 2px;
	border: 1px solid #A0BE5A;
	line-height: 1.5;
	text-align: left;
}

.voice-top .customer-name {
	color: #996600;
}

/*****提携店の紹介*****/

#affcompany {
	width: 500px;
	margin: 0 0 0 20px;
}

#affcompany .box {
	float: left;
	width: 50%;
	padding: 0 0 16px 0;
}

#reference .fotter-mailform {
	margin: 3px 0 6px 45px;
	text-align: left;
	line-height:1.5;
}

#reference a {
	font-size: 120%;
	font-weight: bold;
}

/*****************************

	はじめに（個別ページ）

******************************/
.dropcatch:first-letter {
	padding: 3px;
	margin-right: 2px;
	font-family: "ＭＳ ゴシック", "Osaka－等幅";
	font-size: 130%;
	color: #FFFFFF;
	background: #CC9966;
}

.merit {
	padding: 7px;
	margin: 10px 20px;
	border: 1px solid #eeeeee;
	font-weight: bold;
	color: #464646;
	background-color: #F9F9F9;
}

/*****************************

	個別ページ
	お客さまの声（インデックス）
	#voice

******************************/
#voice h3.index {
}

#voice h4.index-title {
}

#voice .voice-index {
	clear: both;
	margin: 0 0 0 10px;
}

#voice .index-pic {
	float: left;
	height: 190px;
	width: 210px;
	margin: 0 0 17px 0;
}

#voice .index-catch {
	float: right;
	height: 189px;
	width: 300px;
	margin: 0 0 15px 0;
	border: #eeeeee solid 1px;
	background: #FFFBE8;
}

#voice .voice-index p {
	margin: 6px 8px;
}

.mark-arrow {
	padding: 0 0 0 20px;
	background-image: url(../../../images/voice/mark-arrow.gif);
	background-position: left 50%;
	background-repeat: no-repeat;
}

.mark-square,
.mark-square-em {
	padding: 0 0 0 24px;
	background-image: url(../../../images/mark-square.gif);
	background-position: left 50%;
	background-repeat: no-repeat;
	font-size: 1.1em !important;
}

.mark-square-em {
	font-size:120%;
	font-weight:bold;
}

.mark-outlink {
	padding: 0 0 0 24px;
	background-image: url(../../../images/mark-outlink.gif);
	background-position: left 50%;
	background-repeat: no-repeat;
}

.mark-pdf {
	padding: 6px 0 6px 41px;
	display: block;
	background-image: url(../../../images/construction/mark-pdf.gif);
	background-position: left 50%;
	background-repeat: no-repeat;
}

/*****************************

	個別ページ
	お客さまの声（個別インタビュー）
	#voice

******************************/
#eyecatch,
body.category-66 div.eyecatch,
body.category-38 div.eyecatch,
body.category-15 div.eyecatch,
body.category-23 div.eyecatch
 {
	position: relative;
	margin: 15px 19px 15px 9px;
	text-align: center;
}

#eyecatch img,
div.eyecatch img,
body.category-66 #main-content img,
body.category-38 #main-content img,
body.category-15 #main-content img,
body.category-23 #main-content img
 {
	padding: 4px;
	margin: 0 0 20px 0;
	border: #cccccc solid 1px;
	line-height: 1.0;
	float: none !important;
	display: block !important;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 100%;
	height: auto;
}

/*****お客さまの声の県名・名前*****/
div.name {
	padding: 0px 5px 0px 10px;
	font-size: 105%;
	font-weight: bold;
	color: #464646;
	text-align: left;
}

/*****IE6.0向けのハック*****/
/* \*/
* html #eyecatch .name {
	left: 6px;
}

/*****お客さまの声のキャッチコピー*****/
div.catchcopy {
	padding: 4px 10px;
	margin: 3px 9px 20px 9px;
	border: 1px solid #cccccc;
	font-size: 120%;
	font-weight: bold;
	color: #464646;
	line-height: 1.66;
	text-align: left;
	background: #F7FAF1;
}

div.name p,
div.catchcopy p {
	padding: 0;
	margin: 0;
}

/*****お客さまの声の施工データ*****/

.summary-box {	
	border: 1px solid #eee;
	padding: 10px;
	margin: 3px 9px 20px 9px;
	font-size: 110%;
}

#voicedata {
	width: 400px;
	margin: 0 auto 15px;
	border-top: 1px solid #bbbbbb;
	border-left: 1px solid #bbbbbb;
}

#voicedata caption {
	padding: 5px 0 5px 22px;
	font-size: 110%;
	color: #660000;
	background: url(../../../images/mark-square.gif) left 50% no-repeat;
}

#voicedata th {
	padding: 4px 5px;
	border-right: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	color: #464646;
	vertical-align: middle;
	text-align: center;
	background-color: #eeeeee;
}

#voicedata td {
	padding: 4px 8px;
	border-right: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	vertical-align: top;
	text-align: left;
}

@media (max-width: 600px) {
	#voicedata,
	#main-content .interest {
		margin-left: 10px !important;
		margin-right: 10px !important;
		width: auto !important;
	}
}		

/*****インタビューの小見出し*****/
h3.interview {
	padding: 0 0 0 30px;
	margin: 0px 4px 7px 7px;
	border-bottom: #669900 1px dotted;
	border-left: none;
	font-size: 120%;
	background: url(../../../images/voice/back-h2-mike.gif) no-repeat left 50%;
}

/*インタビューの名前 共通スタイル*/
div.inter-mado,
div.inter-okyaku,
div.interviewer-name,
div.interviewee-name {
	clear: both;
	padding: 0 0 2px 5px;
	margin: 0 0 0 10px;
	font-size: 110%;
}

/*インタビューする窓工房側の名前*/
div.inter-mado,
div.interviewer-name {
	color: #333399;
}

/*インタビューされるお客さまの名前*/
div.inter-okyaku,
div.interviewee-name {
	color: #CC3300;
}

/*インタビューの発言 共通スタイル*/
div.inter-mado + div,
div.inter-okyaku + div,
div.interviewer-voice,
div.interviewee-voice {
	padding: 0;
	margin: 0 10px 15px 10px !important;
	border: 1px solid #cccccc;
}

div.inter-mado + div,
div.inter-okyaku + div,
div.interviewer-voice p,
div.interviewee-voice p {
	padding: 0;
	margin: 0.7em 0;
}

/*インタビューする窓工房側の発言*/
div.inter-mado + div,
div.interviewer-voice {
	background: #FDFEFF;
}

/*インタビューされるお客さまの発言*/
div.inter-okyaku + div,
div.interviewee-voice {
	background: #FFFCFC;
}

/* .inter-mado と .inter-okyaku の直後にある div にだけ適用 pタグなしに対応 */
.inter-mado + div,
.inter-okyaku + div {
  padding: 15px 9px 15px 15px !important;
}


/* 動画プレイヤーをレスポンシブ化し、キャプションを中央寄せするスタイル（PC時は左右にそれぞれ10pxの余白を確保。プレイヤー上に15px、キャプション下に15pxの余白） */

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  margin-top: 15px;
}

.video-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-figure {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 12px;
}

.video-caption {
  margin-top: 12px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

@media (min-width: 769px) {
  .video-wrap iframe {
	left: 10px;
	width: calc(100% - 20px);
  }
}

@media (max-width: 480px) {
  .video-caption {
	font-size: 0.92rem;
  }
  .video-figure {
	padding: 0 8px;
  }
}

/*****お客さまからのメール*****/
h3.aftermail {
	padding: 0 0 0 38px;
	margin: 20px 0px 0px 3px;
	border-left: none;
	background: url(../../../images/voice/back-h2-mail.gif) no-repeat 1% 50%;
}

#voice-mail {
	padding: 15px 4px 0px;
	margin: 0 20px 15px 20px;
	border: 1px solid #ccc;
}

#voice-mail p {
	margin: 0 12px 12px 12px;
}

/* 訪問インタビュー：書き起こしボックス — 2025-08-31 */
.mado-transcript-box {
  border: 1px solid #ccc;
  padding: 10px;
  background: transparent;
  box-sizing: border-box;
  margin: 12px 30px;
  color: #333;
  line-height: 1.6;
  font-size: 15px;
}
.mado-transcript-box p {
  margin: 0 0 0.75em 0;
}
@media (max-width: 600px) {
  .mado-transcript-box { 
	  font-size: 14px;
	  margin: 12px 10px;
   }
}

/*****画像の横並び*****/

/* 2枚の横並べ */

#voice .two-box {
	clear: both;
	width: 100%;
	margin: 15px auto 0 auto;
	line-height: 1.5;
	text-align: center;
}

#voice .one-box {
	float: left;
	width: 49%;
	padding: 0 0 10px 5px;
	margin: 0 auto;
}

#voice .two-box img {
	padding: 4px;
	border: 1px solid #cccccc;
}

/*1枚のみ*/

#voice .top-box {
	margin: 5px 0px 0 5px;
}

/*****************************

	よくある質問（個別ページ）

******************************/

#faq h3 {
	padding: 0 0 2px 20px;
	border-bottom: 1px dotted #666666;
	background: url(../../../images/mark-faq-h3.gif) no-repeat left;
}

#faq .question {
	background: url(../../../images/mark-faq-h3-q.gif) no-repeat left;
}

#faq #main-content p {
	margin-top: 5px;
}

/*****************************

	個別ページ
	施工例　#sekou

******************************/

div.sekou-list ul {
	list-style: none;
}

div.sekou-list ul li {
	margin: 0 0 5px 20px;
}

div.sekou-list ul li a {
	padding: 0 0 0 24px;
	background: url(../../../images/mark-sekou.gif) left 50% no-repeat;
}

div.sekou-list ul li a:hover {
	background: url(../../../images/mark-sekou-hover.gif) left 50% no-repeat;
}

div.sekou-rei,
div.sekou-tejyun {
	width: 100%;
}

div.sekou-rei h3 + p,
div.sekou-rei h5 + p {
	text-align: center;
}

div.sekou-rei img,
div.sekou-tejyun img {
	padding: 4px;
	border: 1px solid #cccccc;
}


/*関連ページへのナビゲーション*/

#main-content .related-link {
	clear: both;
	width: 524px;
}

#main-content .related-link p {
	margin-left: 5px;
}

#main-content .related-link img {
	clear: both;
	margin: 0 0 6px 0;
}

#main-content .related-link .left {
	float: left;
	width: 259px;
	margin: 0 3px 6px 0;
}

#main-content .related-link .right {
	float: left;
	width: 259px;
	margin: 0 0 6px 3px;
}

#main-content .related-link .left a,
#main-content .related-link .right a {
	padding: 2px 0 4px 14px;
	margin: 0 0 6px 0;
	border: #dddddd 1px solid;
	display: block;
	background: url(../../../images/construction/back-navi.gif);
}

#main-content .related-link .left a:hover,
#main-content .related-link .right a:hover {
	border-color: #FFCC66;
	background-position: 260px 0;
}

#main-content .interest {
	clear: both;
	padding: 10px;
	margin: 30px 0 10px 0;
	border: #CBD69E 2px solid;
	background-color: #FAFCF8;
}

#main-content .interest a {
	font-size: 150%;
	font-weight: bold;
	padding: 0 0 0 24px;
	background: url(../../../images/mark-square.gif) left 50% no-repeat;
}

table {
	clear: both;
	width: 450px;
	margin: 10px auto;
	border-top: #CCCCCC 1px solid;
	border-left: #CCCCCC 1px solid;
}

table th {
	width: 80px;
	padding: 3px;
	border-right: #CCCCCC 1px solid;
	border-bottom: #CCCCCC 1px solid;
	font-weight: bold;
	text-align: center;
	background: #F7F7F7;
}

table td {
	padding: 5px 5px 5px 7px;
	border-right: #CCCCCC 1px solid;
	border-bottom: #CCCCCC 1px solid;
}

table td.sekousya {
	width: 100px;
	padding: auto 4px;
}

#sekou span.value {
	font-size: 140%;
	font-weight: bold;
}

table td p {
	margin: 5px 0 0 0 !important;
}

#main-content div.sekou-rei h4 {
	padding: 3px 0 3px 38px;
	margin: 1em 0 0 8px;
	border-left: #E4EDCD 6px solid;
	border-bottom: #E4EDCD 1px solid;
	font-size: 120%;
	color: #464646;
	line-height: 1.5;
	background: url(../../../images/construction/mark-h3.gif) no-repeat 5px 50% #F8FAF1;
}

#main-content div.sekou-rei h5 {
	padding: 3px 0 2px 9px;
	margin: 1em 0 1em 12px;
	border: none;
	font-size: 120%;
	font-weight: bold;
	background:#f7f7f7;
}

#sekou .sekou-tejyun {
	margin: 0 0 14px 0;
}

#sekou #estimate {
	width: 500px;
	margin: 0 0 0 18px;
}

#sekou #estimate td.midashi {
	text-align: center;
	background: #F4FBEC;
}

#sekou #estimate td.final {
	border-bottom: 2px solid #A2BB55;
}

#sekou #estimate td.total {
	font-size: 120%;
	font-weight: bold;
	text-align: center;
}

#sekou #estimate td.total-value {
	font-size: 120%;
	font-weight: bold;
}

#sekou #estimate td.numerical {
	text-align: right;
}

/*****画像の回り込み*****/

#sekou img.img-right {
	float: right;
	margin: 7px 0 0 10px;
}

#sekou img.img-left {
	float: left;
	margin: 7px 10px 0 0;
}

#sekou p.center {
	clear: both;
	width: 100%;
	display: block;
	text-align: center;
}

#sekou p.center img {
	margin: 7px auto 0 auto;
}

/*****画像の横並び*****/

/* 2ボックス 3ボックス */

#sekou .two-box,
#sekou .three-box {
	clear: both;
	width: 520px;
	margin: 10px auto 0 5px;
	line-height: 1.5;
	text-align: center;
}

#sekou .two-box .one-box {
	float: left;
	width: 260px;
	padding: 0;
	margin: 0 auto;
}

#sekou .three-box .one-box {
	float: left;
	width: 173px;
	padding: 0;
	margin: 0 auto;
}

/*****画像の回り込みの解除*****/

#sekou .sekou-rei:after,
#sekou .sekou-tejyun:after,
#sekou .two-box:after,
#sekou .three-box:after,
#main-content .two-box:after {
	clear: both;
	height: 0.1px;
	visibility: hidden;
	font-size: 0.1em;
	line-height: 0;
	display: block;
	content: ".";
}

#sekou .sekou-rei,
#sekou .sekou-tejyun,
#sekou .two-box,
#sekou .three-box,
#main-content .two-box {
	clear: both;
	display: inline-block;
}

/*****************************

	個別ページ
	サイト内の検索結果

******************************/

#search {
	margin: 0 0 0 10px;
}

/*****************************

	個別ページ
	お問い合わせ　#contact

******************************/

/*****必須項目を伝える注意書き*****/
#contact p.notes {
	margin-bottom: 3px;
	font-size: 85%;
}

div#trust-form.contact-form table {
	width: 95%;
	margin: 0 auto 10px 10px;
	border-top: #CCCCCC solid 1px;
	border-left: #CCCCCC solid 1px;
}

div#trust-form.contact-form table th,
div#trust-form.contact-form table td {
	padding: 5px 8px;
	margin: 0;
	border-right: #CCCCCC solid 1px;
	border-bottom: #CCCCCC solid 1px;
	line-height: 1.5;
}

div#trust-form.contact-form table td span.subhead {
	background-color:#F7FAF1;
	font-weight:bold;
	line-height:2.2;
}

div#trust-form.contact-form table td.brochure-check label {
	font-size:110%;
	border-bottom:#ccc 1px dashed;
}

div#trust-form.contact-form table th {
	width: 130px;
	vertical-align: middle;
	background: #F7FAF1;
}

div#trust-form.contact-form div.submessage {
	margin: 5px 0 0;
	font-size: 90%;
	color: #5a5a5a;
}

#contact .text {
	padding: 2px;
	border: 1px solid #999;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: 110%;
	color: #333;
	background: #ffffff url(../images/contact/back-text.gif) left top no-repeat;
}

#contact select {
	font-size: 110%;
}

/*****必須のマーク*****/
span.necessary,
span.require {
	font-size: 70%;
	color: #cc0000;
	vertical-align: middle;
}

/*****任意のマーク*****/
span.free {
	font-size: 70%;
	color: #888;
	vertical-align: middle;
}

#contact optgroup {
	font-style: normal;
}

div#trust-form.contact-form input,
div#trust-form.contact-form textarea {
	font-size:110%;
}

input[type="submit"] {
	font-size:120%;
}

div#trust-form.contact-form input.input_short {
	width:100px;
}

div#trust-form.contact-form input.input_middle {
	width:200px;
}

div#trust-form.contact-form input.input_long {
	width:300px;
}

div#trust-form.contact-form input.text:focus,
div#trust-form.contact-form textarea.text:focus {
	border-top: #8A9867 1px solid;
	border-right: #8A9867 1px solid;
	border-bottom: #8A9867 1px solid;
	border-left: #8A9867 1px solid;
	background: #FFFDF7 url(../../../images/contact/back-text.gif) left top no-repeat;
}

#contact label {
	cursor: pointer;
}

#contact input.sub-button {
	padding: 10px 30px 5px;
	margin: 10px auto;
	font-size: 110%;
}

/*****************************
  フォーム一式 統合CSS（お問い合わせ/資料請求 共通）
  - 入力欄拡大・エラー表示・チェック/ラジオ統一
  - 送信/戻るボタン共通化
  - 完了ページの「トップページに戻る」専用サイズ調整
******************************/

/* 基本レイアウト */
.mkb-contact { max-width: 900px; margin: 0 auto; }
.mkb-note { margin-bottom: .75rem; }
.redbold { color: #e55a3b; font-weight: bold; }

.require,.optional{
  display:inline-block;font-size:1em!important;line-height:1;font-weight:bold;margin-right:.25em;
}
.require{color:#e55a3b!important;}
.optional{color:#888;}
.sub{color:#659900!important;font-size:110%!important;}

/* エラー表示（同じ dd に .error がある時に枠線を赤） */
.error{color:#e55a3b!important;}
.mkb-form-table dd:has(.error) input,
.mkb-form-table dd:has(.error) textarea,
.mkb-form-table dd:has(.error) select{
  border-color:#e55a3b!important;background:#fffcfc;
}

/* エラー時はリード部を非表示（JSが html に .mkb-has-form-errors を付与） */
.mkb-has-form-errors .mkb-form-intro { display: none !important; }

/* 行レイアウト */
.mkb-form-table{display:grid;row-gap:16px;column-gap:0;}
.mkb-form-table .row{display:contents!important;margin:0!important;padding:0!important;}
.mkb-form-table dt{
  align-self:start;padding:10px 12px;background:#fafbf5;border:1px solid #d7ddd7;font-weight:600;
}
.mkb-form-table dd{padding:10px 12px;border:1px solid #d7ddd7;border-left:none;}

.input-short{max-width:220px;width:100%;}
.input-middle{max-width:420px;width:100%;}
.input-long{max-width:640px;width:100%;}
.mkb-form-table .sub{display:block;color:#666;margin-top:6px;font-size:.9rem;}

/* 入力UI（共通拡大） */
.mkb-form-table input[type="text"],
.mkb-form-table input[type="email"],
.mkb-form-table input[type="tel"],
.mkb-form-table input[type="number"],
.mkb-form-table select,
.mkb-form-table textarea{
  box-sizing:border-box;padding:8px 10px;border:1px solid #cfd8cf;border-radius:4px;font-size:1.1rem;line-height:1.6;
}
.mkb-form-table dd select{font-size:1.1rem;line-height:1.6;}
.mkb-form-table textarea{width:100%;min-height:220px;}
.mkb-form-table input[type="text"]:focus,
.mkb-form-table input[type="email"]:focus,
.mkb-form-table input[type="tel"]:focus,
.mkb-form-table input[type="number"]:focus,
.mkb-form-table select:focus,
.mkb-form-table textarea:focus{
  outline:none;border-color:#6bb26b;box-shadow:0 0 0 2px rgba(107,178,107,.15);
}

/* PC */
@media (min-width:768px){
  .mkb-form-table{grid-template-columns:240px 1fr;}
  .mkb-form-table dt,.mkb-form-table dd{
	display:block;align-self:stretch;box-sizing:border-box;padding:10px 12px;
	border-top:1px solid #d7ddd7;border-bottom:1px solid #d7ddd7;
  }
  .mkb-form-table dt{
	background:#fafbf5;font-weight:600;border-left:1px solid #d7ddd7;border-right:none;
	display:flex;align-items:center;padding:10px 12px;
  }
  .mkb-form-table dd{border-left:none;border-right:1px solid #d7ddd7;}
  .mkb-form-table .mwform-radio-field,
  .mkb-form-table .mwform-checkbox-field{display:inline-flex;align-items:center;gap:.5em;}
  .mkb-form-table dd>*:first-child{margin-top:0;}
  .mkb-form-table dd p{margin:.25em 0 0;}
}

/* SP */
@media (max-width:767.98px){
  .mkb-contact{padding:0 10px;}
  .mkb-form-table{display:block;}
  .mkb-form-table .row{display:block!important;margin:0 0 16px;padding:0;}
  .mkb-form-table dt,.mkb-form-table dd{
	display:block;width:100%;box-sizing:border-box;border:1px solid #d7ddd7;padding:10px 12px;
  }
  .mkb-form-table dt{background:#fafbf5;font-weight:600;border-bottom:none;}
  .mkb-form-table dd{border-top:none;border-left:1px solid #d7ddd7;}
  .mkb-form-table textarea{width:100%;}
  #main-content .mkb-form-table .row,
  #main-content .mkb-form-table .row:not(:first-child){
	border-top:0!important;padding-top:12px!important;padding-bottom:12px!important;
  }

  /* 入力UI さらに大きく */
  .mkb-form-table input[type="text"],
  .mkb-form-table input[type="email"],
  .mkb-form-table input[type="tel"],
  .mkb-form-table input[type="number"],
  .mkb-form-table select,
  .mkb-form-table textarea,
  .mkb-form-table dd select{
	font-size:1.2rem;padding:10px 12px;line-height:1.7;
  }
}

/* チェックボックス/ラジオ 共通デザイン */
.mkb-form-table dd .mwform-checkbox-field,
.mkb-form-table dd .mwform-radio-field{display:block;margin:0;}
.mkb-form-table dd .mwform-checkbox-field label,
.mkb-form-table dd .mwform-radio-field label{
  display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:6px;cursor:pointer;line-height:1.4;
  user-select:none;-webkit-tap-highlight-color:transparent;min-height:40px;transition:background .2s ease;
}
.mkb-form-table dd .mwform-checkbox-field label:hover,
.mkb-form-table dd .mwform-radio-field label:hover{background:#f7faf5;}
.mkb-form-table dd .mwform-checkbox-field input[type="checkbox"],
.mkb-form-table dd .mwform-radio-field   input[type="radio"]{
  transform:scale(1.25);transform-origin:center;margin:0;accent-color:#6bb26b;
}
.mkb-form-table dd .mwform-checkbox-field .mwform-checkbox-field-text,
.mkb-form-table dd .mwform-radio-field   .mwform-radio-field-text{font-size:1.02rem;}
.mkb-form-table dd .mwform-checkbox-field input[type="checkbox"]:focus-visible + .mwform-checkbox-field-text,
.mkb-form-table dd .mwform-radio-field   input[type="radio"]:focus-visible   + .mwform-radio-field-text,
.mkb-form-table dd .mwform-checkbox-field label:focus-within,
.mkb-form-table dd .mwform-radio-field   label:focus-within{
  outline:2px solid #6bb26b;outline-offset:2px;border-radius:6px;
}
.mkb-form-table dd .horizontal-item + .horizontal-item{margin-left:0;}
@media (max-width:767.98px){
  .mkb-form-table dd .mwform-checkbox-field label,
  .mkb-form-table dd .mwform-radio-field   label{padding:12px 12px;min-height:44px;}
  .mkb-form-table dd .mwform-checkbox-field input[type="checkbox"],
  .mkb-form-table dd .mwform-radio-field   input[type="radio"]{transform:scale(1.4);}
}

/* ▼ 完了ページ：ヒーロー画像＆テキスト */
.thanks-hero{margin-top:20px;padding:0 10px;position:relative;}
.thanks-hero img{width:100%;height:auto;display:block;border-radius:12px;filter:brightness(.80);}
.thanks-message{
  position:absolute;top:18px;left:50%;transform:translateX(-50%);width:calc(100% - 20px);
  text-align:center;color:#fff;font-family: 'Noto Sans JP', sans-serif;line-height:1.5;
  text-shadow:0 2px 6px rgba(0,0,0,.25);
}
.thanks-message .name{display:inline-block;font-weight:800;font-size:clamp(18px,4.8vw,28px);letter-spacing:.02em;margin-bottom:.3em;}
.thanks-message .line{display:inline-block;font-weight:700;font-size:clamp(18px,4.8vw,28px);letter-spacing:.02em;}

/* ▼ 完了ページ専用：ボタンを少し小さめに（下の余白感=高さを抑える） */
.thanks-hero ~ .mkb-actions .btn-primary{
  padding:12px 20px;font-size:1.1rem;min-height:auto;line-height:1.4;
}

/* 完了画面では上部の案内(.mkb-form-intro)を隠す */
#main-content:has(.mw_wp_form_complete) .mkb-form-intro {
  display: none !important;
}

/* 誓い文：白縁＋ドロップシャドー強化 */
/* 誓い文：淡い色のドロップシャドーに調整 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700;900&display=swap');

.mkb-pledge { 
  text-align:center; 
  margin:46px 0; 
  font-family:'Noto Sans',sans-serif; 
}

.mkb-pledge-quote,
.mkb-pledge-line {
  font-weight:900;
  color:#6a5600; /* 本文色（濃い茶色） */
  line-height:1.4;
  letter-spacing:.02em;
  margin:.25em 0;
  font-size:24px;
  text-shadow:
	0 3px 6px rgba(106,86,0,.15),  /* 文字色ベースで薄め */
	0 2px 4px rgba(106,86,0,.12),
	0 1px 2px rgba(106,86,0,.10);
}

.br-sp { display: none; }

@media (max-width: 767.98px) {
  .mkb-pledge-quote,
  .mkb-pledge-line {
	font-size:clamp(17px,5.2vw,21px);
  }
  .br-sp { display: inline; }
  .mkb-pledge {
	margin: 36px 0;
	text-align: center !important; /* ← スマホ時に中央寄せを確実に */
  }
  .mkb-pledge p {
	text-align: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block;
  }
}

/* ラッパで中央寄せ */
.mkb-freedial-wrap{ text-align:center; }

/* ボックスは内容幅にフィット＆中央 */
.mkb-freedial{
  display:inline-block;           /* 内容幅 */
  text-align:center;              /* 中の要素も中央 */
  margin:16px 0;
  padding:10px 12px 20px;
  border:1px solid #e3e8d6;
  border-radius:8px;
  background:#fff;
}

/* 受付時間（デフォルト色/サイズ、上部配置） */
.mkb-hours{
  margin:0 0 8px;                 /* 上部に置くので下だけ余白 */
  color:inherit;
  font-size:inherit;
  font-weight:inherit;
}
.nowrap{ white-space:nowrap; }

/* 電話行は中央に揃える */
.mkb-call-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:6px 0;
}
.mkb-call-row + .mkb-call-row{
  border-top:1px solid #eef4d9;
  margin-top:6px;
  padding-top:12px;
}

/* バッジ */
.badge{
  display:inline-block;
  padding:4px 8px;
  font-weight:700;
  border-radius:4px;
  color:#fff;
  letter-spacing:.04em;
  line-height:1;
  font-size:13px;
}
.badge-free{ background:#e53935; }
.badge-tel { background:#659900; }

/* 電話番号 */
.phone{
  text-decoration:none;
  font-weight:900;
  line-height:1.1;
  font-size:clamp(22px, 4.8vw, 36px);
  letter-spacing:.02em;
}
.phone-free{ color:#e53935; }
.phone-local{ color:#659900; }

/* SPちょい調整 */
@media (max-width: 767.98px){
  .mkb-freedial{ padding:10px; }
}

/* ラベル列を同幅に */
.mkb-call-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:6px 0;
}
.badge{
  display:inline-block;
  min-width:7.5em;   /* フリーダイヤル/TEL を同幅に */
  text-align:center;
  padding:4px 8px;
  font-weight:700;
  border-radius:4px;
  color:#fff;
  letter-spacing:.04em;
  line-height:1;
  font-size:13px;
}
.badge-free{ background:#e53935; }
.badge-tel { background:#659900; }

/* 電話番号（ホバーで文字色だけ少し暗く） */
.phone{
  text-decoration:none;
  font-weight:900;
  line-height:1.1;
  font-size:clamp(22px, 4.8vw, 36px);
  letter-spacing:.02em;
  transition: color .15s ease;
}
.phone-free{ color:#e53935; }
.phone-local{ color:#659900; }
.phone-free:hover{ color:#c62828; }  /* ほんのり暗く */
.phone-local:hover{ color:#4e7d00; } /* ほんのり暗く */

/* マーカー風ハイライト（複数行対応） */
.accent{
  background-image: linear-gradient(transparent 62%, #eef3d8 0); /* やわらかい黄 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone; /* 改行しても塗りが途切れない */
  padding: 0 .08em;            /* 文字の左右に少し余白 */
  border-radius: 2px;          /* 角をほんの少し丸める（任意） */
}

/* ▼ ボタン行（中央寄せ＋サイズアップ＋共通化） */
.mkb-actions {
  margin: 42px 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .mkb-actions {
	margin: 34px 0 !important;
  }
}

/* 基本ボタン（a / input 両対応） */
.mkb-actions .btn-primary,
.mkb-actions input[type="submit"],
.mkb-actions input[type="button"],
.mkb-actions a.btn-primary {
  border: 1px solid var(--mkb-free-dial, #659900); /* デフォルトはフリーダイヤル色 */
  background: var(--mkb-free-dial, #659900);
  color: #fff;
  padding: 22px 24px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  min-height: 48px;
  -webkit-appearance: none;
  transition: filter .15s ease, background-color .15s ease, border-color .15s ease;
}

/* 「フォームに進む」リンク用：テーマの固定高さをリセット */
.mkb-actions a.btn-primary {
  height: auto !important;
  width: auto !important;
  line-height: 1.2 !important;
  padding: 22px 24px !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  box-sizing: border-box;
}

/* hover/active（color-mix 対応ブラウザは段階的暗化） */
@supports (color: color-mix(in srgb, #000 0%, #fff 100%)) {
  .mkb-actions .btn-primary:hover,
  .mkb-actions a.btn-primary:hover,
  .mkb-actions input[type="submit"]:hover,
  .mkb-actions input[type="button"]:hover {
	background: color-mix(in srgb, var(--mkb-free-dial, #659900) 90%, black 10%) !important;
	border-color: color-mix(in srgb, var(--mkb-free-dial, #659900) 90%, black 10%) !important;
  }
  .mkb-actions .btn-primary:active,
  .mkb-actions a.btn-primary:active,
  .mkb-actions input[type="submit"]:active,
  .mkb-actions input[type="button"]:active {
	background: color-mix(in srgb, var(--mkb-free-dial, #659900) 80%, black 20%) !important;
	border-color: color-mix(in srgb, var(--mkb-free-dial, #659900) 80%, black 20%) !important;
  }
}

/* color-mix 非対応ブラウザ用フォールバック */
@supports not (color: color-mix(in srgb, #000 0%, #fff 100%)) {
  .mkb-actions .btn-primary:hover,
  .mkb-actions a.btn-primary:hover,
  .mkb-actions input[type="submit"]:hover,
  .mkb-actions input[type="button"]:hover {
	filter: brightness(0.93);
  }
  .mkb-actions .btn-primary:active,
  .mkb-actions a.btn-primary:active,
  .mkb-actions input[type="submit"]:active,
  .mkb-actions input[type="button"]:active {
	filter: brightness(0.85);
  }
}

/* セカンダリ（戻る） */
.mkb-actions .btn-secondary {
  background: #e9ecef;
  color: #333;
  border-color: #cfd3d7;
}

/* スマホサイズ調整 */
@media (max-width: 767.98px) {
  .mkb-actions .btn-primary,
  .mkb-actions input[type="submit"],
  .mkb-actions input[type="button"],
  .mkb-actions a.btn-primary {
	font-size: 1.2rem;
	padding: 22px 24px;
	min-height: 52px;
  }
  .mkb-actions { margin-bottom: 40px !important; }
}

/* 営業エリアボックス */
.mkb-area-box {
  max-width: 560px;
  margin: 47px auto 24px;   /* 上を47pxに変更 */
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;  /* 縦並び */
  align-items: center;     /* 中央寄せ */
}

.mkb-area-label {
  margin-bottom: 10px;
}

/* 既存 .badge .badge-tel の見た目を流用（サイズだけ少し大きめ） */
.mkb-area-label .badge.badge-tel {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
}

.mkb-area-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 12px;
}

.mkb-area-link {
  margin: 0;
}
.mkb-area-link .mark-square {
  display: inline-block;
  font-size: 1.1em !important;
}

/* エリア外注意書き */
.mkb-area-note {
  margin-bottom: 47px !important;  /* 下マージンを47pxに設定 */
  font-size: 0.95em;
}

/* 改行抑止 */
.nowrap { white-space: nowrap; }

/* スマホ調整 */
@media (max-width: 767.98px) {
  .mkb-area-box { max-width: 92%; padding: 14px 14px; }
  .mkb-area-text { font-size: 1.06rem; }
  .mkb-area-label .badge.badge-tel { font-size: .9rem; padding: 5px 10px; }
}

/* 共通のボックス幅を定義 */
:root { --mkb-box-narrow: 560px; }

/* 幅をそろえる：フリーダイヤル枠 と 営業エリア枠 */
.mkb-freedial,
.mkb-area-box {
  max-width: var(--mkb-box-narrow);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* スマホでは同じ割合で縮ませる */
@media (max-width: 767.98px) {
  .mkb-freedial,
  .mkb-area-box {
	max-width: 92%;
  }
}

/* reCAPTCHAアイコンの非表示 */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* ▼ reCAPTCHA 利用規約表示 */
.recaptcha-notice {
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
  text-align: center;
  line-height: 1.4;
}
.recaptcha-notice a {
  color: #777;
  text-decoration: underline;
}
.recaptcha-notice a:hover {
  color: #444;
}

/*****************************

	個別ページ
	料金について
	#price

******************************/

#price table {
	width: 490px;
	margin: 0 0 0 20px;
	border-color: #669900;
}

#price table td {
	text-align: center;
}

#main-content ul.price {
	margin: 0 0 0 26px;
	color: #cc0000;
	font-size:110%;
}

div.step {
	padding: 6px 10px 6px;
	margin: 16px 36px 10px;
	border: 2px solid #C9D89C;
}

/*****************************

	個別ページ
	提携店


******************************/

span.area {
	background-color: #F4FBEC;
}

span.yellow-b {
	background-color: #F1F7E6;
}


/***追加定義***/
#sekou .three-box .one-box2 {
	float: left;
	width: 120px;
	padding: 0;
	margin: 0 auto;
}

/*****************************

	個別ページ
	相互リンク


******************************/

#main-content ul.link {
	padding:0 0 0 16px;
}

#main-content ul.link li.sitetitle {
	margin:1.0em 0 0;
	font-size:100%;
}

#main-content ul.link li {
	font-size:85%;
}

#main-content ul.link li.sitetitle a {
	background:url(../../../images/mark-outlink.gif) no-repeat left 50%;
	padding:0 0 0 22px;

}

/*****************************

	スタッフ紹介
	開閉パネル


******************************/

div.preview dl {
	margin:5px;
	border-top:1px solid #CBD69E;
}

div.preview dt {
	padding:5px 5px 5px 10px;
	border-bottom:1px solid #CBD69E;
	border-right:1px solid #CBD69E;
	border-left:1px solid #CBD69E;
	background-color:#FAFCF8;
}

div.preview dd {
	padding:5px;
	border-bottom:1px solid #CBD69E;
	border-right:1px solid #CBD69E;
	border-left:1px solid #CBD69E;
}

/*****ページ送り*****/

.pager{
	text-align:center;
}
a.page-numbers,
.pager .current{
	background:#FAFCF8;
	border:solid 1px rgba(0,0,0,0.1);
	border-radius:5px;
	padding:5px 8px;
	margin:0 2px;
}
.pager .current{
	background:#CBD69E;
	border:solid 1px #CBD69E;
	color:rgba(255,255,255,1);
}

/*****手書きのお客さまの声*****/

/* 2枚の横並べ */

#voice #main-content .two-box {
	clear: both;
	width: 100%;
	margin: 0 auto 0 auto;
	line-height: 1.3;
	text-align: center;
}

#voice #main-content .one-box {
	float: left;
	width: 49%;
	height:300px;
	padding: 0 0 3px 5px;
	margin: 0 auto;
	font-size: 90%;
	text-align: center;
}

#voice #main-content .two-box img {
	padding: 4px;
	border: 1px solid #cccccc;
	margin:5px 0 5px 0;
	border-radius: 14px;
}

#voice #main-content .two-box a:hover img,
#main-content .border-box a:hover img {
	border: 1px solid #bb0000;
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
}

/*****************************

	各対策indexページ

******************************/

/* === 追加 === */

.clearfix:after{
	content: ".";
	display: block;
	height: 1px;
	clear: both;
	visibility: hidden;
}
.clearfix{
	display:inline-block;/* MAC IE用　*/
	min-height:1%;/* IE 7用 */
}
/*--MAC IEは非適用→ \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/*--ここまでMAC IEは非適用 */

.product_page {
	margin:0 auto;
}

.product_page a:hover img{
	opacity:0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}

.product_page ul{
	width:100%;
	margin:0 auto  !important;
	list-style:none;
}
.product_page ul li{
	width:250px;
	float:left;
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
	height:220px;
}

.product_page ul li:nth-child(2n),
.product_page ul li:nth-child(4n){
	margin-right:0px !important;
}

.product_page p {
	margin:0 !important;
	padding:0 !important;
}

.product_img{
	position:relative;
	width:250px;
}
.product_img img{
	width:250px;
	height:173px;
}
.point{
	width:30px !important;
	height:30px !important;
	position:absolute;
	bottom:10px;
	right:0;
}

.index_menu ul li {
	margin-left:10px;
}

.index_menu a {
	padding: 0 0 0 24px;
	background: url(../../../images/mark-square.gif) left 50% no-repeat;
}

/* 結露カテゴリ */

.keturo_thum + p {
	clear:both;
}

.keturo_thum {
	margin:10px 0 0 0;
}

.keturo {
	width:48%;
	float:left;
	margin:0 0 0 7px !important;
	padding:0 !important;
	text-align:center;
}
.keturo img {
	width:98%;
	height:98%;
	position:relative;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
	border:3px solid #709605;
}
.keturo a:hover img {
    background-color: #000;
    opacity: 0.6;
}
.keturo p {
	font-size:18px;
	position:relative;
	text-align:center;
	padding:10px 0;
	margin:0 !important;
	width:100%;
}

.keturo p a {
	color:#fff;
	text-decoration:none;
}

/*YouTubeレスポンシブサイズ*/
.youtube {
  position: relative;
  width: 90%;
  padding-top: 56.25%;
	text-align: center;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height:100%;
}

/*****************************

	iPad用レイアウト

******************************/

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

#container {
	position: relative;
	width: 100% !important;
	padding: 0;
	margin: 0 auto;
	border: none;
	text-align: left;
	background: #FFFFFF;
}
#content {
	width: 94%;
	margin: 0 auto 10px;
}
#main-content {
	float: right;
	width: 490px;
	margin: 48px 0 10px 0;
	padding:0;
	font-size: 95%;
	line-height: 1.66;
}
#header h1 {
	width:490px;
	}
.top-three-box,
.top-two-box {
	width:100% !important;
	}
.top-one-box {
	width:30%;
	}
.top-one-box img {
	width:90% !important;
	}
}

/* 2ボックス */

.top-two-box{
  width: 100%;
  display: inline-table;
  padding-bottom: 1em;
}
.top-two-box .top-one-box2{
  display: table-cell;
  width: 50%;
  text-align: center;
}
.top-two-box .top-one-box2 img{
  width: 90% !important;
}


/*****************************

	スマホ用レイアウト

******************************/

@media screen and (max-width: 480px) {
img {
	max-width : 100% ;
	height : auto ;
}

body {
	background-image:none;
}

#container {
	position: relative;
	width: 100% !important;
	padding: 0;
	margin: 0 auto;
	border: none;
	text-align: left;
	background: #FFFFFF;
}
#main-content {
	float: none;
	width: 100%;
	margin: 24px 0 10px 0;
	padding:0;
	font-size: 95%;
	line-height: 1.66;
}

#main-content p,
#main-content object{
	margin: 1.0em 9px 1.0em 9px;
}

#main-content img {
	margin: 0;
	padding:0;
}

div.main-content-top {
	margin-top:-40px !important;
}

#header {
	display:block;
	height:155px;
}

#header p.head_text,
#header h1.toppage,
#header h2,
#header h3,
div.topicpath {
	display:none;
}

#header h1 {
	position: absolute;
	left: 0;
	top: 125px;
	width: 100%;
	margin: 0;
	border-bottom: 1px solid #690;
	font-size: 95%;
	font-weight: bold;
	line-height: 44px;
	height:44px;
	text-indent: 28px;
	background: url(../../../images/back-h1.gif) left top;
}

#header p.head_logo {
	display:block;
	background:url(../../../images/mobile_logo.jpg) no-repeat ;
	background-size:contain;
	max-width:100%;
	width:auto;
	height:155px;
}

#header p.head_logo img {
	display:none;
}

#content {
	width: 100%;
	margin: 0 auto 10px;
}

#main-content h3,
#main-content h4,
#main-content h5 {
	font-size:100%;
	margin-left: 10px;
	margin-right:10px;
}

#usp {
	font-size: 90%;
	font-weight: normal;
}

#sidebar {
	float:none;
	width: 90%;
	font-size: 95%;
	line-height: 1.5;
	padding: 20px 10px 0;
}

#sidebar h3 {
	padding: 3px 0 3px 13px;
	font-size: 100%;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1.66;
	background-image: url(../../../images/sidebar-midashi.gif);
	width:auto;
}

#reference {
	clear: both;
	margin-top:30px;
	padding: 7px 0 7px;
	border-top: #A2BB55 solid 1px;
	border-bottom: #A2BB55 solid 1px;
	text-align: center;
}

#reference .fotter-mailform {
	margin: 3px 0 6px 10px;
	text-align: left;
	line-height:1.5;
}

#footer img {
	display:none;
 }

#main-content .top-three-box {
	width: 100%;
	margin: 0;
	text-align: center;
}

#main-content p {
	margin-left:10px;
	margin-right:10px;
}

/*#main-content br {
	display:none;
}*/

#main-content div.eyecatch {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

#eyecatch img,
div.eyecatch img,
body.category-66 #main-content img,
body.category-38 #main-content img,
body.category-15 #main-content img,
body.category-23 #main-content img
 {
	padding: 0 !important;
}

#main-content img,
#main-content div.img-center img {
	padding: 0;
	margin: 0;
	border: none !important;
	line-height: 1.0;
}

#main-content div.img-right,
#main-content div.right,
#main-content div.img-left,
#main-content div.left {
	float: none;
	margin: 0 0;
}

.two-box  .one-box {
	float: none;
	width: 100%;
	padding: 0;
	margin: 0 0 10px 0;
}

table,
table.table-common {
	width:100% !important;
}

div#trust-form.contact-form table {
	padding:0px;
	margin:0px;
}

div#trust-form.contact-form table th {
	width: 100%;
}

div#trust-form.contact-form textarea {
	width:100%;
}

div#trust-form table ul li{
		line-height: 1.8em !important;
	}

}

.slicknav_menu {

display:none;

}

.product_page ul{
	width:98%;
	margin: 0 auto;
}
.product_page ul li{
	width:47%;
	float:left;
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
	height:60%;
}

.product_page p {
	margin:0 !important;
	padding:0 !important;
}

.product_img{
	position:relative;
	width:100%;
}
.product_img img{
	width:100%;
	height:100%;
}

/* 資料請求 SPフッターボタン */

.shiryo{
  border-bottom: 1px solid #CBD69E;
  border-left: 5px solid #CBD69E;
  color: #333333;
  background: url(../../../images/back-h3.gif) repeat-x top left;
  width: 100px;
  height: 40px
  padding: .25em .5em;
  position: fixed;
  bottom: 30px;
  right: 0px;
}

#contact .shiryo,
#contact .shiryo {
  display: none !important;
}

/* 展示場のご案内ページ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap");

.responsive-map {
  display: block;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4/3;
  margin: 1rem auto;
  border: 0;
}
.responsive-map-link {
  display: block;
  max-width: 600px;
  margin: 0.2em auto;
  text-align: center;
  color: #333;
  text-decoration: underline;
  position: relative;
  z-index: 1;
}
.rsv {
  text-align: center;
  margin: 2rem 0;
}
.rsv-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.rsv-phone {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #d32f2f;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/*Media Queries*/

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

.js #menu {

display:none;

}

.js .slicknav_menu {

display:block;

}

/* 結露カテゴリ */

.keturo_thum + p {
	clear:both;
}

.keturo_thum {
	margin:10px 10px 0 0;
}

.keturo {
	width:48%;
	float:left;
	margin:0 0 0 7px !important;
	padding:0 !important;
	text-align:center;
}
.keturo img {
	width:98%;
	height:98%;
	position:relative;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
	border:3px solid #709605;
}
.keturo a:hover img {
    background-color: #000;
    opacity: 0.6;
}
.keturo p {
	font-size:18px;
	position:relative;
	text-align:center;
	padding:10px 0;
	margin:0 !important;
	width:100%;
}

.keturo p a {
	color:#fff;
	text-decoration:none;
}

.news {
	text-align:left !important;
}

}
