@charset "UTF-8";

.visid img{
	height: auto;
	max-height: 100%;
}
/* ==================================================
	title
================================================== */
.section_title {
	background-color: #000;
	color: #fff;
	padding: 1rem;
	text-align: center;
}
/* ==================================================
	links
================================================== */
.links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0;
}
.links li{
	border: 1px solid #aaaaaa;
	width: calc(100% / 3 - 5px);
	padding: .5rem;
	text-align: center;
	margin-top: 5px;
}
.links li span{
	font-size: 90%;
}
.links li img{
	width: 90%;
    max-width: 120px;
}


@media screen and (min-width: 768px){
	.links {
	padding: 3rem;
}
.links li{
width: calc(100% / 3 - 13px);
margin-top: 15px;
padding: 30px;

}
}

/* ==================================================
	step
================================================== */
.step {
	background-color: #e1f6ff;
	padding: 1rem;
}
.step ul {
	border: 2px solid #0096d6;
	padding: 2rem 1rem 1rem;
	border-radius: 1rem;
	background-color: #ffffff;
	position: relative;
	margin-top: 2rem;
}
.step ul:last-of-type::after {
	content: none;
}

.step li {
	text-align: center;
	color: #0096d6;
}
.step li span.number{
	display: inline-block;
    background-color: #0096d6;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #ffffff;
    position: absolute;
    top: -15px;
    left: calc(50% - 15px);
    line-height: 2;
    letter-spacing: 2px;
}
.step li span.text{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px){
.step {
	display: flex;
	justify-content: space-between;
	padding: 2rem;
}
.step ul {
	padding: 2rem;
	width: calc(100% / 3 - 13px);
}
.step ul::after {
	content: "";
	position: absolute;
	background: #0096d6;
	height: calc(tan(60deg) * 24px / 2);
	width: 24px;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	top: calc(50% - 12px);
	right: -24px;
	transform: rotate(90deg);	
}
}