@charset "utf-8";

/*-----------------------------------
list
-----------------------------------*/
.list h2 + dl{
    margin-top: 20px;
}
.list li{
    float: left;
    width: 25%;
}
.list.cc li{
    width: 33.33%;
}
.list li a{
    display: block;
    padding: 3px;
}
.list li .num{
    padding-left: 5px;
    font-size: 0.8em;
    color: #333;
    
}
.area{
    margin-top: 20px;
    padding: 20px 30px;
    background-color: #f3f5f7;
    border-radius: 10px;
}
/*--Large screens--*/
@media print, screen and (min-width: 768px){
    .list dl{
        padding: 20px 30px;
    }
    .list dl:nth-child(even){
        padding-top: 15px;
        background-color: #f3f5f7;
        border-radius: 10px;
    }
    .list dt{
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #333;
        font-size: 1.2em;
        font-weight: bold;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .list dl{
        margin: 0 -20px;
        padding: 0;
    }
    .list dl:last-child{
        border-bottom: 1px solid #CCC;
    }
    .list dt{
        padding: 3px 15px;
        background-color: #0075b6;
        font-size: 0.9em;
        font-weight: bold;
        color: #FFF;
    }
    .list li,
    .list.cc li{
        float: left;
        width: 50%;
        border-bottom: 1px solid #CCC;
    }
    .list li:nth-child(odd){
        border-right: 1px solid #CCC;
    }
    .list li:last-child,
    .list li:nth-last-child(2):nth-child(odd){
        border-bottom: none;
    }
    .list li a{
        padding: 8px 15px;
    }
    .area{
        margin: 20px -20px 0;
        padding: 0;
        background-color: #FFF;
    }
    .area ul{
        border-top: 1px solid #CCC;
        border-bottom: 1px solid #CCC;
    }
}
/*-----------------------------------
freeword
-----------------------------------*/
.word .freeword{
    margin-top: 20px;
    padding: 30px;
    background-color: #d9d9d9;
    border-radius: 10px;
}
.word .freeword,
.word .freeword input[type="text"]{
    width: 100%;
}
.word .freeword form{
    position: relative;
}
.word .freeword input[type="text"]{
    padding: 12px 50px 12px 20px;
    background-color: #FFF;
    border: none;
    border-radius: 50px;
    font-family: "游ゴシック","YuGothic","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN","メイリオ","Meiryo","sans-serif";
    font-size: 1.2em;
}
.word .freeword input[type="image"]{
    position: absolute;
    content: "";
    width: 24px;
    top: 50%;
    right: 20px;
    margin-top: -12px;
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .word .freeword{
        margin: 20px 0;
        padding: 0;
        background-color: transparent;
    }
    .word .freeword input[type="text"]{
        border: 1px solid #333;
        background-color: #f3f5f7;
    }
}
