@charset "utf-8";

/**
 * Theme Name: OK Reform Tsushima
 * Description: This is OK Reform Tsushima Original Theme "OK Reform Tsushima".
 * Author: TERASOLUTION Corp.
 * Version: 0.1
 */


/* ===============================================
	Common Style
=============================================== */

* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

html {
	font-size: 62.5%; /* ベースのフォントサイズ：10px */
}

body {
	font-family:
		Verdana,
		"メイリオ",
		Meiryo,
		"ヒラギノ角ゴ Pro W3",
		"Hiragino Kaku Gothic Pro",
		"ＭＳ Ｐゴシック",
		"MS PGothic",
		sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	background: #fff;
	color: #555;
}

img { /* for IE8 */
	width: auto;
}
img {
	max-width: 100%;
	height: auto;
  vertical-align: bottom; /* 下に出来る余白を消す */
}

strong {
	font-weight: bold;
}

a:link { color: #555; text-decoration:none; }
a:visited { color: #555; }
a:hover { color: #67A72B; }
a:active { color: #67A72B; }

a,
a:hover {
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

.container {
	max-width: 1000px;
}

.wrapper {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 50px;
	background-image: url('./images/bg.gif');
}
.home_wrapper {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
	.wrapper,
	.home_wrapper {
		padding-bottom: 30px;
	}
}

/* -------------------------------------
	Layout
------------------------------------- */

/* メインカラム */
#main_column {
	background-color: transparent;
	padding-bottom: 30px;
}

/* サイドカラム */
#side_column {
	background-color: transparent;
}

/* 上段 */
#side_top {
	background-color: transparent;
}

/* 下段 */
#side_bottom {
	background-color: transparent;
}

@media screen and (min-width: 992px) { /* md以上の場合 */ 
	#main_column {
		padding-right: 30px;
	}
	#side_top,
	#side_bottom {
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* 配置 */
.aligncenter {
	display: block;
	margin: 0 auto;
}
.alignright {
	float: right;
	margin-left: 10px;
}
.alignleft {
	float: left;
	margin-right: 10px;
}

/* 汎用見出し */
.headline {
	margin-top: 20px;
	margin-bottom: 50px;
	padding: 5px 0 5px 15px;
	border-left: solid 6px #FFBD14;
	font-size: 30px;
	font-size: 3.0rem;
}
.subhead {
	position: relative;
	margin-bottom: 30px;
	padding: 2px 0 15px 20px;
	border-bottom: solid 1px #ddd;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
}
.subhead:before {
	display: block;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 4px;
	height: 75%;
	background-color: #FFBD14;
}

@media screen and (max-width: 767px) {
	.headline {
		margin-top: 0;
		margin-bottom: 30px;
		padding: 5px 0 5px 15px;border: none;
		background-color: #FFBD14;
		font-size: 20px;
		font-size: 2.0rem;
		font-weight: bold;
		color: #fff;
	}
	.subhead {
		position: relative;
		margin-bottom: 15px;
		padding: 2px 0 10px 5px;
		border-bottom: solid 1px #ddd;
		color: #FFBD14;
		font-size: 18px;
		font-size: 1.8rem;
		font-weight: bold;
	}
	.subhead:before {
		display: block;
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 4px;
		height: 75%;
		background: none;
	}
}



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

/* 社名ロゴ */
#header_logo {
	padding-top: 46px;
	padding-bottom: 47px;
	background-color: #fff;
}
#header_logo img {
	width: 394px;
	height: auto;
}

/* お問合せ電話番号 */
#header_info {
	padding-top: 28px;
	padding-bottom: 28px;
	text-align: right;
	background-color: #fff;
}

@media screen and (max-width:991px) { 
	#header_logo {
		padding: 17px 0 17px 10px;
	}
	#header_logo img {
		width: 220px;
		height: auto;
	}
	#header_sp {
		padding: 10px 10px 10px 0;
		text-align: right;
		background-color: #fff;
	}
	#header_tel {
		display: inline-block;
		width: 195px;
		height: 44px;
		margin-right: 10px;
		background-color: #fff;
	}
}

