@charset "UTF-8";

/* taiken
===================================*/

#taiken{
    width: 100%;
}

#taiken .inner {
	max-width: 1100px;
    padding-top: 30px;
	padding-bottom: 90px;
}

#taiken h3 {
    font-size: 2.0rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: 0.1rem;
    text-align: left;
}

#taiken p {
    font-size: 1.6rem;
    text-align: justify;
    line-height: 2.0;
    margin-bottom: 40px;
}

.shinki-img {
    margin-bottom: 40px;
}

.shinki-img img{
	display: block;
	max-width: 70%;
	margin: auto;
}

#taiken .button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #7DC070;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 3px;
    border-radius: 50px;
    overflow: hidden;
}

#taiken .button a:before{
content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient( 
130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
    -webkit-transition: 0.5s;
    transition: 0.6s;
}
#taiken .button a:hover:before {
    left: 100%;
}
#taiken .button a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}



/* footerFixed */
    
.footerFixed{
    min-height: 100vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
    position: relative;/* ←相対位置 */
    padding-bottom: 300px; /* ←フッターの高さを指定 */
    box-sizing: border-box;
    /* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
}

footer.redirect{
    position: absolute;/* ←絶対位置 */
    bottom: 0;
    /* 以下 背景色やテキストカラーなどはお好みで指定してください */
    color: #fff;
    text-align: center;
}

/* ==============================================================================
[Media Queries] 
============================================================================== */

@media only screen and (min-width:1px) and (max-width:768px) { 

/* taiken
===================================*/

#taiken .inner {
    padding-top: 30px;
	padding-bottom: 60px;
}

#taiken h2 {
    font-size: 2.4rem;
}

#taiken h3 {
    font-size: 1.8rem;
}





} /*@mediaEnd*/






/* ==============================================================================
[Media Queries] 
============================================================================== */

@media only screen and (min-width:1px) and (max-width:480px) {

/* taiken
===================================*/
    
#taiken h2 {
    font-size: 2.0rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    border-top: 1px solid #D6D6D6;
    padding-top: 20px;
}

#taiken h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

#taiken p {
	font-size: 1.4rem;
    margin-bottom: 20px;
}

.shinki-img img {
	max-width: 90%;
}
    
} /*@mediaEnd*/
