/* CSS Document */
body {
    font-family: '游ゴシック', sans-serif; /* 例: 游ゴシック */
    color: #181818;
    max-height: 100vh;
}
main:before {
    content: '';
    background-image: url("../images/bgphoto.jpg");
    filter: blur(1px) saturate(0.5);
    background-color: rgba(250, 233, 122, 0.8);
    background-blend-mode: overlay;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}
/*all*/
.all {
    max-width: 95%;
    width: 600px;
    margin: 0 auto;
}

/*header*/
header {
    text-align: center;
    margin: 16px 0;
}
header h1 {
    font-size: 3.5em;
    font-weight: bold; /* タイトルを太字にする */
}
header div{
    margin: 8px 0;
}
h2{
    text-align: center;
}

/*footer*/
footer {
    display: block;
    text-align: center;
    bottom: 0;
    padding: 32px 0;
    margin-top: 32px;
}

/*url list*/
.url-list {
    text-align: center;
    margin: 32px auto;
}
.url-list h2{
    display: block;
    margin: 4px 0;
}
.url-list ul{
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

ul.url-list-ul > li {
    padding: 0;
    margin: 0;
    border: #0C0C0C 2px solid;
    background: hsla(0,0%,100%,0.9);
    background-blend-mode: darken;
    border-radius: 24px;
    margin-bottom: 8px;
    line-height: 1.8em;
    font-weight: 300;
    color: #0C0C0C;
}

ul.url-list-ul-next > li{
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    background-blend-mode: normal;
    border-radius: 0 !important;
    margin-bottom: 0;
    font-size: 3.0em;
}

ul.url-list-ul li > h3{
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 2.0em;
    font-weight: 300;
    line-height: 0.8;
}
ul.url-list-ul li > p:last-child{
    margin-bottom: 0;
}
ul.url-list-ul > li > ul > li > a{
    display: block;
    padding: 4px 8px;
    font-size: 1.4em;
    line-height: 1.0em;
    color: #0c0c0c;
    border-radius: 0 !important;
}
ul.url-list-ul-next > li > ul{
    column-count: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
}
ul.url-list-ul-next > li > ul > li{
    display: block;
    width: 50%;
}
ul.url-list-ul-next > li > ul > li > a{
    padding: 32px;
}
ul.url-list-ul > li > ul > li > a > i{
    font-size: 1.6em;
    vertical-align: sub;
}

ul.url-list-ul > li > ul > li > a:hover {
    background: hsla(59,100%,51%,0.5);
}
ul.url-list-ul li > h3 + ul > li:first-child > a {
    border-top: #0C0C0C dashed 1px;
    margin-top: 4px;
}

ul.url-list-ul li > ul > li:first-child > a:hover {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
ul.url-list-ul li > h3 + ul > li:first-child > a:hover {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
ul.url-list-ul > li > ul > li:last-child > a:hover {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

ul.url-list-ul > li > ul > li > a ul{
    padding-left: 0;
    font-size: 0.8em;
    font-weight: 300;
}
a.url-list-ul-a {
    text-decoration: none;
}

/*other-url-mini*/
ul.other-url-mini {
    margin: 0;
}

/*favorite-v*/
ul.favorite-v,
ul.favorite-v ul,
ul.favorite-v li {
    list-style: none;
    padding: 0;
}
ul.favorite-v ul{ 
    margin: 8px 0;
}

/*footer*/
footer{
    font-size: 0.8em;
    opacity: 0.5;
    color: rgba(0, 0, 0, 0.5);      
}


@media screen and (max-width: 480px) {
    ul.other-url-mini {
        display: block;
        column-count: 1;
    }
    ul.other-url-mini > li {
        margin-bottom: 4px;
        line-height: 1.0em;
    }
    ul.other-url-mini > li > ul > li:first-child > a{
        display: block;
        padding-top: 2px;
    }

    ul.other-url-mini > li > ul > li:last-child > a{
        padding-bottom: 2px;
    }
}
