@charset "UTF-8";

/*==================================================
Common(共通設定)
==================================================*/

html {
    overflow-y: scroll;
}

body {
    box-sizing: border-box;
    
    /* ゴシック体系のフォント指定 */
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    /* --------------------
    基本サイズ  16px
    10px 	63%
    11px 	69%
    12px 	75%
    13px 	82%
    14px 	88%
    15px 	94%
    16px 	100%
    17px 	107%
    18px 	113%
    19px 	119%
    20px 	125%
    21px 	132%
    22px 	138%
    23px 	144%
    24px 	150%
    25px 	157%
    26px 	163%
    ----------------------- */
    text-rendering: optimizeLegibility;
}

main {
    display: block;
}

img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul li a{
    display: inline-block;
    transition: all 0.2s ease-in-out;
}
ul li a:hover {
    opacity: 0.5;
}



/*==================================================
Header
==================================================*/

header {
    border-bottom: 1px dashed #000;
}
h1 {
    color: #000;
    text-align: center;
}


@media only screen and (max-width:767px) {
    header {
        padding-bottom: 10px;
    }
    h1 {
        width: 100%;
        font-size: 16px;
    }
}


@media only screen and (min-width:768px) {
    header {
        padding-bottom: 90px;
    }
    h1 {
        max-width: 960px;
        margin: auto;
        font-size: 18px;
    }
}



/*==================================================
Main
==================================================*/

main {
    padding: 20px 0;
}


@media only screen and (max-width:767px) {
    
}


@media only screen and (min-width:768px) {
    main {
        max-width: 960px;
        margin: auto;
    }
}



/*==================================================
Main Iindex List (募集リスト)
==================================================*/

main ul#bosyu_list {
    list-style: none;
    text-align: center;
}
main ul#bosyu_list li {
    
}
main ul#bosyu_list li a {
    display: block;
    border-radius: 30px;
    background: #038add;
    position: relative;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

/* ボタンの右矢印> */
main ul#bosyu_list li a::after {
    display: block;
    content: "";
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg);
    
    position: absolute;
    top: 50%;
    right: 20px;
}


@media only screen and (max-width:767px) {
    main ul#bosyu_list {}
    main ul#bosyu_list li {
        width: 96%;
        margin: 10px auto;
    }
    main ul#bosyu_list li a {
        height: 60px;
        line-height: 60px;
        margin: auto;
        font-size: 1em;
        text-align: center;
    }
    /* ボタンの右矢印> */
    main ul#bosyu_list li a::after {
        width: 10px;
        height: 10px;
        margin-top: -5px;
    }
}


@media only screen and (min-width:768px) {
    main ul#bosyu_list {
        max-width: 960px;
        margin: auto;
    }
    main ul#bosyu_list li {}
    main ul#bosyu_list li a {
        width: 640px;
        height: 60px;
        line-height: 60px;
        margin: 15px auto;
        font-size: 20px;
        font-weight: bold;
    }
    /* ボタンの右矢印> */
    main ul#bosyu_list li a::after {
        width: 8px;
        height: 8px;
        margin-top: -4px;
    }

}



/*==================================================
Footer
==================================================*/

footer {
    padding: 20px;
}
footer p {
    text-align: center;
}


@media only screen and (max-width:767px) {

}


@media only screen and (min-width:768px) {
    footer {
        max-width: 960px;
        margin: auto;
    }
}



/*==================================================
Goto Top (Topへ戻る)
==================================================*/
#pageTop {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    font-size: 16px;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 115px;
}
