/*
Theme Name: Muku ver.2
Theme URI: https://muku-kenchiku.com/
Description: muku-kenchiku
Version: 2.0
Author: MOCHIDOME Kazuya
Author URI: https://otsukimi.net/
Tags: 
*/

/* @group temp */

/* @end */



/* @group mobilemenu ★★★★★★ */

/* ========== Header 基本 下線消去など若干修正========== */
#muku .site-header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 80px;
	z-index: 1010;
	bGackground-color: #fdfbf6;
	background-color: #fff;
	text-align: center;
}

.site-header .container {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:1rem;
	padding:0.50rem 1rem; 
	z-index: 1011;

	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

#header-logo {
	width: 148px;
	height: 20px;
	background-image: url(common/sitelogo_top.png);
	background-size: cover;
	text-indent: -9999px;
}


/* ===== PC用ナビ（新規） ===== */
.desktop-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.25rem; }
.desktop-nav__list > li > a { text-decoration: none; color: inherit; padding: .25rem 0; }


/* ========== ハンバーガー ========== */
.hamburger {
	--size: 28px;			/* ボタンの一辺 */
	--thickness: 2px;		/* 線の太さ */
	--gap: 8px;			/* 中央線から上下線までの距離（均等間隔）若干修正 */
	--duration: 300ms;

	position: relative;
	width: var(--size);
	height: var(--size);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	cursor: pointer;
	color: inherit;				/* 通常は親の文字色に従う */
	z-index: 1100;
}

/* 3本線（1要素＋擬似要素） */
.hamburger__bar,
.hamburger__bar::before,
.hamburger__bar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: var(--thickness);
	background: currentColor;
	border-radius: 999px;
	transition:
		transform var(--duration) ease,
		opacity var(--duration) ease,
		top var(--duration) ease;
}

/* 等間隔配置：中央線は中央、上下は ± --gap 値を若干修正 */
.hamburger__bar { top: 50%; transform: translateY(-50%); }
.hamburger__bar::before { top: calc(1% - var(--gap)); }
.hamburger__bar::after  { top: calc(40% + var(--gap)); }

/* 開いた時：Xに変形（色も濃く固定）中央を白に、上下を黒に修正 */
.hamburger.is-open { color:#111; } /* <-- オーバーレイ上でも見える色を強制 */
.hamburger.is-open .hamburger__bar { opacity: 1; color: #fff;}
.hamburger.is-open .hamburger__bar::before {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	color: #000;
}
.hamburger.is-open .hamburger__bar::after {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	color: #000;
}

/* 開いている間はボタンを右上に固定（Xとして使う） */
.hamburger.is-open {
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 1100; /* overlay(1001) より上に修正 */
}

/* ===== オーバーレイ（アニメーション対応） ===== */
.overlay{
	position:fixed;
	inset:0;
	z-index:1001;
	background:rgba(255,255,255,.8);
	backdrop-filter:saturate(300%) blur(4px);
	opacity:0; visibility:hidden; pointer-events:none;
	transition: opacity 340ms ease, visibility 0s linear 340ms;
	/* 念のため（最適化系の副作用対策） */
	will-change: opacity;
}
.overlay.is-open{
	opacity:1; visibility:visible; pointer-events:auto;
	transition: opacity 340ms ease; /* フェードインは即可視化 */
}

/* === メニュー項目（スライドイン）=== */
.overlay__list{ list-style:none; margin:70px 0 0 0; padding:0; text-align:center; }
.overlay__list > li > a{
	display:inline-block; padding:.75rem 0; margin:.25rem 0;
	font-size:clamp(16px,3.5vw,28px); text-decoration:none; color:#111;
}

.overlay__list > li.contactpage-m > a {
	padding: 7px 15px;
	dGisplay: block;
	font-weight: bold;
	color: #fff;
	background-color: #64523e;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}


/* 初期状態（閉じている間） */
.overlay:not(.is-open) .overlay__list > li{
	opacity:0; transform: translateY(8px);
}

/* 開いたときの最終状態＋段階的な遅延 */
.overlay.is-open .overlay__list > li{
	opacity:1; transform:none;
	transition: opacity 420ms ease, transform 420ms ease;
	color: #444;
}
.overlay.is-open .overlay__list > li:nth-child(1){ transition-delay: 60ms; }
.overlay.is-open .overlay__list > li:nth-child(2){ transition-delay: 120ms; }
.overlay.is-open .overlay__list > li:nth-child(3){ transition-delay: 180ms; }
.overlay.is-open .overlay__list > li:nth-child(4){ transition-delay: 240ms; }
.overlay.is-open .overlay__list > li:nth-child(5){ transition-delay: 300ms; }
.overlay.is-open .overlay__list > li:nth-child(6){ transition-delay: 360ms; }
.overlay.is-open .overlay__list > li:nth-child(7){ transition-delay: 420ms; }
.overlay.is-open .overlay__list > li:nth-child(8){ transition-delay: 480ms; }
.overlay.is-open .overlay__list > li:nth-child(9){ transition-delay: 540ms; }

/* ===== ブレークポイント：PCでは水平ナビ、モバイルではハンバーガー ===== */
@media (min-width: 768px){
	.desktop-nav { display: block; }			/* PCで表示 */
	.hamburger { display: none; }			/* PCで非表示 */
	.overlay { display: none !important; }	/* 念のため（可視化制御は visibility ですがPCでは使わない） */
}

@media (max-width: 767px){
	.desktop-nav { display: none; }			/* モバイルで非表示 */
}

/* モーションを控えめに（配慮） */
@media (prefers-reduced-motion: reduce){
	.overlay,
	.overlay__list > li,
	.hamburger > .hamburger__bar{ transition: none !important; }
}

/* 背景スクロール抑止（iOS含む） */
.body--nav-open { height: 100%; overflow: hidden; }

/* @end ★★★★★★ */



/* @group common */
html {
	scroll-padding-top: 80px!important;
	scroll-margin-top: 80px!important;
}

body#muku{
	background-color: #fff;
}

#muku h2,
#muku h2 span{
	font-family: Shimanami!important;
	font-size: 24px;
	font-weight: normal;
	line-height: 30px;
	color: #64523e;
}

#muku h2{
	margin: 60px 0 40px 0;
}

#muku h3,
#muku h3 span{
	font-family: Shimanami!important;
	font-size: 20px;
	font-weight: normal;
	line-height: 26px;
	color: #64523e;
}

#muku h3.smallertext{
	font-size: 18px;
}


#muku h3{
	margin: 60px 0 40px 0;
}

#muku h4,
#muku h4 span{
	font-family: Shimanami!important;
	font-size: 18px;
	font-weight: normal;
	line-height: 26px;
	color: #64523e;
}

#muku #contents{
	width: 92%;
	max-width: 600px;
	min-height: 400px;
	margin: 0 auto 0 auto;
}

#muku #contents.wide{
	width: 100%;
	max-width: 100%;
}

#muku #wrapper #contents.wider {
	width: 100%;
	max-width: 1300px;
	
}

#wrapper .wp-block-column figure {
	margin-left: 0px;
	margin-right: 0px;
}

#wrapper .entry .wp-block-column {
	margin-left: 0px;
}

#wrapper .wp-block-columns.padding0{
	gap: 0px 0px;
}

#wrapper .wp-block-columns.padding1{
	gap: 0px 1px;
}

#wrapper .wp-block-columns.padding2{
	gap: 0px 2px;
}

#wrapper .wp-block-columns.padding3{
	gap: 0px 3px;
}

#wrapper .wp-block-columns.padding5{
	gap: 0px 5px;
}

#muku .wp-block-columns.padding5 .wp-block-column{
	padding: 0px;
}

#muku #contents.wide .centertext{
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

#muku #contents.wide .centertext-wide{
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

#muku #contents .align-center{
	text-align: center;
}

#muku .workslist2 #contents {
	min-height: 5px;
}

#muku p.leadtext {
	font-size: 17px;
	line-height: 2em;
	max-width: 800px;
	margin: 0 auto 70px auto;
}

#muku #wrapper.maternityhome-map #contents {
	width: 100%;
	max-width: 1400px;
}

#muku #wrapper.maternityhome-map #contents .entry{
	width: 94%;
	max-width: 1360px;
	margin: 0 auto 0px auto;
}

#muku .split1,
#muku .split2,
#muku .split2-1,
#muku .split1-2,
#muku .split1-2-1,
#muku .split3,
#muku .split4,
#muku .splitM{
	margin-top: 90px;
}

#muku .split1.leadtext{
	margin-top: 0px;
}

#muku .off{
	display: none;
}
/* @end */


/* @group header */
#header{
	position: fixed;
	top: -1px;
	left: 0;
	width: 100%;
	hGeight: 105px;
	z-index: 100;
}

