/*
Theme Name: くまもと工芸会館
Theme URI: http://www.kumamoto-kougei.jp/
Description: くまもと工芸会館のテーマ.
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	margin:0;
}
a:focus {
	outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}

iframe {max-width: 100%;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}

body {
	background: #FFF;
	font-size: 14px;
	font-size: 1rem;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
	text-rendering: optimizeLegibility;
	color: #000;
	line-height: 1.7;
	background: url(img/bg.jpg) repeat 0 0;
}

.jp { font-family: 'Noto Sans JP', sans-serif;}
.en { font-family: 'Overpass', sans-serif;}

a {
  margin: 0;
  color: inherit;
  padding: 0;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

a:link {
  transition: .3s;
}

a img {
	border: none;
}

.clearfix:after{
	content: ".";
	display: block;
	height: 0;
	font-size:0;
	clear: both;
	visibility:hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE Mac */
* html .clearfix {height: 1%;}
.clearfix {display:block;}
/* End Hack */

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	*zoom: 1;
}

img {
	max-width: 100%;
	height: auto;
}

.sp {
	display:none;
}

.pc {
	display: block;
}

.block {
  display: block;
}

.txt-c {
	text-align: center;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*---------- ボタン共通設定 ----------*/

.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #555;/* ボーダーの色と太さ */
    padding: 10px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#333;
}

.btn:hover span{
	color:#fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#333;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}


/*矢印が右に移動する*/
.btnarrow4{
    /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
    /*形状*/
    display: inline-block;
	padding: 0 20px;
    color: #333;
    text-decoration: none;
    outline: none;
	
	font-size: 14px;
	width: 50%;
	margin: auto;
}

/*矢印と下線の形状*/
.btnarrow4::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:-8px;
    left:15%;
	left: 0;
    /*下線の形状*/    
    width: 85%;
	width: 100%;
    height: 1px;
	background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
}

.btnarrow4::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:-3px;
    right:0;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before{
    left:10%;
}

.btnarrow4:hover::after{
    right:-10%;
}


.red {
	color: #F00 !important;
}
/*---------- margin padding ----------*/

.mb10 { margin-bottom: 10px;}
.mb20 { margin-bottom: 20px;}
.mb30 { margin-bottom: 30px;}
.mb40 { margin-bottom: 40px;}
.mb60 { margin-bottom: 60px;}
.mb100{margin-bottom: 100px;}

/*---------- list ----------*/

.flex_list{display: flex;justify-content: space-between;}
.flex_list.start{justify-content: flex-start;}
.flex_list.end{justify-content:flex-end;}
.flex_list.center{justify-content: center;}
.flex_list.around{justify-content:space-around;}
.flex_list.middle {align-items: center;}
.flex_list.bottom {align-items: flex-end;}
.flex_list.top {align-items: flex-start;}
.flex_list.wrap{flex-wrap: wrap;}
.flex_list.nowrap{flex-wrap: nowrap;}
.culm-3::after{content:"";display: block;width:30%;}


/*---------- ヘッダー ----------*/

.header {
  width: 240px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  height: 100%;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  z-index: 999;
  overflow: auto;
}

.header_inner {
  padding: 0 20px 20px;
  box-sizing: border-box;
}

#nav_toggle {
  display: none;
}

.sp-header {
  display: none;
}

h1 {
  width: 100%;
  margin: 25px auto;
}

.header nav a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  position:relative;
}

.header nav a::before {
	content: "";
	width: 6px;
	height: 10px;
	display: inline-block;
	background: url(img/gnavi_child_arrow02.png) no-repeat 0 0;
	background-size: contain;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s all;
}

.header nav .nav-bn a {
  display: block;
  padding: 0;
  border-bottom: none;
  position:relative;
}

.header nav .nav-bn a:hover {
	opacity: 0.7;
}

.header nav a:hover::before {
	right: 0;
}

.header nav a:hover {
	background: #ebebeb;
}

.nav-bn {
	margin-top: 20px;
}

