@charset "utf-8";
/* -----------------------------
 index.css
----------------------------- */

img {
	max-width: 100%;
	height: auto;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}

main > div {
	margin-top: -180px;
	padding-top: 180px;
}

main .catch {
	display: flex;
	justify-content: center;
	align-items: stretch;
	background-color: #F6F5E8;
	line-height: 200%;
}

main .catch h1 {
	margin-bottom: 50px;

	font-size: xx-large;
	font-weight: normal;
	line-height: 150%;
}

main .catch .txt p:not(:last-child) {
	margin-bottom: 1em;
}

main .catch .img {
	position: relative;
}

main .catch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

main .catch ul {
	display: flex;
	position: absolute;
	bottom: 0px;
	left: 0px;
	margin: 10px;
	font-size: 16px;
	line-height: 120%;
}

main .catch li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	width: 100px;
	height: 100px;

	margin: 10px;
	border-radius: 100%;
	background-color: #222222;
	color: #FFFFFF;
}

main .catch li span {
	font-size: 22px;
	line-height: 120%;
}

main .block {
	display: flex;
	align-items: stretch;
	margin-top: 150px;
}

main .block .box {
	line-height: 200%;
}

main .block .box h2 {
	margin-bottom: 50px;

	font-family: var(--font-serif);
	font-size: xx-large;
	font-weight: normal;
	line-height: 150%;
}

main .block .box p:not(:last-child) {
	margin-bottom: 1em;
}

main .block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

main .items {
	margin: 200px 0px;
}

main .items h2 {
	margin: 20px;
	font-size: x-large;
	font-weight: bold;
	text-align: center;
}

main .items ul {
	display: flex;
	overflow: auto;

flex-wrap: wrap;
}

main .items li {
	display: flex;
	flex-direction: column;

	width: calc(100% / 3);
	padding: 20px;
}

main .items h3 {
	order: 2;

	padding: 5px;
	font-weight: bold;
}

main .items .img {
	order: 1;
}

main .items img {
	width: 100%;
	height: auto;
}

main .items .prc {
	order: 3;

	text-align: right;
}

main .btn {
	display: flex;
	justify-content: center;

	margin-top: 50px;
	padding: 0px 10px;
}

main .btn a {
	display: block;
	width: 200px;
	max-width: 100%;
	padding: 10px 20px;
	border: 1px solid #666666;
	text-align: center;
	transition: 0.5s;
}

main .btn a:hover {
	background-color: #666666;
	color: #FFFFFF;
}

main .tile {
	margin: 200px 0px;
	padding: 1px;
}

main .tile ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
}

main .tile li {
	margin: 1px;
	background-color: #333333;
	font-size: 24px;
	line-height: 120%;
	color: #FFFFFF;
}

main .tile a {
	position: relative;
	display: block;
}

main .tile img {
	width: 100%;
	height: auto;
	opacity: 0.6;
}

main .tile a:hover img {
	opacity: 1;
}

main .tile span {
	position: absolute;
	margin: 20px;
}

main .tile span.en {
	top: 0px;
	left: 0px;
}

main .tile span.jp {
	bottom: 0px;
	right: 0px;
}

main .tile li {
}

main #taheebo {
	margin-top: 100px;
	padding-top: 300px;
	background-image: url(../../images/common/logo-taheebo.png);
	background-position: top center;
	background-repeat: no-repeat;
}

/* -----------------------------
 PC
----------------------------- */
@media screen and (min-width:1000px) {
	main .catch {
	}

	main #tau-health .catch {
		background-image: url(../../images/common/logo-tau_health.png);
		background-position: top 10px left 10px;
		background-size: 100px auto;
		background-repeat: no-repeat;
	}

	main .catch .txt {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;

		width: 50%;
		padding: 100px;
	}

	main .catch .img {
		width: 50%;
	}

	main .block {
		flex-direction: row;
		justify-content: space-between;
	}

	main .block .box {
		width: 40%;
		padding: 0px 100px;
	}

	main .block .img {
		width: 60%;
	}

	main .block:nth-of-type(even) {
		flex-direction: row-reverse;
	}

	main .tile .story {
		grid-row: 1 / 3;
		grid-column: 1 / 2;
	}

	main .tile .about {
		grid-row: 1 / 2;
		grid-column: 2 / 3;
	}

	main .tile .faq {
		grid-row: 2 / 3;
		grid-column: 2 / 3;
	}
}

/* -----------------------------
 Tablet
----------------------------- */
@media screen and (max-width:999px) {
	main .catch {
		flex-direction: column-reverse;
	}

	main .catch ul {
		width: calc(100% - 20px);
		justify-content: center;
		font-size: 12px;
		line-height: 120%;
	}

	main .catch li {
		width: 80px;
		height: 80px;
	}

	main .catch li span {
		line-height: 120%;
		font-size: 18px;
	}

	main .catch .txt {
		padding: 100px 150px 200px;
	}

	main .block {
		flex-direction: column-reverse;
		justify-content: center;
	}

	main .block .box {
		margin: 0px 12.5%;
		padding: 20px;
	}

	main .block .img {
		margin-left: 12.5%;
	}

	main .block:nth-of-type(even) .img {
		margin: 0px;
		margin-right: 12.5%;
	}

	main .tile li {
		font-size: 16px;
		line-height: 120%;
	}

	main .tile span {
		margin: 10px;
	}

	main .tile .story {
		grid-row: 1 / 2;
		grid-column: 1 / 3;
	}

	main .tile .about {
		grid-row: 2 / 3;
		grid-column: 1 / 2;
	}

	main .tile .faq {
		grid-row: 2 / 3;
		grid-column: 2 / 3;
	}
}

/* -----------------------------
 SP
----------------------------- */
@media screen and (max-width:639px) {
	main .catch {
	}

	main .catch .txt {
		padding: 50px 20px;
	}

	main .block {
		flex-direction: column-reverse;
		justify-content: center;
	}

	main .block .box {
		margin: 50px 20px;
	}

	main .block .img {
		margin-left: 40px;
	}

	main .block:nth-of-type(even) .img {
		margin: 0px;
		margin-right: 40px;
	}

main .items {
}

main .items ul {
}

main .items li {
	width: calc(100% / 2);
}
}
