@charset "utf-8";
/* outer：大枠
   section::中枠
   title:各セクションタイトル
   content:各セクション内容 */

.outer{
    font-size: 1.6rem;
    max-width: 1300px;
    margin:5rem auto;
}

/* タイトル装飾 */
.title{
    background: #0099ff70;
    color: #EEEEEE;
    font-weight:bold;
    position:absolute;
    margin: -2.5em auto;
    padding:0.3em;
    transform: rotate(-10deg);
}

/* 各内容装飾 */
.section{
    margin: 5rem auto;
    background:#c0e6ff;
    color: #293b4b;
    padding:1em;
    border-radius: 5px;
}

/*  サイトマップの隠しリンク */
dt>a.hedden_link:link,
dt>a.hedden_link:visited,
dt>a.hedden_link:hover,
dt>a.hedden_link:active{
    color: #293b4b;
    text-decoration: none;
}

dd{
    margin-bottom: 3rem;
    font-size:1.3rem;
}


@media (max-width:480px){
    /*480px以下に適応されるｃｓｓ（スマホ）*/
    .outer{
        margin:5rem 1rem;
        font-size:1rem;
    }
    
    .section{
        max-width:100%;
    }
    
    .section dl{
        padding:auto 10px;
    }
    
    }