@charset "utf-8";

/* * * Reset * * */
body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, blockquote, pre, table, th, td, form, figure, fieldset, input, textarea {
    margin: 0;
    padding: 0;
}
img {
    vertical-align: baseline;
}
a img {
    border: none;
}
ol, ul {
    list-style: none;
    list-style-type: none;
}
em{
    font-style: normal;
}


/* * * Setting * * */
body {
    background: #FFF;
    font-family: Century Gothic, "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
    /*
	font-family: "YuGothic", "Yu Gothic", "游ゴシック", "游ゴシック体", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, verdana, sans-serif;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", serif;
*/
    font-size: 100%;
    color: #333;
    text-align: center;
}
.PC {
    display: none;
}


/* * * general * * */
body {
    font-size: 100%;
}

figure img {
    width: 100%;
    height: auto;
}
a{
    color: #3d9738;
}
a:visited{
    color: #3d9738;
}
a:hover{
    color: #ffa60b;
}




/*** header***/
#header {
    background-color: #d9e480;
    padding: 10px 0;
}
#header img{
    width:96%;
    max-width: 719px;
    height: auto;
}


/*** container ***/
#container, .inner{
    width: 96%;
    max-width: 750px;
    margin: 0 auto;
    padding: 2em 0;
    text-align: left;
}

#container h2{
    text-align: center;
    color: #3d9738;
    font-size: 230%;

}
.read{
    text-align: center;
    padding: 1em 0;
}
/*info*/
#info{
    background-color: #fefdaa;
}
#info h3{
    color: #3d9738;
}
#info li{
    margin-bottom: 0.5em;
    text-indent: -1em;
    padding-left: 1em;
}

.txt_navi{
    text-align: center;
    margin: 1em 0;
}








/** page_top **/
#page_top {
    width: 18%;
    height: 60px;
    position: fixed;
    bottom: 0;
    right: 1%;
    /*border-radius: 50%;*/
}
#page_top a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    text-decoration: none;
    background: gray;
    opacity: 0.6;
}
#page_top a:hover {
    background: #ffa60b; /*3fefee*/
    opacity: inherit;
}
#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    content: "\f106";
    font-weight: 900;
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
@media screen and (max-width: 750px) and (orientation: landscape) { /*横向きの際に適用*/
    .page_top {
        width: 8%;
    }
}



/*** footer***/
#footer {
    background-color: #d9e480;
    padding: 20px 0;
    text-align: center;
}
#footer #copy {

}



/*** class ***/
.none {
    display: none;
}
.t1em {
    margin-top: 1em;
}
.t2em {
    margin-top: 2em;
}
.t3em {
    margin-top: 3em;
}
.b1em {
    margin-bottom: 1em;
}
.b2em {
    margin-bottom: 2em;
}
.b3em {
    margin-bottom: 3em;
}

.flex_wrap {
    display: flex;
}

a.hover80:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
    transition: all 1.0s;
}



/*** ul_type ***/
.ul_type01 li {
    text-indent: -1em;
    padding-left: 1em;
}






/*------------------------------------------------------
	mediaQuery
*-------------------------------------------------------*/
@media screen and (min-width: 640px) {
    .SP {
        display: none;
    }
    .PC {
        display: block;
    }
    
    /** container **/
    #container {
    }
    
    
    .read{
        font-size: 130%;
    }
    
    
    /** page_top **/
    .page_top {
        width: 60px;
        right: 0;
    }
}