@charset "UTF-8";

/*/////////////////////////////
基本設定
////////////////////////////*/

html {
	overflow-y: scroll;
	background: #eee;
}

body {
	position: relative;
	width: 100%;
	font-size: 14px;
	line-height: 1.6em;
	color: #3b3b3b;
	/* 	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'Noto Sans JP', sans-serif; */
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #fff;
	margin: 0 auto;
	box-shadow: 0 0 8px gray;
	overflow: hidden;
}

#wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

*:focus {
	outline: none;
}

a {
	cursor: pointer;
}

a,
button,
div {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;
	vertical-align: bottom;
	font-size: medium;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

/*画面サイズ別表示*/
.sp_only {
	display: block;
}

.pc_only {
	display: none;
}


@media screen and (min-width:768px) {
	.sp_only {
		display: none;
	}

	.pc_only {
		display: block;
	}

	body {
		font-size: 18px;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {
	body {
		font-size: 16px;
	}
}

/*PC*/

/*/////////////////////////////
カラー指定
////////////////////////////*/

:root {
	--wht: #fff;
	--blk: #1c1c1c;
	--dbl: #1C3181;
	--ble: #0080e5;
	--org: #FEBA17;
	--lgry: #d6d6d6;
	--gry: #909090;
	--dgry: #595959;
	--red: #FE3838;
}


/*/////////////////////////////
コンテンツ共通
////////////////////////////*/

#main {
	position: relative;
	margin: 0 auto;
	z-index: 1;
	background-color: var(--wht);
}

.content_wrapper {
	overflow: hidden;
	width: 100%;
	margin: 0;
}

.content {
	overflow: hidden;
	padding: 1.5rem 0;
	width: 100%;
}

.content_inner {
	padding: 0 1rem 2rem;
	margin: 0 auto;
	width: 100%;
	max-width: 750px;
	background-color: var(--wht);
}

.section_title {
	position: relative;
	font-weight: 500;
	font-size: 120%;
	padding: 0.5em;
	margin-bottom: 1rem;
	line-height: 1.6em;
}

.section_title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	content: '';
	border-radius: 2px;
	background-image: -webkit-gradient(linear, right top, left top, from(var(--dbl)), to(var(--ble)));
	background-image: -webkit-linear-gradient(right, var(--dbl) 0%, var(--ble) 100%);
	background-image: linear-gradient(to left, var(--dbl) 0%, var(--ble) 100%);
}

.text_title {
	font-weight: 500;
	font-size: 120%;
	height: auto;
	margin: 2rem auto 1rem;
	padding: 10px 18px;
	color: var(--wht);
	background-color: var(--dbl);
	border-radius: 36px;
	line-height: 1.6em;
}

.text_inner {
	padding: 0 0.5rem;
	margin-top: 2rem;
}

.text_subtitle {
	display: inline-block;
	color: var(--wht);
	background-color: var(--dbl);
	border-radius: 5px;
	padding: 10px 1rem;
	margin: 1rem 0 0;
	line-height: 1.6em;
}

.pdf {
	display: block;
	height: 1.5rem;
	width: auto;
	padding-bottom: 3px;
}


@media screen and (min-width:768px) {
	.content {
		padding: 2rem 1.5rem 0;
	}

	.text_title {
		margin-bottom: 1.2rem;
		margin-top: 2.5rem;
	}

	.text_inner {
		padding: 0 1rem;
	}

	.text_subtitle {
		margin: 2.5rem 0 0;
	}

	.pdf {
		height: 22px;
		margin-bottom: 7px;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {
	.pdf {
		height: 18px;
		margin-bottom: 5px;
	}
}

/*PC*/


/*/////////////////////////////
文字設定
////////////////////////////*/

p {
	margin-bottom: 0.5rem;
}

.red {
	color: var(--red);
}

.link {
	cursor: pointer;
	text-decoration: underline;
	color: var(--ble);
	word-break: break-all;
}

.bold {
	font-weight: bold;
}

.bold_none {
	font-weight: normal;
}

.center {
	display: block;
	text-align: center;
}

sup {
	font-size: 12px;
}

/*注釈 数字あり*/
.note_cmt {
	font-size: 12px;
	line-height: 1.5em;
	margin: 0.25rem 0 2rem 0;
	text-align: left;
}

.note_cmt p {
	padding-left: 2em;
	text-indent: -2em;
	margin-bottom: 0.5rem;
}

/*注釈 数字なし*/
.note_cmt1 {
	font-size: 12px;
	line-height: 1.5em;
	margin: 0.25rem 0 2rem 12px;
	text-align: left;
}

.note_cmt1 p {
	text-indent: -1rem;
	margin-bottom: 0.5rem;
}

/*indent*/
.list_indent1 li {
	text-indent: -1rem;
	padding-left: 1rem;
	margin-bottom: 0.5rem;
}

.list_indent1 .indent,
.indent {
	text-indent: 0;
	padding-left: 1rem;
}

.list_indent2 {
	box-sizing: 100%;
	margin-bottom: 1rem;
}

.list_indent2 li {
	text-indent: -1.2rem;
}

.list_indent2 li>p {
	text-indent: 0rem;
	margin-bottom: 1rem;
}


@media screen and (min-width:768px) {
	sup {
		font-size: 1rem;
	}

	.note_cmt,
	.note_cmt1,
	.note_cmt2 {
		font-size: 1rem;
	}

	.list_indent2 {
		padding-left: 1rem !important;
		margin-bottom: 2rem;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {
	sup {
		font-size: 0.8rem;
	}

	.note_cmt,
	.note_cmt1,
	.note_cmt2 {
		font-size: 0.8rem;
	}
}

/*PC*/


/*/////////////////////////////
メインビジュアル	
////////////////////////////*/

#mainvisual {
	width: 100%;
	height: auto;
	background: var(--wht);
}

.mainvisual_wrapper {
	top: 0;
	width: 100%;
	max-width: 900px;
	height: auto;
	margin: 0 auto 10px;
	background: var(--dbl);
	border-top-left-radius: 18rem;
	border-top-right-radius: 18rem;
	transform: rotate(180deg);
	z-index: 2;
}

.toptitle-01 {
	margin: 0 auto;
	padding: 1.5rem 1rem;
	width: 85%;
	height: auto;
}

.top_title {
	display: block;
	width: 90%;
	margin: 0 auto;
	transform: rotate(-180deg);
}

.img_top {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto 2rem;
}


@media screen and (min-width:768px) {
	.mainvisual_wrapper {
		padding: 1rem;
		margin-bottom: 1rem;
	}

	.toptitle-01 {
		padding-top: 1rem;
		width: 80%;
	}

	.top_title {
		width: 80%;
	}

	.img_top {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 auto 3rem;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {}

/*PC*/


/*/////////////////////////////
案内
////////////////////////////*/

#guidance {
	padding: 1.5rem auto 0;
}

table,
td,
th {
	border: 1px solid var(--dgry);
	border-collapse: collapse;
	justify-content: center;
}

.priceTable {
	width: 100%;
	margin: 1rem auto;
}

td,
th {
	padding: 5px;
}

th {
	background: var(--dbl);
	border-bottom: solid 1px var(--wht);
	border-right: solid 1px var(--wht);
	color: var(--wht);
	text-align: center;
}

tr th:last-child {
	border-right: solid 1px var(--dbl);
}

.tableTitle {
	width: 32%;
}

td {
	font-weight: 600;
}

td:not(:first-child) {
	text-align: center;
	font-size: 1.4rem;
}

.textbox {
	width: 96%;
	margin: 1rem auto;
	padding: 1.4rem 1rem;
	background: linear-gradient(-45deg, transparent 25%, #fafafa 25%, #fafafa 50%,
			transparent 50%, transparent 75%, #fafafa 75%, #fafafa);
	background-size: 4px 4px;
	border-bottom: 4px double var(--gry);
	border-top: 4px double var(--gry);
	background-clip: padding-box;
}


@media screen and (min-width:768px) {
	#guidance {
		padding-top: 2rem;
	}

	.priceTable {
		margin-top: 0 auto 1rem;
	}

	td,
	th {
		padding: 10px;
	}

	.textbox {
		margin: 1rem auto 2rem;
		padding: 2rem;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {}

/*PC*/


/*/////////////////////////////
迷惑電話対策について
////////////////////////////*/

.img_form {
	display: block;
	width: 105%;
	height: 105%;
	margin: 1rem 0 1.8rem -2.5%;
}

.text_subtitle1 {
	padding: 1rem 0 0.5rem;
	line-height: 1.6em;
}

.img_post {
	display: block;
	margin: 1rem auto;
	border: 2px solid var(--dbl);
}

#aboutService .btn_area {
	margin: 3rem auto 0.5rem;
}


@media screen and (min-width:768px) {
	#aboutService .btn_area {
		margin: 3rem auto 2rem;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {}

/*PC*/


/*/////////////////////////////
FAQ
////////////////////////////*/

#faq {
	padding-bottom: 0;
}

.ac_menu {
	padding-top: 1rem;
}

.faqBox {
	margin: 0 auto 1rem;
	padding: 10px 3%;
	width: 90%;
	background: var(--wht);
	border: 1px solid var(--gry);
	border-radius: 8px;
}

.ac_title span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 10px 10px 30px;
	line-height: 1.6;
	cursor: pointer;
	gap: 0.5em;
	z-index: +1;
	transition-duration: 0.2s;
}

.ac_title span::before {
	content: "";
	background-image: url(../img/question.svg);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
}

.ac_title span::after {
	content: "";
	flex-shrink: 0;
	margin-top: -3px;
	margin-left: 10px;
	display: block;
	width: 9px;
	height: 9px;
	border-bottom: 2px solid var(--gry);
	border-left: 2px solid var(--gry);
	transform: rotate(-45deg);
	transition: .3s
}

.ac_title.open span::after {
	transform: rotate(135deg)
}

.ac_menu div.ac_cont {
	display: none;
	margin-top: 10px;
	padding: 0 20px;
	border-top: 1px dashed var(--gry);
	box-sizing: border-box;
}

.ac_inner_wraper {
	height: auto;
	padding-top: 1rem;
}

.ac_cont p {
	width: 100%;
}

.ac_cont ul {
	margin-bottom: 1rem;
}

.ac_cont .note_cmt1 {
	margin: 0.25rem 0 0 12px;
}


@media screen and (min-width:768px) {
	.ac_menu {
		padding-bottom: 1rem;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {}

/*PC*/


/*/////////////////////////////
下部エリア
////////////////////////////*/

#applyBtn_area {
	background: var(--wht);
	padding: 0;

}

#applyBtn_area .content_inner {
	background: var(--wht);
	padding-left: 0;
	padding-right: 0;
}

.btn_area {
	margin: 1rem auto 2rem;
	padding: 0;
	text-align: center;
}

.btn_area p {
	margin-bottom: 2rem;
}

/* ボタン */
.default_btn {
	position: relative;
	display: inline-block;
	min-width: 300px;
	padding: 15px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -.5px;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	border: none;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
	-webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
	transition: 0.5s;
}

#suspension_btn {
	color: var(--dbl);
	background-color: var(--wht);
	border: 1px solid var(--dbl);
}

#apply_btn {
	color: var(--blk);
	background-color: var(--org);
}

#suspension_btn:disabled {
	border: 1px solid #BFBFBF;
	background-color: #cccccc;
	color: #666666;
	box-shadow: none;
}

input[type=checkbox] {
	transform: scale(1.3);
	margin-right: 5px;
}

@media screen and (min-width:768px) {
	.btn_area {
		margin: 1.5rem auto 1rem;
	}

	.btn_area p {
		margin-bottom: 3rem;
	}

	.default_btn {
		width: 600px;
		max-width: 80%;
		padding: 18px 15px;
		font-size: 120%;
	}

	#suspension_btn {
		max-width: 60%;
	}

	input[type=checkbox] {
		transform: scale(1.8);
		margin-right: 10px;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {}

/*PC*/


/*/////////////////////////////
お問い合わせ
////////////////////////////*/

#info {
	padding-top: 0;
}

#info .content_inner,
#info .text_inner {
	text-align: center;
}

#info .content_inner {
	padding-bottom: 0;
}

