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

/*------------------------------------------------------
　tapestry-common
------------------------------------------------------*/

#mainContent {
	font-size: 14px;
	letter-spacing: .04em;
	line-height: 1.8em;
	color: #191919;
}

a { transition: .8s cubic-bezier(.2, 1, .2, 1); }
a:hover {
    color: inherit;
    opacity: .6;
}

#mainContent .last{
	margin-right: 0!important;
}

@media screen and (max-width: 480px) {
	#mainContent {
		font-size: 13px;
	}
}




/*------------------------------------------------------
　h要素
------------------------------------------------------*/

/*type1*/
.h-type1 {
	font-size: 27px;
	line-height: 1.3em;
	font-weight: 900;
	color: #0b4ea2;
	letter-spacing: .08em;
	padding: 15px 0;
	border-bottom: 5px solid #ebeff3;
	margin-bottom: 30px;
	position: relative;
}
.h-type1:after {
	content: "";
	width: 50%;
	height: 5px;
	background: #0b4ea2;
	position: absolute;
	bottom: -5px;
	left: 0;
}

/*type2*/
.h-type2 {
	font-size: 20px;
	line-height: 1.3em;
	font-weight: bold;
	color: #FFF;
	letter-spacing: .08em;
	padding: 10px 25px;
	border-left: 5px solid #00285a;
	margin-bottom: 30px;
	background: #0b4ea2;
}


/*type3*/
.h-type3 {
	font-size: 19px;
	line-height: 1.3em;
	font-weight: bold;
	color: #00285a;
	letter-spacing: .08em;
	padding: 10px 25px;
	border-bottom: 1px solid #00285a;
	margin-bottom: 30px;
	background: #f1f1f1;
}


/*type4*/
.h-type4 {
	font-size: 19px;
	line-height: 1.3em;
	font-weight: bold;
	color: #414141;
	padding-bottom: 5px;
	border-bottom: 1px solid #191919;
	margin-bottom: 20px;
}


/*type5*/
.h-type5 {
	font-size: 20px;
	line-height: 1.3em;
	font-weight: bold;
	color: #232323;
	padding: 10px 25px;
	border-left: 9px solid #0b4ea2;
	border-bottom: 1px solid #191919;
	margin-bottom: 25px;
    letter-spacing: .08em;
}

/*type6*/
.h-type6 {
	color: #232323;
	margin-bottom: 25px;
	padding: 5px 15px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3em;
	border-left: 5px solid #0b4ea2;
    letter-spacing: .08em;
}


@media screen and (max-width: 786px) {
	
	/*type1*/
	.h-type1 {
		padding: 0 20px 15px;
	}
	
	/*type4*/
	.h-type4 {
		padding: 0 20px 5px;
	}
}

@media screen and (max-width: 480px) {
	
	/*type1*/
	.h-type1 {
		font-size: 22px;
		padding: 10px 20px;
		margin-bottom: 20px;
	}
	
	/*type2*/
	.h-type2 {
		font-size: 18px;
		margin-bottom: 30px;
	}


	/*type3*/
	.h-type3 {
		font-size: 16px;
		margin-bottom: 30px;
	}


	/*type4*/
	.h-type4 {
		font-size: 16px;
	}
    
    /*type5*/
	.h-type5 {
		font-size: 16px;
	}

}




/*------------------------------------------------------
　リンクボタン
------------------------------------------------------*/

.link-btn {
	width: 70%;
	margin: 0 auto 90px;
}

