@charset "utf-8";
/* カスタマイズ用CSS */
#ht_custom{
margin-bottom: 2em;
}
/* .btn_linkでグリーンボタン */
#ht_custom a.btn_link{
    display: inline-block;
    padding: 0.8em 12px;
    font-weight: 500;
    line-height: 1.5em;
    text-align: center;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 2px 2px 0px 0px #006837;
    background-color: #31a468;
    min-width: 258px;
    text-decoration: none;
    font-size: 15px;
    transition: .1s;
    position: relative;
	color: #fff;
}
#ht_custom a.btn_link:hover {
background-color: #48bd80;
box-shadow: none;
transform: translate(2px, 2px);
}

@media screen and (max-width: 640px){
#ht_custom a.btn_link{
margin-bottom: 1em;
}

}
/* .orange追加でオレンジボタン */
#ht_custom a.btn_link.orange{
    box-shadow: 2px 2px 0px 0px #cc542f;
    background-color: #f15a24;
}
#ht_custom a.btn_link.orange:hover {
background-color: #ff7240;
box-shadow: none;
transform: translate(2px, 2px);
}

/* 画面サイズ */
@media screen and (max-width: 640px){
#ht_custom .pconly{display: none;}
#ht_custom.pconly{display: none;}
}
@media screen and (min-width: 640px){
#ht_custom .sponly{display: none;}
#ht_custom.sponly{display: none;}
}