@charset "utf-8";
/* CSS Document */

/*######################################################
基本設定
######################################################*/
@import url(//fonts.googleapis.com/earlyaccess/mplus1p.css);/*font-family: "Mplus 1p";*/
@import url(//fonts.googleapis.com/earlyaccess/roundedmplus1c.css);/*font-family: "Rounded Mplus 1c";*/
@import url(//fonts.googleapis.com/earlyaccess/hannari.css);/*font-family: "Hannari";*/
@import url(//fonts.googleapis.com/earlyaccess/kokoro.css);/*font-family: "Kokoro";*/
@import url(//fonts.googleapis.com/earlyaccess/sawarabimincho.css);/*font-family: "Sawarabi Mincho";*/
@import url(//fonts.googleapis.com/earlyaccess/sawarabigothic.css);/*font-family: "Sawarabi Gothic";*/
@import url(//fonts.googleapis.com/earlyaccess/nikukyu.css);/*font-family: "Nikukyu";*/
@import url(//fonts.googleapis.com/earlyaccess/nicomoji.css);/*font-family: "Nico Moji";*/
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);/*font-family: "Noto Sans Japanese";*/
html {
	height: 100%;
}
body {
	color: #666;
	font-family: 'Open Sans', Helvetica, Arial, Verdana, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	font-size: 14px;
	line-height: 1.6;
	height: 100%;
}
img {
	max-width: 100%;
	height: auto;
	width /***/: auto;
	vertical-align: bottom;
}
a {
	color: #3BB2D8;
	text-decoration: none;
}
a:hover {
	opacity: 0.5;
}
a.page_top {
	transition: 1s;
	position: fixed;
	right: 10px;
	bottom: 10px;
	display: block;
	text-indent: -9999px;
	border: 6px #ccc solid;
	border-radius: 50px;
	width: 65px;
	height: 65px;
	float: right;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
}
a.page_top:before {
	content: '';
	height: 0;
	width: 0;
	display: block;
	border: 12px transparent solid;
	border-bottom-color: #ccc;
	position: absolute;
	top: 0px;
	left: 15px;
	border-radius: 3px;
}
a.page_top:after {
	content: '';
	height: 20px;
	width: 10px;
	display: block;
	background: #ccc;
	position: absolute;
	top: 21px;
	left: 22px;
	border-radius: 2px;
}
a.page_top.fixed {
	visibility: visible;
	opacity: 1;
}
a.page_top.fixed:hover {
	opacity: 0.5;
}
a.btn {
	display: inline-block;
	position: relative;
	background: #3BB2D8;
	color: #fff;
	font-family: "Noto Sans Japanese";
	font-weight: 900;
	font-size: 21px;
	line-height: 1;
	padding: 10px;
	border-radius: 5px;
	padding-right: 30px;
}
a.btn:after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: solid 5px #fff;
	border-right: solid 5px #fff;
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	margin: auto;
	margin-left: 5px;
}
a.btn:hover {
}

@media (max-width: 768px) {
body {
	font-size: 14px;
}
a.page_top {
	border-radius: 50px;
	width: 46px;
	height: 46px;
}
a.page_top:before {
	border: 14px transparent solid;
	border-bottom-color: #ccc;
	left: 3px;
	top: -10px;
	border-radius: 3px;
}
a.page_top:after {
	height: 15px;
	width: 13px;
	top: 13px;
	left: 11px;
	border-radius: 2px;
}
}

@media (max-width: 480px) {
a.btn {
	font-size: 15px;
}
}
/*######################################################
共通箇所
######################################################*/

/*//////////////////////////////////////
header
//////////////////////////////////////*/
.head_line {
	width: 100%;
	padding: 5px calc(50% - 500px);
	box-sizing: border-box;
	border-top: solid 3px #666;
	color: #999;
	font-size: 12px;
}
header {
	width: 100%;
	padding: 10px calc(50% - 500px);
	overflow: hidden;
	box-sizing: border-box;
}
header .logo {
	display: block;
	float: left;
}
header .logo:hover {
	opacity: 0.5;
}
header .logo img {
	width: 300px;
}
.head_right {
	float: right;
}
.head_right a.tel {
	background: url(../img/icn_tel.png) no-repeat left center;
	display: inline-block;
	text-align: right;
	padding: 0 10px 0 30px;
	color: #666;
	line-height: 1;
	vertical-align: middle;
	background-size: contain;
}
.head_right a.tel:hover {
}
.head_right a.tel b {
	display: block;
	font-family: "Noto Sans Japanese";
	font-weight: 900;
	font-size: 32px;
}
.head_right a.btn {
	vertical-align: middle;
}
.head_right small {
	display: block;
	text-align: right;
	font-size: 12px;
	color: #999;
}

@media (max-width: 768px) {
.head_line {
	padding: 5px 10px;
}
header {
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
}
header .logo {
	width: 260px;
}
header .logo:hover {
}
header .logo img {
	width: 250px;
}
}

@media (max-width: 480px) {
.head_line {/* padding: 5px; */
}
header {
	padding: 5px 10px;
}
header .logo {
	width: 80%;
	float: none;
	margin-bottom: 10px;
}
header .logo:hover {
}
header .logo img {
	width: 100%;
}
.head_right {
	float: none;
}
.head_right a.tel {
	font-size: 11px;
	padding-left: 20px;
}
.head_right a.tel:hover {
}
.head_right a.tel b {
	font-size: 24px;
}
.head_right a.btn {
}
.head_right small {
	text-align: center;
	font-size: 11px;
	margin-top: 10px;
}
}
/* nav */
nav {
	width: 100%;
	padding: 0 calc(50% - 500px);
	box-sizing: border-box;
	position: relative;
	z-index: 100;
	border-bottom: solid;
	display: table;
}
nav .sp_menu {
	display: none;
}
nav .sp_menu_bg {
	display: none;
}
nav ul {
}
nav ul li {
	position: relative;
	width: calc(100% / 4);
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}
nav ul li a {
	display: block;
	margin: 0;
	padding: 16px 0;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	color: #999;
	font-family: "Noto Sans Japanese";
}
nav ul li.active a {
	opacity: 0.5;
}
nav ul li a b {
	font-size: 18px;
	font-weight: 800;
	display: block;
	color: #666;
	margin-bottom: 5px;
}
nav ul li ul {
	list-style: none;
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	background: rgba(255,255,255,0.8);
}
nav ul li ul li {
	overflow: hidden;
	width: 100%;
	height: 0;
	color: #fff;
	transition: .2s;
}
nav ul li ul li a {
	padding: 13px 15px;
	text-align: left;
	font-size: 12px;
}
nav ul > li:hover > a {
	color: #ccc;
}
nav ul > li:hover li:hover > a {
	color: #ccc;
}
nav ul li:hover > ul > li {
	overflow: visible;
	height: 38px;
}
nav ul li ul li ul {
	top: 0;
	left: 100%;
}
nav ul li:last-child ul li ul {
	left: -100%;
	width: 100%;
}
nav ul li ul li ul li a {
}
nav ul li:hover ul li ul li:hover > a {
}
nav ul li ul li ul:before {
	position: absolute;
	content: "";
	top: 13px;
	left: -20px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left-color: #999;
}
nav ul li:last-child ul li ul:before {
	position: absolute;
	content: "";
	top: 13px;
	left: 200%;
	margin-left: -20px;
	border: 5px solid transparent;
	border-right-color: #454e08;
}
/* navi.fixed */
nav.fixed {
	position: fixed;
	z-index: 100;
	top: 0;
	background: rgba(255,255,255,0.8);
	animation-name: navi;
	animation-duration: 1s;
	animation-timing-function: ease;
}
@keyframes navi {
 0% {
 top: -143px;
}
 100% {
 top: 0;
}
}

@media (max-width: 768px) {
nav {
}
nav ul {
	position: fixed;
	z-index: 1000;
	display: block;
	font-size: 0.9em;
	background-color: #666;
	width: 80%;
	right: -80%;
	padding: 5%;
	list-style-type: none;
	transition: 0.5s ease-in-out;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	box-sizing: border-box;
	height: 100%;
	top: 0px;
	overflow: scroll;
}
nav.open ul {
	right: 0px;
}
nav .sp_menu {
	display: block;
	position: fixed;
	top: 0px;
	right: 0px;
	color: #fff;
	width: 50px;
	height: 50px;
	z-index: 9999;
	background: #666;
	cursor: pointer;
	transition: 0.5s ease-in-out;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	border-radius: 0 0 0 5px;
	box-sizing: border-box;
	text-align: center;
	padding-top: 27px;
}
nav .sp_menu:before {
	content: "";
	position: absolute;
	top: 23px;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	height: 3px;
	width: 32px;
	box-shadow: inset 0px 0px 0px 0px #fff, 0px -8px #fff, 0 -16px #fff;
}
nav.open .sp_menu {
	right: 80%;
}
nav .sp_menu_bg {
	z-index: 99;
	display: none;
	top: 0;
	left: 0;
	position: fixed;
}
nav.open .sp_menu_bg {
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
}
nav ul li {
	float: none;
	width: 100%;
	text-align: left;
}
nav ul li a {
	color: #fff;
}
nav ul li a b {
	display: inline-block;
	color: #fff;
	margin-right: 10px;
}
nav ul li ul {
	background: transparent;
	position: relative;
	overflow: visible;
}
nav ul li ul li {
	height: inherit;
}
nav ul li ul li a {
	padding: 10px 15px;
}
nav ul > li:hover > a {
}
nav ul > li:hover li:hover > a {
}
nav ul li:hover > ul > li {
	height: inherit;
}
nav ul li ul li ul {
	left: 20px;
	overflow: visible;
}
nav ul li:last-child ul li ul {
}
nav ul li ul li ul li a {
}
nav ul li:hover ul li ul li:hover > a {
}
nav ul li ul li ul:before {
	border-left-color: transparent;
	border-top-color: #fff;
	left: 54px;
	top: -18px;
}
nav ul li:last-child ul li ul:before {
}
}
/*//////////////////////////////////////
footer
//////////////////////////////////////*/
footer {
	margin-top: 10rem;
	padding: 2rem 0 0;
	background: #eee;
}
.footer_menu {
	width: 100%;
	padding: 0px calc(50% - 500px) 2rem;
	box-sizing: border-box;
	overflow: hidden;
}
.footer_menu ul {
	float: left;
}
.footer_menu ul li {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
.footer_menu ul li a {
	color: #666;
	position: relative;
	padding-left: 20px;
}
.footer_menu ul li a:before {
	content: "";
	position: absolute;
	display: block;
	height: 15px;
	width: 15px;
	background: #999;
	border-radius: 50%;
	top: -2px;
	bottom: 0;
	left: 0;
	margin: auto;
}
.footer_menu ul li a:after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 5px;
	height: 5px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	top: -1px;
	bottom: 0;
	left: 3px;
	margin: auto;
}
.footer_menu ul a.btn {
	clear: both;
	display: table;
	background: url(../img/icn_mail.png)no-repeat left 10px center, #3BB2D8;
	background-size: 25px;
	padding-left: 40px;
}
.footer_menu_right {
	float: right;
	text-align: right;
	padding-left: 2rem;
	border-left: dotted 1px #999;
}
.footer_cnt {
	width: 100%;
	padding: 1rem calc(50% - 500px);
	box-sizing: border-box;
	overflow: hidden;
	text-align: right;
	font-size: 12px;
	background: #ccc;
	color: #333;
}
.footer_cnt a {
	float: left;
}
.footer_cnt a img {
	height: 20px;
}
footer small {
	display: block;
	font-size: 12px;
	text-align: center;
	color: #fff;
	background: #999;
	padding: 2rem 0;
}

@media (max-width: 768px) {
footer {
	margin-top: 5rem;
}
.footer_menu {
	padding: 0px 10px 2rem;
}
.footer_cnt {
	padding: 1rem 10px;
}
footer small {
}
}

@media (max-width: 480px) {
footer {
	margin-top: 2rem;
}
.footer_menu {
/* padding: 0px 5px 2rem; */
}
.footer_menu ul {
	float: none;
	margin-bottom: 20px;
}
.footer_menu ul li {
	float: none;
	margin-right: 0;
	margin-bottom: 10px;
}
.footer_menu ul li a {
}
.footer_menu ul li a:before {
}
.footer_menu ul li a:after {
}
.footer_menu ul a.btn {
	margin: auto;
}
.footer_menu_right {
	border: none;
	float: none;
	text-align: left;
	padding: 0;
	font-size: 12px;
}
.footer_cnt {
	/* padding: 1rem 5px; */
	text-align: left;
}
.footer_cnt a {
	float: none;
	display: block;
	margin-bottom: 10px;
}
.footer_cnt a img {
}
footer small {
}
}
/*//////////////////////////////////////
side
//////////////////////////////////////*/
#side {
	float: right;
	width: 300px;
}
.side_cnt {
	border: solid 1px #ccc;
	padding: 20px;
	margin-bottom: 30px;
}
.side_cnt .news {
	overflow-y: scroll;
	height: 300px;
}
.side_cnt .news dt {
	color: #666;
	position: relative;
	padding-left: 20px;
	font-weight: bold;
}
.side_cnt .news dt:before {
	content: "";
	position: absolute;
	display: block;
	height: 15px;
	width: 15px;
	background: #666;
	border-radius: 50%;
	top: -2px;
	bottom: 0;
	left: 0;
	margin: auto;
}
.side_cnt .news dt:after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 5px;
	height: 5px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	top: -1px;
	bottom: 0;
	left: 3px;
	margin: auto;
}
.side_cnt .news dd {
	padding: 0px 0px 5px 20px;
	border-bottom: dotted 1px #ccc;
	margin-bottom: 5px;
}
.side_bnr {
	border: solid 1px #ccc;
	padding: 20px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
#side {
	float: none;
	width: 100%;
}
.side_cnt {
	padding: 10px;
	margin-bottom: 10px;
}
.side_cnt .news {
	height: 200px;
}
.side_cnt .news dt {
}
.side_cnt .news dt:before {
}
.side_cnt .news dt:after {
}
.side_cnt .news dd {
}
.side_bnr {
	padding: 10px;
	margin-bottom: 10px;
}
}
/*//////////////////////////////////////
全体要素
//////////////////////////////////////*/
#container {
	position: relative;
	width: 100%;
	padding: 0 calc(50% - 500px);
	box-sizing: border-box;
	overflow: hidden;
}
#main {
	float: left;
	width: calc(100% - 350px);
}
.pankuzu {
	width: 100%;
	padding: 10px calc(50% - 500px);
	box-sizing: border-box;
	color: #fff;
	background: #666;
	margin-bottom: 30px;
}
.pankuzu a {
	color: #fff;
}
h3 {
	font-family: "Noto Sans Japanese";
	font-weight: 900;
	font-size: 18px;
	border-bottom: solid 3px #999;
	color: #999;
	margin-bottom: 10px;
}
strong {
	font-weight: bold;
	font-size: 14px;
}

@media (max-width: 768px) {
#container {
	padding: 0 10px;
}
#main {
}
.pankuzu {
	padding: 10px;
}
h3 {
}
strong {
}
}

