@charset "UTF-8";
@import url("./contact.css");

/* 
■ 濃い色、 メインカラー
#133a7b

■ 薄い色、 サブカラー
#7b1313
*/

body {
	margin: 0 auto;
	color: #333;
	font-size: 15px;
	line-height: 150%;
	letter-spacing: 1px;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: url(../images/common/body_bg.jpg);
}


/* 画像
-------------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}


/* リンク
-------------------------------------------------- */
a {
	color: #133a7b;
	text-decoration: none;
	transition: All 0.4s ease;
}

a:hover {
	color: #7b1313;
	text-decoration: underline;
}

a img {
	transition: All 0.4s ease;
}

a:hover img {
	opacity: .8;
}



/*==================================================
 汎用クラス
================================================== */
@media screen and (min-width: 768px) {
	.sp-only {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc-only {
		display: none !important;
	}
}


/*==================================================
 テーブル
================================================== */
.default-table {
	width: 100%;
}

.default-table th,
.default-table td {
	padding: 12px 30px;
	vertical-align: top;
	background: #d2def2;
}

.default-table tr:nth-child(even) th,
.default-table tr:nth-child(even) td {
	background: #f2f4f8;
}

.default-table th {
	width: 35%;
	text-align: left;
	font-weight: normal;
}

/* セルの横幅を均等にする
------------------------- */
.cell-width-fix {
	table-layout: fixed;
}


/* セルの横幅を指定しない
------------------------- */
.cell-width-fazzy th,
.cell-width-fazzy td {
	width: auto;
}


/* 縦向き
------------------------- */
.direction-vertical,
.direction-vertical thead,
.direction-vertical tbody,
.direction-vertical tfoot,
.direction-vertical tr,
.direction-vertical th,
.direction-vertical td {
	width: auto;
	display: block;
}


/* 大きいサイズのテーブルはスマホではスクロールさせる
------------------------- */
@media screen and (max-width: 768px) {
	.scroll-table-wrap {
		overflow-x: scroll;
	}

	.scroll-table-wrap table {
		width: 700px;
		margin: 0;
	}
}


/* リスト
-------------------------------------------------- */
ul.def {
	margin: 0 0 15px;
}

ul.def li {
	padding: 5px 0 5px 12px;
	border-bottom: 1px dotted #cfcfcf;
	background: url(../images/common/ico_arrow01.png) left center no-repeat;
}


/* 定義リスト
-------------------------------------------------- */
dl.def dt {
	margin: 0 0 5px;
	padding: 0 0 0 14px;
	font-weight: bold;
	background: url(../images/common/ico_arrow01.png) left center no-repeat;
}

dl.def dd {
	margin: 0 0 8px;
	padding: 0 0 0 25px;
}


/* バナー・ボタン
-------------------------------------------------- */
p.text-more {
	padding: 12px 0 0;
	text-align: right;
}

p.text-more a {
	padding: 0 0 0 12px;
	background: url(../images/common/ico_arrow02.png) left center no-repeat;
}


/* ページネーション
-------------------------------------------------- */
.pagenation {
	margin: 0 0 20px;
	text-align: center;
	color: #999;
	font-size: 0;
	letter-spacing: 0;
}

.pagenation li {
	width: 26px;
	margin: 0 2px;
	line-height: 30px;
	color: #999;
	font-size: 13px;
	background: #aaa;
	display: inline-block;
}

.pagenation li > * {
	color: #fff;
	text-decoration: none;
	display: block;
}

.pagenation li:hover,
.pagenation li.current {
	background: #133a7b;
}


/* パンくずリスト
-------------------------------------------------- */
.breadcrumbs {
	width: 1000px;
	height: 25px;
	line-height: 25px;
	margin: 0 auto;
	padding: 15px 0;
	font-size: 0;
	letter-spacing: 0;
	overflow: hidden;
	white-space: nowrap;
}

.breadcrumbs li {
	font-size: 14px;
	display: inline;
}

.breadcrumbs a {
	background: url(../images/common/ico_arrow01.png) right center no-repeat;
	margin: 0 7px 0 0;
	padding: 0 10px 0 0;
}

@media screen and (max-width: 768px) {
	.breadcrumbs {
		width: auto;
		margin: 0 5px;
	}
}


/* ページ内リンク
-------------------------------------------------- */
.anchor-links {
	margin: 0 0 15px;
	text-align: center;
	font-size: 0;
	letter-spacing: 0;
}

.anchor-links li {
	width: 30%;
	margin: 0 1% 10px;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
}

.anchor-links a {
	line-height: 35px;
	font-size: 13px;
	border: 1px solid #133a7b;
	display: block;
}

.anchor-links a:hover {
	color: #fff;
	text-decoration: none;
	background: #133a7b;
}


/* クリアフィックス
-------------------------------------------------- */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}



