@charset "utf-8";

/* reset
---------------------------------------- */
/* html */
html {
    overflow-x: hidden;
    overflow-y: scroll;
}

/* body */
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}


/* header
---------------------------------------- */
.header {
    padding: 25px 10px;
    height: 100px;
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 1;
}
@media screen and (max-width:980px) {
    .header {
        height: initial;
    }
}
@media screen and (max-width:640px) {
    .header {
        height: 70px;
        padding: 10px 10px;
    }
}

/* brand */
.brand {
    margin: 0;
    line-height: 1;
}
.brand__image {
    height: 50px;
}
.brand__image--sp {
    display: none;
}
@media screen and (max-width:1200px) {
    .brand {
        width: 30%;
    }
    .brand__image {
        height: 45px;
    }
}
@media screen and (max-width:1024px) {
    .brand {
        display: inline-block;
        width: auto;
    }
}
@media screen and (max-width: 768px) {
    .brand__image--pc {
        display: none;
    }
    .brand__image--sp {
        display: block;
    }
}
@media screen and (max-width:640px) {
    .brand {
        width: 65%;
    }
}


/* cover
---------------------------------------- */
.cover {
    background-color: #F7F7F7;
}
.cover__heading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1220px;
    height: 300px;
    font-size: 48px;
    position: relative;
}
.cover__heading::before {
    display: inline-block;
    content: "";
    width: 150px;
    height: 150px;
    margin-right: 25px;
    background: url(/oracle/files/bg_heading_01.png) no-repeat center top 50%;
    background-size: cover;
}
@media screen and (max-width:980px) {
    .cover {
        margin-top: -6px;
    }
}
@media screen and (max-width:768px) {
    .cover {
        margin-top: -7px;
    }
    .cover__heading {
        height: 240px;
        font-size: 36px;
    }
    .cover__heading::before {
        width: 120px;
        height: 120px;
    }
}
@media screen and (max-width:640px) {
    .cover {
        margin-top: initial;
    }
    .cover__heading {
        height: 150px;
        font-size: 28px;
    }
    .cover__heading::before {
        width: 90px;
        height: 90px;
        margin-right: 10px;
    }
}


/* contents
---------------------------------------- */
.contents__inner {
    margin: 0 auto;
    padding: 100px 10px;
    max-width: 1220px;
}
.contents__inner > *:first-child {
    margin-top: 0;
}
.contents__inner > *:last-child {
    margin-bottom: 0;
}
@media screen and (max-width:640px) {
    .contents__inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* list-step */
.list-step {
    display: flex;
    margin: 0 0 50px;
    padding: 0;
    list-style: none;
}
.list-step + ul {
    margin: 0 auto;
}
.list-step__item {
    width: calc(100% / 3);
    height: 80px;
    background-color: #f2f2f2;
    color: #666;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
    position: relative;
}
.list-step__item::before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border: 40px solid transparent;
    border-left-color: #f2f2f2;
    position: absolute;
    z-index: 3;
    top: 0;
    right: -75px;
}
.list-step__item::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border: 46px solid transparent;
    border-left-color: #fff;
    position: absolute;
    z-index: 2;
    top: -6px;
    right: -87px;
}
.list-step__item:last-child::before {
    display: none;
}
.list-step__item:last-child::after {
    display: none;
}
.list-step__item[aria-current="step"] {
    background-color: #ed1c24;
    color: #fff;
}
.list-step__item[aria-current="step"]::before {
    border-left-color: #ed1c24;
}
.list-step__number {
    margin-right: 1em;
}
@media screen and (max-width:768px) {
    .list-step__item {
        height: 60px;
        font-size: 18px;
        line-height: 60px;
    }
    .list-step__item::before {
        border: 30px solid transparent;
        border-left-color: #f2f2f2;
        right: -55px;
    }
    .list-step__item::after {
        border: 36px solid transparent;
        border-left-color: #fff;
        right: -67px;
    }
}
@media screen and (max-width:640px) {
    .list-step { margin: 0 0 30px;}
    .list-step__item {
        height: 40px;
        font-size: 12px;
        line-height: 40px;
    }
    .list-step__item::before {
        border-width: 20px 0 20px 10px;
        right: -10px;
    }
    .list-step__item::after {
        border-width: 26px 0px 26px 13px;
        right: -13px;
    }
    .list-step__item + .list-step__item {
        padding-left: 10px;
    }
}


