@charset "utf-8";


.group-name, .group-name span {
    
    color: #226;
}

.group-name {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 100px;
    font-family: ShinGo-B;
    font-size: 50px;
    line-height: 1em;
}

.group-name span {
    padding-right: 10px;
    font-family: ShinGo-DB;
    font-size: 32px;
    line-height: 1em;
}

@media (width <= 1023px) {
	.group-name {
        display: flex;
        margin-bottom: 30px;
        font-size: 21px;
        letter-spacing: -0.033em;
    }

    .group-name span {
        padding-right: 5px;
        font-size: 14px;
    }
}


/*---------------------------------------------------------------------- .group_box --*/

.group_logo {
    display: none;
	text-align: center;
	margin-bottom: 100px;
	border-bottom: 0px solid #ddd;
	height: 50px;
}

.group_logo img {
	height: auto;
	margin: 0 auto;
}

.group_box {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.group_box_left {
	width: 33.3%;
}

.group_box_right {
	width: 66.7%;
	padding-left: 100px;
}

.group_image {
	width: 100%;
	aspect-ratio: 16 / 8;
	border-radius: 5px;
}

.group_profile {
	display: flex;
	flex-wrap: wrap;
}

.group_profile dt {
	width: 100px;
}

.group_profile dd {
	width: calc(100% - 100px);
}

.group_business {
	margin: 50px 0 0 0;
}

.group_profile *, .group_business {

}

.group_profile:before {
	content: '会社概要';
	width: 100%;
}

.group_business:before {
	content: '主な事業内容';
	width: 100%;
}

.group_box :before {
	display: block;
	margin: 0px 0 10px;
	font-family: YuGo-B;
	font-size: 16px;
}

.group_link {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-end;
	margin-top: 100px;
}

.group_link a {
	width: 150px;
	line-height: 150px;
	border: 1px solid #ddd;
	border-radius: 100px;
	background: url(/asset/image/general/link_arrow_ccc.png?m=20000101) center / cover, #fff;
	font-family: YuGo-B;
	font-size: 15px;
	text-align: center;
}

.group_link a:nth-child(n + 2) {
	margin-left: 15px;
}

@media (width <= 1600px) {
	.group_profile dt {
		width: 75px;
	}

	.group_profile dd {
		width: calc(100% - 75px);
	}
	
	.group_profile *, .group_business {
		font-size: 16px;
	}
}

@media (width <= 1280px) {
	.group_box_right {
		padding-left: 50px;
	}
}

@media (width <= 1024px) {
	.group_link a {
		width: 125px;
		line-height: 125px;
	}
}

@media (width <= 768px) {
	.group_logo {
		margin-bottom: 50px;
	}

	
	.group_box {		
		flex-direction: column-reverse;
	}
	
	.group_box_left, .group_box_right {
		width: 100%;
		padding: 0;
	}
	
	.group_link {
		margin: 30px 0;
	}
}

@media (width <= 500px) {
	.group_logo {
		margin: 15px 0;
	}
	
	.group_link {
		margin: 30px 0 50px;
	}
	
	.group_link a {
		width: 100%;
		line-height: 3em;
		border-color: #226;
		border-radius: var(--border_radius);
	}
	
	.group_link a:nth-child(n + 2) {
		display: none;
	}
}

@media (hover: hover) and (pointer: fine) {
	.group_url {
		transition: var(--transition);
	}
	
	.group_url:hover {
		border-color: var(--theme);
		background: url(/asset/image/general/link_arrow_fff.png?m=20000101) center / cover, #226;
		color: #fff;
	}
}