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

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

SP用レイアウト

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

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

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

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

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


	/*----------------------
	ロゴ
	----------------------*/
	.top_logo_flame{
		width: 20%;
		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
		*/
	}

	.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: -webkit-linear-gradient(left, #ff544f, #fad126);
		background: -o-linear-gradient(left, #ff544f, #fad126);
		background: linear-gradient(to right, #ff544f, #fad126);
	}
	
	.fix_btn2{
		background: -webkit-linear-gradient(left, #00b900, #69e869);
		background: -o-linear-gradient(left, #00b900, #69e869);
		background: linear-gradient(to right, #00b900, #69e869);
	}
	
	
	.fix_btn1 a,.fix_btn2 a{
		width: 100%;
		height: 11.5vw;
		display: flex;
		align-items: center;
		justify-content: center;
		background-image: url("../img/cv_right.png");/*下のときはdown*/
		background-repeat: no-repeat;
		background-size: 8%;
		background-position: center right 3vw;box-sizing: border-box;
	}
	
	.sp_bottom_cv a img{
		width: 17%;
		margin-right: 0.5vw;
	}
	
	.sp_bottom_cv a p{
		font-size: 4.2vw;
		font-weight: bold;
		color: #fff;
	}
	
	
	
	/*----------------------
	ハンバーガーメニュー
	----------------------*/
	.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_ue_eria{
		padding-top: 5vw;
		padding-bottom: 3.5vw;
		justify-content: space-between;
	}
	
	.logo_tate_white{
		width: 18%;
		padding-left: 0;
	}
	
	.cv_ue_eria p{
		font-size: 4.6vw;
		line-height: 7vw !important;
		width: 78%;
	}
	
	.cv_white_flame{
		padding: 5vw 3.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: 14vw;
		box-shadow: 0 0.8vw 0 #ccc;
		
	}
		
	.cv_tel_flame{
		margin-top: 0;
		background-image: url("../img/btn_bg_orange_gra.png");/*----green,orange,black,right_red,pink,blue,blue_green---*/
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		border: solid 1px #ff8400;
		/*
		green：#00B900
		orange：#ff8400
		black：#000
		right_red：#f37272
		pink：#ff77e7
		blue：#0066FF
		blue_green：#13b5b1
		*/
	}
	
	.cv_tel_flame a{
		align-items: center;
		height: 14vw;
	}
	
	.cv_tel_icon_flame{
		width: 10vw;
		height: 10vw;
		border: solid 0.6vw #fff;
		margin-right: 1.5vw;
		margin-left: 7vw;
	}
	
	.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-image: url("../img/cv_white_yajirushi_shita.png");
		background-repeat: no-repeat;
		background-position: center right 6vw;
		background-size: 5%;
	}
	
	.cv_btn2 a{
		background-image: url("../img/cv_white_yajirushi.png");
		background-size: 3%;
		background-position: center right 7vw;
	}
	
	.cv_btn a img,.cv_long_btn a img{
		width: 14%;
		margin-left: 11vw;
	}
	
	.cv_btn a p,.cv_long_btn a p{
		font-size: 6vw;
	}
	
	.sp_cv_text{
		display: flex !important;
		justify-content: flex-start !important;
		/*
		margin-left: 15vw !important;アイコンがない時はこちらを使用
		*/
	}
	
	.sp_cv_text_noicon{
		/*
		margin-left: 15vw !important;アイコンがない時はこちらを使用
		*/
	}
	
	.cv_btn a,.cv_long_btn a{
		justify-content: center;
	}
	
	
	
	
	/**********************************
	
	悩みエリア
	
	**********************************/
	.nayami_over{
		background-image: url("../img/sp_nayami_bg.jpeg");
	}
	
	.nayami_under{
		padding-top: 10vw !important;
	}
	
	.nayami_under ul{
		display: block;
	}
	
	.nayami_under ul li{
		width: 100%;
		height: auto;
		margin-left: 0 !important;
		padding: 1.5vw 2vw;
		border: solid 0.5vw #a19570;
		margin-top: 2vw;
	}
	
	.nayami_under ul li p{
		font-size: 4.4vw;
		line-height: 7.3vw !important;
	}
	
	.nayami_under ul li p span{
		font-size: 5.6vw;
	}
	
	.nayami_under ul li img{
		width: 10%;
		padding-right: 3vw;
	}
	
	.nayami_inner{
		display: block;
	}
	
	.nayami_bottom_text{
		width: 100%;
		height: auto;
		margin-top: 8vw;
	}
	
	
	
	
	
	/**********************************
	
	解決エリア
	
	**********************************/
	
	.kaiketu_under{
		padding-top: 3vw;
		padding-bottom: 8vw;
	}

	.movie_top_text{
		margin: 6.5vw 0 4vw;
	}
	
	.movie{
		height: 56.8vw;
		padding: 4vw;
	}
	
	.under_triangle{
		border-top: 7vw solid #fff;
		border-left: 13vw solid transparent;
		border-right: 13vw solid transparent;
	}
	
	.kaiketu2_under{
		padding-top: 7vw;
		padding-bottom: 9vw;
	}
	
	.kaiketu2_img_flame{
		display: block;
	}
	
	.kaiketu2_img_flame img{
		width: 100%;
		height: auto;
		display: block;
		margin-top: 3vw;
	}
	
	.kaiketu2_img_top{
		margin-top: 0 !important;
	}
	
	.triangle_color1{
		border-top: 7vw solid #eee;
	}
	
	.kaiketu3_under{
		padding-top: 7vw;
	}
	
	.kaiketu3_under h3{
		font-size: 5.8vw;
		margin-bottom: 7vw;
	}
	
	.kaiketu3_under p{
		font-size: 4.2vw;
		line-height: 7vw;
		white-space: pre-wrap;
	}
	
	
	
	
	
	/**********************************
	
	理由エリア
	
	**********************************/
	.riyuu_over{
		background-image: url("../img/sp_riyuu_bg.jpeg");
	}
	
	.riyuu_img{
		width: 100%;
		height: auto;
		border-radius: 2vw 2vw 0 0;
	}
	
	.riyuu_text_flame{
		position: static;
		width: 100%;
		height: auto;
		border-radius: 0 0 2vw 2vw;
		padding: 5vw 3.5vw 3.5vw;
	}
	
	.riyuu_text_flame h3 img{
		margin-bottom: 3.5vw !important;
	}
	
	.riyuu_text_flame p{
		font-size: 4.2vw;
		line-height: 7vw !important;
	}
	
	.riyuu_flame2{
		margin: 5.5vw 0;
	}
	
	
	
	
	/**********************************
	
	事例エリア
	
	**********************************/
	.jirei_under{
		padding-bottom: 0;
	}
	
	.jirei_h2_shita_text{
		text-align: left;
		line-height: 7vw !important;
	}
	
	.scroll_content{
		margin-top: 5.5vw;
		margin-bottom: 10vw;
	}
	
	.scroll_content li{
		width: 70%;
	}
	
	.scroll_content li img{
		height: auto;
		margin-bottom: 0.3vw;
	}
	
	.scroll_content li p{
		font-size: 5vw;
		line-height: 8.2vw !important;
	}
	
	.scroll_content::-webkit-scrollbar {
		height: 2.2vw; /* スクロールバーの高さ */
	}
	
	
	
	
	
	/**********************************
	
	お客様の声エリア
	
	**********************************/
	.voice_07_inner{
		margin-top: 6vw;
	}
	
	.voice_07_fukidashi_icon{
		width: 18vw;
		height: 15.6vw;
		margin-right: 3vw;
	}
	
	.voice_07_title_flame{
		padding-bottom: 2.5vw;
		justify-content: space-between;
	}
	
	.voice_07_title_flame h3{
		font-size: 5.8vw;
		line-height: 8.4vw;
		white-space: pre-wrap;
		width: 75%;
	}
	
	.voice_07_text_aria_ue{
		display: block;
	}
	
	.voice_07_text_aria_ue img{
		margin: 0 auto;
		display: block;
		width: 40vw;
		height: 40vw;
		margin-bottom: 4vw;
	}
	
	.voice_07_text_aria_ue{
		margin-top: 5vw;
	}
	
	.voice_07_text{
		font-size: 4.2vw;
		margin-bottom: 0 !important;
		line-height: 7vw !important;
	}
	
	.voice_07_text_ue{
		width: 100%;
		margin-bottom: 0 !important;
	}
	
	.voice_07_text_shita{
		margin: 7vw 0 !important;
	}
	
	.voice_07_human_data{
		font-size: 4.6vw;
		padding-bottom: 2vw;
	}
	
	
	
	
	
	/**********************************
	
	パーツエリア
	
	**********************************/
	.parts_under_shita_text{
		line-height: 7vw !important;
	}
	
	.parts_under h3{
		font-size: 6.6vw;
		padding-bottom: 2.5vw;
		margin-bottom: 7vw;
	}
	
	
	
	
	
	/**********************************
	
	料金エリア
	
	**********************************/
	
	.ryoukin_under p{
		font-size: 4.2vw;
		line-height: 7vw !important;
	}
	
	.ryoukin_under a{
		font-size: 5vw;
	}
	
	.set_menu_h3{
		font-size: 6.7vw;
		line-height: 8.5vw;
		margin-top: 15vw;
		margin-bottom: 4vw;
	}
	
	.sp_set_menu{
		display: flex;
		justify-content: space-between;
	}
	
	.sp_set_menu img{
		width: 48%;
	}
	
	
	/**********************************
	
	よくある質問エリア
	
	**********************************/
	
	.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.7vw;
		line-height: 8vw;
		width: 85vw;
		white-space: pre-wrap;
	}
	
	.q_and_a_item span{
		font-size: 6.7vw;
		padding-bottom: 1.5vw;
	}
	
	.answer{
		font-size: 4.2vw;
		line-height: 7vw;
	}
	
	
	
	
	/**********************************
	
	サロン情報エリア
	
	**********************************/
	.salon_flame{
		padding: 6vw 4vw;
	}
	
	.salon_img{
		width: 100%;
		height: auto;
	}
	
	.salon_under dl{
		width: 100%;
		margin-top: 3.5vw;
		padding-bottom: 1.5vw;
	}
	
	.salon_under dl dt{
		width: 21vw;
		font-size: 4vw;
	}
	
	.salon_under dl dd{
		font-size: 4vw;
	}
	
	iframe{
		height: 60vw;
	}

	.last_banner{
		box-shadow: 0 0 1vw #ccc;
		margin-top: 7vw;
	}
	
	
	
	
	
	
	/**********************************

	フォームエリア

	**********************************/
	.form_over{
		background-image: url("../img/sp_form_bg.jpeg");
		background-position: center top 0.5vw;
	}
	
	.form_h2_shita_text{
		text-align: left;
		line-height: 7vw !important;
	}
	
	.form_flame{
		margin-top: 3.5vw;
		padding: 6vw 4vw;
	}
	
	.tab_view{
		display: none;
	}
	
	.form_nomal_text{
		font-size: 4.2vw;
		line-height: 7vw !important;
	}

	.form_mini_title{
		font-size: 4.2vw;
	}
	
	.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.5vw;
		box-shadow: 0 1vw 0 #ccc;
	}
	
	.form_nen{
		width: 30%;
	}
	
	
	/**********************************
	
	footerエリア
	
	**********************************/
	.footer{
		height: 18vw;
		padding-bottom: 13vw;
	}
	
	.footer_under{
		height: 18vw;
	}
	
	.footer_link{
		margin-top: 4.4vw;
	}
	
	.footer_link a,.footer_link p,.small{
		font-size: 3.3vw;/*2つ以下の時は3.5vw*/
	}
	
	.small{
		padding-top: 3vw;
	}
	
	
	
}