#info .text_inner {
	margin-top: 1rem;
}

.call_num {
	color: var(--dbl);
	font-size: 1.7rem;
	font-weight: 900;
	letter-spacing: -.5px;
}

.call_num::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url(../img/FC_logo.svg) no-repeat;
	background-size: contain;
	margin-right: 5px;
	margin-top: 3px;
	vertical-align: middle;
}

.chat_support {
	display: inline-block;
	color: var(--ble);
	font-size: 1.5rem;
	font-weight: 600;
	cursor: pointer;
	margin-bottom: 0.5rem;
}

.chat_support::before {
	content: "";
	display: inline-block;
	width: 35px;
	height: 35px;
	background: url(../img/chat.svg) no-repeat;
	background-size: contain;
	margin-right: 8px;
	margin-top: -10px;
	vertical-align: middle;
}

#info .note_cmt1 {
	text-align: center;
}


@media screen and (min-width:768px) {
	#info {
		padding-top: 2rem;
	}

	#info .content_inner {
		padding-bottom: 2rem;
	}

	.chat_support {
		display: inline-block;
		color: var(--ble);
		font-size: 1.5rem;
		font-weight: 600;
		cursor: pointer;
		margin-bottom: 0.8rem;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {}

/*PC*/


/*/////////////////////////////
画像用モーダル
////////////////////////////*/

.modal_open:hover {
	cursor: pointer;
}

.modal {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

.modal_bg {
	position: fixed;
	background: rgba(0, 0, 0, 0.8);
	height: 100vh;
	width: 100%;
	left: 0;
}

.modal_content {
	position: absolute;
	background: var(--wht);
	width: 98%;
	padding: 14% 1rem;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.modal_content img {
	width: 100%;
	height: auto;
}

.modal .close_text {
	color: var(--dgry);
	position: absolute;
	top: 5%;
	right: 3%;
	font-size: 1.5rem;
	font-weight: 600;
}

.strBlue {
	border: 3px solid var(--dbl);
}

@media screen and (min-width:768px) {}

/*ipad*/

@media screen and (min-width:1024px) {
	.modal_content {
		width: 70%;
		padding: 6%;
	}

	.modal .close_text {
		font-size: 2rem;
		font-weight: 800;
	}
}

/*PC*/


/*/////////////////////////////
フロートボタン
////////////////////////////*/

#float_btn_area {
	width: 60px;
	height: 60px;
	position: fixed;
	right: 3%;
	bottom: 3%;
	background: var(--dbl);
	border-radius: 50%;
	overflow: hidden;
	border-bottom: solid 3px;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
	transition: .4s;
	z-index: 9999;
	opacity: 0;
	transform: translateY(160px);
}

#float_btn_area a.float_btn {
	position: relative;
	display: block;
	width: 100%;
	height: 7rem;
	text-decoration: none;
}

#float_btn_area a.float_btn::before {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	top: -50%;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	background-image: url("../img/gototop.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

#float_btn_area a.float_btn::after {
	white-space: pre;
	content: 'TOP';
	font-size: 0.75rem;
	color: var(--wht);
	position: absolute;
	top: 28%;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

#float_btn_area.up {
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(160px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#float_btn_area.down {
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 1;
		transform: translateY(160px);
	}
}


