@charset "utf-8";
/*
Theme Name: ichinoki
Theme URI: https://ichinoki-a.com/
Author:LIT WORKS
Author URI:https://litworks.co.jp/
*/

/***********************************************
    
      cssスタイル

************************************************/

/*==========================================
	アニメーション設定
===========================================*/

/* ローディング */
#loading,#body_over {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: #fff;
	top: 0;
	left: 0;
	opacity: 1;
}
#loading {
	z-index: 9999;
}
#body_over {
	z-index: 9998;
}
main,header,.float_side{
	opacity: 0;
}
.cube_group {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
}
.cube_group .cube {
	width: 33%;
	height: 33%;
	background-color: #000;
	float: left;
	-webkit-animation: cube 1.3s infinite ease-in-out;
	animation: cube 1.3s infinite ease-in-out;
}
.cube_group .cube1 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.cube_group .cube2 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.cube_group .cube3 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.cube_group .cube4 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.cube_group .cube5 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.cube_group .cube6 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.cube_group .cube7 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.cube_group .cube8 {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.cube_group .cube9 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
@-webkit-keyframes cube {
	0%,
	70%,
	100% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}
	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}
@keyframes cube {
	0%,
	70%,
	100% {
		-webkit-transform: scale3D(1, 1, 1);
		transform: scale3D(1, 1, 1);
	}
	35% {
		-webkit-transform: scale3D(0, 0, 1);
		transform: scale3D(0, 0, 1);
	}
}

/* ページ共通アニメーション */
.slide_anime {
	opacity: 1;
	-webkit-transition-property: opacity, transform;
	transition-property: opacity, transform;
	-webkit-transition-duration: 0.8s;
	transition-duration: 0.8s;
	-webkit-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	transition-timing-function: cubic-bezier(.25, .46, .45, .94);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.slide_anime.is_hide {
	opacity: 0;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

@-webkit-keyframes slideUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes slideUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/*==========================================
	ヘッダー
===========================================*/
header #header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	height: 80px;
	border-bottom: 1px solid #fff;
	padding: 0 2%;
}
.logo_area {
	width: 280px;
}
.logo_area img {
	width: 60%;
}
.logo_area h1 {
	font-weight: normal;
	font-size: 15px;
	margin: 5px 0 0 3%;
	word-break: keep-all;
}
header .header_sns {
	width: 280px;
}
header .header_sns a,
footer .footer_sns a {
	width: 30px;
	height: 30px;
	margin-right: 5px;
}
header .header_sns a:last-child,
header .footer_sns a:last-child {
	margin-right: 0;
}
header .global_nav {
	width: 40%;
	text-align: center;
	position: relative;
}
header .global_nav ul li {
	margin-right: 2%;
	min-width: 84px;
}
header .global_nav ul li:last-child{
	margin-right: 0;
}
header .global_nav ul li a {
	position: relative;
}
header .global_nav ul li a:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #000;
	width: 100%;
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top left;
	transform-origin: top left;
	opacity: 0;
}
header .global_nav ul li a:hover {
	opacity: 1;
}
header .global_nav ul li a:hover:after,
header .global_nav ul li.current a:after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	opacity: 1;
}
header .global_nav ul li span {
	display: block;
	font-size: 12px;
	padding: 8px 0;
}

/* ヘッダークローン */
header #header_clone {
	position: fixed;
	top: -80px;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 80px;
	padding: 0 2%;
	background: rgba(0, 0, 0, 0.5);
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
header #header_clone.is_fixed {
	top: 0;
}
header #header_clone .header_logo h1 {
	color: #fff;
}
header #header_clone .global_nav ul li a {
	color: #fff;
}
header #header_clone .global_nav ul li a:after {
	background: #fff;
}

/*  スマホナビゲーションボタン  */
.sp_btn {
	position: relative;
	width: 40px;
	height: 24px;
	z-index: 2000;
	cursor: pointer;
	border-radius: 5px;
}
.sp_btn span {
	display: block;
	background: #000;
	width: 40px;
	height: 2px;
	position: absolute;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.sp_btn span:first-of-type {
	top: 0;
}
.sp_btn span:nth-of-type(2) {
	top: 11px;
}
.sp_btn span:last-of-type {
	bottom: 0;
}
.sp_btn.active span:first-of-type {
	-webkit-transform: translateY(11px) rotate(40deg);
	-moz-transform: translateY(11px) rotate(40deg);
	-ms-transform: translateY(11px) rotate(40deg);
	transform: translateY(11px) rotate(40deg);
}
.sp_btn.active span:nth-of-type(2) {
	opacity: 0;
}
.sp_btn.active span:last-of-type {
	-webkit-transform: translateY(-11px) rotate(-40deg);
	-moz-transform: translateY(-11px) rotate(-40deg);
	-ms-transform: translateY(-11px) rotate(-40deg);
	transform: translateY(-11px) rotate(-40deg);
}
header #header_clone .sp_btn span {
	background: #fff;
}