#header2{
	width: 94%;
	max-width: 1110px;
	height: 60px;
	margin: 0 auto;
	background-color: #fff;

	-moz-border-radius-bottomleft: 8px;
	-webkit-border-bottom-left-radius: 8px;
	border-bottom-left-radius: 8px;

	-moz-border-radius-bottomright: 8px;
	-webkit-border-bottom-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

#header2band{
	bGackground-color: rgba(0,0,0,0.9);
	bGackground-color: rgba(256,256,256,0.3);
	background: transparent;
	height: 60px;
}

#muku ul#menu-mainmenu{
	width: 600px;
	height: 24px;
	margin: 0px 0px 0 0;
}

#muku #sitename{
	width: 300px;
	height: 54px;
	margin: 2px 0px 0 10px;
}

#muku #sitename a{
	width: 300px;
	height: 54px;
}

#muku ul#menu-mainmenu li a {
	padding: 5px 1px;
	font-size: 14px;
	color: #64523e;
	font-weight: bold;
}

#muku ul#menu-mainmenu li.contactpage a {
	padding: 5px 10px;
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background-color: #64523e;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
/* @end */



/* @group pulldown-menu */
/* 1. 親メニューのliタグを基準位置（relative）に設定 */
.desktop-nav__list > li.menu-item-has-children {
	position: relative !important;
}

/* 2. 初期状態ではサブメニュー（プルダウン）を非表示にする */
.desktop-nav__list .sub-menu {
	position: absolute !important;
	top: 100% !important; /* 親メニューの真下に配置 */
	left: 0 !important;
	z-index: 999 !important;
	visibility: hidden !important;
	opacity: 0 !important;
	min-width: 220px; /* プルダウンの横幅（文字量に合わせて調整してください） */
	bGackground-color: #ffffff; /* 背景色（白） */
	background-color: rgba(255, 255, 255, 0.7); /* 背景色（白） */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* 視認性を上げるための影 */
	padding: 10px 0 !important;
	margin: 0 !important;
	list-style: none !important;
	text-align: left !important;
	/* ふわっと表示させるアニメーション */
	transition: opacity 0.2s ease, visibility 0.2s ease; 
}

/* 3. サブメニュー内の個別liのスタイル（横並びを防止） */
.desktop-nav__list .sub-menu li {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
}

/* 4. サブメニュー内のリンク（aタグ）の見た目を整える */
.desktop-nav__list .sub-menu li a {
	display: block !important;
	padding: 12px 20px !important;
	color: #333333 !important; /* 文字色（好みに合わせて変更してください） */
	font-size: 14px !important; /* 少し小さくして上品に */
	line-height: 1.4 !important;
	text-decoration: none !important;
	white-space: nowrap; /* テキストの途中で折り返さないようにする */
	transition: background-color 0.2s ease;
}

/* 5. サブメニュー内のリンクにマウスが乗った（ホバー）時の色 */
.desktop-nav__list .sub-menu li a:hover {
	background-color: #f5f5f5 !important; /* ホバー時の薄いグレー背景 */
	color: #c9933b !important; /* ホバー時の文字色（サイトのアクセントカラー等に変えてください） */
}

/* 6. 親メニューにマウスが乗った時にサブメニューを表示する */
.desktop-nav__list > li.menu-item-has-children:hover > .sub-menu {
	visibility: visible !important;
	opacity: 1 !important;
}
/* @end */



/* @group breadcrumb */
.breadcrumb {
	position: relative;
	margin: 0 auto 30px auto;
	width: 96%;
	max-width: 1190px;
}

#breadcrumb-area.withpict {
	bGackground-color: #fdfbf6;
	background-color: #fff;
}

#breadcrumb-area.withpict .breadcrumb {
	margin-bottom: 0;
	padding-top: 10px;
}

#breadcrumb-area.withpict .breadcrumb ul{
	margin-bottom: 0;
	padding-left: 2%;
}

.workslist .breadcrumb {
	margin-bottom: 0;
}

.single .breadcrumb,
.single-m-piece .breadcrumb,
.vision .breadcrumb,
.concept .breadcrumb {
	max-width: 1095px;
	line-height: 1.2em;
}

#wrapper.blog .breadcrumb.snd {
	display: none;
}

.archive #wrapper.blog .breadcrumb.snd {
	display: block;
}

#wrapper.blog .breadcrumb {
	margin-bottom: 0;
}

.breadcrumb  li{
	display: inline-block;
	margin-right: 10px;
	font-size: 13px;
	line-height: 1em;
	color: #666;
	padding: 5px 0 5px 0;
}

.breadcrumb  li:before{
	content: "> ";
	color: #aaa;
}

.breadcrumb  li:first-child:before{
	content: "";
}

.breadcrumb  li a{
	font-size: 13px;
	line-height: 1em;
	color: #1c5084;
}

.breadcrumb  li span{
	font-size: 13px;
	line-height: 1em;
	color: #999;
}

.breadcrumb  li a span{
	font-size: 13px;
	line-height: 1em;
	color: #1c5084;
}
/* @end */


/* @group maingraphic */
#muku #maingraphicband{
	background-color: #fff;
	padding: 0;
	position: relative;
}

#muku #maingraphicband #maingraphic {
	max-width: 1800px;
	width: 100%;
	height: auto;
	min-height: 500px;
}

#muku #maingraphicband #maingraphic.no-image {
	display: none;
}

/* @group simple-maingraphic */
#muku .privacy-policy #maingraphicband #maingraphic,
#muku .thanks #maingraphicband #maingraphic,
#muku .contact #maingraphicband #maingraphic
	height: 300px;
	min-height: 180px;
}

#muku .blog-index #maingraphicband #maingraphic{
	height: 140px;
	min-height: 140px;
}
/* @end */


/* @group common-layout */
#muku .photofull-main .titleunit {
	width: 100%;
}

#muku #titleband{
	height: 300px;
	width: 100%;
	margin: 70px 0 0 0;
	bGackground-color: #fdfbf6;
	background-color: #fff;
}

#muku #titlearea{
	width: 94%;
	max-width: 1160px;
	margin: 0 auto 0;
	padding: 130px 0 0;
}

#muku h1#pagetitle{
	font-family: Shimanami!important;
	font-weight: normal;
	font-size: 38px;
	line-height: 1.2em;
	text-align: center;
	margin: 0px 0px 10px 0px;
	padding: 0;
	color: #64523e;
}

#muku #subtitle{
	font-family: Shimanami!important;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	margin: 25px 0 0 5px;
	padding: 0;
	color: #888;
}

#muku #maingraphicband #maingraphic h1#pagetitle{
	fGont-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
	fGont-weight: bold;
	font-family: Shimanami!important;
	font-weight: normal;
	padding: 360px 6px 0 6px;
}

#muku h2#pagetitle{
	font-family: Shimanami!important;
	font-weight: normal;
	font-size: 32px;
	text-align: center;
	margin: 0px 0px 100px 0px;
}

#muku .photofull-main .titleunit h1{
	font-weight: normal;
	font-size: 48px;
	line-height: 1.1em;
	padding: 0;
	letter-spacing: 0px;
	margin: 0;
}

#muku .photofull-main .titleunit p br{
	display: none;
}

#muku .photofull-main.bg-white .titleunit{
	background-color: rgba(255,255,255,0.85);
}

#muku .photofull-main.bg-black .titleunit{
	background-color: rgba(0,0,0,0.85);
}
/* @end */


/* @group btn */

#muku .vk_button_link,
#muku .vk_button_link a,
#muku .vk_button_link span,
#muku .vk_button_link path{
	color: #fff;
}

a.btnDetails:after{
	font-family: "Font Awesome 5 Free";
	content: "";
	padding-left: 1px;
	font-weight: 1;
}

a.btnDetails:hover{
	background-color: rgba(127,153,223,0.5);
}