@media screen and (min-width:768px) {
	#float_btn_area {
		width: 80px;
		height: 80px;
		right: 3.5%;
		bottom: 3.5%;
	}

	#float_btn_area a.float_btn::before {
		width: 28px;
		height: 28px;
		top: -38%;
	}

	#float_btn_area a.float_btn::after {
		top: 35%;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {}

/*PC*/


/*/////////////////////////////
フッター
////////////////////////////*/

footer {
	width: 100%;
	height: auto;
	background-color: #666666;
	text-align: center;
}

#footer_inner {
	padding: 7% 5%;
	text-align: center;
}

.footer_link {
	display: block;
	font-size: 10px;
	line-height: 14px;
	color: var(--wht);
	letter-spacing: .5px;
	margin-bottom: 0.5rem;
}

#copyright {
	display: block;
	font-size: 10px;
	color: var(--wht);
	letter-spacing: .5px;
	margin-top: 1rem;
	margin-bottom: 0;
}

@media screen and (min-width:768px) {

	.footer_link,
	#copyright {
		font-size: 0.9rem;
	}
}

/*ipad*/

@media screen and (min-width:1024px) {
	#footer_inner {
		padding: 3% 5%;
		text-align: center;
	}

	.footer_link {
		margin-bottom: 10px;
	}

}

/*PC*/