@media (max-width: 480px) {
#main {
	float: none;
	width: 100%;
	margin-bottom: 30px;
}
.pankuzu {font-size: 12px;}
}
/*######################################################
個別設定
######################################################*/
/*会社概要*/
.aisatu{
    overflow: hidden;
    margin-bottom: 100px;
}
.aisatu img{
    float: right;
    margin-left: 20px;
}
.aisatu b{
    font-weight: bold;
}
.profile {
	width: 100%;
	margin-bottom: 100px;
}
.profile tr {
}
.profile th {
	padding: 10px;
	border-bottom: dotted 1px #ccc;
	font-weight: bold;
	text-align: left;
}
.profile td {
	padding: 10px;
	border-bottom: dotted 1px #ccc;
}
.enkaku {
}
.enkaku dt {
	color: #666;
	position: relative;
	padding-left: 10px;
	font-weight: bold;
}
.enkaku dd {
	padding: 0px 0px 5px 20px;
	border-bottom: dotted 1px #ccc;
	margin-bottom: 5px;
}

@media (max-width: 768px) {
.aisatu{
    margin-bottom: 50px;
}
.aisatu img{
    margin: 0 auto 10px;
    float: none;
    display: block;
}
.aisatu b{}
.profile {margin-bottom: 50px;}
.profile tr {
	display: block;
}
.profile th {
	display: block;
	border: none;
	padding: 10px 0 0 10px;
}
.profile td {
	display: block;
	padding: 0 0 10px 20px;
}
.enkaku {
}
.enkaku dt {
}
.enkaku dd {
}
}