/*------------------------------------*
       スマホ開閉メニュー
*------------------------------------*/
#header_sp {
	display: block;
	position: fixed;
	width: 100%;
	top: 0;
	right: -100%;
	height: 100%;
	z-index: 200;
	padding: 0 2%;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	background: #fff;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#header_sp.on {
	right: 0;
}
#header_sp .header_sp_wp {
	height: 80px;
}
#header_sp #nav_sp ul li {
	text-align: center;
	position: relative;
}
#header_sp #nav_sp ul li a {
	padding: 20px 0;
	border-top: 1px solid #000;
}
#header_sp #nav_sp ul li:last-child a {
	border-bottom: 1px solid #000;
}
#header_sp #nav_sp ul li a:after {
	display: inline-block;
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
	content: '\f054';
	font-weight: 900;
	font-size: 20px;
}
#header_sp .header_sns {
	width: auto;
	margin: 30px 0;
}
#header_sp .header_sns a {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}
#header_sp .header_sns a:last-child {
	margin-right: 0;
}
#header_sp .header_about {
	line-height: 1.8;
	font-size: 15px;
}
#header_sp .header_about h1 {
	font-size: 24px;
	font-weight: normal;
}
#header_sp .header_about dl {
	width: 445px;
	margin: 10px auto;
}
#header_sp .header_about dd {
	display: table-cell;
	vertical-align: middle;
}
#header_sp .header_about dd:first-of-type {
	width: 120px;
	border: 1px solid #000;
}
#header_sp .header_about dd:nth-of-type(2) {
	padding-left: 5px;
}
#header_sp .header_about p.header_copy {
	padding: 20px 0;
}

/*------------------------------------*
    サイドバナー
*------------------------------------*/
.float_side {
	position: fixed;
	top: 50%;
	height: 60%;
	right: 0;
	z-index: 100;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.float_side .side_bnr {
	width: 56px;
	height: 218px;
	position: relative;
	right: -10px;
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
}
.float_side .side_bnr:hover {
	right: 0;
	opacity: 1;
}
.float_side .side_bnr img {
	width: 56px;
	height: 140px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 5px;
}
.float_side .bnr_01 {
	background-image: url("./image/common/side_bnr01_bg.png");
}
.float_side .bnr_02 {
	background-image: url("./image/common/side_bnr02_bg.png");
	margin-top: -20px;
}

/*------------------------------------*
    動画設定
*------------------------------------*/
#main_visual {
	position: relative;
	overflow: hidden;
}
#movie {
	position: absolute;
}
#main_visual .main_text {
	color: #000;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 20;
}
#main_visual .main_text h2 {
	font-size: 60px;
	text-align: center;
}
#main_visual .main_text h2.is_anime {
	-webkit-animation: slideUp 1.0s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1.5s;
	animation: slideUp 1.0s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1.5s;
}
#main_visual .scroll_btn {
	width: 52px;
	height: 52px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

