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

*{
	box-sizing: border-box;
	font-family: 'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	vertical-align: bottom;
}

body{
	margin: 0;
}

img {
width:100%;
max-width: 100%;
height: auto;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

a{
	color: #fff;
	text-decoration: none;
}

.contents{
	padding: 70px 20px;
    text-align: center;
	max-width: 1020px;
    margin: 0px auto;
	overflow: hidden;
	font-size: 14px;
}

.blue{
	background-color: #188CCE;
}

.blue .ttl{
	color: #fff;
    border-bottom: 1px solid #fff;
}

.blue .subttl{
	color: #fff;
}

.btn{
    max-width: 320px;
    margin: auto;
    text-align: center;
    padding: 10px;
    background: #FA5A5A;
    border-radius: 50px;
	font-size: 18px;
    font-weight: 500;
}

.ttl{
	font-size: 21px;
    font-weight: bold;
    display: inline-block;
    padding: 2px 60px;
    border-bottom: 1px solid #188CCE;
    margin: 0 0 6px;
}

.subttl{
	color: #188CCE;
}

.ttl-line{
	 width: 250px;
    display: block;
    margin: 10px auto 0;
}

/*fv*/
.mainvisual{
	position: relative;
	margin-bottom: -50px;
}

.maincontents{
	background: url(../img/fv-img.jpg)center no-repeat;
	display: block;
    padding: 0px 0 750px;
    background-size: cover;
}


.main-txt {
    position: absolute;
    text-align: center;
    left: 10%;
    top: 25%;
	color: #fff;
	text-shadow: 0px 0px 6px #000;
}

h1{
	font-size: 40px;
    line-height: 40px;
}

h1 span{
	font-size: 25px;
}

.fv-blue{
	padding: 20px 0px;
    background: #007abf80;
	margin: 20px 0;
	border-radius: 15px;
}

.fv-btnarea .blue{
	padding: 20px;
}

h2{
	font-size: 55px;
	line-height: 65px;
	text-align: center;
    padding-top: 25px!important;
    color: #fff;
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
}

h2 span{
	font-size: 80px;
}


h3{
	text-align: center;
	color: #fff;
	font-size: 25px;
	transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
}

h4{
	font-size: 18px;
	text-align: center;
    color: #fff;
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
}

.txt-1{
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.txt-1 span{
	font-size: 35px;
}


.txt-2{
	font-size: 16px;
	display: inline-block;
}

.attention{
	font-size: 14px;
}


.main-txt .btn{
	margin-top: 10px;
}


.btn img{
	width: 300px;
}

.btn-area{
	text-align: center;
    font-size: 21px;
    margin-top: 50px;
}

.btn-area p{
	margin-bottom: 10px;
}

.btn-area span{
	color: #2A8800;
}

.fv-subttl{
	font-size: 18px;
    line-height: normal;
}

.fv-logo{
    display: inline-block;
    width: 100px;
    padding: 7px;
    line-height: 12px;
}


/*トップフォーム*/

.header-form .l_contact_inner {
    right: 10%;
    max-width: 580px;
    background: #fff;
    padding: 30px 20px 30px 20px;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    top: 10%;
	font-size: 14px;
}

.header-form .p_one_label{
	display: block;
    text-align: right;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 46px;
}


.header-form .privacypolicy_box{
    border: 1px solid #8f8f8f8f;
    height: 150px;
    overflow-y: scroll;
    margin: 15px;
    padding: 15px;
    text-align: left;
}


/*バーガーメニュー*/
.nav-menu{
	background: #188CCE;
    list-style: none;
    margin: 0;
    width: 100%;
    position: fixed;
    z-index: 99;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #fff;
    padding-top: 50px;
    right: 0;
    box-shadow: #8a8a8a 0px 1px 4px;
    max-width: 40%;
	display: none;
	top: 0;
}
.nav-menu a{
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
#global-menu.open{
  display: block;
}
.toggle-btn {
  background: transparent;
  border: none;
  padding: 0;
  position: fixed;
  top: 20px;
  right: 20px;
  display: none;
  z-index: 999;
}
.toggle-btn:hover{
  cursor: pointer;
}
.toggle-btn span{
  display: inline-block;
  background: #188CCE;
  height: 3px;
  width: 30px;
  position: relative;
}
.toggle-btn span:before{
  content: "";
  display: inline-block;
  background: #188CCE;
  height: 3px;
  width: 30px;
  position: absolute;
  top: 10px;
  left: 0;
}
.toggle-btn span:after{
  content: "";
  display: inline-block;
  background: #188CCE;
  height: 3px;
  width: 30px;
  position: absolute;
  top: -10px;
  left: 0;
}
#open-btn.active span{
  background: transparent;
}
#open-btn.active span:before{
  transform: rotate(45deg);
  top: 0;
	background: #fff!important;
}
#open-btn.active span:after{
  transform: rotate(-45deg);
  top: 0;
	background: #fff;
}
p{
  margin: 200px 0 500px;
  padding-top: 50px;
}