@media (max-width: 480px) {
.profile {
}
.profile tr {
}
.profile th {
}
.profile td {
}
.enkaku {
}
.enkaku dt {
}
.enkaku dd {
	padding: 0px 10px 5px 20px;
}
}
/*お問合せ*/
form {
	margin: 30px 20px 0;
}
form table {
	width: 100%;
	margin: 10px auto 20px;
	border: solid 3px #eee;
	border-right: none;
	border-bottom: none;
}
form tr {
}
form th {
	text-align: left;
	padding: 10px;
	white-space: nowrap;
	vertical-align: top;
	font-weight: bold;
	border: solid 3px #eee;
	border-left: none;
	border-top: none;
	background: #ccc;
	color: #333;
}
form th.hissu {
}
form th.hissu:after {
	content: "（必須）";
	color: #f00;
	font-weight: normal;
	font-size: 12px;
}
form td {
	padding: 10px;
	border: solid 3px #eee;
	border-left: none;
	border-top: none;
}
form input[type="text"] {

	width: 100%;
	border: solid 2px #ccc;
	padding: 5px;
	border-radius: 5px;
	font-family: 'Open Sans', Helvetica, Arial, Verdana, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	box-sizing: border-box;
}
form input.zip {
	width: 150px;
	margin-bottom: 10px;
	vertical-align: top;
}
form select {
	border: solid 2px #ccc;
	padding: 3px 5px 5px;
	border-radius: 5px;
	font-family: 'Open Sans', Helvetica, Arial, Verdana, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	vertical-align: middle;
}
form textarea {
	width: 100%;
	border: solid 2px #ccc;
	padding: 5px;
	border-radius: 5px;
	box-sizing: border-box;
}
form input[type="submit"] {
	display: table;
	background: #3BB2D8;
	color: #fff;
	font-family: "Noto Sans Japanese";
	font-weight: 900;
	font-size: 21px;
	line-height: 1;
	padding: 10px;
	border-radius: 5px;
	border: none;
	margin: auto;
}
form input[type="submit"]:hover {
	opacity: 0.5;
}

