@charset "utf-8";
/* CSS Document */

/***** 共通 *****/
body{
    font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic",sans-serif;
    background-color: rgb(248,247,245);
    margin: 0 auto;
    padding-top: 84px;
}
.wrapper{
    width: 1519px;
    margin: 0 auto;
    min-height: 100vh; 
    position: relative;
    padding-bottom: 100px;
    box-sizing: border-box;
}

/* ヘッダー */
.header_top{
    width: 100%;
    background-color: rgb(0,127,162);
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
}
.header_top img{
    width: 100px;
    margin-top: 5px;
}
.header_top ul{
    font-size: 28px;
    font-family: 'Baloo Bhaijaan 2', cursive;
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 25px 0 20px 0;
}
.header_top ul li{
    margin: 0 20px;
}
.header_top a{
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
}
.header_top a:hover{
    color: rgb(254,244,97);
    transition: all 0.4s;
}

/* フッター */
.footer_top{
    width: 100%;
    margin-top: 250px;
    height: 100px;
    background-color: rgb(0,127,162);
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
}
.footer_top small{
    margin-top: 50px;
}

/* 戻るボタン */
/*#page-top{
    color: #000;
    background-color: rgb(199,233,245);
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 15px;
    position: fixed;
    right: 10px;
    bottom: 50px;
    opacity: 0;
    transition: all 1s ease;
}
#page-top.show {
    opacity: 0.6;
    transform: none;
}
#page-top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    padding: 15px;
    text-decoration: none;
}
#page-top a::before{
    font-size: 30px;
    position: absolute;
    width: 30px;
    height: 30px;
    top: -40px;
    bottom: 100px;
    right: 10px;
    text-align: center;
}
#page-top a::after{
    font-size: 18px;
    position: absolute;
    top: 45px;
    bottom: 100px;
    right: 10px;
    text-align: center;
}*/
#page-top{
    position: fixed;
	bottom: 125px;
	right: 30px;
	height: 50px;
	width: 50px;
	color: rgb(248,247,245);
	font-size:30px;
	font-weight: bold;
	background-color:rgb(0,127,162);
	border: none;
	border-radius: 10px;
	opacity: 0;
	transition-duration: 0.5s;
}
#page-top:hover{
    background-color: rgba(0,127,162,0.9);
}

