/**
 * #.# PROGRAM
 *
 *
 */

 /*プログラム紹介*/
 .program-intro {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fill, 309px);
    gap: 16px;
    justify-content: center;
}
.program-content {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: 400px;
    position: relative;
}
.program-content img {
    border-radius: 8px 8px 0px 0px;
    width: 100%;
    object-fit: cover;
    height: 190px;
}
.program-title {
    font-size: 20px;
    font-weight: 700;
    padding: 10px;
}
.program-description {    
    font-size: 14px;
    padding: 0px 10px;
}
.program-link {
    font-weight: 500;
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
}
.program-link.personal {
    color: #05C3C3;
}
.program-link.studio {
    color: #E07171;
}
.program-link.golf {
    color: #339544;
}
.program-link span {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 8px;
}
.program-link.personal span {
    background-color: #05C3C3;
}
.program-link.studio span {
    background-color: #E07171;
}
.program-link.golf span {
    background-color: #339544;
}
.program-link::before,
.program-link::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.program-link::before {
    left: 127px;
    width: 16px;
    height: 2px;
    background: #fff;
}
.program-link::after {
    left: 133px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (max-width:768px){
    .program-content {
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        height: 370px;
        position: relative;
    }
    .program-title {
        font-size: 16px;
        font-weight: 700;
        padding: 4px 10px;
    }
    .program-description {
        font-size: 12px;
        padding: 0px 10px;
    }
    .program-link span {
        border-radius: 50%;
        width: 25px;
        height: 25px;
        display: inline-block;
        margin-left: 4px;
    }
    .program-link::before {
        left: 107px;
        width: 16px;
        height: 2px;
        background: #fff;
    }
    .program-link::after {
        left: 114px;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

/*無料体験*/
.free-trial {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 100px auto;
}
.trial-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 10px;
}
.trial-info {
    text-align: center;
    padding: 10px 0 40px 0;
}
/*リンク*/
.go-program-link {
    display: grid;
    grid-template-columns: repeat(2, 313px);
    gap: 10px;
    justify-content: center;
}
.go-program-link img {
    width: 30px;
}
.go-program-link a {
    display: flex;
    align-items: center;
    color: #fff;
    line-height: 1.2em;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    justify-content: space-evenly;
	height: 55px;
}
.join-link {
    background: #107A6A;
}
.trial-link {
    background: #17C1B0;
}
@media screen and (max-width:960px){
    .trial-info span{
        display: block;
    }
}
@media screen and (max-width:768px){
    .trial-title {
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        padding-bottom: 5px;
    }
    .trial-info {
        text-align: center;
        padding: 5px 9px 15px 10px;
    }
	.go-program-link {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 20px;			
		justify-content: center;
		align-items: stretch;
	}
	.go-program-link a {
		display: grid;
		align-items: center;
		color: #fff;
		grid-template-columns: auto 1fr;
		line-height: 1.2em;
		font-weight: 500;
		padding: 10px;
		border-radius: 8px;
		box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
		height: 55px;
		justify-content: space-around;
	}
	.go-program-link img {
		width: 30px;
		margin-left: 20px;
	}
	.go-program-link p {
		text-align: center;
	}
}