@charset "UTF-8";

/* 共通 */
.disease-content {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	padding: 60px 15px 120px;
}

/* 一覧 */

.disease-list__desc {
	font-size: 18px;
	letter-spacing: .1em;
}

.disease-list__grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 40px;
	margin-top: 40px;
}

.disease-list__item {
	display: flex;
	align-items: center;
	gap: 16px;
	border: solid 2px #f7ad47;
	border-radius: 4px;
	padding: 16px;
	transition: .2s;
}

.disease-list__item:hover {
	background-color: #FEF6EB;
}

.disease-list__item-img {
	flex: 0 0 120px;
	width: 120px;
	height: 90px;
}

.disease-list__item-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.disease-list__item-txt {
	flex: 1;
	align-content: center;
}

.disease-list__item-ttl {
	font-size: 20px;
	font-weight: 700;
}

.disease-list__item-desc {
	font-size: 15px;
	line-height: 1.5;
	margin-top: 10px;
}


/* 詳細 */
.disease-content__sec:not(:first-child) {
	margin-top: 80px;
}

.disease-content__sec p {
	letter-spacing: 0.1em;
	line-height: 1.625;
}

.disease-content__sec p.right {
	text-align: right;
}

.disease-content__sec p.center {
	text-align: center;
}

.disease-content__sec p + p {
	margin-top: 1em;
}

.disease-content__sec p b {
	font-weight: 700;
}

.disease-content__sec p .underline {
	background: linear-gradient(to top, #ffdfb2 50%, transparent 50%);
}

.disease-content__sec p a {
	color: #f7ad47;
	text-decoration: underline 1px #f7ad47;
	text-underline-offset: 5px;
	transition: 0.2s;
}

.disease-content__sec .primary-heading {
	margin-bottom: 30px;
}

.disease-content__ttl01 {
	background: #ffe9cc;
	border-top: solid 2px #f7ad47;
	color: #56442b;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom: 1em;
	padding: 12px 20px;
}

.disease-content__ttl01:not(:first-child) {
	margin-top: 2.5em;
}

.disease-content__ttl02 {
	position: relative;
	border-bottom: solid 4px rgb(233 233 233);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom: 1em;
	padding: 0 0 6px;
}

.disease-content__ttl02::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 70px;
	height: 4px;
	background: #f7ad47;
}

.disease-content__ttl02:not(:first-child) {
	margin-top: 2.5em;
}

.disease-content__ttl03 {
	border-left: 4px solid #f7ad47;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom: 1em;
	padding-left: 12px;
}

.disease-content__ttl03:not(:first-child) {
	margin-top: 2.5em;
}

.disease-content__ttl04 {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom: 1em;
	padding-left: 1.5em;
}

.disease-content__ttl04::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 0.4em;
	height: 0.4em;
	background: #f7ad47;
	border-radius: 50%;
}

.disease-content__ttl04:not(:first-child) {
	margin-top: 2.5em;
}

.disease-content__img {
	display: block;
	width: 100%;
	max-width: 600px;
	height: auto;
	margin: 24px auto;
}

.disease-content__list {
	margin: 20px 0;
}

.disease-content__list li {
	position: relative;
	letter-spacing: 0.1em;
	line-height: 1.5;
	padding-left: 1.5em;
}

.disease-content__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .6em;
	display: block;
	width: .3em;
	height: .3em;
	border-radius: 50%;
	background: #84bf91;
}

.disease-content__list li + li {
	margin-top: .5em;
}

.disease-content__list--strong li {
	font-size: 18px;
	font-weight: 700;
}

.disease-content__list li::before {
	background-color: #f7ad47;
}

.disease-content-toc {
	width: 100%;
	border: solid 4px #84bf91;
	border-radius: 4px;
	font-size: 16px;
	margin: 60px auto;
	padding: 20px 26px 16px 26px;
}

.disease-content-toc__ttl {
	border-bottom: solid 1px #84bf91;
	color: #3D8449;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 0 0 12px 0;
}

.disease-content-toc__list {
	list-style: decimal inside;
}

.disease-content-toc__item {
	letter-spacing: 0.1em;
	line-height: 1.57;
	padding: .5em;
}

