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

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

SP用レイアウト

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

@media screen and (max-width:768px){
	/**********************************
	
	全体レイアウト、共通設定
	
	**********************************/

	/*----------------------
	記事エリアの設定
	----------------------*/
	.article{
		font-size: 4.2vw;
	}

	.article p{
		line-height: 7vw;
	}
	
	
	.pc_view{
		display: none !important;
	}
	
	.sp_view{
		display: block !important;
	}
	/**********************************
	
	上部固定ヘッダー設定
	
	**********************************/
	
	/*----------------------
	上部固定ヘッダー全体
	----------------------*/
	.header{
		height: 11vw;
	}

	/*----------------------
	ヘッダー内部をカラム幅にする
	----------------------*/
	.header_inner{
		height: 11vw;
	}


	/*----------------------
	ロゴ
	----------------------*/
	.top_logo_flame{
		width: 30%;
		height: 11vw;
	}


	/*----------------------
	電話
	----------------------*/
	.top_tel_flame{
		height: 8vw;
		width: 55%;
		margin-top: 1.6vw;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		display: flex !important;
		align-items: center;
		justify-content: center;
		border-radius: 0.5vw;
		margin-right: 4vw;
	}

	.tel_icon_flame{
		border: solid 0.3vw #333;
		width: 6vw;
		height: 6vw;
		margin-right: 1vw;
		border-radius: 9000000px;
	}

	.fa-phone{
		font-size: 4.7vw !important;
		padding-top: 0.8vw;
		color: #fff;
	}
	
	.top_phone{
		color: #333 !important;
	}
	
	.top_tel_number,.top_tel_uketuke{
		color: #333 !important;
	}

	.tel_number{
		font-size: 4vw;
		margin-bottom: 0.4vw !important;
		color: #fff;
	}

	.tel_uketuke{
		font-size: 2vw !important;
		color: #fff;
	}


	/*----------------------
	header_cv
	----------------------*/
	.top_cv_btn{
		display: none;
	}
	
	
	
	
	/*----------------------------------
	sp用下部cv 2つボタン
	----------------------------------------*/
	.sp_bottom_cv{
		display: flex;
		width: 100%;
		height: 10vw;
		position: fixed;
		bottom: 0;
		z-index: 5000;
		background-color: rgba(51,51,51,0.90);
		padding-top: 2vw;
		padding-bottom: 2vw;
	}
	
	.sp_bottom_cv_under{
		display: flex;
		justify-content: space-between;
		width: 94.7%;
		margin: 0 auto;
	}
	
	.fix_btn1,.fix_btn2,.fix_btn3{
		width: 32%;
		height: 10vw;
		display: flex;
		align-items: center;
	}
	
	.fix_btn1{
		background-color: #f37272;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		/*
		green：#00B900
		orange：#ff8400
		black：#000
		right_red：#f37272
		pink：#ff77e7
		blue：#0066FF
		blue_green：#13b5b1
		*/
	}
	
	.fix_btn2{
		background-color: #00B900;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		/*
		green：#00B900
		orange：#ff8400
		black：#000
		right_red：#f37272
		pink：#ff77e7
		blue：#0066FF
		blue_green：#13b5b1
		*/
	}
	
	.fix_btn3{
		background-color: #ff8400;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		/*
		green：#00B900
		orange：#ff8400
		black：#000
		right_red：#f37272
		pink：#ff77e7
		blue：#0066FF
		blue_green：#13b5b1
		*/
	}
	
	
	
	.fix_btn1 a,.fix_btn2 a,.fix_btn3 a{
		width: 100%;
		height: 10vw;
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
	}
	
	.sp_bottom_cv a img{
		width: 20%;
		margin-right: 0.5vw;
	}
	
	.sp_bottom_cv a p{
		font-size: 3.8vw;
		font-weight: bold;
		color: #fff;
	}
	
	.sp_bottom_cv a p i{
		font-size: 3.5vw !important;
		margin-right: 0.8vw !important;
	}
	
	
	
	
	
	/*----------------------
	ハンバーガーメニュー
	----------------------*/
	.menu-btn {
		 position: fixed;
		 top: 1.5vw;
		 right: 1vw;
		 display: flex;
		 height: 8.5vw;
		 width: 8.5vw;
		 justify-content: center;
		 align-items: center;
		 z-index: 90;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		 content: '';
		 display: block;
		 height: 0.8vw;
		 width: 6.5vw;
		 border-radius: 3px;
		 background-color: #333;
		 position: absolute;
	}
	.menu-btn span:before {
		 bottom: 8px;
	}
	.menu-btn span:after {
		 top: 8px;
	}


	#menu-btn-check:checked ~ .menu-btn span {
		 background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#menu-btn-check:checked ~ .menu-btn span::before {
		 bottom: 0;
		 transform: rotate(45deg);
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
		 top: 0;
		 transform: rotate(-45deg);
	}

	#menu-btn-check {
		 display: none;
	}
	
	
	.menu-content {
    width: 70%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(255,255,255,0.80);
    transition: all 0.5s;/*アニメーション設定*/
	margin-left: 30%;
}
	
	
	.menu-content ul {
		 padding: 10vw 4vw 0;
	}
	.menu-content ul li {
		 list-style: none;
	}
	.menu-content ul li a {
		 display: block;
		 width: 100%;
		 font-size: 4.2vw;
		font-weight: 600;
		 box-sizing: border-box;
		 color:#333;
		 text-decoration: none;
		 padding: 5vw 3vw 5vw 1.5vw;
		 position: relative;
	}

	#menu-btn-check:checked ~ .menu-content {
		 left: 0;/*メニューを画面内へ*/
	}
	
	
	
	
	
	
	
	
	/**********************************
	
	ファーストビュー設定
	
	**********************************/
	.top_img_flame{
		background-image: none;
		height: auto;
	}
	
	.top_img_in{
		width: 100%;
	}
	
	.top_img_in img{
		height: auto;
	}
	
	
	/**********************************
	
	section設定
	
	**********************************/
	.section_under_flame{
		padding: 10vw 0;
	}
	
	
	
	
	
	/**********************************
	
	cvエリア
	
	**********************************/
	.cv_under{
		padding-top: 0;
	}
	
	.cv_top_text_flame{
		margin-bottom: 2vw !important;
	}
	
	.cv_top_text_flame p{
		font-size: 5.4vw;
		text-align: center;
		line-height: 7.7vw !important;
	}
	
	.cv_top_text_flame p span{
		font-size: 6.2vw;
	}
	
	.cv_top_text_flame div{
		width: 9.5vw;
	}
	
	.cv_white_flame{
		padding: 5vw 3.5vw;
		border-radius: 1.5vw;
	}
	
	.cv_btn_retu{
		display: block;
	}
	
	.cv_tel_flame,.cv_btn{
		width: 100%;
	}
	
	.cv_long_btn{
		margin-top: 0;
	}
	
	.cv_tel_flame,.cv_btn,.cv_long_btn{
		height: 16vw;
		border-radius: 1000px !important;
		margin-top: 3.3vw;
	}
		
	.cv_tel_flame{
		margin-top: 0;
		background-color: #f37272;
		box-shadow: 0 4px 0 #690808;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
	
	.cv_tel_flame a{
		align-items: center;
		height: 16vw;
	}
	
	.cv_tel_icon_flame{
		width: 10vw;
		height: 10vw;
		border: solid 0.6vw #fff;
		margin-right: 2vw;
		margin-left: 13vw;
	}
	
	.cv_tel_icon_flame i{
		font-size: 8vw !important;
	}
	
	.cv_tel_number{
		font-size: 6.2vw;
		margin-bottom: 0 !important;
		margin-top: 1.7vw !important;
	}
	
	.cv_tel_uketuke{
		font-size: 3.4vw !important;
	}
	
	.cv_tel_flame a,.cv_btn a,.cv_long_btn a{
		background-repeat: no-repeat;
	}
	
	.cv_tel_flame a,.cv_btn a{
		background-image: url("../img/cv_fff_migi_yajirushi.png");
		background-size: 3%;
		background-position: center right 7vw;
	}
	
	
	.cv_btn a img,.cv_long_btn a img{
		width: 19%;
		margin-left: 12vw;
	}
	
	.cv_btn a p,.cv_long_btn a p{
		font-size: 6vw;
	}
	
	
	.sp_cv_text{
		display: flex !important;
		
		/*
		margin-left: 15vw !important;アイコンがない時はこちらを使用
		*/
	}
	
	.sp_cv_text_noicon{
		/*
		margin-left: 15vw !important;アイコンがない時はこちらを使用
		*/
	}
	
	.cv_long_btn a{
		padding-left: 0;
		background-image: url("../img/cv_fff_shita_yajirushi.png");
		background-size: 5%;
		background-position: center right 6.1vw;
	}
	
	
	
	
	/**********************************
	
	悩みエリア
	
	**********************************/
	
	.nayami_under ul{
		padding-bottom: 5vw;
	}
	
	.nayami_under ul div{
		display: block;
		margin-top: 0;
	}
	
	.nayami_under ul li{
		width: 100%;
		margin-top: 3.5vw;
	}
	
	.nayami_li_top{
		margin-top: 0 !important;
	}
	
	.nayami_under ul li p{
		font-size: 4.3vw;
	}
	
	.nayami_under ul li img{
		width: 7vw;
		height: auto;
	}
	
	
	
	/**********************************
	
	リスクエリア
	
	**********************************/
	.risk_retu{
		display: block;
		margin-top: 0;
		margin-bottom: 3.5vw;
	}
	
	.risk_retu img{
		display: block;
		margin: 4.5vw auto 0;
		width: 100%;
		border-radius: 2vw;
	}
	
	
	
	
	/**********************************
	
	解決エリア
	
	**********************************/
	.kaiketu_over{
		background-size: 400vw;
	}
	
	.kaiketu_under{
		padding-top: 7vw;
		padding-bottom: 25vw;
	}
	
	.under_triangle{
		border-top: 7vw solid #333;
		border-left: 13vw solid transparent;
		border-right: 13vw solid transparent;
	}
	
	
	
	
	
	/**********************************
	
	理由エリア
	
	**********************************/
	.tokuchou_09_inner{
		display: block;
		padding: 3.5vw;
	}
	
	.tokuchou_09_img{
		width: 100%;
		height: auto;
		margin-bottom: 2.5vw;
	}
	
	.tokuchou_09_inner div{
		padding-right: 0;
	}
	
	.tokuchou_09_inner div p{
		font-size: 4.2vw;
		padding-top: 3vw !important;
	}
	
	
	
	
	/**********************************
	
	料金エリア
	
	**********************************/
	
	.price_under{
		padding-bottom: 0;
	}
	
	.price_flame{
		width: 100%;
		border-radius: 2vw;
		padding-bottom: 2%;
	}
	
	.price_flame2{
		margin: 4vw 0;
	}
	
	.price_flame h3{
		font-size: 5.4vw;
		padding: 2vw 0 2.5vw;
	}
	
	.price_flame img{
		width: 7.6vw;
	}
	
	.kakaku{
		font-size: 8.4vw;
		margin-top: 1.4vw !important;
	}
	
	.en{
		font-size: 5.8vw;
	}
	
	.zeikomi{
		font-size: 3.6vw;
	}
	
	.price_text{
		font-size: 4vw;
	}
	
	.nenmatu{
		margin-bottom: -1% !important;
		line-height: 1.3 !important;
		margin-top: 2% !important;
	}

	/***
	.kakaku1{
		color: #DD0000;
	}
	****/

	.kakaku2{
		margin-top: 0.3em !important;
	}

	.kakaku3{
		margin-top: 0.2em !important;
	}
	
	.sp_price_text{
		line-height: 1 !important;
	}
	
	/**********************************
	
	お客様の声エリア
	
	**********************************/
	
	.voice_flame{
		padding: 2vw 3.5vw 3.5vw;
		border-radius: 0 0 3vw 3vw;
	}
	
	.voice_data_flame{
		display: block;
		margin-bottom: 5vw;
	}
	
	.voice_data_flame img{
		width: 100%;
		height: auto;
	}
	
	.voice_data_flame div{
		width: 100%;
	}
	
	.voice_address{
		font-size: 4.8vw;
		margin-top: 3.5vw !important;
	}
	
	.kaishamei{
		font-size: 6.8vw;
	}
	
	.voice_name{
		font-size: 4.4vw;
	}
	
	.voice_flame h4{
		font-size: 5vw;
		white-space: pre-wrap;
		line-height: 6.8vw;
		padding-bottom: 1.8vw;
		margin-bottom: 1.7vw;
	}
	
	.voice_under h3{
		margin-top: 8vw;
	}
	
	.voice_data_flame_short{
		margin-bottom: 1.5vw;
	}
	
	
	
	
	/**********************************
	
	その他サポートエリア
	
	**********************************/
	.support_retu{
		display: block;
		margin-top: 0;
	}
	
	.support_flame{
		width: 100%;
		padding: 4vw 3.5vw;
		margin-top: 5vw;
	}
	
	.support_flame_top{
		margin-top: 0 !important;
	}
	
	.support_flame h3{
		margin: 4vw 0 2.5vw;
	}
	
	
	
	
	/**********************************
	
	代表挨拶エリア
	
	**********************************/
	.daihyou_under{
		padding: 12vw 0;
	}
	
	.daihyou_flame{
		padding-bottom: 5.3vw;
	}
	
	.daihyou_flame img{
		width: 100%;
		height: auto;
	}
	
	.daihyou_ue_flame_left{
		width: 100%;
	}
	
	.daihyou_flame h3{
		font-size: 5.6vw;
		text-align: center;
		padding-bottom: 2vw;
		margin-bottom: 1.5vw;
		margin-top: 4vw;
	}
	
	
	
	/**********************************
	
	よくある質問エリア
	
	**********************************/
	
	.q_and_a_item{
		margin-bottom: 0 !important;
		margin-top: 2.2vw !important;
		border-radius: 1.5vw;
	}
	
	.q_and_a_item_top{
		margin-top: 0 !important;
	}
	
	.q_and_a_item h3{
		font-size: 4.6vw;
		line-height: 6.8vw;
		width: 80vw;
		white-space: pre-wrap;
	}
	
	.q_and_a_item span{
		font-size: 6.7vw;
		padding-bottom: 1.5vw;
	}
	
	.answer{
		padding: 0 2.5vw 3vw;
	}
	
	.answer_text{
		font-size: 4.2vw;
		line-height: 7vw !important;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/**********************************

	フォームエリア

	**********************************/
	.form_flame{
		width: 100%;
	}
	
	.form_nomal_text{
		font-size: 4.2vw;
	}

	.form_mini_title{
		font-size: 4.4vw;
	}
	
	.form_name{
		width: 35%;
	}

	.form_tel{
		width: 26.7%;
	}

	.form_long_flame{
		width: 100%;
	}

	.form_big_flame{
		height: 45vw;
	}

	.form_waku_kyoutuu{
		font-size: 4vw;
		padding: 0.8vw;
	}

	.form_btn{
		margin-top: 5vw;
		height: 18vw;/*状況次第で変える*/
		font-size: 8.6vw;
	}
	
	
	
	
	/**********************************
	
	footerエリア
	
	**********************************/
	.footer{
		height: auto;
		padding-bottom: 11vw;
	}
	
	.footer_under{
		height: auto;
		padding-top: 7vw;
	}
	
	.footer_under h2{
		font-size: 5vw;
		margin-bottom: 4vw;
	}
	
	.footer_under dl{
		margin-top: 3vw;
	}
	
	.footer_under dl dt, .footer_under dl dd{
		font-size: 4vw;
	}
	
	.footer_under dl dt{
		width: 29vw;
	}
	
	
	
}