/*==========================================
	ページ共通
===========================================*/
main {
	overflow: hidden;
}
#content {
	width: 100%;
	position: relative;
	background: #fff;
}
section {
	position: relative;
}
.mob_show {
	display: none;
}
.tab_show {
	display: none;
}
.sp_show {
	display: none;
}
.tx {
	line-height: 1.8;
}
.tx_l {
	text-align: left;
}
.tx_c {
	text-align: center;
}
.tx_top {
	font-size: 18px;
}
.ell {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pd_12 {
	padding: 120px 0;
}

/* ホバーリンク */
.more{
	position: relative;
	width: 230px;
	margin: 0 auto;
}
.more:after {
	position: absolute;
	content: '';
	top: 50%;
	right: -30px;
	width: 60px;
	height: 60px;
	z-index: 10;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-image: url("./image/common/btn_arrow.svg");
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.more:hover:after {
	background-image: url("./image/common/btn_arrow_on.svg");
}
.hover_btn {
	font-weight: bold;
	padding: 24px 0;
	position: relative;
	border: 1px solid #000;
	color: #fff;
	text-align: center;
	z-index: 1;
	background: #000;
	overflow: hidden;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.hover_btn::after {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	left: -100%;
	background: #fff;
	z-index: -1;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.hover_btn:hover {
	opacity: 1;
	color: #000;
}
.hover_btn:hover::after {
	left: 0;
}

/*==========================================
	トップページ
===========================================*/
main#home h3,
.content_wp h3 {
	font-size: 60px;
}
main#home h3 span {
	font-size: 18px;
}

/* 各セクションマージン */
section.sec_01 {
	padding: 120px 0 240px 0;
}
section.sec_02 {
	padding-bottom: 240px;
}
section.sec_03 {
	padding-bottom: 120px;
}
section.sec_04 {
	padding: 120px 0;
	background: #F2F2F2;
}

/* section_01 section_02 （ABOUTUS SERVICE） */
.content_wp .sec_wp {
	position: relative;
	height: 540px;
}
.content_wp .sec_wp:after {
	content: "";
	background: #F2F2F2;
	display: inline-block;
	width: 60%;
	min-width: 800px;
	height: 100%;
	position: absolute;
	top: 80px;
	z-index: 1;
}
.content_wp .sec_wp.bg_r:after {
	right: 0;
}
.content_wp .sec_wp.bg_l:after {
	left: 0;
}
.content_wp .box_img {
	width: 60%;
	height: 100%;
	position: absolute;
	z-index: 10;
	overflow: hidden;
}
.content_wp .box_img.pos_l {
	left: 0;
}
.content_wp .box_img.pos_r {
	right: 0;
}
.content_wp .box_img .img_bg {
	width: 100%;
	height: 100%;
	z-index: 10;
}
.content_wp .box_img .img_bg.box_l {
	background-image: url("./image/top/about_01.png");
}
.content_wp .box_img .img_bg.box_r {
	background-image: url("./image/top/service_01.png");
}
.content_wp .box_ttl {
	position: absolute;
	z-index: 30;
	margin: auto;
	right: 0;
	left: 0;
}
.content_wp .box_ttl.ttl_r {
	text-align: right;
	top: 120px;
}
.content_wp .box_ttl.ttl_l {
	text-align: left;
	top: 0;
}
.content_wp .box_ttl h3 {
	position: absolute;
}
.content_wp .box_ttl.ttl_r h3 {
	right: 0;
}
.content_wp .box_ttl.ttl_l h3 {
	left: 0;
}
.content_wp .box_ttl h3 span {
	display: block;
	margin-top: 10px;
}
.content_wp .box_txt {
	position: absolute;
	bottom: 120px;
	margin: auto;
	z-index: 10;
	right: 0;
	left: 0;
}
.content_wp .box_txt.box_r {
	text-align: right;
	padding-right: 10px;
}
.content_wp .box_txt.box_l {
	text-align: left;
}
h2.ttl {
	font-size: 42px;
}
.content_wp .box_txt .tx_inner {
	display: inline-block;
	text-align: center;
	max-width: 840px;
	width: 100%;
	background: #fff;
	padding: 80px 20px;
	box-shadow: 10px 10px;
}
.content_wp .box_txt .tx_inner .tx {
	font-size: 18px;
	margin: 30px 0 80px 0;
}
.content_wp .box_img .img_bg.is_anime {
	-webkit-animation: imgHide 1s cubic-bezier(0.8, 0, 0.1, 1) 0s both;
	animation: imgHide 1s cubic-bezier(0.8, 0, 0.1, 1) 0s both;
}
@-webkit-keyframes imgHide {
	0% {
		opacity: 0;
	}
	64% {
		opacity: 0;
	}
	65% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
@keyframes imgHide {
	0% {
		opacity: 0;
	}
	64% {
		opacity: 0;
	}
	65% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
.content_wp .box_img .mask {
	content: "";
	background: #000;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 10;
}
.content_wp .box_img .mask.is_anime {
	-webkit-animation: mask 1s cubic-bezier(0.8, 0, 0.1, 1) 0s both;
	animation: mask 1s cubic-bezier(0.8, 0, 0.1, 1) 0s both;
}
@-webkit-keyframes mask {
	0% {
		width: 0;
		left: 0;
	}
	65% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes mask {
	0% {
		width: 0;
		left: 0;
	}
	65% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}

/* section_03（WORKS） */
.sec_03 .ttl_wp h3 {
	margin-bottom: 10px;
}
.sec_03 ul {
	margin: 80px 0;
}
.sec_03 ul li {
	width: 25%;
	float: left;
	overflow: hidden;
	position: relative;
}
.sec_03 ul li a img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.sec_03 ul li a figcaption {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70%;
	height: 50%;
	color: #fff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.6);
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.sec_03 ul li a figcaption:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 85%;
	height: 85%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border: 1px solid #fff;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.sec_03 ul li a figcaption h4 {
	position: absolute;
	width: 85%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 24px;
	text-align: center;
}
.sec_03 ul li a figcaption h4 span {
	font-size: 14px;
	display: block;
	margin-top: 10px;
}
.sec_03 ul li a:hover {
	opacity: 1;
}
.sec_03 ul li a:hover figcaption {
	background: rgba(255, 255, 255, 0.6);
	color: #000;
}
.sec_03 ul li a:hover figcaption:after {
	border: 1px solid #000;
}
.sec_03 ul li a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.sec_03 .more {
	margin: 80px auto 0 auto;
}

/* section_04（TOPICS） */
.sec_04 .ttl_wp {
	width: 230px;
	margin-right: 60px;
}
.sec_04 h3 span {
	display: block;
	margin-top: 10px;
	font-weight: normal;
}
.post_table {
	width: 70%;
	width: -webkit-calc(100% - 290px);
	width: calc(100% - 290px);
}
.post_table .post_list {
	padding: 16px;
	border-bottom: 1px solid #000;
}
.post_table .post_list:first-child {
	border-top: 1px solid #000;
}
.post_table p.post_cat a {
	width: 80px;
	text-align: center;
	padding: 6px 0;
	margin: 0 10px;
	background-color: #000;
	color: #fff;
	border-radius: 20px;
}
.sec_04 .more.pos_ab {
	position: absolute;
	left: 0;
	bottom: 0;
}

/* section_05（Instagram） */
.sbi_item a.sbi_photo {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.sbi_item a.sbi_photo:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/*==========================================
	サブページ共通
===========================================*/

/* サブページメインビジュアル */
#sub_visual {
	position: relative;
	height: 340px;
}
#sub_visual .sub_text {
	width: 100%;
	height: 100%;
}
#sub_visual .sub_text .tx_inner {
	width: 300px;
	height: 140px;
	background: rgba(0, 0, 0, 0.7);
	margin-top: 80px;
}
#sub_visual .sub_text .tx_inner.is_anime {
	-webkit-animation: slideUp 1.0s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1.5s;
	animation: slideUp 1.0s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1.5s;
}
#sub_visual .sub_text h2 {
	text-align: center;
	font-size: 30px;
	color: #fff;
	font-weight: normal;
	-webkit-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	color: #fff;
}
#sub_visual .sub_text h2 span {
	display: block;
	font-size: 18px;
	margin-top: 5px;
}
#sub_visual.bg_company {
	background-image: url(./image/company/bg_company.png);
}
#sub_visual.bg_contact {
	background-image: url(./image/contact/bg_contact.png);
}
#sub_visual.bg_about {
	background-image: url(./image/about/bg_about.png);
}
#sub_visual.bg_service {
	background-image: url(./image/service/bg_service.png);
}
#sub_visual.bg_works {
	background-image: url(./image/works/bg_works.png);
}
#sub_visual.bg_topics {
	background-image: url(./image/topics/bg_topics.png);
}