.disease-content-toc__item::marker {
	color: #3D8449;
	font-family: Dosis, sans-serif;
	font-weight: 500;
}

.disease-content-toc__item:not(:last-child) {
	border-bottom: dashed 1px #84bf91;
}

.disease-content-toc__item a {
	text-decoration: none;
	transition: .2s;
}

.disease-content-toc__item a:hover {
	color: #f7ad47;
}

.disease-content-toc__sub-list {
	list-style: decimal inside;
	padding-left: 2em;
	margin-top: .5em;
}

.disease-content-toc__sub-item {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.57;
	padding: .2em;
}

.disease-content-toc__sub-item::marker {
	color: #3D8449;
	font-family: Dosis, sans-serif;
	font-weight: 500;
}

.disease-content__box01 {
	border: 4px solid #84bf91;
	border-radius: 10px;
	margin: 30px 0;
	padding: 15px 20px;
}

.disease-content__box01-ttl {
	color: #3D8449;
	letter-spacing: 0.1em;
	line-height: 1.5;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: .5em;
	text-align: center;
}

.disease-content__box02 {
	border: solid 1px #f7ad47;
    border-radius: 2px;
    margin: 30px 0;
    padding: 15px 10px;
}

.disease-content__box02-ttl {
	background-color: #FFF0DB;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 13px 0;
    padding: 10px 14px;
}

.disease-content__box02-link {
	display: inline-block;
	background: url(../img/icon/icon-arrow-right-orange.svg) center right / 12px no-repeat;
	margin-top: 1em;
	padding-right: 1em;
	text-align: right;
}

.disease-content__program-box {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 20px 0;
}

.disease-content__program-box-ttl {
	flex: 0 0 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .5em;
	min-height: 80px;
	border-radius: 10px;
	padding: 16px;
}

.disease-content__program-box-ttl a {
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    border: solid 1px #84BF94;
    background-color: #84BF94;
    border-radius: 3px;
	box-shadow: 3px 3px #f0f0f0;
    color: #fff;
	font-size: 15px;
	font-weight: 700;
    letter-spacing: .1em;
    padding: 5px 0;
    padding-left: .3em;
    transition: .2s;
}

.disease-content__program-box-ttl a::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: solid .4em #b4e0c2;
	border-top: solid .4em transparent;
	border-bottom: solid .4em transparent;
	margin-left: 10px;
	transition: .2s;
}

.disease-content__program-box-ttl a:hover {
	background: #fff;
	color: #3D8449;
}

.disease-content__program-box-txt {
	align-content: center;
}

.disease-content__program-box-txt p {
	font-size: 15px;
}

.disease-content__flow {
	margin: 60px 0;
}

.disease-content-flow-item {
	position: relative;
	padding-left: 60px;
	padding-bottom: 50px;
}

.disease-content-flow-item::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 14px;
	height: 14px;
	border: 4px solid #84bf91;
	border-radius: 50%;
	background: #fff;
	z-index: 10;
}

.disease-content-flow-item::after {
	content: "";
	position: absolute;
	top: 10px;
	bottom: -10px;
	left: 11px;
	transform: translateX(-50%);
	width: 6px;
	background: rgba(112, 112, 112, 0.08);
}

.disease-content-flow-item:last-child::after {
	height: 60%;
}

.disease-content-flow-item__ttl {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom: 1em;
}

.disease-content-flow-item__number {
	display: inline-block;
	color: #84bf91;
	font-family: Dosis, sans-serif;
	font-size: 16px;
	margin-right: 2em;
}

.disease-content-flow-item__list {
	border: dashed 1px #84bf91;
	margin: 1em 0;
	padding: 15px;
}

.disease-content-flow-item__list li {
	position: relative;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	padding-left: 1em;
}

.disease-content-flow-item__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 0.3em;
	height: 0.3em;
	background-color: #84bf91;
	border-radius: 50%;
}

.disease-content-flow-item__list li + li {
	margin-top: 0.5em;
}

.disease-content-contact {
	position: relative;
	width: 100%;
	border: solid 2px #ffa11d;
	margin-top: 40px;
	padding: 31px 38px;
}