/* -------------------------------------
	ハンバーガーメニュー
------------------------------------- */
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	vertical-align: bottom;
}
.menu-trigger {
	position: relative;
	width: 44px;
	height: 44px;
	background-color: #FFBD14;
}
.menu-trigger span {
	position: absolute;
	left: 10px;
	width: 24px;
	height: 4px;
	background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
	top: 10px;
}
.menu-trigger span:nth-of-type(2) {
	top: 20px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 10px;
}
/* クリック時のエフェクト */
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}

/* -------------------------------------
	グローバルナビゲーション
------------------------------------- */
nav {
	background-color: #FFBD14;
}
ul#gnavi {
	width: 100%;
	font-size: 0px;
}
ul#gnavi li {
	display:inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	text-align: center;
}
ul#gnavi li a {
	display: block;
	height: 50px;
	padding: 13px 18px;
	color: #fff;
	text-decoration: none;
}
ul#gnavi li.current-menu-item a,
ul#gnavi li.current_page_item a,
ul#gnavi li.current-post-ancestor a,
ul#gnavi li.current-menu-parent a,
ul#gnavi li.current-post-parent a {
	background-color: #FFCF53;
	color: #555;
}
ul#gnavi li:not(.current-menu-item):hover,
ul#gnavi li:not(.current_page_item):hover,
ul#gnavi li:not(.current-post-ancestor):hover,
ul#gnavi li:not(.current-menu-parent):hover,
ul#gnavi li:not(.current-post-parent):hover {
	background-color: #FFCF53;
}

@media screen and (max-width:991px) { 
	nav {
		border-bottom: none;
		background-color: #fff;
	}
	nav .container {

	}
	ul#gnavi {
		display: none;
		width: 100%;
		margin-bottom: 15px;
		font-size: 0px;
	}
	ul#gnavi li,
	ul#gnavi li.active {
		display: block;
		margin-right: 0;
		margin-bottom: 0;
		border: none;
		border-bottom: solid 1px #FFFBEF;
		background-color: #FFDC82;
		font-size: 16px;
		font-size: 1.6rem;
		text-align: left;
	}
	ul#gnavi li a {
		display: block;
		height: 44px;
		padding: 10px 0 10px 15px;
		color: #555;
		text-decoration: none;
	}
	ul#gnavi li.current-menu-item,
	ul#gnavi li.current_page_item,
	ul#gnavi li.current-post-ancestor,
	ul#gnavi li.current-menu-parent,
	ul#gnavi li.current-post-parent,
	ul#gnavi li:not(.current-menu-item):hover,
	ul#gnavi li:not(.current_page_item):hover,
	ul#gnavi li:not(.current-post-ancestor):hover,
	ul#gnavi li:not(.current-menu-parent):hover,
	ul#gnavi li:not(.current-post-parent):hover {
		border-bottom: solid 1px #FFFBEF;
	}
}

/* -------------------------------------
	スマホ用電話番号
------------------------------------- */
@media screen and (max-width:767px) { 

	.contact_sp {
		margin-bottom: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
		border-top: solid 4px #FFBD14;
		border-bottom: solid 1px #FFBD14;
		font-size: 0;
	}
	.contact_sp p.header_tel_sp {
		position: relative;
		float: left;
		width: 50%;
		height: 60px;
		background-image: url('./images/icon_tel.png');
		background-repeat: no-repeat;
		background-position: center 20%;
		background-size: 28px auto;
		font-size: 16px;
		font-size: 1.6rem;
		text-align: center;
	}
	.contact_sp p.header_mail_sp {
		position: relative;
		float: right;
		width: 50%;
		height: 60px;
		background-image: url('./images/icon_mail_l.png');
		background-repeat: no-repeat;
		background-position: center 24%;
		background-size: 28px auto;
		border-left: dotted 1px #FFBD14;
		font-size: 14px;
		font-size: 1.4rem;
		text-align: center;
	}
	.contact_sp p.header_tel_sp a,
	.contact_sp p.header_mail_sp a {
		display: block;
		position: absolute;
		padding-top: 35px;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

}


/* ===============================================
	TOPページ
=============================================== */

/* -------------------------------------
	スライドショー
------------------------------------- */
#slider_wrapper {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 5px;
	background-image: url('./images/bg.gif');
}
.bxslider {
	display: none;
}
#slide_img {
	padding-bottom: 20px;
	background-color: transparent;
	text-align: center;
}
#slide_img .bx-wrapper {
	margin-bottom: 15px;
}
#slide_img .bx-wrapper .bx-viewport {
	border: none;
	left: 0px;
	background-color: transparent;
	box-shadow: none;
}
#slide_img .bx-wrapper .bx-pager.bx-default-pager a {
	background: #C4C4C4;
}
#slide_img .bx-wrapper .bx-pager.bx-default-pager a:hover,
#slide_img .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #67A72B;
}
#slide_img .bx-wrapper .bx-prev,
#slide_img .bx-wrapper .bx-next {
	background-color: #67A72B;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 15px 27px;
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
}
#slide_img .bx-wrapper .bx-prev {
	left: 0;
	background-image: url('./images/sld_prev.png');
}
#slide_img .bx-wrapper .bx-next {
	right: 0;
	background-image: url('./images/sld_next.png');
}
#slide_img .bx-wrapper .bx-prev:hover,
#slide_img .bx-wrapper .bx-next:hover {
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
}
#slide_img .bx-wrapper .bx-controls-direction a {
	width: 30px;
	height: 60px;
	margin-top: -15px;
	transition: none;
}