/* footer
---------------------------------------- */
.footer__inner {
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1220px;
}

/* operation */
.operation {
    padding-top: 60px;
    padding-bottom: 60px;
	text-align: center;
}
@media screen and (max-width:980px){
	.operation {
		margin: 0 0 50px 0;
		text-align: center;
	}
}
@media screen and (max-width:640px) {
	.operation {
    	padding-top: 0;
    	padding-bottom: 0;
	}
}

/* copyright */
.copyright {
    display: block;
    padding-bottom: 20px;
    text-align: center;
    font-size: 12px;
    line-height: 28px;
    color: #333333;/* Black-080 */
}


/* A-Form
---------------------------------------- */
.aform-header { display: none;}

/* validation */
.aform-validation { display: none;}

/* required */
#aform-confirm-form .aform-required { display: none;}

/* msg */
#aform_confirm_msg { display: none;}

/* form */
 .aform-content {
    margin: 50px 0 0;
}

 .aform-content dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 0;
    margin: 0 auto;
}
 .aform-content dl:not(.h-adr dl):last-of-type {
    border-bottom: 1px solid #4d4d4d;
}

.aform-content dl dd {
    margin: 0;
}

 .aform-content dt {
    width: 17em;
    padding: 30px 75px 30px 30px;
    border: 1px solid #4d4d4d;
    border-bottom: none;
    background-color: #f2f2f2;
    text-align: right;
    position: relative;
}

 .aform-content dd {
    width: calc(100% - 17em);
    padding: 30px 50px;
    margin: 0;
    border: 1px solid #4d4d4d;
    border-left: none;
    border-bottom: none;
}

 .aform-content dd input {
    border: 1px solid #4d4d4d;
    background-color: #fafafa;
}    

/* required-tag */
 .aform-required {
    padding: 5px 10px 6px;
    margin-left: 0;
    font-size: 12px;
    border-radius: 0;
    position: absolute;
    top: 33px;
    right: 20px;
}

 .aform-button-area input {
    width: 430px;
    padding: 19px 0;
    margin: 50px auto 0;
    border: none;
    background: #ed1c24 url(../files/ico_arrow_white_right_01.svg) no-repeat right 40px center;
    background-size: 30px auto;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
/* txt-area */
 .aform-input[type="text"], .aform-text, .aform-email, .aform-password, .aform-tel, .aform-url, .aform-number, .aform-date, .aform-time, .aform-textarea, .aform-select, .aform-name, .aform-kana, .aform-zipcode, .aform-prefecture, .aform-calendar {
    background-color: #fafafa;
}

/* radio */
 .aform-input.aform-radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    margin: 0;
    width: 0;
    height: 0;
}

.aform-radio:not(:first-child) {
    margin-left: 2em;
}

.aform-radio-ul label {
    display: inline-block;
    position: relative;
    padding-left: 35px;
}

 .aform-radio-ul li {
    margin-right: 5em;
}

 .aform-radio-ul li:last-child {
    margin-right: 0;
}

.aform-radio-ul label::before {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    border: solid 1px #b3b3b3;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    background: #ffffff;
}

.aform-radio:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 4px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background: #ed1c24;
}

.aform-radio:focus +label::before {
    outline: currentColor dotted 1px;
    outline: -webkit-focus-ring-color auto 1px;
}

