@charset "utf-8";

.text_center {
    text-align: center;
}
.mt_1 {
	margin-top: 0.5rem;
}
.mt_2 {
	margin-top: 1rem;
}
.mt_3 {
	margin-top: 1.5rem;
}
.mt_4 {
	margin-top: 2rem;
}
.sp_only {
    display: none;
}
.md_block {
    display: none;
}
@media screen and (max-width: 650px) {
    .md_block {
        display: inline-block;
    }
}
@media screen and (max-width: 399px) {
    .sp_only {
        display: inline-block;
    }
}

/* チェックボックス調整 */
.checkbox_form input[type="checkbox"]{
    display: none;
}
.checkbox_form input[type="checkbox"]+label{
    cursor: pointer;
    /* display: inline-block; */
    width: 100%;
    position: relative;
}
.checkbox_form_a > span {
    padding: 2px 1rem;
}
.checkbox_form_b {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap:10px;
    margin: 1.5rem auto 0;
}
.checkbox_form_b > span {
    padding: 0.8rem;
    background: #FFF;
    font-weight: bold;
    border: 2px solid #e6e6e6;
    border-radius: 5px;
}
.checkbox_form_b span:has(input[type="checkbox"]:checked) {
    background: var(--sub-color-hover,#f5f8e4);
    border-color:  var(--main-color,#333);
}
.checkbox_form_c{
    flex-wrap: wrap;
    background: #FFF;
    /* border: 1px solid#aeaeae; */
    gap: 0;
    /* line-height: 2.5; */
}
.checkbox_form_c span {
    display: flex;
    max-width: calc((100% - 1rem) / 3);
    min-width: calc((100% - 1rem) / 3);
    flex: 0 1 auto;
    line-height: 1.4;
    font-size: 2.2vw;
    text-align: center;
}
.checkbox_form_c span label {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.7em 0.2em 0.7em;
	border: 1px solid#aeaeae;
}
.checkbox_form_c span label:hover {
    background: #fcfaeb;
}
.checkbox_form_c span:has(input[type="checkbox"]:checked) label {
    background: #d6c104;
    color: #FFF;
    border-color: #d6c104!important;
}
.checkbox_form_c input[type="checkbox"]+label{
    font-weight: 550;
    line-height: 1.2;
}

/* simuration */
.diagnosis_wrap * {
    box-sizing: border-box;
}
.diagnosis_wrap {
    padding: 3rem 1.5rem;
}
.diagnosis_title_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.diagnosis_title_wrap > p > img {
    width: 5rem;
    max-width: 100%;
}
.diagnosis_title_wrap > h1 {
    font-size: 110%;
}
.diagnosis_title_wrap > h1 > span {
    font-weight: 700;
}
.diagnosis_title_wrap > h1 > em {
    display: block;
    margin: .3rem auto 0;
    color: #d6c104;
    font-weight: 700;
    font-size: 230%;
    line-height: 1;
}
.diagnosis_wrap > ol > li {
    margin: 2.5rem auto 0;
    font-weight: bold;
}
.diagnosis_item_list {
    margin: 0.5rem auto 0;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
    gap: 0.5rem;
}
.diagnosis_qa dt {
    font-weight: bold;
    font-size: 105%;
}
.diagnosis_res_title_wrap {
	text-align: center;
}
.diagnosis_res_title_wrap > h1 {
    margin: .3rem auto 0;
    color: #d6c104;
    font-weight: 700;
    font-size: 260%;
    line-height: 1;
    letter-spacing: 0.08em;
}
.diagnosis_res_title_wrap > h2 {
	margin: .5rem auto 0;
	font-weight: bold;
	font-size: 110%;
}
.diagnosis_result {
    margin: 1rem auto 0;
    text-align: center;
}
.diagnosis_result > dt {

}
.diagnosis_result > dt > span {
    display: block;
    width: 25%;
    margin: 2.5rem auto 0;
}
.diagnosis_result > dt > em {
    display: block;
    margin: 2rem auto 0;
    font-weight: 800;
    font-size: 200%;
    line-height: 1.2;
    letter-spacing: 0.05em;
}
.diagnosis_result > dd {
    margin: 0.8rem auto 0;
    font-weight: 700;
    line-height: 1.8;
    font-size: 100%;
}

/* ボタン */
.btn_result {
	display: block;
	position: relative;
	z-index: 5;
	width: 80%;
	max-width: 15em;
	margin: 2.3em auto 0;
	padding: 0.7em 1.8em 0.6em;
	background: #d6c104;
	color: #FFF;
	text-align: center;
	border-radius: 50px;
	font-weight: bold;
	transition: 0.3s;
	font-size: 120%;
	border: none;
	cursor: pointer;
}
.btn_result:after {
	position: absolute;
	right: 1em;
	content: "→";
	display: inline-block;
	font-weight: normal;
	font-size: 110%;
}
.btn_result:hover {
	background: #008fa5;
}
.link_text {
    font-weight: bold;
    color: #9a9a9a;
}
.link_text:hover {
    text-decoration: underline;
}
.att_text {
    margin: .3rem auto 0;
    color: #F00;
    font-size60%: ;
    font-size: 64%;
}

@media screen and (max-width: 650px) {
	.checkbox_form_c span {
		font-size: 2.6vw;
	}
}