/*
Theme Name: fukurousan ver.3
Theme URI: https://fukurousan.net/
Description: fukurousan.net
Version: 3.0
Author: MOCHIDOME Kazuya
Author URI: https://otsukimi.net/
Tags: 
*/

/* @group temp */


/* @end */



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

/* ========== Header 基本 下線消去など若干修正========== */
#fuku .site-header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 80px;
	z-index: 1010;
	background:rgba(255,255,255,.85);
}

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

#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: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 */
body#fuku{
	background-color: #fff;
}


#fuku h2,
#fuku h2 span{
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-size: 24px;
	font-weight: normal;
	color: #000;
	line-height: 30px;
}

#fuku h3,
#fuku h3 span{
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-size: 20px;
	font-weight: normal;
	color: #000;
	line-height: 26px;
}

#fuku h4,
#fuku h4 span{
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-size: 18px;
	font-weight: normal;
	color: #000;
	line-height: 26px;
}

#fuku #contents{
	width: 96%;
	max-width: 700px;
	min-height: 500px;
	margin: 0 auto 0 auto;
}



#fuku #contents p a,
#fuku #contents td a{
	bGackground-color: rgba(84,103,52,0.15);
	background-color: rgba(0,252,255,0.3);
}

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

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

#fuku .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;
}

#fuku ul#menu-mainmenu{
	width: 680px;
	height: 24px;
	mGargin-top: 30px;
	margin: 5px 0px 0 0;
}

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

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

#fuku ul#menu-mainmenu li a {
	padding: 0 1px;
	font-size: 14px;
	font-weight: normal;
	color: #000;
	text-shadow: 0px 0px 3px #fff;
}

/* @end */

/* @group breadcrumb */

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

#breadcrumb-area.withpict {
	background-color: #f5f5f5;
}

#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;
}

#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;
}

.single-post #breadcrumb  li:nth-child(2){
	dGisplay: none;
}


/* @end */

/* @group maingraphic */
#fuku #maingraphicband{
	mGargin-top: 105px;
	background-color: #f5f5f5;
	padding: 0;
	position: relative;
}

#fuku #maingraphicband #maingraphic {
	max-width: 1600px;
	width: 100%;
	height: auto;
	min-height: 800px;
}

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

/* @group simple-maingraphic */

#fuku .about_us #maingraphicband #maingraphic{
	height: 460px;
	min-height: 140px;
}

#fuku .privacy-policy #maingraphicband #maingraphic,
#fuku .thanks #maingraphicband #maingraphic,
#fuku .contact #maingraphicband #maingraphic,
#fuku .workslist #maingraphicband #maingraphic{
	height: 140px;
	min-height: 140px;
}

#fuku .about_us #maingraphicband #maingraphic h1#pagetitle{
	top: 40%;
	padding: 200px 6px 0 6px;
	color: #fff;
	font-size: 32px;
	text-shadow: rgba(0,0,0,1) 0px 0px 5px;
}

#fuku .privacy-policy #maingraphicband #maingraphic h1#pagetitle,
#fuku .thanks #maingraphicband #maingraphic h1#pagetitle,
#fuku .contact #maingraphicband #maingraphic h1#pagetitle,
#fuku .workslist #maingraphicband #maingraphic h1#pagetitle{
	padding: 60px 6px 0 6px;
	color: #000;
	font-size: 32px;
	text-shadow: rgba(0,0,0,0) 0px 0px 0px;
}


#fuku .blog-index #maingraphicband #maingraphic{
	height: 140px;
	min-height: 140px;
}

#fuku .blog-index #maingraphicband #maingraphic h1#pagetitle{
	padding: 100px 6px 0 6px;
	color: #000;
	font-size: 32px;
	text-shadow: rgba(0,0,0,0) 0px 0px 0px;
}




/* @end */

#fuku.single-piece #maingraphicband{
	pGadding-top: 90px;
	height: 180px;
	tGext-align: center;
}

#fuku.single-piece #maingraphicband #maingraphic {
	mGargin: 0px 0 0 0;
	mGax-width: 100%;
	mGin-height: 150px;
	max-height: 150px;
	overflow: hidden;
	position: relative;
}

#fuku.workslist #maingraphicband #maingraphic {
	height: 300px;
}

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

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

#fuku #maingraphicband #maingraphic h1#pagetitle{
	fGont-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	fGont-weight: normal;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
	font-weight: bold;
	padding: 220px 6px 0 6px;

	padding: 420px 6px 0 6px;
}


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

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

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

#fuku .photofull-main.bg-black .titleunit{
	background-color: rgba(0,0,0,0.85);
}