@media screen and (max-width:991px) { 
	#slider_wrapper {
		padding-top: 30px;
		padding-bottom: 0;
	}
	#slide_img {
		margin: 0;
		padding: 0 0 20px 0;
		border: none;
	}
	#slide_img .bx-wrapper .bx-viewport {
		border: none;
	}
	#slide_img .bx-wrapper .bx-controls-direction a {
		margin-top: -30px;
	}
}

@media screen and (max-width:767px) { 
	#slider_wrapper {
		padding-top: 0;
		padding-bottom: 0;
		background-image: none;
	}
	#slide_img .bx-wrapper .bx-prev,
	#slide_img .bx-wrapper .bx-next {
		display: none;
	}
}

/* -------------------------------------
	ごあいさつ
------------------------------------- */
section#greeting {
	padding-top: 30px;
	padding-bottom: 30px;
}
section#greeting h1 {
}
#top_message {
}
#top_message .wp-caption {
	margin-left: 30px;
}
#top_message p {
	line-height: 1.6;
	padding-bottom: 20px;
}
#top_message p.wp-caption-text {
	padding-top: 15px;
	padding-bottom: 25px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	section#greeting {
		padding-top: 0;
	}
	#top_message .wp-caption {
		margin-left: 0;
	}
	#top_message .alignright {
		float: none;
		text-align: center;
	}
	#top_message img {
		width: 150px;
		height: auto;
	}
}

/* -------------------------------------
	新着情報
------------------------------------- */
section#update {
	padding: 30px;
	background-color: #fff;
	border: solid 1px #ddd;
}
section#update h2 {
	padding: 5px 0 30px;
	text-align: center;
	background-color: #fff;
}
section#update h2 > span {
	padding: 0 5px 8px 5px;
	border-bottom: solid 2px #FFBD14;
	font-weight: bold;
}
dl#information {
  width: 100%;
	padding: 10px 20px 20px;
}
dl#information dt {
    float: left;
    clear: left;
	padding-left: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-weight: bold;
	font-size: 14px;
	font-size: 1.4rem;
    line-height: 1;
	background-color: #fff;
}
dl#information dt > span.cat_mark {
	display: inline-block;
	width: 90px;
    height: 19px;
    line-height: 19px;
	margin-left: 10px;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
}
dl#information dd {
	padding-left: 220px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: dotted 1px #ccc;
	font-size: 14px;
	font-size: 1.4rem;
	background-color: #fff;
}

@media screen and (max-width:767px) { 
	section#update {
		padding: 20px;
	}
	dl#information {
		padding: 10px 0;
	}
	dl#information dt {
		float: none;
		padding: 15px 0 0 10px;
		font-weight: bold;
	}
	dl#information dd {
		padding: 5px 0 10px 10px;
		border-bottom: dotted 1px #ccc;
	}
}


/* ===============================================
	メインカラム
=============================================== */

