/*
 * base css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
} /* end -599 */

@media (min-width: 600px) and (max-width:959px) {
} /* end 600-959 */

@media (min-width: 960px) {
} /* 960- */


/* ---------------------------------------- common */

strong { font-weight: bold; }
#editors h5 { font-weight: bold; }

:root {
	--text-base: #000;
	--blue-color: #3796bb; /* 1e73be */
	--green-color: #44b3ae;
	--green-color-hover: #269c97;
	--light-green: #f5fafa;
	--gray-color: #ccc;
	--copyright-blue : #2c7896;
}　/*71ad46　578234　3796bb*/

/* scaleup */
a.scaleup {
	display: block;
	overflow: hidden;
}
a.scaleup img {
	width: 100%;
	height: auto;
	-webkit-transition: transform 0.75s ease;
	-moz-transition: transform 0.75s ease;
	transition: transform 0.75s ease;
}
a.scaleup:hover img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/* bluelink */
a.bluelink {
	color: #fff;
	background: #3796bb;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
a.bluelink:hover {
	color: #fff;
	background: #3796bb; 
}/*1e73be*/

/* design_button */
.design_button a {
	display: inline-block;
	min-width: 220px;
	height: 55px;
	color: #fff;
	background: var(--green-color);
	font-size: clamp(1.2rem, 1vw + 0.5rem, 1.4rem);
	text-align: center;
	line-height: 55px;
	padding: 0 20px;
	border-radius: 8px;
}
.design_button a:hover {
    background: var(--green-color-hover);
}

@media screen and (max-width:650px) {
	.design_button a {
		min-width:180px; 
		height:45px; 
		line-height:45px;
	}
}