/*灰色ボタン*/
.shinygray-btn {
    display: block;
    position: relative;
    width: 100%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 5px auto 20px auto;
    background-color: #a9a9a9;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(136, 136, 136, 1);/*影の色(rgbaの値を変更)*/
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
}
.shinygray-btn a {
color: #FFFFFF;
text-decoration: none;
}
.shinygray-btn a:link {
color:#FFFFFF;
}
.shinygray-btn a:visited {
color:#FFFFFF;
}
.shinygray-btn a:hover {
color:#FFFFFF;
}
.shinygray-btn a:active {
color:#FFFFFF;
}
.shinygray-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shinygray-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shinygray-btn 3s ease-in-out infinite;
}
@-webkit-keyframes shinygray-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
/*灰色ボタンここまで*/
/*赤色ボタン*/
.shinyred-btn {
    display: block;
    position: relative;
    width: 100%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 5px auto 20px auto;
    background-color: #E6456D;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(204, 0, 51, 1);/*影の色(rgbaの値を変更)*/
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
}
.shinyred-btn a {
color: #FFFFFF;
text-decoration: none;
}
.shinyred-btn a:link {
color:#FFFFFF;
}
.shinyred-btn a:visited {
color:#FFFFFF;
}
.shinyred-btn a:hover {
color:#FFFFFF;
}
.shinyred-btn a:active {
color:#FFFFFF;
}
.shinyred-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shinyred-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shinyred-btn 3s ease-in-out infinite;
}
@-webkit-keyframes shinyred-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
/*赤色ボタンここまで*/
/*オレンジ色ボタン*/
.shinyorange-btn {
    display: block;
    position: relative;
    width: 100%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 5px auto 20px auto;
    background-color: #EB8046;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(235, 85, 5, 1);/*影の色(rgbaの値を変更)*/
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
}
.shinyorange-btn a {
color: #FFFFFF;
text-decoration: none;
}
.shinyorange-btn a:link {
color:#FFFFFF;
}
.shinyorange-btn a:visited {
color:#FFFFFF;
}
.shinyorange-btn a:hover {
color:#FFFFFF;
}
.shinyorange-btn a:active {
color:#FFFFFF;
}
.shinyorange-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shinyorange-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shinyorange-btn 3s ease-in-out infinite;
}
@-webkit-keyframes shinyorange-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}/*オレンジ色ボタンここまで*/
/*緑色ボタン*/
.shinygreen-btn {
    display: block;
    position: relative;
    width: 100%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 5px auto 20px auto;
    background-color: #07b53b;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(3, 145, 45, 1);/*影の色(rgbaの値を変更)*/
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
}
.shinygreen-btn a {
color: #FFFFFF;
text-decoration: none;
}
.shinygreen-btn a:link {
color:#FFFFFF;
}
.shinygreen-btn a:visited {
color:#FFFFFF;
}
.shinygreen-btn a:hover {
color:#FFFFFF;
}
.shinygreen-btn a:active {
color:#FFFFFF;
}
.shinygreen-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shinygreen-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shinygreen-btn 3s ease-in-out infinite;
}
@-webkit-keyframes shinygreen-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}/*緑色ボタンここまで*/
/*桃色ボタン*/
.shinypink-btn {
    display: block;
    position: relative;
    width: 100%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 5px auto 20px auto;
    background-color: #e2007e;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(181, 0, 101, 1);/*影の色(rgbaの値を変更)*/
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
}
.shinypink-btn a {
color: #FFFFFF;
text-decoration: none;
}
.shinypink-btn a:link {
color:#FFFFFF;
}
.shinypink-btn a:visited {
color:#FFFFFF;
}
.shinypink-btn a:hover {
color:#FFFFFF;
}
.shinypink-btn a:active {
color:#FFFFFF;
}
.shinypink-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shinypink-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shinypink-btn 3s ease-in-out infinite;
}
@-webkit-keyframes shinypink-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}/*桃色ボタンここまで*/
/*淡い青色ボタン*/
.shinyblue-btn {
    display: block;
    position: relative;
    width: 100%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 5px auto 20px auto;
    background-color: #50b3cd;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(56, 125, 143, 1);/*影の色(rgbaの値を変更)*/
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
}
.shinyblue-btn a {
color: #FFFFFF;
text-decoration: none;
}
.shinyblue-btn a:link {
color:#FFFFFF;
}
.shinyblue-btn a:visited {
color:#FFFFFF;
}
.shinyblue-btn a:hover {
color:#FFFFFF;
}
.shinyblue-btn a:active {
color:#FFFFFF;
}
.shinyblue-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shinyblue-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shinygray-btn 3s ease-in-out infinite;
}
@-webkit-keyframes shinygray-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
/*淡い青色ボタンここまで*/
/*黒色ボタン*/
.shinyblack-btn {
    display: block;
    position: relative;
    width: 100%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 30px auto;
    background-color: #262626;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(13,13,13,1);/*影の色(rgbaの値を変更)*/
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
}
.shinyblack-btn a {
color: #FFFFFF;
text-decoration: none;
}
.shinyblack-btn a:link {
color:#FFFFFF;
}
.shinyblack-btn a:visited {
color:#FFFFFF;
}
.shinyblack-btn a:hover {
color:#FFFFFF;
}
.shinyblack-btn a:active {
color:#FFFFFF;
}
.shinyblack-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shinyblack-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shinygray-btn 3s ease-in-out infinite;
}
@-webkit-keyframes shinygray-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
/*黒色ボタンここまで*/
/*青色ボタン*/
.shinydeepblue-btn {
    display: block;
    position: relative;
    width: 100%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 5px auto 20px auto;
    background-color: #0195ff;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(0, 119, 205, 1);/*影の色(rgbaの値を変更)*/
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
}
.shinydeepblue-btn a {
color: #FFFFFF;
text-decoration: none;
}
.shinydeepblue-btn a:link {
color:#FFFFFF;
}
.shinydeepblue-btn a:visited {
color:#FFFFFF;
}
.shinydeepblue-btn a:hover {
color:#FFFFFF;
}
.shinydeepblue-btn a:active {
color:#FFFFFF;
}
.shinydeepblue-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shinydeepblue-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shinygray-btn 3s ease-in-out infinite;
}
@-webkit-keyframes shinygray-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
/*青色ボタンここまで*/
/*トップページのみ適用の見出しスタイル変更*/
.home .st-matome {
  font-size: 19px;/*文字のサイズ*/
  border-top: 1px solid #4865b2 !important;/*上線*/
  border-bottom: 1px solid #4865b2 !important;/*下線*/
	border-left: none !important;/*左線*/
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: none !important;
	border-radius: 0 !important;/*ボーダーの角*/
}
/*トップページ見出しここまで*/
/*トップページのみ適用の新着記事の見出し非表示*/
.home .n-entry-t {
  display: none;
}
/*トップページ見出し非表示ここまで*/