@charset "UTF-8";
/* CSS Document */

/*======================================
    基本設定
========================================*/
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-weight: normal;
    color: #282828;
}

/*======================================
    ヘッダー、ナビ
========================================*/
div#body_item{
    display: flex;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
}

header h1{
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    width: 460px;
    height: 100px;
    line-height: 100px;
    position: fixed;
}

header nav ul{
    position: fixed;
    width: 460px;
    top: 100px;
}

header nav ul li#page_jump{
    width: 300px;
    margin: 20px auto;
    border-radius: 10px;
    background-color: #93aec1;
}

header nav ul li#page_jump a{
    display: block;
}

header nav ul li#page_jump a{
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
}

header nav ul li#page_jump a:hover{
    background-color: #B4C7D4;
    border-radius: 10px;
}

header nav ul li#page_jump a{
    font-weight: bold;
    color: #282828;
}

header nav ul div#title_jump{
    width: 300px;
    margin: 0 auto;
    background-color: #f2a192;
    border-radius: 10px;
}

header nav ul div#title_jump li{
    height: 50px;
    text-align: center;
    border-bottom: 2px dashed #fff;
}

header nav ul div#title_jump li:hover{
    background-color: #F7C6BC;
}

header nav ul div#title_jump li:hover:first-child{
    background-color: #F7C6BC;
    border-radius: 10px 10px 0 0;
}

header nav ul div#title_jump li:hover:last-child{
    background-color: #F7C6BC;
    border-radius: 0 0 10px 10px;
}

header nav ul div#title_jump li:last-child{
    border-bottom: none;
}

header nav ul div#title_jump li a{
    display: block;
    font-weight: bold;
}


/*======================================
    コンテンツ
========================================*/
div#right_contents{
    margin-top: 120px;
    margin-left: 460px;
    width: 100%;
}

div#right_contents article{
    margin-bottom: 60px;
}

div#right_contents article div.contents_title{
    padding: 10px 0 10px 20px;
    margin-bottom: 10px;
    background-color: #f2a192;
    border-radius: 10px 0 0 10px;
}

div#right_contents article div.contents_title h2{
    font-weight: bold;
}

div#right_contents article dl div.dtdd_set{
    display: flex;
    padding: 15px 0;
    border-bottom: 2px dashed #f2a192;
}

article dl dt{
    width: 250px;
    font-weight: bold;
}

/*======================================
    フッター
========================================*/
footer{
    text-align: center;
    width: 100%;
    padding: 10px 0;
    background-color: #f2a192;
}

footer a{
    width: 90px;
    height: 90px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: url("image/pagetop_icon.png")no-repeat;
    background-size: 100%;
    border-radius: 50px;
}

footer a:hover{
    background: url("image/pagetop_icon_hover.png")no-repeat;
    background-size: 100%;
}

/*======================================
========================================    

    CSSページ適応内容

========================================
========================================*/

/*======================================
    CSSページ適応内容　▶︎ ヘッダー、ナビ
========================================*/
header nav ul li#page_jump.css{
    background-color: #f2a192;
}
header nav ul li#page_jump.css a:hover{
    background-color: #F7C6BC;
}

header nav ul div#title_jump.css{
    background-color: #93aec1;
}

header nav ul div#title_jump.css li a{
    line-height: 50px;
}

header nav ul div#title_jump.css li:hover{
    background-color: #B4C7D4;
}

header nav ul div#title_jump.css li:hover:first-child{
    background-color: #B4C7D4;
    border-radius: 10px 10px 0 0;
}

header nav ul div#title_jump.css li:hover:last-child{
    background-color: #B4C7D4;
    border-radius: 0 0 10px 10px;
}


/*======================================
    CSSページ適応内容　▶︎ コンテンツ
========================================*/
div#right_contents article div.css{
    background-color: #93aec1;
}

div#right_contents.css article dl div.dtdd_set{
    border-bottom: 2px dashed #93aec1;
}


/*======================================
    CSSページ適応内容　▶︎ フッター
========================================*/
footer.css{
    background-color: #93aec1;    
}