/* @end */

/* @group btn */

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

a.btnDetails:hover{
	bGackground-color: rgba(84,103,52,0.8);
	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;
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	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;
}

.wGp-block-columns.mw900,
.wGp-block-columns.mw1000{
	max-width: 1000px;
	margin: 0 auto;
}

.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;
}

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

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

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

/* @end */

/* @group layout */
#fuku #contentsband{
	background-color: #f5f5f5;
	margin-top: 0px!important;
}

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

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

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

#fuku .split3 .block1,
#fuku .split3 .block2,
#fuku .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 flex-layout */


.flex-cntn .flex-item .htitle,
.flex-cntn .flex-item strong{
	font-size: 24px;
	line-height: 1.3em;
	padding: 0px 0px 4px 0px;
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	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;
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	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{
	bGackground-color: #eee;
	display: table;
	width: 100%;
	vertical-align: middle;
}

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

/* @end */

/* @group blog */
#fuku #contents #mainblock{
	clear: both;
	width: 94%;
	max-width: 700px;
	margin: 0 auto 150px auto;
	float: none;
	overflow: hidden;
}


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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

#fuku .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;
}

#fuku .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;
}

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

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

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

#fuku .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;	
}

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


/* @end */

/* @group form */

#fuku #formblock{
	background-color: rgba(183,228,228,0.5);
	border: 1px solid #d9d9d9;
	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;
}

#formblock h3{
	cGolor: #546734;
}

#formblock p.caution{
	color: #b52729;
}

#formblock input.submitBtn{
	background-color: #97a9d9;
}

#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 */
#fuku .entry.lead p{
	width: 96%;
	max-width: 1100px;
	margin: 0px auto 20px;
}

#fuku ul.mainworkslist{
	margin-top: 40px;
	max-width: 1100px;
	padding: 0;
	text-align: center;
}

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

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

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


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

#fuku ul.mainworkslist li .workstext h3{
	text-align: center;
	width: 65%;
	max-width: 100%;
	margin: 4px 0 8px 0;
}

#fuku ul.mainworkslist li .workstext .catchcopy p{
	font-size: 18px;
	line-height: 1.2em;
	margin: 6px 0 15px 0;
	color: #888;
	text-align: center;
}

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

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

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

#fuku ul.mainworkslist li .workstext .arcspec tr.row-15,
#fuku ul.mainworkslist li .workstext .arcspec tr.row-6,
#fuku ul.mainworkslist li .workstext .arcspec tr.row-7,
#fuku ul.mainworkslist li .workstext .arcspec tr.row-8,
#fuku ul.mainworkslist li .workstext .arcspec tr.row-9,
#fuku ul.mainworkslist li .workstext .arcspec tr.row-10{
	display: none;
}

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

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

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

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

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

#fuku #wrapper.workslist .workstext.flex{

}

#fuku #wrapper.workslist .workstext.flex .arcspec{
	width: 32%;
	float: right;
	bGackground-color: #ccc;
}

#fuku #wrapper.workslist .workstext.flex .exptext{
	width: 100%;
	float: none;
	bGackground-color: #eee;
}

#fuku #wrapper.workslist .workstext.flex .exptext h3,
#fuku #wrapper.workslist .workstext.flex .exptext p{
	width: 100%;
	margin-top: 0;
}


/* @end */

/* @group workslist */

#fuku .breadcrumb #miscworks{
	display: inline-block;
	position: absolute;
	top: 6px;
	right: 0px;
	font-size: 13px;
	line-height: 1em;
}



#fuku ul.workslist li{
	width: 370px;
	height: 320px;
	margin: 2px 8px 32px 7px;
	width: 240px;
	height: 200px;
	margin: 2px 4px 12px 3px;
	background: none;

	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

#fuku ul.workslist li{
	width: 370px;
	height: 320px;
	margin: 2px 8px 32px 7px;
	width: 240px;
	height: 200px;
	margin: 2px 4px 12px 3px;
	background: none;

	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}


#fuku ul.workslist li .piecephotoarea .piecephoto{
	width: 100%;
	height: 140px;
}

#fuku ul.workslist li .workstext{
	margin-top: 8px;
}

#fuku ul.workslist li .workstext h3{
	font-size: 13px;
	line-height: 1.2em;
	text-align: center;
}

#fuku ul.workslist li .workstext p{
	text-align: center;
	line-height: 1.2em;
}



/* @end */

/* @group projectlist */
#fuku ul.projectlist{
	text-align: center;
	width: 96%;
	max-width: 1200px;
	margin: 0 auto 30px auto;
}