a.btnDetailsLarge{
	padding: 13px 30px 15px!important;
	margin: 0 1px;
	display: inline-block;
	color: #333;
	background: none;
	font-size: 16px;
	line-height: 1em;
	text-decoration: none;
	border: 1px solid #666;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

a.btnDetailsLarge:after{
	font-family: "Font Awesome 5 Free";
	content: "";
	padding-left: 1px;
	font-weight: 1;
}

a.btnDetailsLarge:hover{
	background-color: #fff;
	color: #000;
}
/* @end */


/* @group slittable */
figure.slittable table{
	clear: both;
	padding: 0px;
	font-size: 1em;
	line-height: 1.5em;
	text-align: left;
	vertical-align: text-top;
	width: 100%;
	border-bottom: 1px solid #888;
}

figure.slittable table th{
	vertical-align: text-top;
	border-top: 2px solid #000;
	border-left: none;
	border-right: none;
	border-bottom: none;
	padding: 3px 6px 3px 5px;
	font-size: 1.1em;
	font-weight: bold;
	color: #444;
	line-height: 1.5em;
}

figure.slittable table td{
	vertical-align: text-top;
	border-top: 1px solid #888;
	border-left: none;
	border-right: none;
	border-bottom: none;
	padding: 3px 8px 3px 8px;
	font-size: 1.1em;
	font-weight: normal;
	color: #444;
	line-height: 1.5em;
}
/* @end */


/* @group common */
p.text-v{
	writing-mode: vertical-rl;
	text-align: left;
}

p.text-v strong{
	writing-mode: vertical-rl;
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
	font-size: 20px;
	font-weight: normal;
	margin: 0 10px 0 10px;
	display: block;
}

.mh250 p.text-v,
.mh350 p.text-v{
	height: 250px!important;
	max-height: 90%!important;
}

p.text-v.mgn-vl{
	margin: 15% 2% 15% 25%!important;
	height: 350px!important;
	max-height: 90%!important;
	float: right;
	overflow: hidden;
}

p.text-v.mgn-vr{
	margin: 15% 25% 15% 2%!important;
	height: 365px!important;
	max-height: 95%!important;
	overflow: hidden;
}

.wp-block-columns.mh100,
.wp-block-columns.mh200{
	max-height: 250px;
	margin: 0 auto;
}

.wp-block-columns.mh150{
	max-height: 150px;
	margin: 0 auto;
}

.wp-block-columns.mh350{
	max-height: 350px;
	margin: 0 auto;
}

.wp-block-cover.mw1100{
	max-width: 1100px;
	height: 550px;
	margin: 0 auto;
}

#muku .wp-block-cover p.has-large-font-size{
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
	font-size: 20px;
	font-weight: normal;
	color: #fff;
}

.wp-block-image{margin-bottom:1em}

#muku #wrapper figcaption{
	width: 94%;
	margin: 5px auto 10px;
	font-size: 14px;
	line-height: 1.4em;
	text-align: center;
}

#muku #contents .bg-1{
	width: 100%;
	background-color: #ede7e0;;
}
/* @end */


/* @group layout */
#muku #contentsband{
	bGackground-color: #fdfbf6;
	background-color: #fff;
	margin-top: 0px!important;
}

#muku .split2 .block1{
	border-right: 1px solid #fff;
}

#muku .split1-2-1 .block1,
#muku .split1-2-1 .block2{
	border-right: 1px solid #fff;
}

#muku .split3 .block1,
#muku .split3 .block2{
	border-right: 1px solid #fff;
}

#muku .split3 .block1,
#muku .split3 .block2,
#muku .split3 .block3{
	border-right: 1px solid #fff;
}


#wrapper .photofull-v{
	pGosition: relative;
	display: flex;
	fGlex-direction: row-reverse;
	align-items: center; 
	justify-content: flex-end;
}

#wrapper .photofull-v .flexitem{
	display: flex-item;

	font-size: 14px;
	line-height: 1.5em;
	color: #444;
	letter-spacing: 0px;
	bGackground-color: #eee;

	wGidth: 300px;
	hGeight: 100px;
}

#wrapper .photofull-v .v-middle{
	font-weight: normal;
	position: absolute;
	display: flex-item;

	z-index: 2;
	font-size: 14px;
	line-height: 1.5em;
	padding: 8px 15px;
	color: #444;
	letter-spacing: 0px;
	background-color: #eee;
	tGop: 0;
	bGottom: 0;
	mGargin: auto;
	height: auto;

	width: 300px;
	hGeight: 100px;
}

#wrapper .photofull-v img{
	width: 100%;
	height: auto;
	margin: 0!important;
}
/* @end */


/* @group inside-layout */
#wrapper .inside60{
	padding-left: 20%;
	padding-right: 20%;
}

#wrapper .inside70{
	padding-left: 15%;
	padding-right: 15%;
}

#wrapper .inside80{
	padding-left: 10%;
	padding-right: 10%;
}

#wrapper .inside90{
	padding-left: 5%;
	padding-right: 5%;
}

#wrapper .inside95{
	padding-left: 2.5%;
	padding-right: 2.5%;
}

#wrapper .v-inside30-50{
	padding-top: 30px;
	padding-bottom: 50px;
}

#wrapper .v-inside40-60{
	padding-top: 40px;
	padding-bottom: 60px;
}

#wrapper .v-inside50-50{
	padding-top: 50px;
	padding-bottom: 50px;
}

#wrapper .v-inside50-70{
	padding-top: 50px;
	padding-bottom: 70px;
}

/* @end */


/* @group flex-layout */
.flex-cntn .flex-item .htitle,
.flex-cntn .flex-item strong{
	font-size: 24px;
	line-height: 1.3em;
	padding: 0px 0px 4px 0px;
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
	margin: 0!important;
	display: block;
	width: 100%;
}

.flex-cntn .flex-item{
	font-size: 13px;
	line-height: 1.6em;
	padding: 0px;
	display: block;
	width: 100%;
}
/* @end */


/* @group poster */
.photofull .catchtext .htitle{
	line-height: 1.3em;
	padding: 0px 0px 4px 0px;
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
	margin: 0!important;
}

.photofull .catchtext.t-white .htitle{
	color: #fff!important;
}

.photofull .catchtext .hsub{
	font-size: 12px;
	line-height: 1.5em;
	padding: 0px;
}

.photofull .catchtext.t-white .hsub{
	color: #fff;
}

#top_policy_1.photofull a{
	display: table;
	width: 100%;
	vertical-align: middle;
}

#top_policy_1.photofull a .catchtext{
	position: relative;
	vertical-align: middle;
}
/* @end */


/* @group blog */
#muku.blog #maingraphicband #maingraphic,
#muku .blog #maingraphicband #maingraphic {
	background: url(common/mainphoto_blog4.jpg) no-repeat center center;
	background-size: cover;
}

#muku.page-blog #maingraphicband #maingraphic {
	background-image: url(common/mainphoto_blog3.jpg);
	background-size: cover;
}

#muku #contents #mainblock{
	clear: both;
	width: 94%;
	max-width: 600px;
	margin: 0 auto 150px auto;
	float: none;
	overflow: hidden;
}

#muku #contents #subblock{
	clear: both;
	width: 96%;
	max-width: 700px;
	margin: 0 auto 50px auto;
	float: none;
}

#muku .blog #contents{
	width: 100%;
	max-width: 1100px;
	min-height: 500px;
}

#muku .blog #contents .entry{
	overflow: hidden;
}

#muku .blog #contents .titlearea{
	overflow: hidden;
	margin-bottom: 0px;
}

#muku .blog #contents .facearea{
	width: 100px;
	float: left;
}

#muku .blog #contents .facearea img.writerface{
	width: 80px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	border-radius: 100px;
}

#muku .blog #contents .datetime{
	text-align: left;
	margin: 15px 0 0 3px;
	font-size: 14px;
	color: #888;
	line-height: 1.2em;
}

#muku .blog #contents h2{
	text-align: left;
	margin: 0 0 30px 0;
	line-height: 1.2em;
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
}

#muku .blog #contents h2 a{
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
}
	
#muku .blog #contents p{
	text-align: left;
	margin: 0 0 10px 0px;
	font-size: 16px;
	line-height: 2.0em;
	color: #333;
}

#muku .blog #contents .postblock{
	margin-bottom: 120px;
}

#muku .blog #contents #sidebar h3{
	text-align: center;
	margin: 20px 0 20px 0px;
	font-size: 16px;
	line-height: 1.2em;
	color: #333;
}

#muku .blog #contents #sidebar ul{
	border-top: 1px solid #999;
	padding: 0;
}

#muku .blog #contents #sidebar ul li{
	border-bottom: 1px dotted #999;
	list-style-type: none;
}

#muku .blog #contents #sidebar ul li a{
	display: block;
	padding: 15px 4px 15px 6px;
	font-size: 14px;
	line-height: 1.3em;
}

#muku .blog #contents #sidebar ul li a:hover{
	background-color: rgba(0,252,255,0.5);
}

#muku .blog #contents .navigation .alignleft{
	float: left;
	display: inline-block;
}

#muku .blog #contents .navigation .alignright{
	float: right;
	display: inline-block;
}

#muku .blog #contents #sidebar ul.news-list{
	margin-bottom: 100px;
}

#muku .blog #subblock ul#cat-list{
	margin-bottom: 100px;
	border-top: none;
	text-align: center;
}

#muku .blog #subblock ul#cat-list li.cat-item{
	display: inline-block;
	margin: 3px 3px 20px 3px;
	border: 1px solid #999;
	wGidth: 220px;
	width: 46%;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;	
	height: 50px;
	vertical-align: bottom;
	text-align: center;
}