@media (max-width: 768px) {
form {
	margin: 30px 10px 0;
}
form table {
}
form tr {
	display: block;
}
form th {
	display: block;
}
form th.hissu {
}
form td {
	display: block;
}
form input[type="text"] {
}
form input.zip {
}
form select {
}
form textarea {
}
form input[type="submit"] {
}
form input[type="submit"]:hover {
}
}

@media (max-width: 480px) {
form {
	margin: 20px 0 100px;
}
form table {
}
form tr {
}
form th {
}
form th.hissu {
}
form td {
}
form input[type="text"] {
}
form input.zip {
}
form select {
}
form textarea {
}
form input[type="submit"] {
}
form input[type="submit"]:hover {
}
}

/*実績一覧*/
#Container .mix {
	display: none;
}
.filter_ttl {
	font-family: "Noto Sans Japanese";
	font-weight: 900;
	font-size: 18px;
}
.filter_btn {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.filter_btn .filter {
	cursor: pointer;
	padding: 10px;
	border: solid 1px #ddd;
	margin: 5px;
}
.filter_btn .filter:hover {
	color: #fff;
	background: #666;
}
#Container {
}
#Container dl {
	overflow: hidden;
	margin-bottom: 30px;
}
#Container dt {
	font-family: "Noto Sans Japanese";
	font-weight: 900;
	font-size: 18px;
	color: #999;
	margin-bottom: 10px;
}
#Container dt b {
	display: block;
	font-size: 40px;
	line-height: 1;
}
#Container dd {
	float: left;
	width: 200px;
	height: 200px;
	margin: 5px;
}
#Container dd a {
	display: block;
	height: 100%;
	background-size: cover !important;
	background-position: center !important;
	position: relative;
	overflow: hidden;
	color: #fff;
}
#Container dd a:hover {
	opacity: 1;
}
#Container dd a .info {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	transition: 0.2s;
	top: 100%;
}
#Container dd a .info:after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: solid 5px #fff;
	border-right: solid 5px #fff;
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	margin: auto;
	margin-left: 5px;
}
#Container dd a:hover .info {
	top: 0;
}
#Container dd a .info b {
	font-weight: bold;
	padding: 5px;
}
#Container dd a .info ul {
	position: absolute;
	bottom: 0;
	font-size: 12px;
}
#Container dd a .info ul li {
	position: relative;
	padding-left: 50px;
}
#Container dd a .info ul li:before {
	content: "：";
	position: absolute;
	top: 0;
	left: 40px;
}
#Container dd a .info ul li:after {
	content: "";
	position: absolute;
	left: 6px;
	top: 0;
}
#Container dd a .info ul li:nth-of-type(1):after {
	content: "タイプ";
}
#Container dd a .info ul li:nth-of-type(2):after {
	content: "場所";
}
#Container dd a .info ul li:nth-of-type(3):after {
	content: "坪数";
}