.nav-bn ul {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

.nav-bn ul li + li {
	margin-top: 10px;
}


@media screen and (max-width: 1600px) {
	.header {
		width: 200px;
		position: fixed;
		top: 0;
		left: 0;
	}
}


@media screen and (max-width: 1100px) {
	.header {
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		height: 80px;
		overflow: inherit;
	}
	.header_inner {
		display: flex;
		padding: 0 10px;
		align-items: center;
		height: 100%;
	}
	.pc-header {
		display: none;
	}
	.sp-header {
		display: block;
	}
	h1 {
		width: 140px;
		margin: 10px 0;
	}
	/*開閉ボタン*/
	#nav_toggle {
		display: block;
		width: 20px;
		height: 20px;
		position: fixed;
		top: 24px;
		z-index: 100;
		margin-left: auto;
		right: 20px;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span {
		display: block;
		height: 2px;
		background: #231815;
		position: absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}
	#nav_toggle span:nth-child(1) {
		top: 8px;
	}
	#nav_toggle span:nth-child(2) {
		top: 16px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
		top: 12px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	header .spNav {
		display: none;
		position: absolute;
		top: 60px;
		width: 100%;
		left: 0;
		z-index: 999;
		background: #fff;
	}
	header .spNav li {
		color: #333;
		/*border-bottom: 1px solid #333;*/
		font-size: 16px;
	}
	header .spNav li a {
		padding: 10px;
	}
	.nav-bn {
		width: auto;
		margin: 20px auto;
		padding: 0 20px;
	}
	.nav-bn ul li  {
		width: calc((100% - 10px) / 2);
		margin-bottom: 10px;
	}
	.nav-bn ul li + li  {
		margin-top: inherit;
	}
	.nav-bn ul li:nth-child(2n) {
		margin-left: 10px;
	}


}


@media only screen and (max-width: 768px) {
	.header {
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		height: 60px;
		overflow: inherit;
	}
	#nav_toggle {
		top: 14px;
	}
	h1 {
		margin: 10px 5px;
	}
	.header nav a {
		font-size: 14px;
	}
	header .spNav li {
		font-size: 14px;
	}
	.mb100{
		margin-bottom: 50px;
	}


}



/*---------- フッター ----------*/

#gFooter {
  padding: 55px 0 120px;
  position: relative;
  color: #e0e0e0;
  background: #1b1b1b;
}

#gFooter a:hover {
  opacity: .2;
}

.footCont {
  margin: 0 auto;
  width: 1035px;
}

.footLink {
  padding-top: 4px;
  width: 560px;
  float: right;
  font-size: 14px;
}

.localLink {
  padding-bottom: 60px;
}

.localLink ul {
  padding-right: 63px;
  width: 162px;
  float: left;
  letter-spacing: 1px;
}

.localLink ul.localNavi {
  width: 120px;
}

.localLink ul.localNavi li {
  padding-bottom: 13px;
}

.localLink ul.localNavi li a {
  font-size: 16px;
}

.footCont a {
  color: #e0e0e0;
}

.localLink ul {
  padding-right: 50px;
  width: 170px;
  float: left;
  letter-spacing: 1px;
}

.localList .fTitle {
  margin-bottom: 30px;
  padding-bottom: 0;
  font-size: 16px;
  letter-spacing: 3px;
  border-bottom: 1px solid #959595;
}

.localList li {
  padding-bottom: 12px;
}

.localList li a {
  font-family: "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  display: block;
}

.localList.localList1{
	padding-right: 0;
}

.blank {
  font-family: "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.blank > span {
  font-size: 10px;
  letter-spacing: .5px;
  display: inline-block;
}

.blankLink .facebook {
  margin-left: 6px;
}

.blankLink .facebook img {
  margin-top: -6px;
  width: 15px;
}

.blankLink .facebook span {
  padding-left: 9px;
}

.blankLink .twitter {
  margin-left: 17px;
}

.blankLink .twitter img {
  margin-top: -2px;
  width: 28px;
}

.blankLink .twitter span {
  padding-left: 7px;
}

.blankLink .inst {
  margin-left: 25px;
}

.blankLink .inst img {
  margin-top: -1px;
  width: 23px;
}

