@charset "utf-8";

body {
	/*スマホで勝手に文字が大きくなる対策*/
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
#contents{
	width: 100%;
    padding-bottom: 0;
	background-color: #fff;
}

/*-----------------------------------------------------------
消す
-----------------------------------------------------------*/
.l-page * {
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

.l-page a {
    text-decoration: none;
}
.l-page a:hover {
    opacity: .8;
}
/*-----------------------------------------------------------

-----------------------------------------------------------*/
.l-page {
	padding-top: 51px;
	padding-bottom: 100px;
}
.pg_inner {
	width: 800px;
	margin: 0 auto;
}
.main_ttl {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 56px;
    letter-spacing: 0.2em;
    text-align: center;
    color: #12114a;
    margin-bottom: 54px;
    padding-left: 10px;
    line-height: 1.4;
}
.main_ttl span {
    display: block;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #12114a;
    line-height: 1;
}

/*------------------------------*/
.flow_ttl {
	display: flex;
	width: 810px;
	margin: 0 auto 50px;
	justify-content: space-between;
	position: relative;
	height: 59px;
}
.flow_arrow{
    color: #fff;
    font-size: 16px;
    height: 59px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}
.flow_arrow:nth-child(1) {
    background-image: url(../images/arrow_first.png);
    background-repeat: no-repeat;
    width: 278px;
    left: 0;
}
.flow_arrow:nth-child(2){
    background-image: url(../images/arrow_second.png);
    background-repeat: no-repeat;
    width: 278px;
    left: 271px;
}
.flow_arrow:nth-child(3){
    background-image: url(../images/arrow_third.png);
    background-repeat: no-repeat;
    width: 278px;
    right: 0;
}

/*----------------ここからフォーム--------------*/
.bkn_section {
    margin-bottom: 50px;
}
.customer_section {
    margin-bottom: 40px;
}
.form_subttl {
    font-size: 18px;
    color: #353465;
    font-weight: 500;
    padding-left: 10px;
    border-left: 3px solid #353465;
    height: 30px;
    display: flex;
    align-items: center;
}
.form_list {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E1E1E1;
    padding: 20px 0;
}
.form_list dt {
    width: 228px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.form_list dt span {
    width: 42px;
    height: 22px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 6px;
    padding-bottom: 2px;
}
.form_list dt span.required {
    background-color: #CC0000;
}
.form_list dt span.no-required {
    background-color: #164BA7;
}
.form_list dd {
    width: 572px;
}
.form_contents input[type=text],
.form_contents input[type=email],
.form_contents input[type=tel] {
    border: 1px solid #CCCCCC;
    height: 40px;
    font-size: 14px;
    border-radius: 3px;
    padding: 10px 20px;
    width: 572px;
}
.form_contents select {
    border: 1px solid #CCCCCC;
    height: 40px;
    font-size: 14px;
    border-radius: 3px;
    width: 100%;
    padding: 0 10px;
    margin-right: 10px;
    appearance: none;
    background-color: #fff;
    color: #333;
}
.form_contents input[type=text].width200,
.form_contents select.width200 {
    width: 200px;
}
.form_contents input[type=text].width250 {
    width: 250px;
}
.form_contents input[type=radio] {
    margin: 0px 8px 0px 0px;
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.select_flex {
    display: flex;
}
.select_arrow {
    position: relative;
}
.form_list .select_arrow:after{
    content: "";
    background-image: url(../images/arrow.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 11px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    pointer-events: none;
}

.form_radio {
    display: flex;
}
.form_radio label {
    display: flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
}
.form_attention {
    display: flex;
    align-items: flex-end;
}
.form_attention_text {
    margin-left: 8px;
    font-size: 13px;
}
.form_half input {
    margin-right: 10px;
}

.form_bottom_attention {
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.6px;
}
.form_btn a {
    width: 500px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #E28E12;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.form_kodate,
.form_land {
    display: none;
}
.l-page .formError {
    z-index: 0;
}

.form_radio input[type="radio"]:checked {
    background-image: url(../images/bt_radio_on.png);
}
.form_bottom_attention a {
    color: #164BA7;
    text-decoration: underline;
}

select.is-empty {
    color: #aaa!important;
}
textarea {
    padding: 10px 20px;
}