/*==================================================
 ヘッダー
================================================== */
.header-inner {
	width: 1100px;
	margin: 0 auto;
	padding: 0 0 10px;
	overflow: hidden;
}

.header-left {
	padding: 15px 0 0;
	float: left;
}

.header-right {
	float: right;
}

@media screen and (max-width: 768px) {
	.header-inner {
		width: auto;
		padding: 0;
	}

	.header-left {
		padding: 0;
		float: none;
	}

	.header-right {
		display: none;
	}
}

/* コンテンツ
------------------------- */
/* ロゴ */
@media screen and (max-width: 768px) {
	.header-logo {
		padding: 15px;
		text-align: center;
	}
}

/* 営業時間,定休日 */
.header-detail-list {
	margin: 0 0 10px;
	float: right;
	overflow: hidden;
}

.header-detail-list dt,
.header-detail-list dd {
	float: left;
}

.header-detail-list dt {
	margin: 0 0 0 1px;
}

/* お問い合わせ */
.header-contact-list {
	overflow: hidden;
	clear: both;
}

.header-contact-list li {
	margin: 0 0 0 18px;
	float: left;
}

/* ナビ
------------------------- */
.header-nav {
	background: #133a7b;
}

.header-nav ul {
	width: 1100px;
	margin: 0 auto;
	font-size: 0;
	letter-spacing: 0;
}

.header-nav li {
	display: inline-block;
	vertical-align: top;
}

@media screen and (max-width: 768px) {
	.header-nav {
		height: 5px;
	}

	.header-nav ul {
		display: none;
	}
}

/* メインビジュアル
------------------------- */
.main-visual {
	position: relative;
}

/* キャッチ */
.visual-text {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	z-index: 2000;
}

/* js背景 */
.visual-bg-wrap {
	position: relative;
	z-index: 1000;
}

.visual-bg-wrap .visual-bg {
	width: 100%;
	height: 618px;
	background: center / cover;
}

@media screen and (max-width: 768px) {
	.visual-bg-wrap .visual-bg {
		height: 50vw;
	}
}

/* サブビジュアル
------------------------- */
.sub-visual {
	padding: 63px 0 67px;
	text-align: center;
	background: url(../images/common/visual_bg.png) center top no-repeat;
}

/*==================================================
 フッター
================================================== */
/* フットコンテンツ
-------------------------------------------------- */
.foot-contents-wrap {
	padding: 100px 0 0;
	background: url(../images/common/footer_bg.jpg);
}

@media screen and (max-width: 768px) {
	.foot-contents-wrap {
		padding: 30px 0 0;
	}
}

/* バナー
------------------------- */
.foot-link-list {
	overflow: hidden;
}

.foot-link-list li {
	width: 50%;
	background: center / cover;
	float: left;
}

.foot-link-list li:nth-child(odd) {
	text-align: right;
}

.foot-link-list li.foot-bnr01 {
	background-image: url(../images/common/foot_bnr_bg01.jpg);
}

.foot-link-list li.foot-bnr02 {
	background-image: url(../images/common/foot_bnr_bg02.jpg);
}

