<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/**impr**/

/*index*/
.index {
    display: flex;
    flex-wrap: wrap;
    font-size: 90%;
    margin: 1em 0;
}
.index a{
    display: inline-block;
    color: #38aa4f;
    text-decoration: none;
    margin: 0.2em 0.5em;
}
.index a:hover{
    text-decoration: underline;
}
.index li::after{
    content: "/";
}
.index li:last-of-type::after{
    content:none;
}


.putilead{
    margin-bottom: 2em;
}


/*howto*/
.flex_wrap{
    justify-content: space-between;
}

.howto{
    text-align: right;
}
.howto a{
    display: inline-block;
    position: relative;
    background-color: #FFAE00;
    text-align: left;
   -moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
    padding: 10px 5px 10px 80px;
    text-decoration: none;
}

.howto a::before{
    content: url("../img/i_offer.png");
    position: absolute;
    top:-10px;
    left:-80px;
}
.howto h3{
    color: #FFF;
    border: none;
    font-size: 100%;
    line-height: 1.2em;
    margin: 0;
}
.howto p{
    font-size: 80%;
    color: #000;
}
.howto span{
    text-decoration: underline;
}
.howto a:hover{
    background-color: #ef4923;
}




h3{
    color: #38aa4f;
    font-size: 140%;
    margin: 1em 0;
    border-bottom:1px dashed;
}
h4{
    color: #38aa4f;
    font-size: 120%;
    margin: 1em 0;
    border-bottom:1px dashed;
}


/** list dl**/
dl{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
/** dt **/
dt{
    width:45%;
    padding-bottom: 3em;
}
dl.yoko dt{
    width:63%;
}
dl.yoko2 dt{
    width:70%;
}

dt img{
	padding: 6px;
	background-color: #ffba00;
	 box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
}



/** dd **/
dd{
    width:50%;
}
dl.yoko dd{
    width:35%;
}
dl.yoko2 dd{
    width:28%;
}



.name{
    color: #ef4923;/*da0074*/
    font-size: 120%;
    font-weight: bold;
    border-bottom: 1px solid #ef4923;
    margin: 1em 0;
}
.name::before{
    content:"投稿者：";
    color: #ef4923;
    font-size: 80%;
    font-weight: normal;
}

dd p:nth-child(2)::before{
    content:"編集部より：";
    color:#38aa4f;
    font-size: 80%;
    font-weight: bold;
    display: block;
    
}




/*------------------------------------------------------
	mediaQuery
*-------------------------------------------------------*/


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


    .flex_wrap{
        display: block;
    }
    dl{
        padding: 0 1em;
    }
    dt{
        width:100% !important;/*yokoレイアウト分も*/
        padding-bottom: 0;
    }

    dt img{
        width:100%;
        height: auto;
    }


    dd{
        width:100% !important;/*yokoレイアウト分も*/
        padding-bottom: 3em;
    }


 




}
</pre></body></html>