@charset "UTF-8";
/*
	Filename: home
	Version: 1.0.1
*/
/*-----------------------------------------------------
	#mv
------------------------------------------------------*/
#mv {
  position: relative;
  height: 100vh;
  min-height: 850px;
  overflow: hidden;
}
.mv_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mv_bg_item {
  position: absolute;
  inset: 0;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2000ms ease;
  transform: scale(1.01);
}
.mv_bg_item.is_active {
  opacity: 1;
}
.mv_inner {
  display: flex;
  align-items: center;
	justify-content: flex-end;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-right: 200px;
	padding-left: 40px;
}
.mv_text_row {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
	gap: 5px;
}
.mv_title,
.mv_lead {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.mv_title {
	font-size: 50px;
	font-weight: 500;
	line-height: 2;
	background: linear-gradient(
    180deg,
    #FFFFFF 0%,
    #EEDFC0 50%,
    #D4C17C 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.mv_lead {
	font-size: 30px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.1em;
	color: #fff;
}
@media screen and (max-width: 1400px) {
	.mv_bg_item {
		background-position: top left;
	}
}
@media screen and (max-width: 1230px) {
	.mv_inner {
		padding-right: 100px;
	}
}
@media screen and (max-width: 1000px) {
	.mv_bg_item {
		background-position: top right;
	}
	.mv_inner {
		justify-content: flex-start;
		padding-right: 35px;
		padding-left: 35px;
	}
}
@media screen and (max-width: 750px) {
	#mv {
		height: 150.4vw;
		min-height: auto;
	}
	.mv_bg_item {
		background-position: top right;
		background-size: contain;
	}
	.mv_inner {
		align-items: flex-start;
		padding-top: 115px;
		padding-right: 6.667vw;
		padding-left: 6.667vw;
	}
	.mv_title {
		font-size: 8vw;
		line-height: 1.8;
	}
	.mv_lead {
		font-size: 4.8vw;
		line-height: 1.8;
	}
}
/*-----------------------------------------------------
	#about
------------------------------------------------------*/
#about {
	padding-top: 145px;
	padding-bottom: 175px;
}
#about h2 {
	margin: 0 auto 80px;
}
#about h3 {
	margin-bottom: 50px;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--main-color);
	text-align: center;
}
#about h4 {
	margin-bottom: 50px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.8;
	color: var(--main-color);
	text-align: center;
}
#about p {
	margin-bottom: 50px;
	font-size: 20px;
	font-weight: 400;
	line-height: 2;
	text-align: center;
}
@media screen and (max-width: 750px) {
	#about {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	#about h2 {
		margin: 0 auto 35px;
	}
	#about h3 {
		margin-bottom: 20px;
		font-size: 24px;
	}
	#about h4 {
		margin-bottom: 20px;
		font-size: 20px;
		text-align: left;
	}
	#about p {
		margin-bottom: 20px;
		text-align: left;
	}
	#about .center {
		margin-top: 40px;
	}
}
/*-----------------------------------------------------
	.link_area
------------------------------------------------------*/
.link_area {
	justify-content: space-between;
	text-align: center;
}
.link_area a {
	display: inline-block;
	width: 46%;
	padding: 100px 0;
	background: url("../img/home/link_bg_01.webp") no-repeat center center;
	background-size: cover;
}
.link_area a span {
	display: inline-block;
	width: 320px;
	padding: 14px;
	background: rgba(188, 167, 100, 0.6);
	border: 1px solid #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.8;
	color: #fff;
}
.link_area a:last-of-type {
	background: url("../img/home/link_bg_02.webp") no-repeat center center;
	background-size: cover;
}
.link_area a:last-of-type span {
	background: rgba(49, 48, 44, 0.2);
}
@media screen and (max-width: 1160px) {
	.link_area a {
		width: 48%;
	}
}
@media screen and (max-width: 900px) {
	.link_area a {
		width: 100%;
	}
	.link_area a:last-of-type {
		margin-top: 20px;
	}
	.link_area a span {
		width: calc(100% - 40px);
		padding: 14px 10px;
	}
}
/*-----------------------------------------------------
	.photo_slider
------------------------------------------------------*/
.photo_slider {
	padding-top: 88px;
	padding-bottom: 173px;
}
.swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper-slide {
  height: auto;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.photo_slider .center {
	margin-top: 45px;
}
@media screen and (max-width: 750px) {
	.photo_slider {
		padding-top: 60px;
		padding-bottom: 50px;
	}
	.photo_slider .center {
		margin-top: 40px;
	}
}
/*-----------------------------------------------------
	#stem_cell_extract
------------------------------------------------------*/
#stem_cell_extract {
	padding-top: 147px;
	padding-bottom: 152px;
	background: url("../img/common/post_list_bg.webp") no-repeat center center;
	background-size: cover;
}
#stem_cell_extract h2 {
	margin-bottom: 80px;
}
#stem_cell_extract p {
	margin-bottom: 50px;
	font-size: 20px;
	font-weight: 400;
	line-height: 2;
	text-align: center;
}
#stem_cell_extract .center {
	margin-bottom: 142px;
}
@media screen and (max-width: 750px) {
	#stem_cell_extract {
		padding-top: 46px;
		padding-bottom: 46px;
		background: url("../img/common/sp_post_list_bg.webp") no-repeat center center;
		background-size: cover;
	}
	#stem_cell_extract h2 {
		margin-bottom: 35px;
	}
	#stem_cell_extract p {
		text-align: left;
	}
	#stem_cell_extract .center {
		margin-bottom: 48px;
	}
}
/*-----------------------------------------------------
	#features
------------------------------------------------------*/
#features {
	padding-top: 142px;
	padding-bottom: 170px;
}
#features h2 {
	margin-bottom: 146px;
}
.features_list {
	justify-content: space-between;
	margin-bottom: 80px;
}
.features_list:last-of-type {
	margin-bottom: 0;
}
.features_list_photo {
	width: 45%;
}
.features_list_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.features_list_text {
	width: calc(55% - 68px);
}
.features_list:nth-of-type(even) .features_list_text {
	padding-left: calc((100vw - 1080px) / 2);
}
.features_list:nth-of-type(odd) .features_list_text {
	padding-right: calc((100vw - 1080px) / 2);
}
.features_list_text .num {
	margin-bottom: 30px;
	font-family: var(--font-en);
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
}
.features_list_text h3 {
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.5;
}
.features_list_text p {
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: 400;
	line-height: 2;
}
.features_list_text .center {
	text-align: left !important;
}
@media screen and (max-width: 1150px) {
	.features_list_text {
		width: calc(55% - 40px);
	}
	.features_list:nth-of-type(even) .features_list_text {
		padding-left: 40px;
	}
	.features_list:nth-of-type(odd) .features_list_text {
		padding-right: 40px;
	}
}
@media screen and (max-width: 750px) {
	#features {
		padding-top: 38px;
		padding-bottom: 50px;
	}
	#features h2 {
		margin-bottom: 42px;
	}
	.features_list {
		margin-bottom: 30px;
	}
	.features_list:last-of-type {
		margin-bottom: 0;
	}
	.features_list_photo {
		order: 1;
		width: 100%;
		margin-bottom: 20px;
	}
	.features_list_photo img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}
	.features_list_text {
		order: 2;
		width: 100%;
	}
	.features_list:nth-of-type(even) .features_list_text {
		padding-right: 20px;
		padding-left: 20px;
	}
	.features_list:nth-of-type(odd) .features_list_text {
		padding-right: 20px;
		padding-left: 20px;
	}
	.features_list_text .num {
		margin-bottom: 15px;
		text-align: center;
	}
	.features_list_text h3 {
		margin-bottom: 15px;
		font-size: 24px;
		text-align: left;
	}
	.features_list_text p {
		margin-bottom: 15px;
		text-align: left;
	}
	.features_list_text .center {
		text-align: center !important;
	}
}
/*-----------------------------------------------------
	#page_list
------------------------------------------------------*/
#page_list {
	padding-top: 106px;
	padding-bottom: 106px;
}
.page_list {
	gap: 24px;
}
.page_list_child {
	flex-direction: column;
	width: calc((100% - 72px) / 4);
	background: #fff;
}
.page_list_img {
	width: 100%;
}
.page_list_img img {
	width: 100%;
	height: auto;
}
.page_list_inner {
	width: 100%;
	padding: 10px;
	text-align: center;
}
.page_list_inner h2 {
	margin-bottom: 80px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.8;
}
.page_list_inner h2 span {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--main-color);
}
@media screen and (max-width: 1000px) {
	.page_list_inner h2 {
		font-size: 20px;
	}
	.page_list_inner h2 span {
		font-size: 13px;
	}
}
@media screen and (max-width: 750px) {
	#page_list {
		padding-top: 0;
		padding-bottom: 60px;
	}
	.page_list {
		gap: 20px;
	}
	.page_list_child {
		flex-direction: row;
		align-items: center;
		width: 100%;
	}
	.page_list_img {
		width: 41.6%;
	}
	.page_list_inner {
		width: 58.4%;
	}
	.page_list_inner h2 {
		margin-bottom: 60px;
		line-height: 1.5;
	}
	.page_list_inner h2 span {
		margin-bottom: 8px;
		font-size: 12px;
	}
}
/*-----------------------------------------------------
	#post_list
------------------------------------------------------*/
#post_list {
	padding: 82px 0 147px;
	background: url("../img/common/post_list_bg.webp") no-repeat center center;
	background-size: cover;
}
#post_list .flex {
	justify-content: space-between;
}
.post_list_child {
	width: 48%;
}
.post_list_child h2 {
	padding: 10px 10px 40px;
	border: 1px solid #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
}
.post_list_child h2 span {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 400;
	color: var(--main-color);
}
.post_item {
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(49,48,44,.3);
}
.post_item a {
	display: block;
}
.post_item .date {
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--main-color);
}
.post_item p {
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
	font-size: 20px;
	font-weight: 400;
	line-height: 2;
}
@media screen and (max-width: 1000px) {
	.post_list_child {
		width: 100%;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 750px) {
	#post_list {
		padding: 33px 0 5px;
		background: url("../img/common/sp_post_list_bg.webp") no-repeat center center;
		background-size: cover;
	}
	.post_list_child h2 {
		padding: 10px;
	}
}