.foot-link-list li.foot-bnr03 {
	background-image: url(../images/common/foot_bnr_bg03.jpg);
}

.foot-link-list li.foot-bnr04 {
	background-image: url(../images/common/foot_bnr_bg04.jpg);
}

.foot-link-list a {
	display: block;
}

@media screen and (max-width: 768px) {
	.foot-link-list li:nth-child(n) {
		width: auto;
		text-align: center;
		float: none;
	}
}

/* マップ
------------------------- */
.foot-contents-wrap iframe {
	margin: 0;
	padding: 0;
	vertical-align: top;
	display: block;
}


/* フッター
------------------------- */
.site-footer {
	padding: 67px 0 0;
	text-align: center;
	color: #fff;
	letter-spacing: 0;
	background: #133a7b;
}

/* ロゴ
-------------------------------------------------- */
.footer-logo {
	margin: 0 0 37px;
}

/* 所在地
-------------------------------------------------- */
.footer-address {
	margin: 0 0 30px;
}

/* お問い合わせ
-------------------------------------------------- */
.footer-contact-list {
	margin: 0 0 38px;
}

.footer-contact-list li {
	margin: 0 0 1px;
}

/* ナビ
-------------------------------------------------- */
.footer-nav {
	margin: 0 0 17px;
	font-size: 0;
	letter-spacing: 0;
	line-height: 15px;
}

.footer-nav li {
	margin: 0 9px 0 0;
	padding: 0 9px 0 0;
	font-size: 15px;
	border-right: 1px solid #fff;
	display: inline-block;
	vertical-align: top;
}

.footer-nav li:last-child {
	border-right: none;
}

.footer-nav a {
	color: inherit;
}

@media screen and (max-width: 768px) {
	.footer-nav li {
		width: 48%;
		margin: 0 1%;
		padding: 0 0 0 10px;
		line-height: 35px;
		text-align: left;
		border: none;
		border-bottom: 1px dotted #fff;
		background: url(../images/common/ico_arrow01_white.png) left center no-repeat;
		box-sizing: border-box;
	}

	.footer-nav a {
		display: block;
	}
}

/* コピーライト
-------------------------------------------------- */
.footer-copyright {
	line-height: 38px;
	text-align: center;
	letter-spacing: 0;
	background: #022256;
	display: block;
}

.footer-copyright a {
	color: inherit;
}



/* ページトップへ戻る
-------------------------------------------------- */
.footer-backtotop {
	position: fixed;
	right: 20px;
	bottom: 40px;
	z-index: 999;
	transition: All 0.4s ease;
	opacity: 0;
}

.footer-backtotop.view {
	opacity: 1;
}



/*==================================================
 コンテンツ
================================================== */
.all-wrap {
	min-width: 1100px;
}

.restriction-content {
	width: 1000px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.all-wrap {
		min-width: 0;
	}

	.restriction-content {
		width: auto;
		margin: 0 5px;
	}
}

/*==================================================
 通常セクション
================================================== */
.section {
	margin: 0 0 60px;
}

.section-contents {
	overflow: hidden;
}

.section-footer {
	padding: 15px 0 0;
	clear: both;
}

@media screen and (max-width: 768px) {
	.section {
		margin: 0 0 30px;
	}
}


