@charset "UTF-8";

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

	header

-----------------------------------*/
@media screen and (max-width: 640px) {
}
/*-----------------------------------

	mainvisual

-----------------------------------*/
#mainvisual {
	margin-bottom: 140px;
}
#mainvisual img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

@media screen and (max-width: 840px) {
	#mainvisual img {
		width: 100%;
		height: 70vw;
		object-fit: cover;
	}
}
@media screen and (max-width: 640px) {
	#mainvisual {
		margin-bottom: 70px;
	}
	#mainvisual img {
		height: 90vw;
	}
}

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

	concept_block

-----------------------------------*/
#concept_block {
	padding-bottom: 100px;
}
#concept_block .contents_inner {
    max-width: calc(1130px + ((100vw - 1130px) / 2));
    margin: 0 calc(50% - 50vw) 0 auto;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#concept_block .textArea {
	width: 40%;
}
#concept_block .textArea h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 30px;
}
#concept_block .textArea h2::before {
	content: "CONCEPT";
	font-size: 45px;
	font-family: 'Montserrat', sans-serif;
	color: #fa6a8c;
	display: block;
	margin-bottom: 20px;
}
#concept_block .textArea .copy {
	font-size: 34px;
	font-weight: 700;
	line-height: 180%;
	margin-bottom: 30px;
}
#concept_block .textArea p {
	margin-bottom: 30px;
}
#concept_block .textArea a {
	display: block;
	width: 240px;
	background: #fa6a8c;
	color: #FFF;
	text-align: center;
	padding: 25px 0;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin: 0 auto 0 0;
}
#concept_block .imageArea {
	width: 54%;
}

@media screen and (max-width: 1130px) {
	#concept_block .contents_inner {
		width: 97.5%;
		margin: 0 0 0 auto;
	}
	#concept_block .textArea .copy {
		font-size: 22px;
	}
}

@media screen and (max-width: 840px) {
	#concept_block .contents_inner {
		width: 90%;
		margin: 0 auto;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 50px;
	}
	#concept_block .textArea {
		width: 100%;
	}
	#concept_block .imageArea {
		width: calc(100% + (50vw - 50%));
		margin: 0 0 0 auto;
	}
}
@media screen and (max-width: 640px) {
	#concept_block {
		padding-bottom: 70px;
	}
	#concept_block .imageArea {
		display: none;
	}
	#concept_block .textArea h2 {
		font-size: 12px;
		margin-bottom: 20px;
	}
	#concept_block .textArea h2::before {
		font-size: 34px;
		margin-bottom: 20px;
	}
	#concept_block .textArea .copy {
		font-size: 24px;
		letter-spacing: 0;
		margin-bottom: 15px;
	}
	#concept_block .textArea p {
		margin-bottom:20px;
	}
	#concept_block .textArea a {
		margin: 20px auto 0;
	}
}

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

	service_block

-----------------------------------*/
#service_block {
	padding-bottom: 100px;
	position: relative;
}
#service_block::before {
	content: "";
	width: 70%;
	height: 430px;
	background: #f7f5f2;
	position: absolute;
	top: 50px;
	left: 0;
	z-index: -1;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
#service_block h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}
#service_block h2::before {
	content: "SERVICE";
	font-size: 45px;
	font-family: 'Montserrat', sans-serif;
	color: #fa6a8c;
	display: block;
	margin-bottom: 20px;
}
#service_block ul {
	max-width: 100%;
	width: 100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	margin-top: 60px;
	gap: 40px;
}
#service_block ul li:nth-child(2) {
	margin-top: -30px;
}
#service_block ul li:nth-child(3) {
	margin-top: -60px;
}
#service_block ul li img {
	margin-bottom: 20px;
	width: 100%;
	height: 430px;
	object-fit: cover;
	border-radius: 10px;
}
#service_block ul li .ttl {
	background: #fa6a8c;
	color: #FFF;
	line-height: 1;
	font-size: 20px;
	font-weight: 700;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 5px;
	margin-bottom: 10px;
}
#service_block ul li p {
	font-size: 15px;
}
#service_block ul li .view_btn {
	display: inline-block;
	color: #fa6a8c;
	font-family: 'Montserrat', sans-serif;
	text-decoration: underline;
	margin-top: 15px;
	transition: ease 0.2s;
}
#service_block ul li .view_btn:hover {
	text-decoration: none;
}

