/* ===================================================================
CSS
 file name  :  style.css
=================================================================== */
body, button, input, select, textarea {
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Avenir','Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','メイリオ',Meiryo,sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 2;
}
html{
    font-size: 62.5%;
}
body{
    font-size:1.6rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	body{
		font-size:1.2rem;
	}
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
a{
	color: #171771;
	text-decoration: underline;
}
a:hover{
	color: #3E79AC;
}
a.btn{
	position: relative;
	text-decoration: none;
	display: block;
	padding: 1.0em;
	border-radius: 5px;
	text-align: center;
	color: #171771;
	line-height: 1;
	background: #FDDD01;
	border-bottom: 5px solid #A28D00;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
	transition: all .3s;
	font-weight: 600;
	font-size: 2.4rem;
}
@media print, screen and (min-width: 769px) {
    a:hover.btn{
        background: #FFB700;
        border-bottom: 5px solid #DEA003;
    }
}
@media screen and (max-width: 768px) {
	a.btn{
		font-size: 1.6rem;
	}
}
.btn_arrow span{
	position: relative;
	display: inline-block;
	padding: 0 1em 0 0;
	text-decoration: none;
}
.btn_arrow span::before{
	content: '';
	position: absolute;
	bottom: calc(50% - 5px);
	right: 0;  
	width: 11px;
	height: 2px;
	background: #171771;
	transform: rotate(-45deg);
	transition: all .3s;
}
.btn_arrow span::after{
	content: '';
	position: absolute;
	bottom: calc(50% + 2px);
	right: 0;
	width: 11px;
	height:2px;
	background: #171771;
	transform: rotate(45deg);
	transition: all .3s;
}
@media print, screen and (max-width: 768px) {
    .btn_arrow span::before{
        bottom: calc(50% - 4px);
        width: 8px;
        height: 1px;
    }
    .btn_arrow span::after{
        bottom: calc(50% + 1px);
        width: 8px;
        height:1px;
    }
}
.bg_blue{
	background: #F1F5F9;
}
.text_red{
    color: #CE0000;
}
.text_navy{
    color: #171771;
}
.underline{
	background: linear-gradient(transparent 60%, #FFFF36 60%);
	padding-bottom: 0.1em;
}
@media print, screen and (min-width: 769px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.pc_none{
		display:none;
	}
}
@media screen and (max-width: 768px) {
	.sp_none{
		display:none;
	}
}
@media screen and (min-width: 481px) {
	.tb_none{
		display:none;
	}
}
/* =====================================
ヘッダー
======================================== */
.header_wrap{
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    z-index: 100
}
.header_wrap .h_logo{
    max-width: 296px;
}
@media screen and (max-width: 768px) {
    .header_wrap{
        height: 56px;
    }
    .header_wrap .h_logo{
        max-width: 207px;
    }
}
@media screen and (max-width: 480px) {
    .header_wrap{
        height: 40px;
    }
    .header_wrap .h_logo{
        max-width: 148px;
    }
}
/* =====================================
メイン
======================================== */
.bg_main{
	background: url("../images/bg_main_pc.jpg") no-repeat center center;
	background-size: cover;
}
.main_wrap{
    max-width: 1180px;
    height: 720px;
    margin: auto;
    padding: 180px 50px 0 50px;
    position: relative;
}
.main_wrap h1.main_text{
	margin: auto;
    font-size: 4.8rem;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 0.06em;
    line-height: 1.6;
}
.main_wrap h1.main_text .area_text{
    font-size: 4.2rem;
    background: #F9DE4B;
    color: #171771;
    letter-spacing: 0.16em;
    padding: 0 1em;
}
.main_wrap h1.main_text .yellow{
    color: #F9DE4B;
}
.main_wrap h1.main_text .text_large{
    font-size: 5.6rem;
}
.main_wrap .rank_wrap{
    position: absolute;
    width: 63%;
    max-width: 680px;
    right: 0;
    bottom: 30px;
}
p.rank_attention{
	max-width: 1180px;
    padding: 10px 50px;
    margin: auto;
    font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
    .main_wrap{
        height: 560px;
        padding: 130px 30px 0 30px;
    }
    .main_wrap h1.main_text{
        font-size: 3.4rem;
    }
    .main_wrap h1.main_text .area_text{
        font-size: 2.8rem;
        margin-bottom: 0.5em;
        display: inline-block;
    }
    .main_wrap h1.main_text .text_large{
        font-size: 4.0rem;
    }
    .main_wrap .rank_wrap{
        width: 90%;
        max-width: 580px;
        right: 20px;
        bottom: 30px;
    }
    p.rank_attention{
        padding: 10px 30px;
        font-size: 1.0rem;
    }
}
@media screen and (max-width: 480px) {
    .bg_main{
        background: url("../images/bg_main_sp.jpg") no-repeat center center;
        background-size: cover;
    }
    .main_wrap{
        height: 480px;
        padding: 130px 20px 0 20px;
    }
    .main_wrap h1.main_text{
        font-size: 2.3rem;
    }
    .main_wrap h1.main_text .area_text{
        font-size: 2.0rem;
    }
    .main_wrap h1.main_text .text_large{
        font-size: 2.8rem;
    }
    .main_wrap .rank_wrap{
        right: 20px;
        bottom: 50px;
    }
    p.rank_attention{
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}
/* =====================================
コンテンツ共通
======================================== */
.box{
    max-width: 1180px;
    margin: auto;
    padding: 100px 50px;
}
h2.subtitle{
    background: url("../images/bg_subtitle.png") no-repeat top center;
    background-size: 50px auto;
    padding: 64px 0 0 0;
    color: #171771;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
}
h2.subtitle span{
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
}
.lead_text{
    margin-top: 70px;
}
@media screen and (max-width: 768px) {
    .box{
        padding: 70px 30px;
    }
    h2.subtitle{
        background-size: 40px auto;
        padding: 44px 0 0 0;
        font-size: 1.8rem;
    }
    h2.subtitle span{
        font-size: 1.2rem;
    }
    .lead_text{
        margin-top: 40px;
    }
}
@media screen and (max-width: 480px) {
    .box{
        padding: 50px 20px;
    }
    h2.subtitle{
        background-size: 26px auto;
        padding: 30px 0 0 0;
        font-size: 1.4rem;
    }
    h2.subtitle span{
        font-size: 0.8rem;
    }
    .lead_text{
        margin-top: 20px;
    }
}
/* =====================================
会員登録すると
======================================== */
ul.member_list{
    margin: auto;
    padding-top: 30px;
    max-width: 920px;
}
ul.member_list li{
    margin-top: 30px;
    background: #FFF;
    padding: 17px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
}
ul.member_list li .number{
    width: 46px;
    margin-right: 30px;
}
ul.member_list li p{
    width: calc(100% - 76px);
}
ul.member_list li .large{
    font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
    ul.member_list{
        padding-top: 10px;
    }
    ul.member_list li{
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 1.2rem;
        line-height: 1.8;
    }
    ul.member_list li .number{
        width: 32px;
        margin-right: 20px;
    }
    ul.member_list li p{
        width: calc(100% - 56px);
    }
    ul.member_list li .large{
        font-size: 1.8rem;
    }
}
/* =====================================
当社取扱エリアの物件数
======================================== */
.bknnum_list{
    margin: 70px auto auto;
    max-width: 880px;
    font-weight: 400;
}
.bknnum_list .title_line,
.bknnum_list .bknnum_line{
	display: flex;
	align-items: center;
}
.bknnum_list .title_nomal{
	text-align: center;
	margin-left: 26%;
	width: 28%;
}
.bknnum_list .title_mikokai{
	text-align: center;
	margin-left: 9%;
	width: 36%;
}
.bknnum_list .title_nomal .balloon,
.bknnum_list .title_mikokai .balloon{
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 0.3em 1.5em;
    border: 1px solid #171771;
    border-radius: 5px;
    background-color: #ffffff;
    color: #171771;
    text-align: center;
}
.bknnum_list .title_mikokai .balloon{
    background-color: #171771;
    color: #ffffff;
}
.bknnum_list .title_nomal .balloon::before,
.bknnum_list .title_mikokai .balloon::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 12px 6px 0 6px;
    border-color: #171771 transparent transparent;
    translate: -50% 100%;
}
.bknnum_list .title_nomal .balloon::after,
.bknnum_list .title_mikokai .balloon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 10px 4px 0 4px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
}
.bknnum_list .title_mikokai .balloon::after{
    border-color: #171771 transparent transparent;
}
.bknnum_list .title_kind{
	color: #171771;
	width: 26%;
	padding: 0 1em;
    text-align: center;
}
.bknnum_list .num_nomal{
	width: 28%;
	text-align: center;
}
.bknnum_list .num_nomal span{
	font-size: 2.8rem;
	font-weight: 600;
    margin: auto 0.2em;
}
.bknnum_list .arrow_bknnum{
	width: 9%;
	text-align: center;
	padding: 0 1em;
}
.bknnum_list .arrow_bknnum img{
	max-width: 56px;
}
.bknnum_list .num_mikokai{
	width: 36%;
	text-align: center;
}
.bknnum_list .num_mikokai span{
	color: #CE0000;
	font-size: 3.2rem;
	font-weight: 600;
    margin: auto 0.2em;
}
p.bknnum_attention{
    margin: 10px auto auto;
    max-width: 880px;
    text-align: right;
    font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
    .bknnum_list{
        margin: 30px auto auto;
    }
    .bknnum_list .title_nomal .balloon,
    .bknnum_list .title_mikokai .balloon{
        padding: 0.3em 0.5em;
    }
    .bknnum_list .num_nomal span{
        font-size: 1.6rem;
    }
    .bknnum_list .arrow_bknnum img{
        max-width: 30px;
    }
    .bknnum_list .num_mikokai span{
        font-size: 2.0rem;
    }
    p.bknnum_attention{
        font-size: 1.0rem;
    }
}
@media screen and (max-width: 480px) {
    .bknnum_list .title_nomal .balloon,
    .bknnum_list .title_mikokai .balloon{
        font-size: 1.0rem;
    }
    .bknnum_list .num_nomal span{
        font-size: 1.4rem;
    }
    .bknnum_list .num_mikokai span{
        font-size: 1.6rem;
    }
}
/* =====================================
ホントの未公開物件
======================================== */
@media print, screen and (min-width: 769px) {
    ul.undisclosed_list{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 10px;
    }
    ul.undisclosed_list li{
        width: 48%;
    }
}
ul.undisclosed_list li{
    margin-top: 30px;
    font-weight: 600;
    padding: 0.7em 1em 0.7em 5em;
    background: #FFF url("../images/icon_house.png") no-repeat center left 30px;
    background-size: 22px auto;
    border-radius: 5px;
}
p.undisclosed_text{
    margin-top: 50px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    ul.undisclosed_list li{
        margin-top: 20px;
        padding: 0.7em 1em 0.7em 4em;
        background: #FFF url("../images/icon_house.png") no-repeat center left 20px;
        background-size: 16px auto;
    }
    p.undisclosed_text{
        margin-top: 20px;
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 488px) {
    ul.undisclosed_list li{
        margin-top: 10px;
        padding: 0.7em 1em 0.7em 3em;
        background: #FFF url("../images/icon_house.png") no-repeat center left 10px;
        background-size: 16px auto;
    }
}
/* =====================================
なぜ未公開なのか？
======================================== */
h3.subtitle_why{
    text-align: center;
    margin-top: 50px;
}
h3.subtitle_why span{
    max-width: 400px;
    display: block;
    margin: auto;
    border-radius: 100px;
    background: #777777;
    color: #FFF;
    padding: 0.2em;
}
h3.subtitle_why.member span{
    background: #171771;
}
.img_why{
    max-width: 880px;
    margin: 30px auto auto;
}
.text_why{
    margin: 30px auto auto;
    text-align: center;
}
.img_member{
    max-width: 900px;
    margin: -20px auto auto;
    border: 2px solid #171771;
    padding: 50px 60px 30px 60px;
}
.member_bkn_number{
    max-width: 540px;
    margin: 10px auto auto;
}
.member_bkn_number .balloon{
    position: relative;
    margin: 30px auto 20px auto;
    padding: 0.5em 1.5em;
    border: 1px solid #171771;
    border-radius: 5px;
    background-color: #ffffff;
    color: #171771;
    font-weight: 400;
    text-align: center;
}
.member_bkn_number .balloon::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 12px 6px 0 6px;
    border-color: #171771 transparent transparent;
    translate: -50% 100%;
}
.member_bkn_number .balloon::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 10px 4px 0 4px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
}
.member_bkn_number .bkn_num{
    background: #F1F5F9;
    border-radius: 5px;
    text-align: center;
}
.member_bkn_number .bkn_num .bkn_num_item{
    font-weight: 600;
}
.member_bkn_number .bkn_num .text_large{
    font-size: 3.2rem;
}
.member_bkn_number .bkn_num_nomal{
    text-align: center;
    margin-bottom: 20px;
}
.member_bkn_number .bkn_num_nomal .text_large{
    font-weight: 600;
    font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
    h3.subtitle_why{
        margin-top: 20px;
    }
    h3.subtitle_why span{
        max-width: 200px;
    }
    .img_why{
        margin: 20px auto auto;
        text-align: center;
    }
    .text_why{
        margin: 20px auto auto;
        text-align: center;
    }
    .img_member{
        margin: -15px auto auto;
        padding: 25px 20px 20px 20px;
        text-align: center;
    }
    .img_why img,
    .img_member img{
        width: 100%;
        max-width: 520px;
    }
    .member_bkn_number .balloon{
        margin: 20px auto 20px auto;
        padding: 0.5em 0.5em;
    }
    .member_bkn_number .bkn_num .text_large{
        font-size: 2.0rem;
    }
    .member_bkn_number .bkn_num_nomal{
        margin-bottom: 10px;
    }
    .member_bkn_number .bkn_num_nomal .text_large{
        font-size: 1.6rem;
    }
}
/* =====================================
このエリアに強い理由
======================================== */
h3.subtitle_reason{
    display: flex;
    color: #171771;
    font-weight: 600;
    font-size: 2.4rem;
}
h3.subtitle_reason .number{
    width: 124px;
}
h3.subtitle_reason .text{
    width: calc(100% - 124px);
    padding-top: 40px;
}
h3.subtitle_reason.first{
    margin-top: 70px;
}
@media print, screen and (min-width: 769px) {
    .price_nego{
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
    }
    .price_nego.direction{
        flex-direction: row-reverse;
    }
    .price_nego p,
    .price_nego .photo{
        width: 48%;
        max-width: 500px;
    }
}
.price_nego p .midashi{
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.5em;
}
.price_nego .photo{
    margin-top: 10px;
}
.lead_text_reason{
    margin-top: 70px;
}
.lead_text_reason .text_large{
    font-size: 2.0rem;
    font-weight: 600;
}
@media print, screen and (min-width: 769px) {
    .graph_wrap{
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
    }
    .graph_wrap .graph_1{
        width: 48%;
        max-width: 525px;
    }
    .graph_wrap .graph_2{
        width: 43%;
        max-width: 478px;
    }
}
@media print, screen and (min-width: 769px) {
    ul.voice_list{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    ul.voice_list li{
        width: 23%;
        align-self: stretch;
    }
}
ul.voice_list li{
    max-width: 250px;
    margin-top: 30px;
    background: #FFF;
}
ul.voice_list li a{
    text-decoration: none;
    color: #333;
}
ul.voice_list li .photo{
    overflow: hidden;
}
ul.voice_list li a:hover .photo img{
	transition: all .3s;
    transform: scale(1.1);
}
ul.voice_list li .text{
    padding: 20px;
    font-size: 1.4rem;
}
ul.voice_list li .text .kind span{
    display: inline-block;
    background: #000;
    color: #FFF;
    padding: 0.2em 1em;
}
ul.voice_list li .text .name{
    color: #171771;
    font-weight: 500;
    margin-top: 0.5em;
}
@media print, screen and (min-width: 769px) {
    ul.staff_list{
        display: flex;
        flex-wrap: wrap;
        margin-left: -2%;
    }
    ul.staff_list li{
        width: 23%;
    }
}
ul.staff_list li{
    max-width: 250px;
    margin-top: 30px;
    margin-left: 2%;
    background: #F8F8F8;
}
ul.staff_list li a{
    text-decoration: none;
    color: #333;
}
ul.staff_list li .photo{
    overflow: hidden;
    background: #F1F5F9;
    text-align: center;
}
ul.staff_list li .photo img{
    height: 200px;
}
ul.staff_list li a:hover .photo img{
	transition: all .3s;
    transform: scale(1.1);
}
ul.staff_list li .text{
    padding: 20px;
}
ul.staff_list li .text .position{
    font-size: 1.4rem;
    font-weight: 600;
}
ul.staff_list li .text .license{
    font-size: 1.0rem;
    min-height: 40px;
}
ul.staff_list li .text .name{
    color: #171771;
    font-weight: 600;
}
ul.staff_list li .text .kana{
    font-size: 1.2rem;
}
.staff_attention{
    margin-top: 50px;
}
@media screen and (max-width: 768px) {
    h3.subtitle_reason{
        font-size: 1.6rem;
    }
    h3.subtitle_reason .number{
        width: 62px;
    }
    h3.subtitle_reason .text{
        width: calc(100% - 62px);
        padding-top: 20px;
    }
    h3.subtitle_reason.first{
        margin-top: 30px;
    }
    .price_nego .photo{
        max-width: 500px;
    }
    .price_nego{
        margin-top: 20px;
    }
    .price_nego p .midashi{
        font-size: 1.4rem;
    }
    .price_nego .photo{
        margin-top: 20px;
    }
    .lead_text_reason{
        margin-top: 30px;
    }
    .lead_text_reason .text_large{
        font-size: 1.6rem;
    }
    .graph_wrap .graph_1{
        max-width: 480px;
        margin: 20px auto auto;
    }
    .graph_wrap .graph_2{
        max-width: 440px;
        margin: 30px auto auto;
    }
    ul.voice_list{
        max-width: 250px;
        margin: auto;
    }
    ul.voice_list li{
        margin-top: 20px;
    }
    ul.voice_list li .text{
        font-size: 1.2rem;
    }
    ul.voice_list li .text .kind span{
        font-size: 1.0rem;
    }
    ul.staff_list{
        max-width: 250px;
        margin: auto;
    }
    ul.staff_list li{
        max-width: 250px;
        margin-top: 20px;
    }
    ul.staff_list li .text .position{
        font-size: 1.2rem;
    }
    ul.staff_list li .text .kana{
        font-size: 1.0rem;
    }
    .staff_attention{
        margin-top: 20px;
    }
}
@media screen and (max-width: 768px) {
    h3.subtitle_reason{
        font-size: 1.2rem;
    }
    h3.subtitle_reason .number{
        width: 50px;
    }
    h3.subtitle_reason .text{
        width: calc(100% - 50px);
        padding-top: 20px;
    }
}
/* =====================================
お問い合わせバナー
======================================== */
.contact_wrap{
	background: url("../images/bg_contact.jpg") no-repeat center center;
	background-size: cover;
    margin: 70px auto auto;
    padding: 50px 20px;
    text-align: center;
    font-size: 2.0rem;
    font-weight: 400;
    color: #FFF;
}
.contact_wrap .contact_text{
    display: inline-block;
    color: #FFEE6C;
    padding: 0 30px;
	background: url("../images/bg_text_l.png") no-repeat center left, url("../images/bg_text_r.png") no-repeat center right;
    background-size: 14px auto, 14px auto;
}
.contact_wrap .contact_btn{
	margin: 30px auto auto;
	max-width: 560px;
	transition: all 0.3s;
}
@media print, screen and (min-width: 769px) {
    .contact_wrap .contact_btn:hover{
        transform: translateY(-3px);
    }
}
@media screen and (max-width: 768px) {
    .contact_wrap{
        margin: 50px auto auto;
        padding: 30px 20px;
        font-size: 1.6rem;
    }
    .contact_wrap .contact_text{
        padding: 0 24px;
        background-size: 10px auto, 10px auto;
    }
    .contact_wrap .contact_btn{
        margin: 20px auto auto;
        max-width: 480px;
    }
}
@media screen and (max-width: 480px) {
    .contact_wrap{
        margin: 30px auto auto;
        padding: 20px 20px;
        font-size: 1.4rem;
    }
    .contact_wrap .contact_text{
        padding: 0 24px;
        background-size: 10px auto, 10px auto;
    }
}
/* =====================================
お問い合わせ
======================================== */
.box.box_contact{
    padding: 100px 50px 70px 50px;
}
.contact_upper{
    max-width: 1020px;
    margin: auto;
    padding: 50px 50px;
}
.contact_upper .contact_member_subtitle{
    color: #171771;
    text-align: center;
    font-weight: 600;
    font-size: 2.0rem;
}
.contact_upper ul.member_list{
    padding-top: 0;
}
@media screen and (max-width: 768px) {
    .box.box_contact{
        padding: 70px 30px 30px 30px;
    }
    .contact_upper{
        padding: 30px 30px;
    }
    .contact_upper .contact_member_subtitle{
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 480px) {
    .box.box_contact{
        padding: 50px 20px 20px 20px;
    }
    .contact_upper{
        padding: 20px 20px;
    }
    .contact_upper .contact_member_subtitle{
        font-size: 1.2rem;
    }
}
/* =====================================
フォーム
======================================== */
/*チェックボックス基本カスタマイズ*/
input[type="checkbox"],
input[type="radio"]{
	opacity:0;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
}
label.check,
label.radio{
	position: relative;
	display: block;
	word-break: break-all;
	line-height: 1.4;
}
label.check input[type="checkbox"] + span,
label.radio input[type="radio"] + span{
	position: relative;
	padding: 0 10px 0 30px;
}
label.check.check_only {
	line-height: 1.0;
}
label.check.check_only input[type="checkbox"] + span{
	padding: 0 0 0 0;
}
label.check span,
label.radio span{
	display: inline-block;
}
label.check input[type="checkbox"],
label.radio input[type="radio"]{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
/*チェックボックス*/
label.check input[type="checkbox"] + span::before,
label.check input[type="checkbox"] + span::after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}
label.check input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: #FFF;
	width: 18px;
	height: 18px;
	border: 1px solid #A5A5A5;
	border-radius: 3px;
}
label.check input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 3px 6px;
	width: 6px;
	height: 10px;
}
label.check input[type="checkbox"]:checked + span::before {
	background-color: #171771;
	border: 1px solid #171771;
}
label.check input[type="checkbox"]:checked + span::after {
	border: 2px solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*ラジオボタン*/
label.radio input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 20px;
}
label.radio input[type="radio"] + span::before {
	z-index: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	width: 18px;
	height: 18px;
	border: 1px solid #A5A5A5;
}
label.radio input[type="radio"]:checked + span::before {
	border: 6px #171771 solid;
}
/*セレクトボックス基本カスタマイズ*/
.select_wrap{
	position: relative;
	/*display: inline-block;*/
}
.select_wrap::after {
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-bottom: solid 1px #171771;
	border-right: solid 1px #171771;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -6px;
	z-index: 2;
}
.select_wrap .select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 46px;
	position: relative;
	z-index: 1;
	padding: 0 40px 0 10px;
	border: 1px solid #A5A5A5;
	background: #FFF;
	color: #333;
	border-radius: 2px;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