/* 見出し
-------------------------------------------------- */
/* h2
------------------------- */
h2.section-title {
	margin: 0 0 40px;
	text-align: center;
	color: #133a7b;
	font-size: 24px;
	font-weight: bold;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

/* h3
------------------------- */
h3.section-title {
	margin: 0 0 15px;
	padding: 8px;
	border-bottom: 1px solid #dfdfdf;
	border-left: 8px solid #7b1313;
}


/* アイキャッチ画像
-------------------------------------------------- */
.section-thumb-center {
	margin: 0 auto 15px;
	display: block;
}

.section-thumb-left {
	max-width: 35%;
	margin: 0 15px 15px 0;
	float: left;
}

.section-thumb-right {
	max-width: 35%;
	margin: 0 0 15px 15px;
	float: right;
}


/* 記事情報
-------------------------------------------------- */
.post-data {
	height: 21px;
	margin: 0 0 15px;
	line-height: 21px;
	font-size: 0;
	letter-spacing: 0;
	overflow: hidden;
}

.post-data li {
	margin: 0 8px 0 0;
	padding: 0 8px 0 0;
	font-size: 12px;
	border-right: 1px dotted #aaa;
	display: inline-block;
}

.post-data .item-date {
	margin: 0;
	display: inline;
}

.post-date {
	margin: 0 0 8px;
	padding: 0 0 0 10px;
	font-size: 13px;
	background: url(../images/common/ico_arrow01.png) left center no-repeat;
	display: block;
}


/* 詳細ページ SNSシェアボタン
-------------------------------------------------- */
.sns-sharerbtn-list {
	margin: 8px 0;
	padding: 8px 0;
	text-align: center;
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	background: #f6f6f6;
	overflow: hidden;
	clear: both;
}

.sns-sharerbtn-list li {
	margin: 0 4px;
	vertical-align: top;
	display: inline-block;
}


/* 詳細ページ 前後の記事へのリンク
-------------------------------------------------- */
.paginated-link {
	overflow: hidden;
}

.paginated-link li {
	width: 49%;
}

.paginated-link li.prev-link {
	float: left;
}

.paginated-link li.next-link {
	float: right;
}

.paginated-link li a {
	height: 35px;
	line-height: 35px;
	text-align: center;
	font-size: 13px;
	border: 1px solid #133a7b;
	border-radius: 2px;
	background: #fff;
	display: block;
	overflow: hidden;
}

.paginated-link li a:hover {
	color: #fff;
	text-decoration: none;
	background: #133a7b;
}



/*==================================================
 サイドバー
================================================== */
.site-sidebar {
	width: 260px;
	float: right;
}

@media screen and (max-width: 768px) {
	.site-sidebar {
		width: auto;
		float: none;
	}
}


/*==================================================
 トップページ
================================================== */
/* リードコンテンツ
-------------------------------------------------- */
.top-lead-section {
}

.top-lead-section .lead-inner {
	width: 764px;
	margin: 0 auto;
	padding: 78px 0 77px;
	overflow: hidden;
}

/* 見出し */
.top-lead-section .lead-title {
	margin: 0 0 0 24px;
	float: right;
}

/* 本文 */
.top-lead-section .lead-content {
	line-height: 30px;
	color: #616161;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	float: right;
}

/*サムネ */
.top-lead-section .lead-thumb {
	float: left;
}

@media screen and (max-width: 768px) {
	.top-lead-section .lead-inner {
		width: auto;
		padding: 32px 16px;
	}

	.top-lead-section .lead-title {
		margin: 0 0 16px;
		float: none;
	}

	.top-lead-section .lead-content {
		margin: 0 0 16px;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		float: none;
	}

	.top-lead-section .lead-thumb {
		margin: 0 auto;
		display: block;
		float: none;
	}
}

/* ごあいさつ
-------------------------------------------------- */
.top-greeting-section {
	background: url(../images/top/greeting_bg.jpg) center / cover;
}

.top-greeting-section .greeting-inner {
	padding: 104px 0 88px;
}

.top-greeting-section .greeting-title {
	margin: 0 0 34px;
	text-align: center;
}

.top-greeting-section .greeting-content {
	line-height: 38px;
	text-align: center;
	color: #fff;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

@media screen and (max-width: 768px) {
	.top-greeting-section .greeting-inner {
		padding: 32px 16px;
	}

	.top-greeting-section .greeting-content {
		text-align: left;
	}
}

/* 埼玉県～です。
-------------------------------------------------- */
.top-about-section {
	background: url(../images/top/about_thumb.jpg) left calc(50vw + 103px) top 92px no-repeat;
}

.top-about-section .about-inner {
	width: 1100px;
	margin: 0 auto;
	padding: 181px 0 185px;
}

.top-about-section .about-title {
	margin: 0 0 25px;
	color: #133a7b;
	font-size: 22px;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	font-weight: bold;
	letter-spacing: 0;
}

.top-about-section .about-content {
	width: 530px;
}

.top-about-section .about-thumb {
	margin: 32px auto 0;
	display: block;
}

@media screen and (max-width: 768px) {
	.top-about-section {
		background: none;
	}

	.top-about-section .about-inner {
		width: auto;
		padding: 32px 16px;
	}

	.top-about-section .about-content {
		width: auto;
	}
}

/* リンク
-------------------------------------------------- */
.top-link-list {
	padding: 51px 0 49px;
	text-align: center;
	font-size: 0;
	letter-spacing: 0;
	background: url(../images/top/link_list_bg.jpg);
}

.top-link-list li {
	margin: 0 20px;
	display: inline-block;
	vertical-align: top;
}

@media screen and (max-width: 768px) {
	.top-link-list {
		padding: 32px 16px 16px;
	}

	.top-link-list li {
		margin: 0 0 16px;
		display: block;
	}
}

/* 手がけた仕事
-------------------------------------------------- */
.top-case-section .case-inner {
	padding: 83px 0 113px;
}

.top-case-section .case-title {
	margin: 0 0 62px;
	text-align: center;
}

/* リスト
------------------------- */
.top-case-section .case-list-wrap {
	overflow: hidden;
	position: relative;
}

.top-case-section .top-case-trim {
	width: 225px;
	height: 225px;
	margin: 0 16px;
	border-radius: 4px;
	background: #f3f4ee;
	overflow: hidden;
	position: relative;
	display: block;
}

.top-case-section .top-case-trim img {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}



/* ブログ
-------------------------------------------------- */
.top-blog-section {
	background: url(../images/top/blog_bg.jpg) center / cover fixed;
}

.top-blog-section .blog-inner {
	width: 912px;
	margin: 0 auto;
	padding: 98px 0 84px;
}

.top-blog-section .blog-title {
	margin: 0 0 22px;
	text-align: center;
}

.top-blog-section .blog-list {
	margin: 0 0 55px;
}

.top-blog-section .blog-list li {
	width: 100%;
	padding: 22px 0 0;
	color: #fff;
	line-height: 42px;
	letter-spacing: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-bottom: 1px solid #fff;
	overflow: hidden;
}

.top-blog-section .blog-list span {
	margin: 0 35px 0 0;
	font-weight: bold;
}

.top-blog-section .blog-list a {
	color: inherit;
}

.top-blog-section .blog-more-btn {
	margin: 0 0 107px;
	text-align: center;
}

.top-blog-section .facebook-bnr {
	text-align: center;
}

@media screen and (max-width: 768px) {
	.top-blog-section .blog-inner {
		width: auto;
		padding: 32px 16px;
	}

	.top-blog-section .blog-more-btn {
		margin: 0 0 32px;
	}
}



/*==================================================
 サイトマップ
================================================== */
.sitemap-list li {
	padding: 0 0 0 15px;
	line-height: 40px;
	border-bottom: 1px dotted #ccc;
	background: url(../images/common/ico_arrow01.png) 5px center no-repeat;
}

/*==================================================
 流れ
================================================== */
/* レイアウト
-------------------------------------------------- */
.flow-items-wrap .flow-item {
	margin: 0 0 81px;
	padding: 16px 24px;
	border: 1px solid #bfbfbf;
	background: #d8dde5;
	position: relative;
}

/* コンテンツ
------------------------- */
.flow-items-wrap .flow-item .contents {
	width: calc(100% - 374px);
	min-height: 220px;
	padding: 28px 35px;
	background: #fff;
	float: right;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.flow-items-wrap .flow-item .contents {
		width: auto;
		min-height: 0;
		float: none;
	}
}

/* サムネ
------------------------- */
.flow-items-wrap .flow-item .thumb {
	float: left;
}

@media screen and (max-width: 768px) {
	.flow-items-wrap .flow-item .thumb {
		float: none;
	}

	.flow-items-wrap .flow-item .thumb img {
		width: 100%;
	}
}

/* 矢印
------------------------- */
.flow-items-wrap .flow-item:before {
	content: '';
	width: 19px;
	height: 16px;
	background: url(../images/service/flow_arrow.png);
	display: block;
	position: absolute;
	bottom: -39px;
	left: 50%;
	transform: translateX(-50%);
}

.flow-items-wrap .flow-item:last-child:before {
	display: none;
}

/* コンテンツ
-------------------------------------------------- */
.flow-item .flow-step-num {
	margin: 0 0 16px;
}

.flow-item .title {
	margin: 0 0 2px;
	color: #133a7b;
	font-size: 19px;
	font-weight: bold;
}


/*==================================================
 お問い合わせ
================================================== */
/* table設定
-------------------------------------------------- */
@media screen and (max-width: 768px) {
	.contact-form,
	.contact-form tbody,
	.contact-form tr,
	.contact-form th,
	.contact-form td {
		width: auto;
		display: block;
	}

	.contact-form th,
	.contact-form td {
		margin: 0 0 1px;
	}

	.contact-form th {
		font-weight: bold;
	}
}


/* input設定
-------------------------------------------------- */
.input-big,
.input-mid,
.input-min {
	padding: 5px;
	box-sizing: border-box;
}

.input-big {
	width: 100%;
}

.input-mid {
	width: 60%;
}

.input-min {
	width: 60px;
}


/* 必須マーク
-------------------------------------------------- */
.required-mark {
	padding: 1px 3px;
	color: #fff;
	font-size: 12px;
	font-weight: normal;
	border-radius: 5px;
	background: #f00;
	float: right;
}


/* 未記入エラー文
-------------------------------------------------- */
.error-text {
	margin: 0 0 5px;
	color: #f00;
}


/* 確認、バック、送信ボタン
-------------------------------------------------- */
.contact-submits {
	padding: 15px 0 0;
	text-align: center;
}

.contact-submits input {
	margin: 0 5px;
	padding: 5px;
}


/* セキュリティエラー
-------------------------------------------------- */
.sec-error-text {
	line-height: 50px;
	text-align: center;
	color: #f00;
	font-size: 16px;
	border: 2px solid #f00;
}


/*==================================================
 cssで画像をトリミング
================================================== */
.img-trim {
	height: 0;
	padding: 100% 0 0; /* 正方形 */
	padding: 61.80% 0 0; /* 黄金比 */
	padding: 70.711% 0 0; /* 白銀比 */
	background: #dfdfdf;
	display: block;
	overflow: hidden;
	position: relative;
}

.img-trim img {
	min-width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}



/*==================================================
 ギャラリー表示
================================================== */
ul.gallery-list {
	margin: 15px 0;
	font-size: 0;
	letter-spacing: 0;
}

ul.gallery-list li {
	width: calc((100% - 30px) / 4);
	margin: 0 10px 20px 0;
	font-size: 14px;
	vertical-align: top;
	display: inline-block;
}

ul.gallery-list li:nth-child(4n) {
	margin-right: 0;
}

@media screen and (max-width: 768px) {
	ul.gallery-list li:nth-child(n) {
		width: calc((100% - 20px) / 3);
		margin: 0 10px 20px 0;
		font-size: 14px;
		vertical-align: top;
		display: inline-block;
	}

	ul.gallery-list li:nth-child(3n) {
		margin-right: 0;
	}
}


/* 2カラム
------------------------- */
ul.gallery-list.column2 li:nth-child(n) {
	width: calc((100% - 10px) / 2);
	margin-right: 10px;
}

ul.gallery-list.column2 li:nth-child(2n) {
	margin-right: 0;
}


/* 3カラム
------------------------- */
ul.gallery-list.column3 li:nth-child(n) {
	width: calc((100% - 20px) / 3);
	margin-right: 10px;
}

ul.gallery-list.column3 li:nth-child(3n) {
	margin-right: 0;
}


/* 4カラム
------------------------- */
ul.gallery-list.column4 li:nth-child(n) {
	width: calc((100% - 30px) / 4);
	margin-right: 10px;
}

ul.gallery-list.column4 li:nth-child(4n) {
	margin-right: 0;
}


/* ホバーアニメーション
------------------------- */
ul.gallery-list a {
	display: block;
	position: relative;
}

ul.gallery-list a:before {
	content: '';
	width: 100%;
	height: 100%;
	border: 0 solid rgba(255,255,255,.5);
	display: block;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: All 0.3s ease;
}

ul.gallery-list a:hover:before {
	border-width: 10px;
}


/* タイトル
------------------------- */
ul.gallery-list .gallery-photo-title {
	margin: 8px 0 0;
	text-align: center;
}


/* キャプション
------------------------- */
ul.gallery-list .gallery-photo-caption {
	margin: 8px 0 0;
	line-height: 1.3;
	font-size: 13px;
}


/*==================================================
 沼沢工業について
================================================== */
/* リード
-------------------------------------------------- */
.about-lead-section {
	padding: 100px 0 66px;
	text-align: center;
}

.about-lead-section .lead-thumb {
	margin: 0 0 30px;
}

.about-lead-section .lead-title {
	margin: 0 0 26px;
	color: #133a7b;
	font-size: 25px;
	font-weight: bold;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

@media screen and (max-width: 768px) {
	.about-lead-section {
		padding: 24px 16px;
	}
}

/* 会社概要
-------------------------------------------------- */
.about-company-section {
	padding: 68px 0 90px;
	background: url(../images/common/body_bg02.jpg);
}

.about-company-section .company-inner {
	width: 1100px;
	margin: 0 auto;
}

.company-content {
	overflow: hidden;
}

.about-company-section .column {
	width: 500px;
	float: left;
}

.about-company-section .column:nth-child(even) {
	float: right;
}

@media screen and (max-width: 768px) {
	.about-company-section {
		padding: 24px 16px;
	}

	.about-company-section .company-inner {
		width: auto;
	}

	.about-company-section .column:nth-child(n) {
		width: auto;
		margin: 0 0 24px;
	}
}

/* 見出し */
.about-company-section .company-title {
	margin: 0 0 51px;
	text-align: center;
}

/* ブログへのボタン */
.blog-btn {
	margin: 33px 0 0;
	text-align: center;
}

/*==================================================
 バフ研磨について
================================================== */
/* リード
-------------------------------------------------- */
.buffing-lead-section {
	width: 700px;
	margin: 0 auto 80px;
	padding: 95px 0 80px;
	text-align: center;
}

.buffing-lead-section .lead-title {
	margin: 0 0 26px;
	color: #133a7b;
	font-size: 25px;
	font-weight: bold;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

.buffing-lead-section .lead-thumb {
	margin: 50px 0 0;
}

@media screen and (max-width: 768px) {
	.buffing-lead-section {
		width: auto;
		margin: 0;
		padding: 32px 16px;
	}

	.buffing-lead-section .lead-thumb {
		margin: 24px 0 0;
	}
}

/* こんな特徴があります
-------------------------------------------------- */
.buffing-characteristic-section {
	margin: 0 0 103px;
	background: url(../images/buffing/characteristic_bg.jpg);
}

.buffing-characteristic-section .characteristic-inner {
	width: 700px;
	margin: 0 auto;
	padding: 65px 0 60px;
	text-align: center;
	color: #fff;
}

.buffing-characteristic-section .characteristic-title {
	margin: 0 0 26px;
	font-size: 25px;
	font-weight: bold;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

@media screen and (max-width: 768px) {
	.buffing-characteristic-section {
		margin: 0 0 24px;
	}

	.buffing-characteristic-section .characteristic-inner {
		width: auto;
		padding: 32px 16px;
	}
}


/* バフ研磨の手順
-------------------------------------------------- */
.table-ul ul {
	display:table;
	width:100%;
	margin:0;
	padding:0;
}

.table-ul li {
	display:table-cell;
	width:calc(90% / 2);
	margin:16px;
	float: left;
}

.table-ul p{
	padding: 10px 0;
}

@media screen and (max-width: 768px) {

	.table-ul li {
		display:block;	
		width:100%;
		margin:0;
		float: none;
	}

}


/*==================================================
 サービス内容
================================================== */
/* リード
-------------------------------------------------- */
.service-lead-section .lead-inner {
	padding: 100px 0 52px;
	text-align: center;
}

.service-lead-section .lead-title {
	margin: 0 0 10px;
	color: #133a7b;
	font-size: 25px;
	font-weight: bold;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

/* 研磨ご依頼時の流れ
-------------------------------------------------- */
.service-flow-section {
	background: url(../images/common/body_bg02.jpg);
}

.service-flow-section .flow-inner {
	width: 1000px;
	margin: 0 auto;
	padding: 45px 0 60px;
}

.service-flow-section .flow-title {
	margin: 0 0 43px;
	text-align: center;
	color: #133a7b;
	font-size: 25px;
	font-weight: bold;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

@media screen and (max-width: 768px) {
	.service-flow-section .flow-inner {
		width: auto;
		padding: 24px 16px;
	}
}

/* お問い合わせボタン */
.flow-contact-btn {
	text-align: center;
}


/* 注意事項
-------------------------------------------------- */
.service-caution-section {
	max-width: 670px;
	margin: 0 auto 74px;
	padding: 24px;
	text-align: center;
	border: 4px solid #133a7b;
	background: rgba(255,255,255,.48);
	box-sizing: border-box;
}

.service-caution-section .caution-title {
	margin: 0 0 21px;
	font-size: 21px;
}

.service-caution-section p {
	margin: 0 0 1em;
}

/*==================================================
 手がけた仕事
================================================== */
.case-section {
	padding: 100px 0 0;
}

.case-section-title {
	margin: 0 0 47px;
	text-align: center;
}

.case-section-lead {
	margin: 0 0 60px;
	text-align: center;
}



/* 記事
-------------------------------------------------- */
.case-item-title {
	margin: 0 0 75px;
	padding: 0 0 0 46px;
	line-height: 38px;
	color: #fff;
	font-size: 17px;
	border: 1px solid #bfbfbf;
	background: #133a7b;
	position: relative;
}

.case-item-title:before {
	content: '';
	width: 6px;
	height: calc(100% - 22px);
	background: #fff;
	position: absolute;
	left: 23px;
	top: 11px;
}

.case-item-title a {
	color: inherit;
}

@media screen and (max-width: 768px) {
	.case-item-title {
		margin: 0 0 24px;
	}
}




/* 画像コメントセット
------------------------- */
.case-images-wrap {
	width: 763px;
	margin: 0 auto;
	background: url(../images/case/case_arrow.png) center top 90px no-repeat;
	overflow: hidden;
}

.case-image-set {
	width: 315px;
	font-size: 17px;
	float: left;
}

.case-image-set:nth-child(2n) {
	float: right;
}


.case-image-trim {
	width: 100%;
	height: 0;
	margin: 0 0 25px;
	padding: 69.84% 0 0;
	position: relative;
	overflow: hidden;
	display: block;
}

.case-image-trim img {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 768px) {
	.case-images-wrap {
		width: auto;
		background-size: 15px auto;
		background-position: center top calc(50% - 10px);
	}

	.case-image-set {
		width: calc(50% - 10px);
	}
}



/* 追加css */
.g-recaptcha > div{
    margin: 20px auto 0;
}