@charset "utf-8";

/* -----------------------------------------------------------
	共通  枠
-------------------------------------------------------------- */
.company-area {
	padding: 120px 0;
}

.company-wrap {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.company-contents {
	width: 860px;
}

.company-contents .company-in-wrap:not(:first-of-type) {
	margin: 90px 0 0 0;
}

@media screen and (max-width: 768px) {
	.company-area {
		padding: 40px 0;
	}

	.company-contents .company-in-wrap:not(:first-of-type) {
		margin: 40px 0 0 0;
	}

	.company-common div[class*="-block"] {
		margin-top: -56px;
		padding-top: 56px;
	}

	.company-wrap {
		flex-direction: column-reverse;
		padding: 0;
	}

	.company-contents {
		width: 100%;
	}
}

/* -----------------------------------------------------------
	共通  comp-nav
-------------------------------------------------------------- */
.comp-nav {
	width: 250px;
}

.comp-nav-inner {
	background: var(--lightgray);
	transition: all .3s;
	width: 250px;
	border-radius: 10px;
}

.comp-nav-biglist {
	padding: 25px 18px 30px;
}

.comp-nav-bigitem a {
	color: #333;
	display: block;
	letter-spacing: .07em;
	position: relative;
}

.comp-nav-bigitem a:hover {
	color: var(--ihin);
}

.comp-nav-bigitem .current-ttl-inner {
	color: #333;
	font: 600 2.5rem/1 var(--cormorantGaramond);
	position: relative;
	padding: 0 0 12px 0;
	text-align: center;
	letter-spacing: .02em;
}

.comp-nav-list li:not(:first-child) {
	padding: 10px 0 0 0;
}

.comp-nav-list a {
	padding: 10px 0 0 25px;
	position: relative;
	transition: all .3s;
	line-height: 1.4;
}
.comp-nav-list a:hover {
	opacity: 0.5;
}

.comp-nav-list a::before {
	background-color: var(--green);
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 15px;
	top: 70%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/*pc only*/
@media screen and (min-width: 769px) {

	#wrapper {
		overflow: unset;
	}

	/*js*/
	.comp-nav-inner {
		/* position: fixed; */
		position: sticky;
		top: 140px;
	}

	.comp-nav.is-opacity {
		opacity: 0;
		display: none;
	}

	.comp-nav-item.current a {
		color: #d7bd15;
	}

	.comp-nav-item.current a::before {
		border-bottom-color: #d7bd15 !important;
	}
}

@media screen and (max-width: 768px) {
	.comp-nav {
		width: 100%;
		margin: 0 0 40px;
		padding: 0;
	}

	.comp-nav-inner {
		width: 100%;
		border-radius: 6px;
	}
	
	.comp-nav-biglist {
		padding: 20px 20px 25px;
	}

	.comp-nav-bigitem.current-ttl, .comp-nav-bigitem.link-ttl {
		font-size: 1.6rem;
		padding: 0;
		border: none;
		margin: 0 0 8px;
	}

	.comp-nav-bigitem.link-ttl a {
		display: block;
		padding: 20px 0 20px 45px;
		background: #f0f0f0;
	}

	.comp-nav-bigitem.link-ttl a::before {
		left: 20px;
		top: 52%;
	}
	
	.comp-nav-list {
		flex-wrap: wrap;
		display: flex;
		align-items: flex-start;
		gap: 10px;
	}

	.comp-nav-list li {
		font-size: 1.6rem;
		width: calc( ( 100% - 10px ) / 2 );
	}
	
	.comp-nav-list li:not(:first-child) {
		padding: 0;
	}
	
	.comp-nav-list a {
		background: #fff;
		padding: 14px 10px 14px 28px;
		font-size: 1.6rem;
		letter-spacing: .03em;
		border-radius: 6px;
	}
	
	.comp-nav-list a::before {
		left: 9px;
		top: 52%;
	}
}

/* -----------------------------------------------------------
message-area
-------------------------------------------------------------- */
.message-area .representative {
	display: flex;
	justify-content: flex-end;
	margin: 20px 0 0;
}

.message-area .representative .ttl {
	font-size: 1.8rem;
}


/* -----------------------------------------------------------
philosophy-area
-------------------------------------------------------------- */
.philosophy-area .txt-custom {
	letter-spacing: 0.08em;
}

/* -----------------------------------------------------------
company-area
-------------------------------------------------------------- */
.company-area {
	position: relative;
	padding: 100px 0;
}

.company-area .img {
	display: flex;
}
.company-area .img img {
	object-fit: cover;
	height: 100%;
	border-radius: 10px;
}

.company-area .company-profile {
	display: flex;
	justify-content: space-between;
	gap: 100px;
}

.company-area .list-base {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 20px;
}

.company-area .company-table {
	/* width: 60%; */
	border-collapse: collapse;
}

.company-area .company-table .access i {
	display: inline-block;
	margin: 0 3px 0 0;
}

.company-area .company-table a.access {
	display: inline-block;
	margin: 8px 0 0;
	padding: 0 10px;
	font-size: 1.3rem;
	border: solid 1px #333;
	border-radius: 4px;
}
.company-area .company-table a.access:hover {
	opacity: 0.5;
}

.company-area .company-table tr th {
	width: 20%;
	text-align: left;
	padding: 24px 20px;
	vertical-align: top;
	font-size: 1.6rem;
	border-bottom: 1px solid var(--green);
	line-height: 1.5;
}

.company-area .company-table tr td .link {
	display: inline-block;
	margin: 5px 0 0;
}
.company-area .company-table tr td .link:hover {
	opacity: 0.5;
}

.company-area .company-table tr td {
	width: 80%;
	padding: 20px;
	border-bottom: 1px solid var(--lightgray02);
	font-size: 1.6rem;
	line-height: 2.2;
}

.company-area .company-table tr:last-child th,
.company-area .company-table tr:last-child td {
	border-bottom: none;
}

.company-area .company-table .access-box {
	margin: 0 0 16px;
}
.company-area .company-table .access-box-ttl {
	color: var(--green);
	font-weight: 600;
}

.company-area .company-table .business-details + .business-details {
	margin: 20px 0 0;
}
.company-area .company-table .business-details .ttl {
	color: var(--green);
	font-weight: 600;
}


@media screen and (max-width: 768px){

	.company-area {
		padding: 40px 0;
	}

	.company-area .img {
		height: 250px;
		margin: 0 0 40px;
	}
	.company-area .img img {
		border-radius: unset;
	}

	.company-area .list-base li {
		line-height: 1.7;
	}
	.company-area  .list-base li::before {
		top: 9px;
	}
	
	.company-area .company-table {
		width: 100%;
	}
	
	.company-area .company-table tr th {
		width: 30%;
		padding: 20px 0;
		font-size: 1.5rem;
	}
	
	.company-area .company-table tr td {
		padding: 16px;
		line-height: 1.7;
	}

	.company-area .list-base {
		flex-direction: column;
	}
	
}


/* -----------------------------------------------------------
	access-area
-------------------------------------------------------------- */
.access-area .access-box {
	/* align-items: center; */
	display: flex;
	/* justify-content: space-between; */
	/* gap: 64px; */
	margin: 40px 0 0;
	background: var(--lightgray);
	border-radius: 10px;
	overflow: hidden;
}

.access-area .txt-wrap .access-ttl {
	font-size: 1.9rem;
	font-weight: bold;
	margin: 0 0 8px;
	display: inline-block;
	line-height: 1;
	white-space: nowrap;
	width: fit-content;
}

.access-area .access-box-ttl {
	margin: 0 0 12px;
	/* padding: 4px 10px; */
	/* color: #fff; */
	/* background: var(--green); */
	color: var(--green);
	font-size: 2.4rem;
	font-weight: 600;
	font-family: var(--notoSerifJP);
	line-height: 1.5;
}

.access-area .access-box .txt-wrap {
	padding: 40px;
	width: 100%;
}

.access-area .txt-wrap .address {
	margin: 15px 0 5px;
	line-height: 1.8;
}

.access-area .txt-wrap .tel a, .access-area .txt-wrap .fax {
	color: #333;
}

.access-area .txt-wrap .train {
	margin: 20px 0 0;
}

.access-area .txt-wrap .train::before {
	content: "\f239";
	display: inline-block;
	font-weight: 700;
	font-family: "Font Awesome 5 Free";
	padding: 0 5px 0 0;
	font-size: 1.8rem;
}

.access-area .map-wrap {
	width: 500px;
	height: 344px;
	flex-shrink: 0;
}

.access-area .map-wrap iframe {
	width: 100%;
	height: 100%;
}

.access-area .last-txt {
	margin: 12px 0 0;
	font-size: 1.4rem;
}

@media screen and (max-width: 768px) {

	.access-area .access-box {
		align-items: flex-start;
		flex-direction: column;
		gap: unset;
		margin: 30px 0 0;
		border-radius: 6px;
	}

	.access-area .access-box-ttl {
		margin: 0 0 12px;
		font-size: 2rem;
	}

	.access-area .access-box .txt-wrap {
		padding: 20px;
	}

	.access-area .map-wrap {
		width: 100%;
		height: 300px;
	}
	
}