/*テキスト系基本カスタマイズ*/
input[type="text"],input[type="email"],input[type="tel"],input[type="password"],textarea{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #A5A5A5;
	border-radius: 2px;
	padding: 0.5em 1em;
	width: 100%;
}

.box.box_form{
    padding: 50px 50px 100px 50px;
}
.box.box_form2{
    padding: 0px 50px 100px 50px;
}
.form_table{
	width: 100%;
	border-bottom: 1px solid #E5ECF6;
	line-height: 1.8;
}
.form_table th{
	width: 30%;
	border-top: 1px solid #E5ECF6;
	text-align: left;
	color: #171771;
	padding: 20px 10px;
	vertical-align: middle;
}
.form_table td{
	width: 70%;
	border-top: 1px solid #E5ECF6;
	padding: 20px 10px;
	position: relative;
}
.form_table.break td{
	word-break: break-all;
    white-space: pre-wrap;/*改行コードを有効にする*/
}
@media print, screen and (min-width: 769px) {
	.form_table ul.list_col2,
	.form_table ul.list_col3{
		display: flex;
		flex-wrap: wrap;
	}
	.form_table ul.list_col2 li{
		width: 50%;
		margin: 0.5em 0;
	}
	.form_table ul.list_col3 li{
		width: 33.333%;
		margin: 0.5em 0;
	}
}
.required{
	border: 1px solid #9A1E00;
	border-radius: 50px;
	color: #9A1E00;
	font-size: 1.2rem;
	font-weight: 300;
	padding: 0.1em 0.7em;
	margin-left: 1em;
}
.form_table .zip_wrap{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.form_table .zip_width{
	max-width: 200px;
}
.form_table .select_wrap.select_width{
	max-width: 300px;
}
.form_btn_area{
	margin-top: 50px;
	display: flex;
	justify-content: center;
}
.form_btn_area .btn_wrap{
	width: 100%;
	max-width: 460px;
    background: #171771;
    border: none;
    border-radius: 5px;
	text-align: center;
	line-height: 1;
	transition: all .3s;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}
.form_btn_area .btn_wrap:hover{
    background: #2E439F;
}
.form_btn_area .btn_wrap input[type="submit"]{
	text-decoration: none;
	display: block;
    border-radius: 5px;
	background: none;
    padding: 1.5em 0.5em;
	text-align: center;
	color: #FFF;
	font-weight: 600;
	width: 100%;
	line-height: 1;
}
.form_btn_area .btn_wrap_back{
	margin-right: 3em;
	width: 200px;
}
.form_btn_area .btn_wrap_back .btn{
	background: #666;
    color: #FFF;
    font-size: 1.6rem;
    border: none;
    padding: 1.5em 0.5em;
	transition: all .3s;
}
.form_btn_area .btn_wrap_back .btn:hover{
	background: #888;
}
.btn_top_area{
	max-width: 400px;
	margin: 70px auto auto;
}
.btn_top_area .btn{
	background: #171771;
    color: #FFF;
    font-size: 1.6rem;
    border: none;
    padding: 1.5em 0.5em;
	transition: all .3s;
}
.btn_top_area .btn:hover{
	background: #2E439F;
    border: none;
}
.form_thanks{
	margin: auto;
	border: 1px solid #E5ECF6;
	padding: 50px 50px;
	line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .box.box_form{
        padding: 30px 30px 70px 30px;
    }
    .box.box_form2{
        padding: 0px 30px 70px 30px;
    }
	.form_table th{
		display: block;
		width: 100%;
		padding: 15px 0 0 0;
	}
	.form_table td{
		display: block;
		width: 100%;
		border-top: none;
		padding: 15px 0px;
	}
	.form_table ul.list_col2 li,
	.form_table ul.list_col3 li{
		margin: 0.8em 0;
	}
	.required{
		font-size: 1.0rem;
	}
    .form_table .select_wrap.select_width{
		max-width: 100%;
    }
    .form_btn_area{
        margin-top: 30px;
    }
    .form_btn_area .btn_wrap_back{
        margin-right: 2em;
    }
    .form_btn_area .btn_wrap_back .btn{
        font-size: 1.2rem;
    }
    .btn_top_area{
        margin: 30px auto auto;
    }
    .btn_top_area .btn{
        font-size: 1.4rem;
    }
	.form_thanks{
		padding: 30px 20px;
	}
}
@media screen and (max-width: 480px) {
    .box.box_form{
        padding: 30px 20px 50px 20px;
    }
    .box.box_form2{
        padding: 0px 20px 50px 20px;
    }
}


/* =====================================
ページトップ
======================================== */
.page_top{
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 50px;
	z-index: 1000;
}
@media screen and (max-width: 768px) {
	.page_top{
		width: 30px;
	}
}
/* =====================================
フッター
======================================== */
footer{
    background: #17176C;
}
.footer_wrap{
    padding: 70px 50px;
    max-width: 1180px;
    margin: auto;
    font-size: 1.4rem;
    color: #FFF;
}
@media print, screen and (min-width: 769px) {
    .footer_wrap ul.footer_nav{
        display: flex;
        justify-content: center;
    }
    .footer_wrap ul.footer_nav li{
        padding: 0 1.5em;
    }
}
.footer_wrap ul.footer_nav li a{
    color: #FFF;
    text-decoration: none;
}
.footer_wrap ul.footer_nav li a:hover{
    text-decoration: underline;
}
.footer_wrap .f_logo{
    margin: 40px auto auto;
    max-width: 208px;
}
.footer_wrap .copy{
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #FFF;
}
@media screen and (max-width: 768px) {
    .footer_wrap{
        padding: 40px 20px;
        font-size: 1.2rem;
    }
    .footer_wrap ul.footer_nav li{
        text-align: center;
        padding-bottom: 0.5em;
    }
    .footer_wrap .f_logo{
        margin: 30px auto auto;
        max-width: 168px;
    }
    .footer_wrap .copy{
        font-size: 1.0rem;
        margin-top: 30px;
        padding-top: 30px;
    }
}
@media screen and (max-width: 768px) {
    .footer_wrap .f_logo{
        max-width: 148px;
    }
}