.blankLink .inst span {
  padding-left: 8px;
}

.footInfo {
  width: 470px;
  font-size: 15px;
  float: left;
}

.footLogo {
  padding-bottom: 29px;
  width: 260px;
}

.footLogo img {
  width: 100%;
}

.footInfo p {
  padding-bottom: 6px;
  line-height: 1.6;
}

.footInfo p span {
  letter-spacing: .5px;
}

.footInfo p a.googleMap {
  margin-left: 14px;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 3px;
  letter-spacing: .5px;
}

.phone {
  padding-bottom: 21px;
  letter-spacing: 1px;
}

.phone li {
  padding-bottom: 1px;
}

.phone li.tel span {
  font-size: 26px;
  letter-spacing: 0;
  display: inline;
}

.phone li.tel a {
  display: none;
}

.phone li.fax span {
  font-size: 18px;
  letter-spacing: 0;
}

.phone a.mail {
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 3px;
}

.footInfo p.addr {
  line-height: 1.8;
  letter-spacing: .5px;
}

.footUni {
  font-size: 8px;
  font-family: "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  position: absolute;
  right: 20px;
  bottom: 17px;
  letter-spacing: 1.5px;
}

.footUni span {
  font-size: 10px;
}


/*Contact Form 7カスタマイズ*/
/*スマホContact Form 7カスタマイズ*/
@media(max-width:500px){
	.inquiry th,.inquiry td {
		display:block!important;
		width:100%!important;
		border-top:none!important;
		-webkit-box-sizing:border-box!important;
		-moz-box-sizing:border-box!important;
		box-sizing:border-box!important;
	}
	.inquiry tr:first-child th{
		border-top:1px solid #d7d7d7!important;
	}
	/* 必須・任意のサイズ調整 */
	.inquiry .haveto,.inquiry .any {
		font-size:10px;
	}
}

.inquiry {
	width: 100%;
	margin-bottom: 10px;
}

input,textarea {
	border: 1px solid #ccc;
	padding: 5px 10px;
}

/*見出し欄*/
.inquiry th{
 text-align:left;
 font-size:16px;
 color:#444;
 padding:20px 10px;
 width:30%;
 background:#f7f7f7;
 border:solid 1px #d7d7d7;
 vertical-align: top;
}
/*通常欄*/
.inquiry td{
 padding: 20px 10px;
 background: #FFF;	
 font-size:13px;
 border:solid 1px #d7d7d7;	
}
/*横の行とテーブル全体*/
.entry-content .inquiry tr,.entry-content table{
 border:solid 1px #d7d7d7;	
}
/*必須の調整*/
.haveto{
 font-size:7px;
 padding:5px;
 background:#ff9393;
 color:#fff;
 border-radius:2px;
 margin-right:5px;
 position:relative;
 bottom:1px;
}
/*任意の調整*/
.any{
 font-size:7px;
 padding:5px;
 background:#93c9ff;
 color:#fff;
 border-radius:2px;
 margin-right:5px;
 position:relative;
 bottom:1px;
}
/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item{
 display:block;
}
/*送信ボタンのデザイン変更*/
#formbtn{
 display: block;
 padding:1em 0;
 margin:30px auto 0;
 width:100%;
 max-width: 300px;
 background:#ffaa56;
 color:#fff;
 font-size:18px;
 font-weight:bold;	 
 border-radius:2px;
 border: none;
}
/*送信ボタンマウスホバー時*/
#formbtn:hover{
 background:#fff;
 color:#ffaa56;
}