@media screen and (max-width: 840px) {
	#service_block ul {
		gap: 50px;
	}
	#service_block ul li .ttl {
		font-size: 18px;
		padding: 10px;
	}
	
}
@media screen and (max-width: 640px) {
	#service_block {
		padding-bottom: 60px;
	}
	#service_block::before {
		display: none;
		content: "";
		width: 70%;
		height: 60%;
	}
	#service_block h2 {
		font-size: 12px;
		margin-bottom: 30px;
	}
	#service_block h2::before {
		font-size: 34px;
		margin-bottom: 20px;
	}
	#service_block ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		max-width: 100%;
		margin: 0 auto;
	}
	#service_block ul li:nth-child(2) {
		margin-top: 0;
	}
	#service_block ul li:nth-child(3) {
		margin-top: 0;
	}
	#service_block ul li img {
		width: 100%;
		height: 200px;
		object-fit: cover;
		border-radius: 10px;
		margin-bottom: 15px;
	}
	#service_block ul li p {
		font-size: 16px;
	}
	#service_block ul li .ttl {
		font-size: 20px;
	}
	
}
/*-----------------------------------

	news_block

-----------------------------------*/
#news_block {
	padding-bottom: 100px;
}
#news_block .contents_inner_s {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#news_block .ttlArea {
	width: 33%;
}
#news_block .ttlArea h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}
#news_block .ttlArea h2::before {
	content: "NEWS";
	font-size: 42px;
	font-family: 'Montserrat', sans-serif;
	color: #222222;
	display: block;
	margin-bottom: 30px;
}
#news_block .ttlArea a {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1;
	padding-left: 40px;
	position: relative;
}
#news_block .ttlArea a::before {
	content: "";
	width: 30px;
	height: 2px;
	background: #fa6a8c;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#news_block ul {
	width: 67%;
}
#news_block ul li {
	border-bottom: 1px solid #dedede;
}
#news_block ul li a {
	display: block;
	overflow: hidden;
	width: 100%;
	padding: 25px 30px 25px 0;
	position: relative;
	line-height: 1;
	pointer-events: none;/*後で取る*/
}
#news_block ul li a::after {
	content: "";
	width: 15px;
	height: 11px;
	background: url(../img/index/news_arrow.png) no-repeat center / contain;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
#news_block ul li a .info {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}
#news_block ul li a .date {
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	width: 80px;
	line-height: 1;
}
#news_block ul li a .cat {
	color: #FFF;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	width: 100px;
	padding: 3px 0;
	text-align: center;
	border-radius: 3px;
}
#news_block ul li a .cat.cat01 {
	background: #fa6a8c;
}
#news_block ul li a .cat.cat02 {
	background: #6ab4d5;
}
#news_block ul li a p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (max-width: 840px) {
	#news_block .ttlArea {
		width: 28%;
	}
	#news_block ul {
		width: 72%;
	}
}
@media screen and (max-width: 640px) {
	#news_block {
		padding: 60px 0;
		background: #fafafa;
	}
	#news_block .contents_inner_s {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
	}
	#news_block .ttlArea {
		width: 100%;
	}
	#news_block .ttlArea h2 {
		font-size: 12px;
		margin-bottom: 0;
	}
	#news_block .ttlArea h2::before {
		font-size: 34px;
		margin-bottom: 20px;
	}
	#news_block .ttlArea a {
		float: right;
	}	
	#news_block ul {
		width: 100%;
	}
	#news_block ul li a {
		padding: 20px 30px 20px 0;
	}
	#news_block ul li a .info {
		gap: 10px;
		margin-bottom: 10px;
	}
}