/* -------------------------------------
	投稿記事
------------------------------------- */
article.post_item {
	margin-bottom: 30px;
	padding: 30px;	
	background-color: #fff;
	border: solid 1px #ddd;
}
article.post_item p.date {
	padding-bottom: 5px;
	color: #FFBD14;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}
article.post_item h2 {
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: solid 1px #ddd;
	font-size: 20px;
	font-size: 2.0rem;
}
article.post_item h2 a {
	color: #555;
	text-decoration: none;
}

@media screen and (max-width:767px) { 
	article.post_item {
		margin-bottom: 20px;
		padding: 20px;	
	}
}

/* -------------------------------------
	ページング（カテゴリページ）
------------------------------------- */

/* PCの場合（WP-PageNavi） */
div.wp-pagenavi {
	padding: 0 0 10px 0;
	text-align: center;
}
div.wp-pagenavi span.current {
	border-color: #FFBD14;
	background-color: #FFBD14;
	color: #fff;
	font-weight: bold;
}
.wp-pagenavi a,
.wp-pagenavi span {
	background-color: #fff;
	color: #555;
}

/* スマホ・タブレットの場合（function.php） */
table.paging {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-size: 1.4rem;
}
table.paging td {
	width: 25%;
	color: #ccc;
}
table.paging td.page_num {
	height: 30px;
	color: #333;
}
table.paging td.first,
table.paging td.prev,
table.paging td.next {
	border-right: solid 1px #ccc;
}
table.paging td a {
	display: block;
	width: 100%;
	height: auto;
	padding: 5px 0;
}

/* -------------------------------------
	ページング（個別記事ページ）
------------------------------------- */
div.post_paging {
	padding: 0 10px;
	font-size: 14px;
	font-size: 1.4rem;
}
div.post_paging p.newer_post {
	float: left;
	padding-left: 20px;
	background-image: url('./images/paging_newer.png');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 12px 10px;
}
div.post_paging p.older_post {
	float: right;
	padding-right: 20px;
	background-image: url('./images/paging_older.png');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 12px 10px;
}


/* ===============================================
	固定ページ
=============================================== */
div.page_content {
	margin-bottom: 30px;
	padding: 30px;	
	background-color: #fff;
	border: solid 1px #ddd;
}
@media screen and (max-width:767px) { 
	div.page_content {
		margin-bottom: 20px;
		padding: 20px;	
	}
}

/* ===============================================
	会社案内
=============================================== */

/* -------------------------------------
	会社案内 > 会社概要
------------------------------------- */
dl#company_outline {
  width: 100%;
	padding: 0 10px 40px;
}
dl#company_outline dt {
  float: left;
	padding: 15px;
	font-weight: bold;
}
dl#company_outline dd {
	padding-left: 200px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: dotted 1px #ccc;
}

@media screen and (max-width:767px) { 
	dl#company_outline {
		padding: 0 0 40px;
	}
	dl#company_outline dt {
		float: none;
		padding: 15px 10px 5px 10px;
		font-weight: bold;
	}
	dl#company_outline dd {
		padding: 0 10px 15px 10px;
		border-bottom: dotted 1px #ccc;
	}
}

/* -------------------------------------
	会社案内 > アクセスマップ
------------------------------------- */
.map_wrapper {
	position: relative;
	margin: 30px 10px 50px 10px;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.map_wrapper iframe,
.map_wrapper object,
.map_wrapper embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:767px) { 
	.map_wrapper {
		margin: 20px 0 40px 0;
	}
}

/* -------------------------------------
	会社案内 > リンク
------------------------------------- */
dl#link_list {
  width: 100%;
	padding: 0 10px 20px;
}
dl#link_list dt {
  float: left;
	padding: 15px;
	font-weight: bold;
}
dl#link_list dd {
	padding-left: 300px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: dotted 1px #ccc;
}
dl#link_list dd a {
	padding-right: 15px;
	color: #67A72B;
	background-image: url('./images/icon_extra_link.png');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 11px 11px;
}

@media screen and (max-width:767px) { 
	dl#link_list {
		padding: 0 0 20px;
	}
	dl#link_list dt {
		float: none;
		padding: 15px 10px 5px 10px;
		font-weight: bold;
	}
	dl#link_list dd {
		padding: 0 10px 15px 10px;
		border-bottom: dotted 1px #ccc;
	}
}


