.page-title {
	background-image: url("../images/company/mv.webp");
}
@media screen and (max-width: 768px) {}


/*------------------------------------
#strengths
------------------------------------*/
#strengths {
	padding: 80px 0 120px;
}
#strengths .container {
	max-width: 1400px;
}
#strengths .ttl {
	align-items: center;
	margin-bottom: 60px;
}
.strengths-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.strengths-list li {
	position: relative;
	border: 5px solid #ebeff2;
	width: calc((100% - 60px) / 3);
	padding: 40px;
}
.strengths-list li::before {
	position: absolute;
	top: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	font-family: "Outfit", sans-serif;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: .08em;
}
.strengths-list li:first-child::before {
	content: "01";
}
.strengths-list li:nth-child(2)::before {
	content: "02";
}
.strengths-list li:last-child::before {
	content: "03";
}
.strengths-list h3 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 10px;
}
.strengths-list p {
	margin-top: 20px;
}
@media screen and (max-width: 768px) {
	#strengths {
		padding: 50px 0 80px;
	}
	#strengths .ttl {
		margin-bottom: 40px;
	}
	.strengths-list li {
		width: 100%;
		padding: 30px;
	}
	.strengths-list h3 {
		font-size: 22px;
	}
}


/*------------------------------------
#quality
------------------------------------*/
#quality {
	background-color: #ebeff2;
	padding: 120px 0;
}
.quality__wrapper {
	position: relative;
	min-height: 600px;
	margin-bottom: 70px;
}
.quality__wrapper .container {
	max-width: 1260px;
}
.quality__wrapper .container > * {
	width: 50%;
}
.quality__wrapper .img {
	position: absolute;
	top: 0;
	right: 0;
	height: 600px
}
.quality__wrapper img {
	border-radius: 20px 0 0 20px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.quality__wrapper .txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 600px;
	margin-right: auto;
	padding-right: 5%;
}
@media screen and (max-width: 768px) {
	#quality {
		padding: 80px 0;
	}
	.quality__wrapper {
		min-height: auto;
		margin-bottom: 40px;
	}
	.quality__wrapper .container {
		display: block;
		width: 100%;
		height: auto;
	}
	.quality__wrapper .container > * {
		width: 100%;
	}
	.quality__wrapper .img {
		position: static;
		height: auto;
		padding-left: 7.29vw;
	}
	.quality__wrapper .txt {
		width: calc(100% - 7.29vw);
		height: auto;
		margin: auto;
		padding: 30px 0 0;;
	}
}

/*.quality__row*/
.quality__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	max-width: 1260px;
}
.quality__row .img {
	width: 60%;
}
.quality__row img {
	border-radius: 20px;
}
.quality__row .txt {
	width: 35%;
}
@media screen and (max-width: 768px) {
	.quality__row {
		gap: 30px;
	}
	.quality__row .img,
	.quality__row .txt {
		width: 100%;
	}
}


/*------------------------------------
#greeting
------------------------------------*/
#greeting {
	padding-top: 120px;
}
#greeting .container {
	max-width: 1260px;
}
#greeting .ttl {
	align-items: center;
}
.greeting__row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	max-width: 1260px;
	margin-top: 60px;
}
.greeting__row .img {
	width: 60%;
}
.greeting__row img {
	border-radius: 20px;
}
.greeting__row .txt {
	width: 35%;
}
.greeting__row h3 {
	font-size: 30px;
	margin-bottom: 30px;
}
.greeting__row p:not(:last-child) {
	margin-bottom: 20px;
}
.greeting__row .sign {
	text-align: right;
}
@media screen and (max-width: 768px) {
	#greeting {
		padding-top: 80px;
	}
	.greeting__row {
		gap: 30px;
		margin-top: 30px;
	}
	.greeting__row .img,
	.greeting__row .txt {
		width: 100%;
	}
	.greeting__row h3 {
		font-size: 22px;
		margin-bottom: 10px;
	}
}


/*------------------------------------
#profile
------------------------------------*/
#profile {
	padding-top: 80px;
}
#profile .container {
	max-width: 800px;
}
#profile .ttl {
	align-items: center;
}
#profile .map {
	margin-top: 15px;
}
#profile .map a {
	display: flex;
	align-items: center;
	position: relative;
	background-color: #ebeff2;
	border-radius: 30px;
	max-width: 220px;
	width: 100%;
	height: 55px;
	padding-left: 35px;
}
#profile .map a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%);
	background-image: url("../images/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
	transition: .3s cubic-bezier(.4,.4,0,1);
}
#profile .map a:hover::after {
	transform: translate(8px, -50%);
}
@media screen and (max-width: 768px) {
	#profile {
		padding-top: 50px;
	}
}


/*------------------------------------
#history
------------------------------------*/
#history {
	padding: 100px 0;
}
#history .container {
	max-width: 800px;
}
#history .ttl {
	align-items: center;
}
#history .table dt {
	flex: 0 0 220px;
}
@media screen and (max-width: 768px) {
	#history {
		padding: 60px 0;
	}
	#history .table dl {
		flex-wrap: wrap;
	}
	#history .table dt,
	#history .table dd {
		flex: auto;
		width: 100%;
	}
}


/*------------------------------------
#access
------------------------------------*/
#access {
	background-color: #ebeff2;
	padding: 120px 0;
}
#access .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1260px;
}
#access .half {
	width: 50%;
}
#access img {
	border-radius: 20px;
}
#access iframe {
	display: block;
	border-radius: 20px;
	max-width: 630px;
	width: 100%;
	height: 250px;
	/*-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);*/
	margin-top: 20px;
}
#access .img .map {
	display: none;
}
#access .txt {
	padding-left: 80px;
}
#access .table dt {
	flex: 0 0 90px;
}
#access .map {
	margin-top: 20px;
}
#access .map a {
	display: flex;
	align-items: center;
	position: relative;
	background-color: #fff;
	border-radius: 30px;
	max-width: 220px;
	width: 100%;
	height: 55px;
	padding-left: 35px;
}
#access .map a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%);
	background-image: url("../images/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
	transition: .3s cubic-bezier(.4,.4,0,1);
}
#access .map a:hover::after {
	transform: translate(8px, -50%);
}
@media screen and (max-width: 768px) {
	#access {
		padding: 80px 0;
	}
	#access .ttl {
		align-items: center;
	}
	#access .half {
		width: 100%;
	}
	#access .img {
		order: 2;
	}
	#access .img .map {
		display: block;
	}
	#access .map a {
		margin: auto;
	}
	#access .txt {
		margin-bottom: 20px;
		padding: 0;
	}
	#access .txt .map {
		display: none;
	}
}

