@charset "utf-8";

/*------------------------------*/
/* ページ固有設定*/
/*------------------------------*/

.border_bottom_000000 {
	border-bottom: 1px solid #000;
}

/*------------------------------*/
/* サブタイトル枠 */
.sub_menu_frame_left {
	position: relative;
	background: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'>\<path d='M0 100 V0 H85 L100 100' fill='none' stroke='black' stroke-width='1' vector-effect='non-scaling-stroke'/>\</svg>");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	font-weight:bold;
	display: flex;
	align-items: center;
	justify-content: center;

}
.sub_menu_frame_left_inner {
	transform: translateX(-10px);
	letter-spacing: 0.1em;
	line-height: 1;
	white-space: nowrap;
}

/*------------------------------*/
/* 費用目安SVG */
.cost_estimate {
	width:100%;
	max-width: 120px;
	height: auto;
}

/*------------------------------*/
/* アニメーションボタン */
/* ------------------------------ */
.link_button_frame {
	background-color: #cccccc;
	border-radius:50px;
	color: #ffffff;
	font-size:16px;
	text-align:center;
	width:calc(100% - 40px);
	height:50px;
	max-width:350px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	-webkit-user-select: none; /* Chrome or Safari */
	-webkit-touch-callout: none; /* Android and iOS*/
	-moz-user-select: none; /* FireFox */
	-ms-user-select: none; /* IE */
	-o-user-select: none; /* Opera */
	user-select: none;
	display:block;
	border:none;
	position:absolute;
	bottom:35px;
}
.link_button_frame:hover {
	color: #ffffff;
}

.link_button_inner {
	width:100%;
	height:100%;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%); /* Safari用 */
	transform:translate(-50%,-50%);
	transition:0.3s;
	background-color: #24ccb6;
	position:absolute;
	border-radius:50px;
}
.link_button_frame:hover .link_button_inner {
	width:0px;
	height:0px;
	opacity: 0;
}
.link_button_text {
	position:absolute;
	top:50%;
	width:100%;
	text-align:center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

/* タブレット */
@media only screen and (max-width:1024px) {
	.link_button_frame {
		margin-top: 30px;
		position: relative;
	}
}

/* 影枠 */
.box_shadow {
	box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
}