@charset "UTF-8";
/* CSS Document */

/*改行しない*/
.nowrap {
    white-space: nowrap;
}
/*両橋揃え*/
.txt_justify{
    text-align: justify;
}

/* 応募要項 テーブル指定 */
.wrap_oubo {
    width: 100%;
    text-align: left;
}
table.wrap_oubo {
    border-collapse: separate;  /* 表の線と線の間を空ける */
    border-spacing: 5px 0px;       /* 表の線と線の間の幅 */
}
.wrap_oubo td {
    padding: 25px 3px;
    border-color: #000;
    border-style: solid;
}
.oubo_koumoku {
    border-top: 3px;
    width: 17%;
}
.oubo_naiyou {
    border-top: 1px;
    width: 83%;
}
.bottom_3 {
    border-bottom: 3px;
}
.bottom_1 {
    border-bottom: 1px;
}

/* デフォルトマークをなしにする */
.oubo_naiyou ul {
	list-style-type: none;
}
/* 任意のマーク */
.oubo_naiyou ul li::before {
	content: "※ " ;
}

/* sec02,04 */
/* テキストリンク */
.present_button {
    color: #000;
    color: var(--color-black);
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-family: 'AudiType-WideNormal', sans-serif;
    text-decoration: none;
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 2.9rem; 
    /*アニメーションの指定*/   
    transition: all .2s;
}

@media all and (max-width: 1023px) {
	.present_button {
        margin-top: 10px;
	}
}

.present_button::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    position: absolute;
    top: 50%;
    left: 13em;
    margin-top: -6px;
    transform: rotate(45deg);
    transition: all .2s;
}

/*Safariのみに適応させる*/
::-webkit-full-page-media, :future, :root .present_button::after{
    left: 12em;
    margin-top: -6.0px;
	}

/*Chromeのみに適応させる←edgeがつられて今回は使えない*/
/*@media screen and (-webkit-min-device-pixel-ratio:0){
	    .present_button::after{
            left: 12em;
            margin-top: -5px;
	    }
	}*/

/*Firefoxのみに適応させる*/

@-moz-document url-prefix(){
	    .present_button::after{
            left: 12em;
            margin-top: -5px;
	    }
	}

.present_button:hover,
.present_button:active {
    color: #ccc;
}
.present_button:hover::after,
.present_button:active::after{
    border-top: solid 1px #ccc;
    border-right: solid 1px #ccc;
}

/* sec03,04 */
/*色が変わるボタン設定*/
/*共通部分*/
.car_button,
.dealer_button {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 1.1em 3.5em;
    text-decoration: none;
    font-size: 1.6rem;
    text-align: center;
    /*アニメーションの指定*/   
    transition: ease .2s;
    outline-offset: -2px;
}
.car_button,
.dealer_button:hover,/*ボタンの色が変わる*/
.dealer_button:active {
    border: #000 1px solid;
    color: #000;
    background-color: #fff;
}
.dealer_button,
.car_button:hover,/*ボタンの色が変わる*/
.car_button:active {
    border: #fff 1px solid;
    color: #fff;
    background-color: #000;
}

/*page top リンク */
#footer {
    display: block;
    text-align: right;
}
#page_top a{
    color: #fff;
    color: var(--color-white);
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-family: 'AudiType', sans-serif;
    text-align: right;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 2.9rem; 
    margin-bottom: 30px;
    margin-right: 2em;
    /*アニメーションの指定*/   
    transition: all .2s;
}
#page_top a::after {
    content: '';
    width: 0.7em;
    height: 0.7em;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    left: 7em;
    margin-top: 0px;
    transform: rotate(315deg);
    transition: all .2s;
}
#page_top a:hover,
#page_top a:active {
    color: #4c4c4c;
}
#page_top a:hover::after,
#page_top a:active::after{
    border-top: solid 1px #4c4c4c;
    border-right: solid 1px #4c4c4c;
}


