@charset "UTF-8";

:root { /* カラーコード */
    --base-color: #000;
    --white-color: #fff;
    --grey1-color: #666;
    --grey2-color: #999;
    --grey3-color: #aaa;
    --grey4-color: #d8d8d8;
    --grey5-color: #f7f7f7;
    --white-color: #fff;
    --beju1-color: #c4c1b6;
    --beju2-color: #e3e0d6;
    --beju3-color: #f1ebe2;
    --pastelg-color: #d6ead9;
    --lvgreen-color:#caff6b;
    --lgreen-color:#ebf5ec;
    --navy-color:#02173c;
    --dblue-color:#1d2089;
}

/*基本
-------------------------------------*/
footer {
    position: static;
    text-align: center;
}
footer h4 {
    border: 1px solid var(--grey2-color);
    background-color: var(--beju2-color);
    font-weight: 500;
    font-size: 2em;
    padding: 0.3em;
}
footer h5 {
    border-bottom: 2px solid var(--grey2-color);
    font-weight: 400;
    font-size: 2em;
    padding-top: 1em;
}
footer h6 {
    border-bottom: 1px solid var(--grey3-color);
    font-weight: 300;
    font-size: 2em;
    padding: 1em 0 0 0;
}
.detail__box_in dl{
    margin: 15px auto;
}
.detail__box_in ul, .detail__box_in ol{
   /* margin-left:1rem;*/
}
.detail__box_in li {
    list-style-type:disc;
}
footer section {
    background-color: var(--grey5-color);
}
.detail__box {
    text-align: center;
    border: 1px solid var(--white-color);
    position: static;
    margin: 0 auto;
}

.detail__titl{
    font-weight: 200;
    margin-top: 2em;
    border-left: 1px solid var(--base-color);
    line-height: 100%;
    text-indent: 0.2em;
}
.detail__box h4{
    width: 98%;
    margin:10px auto;
}
.detail__text {
    text-align: left;
    font-size: 1.4rem
}

/*フッター見出し
-------------------------------------*/
h4.lp-right-line{
    text-align:left;
    font-weight:800;
}

/*下部リンク
-------------------------------------*/
#lpfooter-all{
    width: 100%;
    text-align: center;
    margin-top:1rem;
    background-color: var(--beju3-color);
}
#lpfooter-all p{
    color: var(--base-color);
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px 0;
    margin: 0;
    font-size: 120%;
}
#lpfooter-all p:first-child {
    border-bottom: var(--grey2-color) dotted 1px;
    margin: 0 auto;
}
#lpfooter-all a::before{
    content: "\0bb""\00a0";
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--base-color);
}
.copyright a {
    color: var(--white-color);
    text-decoration: none;
	display: inline;
}

/*--------------------------------------
  751px〜
--------------------------------------*/
@media screen and (min-width:751px) {
    .detail__box_in dl{
        display:flex;
        justify-content: center;
        flex-wrap:wrap;
        align-items: flex-start;
        column-count: 2;
    }
    .detail__box_in dd {
        width: 45%;
    }
    .detail__box_in li {
        margin-left: 1em;
    }
    .detail__box_in dd:first-child {
        margin-right:15px;
    }
    #lpfooter-all a{
        margin:15px 10px;
    }
    #lpfooter-all p{
        font-size: 1.5em;
    }
}

/*--------------------------------------
  〜750px
--------------------------------------*/
@media screen and (max-width:750px) {
    .detail__box, #lpfooter-all {
        width: 100%;
        margin: auto;
        padding: 0;
    }
   .detail__box_in dd{
        margin: 0;
    }
    .detail__box_in li {
       /* margin-left: 0.5em; */
    }
    #lpfooter-all p{
        flex-direction: column;
        font-size: 1em;
    }
    #lpfooter-all p:last-child{
        padding: 15px;
    }
    #lpfooter-all a{
        margin:5px 0;
    }
    footer dl {
        width: 90%;
    }
} 