#fuku ul.projectlist li{
	width: 280px;
	height: 220px;
	margin: 2px 6px 12px 5px;
	background: none;
	display: inline-block;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}


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

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

#fuku ul.projectlist li .workstext{
	margin-top: 8px;
}

#fuku ul.projectlist li .workstext h3{
	font-size: 13px;
	text-align: center;
}

#fuku ul.projectlist li .workstext p{
	text-align: center;
	line-height: 1.2em;
}



/* @end */

/* @group single-project */
#fuku .project h2{
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-size: 24px;
	font-weight: normal;
	color: #000;
	line-height: 30px;
	margin: 10px 0 0 0;
}

#fuku .project h3.catchcopy{
	margin: 16px 0 60px 0;
}

#fuku .project h3.catchcopy p{
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-size: 18px;
	font-weight: normal;
	color: #888;
	line-height: 24px;
	margin: 0px;
	text-align: center;
}
/* @end */


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

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

#fuku.single-m-piece h2.catchcopy p{
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-size: 24px;
	font-weight: 600;	
	color: #000;
	text-align: center;
	line-height: 1.2em;
	margin-bottom: 55px!important;
}

#fuku.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;
}

#fuku 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 */
#fuku.single-piece h1#housename{
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	font-weight: normal;
	font-size: 30px;
	color: #333;
	margin: 50px;
	text-align: center;
}

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

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

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

#fuku.single-piece .twin br{
	display: none;
}


/* @end */

/* @group media_workslist */
#fuku ul#mediadata.workslist{
	margin-top: 60px;
}

#fuku ul#mediadata.workslist li{
	width: 150px;
	height: 215px;
	margin: 2px 5px 40px 4px;
	border: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

#fuku ul#mediadata.workslist li .piecephotoarea .piecephoto{
	width: 100%;
	height: 150px;
}

#fuku ul#mediadata.workslist li .workstext{
	text-align: center;
	margin: 8px 10px 0 10px;
}

#fuku ul#mediadata.workslist li .workstext h3,
#fuku ul#mediadata.workslist li .workstext p{
	margin: 0;
	font-size: 14px;
}

#fuku ul#mediadata.workslist li .workstext p{
	text-align: center;
	line-height: 1.2em;
}

#fuku .media h2{
	margin-top: 0;
	margin-bottom: 2px;
}

#fuku .media .pubtime,
#fuku .media .company{
	text-align: center;
	font-size: 14px;
	line-height: 1.5em;
}

#fuku .media .company{
	margin-bottom: 20px;
}
/* @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 */

#fuku .submenu li a{
	color: #546734;
}

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

#fuku .submenu li a:hover{
	background-color: rgba(0,252,255,0.5);
	color: #546734;
}

/* @end */

/* @group recruit */
#fuku .recruit .entry ul{
	width: 94%;
	max-width: 700px;
	margin: 0 auto;
}

#fuku .recruit .entry ul li{
	padding: 5px 0 5px 0px;
	margin-left: 25px;
	list-style-type: disc;
}

#fuku .recruit .worktable td:nth-child(1){
	width: 35%;
}

#fuku .recruit .worktable td:nth-child(2){
	width: 65%;
}

/* @end */

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

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

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

#fuku .concept #contents h3{
	margin-bottom: 30px!important;
}

/* @end */

/* @group media */
#fuku .media .entry{
	width: 94%;
	max-width: 1000px;
	margin: 0 auto;
}

#fuku .media .tablepress{
	border-top: 1px solid #888;
	margin-bottom: 100px;
	margin-top: 40px;
}

#fuku .media .tablepress img{
	max-height: 150px;
	width: auto;
}

#fuku .media .tablepress td{
	padding: 15px 5px;
}

/* @end */

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

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

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

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

#fuku .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;
	color: #4c7d99;
}

.about_us .profile .wp-block-column{
	bGackground-color: #ccc;
	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 ad gallary */
#fuku h3.adtitle{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
	font-size: 18px;
	color: #000;
	font-weight: bold;
	line-height: 20px;
	margin: 6px 0 10px 0;
	text-align: left;
}

#fuku .wp-block-getwid-template-post-featured-image {
	margin-bottom: 0px;
}
/* @end */


/* @group footer */
#fuku #footband {
	background-color: #222;
}

#fuku #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;
	height: 40px;
	margin: 0px 20px 0px 0px;
	float: left;
}

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

#foot #snsicons{
}

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

#foot #snsicons img:hover{
	bGackground-color: #ccc;
	bGackground-color: rgba(0,252,255,0.7)!important;
}

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

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

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

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

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

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