#muku .blog #subblock ul#cat-list li.cat-item a{
	display: block;
	margin: auto;
	padding: 15px 4px 0px 6px;
	font-size: 13px!important;
	line-height: 1.2em;
}

#muku .blog #subblock ul#cat-list li.cat-item:hover{
	background-color: rgba(0,252,255,0.5);
}

#muku .blog #subblock ul#cat-list li.cat-item a:hover{
	background-color: transparent;
}

#muku .blog #contents #sidebar ul.monthly-list{
	border-top: none;
	text-align: center;
}

#muku .blog #contents #sidebar ul.monthly-list li{
	display: inline-block;
	margin: 3px 3px 20px 3px;
	border: 1px solid #999;
	width: 110px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;	
}

#muku .blog #contents #sidebar ul li a{
	display: block;
	padding: 15px 4px 15px 6px;
	font-size: 14px;
	line-height: 1.3em;
}
/* @end */


/* @group form */
#muku #formblock{
	background-color: #e0dcd8;
	border: 1px solid #e0dcd8;
	padding: 10px 20px 50px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin: 0 auto 50px auto;
	width: 90%;
	max-width: 700px;
}

#muku #formblock h3 {
	margin: 40px 0 10px 0;
}

#muku #formblock p.caution{
	color: #b52729;
	margin: 40px 0 10px 0;
}



#formblock input.submitBtn{
	background-color: #64523e;
}

#formblock input.submitBtn:hover{
	background-color: rgba(127,153,223,0.5);
}

#formblock #area-genre .mwform-checkbox-field{
	width: 30%;
	display: inline-block;
	text-align: left;
	margin-left: 15%;
}
/* @end */


/* @group mainworkslist */
#muku .entry.lead p{
	width: 96%;
	max-width: 1100px;
	margin: 0px auto 20px;
}

#muku ul.mainworkslist{
	margin: 0px auto 0px auto;
	max-width: 1100px;
	padding: 0;
	text-align: center;
}

#muku ul.mainworkslist li{
	width: 32.5%;
	max-width: 500px;
	margin: 10px auto 20px;
	bGackground-color: #ccc;
	list-style-type: none;
	display: inline-block;
	padding: 0;
}

#muku ul.mainworkslist li .piecephotoarea .piecephoto{
	width: 100%;
	height: 180px;
}

#muku ul.mainworkslist li .piecephotoarea .piecephoto:hover{
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
}

#muku ul.mainworkslist li .workstext{
	width: 98%;
	max-width: 1090px;
	margin: 10px auto 0px;
	text-align: center;
	overflow: hidden;
	height: 100px;
}

#muku ul.mainworkslist li .workstext h3{
	fGont-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
	font-family: Shimanami!important;
	font-weight: bold;
	line-height: 1.2em!important;
	text-align: center;
	width: 100%;
	max-width: 100%;
	margin: 4px 0 0px 0;
}

#muku ul.mainworkslist li .workstext .archtype{
	line-height: 1.2em!important;
	text-align: center;
	width: 100%;
	max-width: 100%;
	margin: 0px 0 8px 0;
	color: #555;
	font-size: 12px;
}

#muku ul.mainworkslist li .workstext .catchcopy p{
	font-size: 14px;
	line-height: 1.1em;
	margin: 2px 0 15px 0;
	color: #888;
	text-align: center;
}

#muku ul.mainworkslist li .workstext .catchcopy p br{
	display: none;
}

#muku ul.mainworkslist li .workstext p{
	text-align: left;
	width: 65%;
	max-width: 100%;
	margin: 0px;
	line-height: 1.8em;
}

#muku ul.mainworkslist li .workstext .arcspec{
	width: 32%;
	float: right;
}

#muku ul.mainworkslist li .workstext .arcspec td{
	font-size: 11px;
	line-height: 1.5em;
	padding: 5px;
}

#muku ul.mainworkslist li .workstext .arcspec td.column-1{
	width: 45px;
}

#muku .spactable-single{
	width: 96%;
	max-width: 700px;
	margin: 50px auto 50px;
	border-top: 1px solid #aaa;
}

#muku .spactable-single td{
	font-size: 12px;
	line-height: 1.5em;
	padding: 5px;
}

#muku .spactable-single td.column-1{
	width: 100px;
}

#muku #wrapper.workslist .workstext.flex{

}

#muku #wrapper.workslist .workstext.flex .arcspec{
	width: 32%;
	float: right;
}

#muku #wrapper.workslist .workstext.flex .exptext{
	width: 100%;
	float: none;
}

#muku #wrapper.workslist .workstext.flex .exptext h3,
#muku #wrapper.workslist .workstext.flex .exptext p{
	width: 100%;
	margin-top: 0;
}
/* @end */


/* @group #jyosaninlist, #cliniclist, #hospitallist*/
#muku #jyosanin-list{
	text-align: center;
	width: 98%;
	margin: 0px auto 120px auto;
	padding: 40px 0 0 0;
}

#muku #jyosanin-list li{
	display: inline-block;
	width: 185px;
	list-style: none;
	margin: 3px 3px 35px 3px;
	padding: 10px 0 0 0;
	text-align: center;
	background-image: linear-gradient(0deg, #f8f8f4, #edeae3);
	-moz-box-shadow: 0px 0px 3px rgba(1, 1, 4, 0.3);
	-webkit-box-shadow: 0px 0px 3px rgba(1, 1, 4, 0.3);
	box-shadow: 0px 0px 3px rgba(1, 1, 4, 0.3);
}

#muku #jyosanin-list.josanshi-type li{
	padding: 0px 0 0 0;
}

#muku ul#jyosanin-list.accesslist .basicdata{
	height: 210px;
}

#muku #jyosanin-list.josanshi-type .mw-name-area{
	font-weight: bold;
	padding-top: 8px;
}

#muku #jyosanin-list.josanshi-type .titlerole-area{
	font-weight: bold;
	padding-top: 8px;
	font-size: 12px;
}

#muku #jyosanin-list.josanshi-type .mw-name-area{
	display: none;
}

#muku #jyosanin-list.josanshi-type .catch-area{
	text-align: center;
	font-family: Shimanami!important;
	padding-top: 4px;
	font-size: 14px;
}




#yGmns ul#jyosanin-list.accesslist li.north{
	background-image: linear-gradient(0deg, #f8f8f4, #c2d0cc);
}

#yGmns ul#jyosanin-list.accesslist li.central{
	background-image: linear-gradient(0deg, #f8f8f4, #eac4ab);
}

#yGmns ul#jyosanin-list.accesslist li.east{
	background-image: linear-gradient(0deg, #f8f8f4, #eac2c4);
}

#yGmns ul#jyosanin-list.accesslist li.south{
	background-image: linear-gradient(0deg, #f8f8f4, #c1b2c8);
}

#yGmns ul#jyosanin-list.accesslist li.fuji{
	background-image: linear-gradient(0deg, #f8f8f4, #b0cadc);
}

#muku ul#jyosanin-list.accesslist .iconpict{
	width: 60px;
	margin: 5px auto 3px auto;
}

#muku ul#jyosanin-list.accesslist .name-area{
	font-size: 16px;
	line-height: 1.1em;
	font-weight: bold;
	display: block;
	height: 40px;
	vertical-align: bottom;
}

#muku ul#jyosanin-list.accesslist .name-area .sub{
	font-size: 10px;
	font-weight: normal;
	display: block;
}

#muku ul#jyosanin-list.accesslist .address-area2{
	display: block;
	width: 98%;
	margin: 5px auto 0 auto;
	font-size: 10px;
	line-height: 1.2em;
}

#muku ul#jyosanin-list.accesslist .tel-area2{
	display: block;
	width: 94%;
	margin: 6px auto 0px auto;
	font-size: 10px;
	line-height: 1.2em;
}

.services-block{
	width: 100%;
}

.services-block td{
	padding: 5px 0;
	color: #bbb;
	width: 20%;
	vertical-align: middle;

	background-color: #f8f8f4;
	text-align: center;
	font-size: 8px;
	font-weight: normal;
	line-height: 1.2em;
	padding-bottom: 8px;
}

.services-block td.yes{
	background-color: #fff;
	color: #80735a;

	background-color: #af9b84;
	color: #fff;
}

#muku #cliniclist,
#muku #hospitallist{
	width: 92%;
	border-top: 2px #000 solid;
	margin: 0 auto 120px auto;
	padding: 0;
}

#muku #jyosaninlist li,
#muku #cliniclist li,
#muku #hospitallist li{
	list-style: none;
	padding: 0px 1px 0px 2px;
	border-bottom: 1px #555 solid;
}

