@charset "UTF-8";
/*!
Theme Name: yoshida-sgo
Version: 1.0.0
*/


/*--------------------------------------------------------------
# content
--------------------------------------------------------------*/

/*philosophy*/
#philosophy{
	height: 760px;
	color: #fff;
	background:url("../images/milkyway.jpg") no-repeat bottom center;
	background-size: cover;
}
#philosophy h2{
	color: #fff;
	background-color: rgba(0 0 0 / 80%);
}
#philosophy h2 span{
	color: #fff;
}
#philosophy h2:first-letter,#philosophy h2 span:first-letter{
	color: #fff;
}
#philosophy .philosophy-wrap{
	padding: 0.2em 0em;
	/*background-color: rgba(0 0 0 / 60%);*/
}
#philosophy ol{
	list-style: upper-roman;
}
#philosophy ol li{
	margin-bottom: 0.5em;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1.2em;
	text-shadow: 3px 1px 5px rgba(0, 0, 0, 1),3px 1px 5px rgba(0, 0, 0, 1);
}
#philosophy ol li span{
	font-size: 0.8em;
	letter-spacing: 0;
	font-weight: normal;
}

/* Quality */
#quality ul li{
	margin-bottom: 1.2em;
	padding-left: 1em;
	text-indent: -1.4em;
	font-size: 1.1em;
}
#quality ul li:before{
	content: "○";
	margin-right: 0.4em;
	color: var(--main-txt-color);
}

/* Profile */


/* History */
.history-wrap{
	padding: 2em 0;
	background: radial-gradient(ellipse at center, rgba(255,255,255,1) 50%,rgba(255,255,255,0.4) 70%,rgba(255,255,255,0) 100%),url("../images/history_bg.png") repeat center;
}
.history-wrap h3{
	font-weight: bold;
}
.timeline > li {
	overflow: hidden;
	margin: 0;
	border-bottom: 1px dotted var(--main-color);
}
.timeline > li:last-child {
	border-bottom: 0;
}
li .date {
	position: relative;
	float: left;
	width: 10em;
	padding-top: 1em;
	font-weight: 500;
}
li .date::after {
	content: '';
	position: absolute;
	left: 9.6em;
	top: 21px;
	width: 15px;
	height: 15px;
	background: #fff;
	border: 2px solid var(--main-color);
	border-radius: 50%;
}
li:first-child .date::after{
	top: 20px;
}
li .content {
	width: 80%;
	float: left;
	padding: 1em 0 2em 2em;
	border-left: 3px solid var(--main-color);
}
li .content img{
	margin-right: 1em;
	padding-top: 1em;
}
li .content img:last-child{
	margin-right: 0em;
}


/* Clients */
ul.clients-list{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-content: space-between;
	height: 580px;
	gap: 0 0em;
}
ul.clients-list li{
	width: 33%;
	font-size: 0.9em;
}
.clients-txt{
	font-size: 0.9em;
}


/* sdgs */
#sdgs h2{
	padding-bottom: 0px;
	background-color: unset;
	background:url("../images/home_sdgs_bg.jpg") no-repeat 50% 80%;
}
#sdgs h2 span{
	display: inline;
	font-size: 1.3em;
	font-weight: bold;
	color: var(--main-txt-color);
}
#sdgs h2::first-letter{
	color: var(--black-txt-color);
}
#sdgs h2 img{
	padding: 0.6em 0;
}

.sdgs-wrap{
	gap: 5em;
}
.sdgs-wrap ul li{
	text-indent: -1.2em;
	padding-left: 1.2em;
}

@media screen and (max-width: 768px) {
	#philosophy{
		background-position: 60% 100%;
	}
	li .date {
		float: unset;
		display: block;
		margin-left: 1em;
		padding-left: 25px;
		border-left: 3px solid var(--main-color);
	}
	li .date::after {
		left: -9px;
	}
	li .content {
		float: unset;
		display: block;
		margin-left: 1em;
		padding-left: 1em;
	}
	ul.clients-list{
		flex-wrap: nowrap;
		height: auto;
		gap: 0.8em;
	}
	ul.clients-list li{
		width: auto;
	}
	li .content img{
		margin-right: 0em;
	}
	
}