/* パンくずリスト */
#bread {
	position: relative;
	width: 100%;
	margin-top: 20px;
}
.breadcrumbs {
	white-space: nowrap;
}
.breadcrumbs span {
	display: inline-block;
}
.breadcrumbs span a {
	display: inline-block;
	vertical-align: middle;
}
.breadcrumbs span a.home {
	padding-right: 5px;
}
.breadcrumbs span a.post {
	padding: 0 5px;
}
.breadcrumbs span:nth-child(3) span{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 35%;
	width: calc(100% - 295px);
	padding-left: 5px;
	vertical-align: middle;
}
.ttl_sub h2 {
	font-size: 30px;
	width: 20%;
	min-width: 250px;
	margin: 0 auto 80px auto;
	padding-bottom: 10px;
	border-bottom: 2px solid #000;
}

/*==========================================
	私たちについて
===========================================*/
section.sec_about_01 {
	margin: 120px 0 165px 0;
	padding: 0;
}
.sec_about_01 .sec_wp:after {
	display: none;
}
.sec_about_01 .box_img .img_bg.box_r {
	background-image: url("./image/about/img_01.png");
}
.sec_about_01 .box_txt .tx_inner {
	position: relative;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 0 15px 0;
	padding: 0;
	min-height: 520px;
}
.sec_about_01 .box_txt {
	top: 100px;
}
.sec_about_01 .box_txt .tx_inner .line_c {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	padding: 80px 20px;
}
.sec_about_01 .box_txt .tx_inner .tx {
	text-align: justify;
	display: inline-block;
	margin: 30px 0 0;
}
.sec_about_02 {
	background-image: url("./image/about/img_02.png");
}
.sec_about_02 .tx_inner {
	color: #fff;
}
.sec_about_02 .tx {
	font-size: 18px;
	line-height: 2;
	margin-top: 40px;
}

/*==========================================
	サービス
===========================================*/
.sec_ser_02:last-child {
	margin-bottom: 120px;
}
.sec_ser_02.wrap_14{
	width: 100%;
}
.sec_ser_01 h2 {
	margin-bottom: 40px;
}
.sec_ser_02 .box_bg {
	height: 640px;
	position: relative;
}
.sec_ser_02.box_01 .box_bg {
	background-image: url("./image/service/img_01.png");
}
.sec_ser_02.box_02 .box_bg {
	background-image: url("./image/service/img_02.png");
}
.sec_ser_02.box_03 .box_bg {
	background-image: url("./image/service/img_03.png");
}
.sec_ser_02.box_04 .box_bg {
	background-image: url("./image/service/img_04.png");
}
.sec_ser_02.box_05 .box_bg {
	background-image: url("./image/service/img_05.png");
}
.sec_ser_02 .tx_inner {
	position: absolute;
	width: 540px;
	background: #fff;
	padding: 0;
	box-shadow: 10px 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	min-height: 400px;
}
.sec_ser_02 .tx_inner.pos_r {
	right: 120px;
}
.sec_ser_02 .tx_inner.pos_l {
	left: 120px;
}
.sec_ser_02 .tx_inner .line_c {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	padding: 40px 20px;
}
.sec_ser_02 .tx_inner h2 {
	margin-bottom: 40px;
}
.sec_ser_02 .tx_inner .tx {
	text-align: justify;
	display: inline-block;
	font-size: 18px;
}

/*==========================================
	運営会社
===========================================*/
.table_01 tr {
	border-bottom: 1px solid #000;
}
.table_01 th {
	width: 25%;
	text-align: left;
	font-weight: normal;
	padding: 20px 0 20px 3%;
}
.table_01 td {
	width: 74%;
	padding: 20px 3% 20px 0;
	line-height: 1.8;
}

/*==========================================
	お問い合わせ
===========================================*/
section#contact {
	padding-bottom: 120px;
}
.cont_top_tx {
	margin: 100px 0 80px 0;
}

