@charset "utf-8";

/* -------------------------------------------
ヘッダー
-------------------------------------------*/

#header {
    display: block;
    background: #fff100;
    padding: 0% 0 4% 0;
    margin: 0;
}
#header .portalbtn {
    display: block;
    background: #6BC6EE;
    padding: 9px 5px 5px 30px;
    height: 60px;
    width: 100%;
    margin: 0;
}

#header .inner {
    display: block;
    width: 100%;
    padding: 3% 0 3% 0;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1) inset;
}

#header .inner .wrap {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 0 0 0 21%;
    margin: 0 auto;
    width: 90%;
}

#header .inner .wrap h1.ttl {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

#header .inner .wrap h1.ttl img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
}

#header .inner .wrap a.sitelogo {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0;
    margin: -10% 0 0 0;
    width: 20%;
}

#header .inner .wrap a.sitelogo img {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
}

#header .inner .wrap p {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
}


@media (max-width: 680px) {


#header {
        padding: 0% 0 10% 0;
    }
    
#header .portalbtn {
    padding: 2% 5px 5px 10px;
    height: 7%;
    width: 100%;
    margin: 0;
}
#header .portalbtn img {
    width: 100%;
}
   
 
#header .inner {
        padding: 40% 0 6% 0;
    }

    #header .inner .wrap a.sitelogo {
        display: block;
        position: absolute;
        top: -36%;
        left: 50%;
        padding: 0;
        margin: 0 0 0 -19%;
        width: 38%;
    }

    #header .inner .wrap {
        display: block;
        position: relative;
        box-sizing: border-box;
        padding: 0;
        margin: 0 auto;
        width: 90%;
    }

}

/* -------------------------------------------
タブ
-------------------------------------------*/

.tab ul {
    display: block;
    padding: 20px 0 0 0;
    margin: 0 -20px 50px 0;
    list-style: none;
    font-size: 0;

}

.tab ul li {
    display: inline-block;
    box-sizing: border-box;
    padding: 0 20px 0 0;
    margin: 0;
    width: 25%;
}

.tab ul li a {
    display: block;
    box-sizing: border-box;
    padding: 10px 50px 10px 50px;
    margin: 0;
    background-color: #da5251;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    border-radius: 28px 28px 0 0;
    background: url(../img/bg_tab1.png) center top repeat;
}