#fuku #credit{
	clear: both;
	margin: 2px auto 0;
	padding-bottom: 5px;
	width: 98%;
	max-width: 1000px;
	bGorder-top: 1px solid #b2b2b2;
	font-size: 12px;
	color: #ccc;
	text-align: center;
}

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

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

/* @end */

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

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

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

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

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

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

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

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

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

/* @end */

/* @group home */

.home #wrapper{
	background-color: #f5f5f5;
}

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

/* @group slide */

#fuku.home #maingraphicband{
	width: 100%;
	text-align: center;
}

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

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

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

#fuku.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
}

#fuku.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);
}

#fuku.home #maingraphicband #topcopy{
	position: absolute;
	width: 500px;
	height: 94px;
	top: 0;
	bottom: 0;
	margin: auto;
	margin-left: -225px;
}
/* @end */

/* @group topcopy */

#fuku.home #topcopyarea{
	text-align: center;
	background-color: #f5f5f5;
}

#fuku.home #topcopytable{
	margin: 10px auto 40px auto;
	width: 345px;
	width: 270px;
}

#fuku.home #topcopytable td{
	vertical-align: top;
}

#fuku.home #topcopytable #topcopy-1 img{
	width: 50px;
	width: 40px;
	margin: 100px 20px 0 0;
}

#fuku.home #topcopytable #topcopy-2 img,
#fuku.home #topcopytable #topcopy-3 img,
#fuku.home #topcopytable #topcopy-4 img{
	width: 40px;
	width: 32px;
	margin: 4px 5px 0;
}

#fuku.home #topcopytable #topcopy-3 img{
	margin: 0px 5px 0;
}


#fuku.home #topcopytable #topcopy-5 img{
	width: 25px;
	width: 20px;
	margin: 5px 0px 0 5px;
}

/* @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 90px 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 project */

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

.home #wrapper ul#projectlist li{
	width: 500px;
	display: inline-block;
	margin: 0 15px 20px;
}

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


/* @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{
	background-color: #fff;
}

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

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

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

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

#fuku.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: disc;
}

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

.home .slick-dots{
	
}

.home .slick-dots li button{
	fGont-size: 20px;
}


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

/* @end */

/* @group profile */


#profile_1{
	background: url(common/profile_1_n.jpg) no-repeat center top;
	background-size: contain;
}

#profile_2{
	background: url(common/profile_2_n.jpg) no-repeat center top;
	background-size: contain;
}

#profile_3{
	background: url(common/profile_3_n.jpg) no-repeat center top;
	background-size: contain;
}


/* @end */

/* iPads (portrait) ----------- */

@media screen and (min-width : 680px) 
and (max-width : 990px) {

/* @group header */
#fuku #header2band{
	hGeight: 50px;
}

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

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


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

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



/* @end */

/* @group vision */
#wrapper.vision .vblock1 .wp-block-column:nth-of-type(1),
#wrapper.vision .vblock1 .wp-block-column:nth-of-type(3){
	display: none;
}

#wrapper.vision .wp-block-column{
	text-align: center;
	margin: 0 auto 0 auto;
}

#wrapper.vision .vblock2 .wp-block-column p.text-v{
	margin-right: 0!important;
}

#wrapper.vision .vblock3 .wp-block-column p.text-v{
	margin-left: 0!important;
}

#wrapper.vision .vblock4 .wp-block-column p.text-v{
	margin-right: 0!important;
}

#wrapper.vision .vblock2 .wp-block-column p.text-v br.pc,
#wrapper.vision .vblock3 .wp-block-column p.text-v br.pc,
#wrapper.vision .vblock4 .wp-block-column p.text-v br.pc{
	display: none;
}

.tblock{
	text-align: center;
	bGackground-color: #ccc;
	margin: 0 auto 0 auto!important;
}

.tblock br.pc{
	display: none;
}

p.text-v.mgn-vl{
	margin: 10% auto 10% auto!important;
	height: 350px!important;
	max-height: 90%!important;
	float: none;
	overflow: hidden;
}

p.text-v.mgn-vr{
	margin: 10% auto 10% auto!important;
	height: 360px!important;
	max-height: 94%!important;
	float: none;
	overflow: hidden;
}

/* @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 */
#fuku .site-header {
	height: 70px;
}

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

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

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

#fGuku header #navswitch{
	margin: 0;
	top: 20px;
	right: 10px;
	padding: 7px 5px 7px 7px;
	font-size: 20px;
	color: #111;
	font-weight: normal;
	border: none;
	width: 20px;
	background-color: rgba(255,255,255,0.0);
}

#fGuku header #navswitch i{
	color: #fff;
}

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

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

