@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	不妊漢方周期法

//////////////////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------------------

	共通

------------------------------------------------------------------------------*/

main .cycle figure,
main .temperature figure {
	margin: 1em 0;
}


/*------------------------------------------------------------------------------

	pharmacy_director

------------------------------------------------------------------------------*/

main .pharmacy_director {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

main .pharmacy_director .text {
	flex: 1;
}

main .pharmacy_director figure {
	width: 240px;
	margin-left: 2em;
}

@media screen and (max-width: 767px) {

main .pharmacy_director {
	flex-direction: column-reverse;
	justify-content: flex-end;
	align-items: center;
}


main .pharmacy_director figure {
	 width: 45%;
	 margin: 0 0 5vw 0;
}

}


/*	features
------------------------------------------------------------------------------*/

main .features {
	counter-reset: num;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

main .features dl {
	position: relative;
	width: 47.5%;
	margin: 4% 5% 0 0;
}

main .features dl::before {
	content: "";
	display: block;
	position: absolute;
	top: -1em;
	left: -1em;
	width: 2em;
	aspect-ratio: 1/1;
	background-image: url(../../../common/img/icon_kaze.svg);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 1;
}

main .features dl:nth-child(2n) {
	margin-right: 0;
}

main .features dt {
	position: relative;
	margin-bottom: .75em;
	padding: .185em 0 .185em 4.5em;
	line-height: 1.6;
	font-weight: bold;
}

main .features dt::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 3.5em;
	aspect-ratio: 1/1;
	background-color: rgba(var(--main-color),1);
}

main .features dt::after {
	content: counter(num);
	counter-increment: num;
	position: absolute;
	top: .425em;
	left: .75em;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-style: normal;
	line-height: 1;
	text-align: center;
	font-size: 1.75em;
	color: #FFF;
}

main .features dt span {
	display: block;
}

@media screen and (max-width: 767px) {

main .features dl {
	width: 100%;
	margin: 5vw 0 0;
}

}


/*------------------------------------------------------------------------------

	cycle

------------------------------------------------------------------------------*/

main .cycle table th,
main .cycle table td {
	vertical-align: middle;
	font-size: .875em;
}

main .cycle table thead th:first-child,
main .cycle table tbody th {
	width: 10%;
}

main .cycle table thead th:nth-child(2) { width: 50%;}
main .cycle table thead th:nth-child(3) { width: 40%;}

main .cycle table thead th:first-child span,
main .cycle table tbody th span {
	display: block;
}

@media screen and (max-width: 767px) {

main .cycle table th,
main .cycle table td {
	font-size: 2.5vw;
}

main .cycle table thead th:first-child,
main .cycle table tbody th {
	width: 8%;
}

main .cycle table thead th:nth-child(2) { width: 58%;}
main .cycle table thead th:nth-child(3) { width: 34%;}

main .cycle table thead th:first-child span,
main .cycle table tbody th span {
	writing-mode: vertical-rl;
}

}


/*------------------------------------------------------------------------------

	temperature

------------------------------------------------------------------------------*/

main .temperature .pattern {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

main .temperature .pattern section,
main .temperature .pattern > figure {
	width: 48.5%;
	margin-right: 3%;
}

main .temperature .pattern section:nth-child(2n),
main .temperature .pattern > figure {
	margin-right: 0;
}

main .temperature .pattern > figure {
	margin: 0;
}

main .temperature .pattern > figure img {
	display: block;
	width: 50%;
	margin: 4em auto 0;
}

@media screen and (max-width: 767px) {

main .temperature .pattern section,
main .temperature .pattern section:nth-child(2n),
main .temperature .pattern > figure {
	width: 100%;
	margin-right: 0;
}

}


/*------------------------------------------------------------------------------

	postpartum

------------------------------------------------------------------------------*/

main .postpartum .know .group {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: flex-start;
}

main .postpartum .know .text {
	flex: 1;
}

main .postpartum .know figure {
	width: 13%;
	margin-right: 2em;
}

@media screen and (max-width: 767px) {

main .postpartum .know figure {
	width: 22%;
}

}