#muku ul.accesslist .name-area{
	font-size: 16px;
	line-height: 1.1em;
	font-weight: bold;
}

#muku ul.accesslist .adrs-tel-block{
	line-height: 1.1em;
}

#muku ul.accesslist .address-area{
	width: 48%;
	display: inline-block;
	font-size: 14px;
	line-height: 1.1em;
}

#muku ul.accesslist .tel-area{
	margin: 0 0 0 0px;
	font-size: 14px;
	line-height: 1.1em;
}
/* @end */


/* @group sns-icons */
#muku ul.accesslist .sns-block{
	margin: 2px 0 20px 0;
}

#muku .web-area,
#muku .insta-area,
#muku .fb-area,
#muku .line-area,
#muku .tw-area{
	display: inline-block;
	margin: 0 6px 0 0px;
	width: 18px;
	height: 18px;
}

#muku a.web-area{
	background-image: url(common/sns_icons_web.png);
	background-size: cover;
	text-indent: -9999px;
}

#muku a.insta-area{
	background-image: url(common/sns_icons_inst.png);
	background-size: cover;
	text-indent: -9999px;
}

#muku a.fb-area{
	background-image: url(common/sns_icons_fb.png);
	background-size: cover;
	text-indent: -9999px;
}

#muku a.line-area{
	background-image: url(common/sns_icons_line.png);
	background-size: cover;
	text-indent: -9999px;
}

#muku a.tw-area{
	background-image: url(common/sns_icons_x.png);
	background-size: cover;
	text-indent: -9999px;
}

#muku #jyosaninlist span.none-done,
#muku #cliniclist span.none-done,
#muku #hospitallist span.none-done,
#muku ul li span.none-done{
	background-image: url(common/sns_icons_none.png);
	background-size: cover;
	text-indent: -9999px;
}
/* @end */


/* @group popuparea */
#muku .fancybox-inline .facepict-area{
	text-align: center;
}

#muku .fancybox-inline .facepict{
	text-align: center;
	width: 30%;
	margin: 5px auto 8px auto;
}

#muku .fancybox-inline .mw-area{
	text-align: center;
	font-size: 10px;
	line-height: 1.2em;
	margin: 0px 0 2px 0;
}

#muku .fancybox-inline .name-area{
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.2em;
	margin: 0px 0 16px 0;
}

#muku .fancybox-inline .maintext-area{
	text-align: left;
	font-size: 13px;
	line-height: 1.7em;
	width: 90%;
	margin: 0px auto 10px auto;
}

#muku .fancybox-inline .titlerole-area{
	text-align: center;
	font-weight: bold;
	padding-top: 8px;
	font-size: 12px;
	line-height: 1.2em;
}

#muku .fancybox-inline .mw-name-area{
	text-align: center;
	padding-top: 0px;
	font-size: 10px;
	line-height: 1.2em;
}

#muku .fancybox-inline .catch-area{
	text-align: center;
	font-family: Shimanami!important;
	padding-top: 6px;
	padding-bottom: 10px;
	font-size: 18px;
	line-height: 1.3em;
}
/* @end */



/* @group tabmap */
#contents .tabmap ul {
	max-width: 700px;
	margin: 0 auto 0px auto;
}

#contents .tabmap .wp-block-getwid-tabs__tab-content {
	border: none;
	padding: 0.5em;
}

#contents .SfQLQb-QClCJf-giiMnc .i4ewOd-pzNkMb-tJHJj .i4ewOd-pzNkMb-r4nke-LS81yb.di8rgd-TEhSn {
	height: 1px!important;
}

.SfQLQb-QClCJf-giiMnc .i4ewOd-pzNkMb-tJHJj .i4ewOd-pzNkMb-r4nke-LS81yb.di8rgd-TEhSn {
	height: 1px!important;

}
/* @end */



/* @group single-m-piece */
#muku.single-m-piece .wp-block-image{
	margin-top: 30px;
}

#muku.single-m-piece h2.catchcopy{
	margin: 0;
}

#muku.single-m-piece h2.catchcopy p{
	font-family: Shimanami!important;
	font-size: 24px;
	font-weight: 600;	
	text-align: center;
	line-height: 1.2em;
	margin-bottom: 55px!important;
}

#muku.single-m-piece #photographer{
	width: 96%;
	font-size: 13px;
	line-height: 1.2em;
	max-width: 800px;
	margin: 0px auto 5px auto;
	color: #333;
	text-align: right;
}

#muku ul#m-piece-list.workslist li .workstext h3{
	font-size: 13px;
	line-height: 1.2em!important;
	font-weight: normal;
	height: 30px;
}
/* @end */


/* @group single-piecce */
#muku.single-piece h1#housename{
	fGont-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
	font-family: Shimanami!important;
	font-weight: bold;
	width: 100%;
	margin: 0px;
	padding: 360px 6px 0 6px;
	color: #FFF;
	font-size: 32px;
	text-align: center;
	text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 3px;
}

#muku.single-piece .archtype-title{
	fGont-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
	font-family: Shimanami!important;
	font-weight: bold;
	line-height: 1.2em!important;
	text-align: center;
	width: 100%;
	max-width: 100%;
	margin: 4px 0 0 0;
	color: #FFF;
	text-shadow: rgba(0, 0, 0, 0.7) 0px 0px 3px;
	font-size: 14px;
}

#muku.single-piece .twin{
	width: 100%;
	max-width: 700px;
	margin: 0 auto 30px auto;
	overflow: hidden;
}

#muku.single-piece .twin img{
	width: 50%;
	display: inline-block;
	float: left!;
}

#muku.single-piece .twin img:first-child{
	margin-left: -5px;
}

#muku.single-piece .twin br{
	display: none;
}
/* @end */


/* @group  conceptblock */
h3.conceptblock{
	margin: 100px auto 30px;
}

.conceptblock{
	max-width: 800px;
	margin: 0 auto;
}

.conceptblock .wp-block-column{
	text-align: center;
	margin: 0 auto;
}

.conceptblock .wp-block-column figure{
	margin: 10px 2px 30px;
}
/* @end */


/* @group submenu */
#muku .submenu li a{
	color: #546734;
}

#muku .submenu li.current-menu-item a{
	background-color: rgba(84,103,52,0.2);
}

#muku .submenu li a:hover{
	background-color: rgba(0,252,255,0.5);
	color: #546734;
}
/* @end */


/* @group concept */
.concept #contents p{
	width: 92%;
	max-width: 600px;
}

#muku .concept #contents .wp-block-image.center{
	width: 100%;
	max-width: 600px;
	margin: 40px auto 35px auto;
}

#muku .concept #contents h2:first-child{
	margin-top: 0;
}

#muku .concept #contents h3{
	margin-bottom: 30px!important;
}
/* @end */


/* @group policy */
#muku .policy #policy_1f.flex-cntn .flex-item.flex-1{
	background: url(images/policy_1_f.jpg) center center;
	background-size: cover;
}

#muku .policy #policy_3f.flex-cntn .flex-item.flex-1{
	background: url(images/policy_3_f.jpg) center center;
	background-size: cover;
}

#muku .policy #policy_4f.flex-cntn .flex-item.flex-1{
	background: url(images/policy_4_f.jpg) center center;
	background-size: cover;
}

#muku .policy #policy_5f.flex-cntn .flex-item.flex-1{
	background: url(images/policy_5_f.jpg) center center;
	background-size: cover;
}

#muku .policy #policy_6f.flex-cntn .flex-item.flex-1{
	background: url(images/policy_6_f.jpg) center center;
	background-size: cover;
}
/* @end */


/* @group aboutus */
.aboutus table td.column-1{
	width: 110px;
	font-size: 13px;
}

.about_us .profile .wp-block-column{
	vertical-align: top;
	padding: 8px;
}

.about_us .profile .wp-block-column .wp-block-image{
	margin: 0;
}

.about_us .profile .wp-block-column td{
	bGackground-color: #ddd;
	font-size: 12px;
}
/* @end */


/* @group footer */
#muku #footband {
	bGackground-color: #dfcaad;
	bGackground-color: #c9b293;
	background-color: #64523e;
}

#muku #foot{
	overflow: hidden;
	width: 96%;
	max-width: 1000px;
	margin: 0 auto 0 auto;
	position: relative;
	padding: 80px 0 80px 0;
}

#foot .site-title{
	width: 293px;
	wGidth: 100%;
	display: inline-block;
	hGeight: 40px;
	margin: 0px 0px 0px 0px;
	float: left;
}

#foot .site-title a#footersitelogo{
	display: block;
	width: 293px;
	height: 55px;
	margin-bottom: 20px;
	background-size: contain;
	text-indent: -9999px;
	background: url(common/sitelogo_footer.png) no-repeat center left;
	background-size: contain;
}

