@charset "utf-8";
/* ----------------------------------------------
	ゆのんについてのお問い合わせページCSS
------------------------------------------------- */

/*-- 共通*/
h1 {
	background-color: rgba(232, 55, 86 , .35);
}
#contact {
    padding-bottom: 30px;
}
.required {
    display: inline-block;
    margin-left: 3px;
}
.required::after {
    content: "※必須";
    vertical-align: middle;
    color: #ff6347;
    font-size: 0.85em;
    font-weight: bold;
    border-radius: 5px;
    margin-left: 10px;
}
.site-link,
.return-link {
    width: 96%;
    margin: 10px auto;
}
p.top-comment {
    width: 96%;
    margin: 30px auto;
    text-align: center;
}
div.progress {
    width: 96%;
    margin: 25px auto;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
    justify-content: space-between;
}
div.progress p {
    position: relative;
    width: calc(100% - 6px);
    margin: 0 3px;
    text-shadow: none;
    font-weight: bold;
}
div.progress p span {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    color: #00a1e9;
    background-color: rgba(255 , 243 , 82 , .50);
    text-align: center;
    border-radius: 10px;
}
div.progress p span.current {
    color: #00374F;
    background-color: rgba(255 , 243 , 82 , 1);
}
div.progress p span.current::before {
    content: "\f1b0";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-right: 5px;
}
.top-error {
    display: none;
    width: 96%;
    margin: 0 auto 8px auto;
    color: #ff0000;
    font-weight: bold;
}
.top-error.on {
    display: block;
}
p.error {
    display: none;
	width: calc(96% - 20px);
    margin: 5px auto 10px auto;
    color: #ff0000;
        text-align: left;
}
p.error.on {
    display: block;
}
section.input , section.conf {
    width: 96%;
    margin: 0 auto;
}
div.corumn {
    width: 100%;
    padding: 0 0 20px 0;
}
div.corumn .title ,
p.list-title {
    padding: 5px 8px;
    font-size: 1.10em;
    font-weight: bold;
    color: #00374F;
    border-bottom: 1px dashed #00374F;
}
div.corumn .input {
    padding: 10px;
}
section.conf div.corumn .input { /*-- 確認ページの場合 */
    font-size: 1.15em;
}
div.corumn .notice {
	width: 96%;
    margin: 10px auto 0 auto;
    font-size: .90em;
    line-height: 120%;
}
div.corumn .notice span {
    display: block;
    margin-top: 5px;
    font-weight: bold;
}
div.corumn .input dl {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
div.corumn .input dl dt ,
div.corumn .input dl dd {
	-ms-flex-item-align: center;
    align-self: center;
}
div.corumn .input dl dt {
    padding-right: 5px;
}
div.corumn .input dl:not(.small) dd {
	-webkit-box-flex:1;
	-ms-flex-positive:1;
    flex-grow:1;
}
div.corumn .input dl.small dd {
    width: 50%;
    max-width: 160px;
}


/*確認ページ*/
p.conf-comment {
	width: 96%;
	margin: 30px auto;
    font-weight: bold;
}

/*完了ページ*/
h3 {
	margin: 10px 0;
	padding: 10px;
    text-align: center;
	font-size: 1.25em;
	font-weight: bold;
	border-bottom: solid 2px #00a1e9;
	margin-bottom: 16px;
}
h3::before {
    content: none;
}
div.finish-comment {
	width: 96%;
	margin: 15px auto;
}
.fin-menu {
	text-align: center;
	margin: 20px 0;
}
div.inq-info {
    width: 96%;
    padding: 30px 2% 20px 2%;
    margin: 20px 0;
    border-top: 1px dashed #00a1e9;
    text-align: right;
}
div.inq-info .name {
    margin: 0 0 5px auto;
    font-size: 1.10em;
    font-weight: bold;
}
div.inq-info dl {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
    margin: 0 auto 0 0;
}
div.inq-info dl dt {
    font-size: .90em;
    width: 40px;
}
div.inq-info dl dd::before {
    content: "：";
}
/*エラー*/
h2.error {
	margin: 20px auto;
    padding: 15px 0;
	color: #ff6347;
	border-bottom:2px solid #ff6342;
	font-size: 1.25em;
	font-weight: bold;
	text-shadow: none;
    text-align: center;
}
div.error-comment {
    width: 96%;
    margin: 30px auto;
}
/*不正アクセス*/
.invalid-mesage {
	margin: 30px auto;
	text-align: center;
}

/*サービスリンク*/
.service-links {
    width: 94%;
    margin: 20px auto;
}

/*-- タブレット以上 */
@media screen and (min-width: 768px) {
    section.input, section.conf {
        width: 90%;
    }
    div.corumn {
        padding-bottom: 30px;
    }
    div.corumn .input {
        padding: 20px;
    }
    p.conf-comment {
        margin-top: 50px;
        text-align: center;
    }
    div.finish-comment {
        width: 90%;
        margin: 50px auto;
    }
    .fin-menu {
        margin: 50px auto;
    }
    div.inq-info {
        width: 90%;
        padding: 50px 5%;
        margin: 50px auto;
    }
    div.error-comment {
        width: 90%;
        margin: 50px auto;
    }    
}

/*PC*/
@media screen and (min-width: 1025px) {
}