@media only screen and (max-width: 767px) {
	#gFooter {
		padding: 37px 0 20px;
		text-align: center;
	}
	.footCont {
		margin-bottom: 18px;
		padding: 0 18px;
		width: auto;
	}
	.footLink {
		margin-bottom: 50px;
		padding-top: 0;
		width: auto;
		float: none;
		text-align: left;
	}
	.localLink {
		padding-bottom: 6px;
	}
	.localLink ul {
		padding-right: 0;
	}
	.localLink ul.localList1 {
		width: auto;
		float: none;
	}
	.localLeft {
		width: 47.46%;
		float: left;
	}
	.localRight {
		width: 47.46%;
		float: right;
	}
	.localList1 > li {
		margin-bottom: 21px;
		padding-bottom: 2px;
		border-bottom: 1px solid #626262;
	}
	.localList1 > li.fNav {
		border-bottom: 0;
	}
	.localList1 a {
		display: block;
	}
	.localList1 > li > a {
		font-size: 14px;
	}
	.fNav p {
		padding-bottom: 2px;
		position: relative;
		border-bottom: 1px solid #626262;
	}
	.fNav p:before, .fNav p:after {
		width: 12px;
		height: 1px;
		position: absolute;
		right: 0;
		top: 8px;
		transition: .6s ease;
		content: "";
		background: #e0e0e0;
	}
	.localLink ul {
		padding-right: 0;
	}
	.localList1 ul {
		margin: 0 auto;
		width: auto;
		float: none;
		overflow: hidden;
	}
	.fNav li {
		margin-bottom: 18px;
		font-size: 10px;
	}
	.fNav li:first-child {
		margin-top: 30px;
	}
	.localList1 a {
		display: block;
	}
	.fNav li a {
		padding-left: 9px;
		font-size: 12px;
		font-family: "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
		letter-spacing: .5px;
	}
	.blankLink .blank {
		padding-bottom: 30px;
		text-align: center;
	}
	.blankLink a {
		font-size: 13px;
	}
	.blankLink .facebook {
		margin-left: 0;
		font-family: "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
	}
	.blankLink .facebook img {
		margin-top: -1px;
		width: 11px;
	}
	.blankLink .facebook span {
		padding-left: 5px;
		letter-spacing: .5px;
	}
	.blankLink .twitter {
		margin-left: 17px;
	}
	.blankLink .twitter img {
		width: 18px;
	}
	.blankLink .twitter img {
		margin-top: 2px;
	}
	.blankLink .twitter span {
		padding-left: 5px;
		letter-spacing: .5px;
	}
	.blankLink .inst {
		margin-left: 10px;
	}
	.blankLink .inst img {
		width: 17px;
	}
	.blankLink .inst img {
		margin-top: 2px;
	}
	.blankLink .inst span {
		padding-left: 7px;
		letter-spacing: 0;
	}
	.footInfo {
		width: auto;
		float: none;
		font-size: 12px;
		font-family: "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
		text-align: center;
	}
	.footLogo {
		padding-bottom: 21px;
		margin: 0 auto;
		width: 163px;
	}
	.footInfo p {
		padding-bottom: 22px;
		font-size: 12px;
		letter-spacing: 1px;
		line-height: 1.65;
	}
	.footInfo p span {
		font-size: 14px;
		letter-spacing: 1px;
		display: block;
	}
	.footInfo p a.googleMap {
		padding: 3px 9px 5px;
		margin: 7px auto 0;
		min-width: 150px;
		display: inline-block;
		text-decoration: none;
		font-size: 16px;
		font-weight: bold;
		font-family: 'Roboto', sans-serif;
		letter-spacing: 0;
		color: #202020;
		background: #eeeeee;
	}
	.phone {
		padding-bottom: 15px;
	}
	.phone li {
		padding-bottom: 4px;
		letter-spacing: 1px;
	}
	.phone li.tel a {
		text-decoration: none;
		display: inline;
		font-size: 19px;
		font-family: "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
		font-weight: bold;
		letter-spacing: 2px;
	}
	.phone li.fax span {
		font-size: 14px;
		letter-spacing: 1px;
	}
	.footInfo p.addr {
		line-height: 1.65;
	}
	.footShare, .footUse, .footUni, .footWm {
		position: static;
	}
	.header nav a::before {
		right: 15px;
	}
}









/*===============================
スマホ
===============================*/

@media only screen and (max-width: 767px) {
    .sp {
    display: block;
	}
	.pc {
		display:none !important;
	}
	html{
		min-height:100%;
	}
	body {
		height: 100%;
	}
		
}

/*===============================
タブレット
===============================*/

@media only screen and (max-width: 1020px) and (min-width: 768px){

}