#fGuku #menu-mobilemenu li a{
	background-color: transparent;
	font-size: 16px;
	color: #888;
	text-decoration: none;
	font-weight: normal;
	padding: 15px 0;
	border-bottom: none;
	text-align: center;
}

#fuku #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 */
#fuku #foot{
	padding: 50px 0 40px 0;
}

#foot .site-title{
	margin: 0px auto 20px auto;
	float: none;
}

#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;
}



/* @end */

#fuku #wrapper #maingraphicband {
	margin-top: 70px!important;
}

#fuku #maingraphicband #maingraphic {
	min-height: 400px;
}

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

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

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

#fuku.page #contents .entry{
	width: 96%;
	max-width: 96%;
	margin-left: auto;
	margin-right: auto;
}


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

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

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

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

#fuku .blog #contents h2{
	margin-bottom: 20px;
}

/* @end */

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

/* @group vision */


.tblock{
	bGackground-color: #aaa;
}

.tblock br.pc{
	display: none;
}

#wrapper.vision .vblock1 .wp-block-column{
	height: 460px;
	max-height: 460px;
	bGackground-color: #ccc;
}

#wrapper.vision .vblock1 .wp-block-column p.text-v{
	height: 400px!important;
	max-height: 80%!important;
	bGackground-color: #ccc;
	text-align: left;
}

#wrapper.vision .wp-block-column{
	width: 100%!important;
	max-width: 100%;
	text-align: center;
	margin: 0 auto 0 auto;
}

#wrapper.vision p.text-v.mgn-vl{
	margin: 10% auto 10% auto!important;
	height: 350px!important;
	max-height: 90%!important;
	float: none;
	overflow: hidden;
}

#wrapper.vision p.text-v.mgn-vr{
	margin: 10% auto 10% auto!important;
	height: 350px!important;
	max-height: 90%!important;
	float: none;
	overflow: hidden;
}

.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;
}

#wrapper .mobileblock .wp-block-column .wp-block-image{
	wGidth: 50%;
}

/* @end */

/* @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;
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	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;
	font-family:"游明朝","Yu Mincho","游明朝体",YuMincho,"ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",HiraMinProN-W3,"ＭＳ Ｐ明朝","MS PMincho";
	margin: 0!important;
}

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

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

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

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

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

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

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

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

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

#fuku .photofull .catchtext.loc-bottom-right{
	bottom: 30%;
	right: 1%;
}

/* @end */

/* @group mainworklist */

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

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

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

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

#fuku #wrapper.workslist .workstext.flex .exptext{
	width: 100%;
	float: none;
	margin-bottom: 20px;
}


/* @end */

/* @group piece */

#fuku.single-piece #maingraphicband {
	pGadding-top: 50px;
	height: 50px;
}

#fuku.single-piece #wrapper .entry > p,
#fuku.single-m-piece #wrapper .entry > p{

}

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

#fuku.single-piece #wrapper .entry p,
#fuku.single-m-piece #wrapper .entry p{
	width: 94%;
	margin: 0 auto 15px;
}




/* @end */

/* @group workslist */

#fuku ul.mainworkslist li .workstext{
	width: 94%;
	margin: 20px auto 60px;
}

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

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

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

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

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

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

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

#fuku #wrapper ul.workslist li .workstext .detail p br{
	display: none;
}

/* @end */

/* @group #m-piece-list */
	
#fuku ul#m-piece-list.workslist li{
	width: 175px;
	height: 150px;
	margin: 2px 2px 12px 1px;

}

#fuku ul#m-piece-list.workslist li .piecephotoarea .piecephoto{
	width: 100%;
	height: 100px;
}

#fuku ul#m-piece-list.workslist li .workstext{
	margin-top: 6px;
}

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

#fuku ul#m-piece-list.workslist li .workstext .detail{
	margin: 0!important;
}

#fuku ul#m-piece-list.workslist li .workstext p{
	font-size: 13px;
	line-height: 1.2em;
	margin: 0!important;
}



/* @end */

/* @group media_workslist */


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

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

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

#fuku #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;
}

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

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



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

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

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

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

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

#fuku #wrapper ul#mediadata.workslist li .workstext .detail p br{
	display: none;
}

/* @end */

/* @group home */

.home #header{
	height: 1px!important;
	dGisplay: none;
}

.home #maingraphicband{
	position: relative;
	text-align: center;
	width: 100%;
}

.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;
}

#fuku.home #maingraphicband #topcopy{
	position: absolute;
	width: 280px;
	height: 52px;
	top: 0;
	bottom: 0;
	margin: auto;
	margin-left: -142px;
}


.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;
}

/* @end */


}