/* ===============================================
	お問い合わせ
=============================================== */
table.contactForm {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	background-color: #fff;
}
table.contactForm th {
	width: 200px;
	font-weight: bold;
	text-align: left;
	vertical-align: middle;
}
table.contactForm th.va_t {
	padding-top: 30px;
	vertical-align: top;
}
table.contactForm td {
	padding: 15px 0 15px 15px;
	vertical-align: middle;
}

table.contactForm span.required {
	margin-left: 10px;
	padding: 1px 3px;
	border: solid 1px #f00;
	color: #f00;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
}
.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form textarea {
	width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
	border: solid 1px #ccc;
	font-family: Verdana,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"] {
	height: 48px;
	padding: 0 2%;
}
.mw_wp_form textarea {
	height: 200px;
	padding: 2%;
}
.mw_wp_form .error {
	padding-top: 5px;
	color: #f00 !important;
	font-size: 100% !important;
}

.submitWrap {
	margin: 10px auto 20px;
	text-align: center;
}
input[type="submit"] {
	display: inline-block;
	height: 50px;
	border: none;
	color: #fff;
	font-family: Verdana,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 3px;
}
/* お問い合わせ内容の確認 */
input[type="submit"][name="submitConfirm"] {
	width: 250px;
	background-color: #FFBD14;
}
input[type="submit"][name="submitConfirm"]:hover {
	background-color: #FFCF53;
}
/* 入力画面へ戻る */
input[type="submit"][name="submitBack"] {
	width: 200px;
	background-color: #787878;
}
input[type="submit"][name="submitBack"]:hover {
	background-color: #878787;
}
/* 送信する */
input[type="submit"][name="submitContact"] {
	width: 200px;
	background-color: #FFBD14;
}
input[type="submit"][name="submitContact"]:hover {
	background-color: #FFCF53;
}
/* 確認画面 */
.mw_wp_form_confirm table.contactForm {
	border-collapse: separate;
	border-spacing: 0px 30px;
}
.mw_wp_form_confirm table.contactForm th {
	width: 200px;
}
.mw_wp_form_confirm table.contactForm td {
	height: 48px;
	padding: 0 2%;
	border: solid 1px #ccc;
	background-color: #fff;
	font-family: Verdana,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
.mw_wp_form_confirm table.contactForm td.msg {
	padding: 2%;
}
/* 完了画面 */
.thanks {
	padding: 50px 0;
	text-align: center;
}
.thanks p {
	line-height: 2;
}
.thanks p.return_top {
	margin-top: 30px;
}

@media screen and (max-width:767px) { 
	input[type="button"],
	input[type="submit"] {
		-webkit-appearance: none;
		display: block;
		margin: 0 auto;
		padding: 0;
	}
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="password"],
	input[type="number"],
	select,
	textarea {
		font-size: 2rem;
	}
	table.contactForm {
		width: 100%;
		margin: 0 auto;
	}
	table.contactForm tr,
	table.contactForm th,
	table.contactForm td {
		display: block;
	}
	table.contactForm th,
	table.contactForm th.va_t {
		padding: 0;
	}
	table.contactForm td {
		padding: 10px 0 20px;
	}
	.submitWrap {
		margin: 0 auto 20px;
		text-align: center;
	}
	/* 確認画面 */
	.mw_wp_form_confirm table.contactForm {
		margin-top: 0;
		margin-bottom: 15px;
		border-spacing: 0;
	}
	.mw_wp_form_confirm table.contactForm th {
		padding-bottom: 10px;
	}
	.mw_wp_form_confirm table.contactForm td {
		height: auto;
		min-height: 30px;
		margin-bottom: 20px;
		padding: 2%;
		vertical-align: middle;
		line-height: 1.5;
	}
	input[type="submit"][name="submitBack"],
	input[type="submit"][name="submitContact"] {
		width: 250px;
	}
}


/* ===============================================
	検索結果
=============================================== */
.search_results {
	padding-bottom: 30px;
}


/* ===============================================
	サイドカラム
=============================================== */

h2.widgettitle {
	display: none;
}

/* -------------------------------------
	アメブロバナー
------------------------------------- */
.widget_text {
	margin-bottom: 30px;
}
#side_column img {
	display: block;
	width: 100%;
	margin: 0 auto;	
}