#foot address{
	font-size: 13px;
	line-height1.5em;
	color: #fff;
	font-style: normal;
}

#foot #footermenu{
	width: 200px;
	display: inline-block;
	float: right;
}

#foot #footermenu ul{
	padding: 0;
}

#foot #footermenu ul{
	padding-left: 0;
}

#foot #footermenu #menu-mainmenus ul{
	margin-top: 10px;
}

#foot #footermenu ul li{
	list-style: none;
}

#foot #footermenu ul li a{
	font-weight: bold;
	font-size: 13px;
	color: #fff;
	margin-bottom: 20px;
}

#foot #footermenu ul li li a{
	font-weight: normal;
	font-size: 12px;
	margin-bottom: 0px;
	color: #fff;
}

#foot #footermenu #menu-mainmenus{
	display: flex;
	align-items: flex-start; /* ← これで上揃え */
}

#foot #footermenu #menu-mainmenus > li{
	margin-right: 20px;
	bGackground-color: #aaa;
}

#foot #snsicons{
}

#foot #snsicons img{
	width: 28px;
	hGeight: 30px;
	margin: 0px 5px 0 0;
	fGloat: left;
}

#foot address #address{
	text-align: left;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	color: #fff;
	float: right;
}

#muku #foot address #footblock{
	width: 100%;
	text-align: center;
	font-weight: normal;
	font-style: normal;
	color: #fff;
}

#foot address #footblock a{
	color: #fff;
}

#muku #wrapper .pc,
#muku #wrapper .mobile{
	color: #fff;
}

#muku #foot .telnum{
	color: #fff;
}

#muku #foot a .telnum{
	color: #fff;
}

#muku #credit{
	clear: both;
	margin: 2px auto 0;
	padding-bottom: 5px;
	width: 98%;
	max-width: 1000px;
	font-size: 12px;
	color: #fff;
	text-align: center;
}

#muku #credit .pc,
#muku #credit .pc a{
	font-size: 12px;
	color: #eee;
}

#muku #credit .pc a:hover{
	color: #fff;
}

#muku .page_top_btn {
	position: fixed;
	right: 2%;
	bottom: 3%;
	z-index: 99999;
	width: 40px;
	height: 40px;
	color: transparent;
	border: none;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	background-color: #8e6a46;
	box-shadow: none;
	background-image: var(--ver_page_top_button_url);
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	text-decoration: none;
	content: "↑";
}
/* @end */


/* @group about_us */
#muku .about table td.column-1{
	width: 90px;
	font-weight: bold;
	font-size: 13px;
}

#muku .about_us ul.staff{
	width: 96%;
	max-width: 900px;
	margin: 0 auto 60px auto;
	text-align: center;
}

#muku .about_us ul.staff li{
	width: 200px;
	font-size: 13px;
	display: inline-block;
	margin: 5px 10px 30px;
	vertical-align: top;
}

#muku .about_us ul.staff li .piecephoto{
	width: 100%;
	height: 150px;
}

#muku .about_us ul.staff li .workstext{
	width: 100%;
	margin-top: 7px;
	height: 130px;
}

#muku .about_us ul.staff li .workstext .belong{
	font-size: 12px;
	line-height: 1.1em;
	color: #555;
	margin-bottom: 1px;
	mGin-height: 30px;
}

#muku .about_us ul.staff li .workstext h3{
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
	margin: 0 0 2px 0!important;
	font-size: 24px;
	line-height: 1em;
}

#muku .about_us ul.staff li .workstext .name-e{
	font-size: 12px;
	line-height: 1.2em;
	color: #888;
	margin-bottom: 10px;
}

#muku .about_us ul.staff li .workstext .detail p{
	font-size: 13px;
	line-height: 1.2em;
	color: #333;
	text-align: center;
}
/* @end */


/* @group birth */
#muku .birth .box-josanshicare,
#muku .birth .box-preg,
#muku .birth .box-birth-1,
#muku .birth .box-birth-2,
#muku .birth .box-birth-3,
#muku .birth .box-afterbirth{
	margin: 0 auto 0 auto!important;
	border: none!important;
	border-radius: 0!important;
}

#muku .birth .smb-box__background{
	border: none!important;
	border-radius: 0!important;
}

#muku .birth .smb-box{
	border: none!important;
	border-radius: 0!important;
}

#muku .birth .box-josanshicare{
	bGackground-color: #eee;
}

#muku .birth .box-preg{
	bGackground-color: #ddd;
}

#muku .birth .box-birth-1,
#muku .birth .box-birth-2,
#muku .birth .box-birth-3{
	bGackground-color: #bbb;
}

#muku .birth .box-afterbirth{
	bGackground-color: #999;
}
/* @end */


/* @group home */
#muku.home .site-header {
	background-color: transparent;
	background-color: #fff;
}

.home #wrapper #contents{
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.home .newsblock,
.home .inquiryblock{
	max-width: 450px;
	margin: 0 auto;
}


/* @group slide */
#muku.home #maingraphicband{
	width: 100%;
	text-align: center;
	margin-top: 80px;
}

#muku.home #maingraphicband .slidercover{
	max-width: 1800px;
	margin: 0 auto;
}

#muku.home .flexslider{
	margin-bottom: 0;
}

#muku.home .flex-control-nav{
	bottom:20px;
	text-align:center
}

#muku.home .flex-control-paging li a{
	width:11px;
	height:11px;
	display:block;
	background:#aaa;
	background:rgba(255,255,255,.4);
	cursor:pointer;
	text-indent:-9999px;
	-o-box-shadow:inset 0 0 3px rgba(0,0,0,.3);
	box-shadow:inset 0 0 3px rgba(0,0,0,.3);
	border-radius:20px
}

#muku.home .flex-control-paging li a.flex-active{
	background:#fff;
	-o-box-shadow:inset 0 0 3px rgba(0,0,0,.5);
	box-shadow:inset 0 0 3px rgba(0,0,0,.5);
	background-color: rgba(255,255,255,1);
}

#muku.home #maingraphicband #topcopy{
	position: absolute;
	width: 120px;
	height: 336px;
	top: -4%;
	bottom: 0;
	margin: auto;
	margin-left: -60px;
}

.home .leadcopy{
	width: 90%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
	font-size: 18px;
	line-height: 1.8em;
}
/* @end */


.home #maingraphicband #pagetitle{
	width: 60%;
	height: 190px;
	position: absolute;
	left: 20%;
	top: 25%;
	background: url(common/toplogo.png) no-repeat center center;
	background-size: contain;
	text-indent: -9999px;
}

.home h2{
	font-size: 26px;
	margin: 60px 0 40px 0;
}

.home #wrapper h2 .smaller{
	display: block;
	font-size: 13px!important;
	font-weight: normal;
	color: #4c7d99;
}

.home #wrapper h3{
	text-align: center;
	margin-top: 10px;
	margin-bottom: 15px;
	color: #546734;
	letter-spacing: -1px;
}

.home #wrapper #eventblock h3{
	text-align: left;
}

.home #wrapper .fullband{
	padding: 30px 0 0px 0;
}

.home #wrapper #newsblock.fullband{
	padding: 5px 0 60px 0;
	background-color: #fff;
}


/* @group news */
.home #wrapper table.news{
	border-top: 1px solid #aaa;
	margin: 0 auto!important;
	max-width: 700px;
	width: 80%;
}

.home #wrapper table.news td{
	padding: 10px 0 10px 0;
	border-bottom: 1px solid #aaa;
	text-align: left;
	vertical-align: middle;
}

.home #wrapper table.news td.td-photo{
	padding-right: 15px;
}

.home #wrapper table.news td .newsphotoarea{
	width: 80px;
	height: 60px;
}

.home #wrapper table.news td .piecephoto{
	width: 80px;
	height: 60px;
}
/* @end */


/* @group works */
.home #worksblock .split1{
	overflow: visible;
	padding-bottom: 30px;
	width: 100%!important;
	max-width: 1100px!important;
}

.home #worksblock .swiper-container{
	max-width: 100%!important;
	width: 100%!important;
	width: 1100px!important;
	background-color: #eee;
}

.home #worksblock .swiper-wrapper{
	max-width: 100%!important;
	}

.home #worksblock .swiper-slide{
	width: 30%!important;
	}

.home #wrapper #worksblock.fullband{
	bGackground-color: #fdfbf6;
	background-color: #fff;
}

.home #wrapper ul.topworks{
	margin: 20px auto 0!important;
	max-width: 1200px;
	text-align: center;
}

.home #wrapper #getwid-block{
	width: 94%;
	max-width: 1100px;
	margin: 0 auto;
}