.icon{
	text-align: center;
    margin: 15px 0;
}

.icon-item{
	display: inline-block;
}
.icon-item img{
	max-width: 60px;
}

.sp-menulogo{
	max-width: 180px;
    margin: 0 auto;
	display: block;
}

.sp-hplogo{
	max-width: 250px;
    margin: 25px auto 15px;
	display: block;
}


.toggle-btn {
	display: block;
}
.menu-list{
    border-bottom: 2px solid;
    text-align: left;
    padding: 11px 0;
    margin: 30px 20px 0;
}


.menu-list span{
	width: 150px;
    display: block;
    float: left;
}

header .inner {
    background: #fff;
    position: fixed;
    box-shadow: #0000003b 0px 0px 7px;
    z-index: 999;
    width: 100%;
    top: 0;
}

/*FV*/

.bg {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-image: url("../img/fv_pc.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fv_logo{
	position: relative;
    top: 28%;
    display: inline-block;
}

.fv_logo_area{
	position: relative;
    top: 15%;
    left: 4%;
    display: inline-block;
}

.fv_logo_area p{
	text-align: center;
	font-size: 60px;
    color: #fff;
}

.fv_logo_area img{
	max-width: 400px;
	margin: 15px 0;
}


/*案件例*/

#pickup .contents{
	max-width: 100%;
}

.case-contents{
	padding: 10px;
}



.category{
	display: inline-block;
    background: #F49C24;
    color: #fff;
    padding: 10px 20px;
	font-size: 18px;
    font-weight: 600;
}

.case-left{
    color: #005688;
    font-weight: 600;
    border-bottom: 1px solid #E5E5E5;
}

.tanka{
	color: #FA5A5A;
	font-weight: 500;
}

.kankyo{
	margin-top: 5px;
}

.kankyo span{
	background: #E6F6FF;
    padding: 5px;
    margin: 0 5px 0 0;
    border-radius: 5px;
}

.case-line{
	margin-bottom: 10px;
}

.swiper-wrapper{
	margin: 45px 0; 
}
  .swiper-slide {
    text-align: left;
    font-size: 14px;
    background: #fff;
    height: auto!important;
    border: 1px solid #188CCE;
    border-radius: 15px;

  }

  .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }

/*.name{
    background: #188CCE;
    padding: 10px;
    color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}*/
.pickup{
	font-size: 14px;
}
.swiper-button-next:after, .swiper-button-prev:after{
    color: #188CCE!important;
    padding: 10px!important;
	font-family: swiper-icons!important;
    text-transform: none!important;
    letter-spacing: 0!important;
    text-transform: none!important;
    font-variant: initial!important;
    line-height: 15px!important;
    font-size: 26px!important;
}

#end-btn{
	background: #a2873f;;
}

#end-btn .btn-area{
	background: #fff;
    padding: 30px;
    display: block;
    max-width: 500px;
    margin: 0 auto;
    height: 150px;
}

#end-btn .end-txt01{
	font-size: 35px;
	color: #fff;
}

.end-txt01 span{
	font-size: 60px;
}


#end-btn .end-txt02{
	font-size: 21px;
	margin-bottom: 15px;
	color: #fff;
}
#end-btn .contents{
	padding: 0px 20px 30px;
}

#info .contents{
	padding: 70px 20px 0;}

#info .btn{
	margin:  50px auto;
}

/*3つのサポート*/

.support-area{
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
	margin: 20px 0;
}

.support-item{
	 max-width: 200px;
    margin: 20px;
    text-align: left;
    color: #fff;
}

.support-maintxt{
	color: #fff;
    font-size: 21px;
    font-weight: 500;
	margin-bottom: 20px;
}

.support-txt{
	color: #fff;
	margin: 20px 0;
}

.support-attention{
	background: #fff;
    margin: 30px 0;
    padding: 20px;
    color: #188CCE;
}

.support-attention span{
	color: #FA5A5A;
    border-bottom: 1px solid;
}


.triangle{
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 50px solid #188CCE;
 margin:  0 auto;
}


.risk-area{
	max-width: 800px;
    margin: 0 auto 50px;
}

