@charset "UTF-8";

/*-- --------- --------- --------- --*/
/*-- ヘッダー --*/
/*-- --------- --------- --------- --*/
header {
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}
header img {
    width: 80px;
}
@media screen and (max-width: 768px) {
    header {
        padding: 10px;
    }
    header img {
        width: 60px;
    }
}

/*-- --------- --------- --------- --*/
/*-- フッター --*/
/*-- --------- --------- --------- --*/

/*-- --------- --------- --------- --*/
/*-- フォーム --*/
/*-- --------- --------- --------- --*/
#mail_form {
    margin: 0 auto;
}
.form-inner h2 {
    font-size: 16px;
    position: relative;
}
.form-inner h2:before {
    content: "";
    display: block;
    width: 0;
    height: 50px;
    border: solid 1px var(--basic);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(-30deg);
}
.form-inner h2:after {
    content: "";
    display: block;
    width: 0;
    height: 50px;
    border: solid 1px var(--basic);
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(30deg);
}
.form-inner h2 b {
    font-size: 1.4em;
    position: relative;
    display: inline-block;
}
.form-inner h2 b.line:before {
    content: "";
    display: block;
    background: #ffff33;
    width: auto;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: -4px;
    right: -2px;
    z-index: -1;
    transform: skewX(-10deg);
}

.form {
    line-height: 1.7em;
    margin: 40px auto;
    padding: 0 16px;
    width: auto;
    max-width: 600px;
}
.form h2 {
    text-align: center;
    margin: 24px 0;
}
.form h2 i {
    display: inline-block;
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
}
.form table {
    font-size: 15px;
    width: 100%;
    border: none;
}
.form th {
    font-size: 14px;
    border-bottom: solid 1px #efefef;
    padding: 16px 8px 16px 0;
}
.form th > div {
    display: flex;
    justify-content: start;
    align-items: center;
}
.form th .name {
    white-space: nowrap;
}
.form th .need {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.0em;
    white-space: nowrap;
    display: inline-block;
    margin-left: 8px;
    padding: 4px 8px;
    background: #f33;
    border-radius: 20px;
}
.form .content-box span {
    display: block;
    margin: 8px 0 4px 0;
}
.form td {
    text-align: left;
    border-bottom: solid 1px #efefef;
    padding: 16px 0 16px 8px;
}
.form td.user_occupation_list {
    line-height: 1.0em;
}
.form td.user_occupation_list input {
    margin-right: 4px;
    height: auto;
    display: inline;
}
.form td input[type=radio] {
    border: solid 1px red;
    height: auto;
    margin: 0 4px;
}
.form td.user_occupation_list label {
    display: inline-block;
    margin: 8px;
    width: auto;
    height: auto;
    position: relative;
}
.form .w100 {
    width: 100%;
}
.form .w50 {
    width: 48%;
}
.form .w33 {
    width: 30%;
}
.form .w25 {
    width: 24%;
}
.form input,
.form select {
    font-size: 16px;
    line-height: 1.2em;
    border: #bebebe 1px solid;
    border-radius: 5px;
    padding: 8px;
    background: #ffffff;
    box-sizing: border-box;
}
.form select {
    background: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e) no-repeat right center / 20px 10px, #fff;
    padding-right: 30px;
}
.form .check_list {
    margin: 16px 0;
}
.form .check_list input {
    display: none;
}
.form .check_list span {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    margin: 2px 4px 0 0;
    position: relative;
    background: #cccccc;
}
.form .check_list span:after {
    content: "";
    display: block;
    width: 5px;
    height: 8px;
    transform: rotate(45deg);
    border-bottom: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 2px;
    margin: auto auto;
}
.form .check_list label {
    text-align: left;
    margin: 8px 0;
    align-items: baseline;
    display: flex;
    cursor: pointer;
}
.form .check_list input:checked + label span {
    background: #000;
}
.form .check_list label p {
    font-size: 14px;
    line-height: 1.3em;
    flex: 1;
    margin: 0;
}
.form .caution {
    margin: 16px 0;
}
.form .caution p {
    font-size: 12px;
    line-height: 1.3em;
    color: #ff3333;
    text-align: left;
    margin: 8px 0;
}
.form .caution p a {
    font-size: 12px;
    line-height: 1.3em;
}
a[href*=rule] {
    color: #004986;
    /*text-decoration: underline;*/
}
@media screen and (max-width: 768px) {
    .form h2 {
        margin: 16px 0;
    }
    .form th, .form td {
        display: block;
        padding: 0;
    }
    .form th {
        border: none;
        margin: 8px 0 4px 0;
    }
    .form td {
        padding-bottom: 8px;
    }
    .form .caution p {
        font-size: 10px;
    }

}

.form tr:last-child th,
.form tr:last-child td {
    border-bottom: none;
}
#partnerCodeOpen {
    padding-top: 8px;
    padding-bottom: 8px;
}
#partnerCodeOpen span {
    color: #004986;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
}
#partnerCodeOpen.done span {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
    cursor: inherit;
}
#partnerCodeOpen span:after {
    content: "をお持ちの方はこちら";
}
#partnerCodeOpen.done span:after {
    content: "";
}
/*-- パートナーコード入力 --
#download table {
    position: relative;
}
#partnerCode {
    display: none;
}
#partnerCodeOpen {
    color: #004986;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
    position: absolute;
    bottom: -30px;
    left: 0;
}
/*-- --------- --------- --------- --*/
/*-- その他 --*/
/*-- --------- --------- --------- --*/
.bottom-scroll-navi-detail {
    display: none;
}