@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Oswald:400,500,600,700,800&display=swap);

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {margin:0; padding:0;font-weight: 400;}table { border-collapse:collapse; border-spacing:0;}fieldset,img { border:0; vertical-align:bottom;}address,caption,cite,scode,dfn,em,strong,th,var {font-style:normal; font-weight:normal;}ol,ul,li { list-style:none; padding:0; margin:0;}caption,th { text-align:left;}h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:400;}q:before,q:after {content:'';}abbr,acronym { border:0;}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html,body {
	width: 100%;
	overflow-x: hidden;
	padding: 0;
}

:root {
    --white: #fff;
    --gray: #818181;
    --light-gray: #f5f5f5;
    --black: #333;
    --green: #4f914f;
    --brown: #685a32;
    --pink: #ca5495;
    --purple: #9058a7;
    --light-purple: #f4eff7;
    --navy: #2e5974;
    --light-navy: #546871;
    --blue: #178fbc;
    --light-blue: #44b3e1;
    --orange: #FF801E;
    --yellow: #fbcc3c;
    --red: #c35050;
    --base: #f1efe7;
    --accent: #c8aa64;
    --base-border: #ddd8d1;
}

body {
    font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #333;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 1px;
    word-break: break-all;
    background-color: #fff;
}

p {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    letter-spacing: 1.2px;
}

.flex_in {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.mb {
    display: none !important;
}

.cover_gray {
    background: #f7f7f7;
}

/* layout / title
--------------------------------------------*/

:root {
    --blue: #1b75b2;
    --orange: #ff7100;
}
section {
    padding: 120px 0px;
}
.inner {
	position: relative;
    width: 1076px;
    margin: 0 auto;.sec_01 .inner
    z-index: 0;
}
.over:hover img {
	opacity: 0.8;
}

.tl_navi {
    margin-bottom: 15px;
    text-align: center;
}
.title_area {
    margin: 0 auto 40px;
    text-align: center;
}
.title_area .sub {
    margin-bottom: 10px;
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 1.5px;
    color: var(--blue);
    border-bottom: 3px solid var(--blue);
}
.title_area .sub:first-letter {
    color: var(--blue);
}
.title_area h2 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 900;
}

.title_area h2 span,
.solution_list li .txt span {
    color: var(--blue);
}
.sub_t {
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 90px;
    line-height: 1;
    color: #dff0f1;
    z-index: -1;
}

/* ???????--------------------------------------------*/