.risk-item{
	border: 3px solid #188CCE;
	margin-bottom: 20px;
}

.risk-ttl{
	    background: #188CCE;
    float: left;
    width: 30%;
    font-size: 18px;
    line-height: 35px;
	color: #fff;
}

.risk-txt{
	clear: both;
	padding: 15px;
	text-align: justify; 
}

.risk-midashi{
	width: 70%;
    margin: 0 auto;
    float: left;
    font-size: 18px;
    line-height: 35px;
    text-align: left;
    padding-left: 20px;
    color: #188CCE;
    font-weight: 600;
}

/*voice*/
.voice-area{
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
}

.voice-item{
	max-width: 270px;
    margin: 50px 10px 30px;
    color: #fff;
}

.voice-ttl{
	font-size: 16px;
    font-weight: 500;
    margin: 10px 0;
}

.voice-txt{
	text-align: left;
}

/* footer */
.l_footer{
	text-align: center;
	padding: 30px;
	text-decoration: none;
	color: #fff;
}
.l_footer li a{
	color: white;
  	text-decoration: none;
}

.l_footer li{
	display: inline-block;
}


/*contact*/

.contct_page {
  background: #ECFAFF;
	margin: 0px;
}
.contct_page .l_header {
  position: static;
}
.l_contact {
  background: url(../images/img_guys3.png) center bottom no-repeat;
  padding: 30px 0 100px;
}
.l_contact_inner {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 60px 90px 50px;
  border-radius: 8px;
	text-align: center;
}
.m_contact_title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
.m_contact_form {
  margin-top: 45px;
}
.p_one_label {
  display: block;
  text-align: right;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 46px;
}
.m_contact_form input,
.m_contact_form textarea,
.m_contact_form select,
.p_contact_confirm {
  width: 60%;
  height: 46px;
  padding: 10px;
  border: 0 none;
  background: #F2F2F2;
  border-radius: 8px;
  box-sizing: border-box;
  margin-left: 30px;
  font-weight: normal;
}
.p_contact_confirm {
  display: inline-block;
  background: transparent;
  text-align: left;
}
.p_contact_confirm.-position_change {
  vertical-align: top;
  position: static;
}
.m_contact_form textarea { height: 80px; }
.p_invalid_badge {
  background: #EB5757;
  border-radius: 3px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 5px 10px;
  margin-left: 10px;
  vertical-align: middle;
}
.-position_change {
  position: relative;
  top: -60px;
}
.p_one_label_attention {
  font-size: 14px;
}
.m_contact_form .pp_checkbox {
  width: auto;
  height: auto;
  font-weight: normal;
  margin-left: 0;
}
.m_contact_form .p_cv_btn {
  font-weight: bold;
  width: 240px;
  margin: 30px auto 0;
  cursor: pointer;
}
.m_contact_under_footer_space {
  border-top: 3px solid #333;
  background: #fff;
  height: 100px;
  margin-top: -51px;
}
.p_attention_message {
  text-align: center;
  padding: 15px 0;
  line-height: 2;
}
.m_contact_btn_area {
  display: flex;
  text-align: center;
}
.p_cv_btn.-gray {
  background: #eee;
  border: 1px solid #eee;
  color: #333;
}
.p_cv_btn.-gray:hover {
  background: transparent;
}
.p_contact_back_top {
  width: 240px;
  margin: 30px auto 0;
}

.privacypolicy {

  
}
.privacypolicy_box {
  border: 1px solid #8f8f8f8f;
  height: 500px;
  overflow-y: scroll;
  margin: 15px;
  padding: 15px;
	text-align: left;
}

.privacypolicy_top {
  font-weight: bold;
}
.privacypolicy_title {
  font-weight: bold;
 margin-bottom: 5px;

}
.privacypolicy_text {
  font-feature-settings: "palt";
	margin-bottom: 15px;
}
.disabled {
  background-color: #c4c4c4;
}

.p_cv_btn {
  display: block;
  color: #333;
  text-align: center;
  background: #fff000;
  border-radius: 30px;
  text-decoration: none;
  padding: 15px 0;
  transition: all .3s ease-in;
  border: 2px solid #333;
}
.p_cv_btn.disabled:hover {
  background-color: #c4c4c4;

}
.p_cv_btn:hover {
  background: transparent;
  color: #333;
}

