@charset "utf-8";

/***************************************************
page-about　会社概要 .company-outline
***************************************************/
.messageBox {
	display: grid;
	/* grid-template-columns: 1.7fr 1fr;
		 */
	gap: 30px;
}

.messageBox .inner-left p {
	line-height: 1.8em;
}

.messageBox .inner-right {
	width: 100%;
	aspect-ratio: 1/1.5;
}

.messageBox .inner-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mintyo {
	font-family: "Noto Serif JP", serif;
	font-size: 120%;
	text-align: right!important;
}

.mintyo span {
	font-size: 70%;
	letter-spacing: 0.2em;
}

@media screen and (max-width:768px) {
	.messageBox {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.messageBox .inner-right {
		aspect-ratio: 1 / 1;
	}
}

/*------------------------------------------
 company 
 ------------------------------------------*/

.company-outline {
	border: none;
	margin: 0 auto;
	width: 100%;
	border-collapse: collapse;
}

.company-outline dl {
	display: grid;
	align-items: center;
	margin: 0;
	padding: 0px;
	gap: 0px;
	grid-template-columns: 0.3fr 1fr;
}

.company-outline dt {
	padding: 20px 0px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	border-bottom: 1px solid var(--cta);
}

.company-outline dd {
	border-bottom: 1px solid #eee;
	padding: 20px 10px 20px 30px;
	margin: 0;
}

.addressBox {
	display: flex;
	flex-wrap: wrap;
	/* gap: 40px; */
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	justify-content: space-between;
}

.addressBox .inner-map {
	width: calc(100% - 320px);
}

.Google-map {
	position: relative;
	width: 100%;
	padding-bottom: 40%;
	/* 56.25%が16:9 の比率 */
	height: 0;
	overflow: hidden;
	border-radius: 8px;
	/* 角丸必要なら */
}

.Google-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media screen and (max-width:768px) {
	.company-outline dl {
		grid-template-columns: 1fr;
		gap:10px;
		padding: 20px 0;
		border-top: 1px solid #eee;
	}

	.company-outline dl:last-child {
		border-bottom: 1px solid #eee;
	}

	.company-outline dl dt {
		text-align: left;
		padding: 0;
		border-bottom: none;
		justify-content: start;
		color: var(--cta);
	}

	.company-outline dd {
		padding: 0;
		margin: 0;
		border: none!important;
	}
}


/*------------------------------------------
 access 
 ------------------------------------------*/
#access .access {
	margin: 0 auto;
	background: transparent;
	border: none;
}

.access__block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
	align-items: start;
}

.access__info h4 {
	margin: .3em 0 .2em;
	font-size: 16px
}

.note {
	color: var(--sub);
	font-size: 13px
}

.btns {
	display: flex;
	gap: 10px;
	margin-top: 12px
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid var(--line);
	text-decoration: none;
	font-size: 14px;
	border-radius: 4px;
	background: var(--cta);
	color: #fff;
}

.btn:hover {
	background-color: var(--cta-hover);
}

.labelline {
	position: relative;
	padding-top: 16px;
	margin-top: 10px
}

.labelline::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: var(--line)
}

.access__map iframe {
	width: 100%;
	height: 300px;
	display: block
}

@media (max-width: 767.98px) {
	:root {
		--gap: 18px
	}

	.message {
		grid-template-columns: 1fr
	}

	.dl-table tr {
		display: table-row;
	}


	.dl-table th {
		/* width: 80px; */
		width: 100%;
		display: block;
		font-size: 12px;
		text-align: left;
		border-bottom: none;
		padding: 12px 10px 0px 10px
	}

	.dl-table td {
		font-size: 12px;
		width: 100%;
		display: block;
	}

	.dl-table td ul li,
	.dl-table td a {
		font-size: 12px;
	}

	.access__block {
		grid-template-columns: 1fr
	}

	.container {
		/* padding: 12px 14px 60px */
	}

	.access__map iframe {
		height: 200px
	}
}