.tab ul li a img {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.tab ul li:nth-of-type(1) a {
    background: url(../img/bg_tab1.png) center top repeat;
}

.tab ul li:nth-of-type(2) a {
    background: url(../img/bg_tab2.png) center top repeat;
}

.tab ul li:nth-of-type(3) a {
    background: url(../img/bg_tab3.png) center top repeat;
}

.tab ul li:nth-of-type(4) a {
    background: url(../img/bg_tab4.png) center top repeat;
}

.tab ul li a:hover {
    opacity: 0.6;
}

.tab ul li.active a {
    padding: 10% 20% 40% 20%;
    position: relative;
}

.tab ul li:nth-of-type(1).active a::after {
    position: absolute;
    display: block;
    padding: 0;
    margin: 0 0 0 -15%;
    bottom: 10%;
    left: 50%;
    width: 30%;
    height: 34%;
    background: url(../img/icon_book1.png) center top no-repeat;
    background-size: contain;
    content: "";
}

.tab ul li:nth-of-type(2).active a::after {
    position: absolute;
    display: block;
    padding: 0;
    margin: 0 0 0 -15%;
    bottom: 10%;
    left: 50%;
    width: 30%;
    height: 34%;
    background: url(../img/icon_book2.png) center top no-repeat;
    background-size: contain;
    content: "";
}

.tab ul li:nth-of-type(3).active a::after {
    position: absolute;
    display: block;
    padding: 0;
    margin: 0 0 0 -15%;
    bottom: 10%;
    left: 50%;
    width: 30%;
    height: 34%;
    background: url(../img/icon_book3.png) center top no-repeat;
    background-size: contain;
    content: "";
}

.tab ul li:nth-of-type(4).active a::after {
    position: absolute;
    display: block;
    padding: 0;
    margin: 0 0 0 -15%;
    bottom: 10%;
    left: 50%;
    width: 30%;
    height: 34%;
    background: url(../img/icon_book4.png) center top no-repeat;
    background-size: contain;
    content: "";
}



@media (max-width: 680px) {

    .tab ul {
        display: block;
        padding: 10px 0 0 0;
        margin: 0 -5px 30px 0;
        list-style: none;
        font-size: 0;
    }

    .tab ul li {
        display: inline-block;
        box-sizing: border-box;
        padding: 0 5px 0 0;
        margin: 0;
        width: 25%;
    }

    .tab ul li a {
        display: block;
        padding: 6px;
        margin: 0;
        border-radius: 10px 10px 0 0;
    }

    .tab ul li.active a {
        padding: 5px 5px 30px 5px;
    }

    .tab ul li:nth-of-type(1) a {
        background: url(../img/bg_tab1.png) center top repeat;
        background-size: 30%;
    }

    .tab ul li:nth-of-type(2) a {
        background: url(../img/bg_tab2.png) center top repeat;
        background-size: 30%;
    }

    .tab ul li:nth-of-type(3) a {
        background: url(../img/bg_tab3.png) center top repeat;
        background-size: 30%;
    }

    .tab ul li:nth-of-type(4) a {
        background: url(../img/bg_tab4.png) center top repeat;
        background-size: 30%;
    }

    .tab ul li:nth-of-type(1).active a::after {
        position: absolute;
        display: block;
        padding: 0;
        margin: 0 0 0 -15%;
        bottom: 5%;
        left: 50%;
        width: 30%;
        height: 34%;
        background: url(../img/icon_book1.png) center top no-repeat;
        background-size: contain;
        content: "";
    }

    .tab ul li:nth-of-type(2).active a::after {
        position: absolute;
        display: block;
        padding: 0;
        margin: 0 0 0 -15%;
        bottom: 5%;
        left: 50%;
        width: 30%;
        height: 34%;
        background: url(../img/icon_book2.png) center top no-repeat;
        background-size: contain;
        content: "";
    }

    .tab ul li:nth-of-type(3).active a::after {
        position: absolute;
        display: block;
        padding: 0;
        margin: 0 0 0 -15%;
        bottom: 5%;
        left: 50%;
        width: 30%;
        height: 34%;
        background: url(../img/icon_book3.png) center top no-repeat;
        background-size: contain;
        content: "";
    }

    .tab ul li:nth-of-type(4).active a::after {
        position: absolute;
        display: block;
        padding: 0;
        margin: 0 0 0 -15%;
        bottom: 5%;
        left: 50%;
        width: 30%;
        height: 34%;
        background: url(../img/icon_book4.png) center top no-repeat;
        background-size: contain;
        content: "";
    }

}




/* -------------------------------------------
コンテンツ
-------------------------------------------*/


#contents {
    display: block;
    background: #fff;
    padding: 50px 0;
    margin: 0;    
    box-shadow: 0 5px 5px rgba(0,0,0,0.1) inset;
}

.mds_fig {
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
}

.mds_fig img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

@media (max-width: 680px) {

    #contents {
        padding: 30px 0;
    }

    .mds_fig {
        display: block;
        margin: 0 0 10px 0;
        padding: 0;
    }


    .mds_fig img {
        height: 36px;
    }


}

/* -------------------------------------------
コラム
-------------------------------------------*/

.voicelistwrap {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    padding: 50px 0 50px 0;
    margin: 0 -30px 0 0;
}



.voicelistwrap::after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}


.voicelistwrap .col {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    padding: 0 50px 0 0;
    margin: 0;
    text-align: left;
}

.voicelistwrap .colwrap {
    display: block;
    float: left;
    padding: 0;
    margin: 0;
    text-align: left;
}



.voicelistwrap.ejiten .col {
    width: 50%;
}


.voicelistwrap.waei:nth-of-type(odd) {
    background-color: #fffde5;
}

.voicelistwrap .colwrap {
    width: 50%;
}

.voicelistwrap .colwrap .col {
    width: 50%;
}

.voicelistwrap.know .col {
    width: 100%;
}

@media (max-width: 1200px) {

    .voicelistwrap .colwrap .col {
        width: 100%;
    }

}

@media (max-width: 680px) {

    .voicelistwrap {
        padding: 0;
        margin: 0;
    }

    .voicelistwrap .colwrap {
        width: 100%;
        padding: 0;
    }


    .voicelistwrap.ejiten .col,
    .voicelistwrap.eiwa .col,
    .voicelistwrap.waei .col,
    .voicelistwrap.know .col {
        width: 100%;
        padding: 0;
    }

    .voicelistwrap.waei:nth-of-type(odd) {
        background-color: #fff;
    }

}


/* -------------------------------------------
音声リスト-audiojs
-------------------------------------------*/

