@charset "UTF-8";
/* 共通 */
.wrapper{
    display:flex;
    flex-direction:column;
    min-height: 100vh;
}
footer{
    margin-top:auto;
}
.contents {
    padding: 0;
}
.contents .note {
    font-size: 16px;
    color: #666;
}
.contents .col_basicbg {
	background: #4D88C5;
}
.contents .btn_area {
	display: flex;
	justify-content: center;
	align-self: center;
	padding: 20px 16px;
	gap: 10px;
	max-width: 660px;
	margin: auto;
}
.contents .btn {
	padding: 16px 8px;
	border-radius: 100px;
	max-width: 400px;
	text-align: center;
	margin: auto;
}
.cv01_btn {
	background: #121212;
	box-shadow: 0 3px 6px #00000029;
	border: 2px solid #fff;
	font-size: min(5vw, 20px);
	font-weight: bold;
	color: #fff;
	width: 100%;
}
/* 固有header/footer */
.chart_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    padding: 12px 20px;
    border-bottom: 1px solid #d1d1d1;
}
.chart_header img {
    width: 130px;
    height: auto;
}
.chart_header h1 {
    font-size: min(4vw, 20px);
    font-weight: bold;
}
footer small {
    background: #fff;
    color: #999;
}
/* contents */
.question {
    display: flex;
    padding: min(4vw, 20px) 20px min(8vw, 40px);
    align-items: center;
    max-width: 800px;
    margin: auto;
}
.question_no {
    color: #0050a4;
    font-weight: bold;
    font-size: min(9vw, 32px);
    text-align: center;
    padding-right: min(5.3vw, 30px);
}
.question_no span {
    display: block;
    text-align: center;
    background: #f0f4f7;
    border-radius: 100px;
    width: 100%;
    font-size: min(4vw, 18px);
    font-weight: normal;
    line-height: 1.5;
    padding: 0 10px;
    white-space: nowrap;
}
.question_txt {
    font-size: min(5.6vw, 28px);
    font-weight: bold;
    line-height: 1.5;
}
.answer {
    background-image: linear-gradient(147deg, #0957a7 0%, #9ccdff 74%);
    padding: min(4vw, 20px) 20px min(8vw, 40px);
    counter-reset: number 0;
}
.answer > p {
    text-align: center;
    color: #fff;
    font-size: min(5.6vw, 28px);
    margin: 0 0 16px;
}
.answer .answer_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: auto;
}
.answer .answer_list li {
    counter-increment: number 1;
}
.answer .answer_list li a {
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 0 20px 20px 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.answer .answer_list li a:hover {
    box-shadow:none;
    color:#0050a4;
}
.answer .answer_list li a p {
    position: relative;
    font-weight: bold;
    padding: 0 0 0 26px;
    font-size: min(5.6vw, 28px);
}
.answer .answer_list li a p::before {
    position: absolute;
    content: "0"counter(number);
    top: -15px;
    left: -10px;
    color: #0050a4;
    font-size: 20px;
}
/* 結果画面 */
.result_wrap .page_ttl {
    background-image: linear-gradient(147deg, #0957a7 0%, #9ccdff 74%);
}
.result_wrap .contents_inner{
    display: flex;
    flex-direction: column;
    background: #F0F4F7;
    gap:16px;
    padding: 16px;
}
.result_wrap .contents_inner > div{
    background: #fff;
    border-radius: 16px;
    padding: 32px 16px;
    margin: auto;
    width: 100%;
    max-width: 800px;
}
.result_wrap .contents_inner > div > .ttl{
    font-size: 1.2em;
    margin-bottom: 12px;
    border-left: 5px solid #4d88c5;
    line-height: 1.2;
    padding-left: 6px;
}
.result_wrap .summary p:not([class]){
    color: #0050a4;
    font-size: min(5.6vw, 28px);
    font-weight: bold;
    text-align: center;
}
.customer_selects dl {
    display: flex;
    flex-direction: column;
    gap:4px;
}
.customer_selects dl > *{
    padding-left: 1.5em;
    position: relative;
}
.customer_selects dl > *::before{
    color: #0050a4;
    position: absolute;
    top:0;
    left:0;
}
.customer_selects dl dt::before{
    content: "Q.";
    top:4px;
}
.customer_selects dl dd::before{
    content: "A.";
}
.customer_selects dl dt:not(:first-child) {
	border-top: 1px solid #d1d1d1;
}
.customer_selects dl dt{
    padding-top: 5px;
}

/*ai report*/
.reccomend_detail p:not([class]){
    line-height:1.7;
}

.reccomend_detail h1 { border-bottom: 2px solid #0056b3; color: #0056b3; padding-bottom: 10px; }
.reccomend_detail h2 { background: #f4f4f4; padding: 10px; border-left: 5px solid #0056b3; margin: 30px 0 12px;  }
.reccomend_detail h3 { color: #0056b3; margin: 20px 0 12px; border-bottom: 1px dashed #ccc; padding-bottom:10px; }
.reccomend_detail h4 { color: #0056b3; margin: 20px 0 4px; }
.reccomend_detail ul,ol { padding-left: 20px; margin: 20px 0 12px;}
.reccomend_detail li { margin-bottom: 10px; }
.reccomend_detail .status-high { color: #28a745; font-weight: bold; }
.reccomend_detail .summary { background-color: #e9f7ef; padding: 15px; border-radius: 5px; margin-top: 20px; }

@media screen and (min-width: 768px){
    .answer .answer_list {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 20px;
    }
    .answer .answer_list li{
        flex: 1;
    }
    /* 結果画面　*/
    .result_wrap .contents_inner {
        gap: 24px;
        padding: 40px;
    }
    .result_wrap .contents_inner > div{
        border-radius: 20px;
        padding: 50px 40px;
    }
    .result_wrap .contents_inner > div > .ttl{
        font-size: 24px;
        margin-bottom: 16px;
        padding-left: 10px;
    }
}