#co1 .hems h4+p {
	margin-bottom: 2em;
}

/* remote-func */
#co1 .hems .remote-func {
	margin-top: 2em;
	border: 1px solid #ccc;
	background-color: #fff;
}

#co1 .hems .hdgroup {
	width: 25%;
	padding: 1em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #eeebde;
}

#co1 .hems .hdgroup img {
	width: 70%;
}

#co1 .hems .remote-wrp {
	width: 75%;
	padding: 1em 2em;
}

#co1 .hems .remote {
	width: 100%;
	padding: .5em;
	border-radius: 4px;
	text-align: center;
	display: grid;
	align-content: center;
	gap: .5em 2em;
	grid-template-areas: "fig title" "fig text";
	grid-template-columns: auto 1fr;
	grid-template-areas: auto auto;
}

#co1 .hems .circleimg {
	width: 140px;
	height: 140px;
	border-radius: 100%;
	overflow: hidden;
	grid-area: fig;
}

@media screen and (max-width:767px) {
	#co1 .hems .circleimg {
		width: 86px;
		height: 86px;
		margin: 0;
	}
}

#co1 .hems h6 {
	grid-area: title;
	text-align: justify;
	align-self: flex-end;
}

#co1 .hems p {
	grid-area: text;
	margin: 0;
	text-align: justify;
}

/* eco support */
#co1 .hems .balloon-wrp {
	position: relative;
    align-self: flex-start;
}

@media screen and (max-width:767px) {
    #co1 .hems .balloon-wrp {
        width: calc(100% - 2.5em);
        max-width: 500px;
        margin: 0 auto;
        transform: translate(-1em);
    }
}

#co1 .hems .balloon-wrp .balloon {
    width: 8em;
    height: 8em;
    position: absolute;
    right: -3em;
    bottom: -.5em;
    display: grid;
    place-content: center;
    background-color: var(--color-green);
    color: #fff;
    font-weight: bold;
    border-radius: 100%;
}

#co1 .hems .balloon-wrp .balloon::before {
    content: '';
    width: 2.5em;
    height: 1.5em;
    position: absolute;
    right: 90%;
    top: 45%;
    background-color: var(--color-green);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

#co1 .hems .balloon-wrp .balloon p {
    text-align: center;
}

@media screen and (max-width:767px) {
    #co1 .hems .balloon-wrp + .columns-30 {
        width: 80%;
        max-width: 400px;
    }
}

/* control-wrp */
#co1 .hems .control-wrp {
    gap: 3em 0;
}

#co1 .hems .control-wrp .control {
	width: 47%;
}

@media screen and (max-width:767px) {
	#co1 .hems .control-wrp .control {
		width: 100%;
	}
}

#co1 .hems .control-wrp .control .control-img {
	margin-bottom: 1.5em;
}

#co1 .hems .control-wrp .control h6 {
    width: 100%;
    display: block;
    font-size: .9em;
    padding: 0 0 1em;
}

#co1 .hems .control-wrp .control .notitle::before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    padding-top: 2.2em;
}

#co1 .hems .control-wrp .frame-box {
    width: 49%;
    min-height: 5em;
    margin-bottom: .5em;
    padding: .5em 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: .9em;
    position: relative;
}

#co1 .hems .control-wrp .control.rain .frame-box {
	color: var(--color-blue);
}

#co1 .hems .control-wrp .control.sun .frame-box {
	color: #33448b;
}

#co1 .hems .control-wrp .control.sun .frame-box .balloon {
    width: max-content;
    padding: .75em 1.25em;
	position: absolute;
    left: 50%;
    bottom: calc(100% + .7em);
    font-size: .85em;
    line-height: 1.5;
    background-color: #33448b;
    color: #fff;
    border-radius: 3px;
    transform: translate(-50%);
}

#co1 .hems .control-wrp .control.sun .frame-box .balloon .sml {
    font-size: .9em;
}

#co1 .hems .control-wrp .control.sun .frame-box .balloon::before {
    content: '';
    width: 1.5em;
    height: 1.25em;
    position: absolute;
    left: 50%;
    top: 99%;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #33448b;
    transform: translate(-50%);
}

@media screen and (max-width:640px) {
	#co1 .hems .hdgroup {
		width: 100%;
	}

	#co1 .hems .hdgroup img {
		width: min(40%, 160px);
	}

	#co1 .hems .hdgroup h5 {
		padding: .5em 0 0;
	}

	#co1 .hems .remote-wrp {
		width: 100%;
		padding: 1em;
	}

	#co1 .hems .remote {
		gap: .5em 1em;
	}

	#co1 .hems p {
		font-size: min(1em, 3.3vw);
	}
}