/* フォーム設定 */
.form_table tr {
	border-top: 1px solid #ccc;
	vertical-align: baseline;
}
.form_table tr:nth-child(odd) {
	background: #f1f1f1;
}
.form_table th {
	width: 300px;
	padding: 20px 0 20px 120px;
	text-align: left;
}
.form_table td {
	padding: 20px 3% 20px 0;
	display: block;
	line-height: 1.8;
}
span.haveto {
	color: #fff;
	background: #000;
	font-size: 14px;
	text-align: center;
	width: 80px;
	margin-right: 20px;
	display: inline-block;
	padding: 8px 0;
	margin-left: -100px;
}
.form_table input[type="text"],
.form_table input[type="tel"],
.form_table input[type="email"],
.form_table select {
	width: 100%;
	height: 40px;
	margin: 3px 0px;
}
.form_table select {
	padding: 0 15px;
	border: 1px solid #bbbbbb;
}
input,
textarea,
button {
	vertical-align: middle;
	outline: none;
	-webkit-appearance: none;
	border: 0;
	outline: 0;
}
.form_table textarea {
	width: 100%;
	vertical-align: top;
	font: 400 13.3333px Arial;
}
.form_table input,
.form_table textarea {
	padding: 10px 15px;
	box-shadow: none;
	-webkit-appearance: none;
	background-color: #fff;
	border: 1px solid #b7b7b7;
	border-radius: 5px;
}
.form_table span.wpcf7-list-item {
	display: block;
	margin: 0;
}
.more.submit_btn {
	width: 30%;
	min-width: 230px;
	margin: 60px auto;
	padding: 0;
}
.more.submit_btn a.hover_btn{
	padding: 0;
}
input#formbtn {
	width: 100%;
	height: 64px;
	background: transparent;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	z-index: 10;
	position: relative;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
}
input#formbtn:hover {
	color: #000;
}
div.wpcf7 .ajax-loader {
	display: none;
}

/* 送信確認ボタン */
.check input[type="checkbox"],.accept input[type="checkbox"]{ 
  display: none;
}
.accept span.wpcf7-list-item {
	margin: 0;
}
.accept .wpcf7-list-item-label {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}
.accept .wpcf7-list-item-label:before {
	width: 20px;
	height: 20px;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	border: 1px solid #8e8e8e;
}
.accept .wpcf7-list-item-label:after {
	width: 11px;
	height: 6px;
	border: 2px solid #fff;
	content: '';
	position: absolute;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 5px;
	top: 5px;
	border-top: none;
	border-right: none;
	opacity: 0;
}
.accept {
	text-align: center;
	margin-top: 40px;
}
.accept input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
	opacity: 1;
}
.accept input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
	background-color: #000;
	border: none;
}

/* エラー設定 */
span.wpcf7-not-valid-tip,
div.wpcf7-validation-errors,
.wpcf7 form .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	font-size: 14px;
	color: #E5002D;
	border: 1px solid #E5002D;
	border-color: #E5002D;
	padding: 5px;
	display: inline-block;
	margin-top: 10px;
	text-align: center;
	line-height: 1.8;
}
.wpcf7 form.sent .wpcf7-response-output {
	display: block;
	border-color: #20ace0;
	color: #20ace0;
}
.accept span.wpcf7-not-valid-tip,
div.wpcf7-validation-errors,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	display: block;
}
/* reCAPTCHA */
.grecaptcha-badge {
	margin: 0 auto;
}

/*==========================================
	お知らせ
===========================================*/
#post_page #column_r {
	float: right;
	width: calc(100% - 280px);
}
#post_page #column_l {
	float: left;
	width: 240px;
	margin-right: 40px;
}
#post_page .post_table {
	width: 100%;
}
#post_page .post_table p.post_cat time,
#post_page .post_table p.post_cat span {
	display: inline-block;
}
#post_page .post_table p.post_ttl a {
	padding-top: 16px;
}

/*------------------------------------*
   お知らせ詳細
*------------------------------------*/
h1.single_ttl{
	font-size: 22px;
	line-height: 1.5;
}
.single_ttl_wp .post_list{
	padding: 0 0 16px 0;
    border-bottom: 1px solid #ccc;
	border-top: none !important;
}
.single_ttl_wp .post_cat{
	margin-bottom: 10px;
}
.single_content{
	margin: 40px 0 80px 0;
}
.single_content{
	line-height: 1.5;
}
/*------------------------------------*
   サイドバー（お知らせ）
*------------------------------------*/
.side_cont {
	margin-bottom: 80px;
}
.side_cont:last-child {
	margin-bottom: 0;
}
.side_cont ul li a {
	padding: 16px 10px;
	border-bottom: 1px solid #000;
}
.side_cont .side_ttl h5 {
	font-weight: normal;
	text-align: center;
	padding: 16px 0;
	font-size: 16px;
	color: #fff;
	background: #000;
}
.side_cont .side_ttl h5 span {
	font-size: 14px;
	margin-left: 10px;
}
.side_cont .side_cat li a:before {
	display: inline-block;
	content: ">";
	margin-right: 10px;
}

/*------------------------------------*
   ページナビゲーション（お知らせ）
*------------------------------------*/
.wp-pagenavi {
	margin-top: 60px;
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-block;
	line-height: 30px;
	width: 30px;
	text-align: center;
	padding: 0;
	border: 1px solid #000;
	background-color: #fff;
}
.wp-pagenavi a:hover {
	color: #fff;
	background-color: #000;
	border: 1px solid #000;
	opacity: 1;
}
.wp-pagenavi span.pages {
	width: 60px;
}
.wp-pagenavi span.current {
	background-color: #000;
	color: #fff;
	border: 1px solid #000;
}