/* checkbox */
.aform-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none !important;
    margin: 0;
    width: 0;
    height: 0;
    background-color: transparent !important;
}
.aform-checkbox + label {
    display: inline-block;
    position: relative;
    padding-left: 29px;
}
.aform-checkbox + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    border: solid 1px #b3b3b3;/* k030 */
    width: 24px;
    height: 24px;
    background: #ffffff;
}
.aform-checkbox:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    border-right: solid 4px  #ed1c24;/* red */
    border-bottom: solid 4px  #ed1c24;/* red */
    height: 18px;
    width: 11px;
    transform: rotate(45deg);
}
.aform-checkbox:focus + label::before {
    outline: currentColor dotted 1px;
    outline: -webkit-focus-ring-color auto 1px;
}

/* submit-button */
 .aform-button-area {
    padding: 0;
    margin: 0;
    background: transparent;
    background-size: 30px auto;
}

 .aform-button-area input:hover {
    opacity: .5;
}

/* error */
 .aform-error-list dt,  .aform-error-list dd {
    border-bottom: 1px solid #4d4d4d;
}

 .aform-error-list dt {
    padding: 30px;
    margin: 0;
    text-align: left;
}

/* A-Form 768px以下
---------------------------------------- */
@media screen and (max-width:768px) {
/* form */
     .aform-content dl {
        display: block;
    }
     .aform-content dt {
        width: 100%;
        padding: 0;
        border: none;
        background-color: transparent;
        text-align: left;
    }
     .aform-required {
        margin-left: 10px;
        position: static;
    }
     .aform-content dd {
        width: 100%;
        padding: 0px 0 50px;
        border: none;
        border-left: none;
    }
     .aform-content .aform-radio-ul,
     .aform-content .aform-checkbox-ul,
     .aform-content .aform-textarea {
        margin-top: 10px;
    }
}

/* A-Form 640px以下
---------------------------------------- */
@media screen and (max-width:640px) {
/* form */
     .aform-content dd {
        width: 100%;
        padding: 0px 0 30px;
        border: none;
        border-left: none;
    }
     .aform-radio-ul li {
        width: 100%;
        margin-right: 0;
    }
/* submit-button */
     .aform-button-area {
        padding: 0;
        margin-top: 30px;
    }
     .aform-button-area input {
        max-width: 278px;
        height: 44px;
        padding: 0 10px;
        margin-top: 0;
        background: #e60013 url(../files/ico_arrow_white_right_01.svg) no-repeat right 10px center;
        background-size: 20px auto, 18px auto;
        color: #fff;
        font-size: 14px;
        line-height: 42px;
    }
}

/* A-Form confirm
---------------------------------------- */
#aform_btn_back {
    width: 230px;
    height: 80px;
    border: 1px solid #ed1c24;
    box-sizing: border-box;
    background: #fff url(../files/ico_arrow_red_left_01.svg) no-repeat left 45px center;
    color: #ed1c24;
}

#aform_btn_back + #aform_btn_submit {
    margin-left: 50px;
}

/* A-Form confirm 768px以下
---------------------------------------- */
@media screen and (max-width:768px) {
    #aform-confirm-form .aform-confirm {
        display: block;
        min-height: 40px;
        padding: 5px;
        margin-top: 10px;
        border: none;
        background-color: #dedede;
    }
    #aform_btn_back {
        display: inline-block;
        width: 200px;
    }
    #aform_btn_back + #aform_btn_submit {
        display: inline-block;
        width: 370px;
        margin: 0 0 0 30px;
    }
}

/* A-Form confirm 640px以下
---------------------------------------- */
@media screen and (max-width:640px) {
    #aform_btn_back {
        width: 35%;
        height: 44px;
        background: #fff url(../files/ico_arrow_red_left_01.svg) no-repeat left 10px center;
    }
    #aform_btn_back + #aform_btn_submit {
        width: 60%;
        margin: 0 0 0 3%;
    }
}
