@charset "UTF-8";
	
.disease-flex {
	display: flex;
	align-items: flex-start;
}
.disease-flex img {
	display: block;
	width: 30%;
	margin: 0 0 0 30px;
}
@media screen and (max-width: 787px) {
	.disease-flex {
		flex-direction: column;
	}
	.disease-flex img {
		text-align: center;
		margin: 30px auto 0;
		width: 100%;
	}
}

.disease-list {
	margin-left: 5%;
}
.disease-list li {
	list-style: disc;
}
@media screen and (max-width: 767px) {
	.disease-list {
		margin-left: 40px;
	}
}
		
/* 発症しやすい部位 */
.box28 {
	position: relative;
	margin: 1em 0;
	padding: 35px 10px 0px;
	border: solid 2px #169CC9;
	max-width: 600px;
}
.box28 .box-title {
	position: absolute;
	display: inline-block;
	top: -2px;
	left: -2px;
	padding: 3px 16px;
	height: 25px;
	background: #169CC9;
	font-size: 15px;
	color: #fff;
	font-weight: bold;
	line-height: 25px;
}
.box28 p {
	margin: 0; 
	padding: 10px;
}

/* 体外衝撃波 */
.taigai {
    position: relative;
    padding: 2em 1.5em;
    margin: 2em 0;
    border: solid 3px #015D9C;
    border-radius: 8px;
    color: #000;
}	
.taigai .sample_box_title{
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 10px;
    line-height: 1;
    font-size: 1.3em;
    background: #fff;
    color: #015D9C;
    font-weight: bold;
}

/* よくある質問アコーディオン */
.accordion-005 {
	max-width: 700px;
	margin: 0 1em 1em;
}
.accordion-005:not([open]) {
	margin-bottom: 7px;
}
.accordion-005 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	border-left: 5px solid #003466;
	background-color: #f1efe9;
	color: #333333;
	font-weight: 600;
	cursor: pointer;
}
.accordion-005 summary::-webkit-details-marker {
	display: none;
}
.accordion-005 summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #c2c2c2;
	border-right: 3px solid #c2c2c2;
	content: '';
	transition: transform .3s;
}
.accordion-005[open] summary::after {
	transform: rotate(225deg);
}
.accordion-005 p {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: 1em 2em 2em 2em;
	color: #333333;
	transition: transform .5s, opacity .5s;
}
.accordion-005[open] p {
	transform: none;
	opacity: 1;
}