@media (max-width: 768px) {
	#Container .mix {}
.filter_ttl {}
.filter_btn {}
.filter_btn .filter {width: calc(50% - 10px);box-sizing: border-box;}
.filter_btn .filter:hover {}
#Container {}
#Container dl {}
#Container dt {}
#Container dt b {}
#Container dd {
    width: 190px;
    height: 190px;
    margin: 4px;
}
#Container dd a {}
#Container dd a:hover {}
#Container dd a .info {}
#Container dd a .info:after {}
#Container dd a:hover .info {}
#Container dd a .info b {}
#Container dd a .info ul {}
#Container dd a .info ul li {}
#Container dd a .info ul li:before {}
#Container dd a .info ul li:after {}
#Container dd a .info ul li:nth-of-type(1):after {}
#Container dd a .info ul li:nth-of-type(2):after {}
#Container dd a .info ul li:nth-of-type(3):after {}
}

@media (max-width: 480px) {
	#Container .mix {}
.filter_ttl {}
.filter_btn {
    flex-direction: column;
}
.filter_btn .filter {
    width: 100%;
    margin: 0 0 -1px;
}
.filter_btn .filter:hover {}
#Container {}
#Container dl {}
#Container dt {}
#Container dt b {
    font-size: 24px;
}
#Container dd {
    width: 146px;
    height: 146px;
    margin: 2px;
}
#Container dd a {}
#Container dd a:hover {}
#Container dd a .info {}
#Container dd a .info:after {}
#Container dd a:hover .info {}
#Container dd a .info b {}
#Container dd a .info ul {}
#Container dd a .info ul li {}
#Container dd a .info ul li:before {}
#Container dd a .info ul li:after {}
#Container dd a .info ul li:nth-of-type(1):after {}
#Container dd a .info ul li:nth-of-type(2):after {}
#Container dd a .info ul li:nth-of-type(3):after {}
}