.link-btn a {
	display: block;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	font-size: 19px;
	letter-spacing: .08em;
	padding: 15px 20px;
	border-radius: 100px;
	border: 2px solid #ffb595;
	background: linear-gradient(-10deg, #ff8227 50%, #fc6827 50%);
}

.link-btn a span {
	margin-right: 15px;
}

@media screen and (max-width: 480px) {
	.link-btn {
		width: 80%;
		margin: 0 auto 60px;
	}
	
	.link-btn a {
		font-size: 16px;
	}
}



/*------------------------------------------------------
　お気軽にお問い合わせください
------------------------------------------------------*/
.contact-cont {
	text-align: center;
	font-weight: bold;
	margin: 70px auto 100px;
}

.contact-cont > dt {
	font-size: 27px;
	font-weight: 900;
	color: #093874;
	text-align: center;
	letter-spacing: .08em;
	margin-bottom: 15px;
}

.contact-cont dd .number-box {
	border: 1px solid #093874;
	margin-bottom: 20px;
}

.contact-cont dd .number-box .inner {
	padding: 20px 30px;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}


/**/
.contact-cont dd .number-box .inner > a {
	display: flex;
	align-items: center;
}

/**/
.contact-cont dd .number-box .inner dl {
	width: 260px;
	text-align: center;
}

.contact-cont dd .number-box .inner dl div {
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	background: #eff2f5;
	border-radius: 3px;
	overflow: hidden;
}

.contact-cont dd .number-box .inner dl div:first-child {
	margin-bottom: 8px;
}

.contact-cont dd .number-box .inner dl dt {
	width: 70px;
	background: #8aa8cf;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	padding: 7px;
	box-sizing: border-box;
}

.contact-cont dd .number-box .inner dl dd {
	width: calc( 100% - 70px );
	display:flex;
	justify-content: center;
	align-items: center;
}


.contact-cont dd .number-box .day {
	color: #FFF;
	background: #093874;
	font-size: 13px;
	padding: 5px;
	letter-spacing: .12em;
	font-weight: normal;
}

@media screen and (max-width: 786px) {
	
	.contact-cont {
		margin: 70px 3% 100px;
	}
	
	
	/**/
	.contact-cont dd .number-box .inner > a {
		width: 100%;
	}
	.contact-cont dd .number-box .inner > a img {
		margin: 0 auto;
	}

	/**/
	.contact-cont dd .number-box .inner dl {
		width: 100%;
		display:flex;
		flex-flow: row wrap;
		justify-content: space-between;
		margin-top: 10px;
	}
	
	.contact-cont dd .number-box .inner dl div {
		width: 48%;
	}
	
	.contact-cont dd .number-box .inner dl div:first-child {
		margin-bottom: 0;
	}
	
	.contact-cont dd .number-box .inner dl dt {
		font-size: 16px;
		padding: 5px;
	}
	
	.contact-cont dd .number-box .inner dl dd {
		padding: 5px 10px;
		box-sizing: border-box;
	}
	
	.contact-cont dd .number-box .inner dl dd img {
		vertical-align: middle;
	}
}

@media screen and (max-width: 520px) {
	.contact-cont {
		margin: 50px 5% 70px;
	}
	
	.contact-cont > dt {
		font-size: 18px;
	}
	
	
	/**/
	.contact-cont dd .number-box .inner > a {
		width: 100%;
	}

	/**/
	.contact-cont dd .number-box .inner dl dt {
		font-size: 13px;
		width: 80px;
	}
	
	.contact-cont dd .number-box .inner dl dd {
		width: calc( 100% - 80px );
	}
	
	.contact-cont dd .number-box .inner dl div {
		width: 100%;
	}
	
	.contact-cont dd .number-box .inner dl div:first-child {
		margin-bottom: 10px;
	}
	
	.contact-cont dd .number-box .day {
		font-size: 10px;
		padding: 10px 20px;
		line-height: 1;
	}
}


/*----下部ボタン----*/

.contact-cont .contact-btn {
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.contact-cont .contact-btn li {
	width: 48%;
}


/*----無料お見積り----*/
.contact-cont .contact-btn li a {
	color: #FFF;
	font-size: 22px;
	border-radius: 5px;
	border: 2px solid;
	padding: 20px 40px 20px 100px;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
	letter-spacing: .08em;
	height: 100%;
	display:flex;
	justify-content: center;
	align-items: center;
}
.contact-cont .contact-btn li a:before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 45px;
	display: block;
	color: #FFF;
	line-height: 1em;
	position: absolute;
	left: 60px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}


.contact-cont .contact-btn li.estimate a {
	border-color: #ff9ba7;
	background: linear-gradient(-25deg, #ff3d54 50%, #f91f39 50%);
}
.contact-cont .contact-btn li.estimate a:before {
	content: '\f1ec';
}

.contact-cont .contact-btn li.mail a {
	border-color: #afe279;
	background: linear-gradient(-25deg, #8ad53a 50%, #78cb1f 50%);
}
.contact-cont .contact-btn li.mail a:before {
	content: '\f0e0';
}


.contact-cont .contact-btn li a span {
	display: block;
}
.contact-cont .contact-btn li span:after {
	content: attr(data-text)"";
	font-size: 11px;
	font-weight: normal;
	display: block;
	margin-top: 5px;
	line-height: 1em;
}


.contact-cont .contact-btn li a em {
	background: #FFF;
	color: #f91f39;
	font-size: 17px;
	font-weight: bold;
	padding: 0 10px;
	border-radius: 100px;
	margin-right: 10px;
	display: inline-block;
}




@media screen and (max-width: 786px) {
	.contact-cont .contact-btn li a {
		font-size: 22px;
		padding: 20px 30px 20px 60px;
	}
	.contact-cont .contact-btn li a:before {
		font-size: 30px;
		left: 25px;
	}

}

@media screen and (max-width: 480px) {
	.contact-cont .contact-btn li a {
		font-size: 18px;
		padding: 55px 15px 15px;
	}
	.contact-cont .contact-btn li a:before {
		font-size: 25px;
		top: 20px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}
	
	.contact-cont .contact-btn li a em {
		display: block;
		margin: 0 0 5px;
	}
	
	.contact-cont .contact-btn li span:after {
		font-size: 10px;
	}

}




/*------------------------------------------------------
　価格のお見積りはこちらから！
------------------------------------------------------*/

#mainContent .estimate-box {
	text-align: center;
	margin-bottom: 90px;
	font-weight: bold;
}

#mainContent .estimate-box p {
	width: fit-content;
	margin: 0 auto 20px;
	text-align: center;
	font-size: 19px;
	color: #0b4ea2;
	border: 1px solid #143c6e;
	position: relative;
	padding: 10px 45px;
}
#mainContent .estimate-box p:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 15px 30px;
	border-color: transparent transparent #143c6e transparent;
	position: absolute;
	bottom: 0;
	right: 0;
}