a.ikt2 {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 100%;
    margin-right: 0px;
    padding: 20px;
    background-color: #fc530a;
    background-image: linear-gradient(260deg, #ff9900, #ff3b00);
    border-bottom: solid 3px #b35008;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    border-radius: 50px;
    transition: .25s linear;
    -webkit-transition: .25s linear;
    -moz-transition: .25s linear;
    transition: .8s;
}
a.ikt2:hover {
    background-image: linear-gradient(260deg, #ff3b00, #ff9900);
    text-decoration: none;
}
.ikt2:after {
    position: relative;
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: 0;
    right: -8px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.ikt2:before {
    display: block;
    position: absolute;
    z-index: -1;
    left: -30%;
    top: -50%;
    content: "";
    width: 25px;
    height: 150px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    background-image: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%,rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.7)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, #ffffff rgba(255,255,255,0.7),rgba(255,255,255,0) 100%);
    animation: shiny 3s infinite linear;
    -webkit-animation: shiny 3s infinite linear;
    -moz-animation: shiny 3s infinite linear;
}

@keyframes shiny {
	0% {
		left: -30%;
	}
	20% {
		left: 120%;
	}
	100% {
		left: 120%;
	}
}
@-webkit-keyframes shiny {
	0% {
		left: -30%;
	}
	20% {
		left: 120%;
	}
	100% {
		left: 120%;
	}
}
@-moz-keyframes shiny {
	0% {
		left: -30%;
	}
	20% {
		left: 120%;
	}
	100% {
		left: 120%;
	}
}

/* header
--------------------------------------------*/

.head_bg {
    position: relative;
    z-index: 2;
    height: 78px;
}
.eyecatch_2 {
    position: relative;
    z-index: 0;
    padding-top: 160px;
    height: 785px;
    background-image: url(../img/fv_bk.jpg);
    background-size: cover;
    background-position: center center;
}

.logo_menu_2 {
    position: relative;
    top: -6px;
    padding: 0px 0px;
    align-items: center;
}

.logo_menu_2 .right_menu {
    margin-left: auto;
    align-items: center;
}
.logo_menu_2 .right_menu .tel {
    margin-right: 24px;
}
.logo_menu_2 .frm_btn {
    position: relative;
    top: 5px;
}
/* ???? */
.fixed {
	position: fixed !important;
	top: 0;
	padding: 0;
	width: 100%;
	z-index: 1000;
}

.head_bg.fixed {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 20%);
    transition: .8s;
}

.catch_area {
    position: relative;
}
.catch_area .gf {
    color: #1b75b2;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.catch_area .txt_1 {
    margin-top: 15px;
    font-size: 56px;
    line-height: 1.4;
	font-weight: 600;
	color: var(--blue);
}
.catch_area .tl {
    margin: 30px 0px;
}
.catch_area .txt_2 {
    font-size: 25px;
    font-weight: 600;
    color: var(--blue);
    font-feature-settings: "palt";
}


.catch_area .bottom_tl {
    margin: 40px 0px;
}

.eyecatch_2 .catch_area_bottom {
	position: absolute;
	bottom: 0;
	right: 0;
    z-index: 0;
    padding: 0;
	width: 100%;
    height: 130px;
    background-image: url(../img/fv_bottom_bk.jpg);
    background-size: cover;
    background-position: center center;
    opacity: 0.90;
}

.catch_area_bottom .inner {
	height: 100%;
}
.catch_area_bottom .fv_bottom_txt {
	height: 100%;
	display: grid;
	place-items: center;
}


p.logo_txt {
    margin-top: 60px;
    font-weight: 600;
}
.logos_scrol_2 {
	position: relative;
	background: url(/common../img/logos_scrol.png) left top repeat-x;
	height: 70px;
	border-bottom: 1px solid #ddd;
}

.catch_area .fv_form {
    margin: 30px 0px;
}

/* 悩み--------------------------------------------*/

.sec_01 {
    padding-bottom: 40px; 
}


.sec_01 {
    position: relative;
}

.sec_01:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 222px);
    z-index: 0;
    background: linear-gradient(360deg, rgb(161 216 243) 0%, rgb(199 227 245) 50%, rgb(227 243 253) 100%);
}

.sec_01 .tl_navi {
    position: relative;
    top: -20px;
    text-align: center;
}
.sv_list {
    width: 80%;
    margin: 0 auto 40px;
}
.sv_list li {
    width: calc(100% / 4);
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
}
.sv_list li .img {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.sv_list li .tl {
    margin-top: 15px;
    margin-bottom: 35px;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
}

/* 比較ビズをご利用ください-------------------------------------------*/

.biz_help {
    padding-top: 0px;
}


.biz_help .sub {
    margin-bottom: 10px;
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 1.5px;
    color: var(--blue);
    border-bottom: 3px solid var(--blue);
}
	

.t_center {
    text-align: center !important;
}

.head_title.t_center h2:after {
    left: 50%;
    margin-left: -15px;
}

.biz_help .tl {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}


.biz_help .l_hp_tl h2 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 900;
}

.biz_help .l_hp_tl h2 span {
    color: var(--blue);
}


.biz_help .l_hp_tl {
    text-align: center;
}

.ct_base_left {
    width: 536px;
    margin: auto;
}

.ct_base_right {
    width: calc(100% - 600px);
    padding-left: 36px;
}

.ct_base_right p {
    font-size: 18px;
	font-weight: 600;
}

.biz_help .flex_in {
    justify-content: center;
    margin-bottom: 60px;
}

/* 強み--------------------------------------------*/


.reason_area {
	background-image: url(../img/sol_bk.png);
	background-size: cover;
}