/*実績詳細*/
.works{
    display: table;
    margin-bottom: 10px;
}
.works a{
    display: table-cell;
}
.works a img{}
.works .works_detail{
    display: table-cell;
    width: 200px;
    vertical-align: top;
    background: #eee;
    padding: 40px 10px 10px;
    box-sizing: border-box;
    font-size: 12px;
    position: relative;
}
.works .works_detail .works_cate{
    position: absolute;
    background: #333;
    color: #fff;
    padding: 5px;
    top: 5px;
    right: -5px;
}
.works .works_detail .works_cate:after{
	content:"";
	height: 0;
	width: 0;
	display: block;
	border: 5px transparent solid;
	border-bottom-width: 0;
	border-left-width: 0;
	border-top-color: #999;
	position: absolute;
	bottom: -5px;
	right: 0px;
}
.works .works_detail .works_name{
    font-family: "Noto Sans Japanese";
    font-weight: 900;
}
.works .works_detail ul{
    margin-bottom: 10px;
}
.works .works_detail li{
    position: relative;
    padding-left: 50px;
}
.works .works_detail li:before{
	content: "";
	border: solid 1px #ccc;
	background: #fff;
	position: absolute;
	width: 45px;
	top: 0;
	left: 0;
	text-align: center;
	box-sizing: border-box;
	font-size: 11px;
	line-height: 14px;
}
.works .works_detail li:nth-of-type(1):before{
	content: "タイプ";
}
.works .works_detail li:nth-of-type(2):before{
	content: "場所";
}
.works .works_detail li:nth-of-type(3):before{
	content: "坪数";
}
.works .works_detail .works_txt{}
.works_list{
    position: relative;
    padding-top: 1rem;
    margin: 0 -5px;
    overflow: hidden;
}
.works_list:before{
	content: "画像クリックで拡大";
	font-size: 11px;
	position: absolute;
	top: 0;
}
.works_list a{
    display: block;
    float: left;
    background-size: contain !important;
    background-position: center !important;
    width: 100px;
    height: 100px;
    margin: 5px;
}