/**/
#mainContent .estimate-box a {
	display: block;
	width: 460px;
	color: #FFF;
	font-size: 32px;
	border-radius: 5px;
	border: 2px solid #ff9ba7;
	padding: 30px 40px 30px 110px;
	background: linear-gradient(-25deg, #ff3d54 50%, #f91f39 50%);
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
	letter-spacing: .08em;
}
#mainContent .estimate-box a:before {
	content: '\f1ec';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 58px;
	display: block;
	color: #FFF;
	line-height: 1em;
	position: absolute;
	left: 70px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}


#mainContent .estimate-box a span {
	display: block;
}
#mainContent .estimate-box a span:after {
	content: attr(data-text)"";
	font-size: 14px;
	font-weight: normal;
	display: block;
	margin-top: 10px;
	line-height: 1em;
}


#mainContent .estimate-box a em {
	background: #FFF;
	color: #f91f39;
	font-size: 22px;
	font-weight: bold;
	padding: 3px 20px;
	border-radius: 100px;
	margin-right: 15px;
	display: inline-block;
}

@media screen and (max-width: 786px) {
	#mainContent .estimate-box a {
		width: 70%;
		padding: 30px 30px 30px 90px;
		font-size: 30px;
	}
	
	#mainContent .estimate-box a:before {
		font-size: 40px;
		left: 40px;
	}
	
	#mainContent .estimate-box a em {
		font-size: 18px;
		padding: 3px 18px;
		margin-right: 10px;
	}
}

@media screen and (max-width: 480px) {
	
	#mainContent .estimate-box p {
		font-size: 16px;
		margin: 0 auto 15px;
		padding: 10px 30px;
		width: 90%;
		box-sizing: border-box;
	}
	
	/**/
	#mainContent .estimate-box a {
		width: 80%;
		font-size: 24px;
		padding: 25px 30px;
	}
	
	#mainContent .estimate-box a:before {
		font-size: 35px;
		position: static;
		transform: none;
		-webkit-transform: none;
		margin-bottom: 10px;
	}
	
	#mainContent .estimate-box a em {
  		font-size: 17px;
		padding: 0px 15px;
	}
	
	#mainContent .estimate-box a span:after {
		font-size: 10px;
		margin-top: 5px;
	}
}


/*------------------------------------------------------
	グループリンク
------------------------------------------------------*/
.group-cont{
	margin-bottom: 40px;
}
.group-cont h3{
	color: #4a4a4a;
	margin-bottom: 15px;
	padding: 0 10px;
	font-size: 2.0rem;
	font-weight: 700;
	border-left: 2px solid #111;
}
.group-cont ul{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.group-cont ul > li{
	width: calc((100% - 60px) / 3);
	background-color: #dbdbdb;
	background-size: 110%;
	transition: all .3s ease;
}
.group-cont ul > li a{
	display: block;
	transition: all .3s ease;
}
.group-cont ul > li a:hover{
	opacity: 0.9;
	box-shadow: 0 0 0 3px #0791b8;
}

@media screen and (max-width: 786px) {
	.group-cont{
		margin: 0 3% 40px;
	}
	.group-cont h3{
		font-size: 20px;
	}
	.group-cont ul{
		gap: 20px;
	}
	.group-cont ul > li{
		width: calc((100% - 40px) / 3);
	}
}

@media screen and (max-width: 480px) {
	.group-cont ul{
		gap: 15px;
	}
	.group-cont ul > li{
		width: calc((100% - 15px) / 2);
	}
}