/***** index.html *****/
h1{
    font-family: 'Modak', cursive;
    margin: 50px auto;
    text-align: center;
    font-size: 60px;
    font-weight: 400;
    color: rgb(97,107,255);
}
.article_top{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.article_top h2{
    color: rgb(0,127,162);
    font-size: 36px;
    font-family: 'Baloo Bhaijaan 2', cursive;
    font-weight: bold;
    margin: 0;
}
.section_top{
    width: 100%;
    background-color: rgb(199,233,245);
    margin-bottom: 100px;
}
.section_top ul{
    font-size: 30px;
    font-family: 'Baloo Bhaijaan 2', cursive;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}
.section_top ul li{
    background-color: rgb(0,127,162);
    width: 300px;
    margin: 35px 110px;
    padding: 50px 35px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.4s;
}
.section_top ul li:hover{
    background-color: rgba(0,127,162,0.9);
    transition: all 0.6s;
}
.section_top ul li .btn{
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
}
.section_top ul li .btn:hover{
    color: rgb(254,244,97);
    transition: all 0.4s;
}


/***** search.php *****/
.article_search{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.article_search h2{
    color: rgb(0,127,162);
    font-size: 36px;
    font-weight: bold;
    font-family: 'Baloo Bhaijaan 2', cursive;
    margin: 50px 0 0;
}
.article_search form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.article_search form input[type="text"]{
    width: 70%;
    height: 50px;
    margin: 0 auto;
    padding: 5px 20px;
    font-size: 20px;
    border-color: #000;
}
.article_search form input[type="submit"]{
    width: 100px;
    font-size: 18px;
    background-color: #fff;
    margin: 15px auto;
    padding: 5px 20px;
    border-radius: 10px;
    border-color: #000;
    transition: all 0.2s;
}
.article_search form input[type="submit"]:hover{
    color: #000;
    background-color: rgb(248,247,245);
    border-color: rgb(0,80,102);
    border-style: solid;
    transition: all 0.4s;
}
.section_search{
    width: 100%;
    background-color: rgb(199,233,245);
    margin-bottom: 100px;
}
.section_search .word_p{
    display: flex;
    justify-content: center;
}
.section_search .search_bold{
    font-size: 24px;
    font-weight: bold;
    margin: auto 5px 26px;
}
.section_search .search_p{
    margin: 30px 0;
    text-align: center;
    font-size: 18px;
}
.section_search .put_song{
    font-size: 24px;
    margin: 0;
    padding: 25px 20px;
    border-style: double;
    border-width: 4px 0;
    border-color: rgb(0,127,162);
    border-right-style: none;
    border-left-style: none;
    border-bottom-style: none;
}
.section_search .put_song a{
    color: #000;
    text-decoration: none;
}


/***** list.php *****/
.article_list{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.article_list h2{
    color: rgb(0,127,162);
    font-size: 36px;
    font-weight: bold;
    font-family: 'Baloo Bhaijaan 2', cursive;
    margin: 50px 0 0;
}
.article_list .section_list{
    width: 100%;
    padding-bottom: 15px;
    background-color: rgb(199,233,245);
}
.article_list .section_list h3{
    font-size: 24px;
    margin: 15px 30px;
}
.article_list .section_list .list_age{
    display: flex;
    flex-wrap: wrap;
}
.article_list .section_list a{
    color: rgb(248,247,245);
    font-size: 20px;
    background-color: rgb(0,127,162);
    margin: 5px 33px;
    padding: 2px 15px;
    text-decoration: none;
    border-radius: 5px;
}
.article_list .section_list a:hover{
    background-color: rgba(0,127,162,0.9);
}
.article_song_list{
    width: 80%;
    margin: 0 auto 100px;
    background-color: rgb(199,233,245);
    display: flex;
    flex-wrap: wrap;
}
.section_song_list{
    width: 100%;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    border-style: double;
    border-width: 4px 0;
    border-color: rgb(0,127,162);
    border-right-style: none;
    border-left-style: none;
    border-top-style: none;
}
.article_song_list img{
    width: 20%;
    margin: 20px 30px;
}
.article_song_list .song_sentence{
    width: 65%;
    display: block;
    margin-top: 40px;
    margin-left: 40px;
}
.article_song_list .song_name{
    font-size: 24px;
}
.article_song_list .song_sd{
    font-size: 18px;
}
.article_song_list .list_page_link{
    width: 100%;
    margin: 40px 0;
    display: flex;
    justify-content: center;
}
.article_song_list .list_page_link span{
    color: #000;
    background-color: rgba(0,127,162,0.9);
    font-size: 20px;
    margin: 0 10px;
    padding: 10px 19px;
}
.article_song_list .list_page_link a{
    color: rgb(248,247,245);
    background-color: rgb(0,127,162);
    font-size: 20px;
    text-decoration: none;
    margin: 0 10px;
    padding: 10px 19px;
}
.article_song_list .list_page_link a:hover{
    background-color: rgba(0,127,162,0.9)
}


/***** profire.html *****/
.article_prof{
    width: 80%;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
}
.article_prof h2{
    color: rgb(0,127,162);
    font-size: 36px;
    font-weight: bold;
    font-family: 'Baloo Bhaijaan 2', cursive;
    margin: 50px 0 0;
}
.article_prof .section_prof{
    width: 100%;
    padding-bottom: 15px;
    background-color: rgb(199,233,245);
}
.article_prof .section_prof h3{
    font-size: 24px;
    margin: 15px 30px;
}
.article_prof .section_prof .prof_str{
    display: flex;
    justify-content: space-between;
}
.article_prof .section_prof .prof_qua{
    display: flex;
    justify-content: flex-start;
}
.article_prof .section_prof .prof_hea{
    display: flex;
    justify-content: space-between;
}
.article_prof .section_prof a{
    color: rgb(248,247,245);
    font-size: 20px;
    background-color: rgb(0,127,162);
    margin: 5px 33px;
    padding: 2px 6px;
    text-decoration: none;
    border-radius: 5px;
}
.article_prof .section_prof a:hover{
    background-color: rgba(0,127,162,0.9);
}
.article_prof_one{
    width: 80%;
    margin: 0 auto 100px;
    display: flex;
    flex-direction: column;
}
.article_prof_one .section_prof_one{
    width: 100%;
    background-color: rgb(199,233,245);
    display: flex;
    justify-content: space-between;
    border-style: double;
    border-width: 4px 0;
    border-color: rgb(0,127,162);
    border-right-style: none;
    border-left-style: none;
    border-top-style: none;
}
.article_prof_one .section_prof_one img{
    width: 156px;
    margin: 20px 30px 20px 30px;
}
.article_prof_one .section_prof_one .sentence{
    width: 70%;
    margin-top: 40px;
    padding: 0 40px 0 0;
    display: block;
}
a#otoya,#masato,#natsuki,#tokiya,#ren,#syo,#cecil,#reiji,#ranmaru,#ai,#camus,#eiichi,#kira,#nagi,#eiji,#van,#yamato,#shion.anchor{
    display: block;
    margin-top: -93px;
    padding-top: 93px;
}
.article_prof_one .section_prof_one .name{
    font-size: 24px;
    margin-bottom: 0;
}
.article_prof_one .section_prof_one .name a{
    margin: 0;
    padding: 0;
}
.article_prof_one .section_prof_one p{
    font-size: 18px;
    margin: 0;
}


/***** fun.html *****/
.article_fun{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.article_fun h2{
    color: rgb(0,127,162);
    font-size: 36px;
    font-family: 'Baloo Bhaijaan 2', cursive;
    font-weight: bold;
    margin: 50px 0 0;
}
.section_fun{
    width: 100%;
    background-color: rgb(199,233,245);
    margin-bottom: 100px;
}
.section_fun ul{
    font-size: 30px;
    font-family: 'Baloo Bhaijaan 2', cursive;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}
.section_fun ul li{
    background-color: rgb(0,127,162);
    width: 300px;
    margin: 35px 110px;
    padding: 50px 35px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.4s;
}
.section_fun ul li:hover{
    background-color: rgba(0,127,162,0.9);
    transition: all 0.6s;
}
.section_fun ul li .btn{
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
}
.section_fun ul li .btn:hover{
    color: rgb(254,244,97);
    transition: all 0.4s;
}


/***** choice.php *****/
.article_choice{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.article_choice h2{
    color: rgb(0,127,162);
    font-size: 36px;
    font-family: 'Baloo Bhaijaan 2', cursive;
    font-weight: bold;
    margin: 50px 0 0;
}
.section_choice{
    width: 100%;
    background-color: rgb(199,233,245);
    margin-bottom: 100px;
}
.article_choice .section_choice form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.article_choice .section_choice form h3{
    font-size: 24px;
    width: 100%;
    margin: 30px auto;
    text-align: center;
}
.article_choice .section_choice form input[type="submit"]{
    color: rgb(248,247,245);
    font-size: 22px;
    background-color: rgb(0,127,162);
    width: 15%;
    margin: 15px auto 30px;
    padding: 15px 10px;
    border-radius: 8px;
    border-style: solid;
    border-color: rgb(0,127,162);
    box-shadow: 3px 3px #000;
    transition: 0.3s;
    cursor: pointer;
}
.article_choice .section_choice form input[type="submit"]:hover{
    background-color: rgba(0,127,162,0.9);
    box-shadow: none;
}
.article_choice .section_choice form .q{
    font-size: 24px;
    margin: 30px auto;
    text-align: center;
}
.article_choice .section_choice form .c{
    font-size: 26px;
    width: 100%;
    margin: 0 auto 40px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.article_choice .section_choice form .c input{
    width: 50px;
    margin-top: 15px;
    margin-right: 15px;
    margin-left: 60px;
    transform: scale(3.5);
}


/***** choice_result.php *****/
.article_choice_result{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.article_choice_result h2{
    color: rgb(0,127,162);
    font-size: 36px;
    font-family: 'Baloo Bhaijaan 2', cursive;
    font-weight: bold;
    margin: 50px 0 0;
}
.section_choice_result{
    width: 100%;
    background-color: rgb(199,233,245);
    margin-bottom: 100px;
}
.section_choice_result p{
    font-size: 24px;
    margin: 30px auto 15px;
    text-align: center;
}
.section_choice_result .word_h3{
    display: flex;
    justify-content: center;
}
.section_choice_result .h3_bold{
    font-size: 24px;
    font-weight: bold;
    margin: 15px 5px 26px 30px;
}
.section_choice_result .h3_n{
    margin: 23px 0 30px;
    text-align: center;
    font-size: 18px;
}
.article_choice_result .section_choice_result form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.article_choice_result .section_choice_result form input[type="submit"]{
    color: rgb(248,247,245);
    font-size: 22px;
    background-color: rgb(0,127,162);
    width: 15%;
    margin: 15px auto 30px;
    padding: 15px 10px;
    border-radius: 8px;
    border-style: solid;
    border-color: rgb(0,127,162);
    box-shadow: 3px 3px #000;
    transition: 0.3s;
    cursor: pointer;
}
.article_choice_result .section_choice_result form input[type="submit"]:hover{
    background-color: rgba(0,127,162,0.9);
    box-shadow: none;
}