/* -------------------------------------
	ほのぼの通信
------------------------------------- */
.widget_honobono {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #fff;
	border: solid 1px #ddd;
	list-style-type: none;
}
.widget_honobono h2.side {
	padding: 0 0 30px;
	text-align: center;
	background-color: #fff;
}
.widget_honobono h2.side > span {
	padding: 0 5px 8px 5px;
	border-bottom: solid 2px #FFBD14;
	font-weight: bold;
}
.widget_honobono p.date {
}
.widget_honobono p.date span.latest {
	margin-right: 5px;
	padding: 3px 8px;
	background-color: #67a72b;
	color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
}
.widget_honobono p.title {
	margin-top: 10px;
	font-size: 14px;
	font-size: 1.4rem;
}
.widget_honobono p.pdf_img {
	margin-top: 5px;
	border: solid 1px #ddd;
}
.widget_honobono p.backnumber {
	margin-top: 10px;
	text-align: right;
}
.widget_honobono p.backnumber a {
	padding: 3px 8px;
	color: #67a72b;
	font-size: 14px;
	font-size: 1.4rem;
}


/* -------------------------------------
	リフォームメニュー
------------------------------------- */
.widget_menu {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #fff;
	border: solid 1px #ddd;
	list-style-type: none;
}
.widget_menu h2.side {
	padding: 0 0 5px;
	text-align: center;
	background-color: #fff;
	border-bottom: solid 2px #FFBD14;
	font-weight: bold;
}



/* -------------------------------------
	サイドメニュー
------------------------------------- */
.widget_nav_menu {
	margin-bottom: 30px;
}
.widget_nav_menu li {
	position: relative;
	margin-bottom: 15px;
	background-color: #fff;
	border: solid 1px #ddd;
}
.widget_nav_menu li a {
	display: block;
	width: 100%;
	height: auto;
	padding: 10px 15px;
	color: #555;
	text-decoration: none;
}
.widget_nav_menu li a:before {
	display: block;
	position: absolute;
	content: "";
	top: 20%;
	left: 0;
	width: 4px;
	height: 60%;
	background-color: #FFBD14;
}

/* -------------------------------------
	サイト内検索
------------------------------------- */
.widget_search {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #fff;
	border: solid 1px #ddd;
	list-style-type: none;
}
.widget_search h2.side {
	padding: 0 0 30px;
	text-align: center;
	background-color: #fff;
}
.widget_search h2.side > span {
	padding: 0 5px 8px 5px;
	border-bottom: solid 2px #FFBD14;
	font-weight: bold;
}
.searchform_wrap {
}
form#searchform {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

form#searchform input[type="text"] {
	display: block;
	float: left;
	width: 80%;
	height: 30px;
	margin-right: 5px;
	padding: 0 2%;
	background-color: #f0f0f0;
	border: 1px solid #ccc;
	vertical-align: middle;
}
form#searchform input[type="submit"] {
	display: block;
	float: left;
	width: 30px;
	height: 30px;
	padding: 0px;
	background-color: #666;
	background-image: url('./images/btn_search.png');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 30px 30px;
	border: none;
	vertical-align: middle;
}
form#searchform input[type="submit"]:hover {
	background-color: #999;
}
@media screen and (max-width: 767px) {
	form#searchform input[type="text"] {
		width: 85%;
	}
}