.disease-content-contact__title {
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin: 0 0 16px 0;
	text-align: center;
}

.disease-content-contact__buttons {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-bottom: 7px;
}

.disease-content-contact__reserve {
	position: relative;
	flex: 1;
	display: flex;
    align-items: center;
    justify-content: center;
    max-width: 216px;
    background-color: #FFA11D;
    border: solid 2px #FFA11D;
    border-radius: 3px;
    color: #fff;
    font-family: Dosis, sans-serif;
    font-weight: bold;
    letter-spacing: .3em;
    padding: 5px 0;
    padding-left: .3em;
	letter-spacing: 0.1em;
	padding: 7px 0;
    transition: background-color .1s ease, color .1s ease;
}

.disease-content-contact__reserve::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
	background: #fff;
    mask: url(../img/common/icon-mail.svg) center no-repeat;
	margin-right: 10px;
}

.disease-content-contact__tel {
	flex: 1;
	max-width: 229px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #84bf91;
	border-radius: 3px;
	color: #fff;
	font:
		20px Dosis,
		sans-serif;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 12.5px 0.1em 12.5px 0;
}

.disease-content-contact__tel-icon {
	fill: #fff;
	margin-right: 10px;
}

.disease-content-contact__note {
	margin-bottom: 0;
	color: rgba(0, 0, 0, 0.52);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-align: center;
}

.disease-content-contact__nurse {
	position: absolute;
	right: 26px;
	bottom: 0px;
}

.disease-content-contact .underline-green {
	background: linear-gradient(transparent 50%, rgba(132, 191, 145, 0.4) 50%, 80%, transparent 80%);
}

.disease-content__voice-list {
	position: relative;
	width: calc(100% + 20px);
	margin: 0 -10px;
}

.disease-content__voice-list .slick-track {
	display: flex;
	align-items: stretch;
}


.disease-content__voice-list .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 40px;
	height: 40px;
    background: #F6AC48;
	border: solid 2px #F6AC48;
	border-radius: 50%;
	font-size: 0;
	color: transparent;
	margin: 0;
	padding: 0;
	z-index: 1;
	transition: .2s;
}

.disease-content__voice-list .slick-arrow::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	mask: url(../img/icon/icon-arrow-right-white.svg) center / 16px no-repeat;
	transition: .2s;
}

.disease-content__voice-list .slick-arrow:hover {
	background-color: #fff;
}

.disease-content__voice-list .slick-arrow:hover::after {
	background-color: #F6AC48;
}

.disease-content__voice-list .slick-prev {
	left: -20px;
}

.disease-content__voice-list .slick-prev::after {
	transform: rotate(180deg);
}

.disease-content__voice-list .slick-next {
	right: -20px;
}

.disease-content__voice-list .voice-item {
	height: auto !important;
	margin: 0;
	padding: 10px;
}