.reason_area .tl {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.reason_area .sales_list li {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

.sales_list li {
    position: relative;
    width: calc(100% / 3 - 20px);
    margin: 0px 10px;
}

.reason_area .sales_list li .num span {
    display: inline-block;
    padding: 20px 0px;
    font-size: 26px;
    line-height: 1;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    width: 64px;
    height: 64px;
}

.reason_area .sales_list li .num {
    margin-top: -54px;
    text-align: center;
}

.en, .gf {
    font-family: 'Oswald', sans-serif;
}


.sales_list li .img {
    width: 300px;
    height: 200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    text-align: center;
}

.sales_list li .img img {
    position: relative;
    top: 52px;
}

.sales_list li .txt .num {
    margin-bottom: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #1770B8;
}

.sales_list li .txt {
    padding: 20px;
}

.sales_list li h3 {
    font-size: 19px;
    font-weight: 600;
    margin-top: 20px;
    color: var(--blue);
}

.sales_list li .txt h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #253f52;
    text-align: center;
}

.reason_area .txt p {
	font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    letter-spacing: 1.2px;
}

/* 手法--------------------------------------------*/

.gd_list {
	margin-top: 40px;
}
.gd_list li {
    width: calc(100% / 2);
    padding: 30px;
}

.gd_list h3 {
    padding: 18px 12px;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    background: #1b75b2;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 15px !important;
    text-align: center;
}
.gd_list .ld_h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.gd_list .img {
	margin-bottom: 20px;
}
.gd_list p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
	padding: 20px 30px 40px 30px;
}

.gd_list .price_box {
    width: 25%;
    margin: 20px 18px 20px 46px;
    padding: 8px 0px;
    background: #1b75b2;
    border-radius: 25px;
}

.gd_list .price_box .price_txt{
	color: #ffffff;
	font-size: 16px;
	text-align: center;
}

.gd_list .txt{
	color: #1b75b2;
	font-size: 20px;
	margin: 20px 40px 20px 10px;
	letter-spacing: 1px;
	font-weight: 600;
}

.gd_list .txt span {
	font-family: oswald;
	font-size: 28px;
}

.price {
	border-bottom:dashed 3px;
	color: #878787;
	margin: 0px 30px;
}

.kinds_box1 {
    border: 3px solid #1b75b2;
    border-radius: 14px;
}


/* ご利用の流れ--------------------------------------------*/
.flow_area {
    background-image: url(../img/flow_bg.jpg);
    background-position: 0px 0px;
    background-size: cover;
}

.head_title {
    position: relative;
    margin-bottom: 50px;
}

.head_title h2 {
    position: relative;
    margin-bottom: 30px;
    font-size: 36px;
    letter-spacing: 2px;
    font-weight: 600;
}

.head_title h2:after {
    position: absolute;
    content: '';
    bottom: -15px;
    left: 0%;
    width: 30px;
    height: 2px;
    margin-left: 0px;
    background-color: #000;
}

.head_title {
    position: relative;
    margin-bottom: 50px;
}

.recruit_step_area {
    width: 90%;
    margin: 0 auto;
}

.recruit_step {
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
    min-height: 74px;
    min-height: 74px;
    background: #fff;
    box-shadow: 0px 1px 10px 0px rgb(0 0 0 / 10%);
    align-items: center;
}

.recruit_step:before {
    content: "";
    width: 2px;
    height: calc( 100% - 20px);
    position: absolute;
    left: 10%;
    top: 10px;
    background: var(--blue);
}

.recruit_step .left {
    position: relative;
    width: 40%;
    align-items: center;
}

.recruit_step .right {
    width: 60%;
    margin-left: auto;
}

.recruit_step .step_label {
    width: 25%;
    text-align: center;
    font-size: 14px;
    line-height: 1.1;
    color: var(--blue);
}
.recruit_step .step_label span {
    font-size: 26px;
}

.recruit_step .step_title {
    position: relative;
    z-index: 1;
    width: 75%;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.recruit_step .step_text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    padding-right: 12px;
    position: relative;
    z-index: 1;
}

.recruit_step:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.recruit_step.last:after,
.recruit_step:last-child:after {
    content: none;
}

/* cta
--------------------------------------------*/

.cta {
    position: relative;
    z-index: 0;
    padding: 0;
    height: 356px;
    background-image: url(../img/cta_bk.jpg);
    background-size: cover;
    background-position: center center;
}

.cta .tl {
    position: relative;
    top: -22px;
    padding-left: 230px;
}
.cta .woman {
	position: absolute;
    top: -45px;
    left: 0px;
}
.cta .cta_cover {
    position: relative;
    z-index: 2;
    padding: 20px 40px;
    background-color: rgb(255 255 255 / 75%);
    border-radius: 90px;
    text-align: center;
    margin-left: 278px;
    width:50%;
}

.cta .left {
    border-right: 1px solid #97b9c7;
}
.cta .ld {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    font-feature-settings: "palt";
}

.cta .frm_btn {
    margin-top: 20px;
}


/* よくある質問
--------------------------------------------*/

.sec_07 {
    padding-top: 60px;
}