#muku.home .wp-block-getwid-post-carousel__post{
	text-align: center;
}

#muku.home .wp-block-getwid-post-carousel .wp-block-getwid-post-carousel__post div{
	width: 100%!important;
	margin:1px auto;
	}

#muku.home #wrapper .wp-block-getwid-post-carousel .wp-block-getwid-post-carousel__post-title{
	margin:0;
	font-size: 14px;
	line-height: 1.3em;
	text-align: center;
	height: 35px;
}

.home #wrapper .slick-initialized .slick-slide p{
	display: none;
}

.home #wrapper #worksblock li{
	list-style-type: none;
	text-align: center;
}

.home #wrapper .slick-dotted.slick-slider{
	margin-bottom:30px;
}

#wrapper .slick-prev,
#wrapper .slick-next{
    top: 40%;

    width: 25px;
    height: 25px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    opacity: .30;
}
/* @end */

/* @homeend */


/* iPads (portrait) ----------- */
@media screen and (min-width : 680px) 
and (max-width : 990px) {

/* @group header */

#muku #header2band #header2{
	height: 50px;
	padding: 0;
}

#muku #sitename,
#muku #sitename a{
	width: 200px;
	height: 46px;
}

#muku #wrapper ul#menu-mainmenu{
	width: 550px;
	mGargin-top: 2px;
}

#muku #wrapper ul#menu-mainmenu li a {
	padding: 0 0px;
	font-size: 11.2px;
}

#muku .page_top_btn {
	position: fixed;
	right: 2%;
	bottom: 3%;
	z-index: 99999;
	width: 40px;
	height: 40px;
	color: transparent;
	border: none;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	background-color: #8e6a46;
	box-shadow: none;
	background-image: var(--ver_page_top_button_url);
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	text-decoration: none;
}
/* @end */


/* @group common layout */
#muku #wrapper #contents {
	width: 92%;
}

#muku #wrapper #contents.wide {
	width: 100%;
}

article {

}

/* @end */


/* @group home */
.home #top_works_asahi{
	background: url(common/top_works_asahi_m.jpg) no-repeat center top;
	background-size: contain;
}

.home #top_works_mh{
	background: url(common/top_works_mh_m.jpg) no-repeat center top;
	background-size: contain;
}
/* @end */

}




/* iPhone ----------- */
@media screen and (max-width: 680px){

/* @group header */
#muku .site-header {
	height: 70px;
}

#muku #header2band{
	height: 70px;
	margin: 0;
	padding-top: 20px;
}

#muku #sitename{
	margin-top: 0px;
}

#muku #sitename,
#muku #sitename a{
	width: 200px;
	height: 42px;
}

#muku header #navswitch:hover,
#muku header #navswitch:hover i{
	color: #ccc;
}

#muku header #menu-mobilemenu{
	margin-top: 70px;
}

#muku #menu-mobilemenu li a:hover{
	bGackground-color: #eee!important;
	bGackground-color: rgba(0,252,255,0.5)!important;
	color: #444;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity:1;
}
/* @end */


/* @group footer */
#muku #foot{
	padding: 50px 0 40px 0;
}

#foot .site-title{
	margin: 0px auto 20px auto;
	float: none;
	text-align: center;
	width: 100%;
}

#foot .site-title a#footersitelogo{
	width: 293px;
	height: 55px;
	margin: 0 auto 20px auto;
	background-size: contain;
	text-indent: -9999px;
	background: url(common/sitelogo_footer.png) no-repeat center center;
	background-size: contain;
}

#foot #snsicons{
	padding-top: 5px;
	margin: 0px auto 20px auto;
	float: none;
}

#foot address #address{
	text-align: center;
	margin: 0px auto 20px auto;
	float: none;
}

#foot #footermenu {
	text-align: center;
}


#foot #footermenu {
	width: 200px;
	display: block;
	float: none;
	margin-right: auto;
	margin-left: auto;
}

#wrapper #foot #footermenu ul li{
	text-align: center;
}

/* @end */


#muku p.leadtext {
	width: 92%!important;
	line-height: 1.8em;
}

#muku .wp-block-columns {
	wGidth: 92%!important;
	margin-left: auto;
	margin-right: auto;
}

#muku .inside90 h2,
#muku .inside90 h3,
#muku .inside90 h4,
#muku .inside95 h2,
#muku .inside95 h3,
#muku .inside95 h4{
	text-align: center;
}

#muku #contents .mobilewidth{
	width: 92%;
	margin-left: auto;
	margin-right: auto;
}

#muku #contents .mobilewidth-narrow{
	width: 88%;
	margin-left: auto;
	margin-right: auto;
}

#muku #contents .mobile-center{
	text-align: center;
	font-weight: bold;
}

#wrapper .inside90{
	padding-left: 1%;
	padding-right: 1%;
}

#muku ul#jyosanin-list.accesslist .basicdata {
	height: 230px;
}

#muku ul.accesslist .address-area{
	width: 98%;
	display: block;
	margin-top: 8px;
}

#muku #jyosaninlist li,
#muku #cliniclist li,
#muku #hospitallist li{
	border-bottom: 1px #888 solid;
}

#muku ul.accesslist .name-area{
	font-size: 15px;
	line-height: 1.1em;
}

#muku ul.accesslist .address-area{
	font-size: 13px;
	line-height: 1.1em;
	margin: 8px 0 0 0;
}

#muku ul.accesslist .tel-area{
	font-size: 13px;
	line-height: 1.1em;
	margin: 0;
}


/* @group common layout */
#muku #wrapper #contents {
	width: 92%;
}

#muku #wrapper #contents.wide {
	width: 100%;
}
/* @end */


#muku .mw300 img{
	max-width: 300px;
}

#muku .has-3-columns .wp-block-getwid-instagram__item {
	width: 50%;
}

#muku .has-spacing-small .wp-block-getwid-instagram__item {
	padding: 1px;
}

#muku.single-piece #maingraphicband #maingraphic {
	height: 400px !important;
}

#muku.single-piece h1#housename {
	padding: 430px 6px 0 6px;
	font-size: 26px;
	text-shadow: none;
	color: #000;
}

#muku.single-piece .archtype-title{
	margin: 0 0 0 0;
	font-size: 12px;
	margin: 6px 0 0 0;
	text-shadow: none;
	color: #000;
}

#muku.single-piece #contents{
	margin-top: 70px;
}

#muku.single-piece .breadcrumb {
	width: 100%;
}

#muku.single-piece .breadcrumb ul{
	width: 92%;
	margin: 0px auto;
	padding-left: 0px;
}

#muku h1#pagetitle{
	font-size: 28px;
}

#muku #maingraphicband #maingraphic {
	min-height: 300px;
}

#muku #maingraphicband #maingraphic h1#pagetitle{
	padding: 180px 6px 0 6px;
	font-size: 24px;
}

#muku .blog-index #maingraphicband #maingraphic h1#pagetitle {
	padding: 70px 6px 0 6px!important;
}

#muku.page #contents{
	width: 100%;
	max-width: 100%;
}

#muku.page #contents .entry{
	width: 92%;
	max-width: 92%;
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

#muku.page .workslist #contents{
	width: 100%;
	max-width: 100%;
	padding-top: 0;
}

#muku.page #wrapper p{
	width: 94%;
	margin: 0 auto 15px;
}

#muku #foot #footermenu #menu-mainmenus {
	display: block;
}

#muku #foot #footermenu #menu-mainmenus ul.sub-menu{
	display: none;
}

#muku .page_top_btn {
	position: fixed;
	right: 2%;
	bottom: 3%;
	z-index: 99999;
	width: 40px;
	height: 40px;
	color: transparent;
	border: none;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	background-color: #8e6a46;
	box-shadow: none;
	background-image: var(--ver_page_top_button_url);
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	text-decoration: none;
}


/* @group about-us */
#unhida #contents .mw300 img,
#muku #contents .profile-data .mx300 img{
	max-width: 120px;
	background-color: #333;
}

#contents .profile-data h2,
#contents .profile-data h3,
#contents .profile-data h4,
#contents .profile-data h5{
	text-align: center;
}

#contents .profile-data p{
	max-width: 300px;
	margin: 0 auto 50px;
	text-align: center;
}
/* @end */


/* @group blog */
#muku .blog #contents .facearea{
	width: 80px;
	float: left;
}

#muku .blog #contents .facearea img.writerface{
	width: 70px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	border-radius: 100px;
}

#muku .blog #contents .datetime{
	margin: 2px 0 0 3px;
	font-size: 14px;
	line-height: 1.2em;
}

#muku .blog #contents h2{
	margin-bottom: 20px;
}
/* @end */


#muku #wrapper h2{
	font-size: 20px;
}