@media (max-width: 768px) {
	.works{
    display: block;
}
.works a{
    display: block;
}
.works a img{}.works .works_detail{
    display: block;
    width: 100%;
    padding: 10px;
}
.works .works_detail .works_cate{}
.works .works_detail .works_cate:after{}
.works .works_detail .works_name{}
.works .works_detail ul{}
.works .works_detail li{}
.works .works_detail li:before{}
.works .works_detail li:nth-of-type(1):before{}
.works .works_detail li:nth-of-type(2):before{}
.works .works_detail li:nth-of-type(3):before{}
.works .works_detail .works_txt{}.works_list{
    margin: 0;
}
.works_list:before{}
.works_list a{
    width: 95px;
    height: 95px;
    margin: 2px;
}
}
@media (max-width: 480px) {
	.works{}
.works a{}
.works a img{}.works .works_detail{}
.works .works_detail .works_cate{}
.works .works_detail .works_cate:after{}
.works .works_detail .works_name{}
.works .works_detail ul{}
.works .works_detail li{}
.works .works_detail li:before{}
.works .works_detail li:nth-of-type(1):before{}
.works .works_detail li:nth-of-type(2):before{}
.works .works_detail li:nth-of-type(3):before{}
.works .works_detail .works_txt{}.works_list{}
.works_list:before{}
.works_list a{}
}

/*トップページ*/
.new_works{
    overflow: hidden;
    margin-bottom: 50px;
    border-bottom: solid 3px #999;
}
.new_works_ttl{
    font-family: "Noto Sans Japanese";
    font-weight: 900;
    font-size: 21px;
    overflow: hidden;
}
.new_works_ttl small{
    float: right;
    font-weight: normal;
    font-size: 14px;
    color: #999;
}
.new_works_ttl small:before{
	content:"投稿日：";
}
.new_works a{
    display: block;
    margin-bottom: 20px;
}
.new_works a img{}
.new_works_txt{
    border-top: dotted 1px #ccc;
    padding: 10px 0;
}
.new_works .more{
    display: table;
    position: relative;
    background: #3BB2D8;
    color: #fff;
    font-family: "Noto Sans Japanese";
    font-weight: 900;
    font-size: 21px;
    line-height: 1;
    padding: 10px;
    border-radius: 5px;
    padding-right: 30px;
    float: right;
}
.new_works .more:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: solid 5px #fff;
    border-right: solid 5px #fff;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    margin: auto;
    margin-left: 5px;
}
@media (max-width: 768px) {
	.new_works{}
.new_works_ttl{}
.new_works_ttl small{}
.new_works_ttl small:before{}
.new_works a{}
.new_works a img{}.new_works_txt{}
.new_works .more{}
.new_works .more:after {}
}
@media (max-width: 480px) {
	.new_works{}
.new_works_ttl{}
.new_works_ttl small{}
.new_works_ttl small:before{}
.new_works a{}
.new_works a img{}.new_works_txt{}
.new_works .more{}
.new_works .more:after {}
}