/* -------------------------------------
	投稿カレンダー
------------------------------------- */
.widget_calendar {
	padding: 20px;
	background-color: #fff;
	border: solid 1px #ddd;
}
.widget_calendar #calendar_wrap table#wp-calendar {
	font-size: 12px;
	font-size: 1.2rem;
}
.widget_calendar #calendar_wrap table#wp-calendar caption {
	padding-bottom: 3px;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
}
.widget_calendar #calendar_wrap table#wp-calendar thead th {
	padding: 1px;
	border: solid 1px #FFBD14;
	background-color: #FFBD14;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.widget_calendar #calendar_wrap table#wp-calendar tbody td {
	padding: 1px;
	border: solid 1px #FFBD14;
	text-align: center;
}
.widget_calendar #calendar_wrap table#wp-calendar tbody td a:link,
.widget_calendar #calendar_wrap table#wp-calendar tbody td a:visited {
	color: #67A72B;
	font-weight: bold;
}
.widget_calendar #calendar_wrap table#wp-calendar tfoot {
	font-size: 14px;
	font-size: 1.4rem;
}
.widget_calendar #calendar_wrap table#wp-calendar tfoot td#prev,
.widget_calendar #calendar_wrap table#wp-calendar tfoot td#next {
	padding-top: 5px;
}
.widget_calendar #calendar_wrap table#wp-calendar tfoot td#prev a:link,
.widget_calendar #calendar_wrap table#wp-calendar tfoot td#prev a:visited,
.widget_calendar #calendar_wrap table#wp-calendar tfoot td#next a:link,
.widget_calendar #calendar_wrap table#wp-calendar tfoot td#next a:visited {
	color: #67A72B;
}
.widget_calendar #calendar_wrap table#wp-calendar tfoot td#next{
	text-align: right;
}


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

footer {
	border-top: solid 4px #FFBD14;
}

/* -------------------------------------
	ページの先頭へ
------------------------------------- */
#go_to_top {
	display: none;
	position: fixed;
	bottom: 70px;
	right: 20px;
	z-index: 100;
}
#go_to_top a {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #FFBD14;
	background-image: url('./images/pagetop.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 50px 50px;
	text-indent: -9999px;
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
	border-radius: 3px;
}
#go_to_top a:hover {
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

@media screen and (max-width: 767px) {
	#go_to_top {
		bottom: 50px;
		right: 10px;
	}
}

/* -------------------------------------
	フッターナビゲーション
------------------------------------- */
#footer_nav {
	border-bottom: solid 1px #eee;
}
ul#fnavi {
	width: 100%;
	font-size: 0px;
}
ul#fnavi li {
	display:inline-block;
	margin-right: 20px;
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
}
ul#fnavi li a {
	display: block;
	padding: 20px 5px 20px 5px;
	color: #555;
	text-decoration: none;
}

/* -------------------------------------
	社名等
------------------------------------- */
#footer_address {
	padding-top: 30px;
	padding-bottom: 40px;
	background-color: #fff;
}
#footer_address p {
	padding-bottom: 5px;
}
#footer_address p.company_name {
	font-weight: bold;
}
#footer_address p.address {
	font-size: 14px;
	font-size: 1.4rem;
}
#footer_address p.permit {
	font-size: 12px;
	font-size: 1.2rem;
}

@media screen and (max-width:991px) { 
	#footer_address {

	}
}
@media screen and (max-width:767px) { 
	#footer_address {
		padding-top: 20px;
		padding-bottom: 0;
		text-align: center;
	}
}

/* -------------------------------------
	お問い合せ等
------------------------------------- */
#footer_info {
	padding-top: 30px;
	padding-bottom: 40px;
	background-color: #fff;
}

/* 電話・FAX番号 */
#footer_info p.tel_num,
#footer_info p.fax_num {
	font-size: 14px;
	font-size: 1.4rem;
}
#footer_info p.tel_num span,
#footer_info p.fax_num span {
	display: inline-block;
	width: 40px;
	font-weight: bold;
	text-align: left;
}

/* メールでのお問い合わせ */
#footer_info p.mail {
	width: 240px;
	margin-top: 10px;
	background-color: #FFBD14;
	background-image: url('./images/icon_mail.png');
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: 25px 18px;
	text-align: center;
	border-radius: 3px;
}
#footer_info p.mail a {
	display: block;
	width: 100%;
	height: 40px;
	padding-top: 9px;
	padding-left: 30px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

@media screen and (max-width:767px) { 
	#footer_info {
		padding-top: 10px;
		text-align: center;
	}
	#footer_info p.mail {
		margin: 10px auto 0;
	}
}

/* -------------------------------------
	著作権表示
------------------------------------- */
#copyright {
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: #555;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
}

@media screen and (max-width:767px) { 
	#copyright {
		font-size: 10px;
		font-size: 1.0rem;
	}
}

#custom-header img {
    width: 100%;
    height: auto;
    display: block;
}

.bxslider li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bxslider li img {
    max-width: 100%;
    height: auto;
}


