@charset "UTF-8";
/* reset
----------------------------------------------- */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.8;
    vertical-align: baseline;
    background: transparent;
}

html {
    font-size: 62.5%;
}

body {
    color: #313131;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Noto Serif JP", serif;
    line-height: 1;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    h1,h2,h3,h4,h5,h6 {
        font-weight: 500;
    }
}

span {
    font-size: inherit;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}

ul {
    list-style: none;
}

blockquote,q {
    quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content: "";
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

a:link,a:visited {
    text-decoration: none;
}

a {
    color: inherit;
}

img {
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

ins {
    background-color: #ffff99;
    color: #000000;
    text-decoration: none;
}

mark {
    background-color: #ffff99;
    color: #000000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,select {
    vertical-align: middle;
}

html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*,*:before,*:after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

/* base
----------------------------------------------- */
.cursor,label {
    cursor: pointer;
}

input[type="text"],input[type="password"],input[type="email"],input[type="tel"],input[type="number"],select,textarea {
    width: 100%;
    padding: 20px;
    font-size: 13px;
    font-size: 1.3rem;
    border: solid 1px #cccccc;
    background-color: #ffffff;
    border-radius: 5px;
    line-height: 1;
    outline: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
}

input[type="submit"] {
    width: 100%;
    border: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* layout
----------------------------------------------- */
@media screen and (min-width: 769px) {
    .l-wrapper {
        min-width: 1000px;
    }
}

/* header
----------------------------------------------- */
/* footer
----------------------------------------------- */
.l-footer_copyright {
    display: block;
    height: 60px;
    padding: 22px;
    text-align: center;
    background-color: #434343;
    color: #b4b4b4;
    font-size: 9px;
    font-size: .9rem;
    letter-spacing: .1em;
}

/* button
----------------------------------------------- */
.c-btn a,.c-btn input {
    padding: 20px;
    background-color: #a27c49;
    color: #ffffff;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Noto Serif JP", serif;
    border-radius: 0;
    transition: opacity cubic-bezier(.165, .84, .44, 1) .3s;
}

.c-btn a:hover,.c-btn input:hover {
    opacity: .9;
}

.c-back {
    margin: 20px 0 0;
    text-align: center;
}

.c-back a {
    text-decoration: underline;
    color: #535353;
    font-size: 12px;
    font-size: 1.2rem;
}

.c-back a:hover {
    text-decoration: none;
}

.c-err {
    color: red;
}

.c-err_box {
    text-align: center;
    color: red;
    margin-bottom: 20px;
}

/* checkbox
----------------------------------------------- */
/*input custom*/
input.c-checkItem {
    display: none;
}

input.c-checkItem + label {
    padding: 0 0 0 30px;
    position: relative;
}

input.c-checkItem + label::before,input.c-checkItem + label::after {
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

input.c-checkItem + label::before {
    left: 0;
    border: solid 1px #cccccc;
    background-color: #ffffff;
    border-radius: 3px;
}

input.c-checkItem:disabled + label::before {
    opacity: .3;
}

input.c-checkItem + label::after {
    left: 0;
}

input.c-checkItem:checked + label::after {
    background: url(../images/common/icon_check.png) center center no-repeat;
    background-size: 18px auto;
}

/* course
----------------------------------------------- */
.c-courseCard {
    padding: 35px 0 45px;
    text-align: center;
    position: relative;
    top: 0;
    background-color: #ffffff;
    transition: all cubic-bezier(.165, .84, .44, 1) .3s;
    border-radius: 3px;
}

@media screen and (min-width: 769px) {
    .c-courseCard {
        box-shadow: 0 25px 40px rgba(85, 46, 5, .25);
    }
}

@media screen and (max-width: 768px) {
    .c-courseCard {
        height: 105px;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(85, 46, 5, .1);
    }
}

.c-courseCard.is-active {
    z-index: 2;
}

@media screen and (min-width: 769px) {
    .c-courseCard.is-active {
        border: solid 1px #e2e315;
        top: -10px;
        box-shadow: 0 25px 40px rgba(85, 46, 5, .35);
    }
}

@media screen and (max-width: 768px) {
    .c-courseCard.is-active {
        box-shadow: 0 10px 20px rgba(85, 46, 5, .2);
    }
}

.c-courseCard input {
    display: none;
}

.c-courseCard label {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.c-courseCard_inner:before,.c-courseCard_inner:after,.c-courseCard:before,.c-courseCard:after {
    content: "";
    display: block;
    background-color: #e2e315;
    position: absolute;
    transition: all cubic-bezier(.165, .84, .44, 1) .3s;
}

.c-courseCard:before {
    width: 1px;
    height: 0;
    right: 0;
    top: 0;
}

.c-courseCard:after {
    width: 0;
    height: 1px;
    left: 0;
    top: 0;
}

.c-courseCard_inner:before {
    width: 1px;
    height: 0;
    left: 0;
    bottom: 0;
}

.c-courseCard_inner:after {
    width: 0;
    height: 1px;
    right: 0;
    bottom: 0;
}

.c-courseCard.is-active::before,.c-courseCard.is-active .c-courseCard_inner::before {
    height: 100%;
}

.c-courseCard.is-active::after,.c-courseCard.is-active .c-courseCard_inner::after {
    width: 100%;
}

.c-courseCard_head {
    padding: 0 0 20px;
    margin: 0 0 20px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .c-courseCard_head {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 0 10px;
        margin: 0 0 10px;
    }
}

.c-courseCard_head::after {
    content: "";
    display: block;
    width: 65%;
    height: 1px;
    border-top: dashed 1px #000000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.c-courseCard_logo {
    transition: transform cubic-bezier(.165, .84, .44, 1) .2s;
}

@media screen and (min-width: 769px) {
    .c-courseCard_logo {
        width: 120px;
        margin: 0 auto 15px;
    }
}

@media screen and (max-width: 768px) {
    .c-courseCard_logo {
        width: 25px;
    }
}

@media screen and (min-width: 769px) {
    .c-courseCard.is-active .c-courseCard_logo {
        transform: scale(1.2);
    }
}

.c-courseCard_name {
    display: inline-block;
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1;
    font-weight: 600;
    color: #535353;
    transition: transform cubic-bezier(.165, .84, .44, 1) .2s;
}

@media screen and (min-width: 769px) {
    .c-courseCard_name {
        margin: 0 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .c-courseCard_name {
        margin: 0 5px 0 10px;
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.c-courseCard.is-active .c-courseCard_name {
    color: #000000;
}

@media screen and (min-width: 769px) {
    .c-courseCard.is-active .c-courseCard_name {
        transform: scale(1.2);
    }
}

.c-courseCard:hover .c-courseCard_name {
    color: #000000;
}

.c-courseCard_nameJa {
    font-size: 13px;
    font-size: 1.3rem;
    color: #535353;
    font-weight: 400;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .c-courseCard_nameJa {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.c-courseCard_price {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1;
    white-space: nowrap;
    color: #535353;
}

@media screen and (min-width: 769px) {
    .c-courseCard_price {
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .c-courseCard_price {
        font-size: 20px;
        font-size: 2rem;
    }
}

.c-courseCard:hover .c-courseCard_price,.c-courseCard.is-active .c-courseCard_price {
    color: #000000;
}

.c-courseCard_price span {
    line-height: inherit;
}

@media screen and (min-width: 769px) {
    .c-courseCard_price_mark {
        margin: 0 0 0 15px;
        font-size: 20px;
        font-size: 2rem;
    }
}

.c-courseCard_price_tax {
    font-size: 10px;
    font-size: 1rem;
}

.c-courseCard_sendTxt {
    display: inline-block;
    padding: 0 0 0 25px;
    font-size: 12px;
    font-size: 1.2rem;
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #535353;
    position: relative;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .c-courseCard_sendTxt {
        position: absolute;
        left: 5%;
        top: 0;
        bottom: 0;
        margin: auto;
        text-indent: -9999px;
    }
}

.c-courseCard:hover .c-courseCard_sendTxt {
    text-decoration: none;
}

.c-courseCard.is-active .c-courseCard_sendTxt {
    color: #959595;
    text-decoration: none;
}

.c-courseCard_sendTxt::before,.c-courseCard_sendTxt::after {
    content: "";
    display: block;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all cubic-bezier(.165, .84, .44, 1) .3s;
}

.c-courseCard_sendTxt::before {
    width: 20px;
    height: 20px;
    left: 0;
    border: solid 1px #d2d2d2;
}

.c-courseCard.is-active .c-courseCard_sendTxt::before {
    border: solid 1px #996c33;
}

.c-courseCard_sendTxt::after {
    width: 12px;
    height: 12px;
    left: 4px;
    background-color: #e5e5e5;
}

.c-courseCard.is-active .c-courseCard_sendTxt::after {
    background-color: #996c33;
}

.-under .c-courseCard {
    padding: 15px 0 25px;
}

.-under .c-courseCard .c-courseCard_head {
    padding: 0 0 20px;
    margin: 0 0 20px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .-under .c-courseCard .c-courseCard_head {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
        margin: 0px;
    }
}

.-under .c-courseCard .c-courseCard_head::after {
    display: none;
}

@media screen and (max-width: 768px) {
    .-under .c-courseCard {
        height: 100%;
        padding: 15px 0px;
    }
}

.c-courseCard_radio ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.c-courseCard_radio ul li {
    padding: 0 20px;
    margin: 10px 0 50px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .c-courseCard_radio ul li {
        padding: 0;
        margin: 0 0 40px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .c-courseCard_radio ul {
        margin-top: 30px;
    }
}

.c-courseCard_radio label {
    padding: 20px 20px 20px 48px;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: bold;
    color: #535353;
    position: relative;
    border-radius: 100vh;
    background-color: #ffffff;
    transition: all cubic-bezier(.165, .84, .44, 1) .3s;
    font-size: 11px;
    font-size: 1.1rem;
}

@media screen and (min-width: 769px) {
    .c-courseCard_radio label {
        box-shadow: 0 25px 40px rgba(85, 46, 5, .25);
    }
}

@media screen and (max-width: 768px) {
    .c-courseCard_radio label {
        width: 100%;
    }
}

.c-courseCard_radio .is-active label {
    z-index: 2;
}

@media screen and (min-width: 769px) {
    .c-courseCard_radio .is-active label {
        border: solid 1px #e2e315;
        top: -10px;
        box-shadow: 0 25px 40px rgba(85, 46, 5, .35);
    }
}

@media screen and (max-width: 768px) {
    .c-courseCard_radio .is-active label {
        border: solid 1px #e2e315;
        box-shadow: 0 10px 20px rgba(85, 46, 5, .2);
    }
}

.c-courseCard_radio input.c-radio {
    display: none;
}

.c-courseCard_radio input.c-radio + label::before,.c-courseCard_radio input.c-radio + label::after {
    content: "";
    display: block;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.c-courseCard_radio input.c-radio + label::before {
    width: 20px;
    height: 20px;
    left: 20px;
    border: solid 1px #d2d2d2;
    background-color: #ffffff;
}

.c-courseCard_radio input.c-radio + label::after {
    width: 12px;
    height: 12px;
    left: 24px;
    background-color: #e5e5e5;
}

.c-courseCard_radio input.c-radio:checked + label::before {
    border: solid 1px #996c33;
    background-color: #ffffff;
}

.c-courseCard_radio input.c-radio:checked + label::after {
    background-color: #996c33;
}

/* pagetop
----------------------------------------------- */
.c-pagetop {
    opacity: 0;
    position: fixed;
    bottom: 150px;
    z-index: 2;
    transition: opacity cubic-bezier(.165, .84, .44, 1) .3s;
}

@media screen and (min-width: 769px) {
    .c-pagetop.is-on {
        opacity: 1;
        cursor: pointer;
    }
}

@media screen and (max-width: 768px) {
    .c-pagetop {
        display: none;
    }
}

.c-pagetop_txt {
    position: relative;
    line-height: 1;
    color: rgba(0, 0, 0, .4);
    font-weight: 700;
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: .1em;
    white-space: nowrap;
    transform: rotate(90deg) translateY(-1em);
    transform-origin: left top;
}

.c-pagetop_txt::before,.c-pagetop_txt::after {
    content: "";
    display: block;
    background-color: #b5b5b5;
    position: absolute;
}

.c-pagetop_txt::before {
    width: 20px;
    height: 1px;
    bottom: 0;
    left: -30px;
}

.c-pagetop_txt::after {
    width: 1px;
    height: 10px;
    bottom: 1px;
    left: -30px;
    transform: rotate(60deg);
    transform-origin: left bottom;
}

/* contract
----------------------------------------------- */
.p-contract_head {
    margin-bottom: 50px;
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    .p-contract_head {
        margin-bottom: 10%;
        padding-top: 30px;
    }
}

.p-contract_logo {
    width: 200px;
    margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
    .p-contract_logo {
        width: 140px;
    }
}

.p-contract_ttl {
    text-align: center;
    font-size: 25px;
    font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
    .p-contract_ttl {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media screen and (max-width: 500px) {
    .p-contract_ttl {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.p-contract_section {
    padding-top: 70px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .p-contract_section {
        padding-top: 30px;
        padding-bottom: 50px;
    }
}

.p-contract_section_inner {
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .p-contract_section_inner {
        padding: 0 8%;
    }
}

.lines {
    display: flex;
    justify-content: space-around;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

@media screen and (max-width: 768px) {
    .lines {
        display: none;
    }
}

.line {
    display: block;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, .025);
}

.l-main > .lines {
    min-width: 1000px;
    z-index: -1;
}

.p-contract_section_ttl {
    margin: 0 auto 40px;
    width: 850px;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .p-contract_section_ttl {
        margin: 0 0 20px;
        width: 100%;
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.p-contract_section_ttl span {
    display: inline-block;
}

@media screen and (min-width: 769px) {
    .p-contract_section_ttl input.c-checkItem + label {
        margin-left: -30px;
    }
}

.p-contract_section_ttl.u-title {
    margin-bottom: -20px;
}

.p-contract_section_ttl_top {
    font-size: 20px;
    font-size: 2rem;
    line-height: inherit;
}

.p-contract_section_ttl_under {
    display: block !important;
    margin-top: 30px;
    font-size: 30px;
    font-size: 3rem;
    line-height: inherit;
}

.p-contract_section_ttl_num {
    display: block !important;
    font-size: 30px;
    font-size: 3rem;
    font-style: italic;
    line-height: inherit;
}

.p-contract_section_ttl_check {
    margin: 0 auto 40px;
    width: 630px;
    display: flex;
    font-size: 18px;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .p-contract_section_ttl_check {
        margin: 0 0 20px;
        width: 100%;
        font-size: 15px;
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 769px) {
    .p-contract_section_ttl_check input.c-checkItem + label {
        margin-left: -30px;
    }
}

@media screen and (min-width: 769px) {
    .p-contract_section_cont {
        width: 770px;
        margin: 0 auto;
    }
}

.p-contract_section_cont .p-checkbox_area {
    padding: 20px 0 0 0;
    text-align: center;
}

.p-contract_section_cont p {
    margin-bottom: 8px;
    line-height: 1.8;
}

.p-contract_section_cont p em {
    display: none;
    color: #ffffff;
}

.p-contract_section_cont p br {
    display: none;
}

.p-contract_section_txt {
    line-height: 2;
    text-align: justify;
}

.p-contract_section_list li {
    margin: 0 0 8px;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .p-contract_section_list li {
        margin: 0 0 3px;
    }
}

.p-contract_section_list li::before {
    content: "・";
}

.p-contract_section_list p {
    margin: 0 0 8px;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.8;
}

.p-contract_section_list p em {
    display: none;
    color: #ffffff;
}

.p-contract_section_list p br {
    display: none;
}

.p-contract_section_list.-number p {
    padding-left: 3em;
    text-indent: -3em;
}

.p-contract_section_list.-number p.-non_indent {
    padding-left: 0em;
    text-indent: 0em;
}

.p-contract_course {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 11;
}

.p-contract_course .p-contract_section_ttl {
    margin: 0 auto 20px;
}

.p-contract_course_note {
    margin: 0 0 60px;
    text-align: center;
    color: #535353;
    font-size: 13px;
    font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
    .p-contract_course_note {
        margin: 0 0 30px;
    }
}

.p-contract_course_note span {
    margin-right: .5em;
    color: #b51800;
}

@media screen and (min-width: 769px) {
    .p-contract_course_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .p-contract_course_list {
        position: relative;
    }
    .p-contract_course_list::after {
        content: "";
        display: block;
        background: #f3f2ec;
        width: 119%;
        height: 500px;
        position: absolute;
        left: -9.5%;
        top: 52.5px;
        z-index: -1;
    }
}

@media screen and (min-width: 769px) {
    .p-contract_course_list .c-courseCard {
        flex: 1;
        max-width: 350px;
        margin: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .p-contract_course_list .c-courseCard {
        width: 100%;
        margin: 0 0 10px;
    }
}

.p-contract_course_list.-under {
    margin: 0 0 40px;
}

.p-contract_section_1 {
    padding-top: 0;
    padding-bottom: 100px;
    z-index: 11;
}

.p-contract_section_2,.p-contract_section_4,.p-contract_section_6,.p-contract_section_8,.p-contract_section_10,.p-contract_section_12,.p-contract_section_14,.p-contract_section_16 {
    background-color: #f3f2ec;
}

@media screen and (min-width: 769px) {
    .p-contract_section_2 {
        margin: -142px 0 0;
        padding-top: 242px;
    }
}

@media screen and (min-width: 769px) {
    .p-contract_section_2.-slim {
        margin: 0;
        padding-top: 70px;
    }
}

.p-contract_section_3,.p-contract_section_5,.p-contract_section_7,.p-contract_section_9,.p-contract_section_11,.p-contract_section_13,.p-contract_section_15,.p-contract_section_17 {
    background-color: #f9f9f5;
}

.p-contract_section_5 {
    padding-bottom: 150px;
}

@media screen and (max-width: 768px) {
    .p-contract_section_5 {
        padding-bottom: 100px;
    }
}

.p-contract_kiyaku {
    height: 450px;
    margin: 0 0 30px;
    padding: 30px 50px;
    overflow: auto;
    background-color: #ffffff;
    border: solid 1px #e5e5e5;
}

@media screen and (max-width: 768px) {
    .p-contract_kiyaku {
        margin: 0 0 20px;
        padding: 30px;
    }
}

.p-contract_kiyaku .p-contract_section_txt {
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
    .p-contract_kiyaku .p-contract_section_txt {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

.p-contract_kiyaku_inner {
    padding: 0 0 50px;
}

.p-contract_kiyaku_inner em,.p-contract_kiyaku_inner br {
    display: none;
}

.p-contract_kiyaku_inner em.-disp,.p-contract_kiyaku_inner br.-disp {
    display: block;
}

.p-contract_kiyaku_inner h5 {
    margin: 30px 0 20px;
    font-size: 1.5rem;
    font-weight: 400;
}

.p-contract_kiyaku_inner p {
    margin-bottom: 10px;
}

.p-contract_kiyaku_inner.-mgb h4 {
    margin: 0 0 30px;
}

p.-line {
    margin-left: 1em;
    /* ブロック全体を 1em 右に */
    text-indent: -1em;
    /* 先頭の1文字のみ 1em 左に */
}

p.-wline {
    margin-left: 2em;
    /* ブロック全体を 2em 右に */
    text-indent: -2em;
    /* 先頭の1文字のみ 2em 左に */
}

p.-lline {
    margin-left: 3em;
    /* ブロック全体を 2em 右に */
    text-indent: -3em;
    /* 先頭の1文字のみ 2em 左に */
}

.-line_wsp {
    margin-left: 1em;
    /* ブロック全体を 2em 右に */
}

.-wline_wsp {
    margin-left: 2em;
    /* ブロック全体を 2em 右に */
}

.-lline_wsp {
    margin-left: 3em;
    /* ブロック全体を 2em 右に */
}

.-wsp {
    margin-left: 2em;
    /* ブロック全体を 1em 右に */
}

.p-contract_kiyaku_check {
    text-align: center;
}

.p-contract_section_5 .p-formArea {
    margin: 50px 0 0;
}

.p-contract-confirm .p-contract_section {
    padding-top: 0;
}

.p-contract-confirm .p-contract_section::before {
    content: "";
    display: block;
    background-color: #f3f2ec;
    width: 100%;
    height: calc(100% - 220px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .p-contract-confirm .p-contract_section::before {
        height: calc(100% - 35vw);
    }
}

@media screen and (max-width: 768px) {
    .p-contract-confirm .p-contract_section_inner {
        padding: 0 5%;
    }
}

.p-contract_confirm_box {
    max-width: 770px;
    margin: 0 auto;
    padding: 50px 8% 80px;
    background-color: #ffffff;
    box-shadow: 0 25px 40px rgba(85, 46, 5, .25);
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
    .p-contract_confirm_box {
        padding: 5% 10% 50px;
    }
}

.p-contract_confirm_list {
    margin: 0 0 20px;
}

.p-contract_confirm_item {
    padding: 25px 0;
}

.p-contract_confirm_item:not(:last-child) {
    border-bottom: dashed 1px #000000;
}

.p-contract_confirm_item_ttl {
    margin: 0 0 10px;
    font-size: 11px;
    font-size: 1.1rem;
    color: #535353;
    line-height: 1;
}

.p-contract_confirm_item_ttl .-indent {
    padding-left: 1.25em;
    text-indent: -1.25em;
}

.p-contract_confirm_item_cont {
    word-wrap: break-word;
}

.p-contract_confirm_item-course .p-contract_confirm_item_cont strong {
    margin: 0 .5em 0 0;
    font-size: 18px;
    font-size: 1.8rem;
}

.p-contract_confirm_item-course .p-contract_confirm_item_cont .courseName {
    margin: 0 1em 0 0;
}

@media screen and (max-width: 768px) {
    .p-contract_confirm_item-course .p-contract_confirm_item_cont .coursePrice {
        display: inline-block;
    }
}

.p-contract_confirm_item-course .p-contract_confirm_item_cont .coursePriceTax {
    font-size: 12px;
    font-size: 1.2rem;
}

body.complete .l-content {
    height: calc(100vh - 60px);
    min-height: 600px;
}

@media screen and (max-width: 768px) {
    body.complete .l-content {
        min-height: 400px;
    }
}

.p-contract-complete .p-contract_section {
    padding-top: 0;
}

.p-contract-complete_msg {
    max-width: 770px;
    margin: 0 auto;
    text-align: left;
}

.p-urls li {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .p-urls li {
        padding: 0 10px;
    }
}

.p-urls li div {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .p-urls li div {
        flex-wrap: wrap;
    }
}

.p-urls li div button {
    font-size: 1rem;
    border: none;
    border-radius: 100vh;
    margin: 0 20px;
    padding: 3px 10px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .p-urls li div button {
        margin-top: 10px;
    }
}

.p-urls h2 {
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.p-urls p {
    font-size: 1.5rem;
}

.p-urls p a {
    text-decoration: underline;
    color: #2a64c3;
}

.p-urls p a i {
    font-size: 1.2rem;
    margin: 0 5px;
}

.p-urls p a:hover {
    text-decoration: none;
}

/* formArea
----------------------------------------------- */
.p-formArea .c-btn {
    margin: 50px 0 0;
}

@media screen and (max-width: 768px) {
    .p-formArea .c-btn {
        margin: 30px 0 0;
    }
}

.p-formArea_item {
    margin: 0 0 30px;
}

@media screen and (min-width: 769px) {
    .p-formArea_item {
        display: flex;
        align-items: flex-start;
    }
}

.p-formArea_item_ttl {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 769px) {
    .p-formArea_item_ttl {
        justify-content: space-between;
        width: 200px;
        padding: 17px 20px;
    }
}

@media screen and (max-width: 768px) {
    .p-formArea_item_ttl {
        margin: 0 0 10px;
        font-weight: 500;
    }
}

.p-formArea_item_required {
    display: block;
    padding: 5px;
    border-radius: 3px;
    background-color: #b51800;
    color: #ffffff;
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: .1em;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .p-formArea_item_required {
        margin: 0 0 0 10px;
    }
}

.p-formArea_item_inp_item:not(:first-child) {
    margin: 10px 0 0;
}

@media screen and (max-width: 768px) {
    .p-formArea_item_inp_item:not(:first-child) {
        margin: 6px 0 0;
    }
}

.p-formArea_item_inp {
    flex: 1;
}

@media screen and (min-width: 769px) {
    .p-formArea_item_inp_item-yubin input {
        width: 50%;
    }
}

.txt-right {
    text-align: right;
}

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

@media screen and (max-width: 768px) {
    .u-pc {
        display: none;
    }
}

.u-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .u-sp {
        display: block;
    }
}

input.error {
    border: 1px solid red;
}

label.error {
    display: block;
    color: red;
}

.u-pdT5 {
    padding-top: 5px !important;
}

.u-pdT10 {
    padding-top: 10px !important;
}

.u-pdT15 {
    padding-top: 15px !important;
}

.u-pdT20 {
    padding-top: 20px !important;
}

.u-pdT25 {
    padding-top: 25px !important;
}

.u-pdT30 {
    padding-top: 30px !important;
}

.u-pdT35 {
    padding-top: 35px !important;
}

.u-pdT40 {
    padding-top: 40px !important;
}

.u-pdT45 {
    padding-top: 45px !important;
}

.u-pdT50 {
    padding-top: 50px !important;
}

.u-pdT55 {
    padding-top: 55px !important;
}

.u-pdT60 {
    padding-top: 60px !important;
}

.u-pdT65 {
    padding-top: 65px !important;
}

.u-pdT70 {
    padding-top: 70px !important;
}

.u-pdT75 {
    padding-top: 75px !important;
}

.u-pdT80 {
    padding-top: 80px !important;
}

.u-pdB5 {
    padding-bottom: 5px !important;
}

.u-pdB10 {
    padding-bottom: 10px !important;
}

.u-pdB15 {
    padding-bottom: 15px !important;
}

.u-pdB20 {
    padding-bottom: 20px !important;
}

.u-pdB25 {
    padding-bottom: 25px !important;
}

.u-pdB30 {
    padding-bottom: 30px !important;
}

.u-pdB35 {
    padding-bottom: 35px !important;
}

.u-pdB40 {
    padding-bottom: 40px !important;
}

.u-pdB45 {
    padding-bottom: 45px !important;
}

.u-pdB50 {
    padding-bottom: 50px !important;
}

.u-pdB55 {
    padding-bottom: 55px !important;
}

.u-pdB60 {
    padding-bottom: 60px !important;
}

.u-pdB65 {
    padding-bottom: 65px !important;
}

.u-pdB70 {
    padding-bottom: 70px !important;
}

.u-pdB75 {
    padding-bottom: 75px !important;
}

.u-pdB80 {
    padding-bottom: 80px !important;
}

.u-mgT5 {
    margin-top: 5px !important;
}

.u-mgT10 {
    margin-top: 10px !important;
}

.u-mgT15 {
    margin-top: 15px !important;
}

.u-mgT20 {
    margin-top: 20px !important;
}

.u-mgT25 {
    margin-top: 25px !important;
}

.u-mgT30 {
    margin-top: 30px !important;
}

.u-mgT35 {
    margin-top: 35px !important;
}

.u-mgT40 {
    margin-top: 40px !important;
}

.u-mgT45 {
    margin-top: 45px !important;
}

.u-mgT50 {
    margin-top: 50px !important;
}

.u-mgT55 {
    margin-top: 55px !important;
}

.u-mgT60 {
    margin-top: 60px !important;
}

.u-mgT65 {
    margin-top: 65px !important;
}

.u-mgT70 {
    margin-top: 70px !important;
}

.u-mgT75 {
    margin-top: 75px !important;
}

.u-mgT80 {
    margin-top: 80px !important;
}

.u-mgB5 {
    margin-bottom: 5px !important;
}

.u-mgB10 {
    margin-bottom: 10px !important;
}

.u-mgB15 {
    margin-bottom: 15px !important;
}

.u-mgB20 {
    margin-bottom: 20px !important;
}

.u-mgB25 {
    margin-bottom: 25px !important;
}

.u-mgB30 {
    margin-bottom: 30px !important;
}

.u-mgB35 {
    margin-bottom: 35px !important;
}

.u-mgB40 {
    margin-bottom: 40px !important;
}

.u-mgB45 {
    margin-bottom: 45px !important;
}

.u-mgB50 {
    margin-bottom: 50px !important;
}

.u-mgB55 {
    margin-bottom: 55px !important;
}

.u-mgB60 {
    margin-bottom: 60px !important;
}

.u-mgB65 {
    margin-bottom: 65px !important;
}

.u-mgB70 {
    margin-bottom: 70px !important;
}

.u-mgB75 {
    margin-bottom: 75px !important;
}

.u-mgB80 {
    margin-bottom: 80px !important;
}
