@charset "utf-8";
/* ------------------------------------- */
/* ------------------------------------- */
/* ------------------------------------- */
/* ------------------------------------- */
/* ------------------------------------- */

:root {
	--bg: #f6f7f8;
	--line: #e5e7ea;
	--ink: #222;
	--sub: #666;
	--acc: #2574be;
	--max: 1080px;
	--gap: 28px;
	--midashi: #2574be;
}

* {
	box-sizing: border-box
}

body {
	margin: 0;
	color: var(--ink);
	line-height: 1.8;
	background: #fff
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle
}

a {
	color: inherit
}

.sec-head {
	margin: 0 0 40px;
	line-height: 1.8;
	text-align: center;
}

.sec-head small {
	display: block;
	font-size: 12px;
	color: var(--sub);
	letter-spacing: .08em;
	text-align: center
}

.slash {
	display: inline-block;
	padding: 0 1.3em;
	position: relative;
	font-weight: 700;
	letter-spacing: .06em;
	font-size: clamp(29px, 5vw, 45px);
}

/* .slash::before {
	content: "";
	position: absolute;
	left: 0;
	top: 55%;
	width: 1em;
	height: 1.5px;
	background: var(--acc);
	transform: translateY(-50%) rotate(45deg);
}

.slash::after {
	content: "";
	position: absolute;
	right: 0;
	top: 55%;
	width: 1em;
	height: 1.5px;
	background: var(--acc);
	transform: translateY(-50%) rotate(-45deg);
} */

/*------------------------------------------ 
message 
------------------------------------------*/
.message {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: var(--gap)
}

.message__photo {
	/* border: 1px solid var(--line); */
	background: rgba(37,116,190,.3);
	padding: 10px
}

.message__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	left: -10px;
	bottom: 10px;
        background: #fff;
}

.message__name {
	margin-top: 18px;
	text-align: right;
	color: var(--sub);
}

.motto {
	text-align: center;
	/* border: 2px solid var(--acc); */
	border-radius: 6px;
	/* font-style: italic; */
	background: #fff;
	margin-bottom: 60px;
}

.motto p {
    font-size: clamp(17px, 4vw, 24px);
	font-family: "Noto Serif JP", sans-serif;
	    line-height: 2em;
}

/*------------------------------------------
 outline (会社概要) 
 ------------------------------------------*/
#outline {
	background: var(--bg);
	/* width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw; */
}

#outline .outline {
	max-width: var(--max);
	margin: 0 auto;
	background: transparent;
	border: none;
	/* padding: 0 20px; */
	max-width: 960px;
}

.dl-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.dl-table th,
.dl-table td {
	border-bottom: 1px solid var(--line);
	padding: 12px 10px;
	vertical-align: middle;
}

.dl-table th {
	text-align: center;
	width: 160px;
	color: var(--midashi);
}

.logo-hebel {
	display: block;
	background-color: #fff;
	padding: 10px;
	border: 0.5px solid #ccc;
	margin-bottom: 5px;
	width: 120px;
}


/*------------------------------------------
 history 
 ------------------------------------------*/
.history {
	max-width: var(--max);
	margin: 0 auto;
	/* padding: 0 20px; */
	max-width: 960px;
}

.history ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.history li {
	border-bottom: 1px solid var(--line);
	padding: 10px 0;
	display: flex;
	align-items: flex-start;
    justify-content: center;
}

.history li span {
	display: block;
	width: 120px;
	white-space: nowrap;
	font-size: clamp(12px, 3vw, 14px);
	margin: 0 30px;
}

.history li div {
	width: calc(100% - 130px);
	font-size: clamp(12px, 3vw, 14px);
}

@media screen and (max-width:767.98px) {
	.history li span {
		width: 100px;
		font-size: clamp(12px, 3vw, 14px);
		margin: 0;
	}

	.history li {
		font-size: 14px;
	}

	.history li div {
		        font-size: clamp(12px, 3vw, 14px);
        width: calc(100% - 50px);
	}
}

/*------------------------------------------
 access 
 ------------------------------------------*/
#access {
	background: var(--bg);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

#access .access {
	margin: 0 auto;
    background: transparent;
    border: none;
    padding: 0 20px;
    max-width: 960px;
}

.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);
	background: #fff;
	text-decoration: none;
	font-size: 14px;
	border-radius: 4px
}

.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
	}
}