.accbox {
	width: 50%;
    padding: 0 2%;
}

.accbox label {
    position: relative;
    display: block;
    font-size: 16px;
    padding: 20px 25px 20px 50px;
    font-weight: 600;
    cursor :pointer;
    transition: all 0.5s;
}

.faq_icon {
    position: absolute;
    top: 14px;
    left: 0px;
    min-width: 36px;
    min-height: 36px;
    padding: 7px 5px 8px;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
h3 .faq_icon,
.accbox label .faq_icon {
    background: #cc6969;
}
h4 .faq_icon,
.accbox .accshow .faq_icon {
    background: var(--blue)
}
.accbox .accshow .faq_icon {
    top: 26px;
    left: 20px;
}

.accbox label:after {
    content: "";
    position: absolute;
    top: 25px;
    right: 0%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.accbox label:hover {
    color: #2889b7;
}

.accbox input {
    display: none;
}

.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    display: none;
}

.cssacc:checked + label + .accshow {
    position: relative;
    height: auto;
    padding: 30px 30px 30px 65px;
    background: #f7f7f7;
    opacity: 1;
    line-height: 24px;
    display: block;
}

.cssacc:checked + label:after {
    top: 29px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* footer
--------------------------------------------*/

.lp_footer {
    padding: 25px 0px;
}

.lp_footer .lp_ft_list li {
    display: inline-block;
    margin: 0 10px;
}

.lp_footer .lp_ft_list li a {
    color: #333;
    text-decoration: none;
}

.lp_footer .lp_ft_list {
    text-align: center;
}

.lp_footer .lp_ft_list li a:hover {
    text-decoration: underline;
}
.sec_01 ul.check_list {
    width: 70%;
    margin: 30px 0 60px;
    overflow: hidden;
}

.sec_01 .nayami {
    width: 28%;
    margin-right: 2%;
}

.sec_01 .nayami img {
    width: 100%;
}

.sec_01 ul.check_list li {
    display: inline-block;
    width: 45%;
    position: relative;
    padding-bottom: 15px;
    margin: 7px 2%;
    border-bottom: 2px dotted #ddd;
    font-size: 16px;
    font-weight: bold;
}



/* スマホ対応
--------------------------------------------*/

@media screen and (max-width: 767px) {

	img {
	    max-width: 100%;
	    height: auto;
	}
	.mb {
	    display: block !important;
	}
	.pc {
	    display: none !important;
	}
	section {
	    padding: 60px 0px;
	}
	.inner {
	    width: 92%;
	}
	.title_area {
	    margin: 0 auto 30px;
	}
	.title_area h2 {
	    font-size: 18px;
	}
	.title_area .sub {
	    font-size: 32px;
	}
	
	/* flex_in解除*/
	
	.cta .left,
	.cta .right,
	.flow_list li .left,
	.flow_list li .right,
	.flow_list li:nth-child(2) .right {
		width: 100%;
		padding: 0px;
	}
	.cta .flex_in,
	.nayami_list,
	.flow_list li {
	    display: block;
	}

	.head_bg {
	    position: relative;
	    z-index: 2;
	    height: 54px;
	}
	.logo_menu_2 {
	    padding: 20px 0px 20px;
	}
	.logo_menu_2 #logo img {
	    width: 90px;
	}
	.logo_menu_2 .right_menu .tel {
		display: none;
	}
	.logo_menu_2 .frm_btn {
	    position: absolute;
	    top: 5px;
	    right: -5px;
	    width: 116px;
	}
	
	
    /* FV
    ----------------------------------------------------*/	

	.eyecatch_2 {
    	padding-top: 90px;
   		height: 530px;
	    background-image: none;
	    background: linear-gradient(0deg, rgb(211 239 255) 0%, rgb(240 249 255) 50%, rgb(255 255 255) 100%);
	}
	.catch_area {
	    margin: 0 auto;
	    text-align: center;
	}
	.catch_area .gf {
	    font-size: 11px;
	    letter-spacing: 1.5px;
	}
	.catch_area .fv_no1 {
		display: none;
	}
	.catch_area .txt_1 {
    	font-size: 26px;
	}
	.catch_area .tl {
	    margin: 15px 0px;
	}
	.catch_area .txt_2 {
	    font-size: 16px;
	}

	p.logo_txt {
	    margin-top: 20px;
	    font-size: 12px;
	    color: #555;
	}
	
    /* CTA
    ----------------------------------------------------*/	
		
	.cta {
	    height: auto;
	    padding-bottom: 30px;
	    background-image: url(../img/cta_bk_mb.jpg);
	}
	.cta .cta_cover {
	    display: block;
	    margin-top: 0px;
	    padding: 20px 15px;
	    border-radius: 10px;
        width: 100%;
        margin-left: 0;
	}
	.cta .tl {
	    top: -14px;
	    padding-left: 138px;
	}
	.cta .left {
		margin-bottom: 15px;
		border-right: none;
	}
	.cta .woman img {
	    width: 128px;
	}


    .ct_base_left, .ct_base_right, .sales_list li {
        width: 100%;
        padding: 0;
    }

    .ct_base_right {
        margin-top: 30px;
    }


	
    /* 悩み
    ----------------------------------------------------*/	
	
	.sec_01:before {
	    height: calc(100% - 139px);
	}

	.eyecatch_2 .catch_area_bottom {
	    height: 80px;
	}

    
    /* 比較ビズをご利用ください
    ----------------------------------------------------*/	
    .biz_help .sl {
        text-align: center;
        margin-bottom: 10px;
    }

    .biz_help .sl img {
        width: 60%;
    }
    
    .biz_help .sub {
		font-size: 20px;
	}
	
	.biz_help .l_hp_tl h2 {
    	font-size: 26px;
    }
    
    .ct_base_right p {
    	font-size: 14px;
    }
    
    /* 比較ビズが選ばれる理由
    ----------------------------------------------------*/
    .reason_area .txt p {
		font-size: 14px;
    }
    
    .reason_area .sales_list li {
		display: block;
	}
    
    
    .head_title h2 {
        font-size: 20px;
    }

    .sec_01 ul.check_list li {
        font-size: 13px;
    }
    
    .gd_list li {
    	width: 100%;
    	padding: 10px;
    }
    
    .sales_list li {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        margin: 20px 0px;
    }

    .sales_list li .img {
        width: auto;
        height: auto;
        margin: 0 auto;
    }

    .sales_list li .img img {
        position: relative;
        top: 12px;
        width: 80px;
        margin: 20px auto;
    }

    .sales_list li .txt {
        width: 100%;
    }

    .sales_list li .txt .num {
        text-align: left;
    }

    .sales_list li .txt h3 {
        font-size: 16px;
        text-align: left;
    }
    
    .reason_area .sales_list li .num span {
		font-size: 22px;
	}
	
	/* 手法
    ----------------------------------------------------*/
    .gd_list .price_box {
	    width: 28%;
	    margin: 20px 0px 20px -1px;
	    padding: 8px 0px;
	    background: #2189c2;
	    border-radius: 16px;
	}
    .gd_list .txt {
	    color: #2189c2;
	    font-size: 20px;
	    margin: 20px 0px 20px 10px;
	    letter-spacing: 1px;
	}
	
	.kinds_box1 {
	    border: 2px solid #2189c2;
	    border-radius: 14px;
	}
	
	.price {
	    margin: 0px 20px;
	}
	
	/* ご利用のながれ
    ----------------------------------------------------*/

    .recruit_step .left {
        width: 100%;
    }

    .recruit_step .step_label {
        width: 100%;
        font-size: 13px;
    }

    .recruit_step .step_label span {
        font-size: 20px;
    }

    .recruit_step .step_title {
        width: 100%;
        padding-top: 35px;
        padding-left: 0px;
        font-size: 16px;
        text-align: center;
    }

    .recruit_step .right {
        width: 100%;
        margin-left: 0%;
    }

    .recruit_step .step_text {
        padding: 15px 15px 0px;
        font-size: 12px;
    }

    .recruit_step:before {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0%;
        top: 68px;
    }
    
	/* よくある質問
    ----------------------------------------------------*/
    
    	.accbox {
	    width: 100%;
	    padding: 0 2%;
	}
	.accbox label {
	    font-size: 14px;
    }
	.cssacc:checked + label + .accshow {
	    padding: 20px 20px 20px 65px;
	    font-size: 12px;
	    line-height: 22px;
	}

}	
	
/* 最小対応
--------------------------------------------*/

@media screen and (max-width:380px) {	
	.head_title h2 {
	    font-size: 19px;
	}
	
	
	/* 手法
    ----------------------------------------------------*/
	.price {
    	margin: 0px 20px;
	}

}