ul.audio_list {
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.box_voice ul.audio_list {
    display: block;

}

ul.audio_list li {
    display: table;
    position: relative;
    padding: 0 0 12px 0;
    margin: 0 0 24px 0;
    list-style: none;
    color: #40557D;
    width: 100%;
}



ul.audio_list li br {
    display: none;
}

ul.audio_list li span:nth-of-type(1) {
    font-weight: 600;
    padding: 0 10px;
    margin: 0;
    color: #40557D;
    font-size: 16px;
    line-height: 1.5;
    vertical-align: middle;
    width: 3.5em;
    text-align: right;
}

.eiwa ul.audio_list li span:nth-of-type(1),
.waei ul.audio_list li span:nth-of-type(1) {
    width: 0.5em;
}

.know ul.audio_list li span:nth-of-type(1) {
    width: 3em;
}

ul.audio_list li span {
    display: table-cell;
    padding: 0;
    margin: 0;
    color: #40557D;
    font-size: 16px;
    font-weight: 600;
    font-family: Hiragino Sans, "游ゴシック", YuGothic, "メイリオ", "meiryo", sans-serif;
    vertical-align: middle;
}




@media (max-width: 680px) {

    ul.audio_list li span:nth-of-type(1) {
        font-weight: 600;
        padding: 0 10px;
        margin: 0;
        color: #40557D;
        font-size: 16px;
        line-height: 1.5;
        vertical-align: middle;
    }

    ul.audio_list li span {
        display: table-cell;
        padding: 0;
        margin: 0;
        color: #40557D;
        font-size: 16px;
        font-weight: 600;
        font-family: Hiragino Sans, "游ゴシック", YuGothic, "メイリオ", "meiryo", sans-serif;
        vertical-align: middle;
    }



    ul.audio_list li br {
        display: none;
    }


}



/* -------------------------------------------
Zipダウンロードボタン
-------------------------------------------*/
.btnwrap {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.btn-dl {
    display: block;
    max-width: 80%;
    text-align: center;
    background-color: #fff100;
    font-size: 20px;
    color: #615f5f;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
    font-weight: 600;
    padding: 28px 24px 28px 24px;
    margin: 50px auto 30px auto;
    border-radius: 5px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
    position: relative;
}

.btn-dl:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -100%;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.3;
    transition: .5s;
}


.btn-dl:hover:before {
    left: 0;
}


@media (max-width: 680px) {

    .btn-dl {
        max-width: 100%;
        font-size: 16px;
    }
}

/* -------------------------------------------
フッター
-------------------------------------------*/


footer {
    position: relative;
    padding: 50px 30px 30px 30px;
    margin: 0;
    background-color: #fff100;
    color: #333;
    text-align: center;
}

footer ul.fcont {
    display: table;
    padding: 0;
    margin: 0 0 30px 0;
    list-style: none;
    text-align: left;
}

footer ul.fcont li {
    display: table-cell;
    padding: 0;
    margin: 0;
    vertical-align: top;
}

footer ul.fcont li a figure {
    display: block;
    padding: 0;
    margin: 0 30px 0 0;
    width: 200px;


}

footer ul.fcont li a figure img {
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    border: 2px solid #fff;}

footer ul.fcont li a {
    display: block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

footer ul.fcont li a:hover {
    opacity: 0.7;
}

footer ul.fcont li h2 {
    display: block;
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    font-family: Hiragino Sans, "游ゴシック", YuGothic, "メイリオ", "meiryo", sans-serif;
}

footer ul.fcont li h2 a {
    color: #29a8df;
}

footer ul.fcont li h2 a:hover {
    color: #29a8df;
}

footer ul.fcont li p {
    display: block;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #333;
}

footer ul.fcont li p.note {
    font-size: 12px;
}

footer ul.note {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    font-family: sans-serif;
    text-align: left;
    clear: both;
}

footer ul.note li {
    display: block;
    position: relative;
    margin: 0 0 5px 0 !important;
    padding: 0 0 0 1.2em;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}

footer ul.note li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin: 0;
    content: "※";
}


footer .copyright {
    display: block;
    position: relative;
    margin: 0 0 5px 0 !important;
    padding: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}

@media (max-width: 680px) {

    footer {
        padding: 50px 0px;
        margin-bottom: 0;
        background-position: center bottom;
    }

    footer ul.fcont {
        display: block;
        padding: 0;
        margin: 0 0 30px 0;
        list-style: none;
    }

    footer ul.fcont li {
        display: block;
    }

    footer ul.fcont li a figure {
        padding: 10px;
        margin: 0 auto;
        width: 50%;

    }

    footer ul.fcont li a figure img {
        display: block;
        padding: 0;
        margin: 0;
        width: 100%;
        height: auto;
    }

    footer ul.fcont li h2 {
        padding: 10px 0;
        margin: 0 auto;
        font-size: 20px;
        text-align: center;
    }

    footer ul.fcont li p {
        font-size: 14px;
    }

    footer ul.fcont li p.note {
        font-size: 12px;
    }


    footer ul.note li {
        font-size: 12px;
    }

    footer .copyright {
        margin: 20px 0;
        font-size: 12px;
    }




}