#muku #wrapper h2#pagetitle {
	font-size: 28px;
	margin: 0px 0px 60px 0px;
}

.mobileblock{
	max-width: 86%;
}

#wrapper .mobileblock .wp-block-column{
	flex-basis:46%!important
}

#wrapper .mobileblock .wp-block-column:first-child,
#wrapper .mobileblock .wp-block-column:nth-child(2n),
#wrapper .mobileblock .wp-block-column{
	width: 46%!important;
	bGackground-color: #ccc;
}


/* @group posterimage */
.photofull{
	margin-bottom: 0px!important;
}

.photofull .catchtext{
	margin-bottom: 0px!important;
}

.photofull .catchtext{
	font-size: 16px;
	line-height: 1.5em;
	letter-spacing: 2px;
	padding: 4px 2%;
	color: #222;
	letter-spacing: 0px;
}

.photofull .catchtext h3{
	font-size: 14px;
	line-height: 1.3em;
	padding: 0px 0px 4px 0px;
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
	margin: 0!important;
}

.photofull .catchtext.t-white h3{
	color: #fff!important;
}

.photofull .catchtext .htitle{
	font-size: 15px;
	line-height: 1.3em;
	padding: 0px 0px 4px 0px;
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-family: Shimanami!important;
	margin: 0!important;
}

.photofull .catchtext.t-white .htitle{
	color: #fff!important;
}

#muku .photofull .catchtext.loc-top-left{
	top: 30%;
	left: 1%;
}

#muku .photofull .catchtext.loc-top-center{
	top: 30%;
	width: 96%;
	left: 0;
}

#muku .photofull .catchtext.loc-top-right{
	top: 30%;
	right: 1%;
}

#muku .photofull .catchtext.loc-middle-left{
	top: 30%;
	left: 1%;
}

#muku .photofull .catchtext.loc-middle-center{
	top: 30%;
	width: 96%;
	left: 0;
}

#muku .photofull .catchtext.loc-middle-right{
	top: 30%;
	right: 1%;
}

#muku .photofull .catchtext.loc-bottom-left{
	bottom: 30%;
	left: 1%;
}

#muku .photofull .catchtext.loc-bottom-center{
	bottom: 30%;
	width: 96%;
	left: 0;
}

#muku .photofull .catchtext.loc-bottom-right{
	bottom: 30%;
	right: 1%;
}
/* @end */


/* @group mainworklist */
#muku ul.mainworkslist li {
	width: 47.5%;
}

#muku ul.mainworkslist li .piecephotoarea .piecephoto{
	width: 100%;
	height: 110px;
}

#muku ul.mainworkslist li .workstext h3 {
	font-size: 15px;
	line-height: 1.2em !important;
	margin: 2px 0 4px 0;
}

#muku ul.mainworkslist li .workstext p{
	width: 100%;
	margin: 0px;
	line-height: 1.8em;
	float: none;
}

#muku ul.mainworkslist li .workstext .catchcopy {
	font-size: 12px;
	line-height: 1.3em;
}

#muku ul.mainworkslist li .workstext .catchcopy br{
	display: none;
}

#muku ul.mainworkslist li .workstext .arcspec{
	width: 100%;
	float: none;
	dGisplay: none;
}

#muku #wrapper.workslist .workstext.flex .arcspec{
	width: 90%;
	float: none;
	margin: 0 auto;
}

#muku #wrapper.workslist .workstext.flex .exptext{
	width: 100%;
	float: none;
	margin-bottom: 20px;
}
/* @end */


/* @group piece */
#muku.single-piece #maingraphicband {
	height: 400px;
}

#muku.single-piece #wrapper .entry,
#muku.single-m-piece #wrapper .entry{
	width: 100%;
	margin: 0 auto;
}

#muku.single-piece #wrapper .entry p,
#muku.single-m-piece #wrapper .entry p{
	width: 94%;
	margin: 0 auto 15px;
}
/* @end */


/* @group workslist */

#muku ul.mainworkslist li .workstext{
	width: 94%;
	margin: 5px auto 0px;
}

#muku.single-piece #maingraphicband #maingraphic {
	display: block;
	width: 100%;
	margin: 0px auto;
}

#muku .photofull-main .titleunit,
#muku .photofull-main .titleunit p{
	text-align: center;
	bGackground-color: #aaa;
}

#muku #wrapper ul.workslist li{
	width: 175px;
	height: 190px;
	margin: 2px 2px 18px 1px;
}

#muku #wrapper ul.workslist li .piecephotoarea .piecephoto{
	overflow: hidden;
	width: 100%;
	height: 124px;
}

#muku #wrapper ul.workslist li .workstext{
	margin: 15px 15px 0 15px;
	padding: 0;
}

#muku #wrapper ul.workslist li .workstext h3{
	fGont-weight: bold;
	margin: 0;
	font-size: 15px;
	line-height: 1.2em;
	height: 35px;
}

#muku #wrapper ul.workslist li .workstext .detail p{
	margin: 10px 0 0 0;
	font-size: 13px;
	lGine-height: 1em;
}

#muku #wrapper ul.workslist li .workstext .detail p br{
	display: none;
}
/* @end */


/* @group media_workslist */

#muku.single-piece #maingraphicband #maingraphic {
	display: block;
	width: 100%;
	max-width: 1400px;
	margin: 0px auto;
}

#muku .photofull-main .titleunit,
#muku .photofull-main .titleunit p{
	text-align: center;
}

#muku #wrapper ul#mediadata.workslist li{
	width: 140px;
	height: 200px;
	margin: 10px 2px 10px 2px;
	border: none;
}

#muku #wrapper ul#mediadata.workslist li.u2{
	width: 140px;
	height: 200px;
	margin-bottom: 18px;
	margin: 10px 2px 10px 2px;
	border: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

#muku #wrapper ul#mediadata.workslist li .piecephotoarea .piecephoto{
	overflow: hidden;
	width: 100%;
	height: 140px;
}

#muku #wrapper ul#mediadata.workslist li.u2 .piecephotoarea{
	height: 179px;
}

#muku #wrapper ul#mediadata.workslist li .workstext{
	mGargin: 6px  5px 0 5px;
	width: 96%;
	margin: 6px  auto 0 auto;
}

#muku #wrapper ul#mediadata.workslist li.u2 .workstext{
	margin: 6px  3px 0 3px;
}

#muku #wrapper ul#mediadata.workslist li.u1 .workstext{
	margin: 6px  5px 0 5px;
}

#muku #wrapper ul#mediadata.workslist li .workstext h3{
	font-weight: bold;
	margin: 0;
	font-size: 12px;
	line-height: 1.2em;
	height: 35px;
}

#muku #wrapper ul#mediadata.workslist li .workstext .detail p{
	margin: 10px 0 0 0;
	font-size: 13px;
	lGine-height: 1em;
}

#muku #wrapper ul#mediadata.workslist li .workstext .detail p br{
	display: none;
}
/* @end */

/* @group home */
.home #header{
	height: 1px!important;
}

.home #maingraphicband{
	position: relative;
	text-align: center;
	width: 100%;
	margin-top: 60px!important;
}

.home #maingraphicband #pagetitle{
	width: 60%;
	height: 170px;
	position: absolute;
	left: 20%;
	top: 35%;
	background: url(common/toplogo.png) no-repeat center center;
	background-size: contain;
	text-indent: -9999px;
}

.home #maingraphicband #scrollarrow{
	position: absolute;
	left: 35%;
	top: 75%;
	width: 30%;
}



.home header #menu-mobilemenu{
	mGargin-top: 0;
}

#muku.home #maingraphicband #topcopy{
	position: absolute;
	width: 100px;
	height: 280px;
	top: 0;
	bottom: 0;
	margin: auto;
	margin-left: -50px;
	margin-top: 50%;
}

.home #wrapper #top_feature h3{
	height: 40px;
	margin-bottom: 15px;
}

.home #wrapper #top_feature p{
	height: 180px;
}

.home #wrapper #newsblock.fullband ul.news{
	width: 92%;
	margin: 0 auto!important;
}

.home #wrapper .fullband p{
	width: 94%;	
}

#wrapper #contents h3{
	margin-top: 10px;
	margin-bottom: 8px;
	font-size: 19px;
}

.home .photofull .catchtext.mloc-bottom{
	padding-top: 8px;
	padding-bottom: 30px;
}

.home .topbanner .wp-block-column.wp-block-column-is-layout-flow{
	bGackground-color: #ddd;
	padding-top: 0!important;
	padding-bottom: 0!important;
}

.home .topbanner{
	width: 70%;
	max-width: 250px;
	margin-left: auto;
	margin-right: auto;
}

.home .leadcopy{
	width: 70%;
	max-width: 450px;
	font-size: 15px;
}
/* @end */


}