/*==========================================
	施工事例（カスタム投稿）
===========================================*/
.tab_btn {
	margin-bottom: 100px;
}
.tab_btn li {
	float: left;
	width: 33%;
	width: calc(100%/5);
	text-align: center;
}
.tab_btn li a {
	font-size: 14px;
	border: 1px solid #000;
	background: #fff;
	color: #000;
	padding: 14px 0;
	margin-left: -1px;
}
.tab_btn li a.select {
	background: #000;
	color: #fff;
}
.tab_btn li a:hover {
	background: #000;
	color: #fff;
	opacity: 1;
}
.cust_list li {
	float: left;
	width: 25%;
	position: relative;
	overflow: hidden;
	opacity: 0;
}
.cust_list li:nth-child(4n+1) {
	clear: both;
}
.cust_list li a {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.cust_list li a:after {
	display: block;
	content: "";
	position: absolute;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.cust_list li a:hover {
	opacity: 1;
}
.cust_list li a:hover:after {
	opacity: 1;
}
.cust_list li figcaption {
	position: absolute;
	width: 100%;
	background: #fff;
	z-index: 10;
	font-size: 16px;
	padding: 20px 10px;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.cust_list li a:hover figcaption {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}
.cust_list li figcaption h2 {
	font-size: 14px;
	font-weight: normal;
	margin-bottom: 8px;
}
.cust_list li figcaption p {
	font-size: 12px;
}
.cust_list li.active{
	-webkit-animation: slideUp 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
	animation: slideUp 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}
.cust_list li.active:nth-of-type(2){
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.cust_list li.active:nth-of-type(3){
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.cust_list li.active:nth-of-type(4){
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.cust_list li.active:nth-of-type(5){
	-webkit-animation-delay: 1.0s;
	animation-delay: 1.0s;
}
.cust_list li.active:nth-of-type(6){
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}
.cust_list li.active:nth-of-type(7){
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}
.cust_list li.active:nth-of-type(8){
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
}
.cust_list li.active:nth-of-type(9){
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}
.cust_list li.active:nth-of-type(10){
	-webkit-animation-delay: 2.0s;
	animation-delay: 2.0s;
}
.cust_list li.active:nth-of-type(11){
	-webkit-animation-delay: 2.2s;
	animation-delay: 2.2s;
}
.cust_list li.active:nth-of-type(12){
	-webkit-animation-delay: 2.4s;
	animation-delay: 2.4s;
}
.cust_list li.active:nth-of-type(n+13){
	-webkit-animation-delay: 2.6s;
	animation-delay: 2.6s;
}
/*------------------------------------*
  　施工事例詳細
*------------------------------------*/
h1.single_cust_ttl{
	font-size: 26px;
	line-height: 1.5;
}
.bx-wrapper {
	border: none !important;
	box-shadow: none !important;
	margin: 0 !important;
}
.slider_container {
	margin: 80px auto;
}
.slider {
	width: calc(95% - 300px);
	margin-right: 5%;
}
.slider li {
	overflow: hidden;
}
.slider img {
	margin: 0 auto;
	width: auto;
	height: 500px;
	pointer-events: none;
}
.pager {
	position: relative;
	width: 300px;
	overflow: hidden;
}
.pager p.pager_ttl {
	font-size: 32px;
	font-weight: bold;
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}
.pager p.pager_ttl:after {
	content: "";
	position: absolute;
	height: 2px;
	background: #000;
	width: 200px;
	right: -210px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pager ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pager ul li {
	width: 90px;
	margin: 5px;
}
.pager ul li img {
	margin: 0 auto;
	height: 90px;
}
.works_table {
	max-width: 900px;
	width: 98%;
	margin: 0 auto;
}
.works_table tr {
	display: block;
	padding: 15px 30px;
	border-top: 1px solid #ccc;
}
.works_table tr:nth-child(even) {
	background: #f1f1f1;
}
.works_table tr:last-child {
	border-bottom: 1px solid #ccc;
}
.works_table th {
	width: 170px;
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

/*------------------------------------*
  　その他建築実績
*------------------------------------*/
section.kanren_wrap {
	padding-bottom: 120px;
}
h4.kanren_ttl {
	padding: 20px 0;
	margin-bottom: 60px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	font-size: 18px;
	font-weight: normal;
}
/*==========================================
	404ページ
===========================================*/
.not_found .tx {
	margin: 80px 0;
}

/*==========================================
	footer
===========================================*/
.scr_top {
	text-align: center;
}
.scr_top a {
	background: #b7b7b7;
	width: 100%;
	height: 50px;
	font-size: 30px;
}
.scr_top a:hover {
	background: #000;
	color: #fff;
	opacity: 1;
}
footer {
	font-size: 15px;
}
footer .footer_inner {
	margin: 40px 0;
}
footer .footer_sns.pos_ab {
	position: absolute;
	right: 0;
	bottom: 0;
}
footer .footer_about {
	line-height: 1.8;
	margin-top: 10px;
}
footer .footer_about dl {
	margin: 10px auto;
}
footer .footer_about dd {
	display: table-cell;
	vertical-align: middle;
}
footer .footer_about dd:first-of-type {
	width: 100px;
	border: 1px solid #000;
	text-align: center;
}
footer .footer_about dd:nth-of-type(2) {
	padding-left: 5px;
}
footer nav.footer_nav {
	width: 56%;
	text-align: right;
}
footer nav.footer_nav ul li {
	display: inline-block;
	margin-right: 3%;
	margin-top: 18px;
}
footer nav.footer_nav ul li:last-child {
	margin-right: 0;
}
footer p.copy {
	text-align: center;
	color: #fff;
	background: #000;
	font-size: 14px;
	padding: 14px 0;
	line-height: 1.6;
}
footer p.copy a {
	color: #fff;
}
p.copy a {
	display: inline-block;
}

/***********************************************
    
	メディアクエリ（Media Queries）

************************************************/

/***********************************************
	ウィンドウサイズ1024px以上
************************************************/
@media screen and (min-width:1024px) {
	
	/*==========================================
		ページ共通
	===========================================*/
	#header_sp {
		display: none;
	}
}

/***********************************************
	ウィンドウサイズ1024px以下
************************************************/
@media screen and (max-width:1024px) {
	
	/*==========================================
		ページ共通
	===========================================*/
	.pc_show {
		display: none;
	}
	.mob_show {
		display: block;
	}
	
	/*==========================================
		ヘッダー
	===========================================*/
	header #header {
		border-bottom: none;
	}
	.logo_area {
		width: 150px;
	}
	.logo_area img {
		width: 100%;
	}
	
	/*------------------------------------*
    	動画設定
	*------------------------------------*/
	#main_visual .main_text h2 {
		font-size: 40px;
	}
	.sec_03 ul li {
		width: 50%;
	}
	
	/*==========================================
		footer
	===========================================*/
	footer .footer_inner {
		display: block;
		text-align: center;
	}
	footer .footer_logo {
		width: 240px;
		margin: 0 auto;
	}
	footer .footer_logo a {
		display: block;
	}
	footer .footer_logo h1 {
		font-size: 24px;
		margin: 14px 0;
	}
	footer .footer_sns.pos_ab {
		position: relative;
		margin: 30px 0;
	}
	footer .footer_sns a {
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}
	footer .footer_sns a:last-child {
		margin-right: 0;
	}
	footer .footer_about dl {
		width: 445px;
		margin: 10px auto;
	}
	footer .footer_about dd:first-of-type {
		width: 120px;
	}
}


/***********************************************
	ウィンドウサイズ768px以下
************************************************/
@media screen and (max-width:768px) {
	
	/*==========================================
		ページ共通
	===========================================*/
	.tab_show {
		display: block;
	}
	.tx_top {
		font-size: 16px;
	}
	
	/*------------------------------------*
    	動画設定
	*------------------------------------*/
	#main_visual .main_text h2 span {
		display: block;
	}
	
	/*==========================================
		トップページ
	===========================================*/
	main#home h3,
	.content_wp h3 {
		font-size: 40px;
	}
	
	/* 各セクションマージン */
	section.sec_01 {
		padding: 120px 0;
	}
	section.sec_02 {
		padding-bottom: 120px;
	}
	
	/* section_01 section_02 （ABOUTUS SERVICE） */
	.content_wp .sec_wp {
		height: auto;
	}
	.content_wp .sec_wp:after {
		width: 100%;
		top: 100%;
		height: 500px;
	}
	.content_wp .box_img {
		width: 100%;
		position: relative;
	}
	.content_wp .box_img .img_bg {
		height: 0;
		padding-top: 50%;
	}
	.content_wp .box_ttl {
		position: relative;
	}
	.content_wp .box_ttl h3 {
		position: relative;
		margin: 40px 0;
		text-align: left;
	}
	.content_wp .box_ttl h3 span {
		display: inline-block;
		margin: 0 0 0 10px;
	}
	.content_wp .box_txt {
		position: relative;
		bottom: 0;
	}
	.content_wp .box_txt.box_l {
		padding-right: 10px;
	}
	.content_wp .box_ttl.ttl_r,
	.content_wp .box_ttl.ttl_l {
		top: 0;
	}
	h2.ttl {
		font-size: 30px;
	}
	.content_wp .box_txt .tx_inner {
		display: block;
		width: 95%;
		margin: 0 auto;
	}
	.content_wp .box_txt .tx_inner .tx {
		font-size: 16px;
		margin: 30px 0 40px 0;
	}
	
	/* section_03（WORKS） */
	.sec_03 .ttl_wp {
		display: -webkit-box;
		display: -ms-flexbox;
		/*IE10*/
		display: -webkit-flex;
		/*old webkit browser*/
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: left;
	}
	.sec_03 .ttl_wp h3 {
		margin: 0;
	}
	.sec_03 .ttl_wp p {
		line-height: 1.5;
		margin-left: 10px;
	}
	.sec_03 ul {
		margin: 40px 0;
	}
	.sec_03 ul li a figcaption h4 {
		font-size: 18px;
	}
	.sec_03 .more {
		margin: 0 auto;
	}
	
	/* section_04（TOPICS） */
	.sec_04 .sec_wp {
		display: block;
	}
	.sec_04 .ttl_wp {
		width: 100%;
		margin: 0 0 40px 0;
		text-align: left;
	}
	.sec_04 h3 span {
		display: inline-block;
		margin-left: 10px;
	}
	.sec_04 .post_table {
		width: 100%;
	}
	.sec_04 .more.pos_ab {
		position: relative;
		margin-top: 40px;
	}
	
	/*==========================================
		私たちについて
	===========================================*/
	section.sec_about_01 {
		margin: 120px 0 -120px 0;
	}
	.sec_about_01 .box_ttl.ttl_l h3 {
		margin: 0 0 30px 0;
		text-align: center;
	}
	.sec_about_01 .box_img .img_bg {
		padding-top: 80%;
	}
	.sec_about_01 .box_txt.box_l {
		padding-right: 0;
	}
	.sec_about_01 .box_txt {
		top: -120px;
	}
	.sec_about_01 .box_txt .tx_inner .tx {
		margin: 30px 0 0;
	}
	.sec_about_02 .tx {
		font-size: 16px;
	}
	
	/*==========================================
		サービス
	===========================================*/
	.sec_ser_02 .box_bg {
		height: 0;
		padding-top: 80%;
	}
	.sec_ser_02 .tx_inner {
		position: relative;
		width: 93%;
		margin: -120px auto 120px auto;
		-webkit-transform: none;
		transform: none;
	}
	.sec_ser_02 .tx_inner.pos_r {
		right: 5px;
	}
	.sec_ser_02 .tx_inner.pos_l {
		left: -5px;
	}
	.sec_ser_02 .tx_inner .tx{
		font-size: 16px;
	}
	
	/*==========================================
		お問い合わせ
	===========================================*/
	.form_table th {
		display: block;
		padding: 20px 0 0px 3%;
	}
	.form_table td {
		padding: 20px 3% 20px 3%;
	}
	span.haveto {
		margin-right: 10px;
		margin-left: 0;
	}
	
	/*==========================================
		お知らせ
	===========================================*/
	#post_page #column_r {
		float: none;
		width: 100%;
	}
	#post_page #column_l {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-top: 80px;
	}
	
	/*==========================================
		施工事例
	===========================================*/
	.tab_btn li {
		width: 50%;
	}
	.tab_btn li a {
		margin-top: -1px;
	}
	.cust_list li {
		width: 50%;
	}
	.cust_list li:nth-child(4n+1) {
		clear: none;
	}
	.cust_list li:nth-child(odd) {
		clear: both;
	}
	/*------------------------------------*
  　		施工事例詳細
	*------------------------------------*/
	.slider_container {
		display: block;
	}
	.slider {
		width: 100%;
		margin-right: 0;
	}
	.slider img {
		height: 400px;
	}
	.pager {
		width: 100%;
	}
	.pager p.pager_ttl {
		margin: 30px 0;
	}
}

/***********************************************
	ウィンドウサイズ480px以下
************************************************/
@media screen and (max-width:480px) {

	/*------------------------------------*
       スマホ開閉メニュー
    *------------------------------------*/
	#header_sp .header_about {
		font-size: 14px;
	}
	#header_sp .header_about h1 {
		font-size: 18px;
	}
	#header_sp .header_about dl {
		width: 100%;
	}
	#header_sp .header_about dd:first-of-type {
		width: 100px;
	}
	#header_sp .header_about dd:nth-of-type(2) {
		text-align: left;
	}
	
	/*------------------------------------*
    	サイドバナー
	*------------------------------------*/
	.float_side {
		display: none !important;
	}
	
	/*------------------------------------*
    	動画設定
	*------------------------------------*/
	#main_visual .main_text h2 {
		font-size: 30px;
	}
	
	/*==========================================
		ページ共通
	===========================================*/
	.sp_show {
		display: block;
	}
	.tx_top {
		font-size: 14px;
	}
	
	/*==========================================
		トップページ
	===========================================*/
	main#home h3,
	.content_wp h3 {
		font-size: 30px;
	}
	main#home h3 span {
		font-size: 16px;
	}
	h2.ttl {
		font-size: 22px;
	}
	.content_wp .box_txt .tx_inner {
		padding: 60px 10px;
	}
	.content_wp .box_txt .tx_inner .tx {
		font-size: 14px;
	}
	.sec_03 ul li a figcaption h4 {
		font-size: 15px;
	}
	
	/*******ホバーリンク*******/
	.more {
		width: 200px;
	}
	
	/*==========================================
		サブページ共通
	===========================================*/
	#sub_visual .sub_text .tx_inner {
		width: 250px;
	}
	
	/* パンくずリスト */
	#bread {
		font-size: 14px;
	}
	
	/*==========================================
		私たちについて
	===========================================*/
	.sec_about_02 .tx {
		font-size: 14px;
	}
	
	/*==========================================
		サービス
	===========================================*/
	.sec_ser_02 .tx_inner .tx {
		font-size: 14px;
	}
	
	/*==========================================
		運営会社
	===========================================*/
	.table_01 th {
		width: 40%;
	}
	.table_01 td {
		width: 60%;
	}
	
	/*------------------------------------*
   		お知らせ詳細
	*------------------------------------*/
	h1.single_ttl {
		font-size: 20px;
	}
	
	/*------------------------------------*
		施工事例詳細
	*------------------------------------*/
	h1.single_cust_ttl{
		font-size: 20px;
	}
	.pager p.pager_ttl {
		font-size: 28px;
	}
	.pager ul li {
		width: 68px;
	}
	.pager ul li img {
		height: 68px;
	}
	.works_table tr {
		padding: 15px 3%;
	}
	.works_table th {
		display: block;
		margin-bottom: 10px;
		width: 100%;
	}
	
	/*==========================================
		footer
	===========================================*/
	footer {
		font-size: 14px;
	}
	footer .footer_logo h1 {
		font-size: 18px;
	}
	footer .footer_about dl {
		width: 100%;
	}
	footer .footer_about dd:first-of-type {
		width: 100px;
	}
	footer .footer_about dd:nth-of-type(2) {
		text-align: left;
	}
}