@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*
#compmaker .h1 + .compmaker-body, #compmaker .h2 + .compmaker-body, #compmaker .ex + .compmaker-body,
#compmaker .h1 + .element, #compmaker .h2 + .element, #compmaker .ex + .element {
	margin-top: 20px;
}
*/
/*~~*/

#compmaker .compmaker-body dl {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

#compmaker .compmaker-body dt {
	border: 1px solid #ccc;
	padding: 15px;
	p {
		margin-top: 10px;
		padding-top: 10px;
		border-top: 1px solid #ccc;
	}
	.specs::before {
		content: "（"
	}
	.specs:after {
		content: "）"
	}
}

#compmaker .compmaker-body dd {
	width: 100%;
	display: flex;
}

#compmaker .compmaker-body dd .ftext {
	display: flex;
	justify-content: center;
	flex-direction: column;
	.head {
		margin-top: 10px;
		font-size: 38px;
		font-weight: 100;
		line-height: 1;
	}
	p {
		margin-top: 10px;
		display: inline-block;
	}
	.body {
		display: inline-block;
	}
	.cmnt {
		margin-top: 25px;
		padding: 15px;
		display: inline-block;
		border: 1px solid #ccc;
		position: relative;
		background-color: #ffffff;
	}
	.cmnt::before {
		content: "";
		position: absolute;
		top: 0;
		left: 20%;
		border-style: solid;
		border-width: 0 20px 20px 0;
		border-color: transparent transparent #ccc;
		translate: -50% -100%;
		transform: skew(-25deg);
		transform-origin: bottom;
	}
	.cmnt::after {
		content: "";
		position: absolute;
		top: 0;
		left: 20%;
		border-style: solid;
		border-width: 0 17.6px 17.6px 0;
		border-color: transparent transparent #fff;
		translate: calc(-50% - 0.2px) -100%;
		transform: skew(-25deg);
		transform-origin: bottom;
	}
}

#compmaker .compmaker-body dd .fpict {
	border: 1px solid #ccc;
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 768px) {
/************************************************************************************************************************/

#compmaker .compmaker-body dd {
	flex-direction: column;
	.ftext {
		order: 2;
	}
	.fpict {
		order: 1;
	}
}

/************************************************************************************************************************/
}

@media screen and (min-width: 769px) {
/************************************************************************************************************************/

#compmaker .compmaker-body dd .ftext {
	width: calc(50% + 100px);
	padding: 50px 100px 50px 50px;
	border: 1px solid #ccc;
	.head {
		font-size: 56px;
	}
}

#compmaker .compmaker-body dd .fpict {
	width: 50%;
	margin: 25px 0;
	margin-left: -50px; 
}

#compmaker .compmaker-body dd img {
	width: auto; max-width: 100%;
}

/************************************************************************************************************************/
}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/