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

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

PC用レイアウト

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

/*----------------------
共通設定
----------------------*/
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body{
	color: #333;
	font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
	font-feature-settings: "palt";
	letter-spacing: -0.05em;
		white-space: nowrap;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	background-color: #f2f2f2;
}

a:hover{
	cursor: pointer;
}

h2 img{
	width: 100%;
	height: auto;
}

.img_w100{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/*----------------------
ブラウザのCSSをリセット
----------------------*/
p{
	margin: 0 !important;
	padding: 0 !important;
}


/*----------------------
セクションエリア共通設定
----------------------*/
section{
	clear: both;
	overflow: auto;
}


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

全体レイアウト、共通設定

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

/*----------------------
全体エリアの背景設定
----------------------*/
.main{
	width: 100%;
	height: auto;
	background-image:url(../img/all_bg.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-attachment: fixed;
	background-size: cover;
	padding-bottom: 60px;
}

.sp_bottom_cv{
	display: none;
}

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

.article p{
	line-height: 1.8;
}

.sp_view{
	display: none !important;
}
/*----------------------
記事エリア、ファーストビューの内幅設定
----------------------*/
.top_img_in{
	width: 952px;
	margin: 0 auto;
}


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

上部固定ヘッダー設定

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

/*----------------------
上部固定ヘッダー全体
----------------------*/
.header{
	display: none;
}


/*--------------------------------
ヘッダー内の画像が常に100%になるように
---------------------------------*/
.top_logo_flame img,.top_tel_flame img,.top_cv_btn img{
	width: 100%;
}


/*---------------------------------------------------------------------
	応募fix_btn
----------------------------------------------------------------------*/
.buy_fix_btn{
	width: 140px;
	height: 140px;
	position: fixed;
	bottom: 60px;
	right: 60px;
	z-index: 10000000;
	background-color: #008B8A;
	border-radius: 900px !important;
	background-position: bottom;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 2px 2px 0px #003D3D;
}

.buy_fix_btn p{
	text-align: center;
	font-weight: bold;
	color: #fff;
	font-size: 2.5rem;
	line-height: 1.2 !important;
	padding-top: 7px !important;
}

.buy_fix_btn:hover{
	opacity: 0.7;
	cursor: pointer;
}


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

ファーストビュー設定

**********************************/
.top_img_flame{
	background-image: url("../img/pc_fv_out.jpeg");
	background-repeat: no-repeat;
	background-position: center top;
	height: auto;
}

.top_img_in{
	width: 620px;
	border-right: solid 1px #ccc;
	border-left: solid 1px #ccc;
	margin: 0 auto;
}

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


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

section設定

**********************************/
.section_over_flame{
	width: 620px;
	height: auto;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	margin: 0 auto;
	border-right: solid 1px #ccc;
	border-left: solid 1px #ccc;
	background-color: #fff;
}

.section_under_flame{
	width: 580px;
	height: auto;
	margin: 0 auto;
	padding: 55px 0;
}







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

cvエリア

**********************************/
.cv_over{
	background-image: url(../img/cv_bg.jpg);
}

.cv_under{
	padding-top: 0 !important;
	padding-bottom: 65px;
}

.cv_ue_eria{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 35px;
	padding-bottom: 30px;
}

.cv_ue_eria p{
	font-size: 4.4rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.3 !important;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 0 0 5px #333;
	text-align: center;
}

.cv_white_flame{
	width: 100%;
	height: auto;
	padding:  25px 25px 34px;
	background-color: #fff;
	box-sizing: border-box;
	border-radius: 10px;
}

.cv_ue_img{
	margin-bottom: 17px;
}

.cv_white_flame p{
	white-space: pre-wrap;
	line-height: 2 !important;
}

.cv_white_flame p span{
	font-weight: bold;
}

.cv_p_gold{
	color: #B49C37;
}

.cv_white_flame a{
	width: 100%;
	height: 110px;
	border-radius: 900px;
	background-color: #008b8b;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4.5rem;
	font-weight: bold;
	color: #fff;
	box-shadow: 0 4px 0 #003d3d;
	margin-top: 27px;
	background-image: url(../img/cv_fff_migi_yajirushi.png);
	background-repeat: no-repeat;
	background-size: 2.4%;
	background-position: center right 40px;
}

.cv_white_flame a:hover{
	opacity: 0.7;
}

/*******反射ボタン設定*********/

.hansha_btn {
	display: block;
	position: relative;
	overflow: hidden;
	transition: 300ms;
}
.hansha_btn::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
	transition: 300ms;
	animation: shinyshiny 2s ease-in-out infinite;
}
.hansha_btn:hover {
	-webkit-transform: translateY(3px);
}
@-webkit-keyframes shinyshiny {
	0% {
	-webkit-transform: scale(0) rotate(45deg);
	opacity: 0;
	}
	80% {
	-webkit-transform: scale(0) rotate(45deg);
	opacity: 0.5;
	}
	81% {
	-webkit-transform: scale(4) rotate(45deg);
	opacity: 1;
	}
	100% {
	-webkit-transform: scale(50) rotate(45deg);
	opacity: 0;
	}
}


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

悩みエリア

**********************************/
.nayami_over{
	background-image: url(../img/nayami_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}

.nayami_under{
	padding-bottom: 47px;
}

.nayami_under ul{
	background-image: url(../img/nayami_ul_bg.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding:  35px 40px 45px;
	margin-top: 40px;
}

.nayami_under ul li{
	font-size: 2.2rem;
	white-space: pre-wrap;
	line-height: 1.4;
	background-image: url(../img/nayami_check.png);
	background-size: 3%;
	background-repeat: no-repeat;
	background-size: 6%;
	background-position: center left;
	padding-left: 45px;
	margin-top: 30px;
}

.li_top{
	margin-top: 0px !important;
}

.nayami_under ul li span{
	font-weight: bold;
	color: #4B0082;
}








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

解決エリア

**********************************/
.kaiketu2_over{
	background-color: #7b2eb1;
}

.kaiketu2_under{
	padding-top: 18px;
}

.kaiketu2_under p{
	white-space: pre-wrap;
	color: #fff;
}






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

理由エリア

**********************************/
.riyuu_over{
	background-image: url(../img/riyuu_bg.jpg);
}

.riyuu_under{
	
}

h2 img{
	margin: 0 auto 40px;
	display: block;
	width: auto;
}

.riyuu_under h2 img{
	height: 140px;
}

.riyuu_img{
	border-radius: 10px 10px 0 0;
	margin-top: 25px;
}

.riyuu_img_top{
	margin-top: 0 !important;
}

.riyuu_text_flame{
	width: 100%;
	height: auto;
	background-color: #fff;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 0 0 10px 10px;
}

.riyuu_text_flame h3{
	margin-bottom: 14px;
}

.riyuu_text_flame p{
	white-space: pre-wrap;
}

.riyuu_text_flame p span{
	font-weight: bold;
	color: #b49c37;
}





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

変化エリア

**********************************/
.henka_over{
	background-color: #eeebf6;
}

.henka_under{
	padding-bottom: 10px;
}

.h2_nomal_img{
	height: 146px;
}

.henka_under .h2_nomal_img{
	margin-bottom: 27px;
}

.henka_img{
	margin-top: 23px;
}

.henka_img_top{
	margin-top: 0 !important;
}

.maru3{
	width: auto;
	height: 50px;
	display: block;
	margin: 25px auto;
}




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

お客様の声エリア

**********************************/
.voice_over{
	background-image: url(../img/voice_bg.webp);
	background-size: contain;
	background-color: #efebf6;
}

.voice_under{
	
}

.voice_text_img{
	margin-bottom: 131px;
}

.voice_under p{
	font-size: 1.7rem;
	white-space: pre-wrap;
	margin-top: 3.5% !important;
}





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

収入モデルエリア

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

.shuunyuu_over{
	background-image: url(../img/shuunyuu_bg.jpg);
}

.shuunyuu_flame{
	width: 100%;
	height: auto;
	padding: 30px 30px 15px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 10px;
	margin-top: 30px;
}

.shuunyuu_flame_top{
	margin-top: 0 !important;
}

.shuunyuu_img{
	border-radius: 10px;
}

.shuunyuu_flame h3{
	text-align: center;
	font-size: 3.3rem;
	color: #7B33AC;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 15px;
	border-bottom: solid 1px #7B33AC;
	padding-bottom: 13px;
}

.shuunyuu_en{
	font-size: 4.2rem;
	font-weight: bold;
	color: #b69b44;
}

.shuunyuu_en span{
	font-size: 2.9rem;
	font-weight: bold;
}

.shuunyuu_kome{
	color: #fff;
	margin-top: 12px !important;
	text-shadow: 0 0 8px #4A0B83;
}



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

流れエリア

**********************************/
.nagare_over{
	background-color: #EFEBF6;
}

.nagare_img{
	background-color: #fff;
	box-sizing: border-box;
	padding: 35px 20px;
	border-radius: 10px;
}

.nagare_under p{
	margin-top: 3.5% !important;
}



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

よくある質問エリア

**********************************/
.shitumon_over{
	background-image: url(../img/shitumon_bg.webp);
}

#q_and_a_list{
	width: 100%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.q_and_a_item{
	margin-top: 17px;
	cursor:pointer;
	text-align: left;
	background-color: rgba(255,255,255,0.90);
	border-radius: 10px;
}

.q_and_a_item_top{
	margin-top: 0 !important;
}

.q_and_a_item h3{
	font-size: 2.7rem;
	font-weight: 500;
	color: #333;
	padding: 20px 0 20px 25px;
	line-height: 1.4;
}

.q_and_a_item span{
	font-size:4.6rem;
	color: #333;
	font-weight: 500;
	padding-bottom: 12px;
	margin-left: auto;
	margin-right: 30px;
}

.question_text{
	display: flex;
	align-items: center;
}

.answer{
	font-size: 2rem;
	padding: 0 25px 25px;
	display:none;
	color: #333;
}

.answer_text{
	white-space: pre-wrap;
}



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

採用エリア

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

.saiyou_over{
	background-image: url(../img/saiyou_bg.jpg);
}

.saiyou_under p{
	white-space: pre-wrap;
}

.saiyou_under_logo{
	width: 37%;
	height: auto;
	margin-left: auto;
	display: block;
	margin-top: 28px;
}





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

footerエリア

**********************************/
.footer{
	width: 100%;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to bottom, #b47adf, #4b0082);
}

.footer_under{
	width: 952px;
	height: 140px;
}


.footer_link{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 33px;
}

.footer_link a,.footer_link p,.small{
	color: #fff;
	font-size: 1.8rem;
}

.footer_link a:hover{
	text-decoration: underline;
}

.footer_link p{
	margin: 0 25px !important;
}

.small{
	text-align: center;
	display: block;
	padding-top: 18px;
}

.last_footer_text{
	color: #fff;
	text-align: center;
	font-size: 1.3rem;
	margin-top: 10px !important;
}