.disease-content__voice-list .voice-item__head {
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.disease-content__voice-list .voice-item__ttl {
	font-size: 16px;
}

.disease-content__voice-list .voice-item__link {
	text-decoration: none;
}

.disease-content__voice-list .voice-item__link::after {
	display: none;
}

.disease-content__voice-list .voice-item__terms {
	padding-right: 0;
}

@media screen and (max-width: 767px) {
	.disease-content {
		padding: 40px 15px 80px;
	}

	/* 一覧 */

	.disease-list__desc {
		font-size: 16px;
	}

	.disease-list__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 20px;
	}

	.disease-list__item {
		gap: 16px;
		border-width: 2px;
		border-radius: 10px;
		padding: 16px;
	}

	.disease-list__item-img {
		flex: 0 0 80px;
		width: 80px;
		height: 60px;
	}

	.disease-list__item-ttl {
		font-size: 18px;
	}


	/* 詳細 */
	.disease-content__sec:not(:first-child) {
		margin-top: 60px;
	}

	.disease-content__sec p {
		font-size: 15px;	
	}

	.disease-content__sec p a {
		text-underline-offset: 3px;
	}

	.disease-content__sec .primary-heading {
		margin-bottom: 20px;
	}

	.disease-content__ttl01 {
		font-size: 18px;
		margin-bottom: 1em;
		padding: 8px 12px;
	}

	.disease-content__ttl02 {
		border-bottom-width: 2px;
		font-size: 18px;
		padding: 0 0 4px;
	}

	.disease-content__ttl02::after {
		bottom: -2px;
		height: 2px;
	}

	.disease-content__ttl03 {
		border-left-width: 4px;
		font-size: 16px;
		padding-left: 12px;
	}

	.disease-content__ttl04 {
		font-size: 15px;
	}

	.disease-content__img {
		margin: 12px auto;
	}

	.disease-content__list {
		margin: 15px 0;
	}

	.disease-content__list--strong li {
		font-size: 15px;
	}

	.disease-content-toc {
		border-width: 2px;
		border-radius: 2px;
		font-size: 15px;
		margin: 40px auto;
		padding: 20px 18px 8px 18px;
	}

	.disease-content-toc__ttl {
		font-size: 16px;
		padding-bottom: 8px;
	}

	.disease-content__box01 {
		border-width: 2px;
		border-radius: 5px;
		margin: 15px 0;
		padding: 10px 10px;
	}

	.disease-content__box01-ttl {
		font-size: 16px;
	}

	.disease-content__box02 {
		margin: 15px 0;
		padding: 10px 10px;
	}

	.disease-content__box02-ttl {
		border-radius: 2px;
		font-size: 15px;
		margin: 0 0 10px 0;
		padding: 6px 10px;
	}

	.disease-content__program-box {
		flex-direction: column;
		gap: 0;
		margin: 25px 0;
	}

	.disease-content__program-box-ttl {
		flex: auto;
		width: 100%;
		min-height: unset;
		border-width: 4px;
		border-radius: 5px;
		font-size: 15px;
		padding: 11px 16px;
	}

	.disease-content__program-box-txt p {
		font-size: 14px;
	} 

	.disease-content__flow {
		margin: 40px 0;
	}

	.disease-content-flow-item {
        padding-left: 40px;
        padding-bottom: 36px;
	}

	.disease-content-flow-item::before {
			width: 10px;
			height: 10px;
	}

	.disease-content-flow-item::after {
			left: 9px;
	}

	.disease-content-flow-item:last-child::after {
		height: 60%;
	}

	.disease-content-flow-item__ttl {
		font-size: 16px;
	}

	.disease-content-flow-item__number {
		display: block;
		font-size: 14px;
		margin-right: 0;
		margin-bottom: 5px;
	}

	.disease-content-flow-item__list {
		padding: 12px;
	}

	.disease-content-flow-item__list li {
		font-size: 14px;
	}

	.disease-content-toc {
		margin-top: 25px;
	}

	.disease-content-contact {
		margin-top: 30px;
		padding: 15px;
	}

	.disease-content-contact__title {
		font-size: 14px;
		margin: 0 0 14px 0;
	}

	.disease-content-contact__buttons {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 7px;
	}
	
	.disease-content-contact__reserve {
		flex-basis: auto;
		max-width: 100%;
	}

	.disease-content-contact__tel {
		flex-basis: auto;
		max-width: 100%;
		font-size: 16px;
		font-weight: 700;
	}

	.disease-content-contact__tel-icon {
		height: 18px;
	}

	.disease-content-contact__note {
		font-size: 10px;
	}
	
	.disease-content__voice-list {
		width: 100%;
		margin: 0;
		padding: 0 20px;
	}

	.disease-content__voice-list .slick-arrow {
		width: 36px;
		height: 36px;
	}

	.disease-content__voice-list .slick-prev {
		left: 0;
	}

	.disease-content__voice-list .slick-next {
		right: 0;
	}

	.disease-content__voice-list .voice-item__ttl {
		font-size: 15px;
	}

	.disease-content__voice-list .slick-dots {
		display: flex;
		justify-content: center;
		gap: 12px;
		margin-top: 15px;
	}

	.disease-content__voice-list .slick-dots button {
		display: block;
		width: 12px;
		height: 12px;
		font-size: 0;
		color: transparent;
		background: #ccc;
		border-radius: 50%;
		margin: 0;
		padding: 0;
		transition: .2s;
	}

	.disease-content__voice-list .slick-dots .slick-active button {
		background: #F6AC48;
	}
}
