@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;
		border-bottom: solid 1px #ccc;
	}

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


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


	/*----------------------
	電話
	----------------------*/
	.top_tel_flame{
		height: 8vw;
		width: 55%;
		margin-top: 1.3vw;
		background-image: url("../img/btn_bg_green_gra.png");/*----green,orange,black,right_red,pink,blue,blue_green---*/
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		display: flex;
		align-items: center;
		justify-content: center;
		border: solid 1px #00B900;
		border-radius: 0.5vw;
		/*
		green：#00B900
		orange：#ff8400
		black：#000
		right_red：#f37272
		pink：#ff77e7
		blue：#0066FF
		blue_green：#13b5b1
		*/
		display: none !important;
	}

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

	.fa-phone{
		font-size: 4.8vw !important;
		padding-top: 0.8vw;
		color: #fff;
	}

	.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: 11.5vw;
		position: fixed;
		bottom: 0;
		z-index: 5000;
	}
	
	.fix_btn1,.fix_btn2{
		width: 50%;
		height: 11.5vw;
	}
	
	.fix_btn1{
		background: linear-gradient(to right, #12A73B, #12A7A2);
	}
	
	.fix_btn2{
		background: linear-gradient(to right,#0073C2,#7239A2);
	}
	
	
	.fix_btn1 a,.fix_btn2 a{
		width: 100%;
		height: 11.5vw;
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
	}
	
	
	.sp_bottom_cv a p{
		font-size: 4.6vw;
		font-weight: bold;
		color: #fff;
	}
	
	.fix_btn1 a i,.fix_btn2 a i{
		color: #fff;
		margin-right: 1.2vw !important;
	}
	
	
	.fix_btn1 a i{
		font-size: 4.2vw !important;
		padding-top: 1.8vw !important;
	}
	
	.fix_btn2 a i{
		font-size: 4.2vw !important;
		padding-top: 0.3vw !important;
	}
	
	.fix_btn1 a p,.fix_btn1 a p i{
		margin-top: -2.7vw !important;
	}
	
	
	.fix_btn1 .cv_btn2_uketuke{
		font-size: 2.6vw !important;
		margin-top: -4vw !important;
		color: #fff;
		text-align: center;
	}
	
	
	/*----------------------
	ハンバーガーメニュー
	----------------------*/
	.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: 60%;
    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: 40%;
}
	
	
	.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;
	}
	
	
	
	/**********************************

	悩みエリア

	**********************************/
	.nayami_over{
		background-image: url("../img/sp_nayami_bg.png");
	}

	.nayami_under{
		padding-top: 7.5vw;
		padding-bottom: 22vw;
	}

	.nayami_img{
		margin-top: 6vw;
	}
	
	
	.nayami_under a{
		font-size: 5.2vw;
		border-radius: 1vw;
		padding: 1.2vw 0;
		margin-bottom: 6vw;
	}
	
	
	
	/**********************************

	解決エリア

	**********************************/
	.kaiketu_under{
		padding-top: 6vw;
	}
	
	.sp_h2_kaiketu{
		width: 82%;
		display: block;
		margin: 0 auto;
	}
	
	
	.whats_bro_room_flame{
		padding: 6vw;
		margin: 7vw 0;
		background-size: 35%;
		background-position: bottom 6vw right 6vw;
	}
	
	.whats_bro_room_flame h3{
		width: 60vw;
		margin-bottom: 4.5vw;
	}
	
	.whats_bro_room_flame p{
		font-size: 4.2vw;
		white-space: pre-wrap;
		line-height: 1.8;
		text-shadow: 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6, 0 0 3px #EAF1F6;
	}
	
	.kaiketu_shita_retu{
		display: block;
	}
	
	.kaiketu_shita_flame{
		width: 100%;
	}
	
	.kaiketu_shita_flame h4 span{
		font-size: 4.4vw;
	}
	
	.kaiketu_shita_flame h4{
		font-size: 7vw;
		padding: 0.2vw 0 2.4vw;
		border-radius: 2.55vw 2.55vw 0 0;
	}
	
	.kaiketu_shita_flame div{
		border: solid 0.8vw #3077b5;
		border-radius: 0 0 2.25vw 2.25vw;
		padding: 0 3vw 3vw;
	}
	
	.kaiketu_shita_img{
		margin: 3vw 0;
	}
	
	.miniblue_sankaku{
		width: 10vw;
	}
	
	.sp_kaiketu_shita_flame2{
		margin: 5vw 0;
	}
	
	.kaiketu_flame{
		margin-top: 7vw;
		padding: 5vw;
	}
	
	.kaiketu_ue_img_flame img{
		width: 38.2vw;
		height: 38.2vw;
	}
	
	.shokihiyou{
		width: 100%;
		margin-bottom: 3vw;
	}
	
	.kome1_text{
		white-space: pre-wrap;
		text-align: left;
	}
	
	
	
	
	/**********************************
	
	初期投資不要エリア
	
	**********************************/
	.shokitoushi_under{
		padding-top: 0;
	}
	
	.under_triangle{
		border-top: 7vw solid #3077B5;
		border-left: 11vw solid transparent;
		border-right: 11vw solid transparent;
	}
	
	.shokitoushi_text{
		font-size: 5vw;
		text-align: left;
	}
	
	
	.shokitoushi_icon_flame{
		margin-top: 7vw;
		margin-bottom: 2vw;
	}
	
	
	/**********************************

	2つのプランエリア

	**********************************/
	.h2_BRO-ROOM_title{
		height: 18vw;
	}
	
	.plan2_retu{
		display: block;
		margin-top: 7vw;
	}
	
	.plan2_flame{
		width: 82%;
		margin: 0 auto;
	}
	
	.plan2_inner{
		padding: 0 3vw 4vw;
		border-radius: 0 0 2vw;
	}
	
	.plan_mei{
		border-radius: 1vw;
		border: solid 2px #3177B5;
		padding: 2vw;
		margin-bottom: 2.5vw;
	}
	
	.plan_mei p{
		font-size: 4.2vw;
	}
	
	.plan_mei span{
		font-size: 2.6vw;
		margin-top: 1.2vw;
	}
	
	.plan2_text{
		font-size: 3.8vw;
		padding-left: 0 !important;
	}
	
	.plan_sankaku{
		width: 11vw;
		margin: 3vw auto;
	}
	
	.plan2_bottom_text{
		font-size: 5vw;
	}
	
	
	
	/**********************************
	
	出口戦略エリア
	
	**********************************/
	.deguchi_inner_flame{
		padding: 5vw 3.5vw;
		border-radius: 2vw;
	}
	
	.kouka_h2_shita_text{
		font-size: 4vw;
		white-space: pre-wrap;
		margin-top: 2.5vw !important;
	}
	
	.deguchi_retu{
		display: block;
	}
	
	.deguchi_flame{
		width: 100%;
		padding: 3.5vw;
		border-radius: 1.6vw;
	}
	
	.deguchi_flame h3{
		font-size: 6vw;
		margin: 4.8vw auto 2.7vw;
	}
	
	.deguchi_flame p{
		font-size: 4.2vw;
		line-height: 1.8 !important;
	}
	
	.triple_yajirushi{
		width: 13.5vw;
		margin: 5.5vw auto 4.8vw;
	}
	
	
	
	
	/**********************************

	導入事例エリア

	**********************************/
	.jirei_over{
		overflow: hidden;
	}
	
	.jirei_flame{
		padding: 5vw 3vw;
		border-radius: 2vw;
		margin-top: 6vw;
	}
	
	.jirei_flame h3{
		display: block;
	}
	
	.jirei_flame h3 p{
		
	}
	
	.jirei_title_nunber{
		font-size: 5.2vw !important;
		text-align: center;
		padding: 1vw 0 1vw !important;
		margin-right: 0 !important;
		margin-bottom: 3vw !important;
	}
	
	.jirei_title_text{
		font-size: 5vw !important;
	}
	
	.jirei_title_text span{
		font-size: 3.6vw;
	}
	
	.jirei_flame h4{
		font-size: 5.2vw;
		padding-bottom: 2vw;
		margin-top: 6vw;
	}
	
	.rinobe_naiyou{
		display: block;
	}
	
	.rinobe_zu{
		margin: 0 auto;
		display: block;
	}
	
	.rinobe_zu1{
		margin-top: 5vw;
		width: 90%;
	}
	
	.rinobe_zu2{
		margin-top: 3vw;
		width: 80%;
	}
	
	.rinobe_zu3{
		margin-top: 3vw;
		width: 82%;
	}
	
	.rinobe_naiyou_text i{
		font-size: 4.4vw;
		margin-right: 0.75vw;
		padding-top: 0.4vw;
	}
	
	.rinobe_naiyou_text p, .rinobe_naiyou_text span{
		font-size: 4.2vw;
	}
	
	.rinobe_naiyou_text{
		margin-top: 2.5vw;
	}
	
	.rinobe_naiyou_text div{
		margin-bottom: 1.5vw;
	}
	
	.rinobe_naiyou_text span{
		border-radius: 1vw;
	}
	
	.scroll_content{
		margin-top: 6vw;
	}
	
	.scroll_content li{
		width: 82.5vw;
	}
	
	.scroll_content li img{
		height: 44.5vw;
	}
	
	.scroll_content::-webkit-scrollbar {
		height: 2.2vw; /* スクロールバーの高さ */
		padding-top: 3vw !important;
	}
	
	.scroll_content2{
		margin-top: 3vw !important;
	}
	
	.hyou{
		width: 142% !important;
		height: auto !important;
	}
	
	.jirei_bottom_text{
		display: block;
		text-align: center;
		font-size: 5vw;
		line-height: 1.3 !important;
		margin-top: 5vw !important;
	}
	
	.jirei_bottom_text span{
		font-size: 7vw;
		padding-bottom: 0 !important;
	}
	
	
	
	.jirei_botttom_btn a{
		font-size: 6.4vw;
		padding: 5vw 0 5.2vw;
		margin-top: 7vw;
		background-size: 2.1%;
		background-position: center right 7vw;
	}
	
	
	
	.slider-container {
		margin-top: 7vw;
	}
	
	
	
	/**********************************
	
	効果エリア
	
	**********************************/
	.kouka_retu{
		display: block;
		margin-top: 7vw;
	}
	
	.kouka_flame{
		width: 60%;
		margin: 0 auto;
	}
	
	.kouka_flame img{
		margin-bottom: 1.2vw;
	}
	
	.kouka_flame p{
		font-size: 4.2vw;
	}
	
	.kouka_flame p span{
		font-size: 3.4vw;
	}
	
	
	
	
	
	/**********************************
	
	メリットエリア
	
	**********************************/
	.merit_retu{
		display: block;
	}
	
	.merit_woman{
		width: 50%;
		height: auto;
		margin: 0 auto 6vw;
		display: block;
	}
	
	.merit_flame{
		width: 100%;
		height: auto;
	}
	
	.merit_flame img{
		width: 22%;
	}
	
	.merit_flame div{
		border-radius: 0 2vw 2vw 0;
	}
	
	.merit_flame div h3{
		font-size: 5.6vw;
		margin-top: 3vw;
		margin-bottom: 1vw;
	}
	
	.merit_flame div p{
		font-size: 4.1vw;
	}
	
	.merit_flame2{
		margin: 3.5vw 0;
	}
	
	
	
	/**********************************

	cvエリア

	**********************************/
	.cv_over{
		padding-top: 4vw;
	}

	.cv_under{
		margin: 3.5vw auto 10vw;
	}
	
	
	.cv_under{
		display: block;
		border-radius: 2vw;
		box-sizing: border-box;
		padding: 5vw;
	}
	
	.cv_under a{
		width: 100%;
		padding: 4vw 0 4.6vw;
	}
	
	.cv_btn{
		margin-left: 0;
	}
	
	.cv_btn p{
		font-size: 6vw;
	}
	
	.cv_under a img{
		display: none;
	}
	
	.fa-phone{
		font-size: 6vw !important;
	}
	
	.cv_btn2{
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 500px;
		height: auto;
		background: linear-gradient(to right, #12A73B, #12A7A2);
	}
	
	
	.cv_btn2 p{
		font-size: 6vw;
		font-weight: bold;
		color: #fff;
		text-align: center;
		line-height: 1 !important;
	}
	
	.cv_btn2_uketuke{
		font-size: 3.8vw !important;
		font-weight: 400 !important;
		line-height: 1 !important;
		margin-top: 1.5vw !important;
	}
	
	
	
	
	/**********************************
	
	流れエリア
	
	**********************************/
	.nagare_flame_top{
		margin-top: 6vw;
	}
	
	.nagare_title_flame p{
		white-space: pre-wrap;
		font-size: 4.2vw;
	}
	
	.nagare_number{
		padding: 0 2vw !important;
		border-radius: 2vw 0 0 2vw;
	}
	
	
	.nagare_flame_top .nagare_number,.nagare_flame_top .nagare_title, .nagare_flame_top .nagare_text_flame{
		height: 41vw;
	}
	
	.nagare_flame2 .nagare_number,.nagare_flame2 .nagare_title, .nagare_flame2 .nagare_text_flame{
		height: 34vw;
	}
	
	.nagare_flame3 .nagare_number,.nagare_flame3 .nagare_title, .nagare_flame3 .nagare_text_flame{
		height: 34vw;
	}
	
	.nagare_flame4 .nagare_number,.nagare_flame4 .nagare_title, .nagare_flame4 .nagare_text_flame{
		height: 48vw;
	}
	
	.nagare_text_flame{
		border-radius: 0 2vw 2vw 0;
	}
	
	.nagare_text_flame p{
		font-size: 4vw;
	}
	
	.nagare_title{
		width: 26vw;
		box-sizing: border-box;
		padding: 0 2vw !important;
	}
	
	.fa-angle-down{
		font-size: 8.5vw !important;
	}
	
	.nagare_bottom_text{
		font-size: 5vw;
		white-space: pre-wrap;
		text-align: left;
		margin-top: 7.5vw !important;
	}
	
	
	
	/**********************************
	
	よくある質問エリア
	
	**********************************/
	
	.q_and_a_item{
		margin-bottom: 0 !important;
		margin-top: 2.2vw !important;
	}
	
	.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: 3vw 2.5vw;
	}
	
	.answer_text{
		font-size: 4.2vw;
		line-height: 7vw !important;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/**********************************

	実績エリア

	**********************************/
	.jisseki_white_flame_top_text{
		font-size: 4.2vw;
		text-align: left;
		white-space: pre-wrap;
	}
	
	.jisseki_white_flame{
		background-image: none;
		border-radius: 2vw;
		padding-bottom: 5vw;
	}
	
	.jisseki_dl_retu{
		display: block;
	}
	
	.jisseki_white_flame dt, .jisseki_white_flame dd{
		line-height: 1.8;
	}
	
	.jisseki_dl_retu, .adress{
		font-size: 4vw;
	}
	
	.jisseki_dl_retu dt,.adress{
		margin-top: 4vw;
	}
	
	.mini_text{
		font-size: 3.5vw;
		background-size: 27%;
		background-position: bottom right 0;
	}
	
	.kaisha_link{
		font-size: 5vw;
		border-radius: 1vw;
		padding: 2.4vw 0;
		margin-top: 8vw;
	}
	
	
	/**********************************
	
	条件エリア
	
	**********************************/
	.jouken_under{
		padding-top: 0;
	}
	
	.jouken_top_text{
		font-size: 4.8vw;
		line-height: 1.8 !important;
	}
	
	.jouken_btn{
		font-size: 4.2vw;
		border: solid 1px #3177B5;
		line-height: 1.3 !important;
		padding: 2.6vw 0 2.8vw;
		border-radius: 1.5vw;
	}
	
	.tab_riyoujouken{
		display: none;
	}
	
	.sp_riyoujouken{
		display: block;
	}
	
	
	
	
	/**********************************
	
	footerエリア
	
	**********************************/
	.footer{
		height: 13vw;
		padding-bottom: 3vw;
	}
	
	.footer_under{
		height: 13vw;
	}
	
	.footer_link{
		margin-top: 4.4vw;
	}
	
	.footer_link a,.footer_link p,.small{
		font-size: 3vw;/*2つ以下の時は3.5vw*/
	}
	
	.small{
		padding-bottom: 13vw;
		padding: 3vw 0 15vw;
	}
	
	
	
	/**********************************

	別ページ

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

	.betu_nomal_text{
		font-size: 4.2vw;
	}

	.betu_big_text{
		font-size: 5vw;
		line-height: 1.6 !important;
	}

	.betu_big_text span{
		font-size: 7vw;
	}

	.betu_under dl{
		padding-bottom: 1vw;
		margin-top: 2vw;
		display: block;
		line-height: 1.4;
	}

	.betu_dl_top{
		margin-top: 3vw !important;
	}

	.betu_under dl dt{
		font-size: 4.2vw;
		width: 31vw;
	}
	
	.betu_under dl dd{
		white-space: pre-wrap;
	}
	
}