@media all and (max-width: 770px) {
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
	.main-txt{
		top: 15%;
		right: 0;
		left: 0;
	}
	
	h1{
		font-size: 40px;
	}
	.txt-1{
		font-size: 16px;
	}
	
	h2{
		font-size: 60px;
		padding-top: 15px!important;
	}
	
	h2 span{
		font-size: 80px;
	}
	.txt-2{
		font-size: 21px;
	}
	.main-txt .btn{
		margin-top: 15px;
	}
	.maincontents {
		padding: 0px 0 1300px;
	}

.maincontents .btn{
	position: absolute;
    left: 50%;
    transform: translate(-50%, -20%);
    width: 250px;
	display: contents;
}

	.left{
		padding: 5px 5px 5px 15px;;
	}
	
	.right{
		padding: 5px 5px 5px 70px;
	}
	
	.check-list{
		font-size: 14px;
	}
	.check-list span{
		font-size: 20px;
	}
	.charm01{
		padding: 10px;
	}
	.charm-list p{
		text-align: left;
	}
	.charm-list li{
		padding: 50px 10px;
	}

	.case-line{
		font-size: 14px;
	}
	.slick-dots{
		bottom: 0;
	}
	.slick-dots li{
		width: 10px !important;
		height: 10px  !important;
	}
	.slick-dotted.slick-slider{
		padding-bottom: 40px;
		margin-top: 20px;
	}

	.swiper-wrapper{
		margin: 50px 0;
	}
	
	.attention{
		 margin-bottom: 15px;
	}
	.p_copyright{
		font-size: 12px;
	}
	
	.modal_inner{
		max-width: 90%;
		margin: 0 auto;
		top: 13%;
		left: 0;
    	right: 0;
	}
	.swiper-container {
		width: 85%!important;
		margin: 40px auto!important;
	}
	
	.support-item {
    max-width: 400px;
	}
	
	.support-item img{
		max-width: 200px;
		display: block;
		margin: 0 auto;
	}
	.support-maintxt{
		font-size: 18px;
	}
	
	.risk-midashi{
		width: 100%;
		text-align: center;
		padding: 0;
		margin-top: 10px;
	}
	.risk-ttl{
		width: 100%;
	}
	.nav-menu{
		max-width: 100%;
		padding-top: 100px;
	}
	.menu-list{
		margin: 10px 20px 0;
	}
	.fv-blue{
		margin: 20px auto;
		max-width: 300px;
	}
	
	
	/*contact*/
	
	.l_contact{
		padding: 25px 10px 50px;
	}
	.l_contact_inner{
		padding: 20px;
	}
	.l_contact .p_attention_message{
		padding: 0;
		line-height: initial;
		display: block;
		margin: 0;
	}
	.p_contact_confirm{
		margin: 0 0 20px;
		width: 100%;
		height: auto;
		padding: 0;
	}
	.m_contact_form .p_cv_btn{
		width: 100%;
		margin: 15px auto;
	}
	.m_contact_btn_area{
		display: block;
	}
/*	.m_footer_navigation{
		margin: 0;
    	padding: 0;
	}
*/	
	.m_contact_form input, .m_contact_form textarea, .m_contact_form select, .p_contact_confirm{
		width: 100%;
		margin-left: 0;
	}
	.privacypolicy_box{
		margin: 15px 0;
	}
	.privacypolicy {
		font-size: 14px;
	}
	.header-form .p_one_label{
		text-align: left;
	}
	.header-form .m_contact_form{
		margin-top: 0;
	}
	.header-form .l_contact_inner{
		    max-width: 350px;
		right: 0px;
		left: 0px;
		padding: 15px;
		font-size: 13px;
	}
	.header-form .privacypolicy_box{
		padding: 10px;
		margin: 0 0 15px;
		font-size: 13px;
	}
	.header-form .m_contact_form input{
		height: 35px;
	}
		.header-form .m_contact_form textarea{
		height: 35px;
	}
		.header-form .m_contact_form select{
		height: 35px;
	}
		.header-form .p_contact_confirm{
		height: 35px;
	}
	.header-form .p_one_label{
		line-height: 30px;
	}
	.header-form .l_contact_inner{
		top: 67%;
	}
	.p_one_label{
		text-align: left;
	}
}

/* footer */
.l_footer {
  border-top: 3px solid #333;
}
.m_footer_nav {
  text-align: center;
  padding: 50px 0;
}
.m_footer_navigation li {
  display: inline-block;
}
.m_footer_navigation li a {
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.l_company_list {
  text-align: center;
  background: #F2F2F2;
  padding: 25px 0;
}
.l_company_list .m_footer_navigation li a {
  font-weight: normal;
}
.l_company_list .m_footer_navigation li a img {
  vertical-align: middle;
}

.p_copyright {
  background: #333;
  color: #fff;
  letter-spacing: 2px;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}
