#mainImg {
    background-image: url("../member/img/bg_main.png");
}

#contents h3 {
    font-size: clamp(16pt, 1.5vw, 26pt);
    font-weight: normal;
    margin-bottom: .5em;
}

#contents .submission > div {
    margin-bottom: 2em;
}

#contents .submission > div > dt {
    font-weight: bold;
    margin-bottom: .5em;
}

#login .input form > div {
    padding: 1em;
    width: min(100%, 500px);
    margin: 0 auto;
}

#login .input form ul > li:nth-child(1){
    margin-bottom: 1em;
}
#login .input form ul > li input {
    font-size: 110%;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}
#login #contents form .btn {
    display: block;
    font-size: 110%;
    width: 100%;
    color: #fff;
    background-color: #727171;
    border: 1px solid #727171;
    padding: 15px;
    margin-block: .9em;
    cursor: pointer;
    transition: all .3s 0s ease;
}
#login #contents form .btn:hover {
    color: #727171;
    background-color: #fff;
}
#login #contents .att {
    color: #727171;
    text-align: center;
}

#top #logout .innerWrap {
    text-align: right;
    padding-block: 0;
}
#top #logout .innerWrap a {
    display: inline-block;
    color: #fff;
    font-size: 110%;
    text-decoration: none;
    background-color: #009944;
    padding: 10px 3em;
    border: 1px solid #009944;
}
#top #logout .innerWrap a:hover {
    color: #009944;
    background-color: #fff;
}

#top #club::after {
    content: "";
    display: block;
    width: 30%;
    border-top: 10px dotted #8E8E8E;
    margin: 0 auto 1em;
}
#top #club .innerWrap .detail {
    margin-block: 2em;
}
#top #club .title > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
    gap: 1em 0;
}
#top #club .title > div h3 {
    font-size: clamp(18pt, 3.5vw, 32pt);
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
    margin-bottom: .2em;
}
#top #club .title > div h3 span {
    background: linear-gradient(transparent 60%, #FFC600 60%);
}
#top #club .detail ul.list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 280px);
    gap: 1.5em;
    justify-content: center;
    max-width: 1200px;
    margin-inline: auto;
}
#top #club .detail ul.list > li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    grid-gap: 0;
    background-color: #FFC600;
    border-radius: 10px;
    padding: 15px;
}
#top #club .detail ul.list > li.blank {
    visibility: hidden;
}

#top #club .detail ul.list > li.hotel {
    background-color: #FFEBAE;
}
#top #club .detail ul.list > li p.item {
    font-weight: bold;
    font-size: clamp(18pt, 1.5vw, 26pt);
}
#top #club .detail ul.list > li > img {
    width: 100%;
    padding-bottom: .5em;
}
#top #club .detail ul.list > li .link > li:not(:first-child) {
    margin-top: .5em;
}
#top #club .detail ul.list > li .link > li a {
    display: block;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 5px;
    border: 1px solid #e83828;
    background-color: #e83828;
}
#top #club .detail ul.list > li .link > li a:hover {
    color: #e83828;
    background-color: #fff;
}
#top #club .detail ul.list > li .link > li.text a {
    display: inline;
    color: #00f;
    font-weight: normal;
    text-align: left;
    text-decoration: underline;
    padding: 0;
    border: none;
    background-color: transparent;
}
#top #club .detail ul.list > li .link > li.text a:hover {
    color: #00f;
    background-color: transparent;
    text-decoration: none;
}

#top #club .detail ul.list > li .info {
    font-weight: bold;
}
#top #club .detail ul.list > li .info.link > li {
    margin-top: 0;
}

#top #download .innerWrap {
    max-width: 1200px;
}
#top #download .title h3 {
    color: #fff;
    font-size: clamp(16pt, 1.2vw, 30pt);
    text-align: center;
    background-color: #00913A;
    border-radius: 50px;
    padding: 5px 2em;
    margin-bottom: 1em;
}
#top #download .detail > dl {
    width: min(100%, 1000px);
    margin-inline: auto;
}
#top #download .detail > dl > div {
    display: grid;
    grid-template-columns: 9.5em 1fr;
    gap: 1em;
    margin-bottom: 1em;
}
#top #download .detail > dl > div > dt {
    text-indent: -1em;
    margin-left: 1em;
}
#top #download .detail > dl > div.bukken dd > div {
    display: grid;
    grid-template-columns: 10em 1fr;
    gap: 0;
}
#top #download .detail > dl > div.bukken dd > div > div {
    display: contents;
}
#top #download .detail > dl > div.bukken dd > div > div ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, 7em);
}
#top #download .detail > dl > div.various dd > div ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, 370px);
}

#top #download .detail > dl > div.notification {
    grid-template-columns: 1fr;
    gap: 0;
}
#top #download .detail > dl > div.notification > dd {
    margin-left: 10.5em;
}

#top #download .detail .zportal > div {
    width: min(100%, 850px);
    text-align: center;
    padding: 1em;
    border: 3px solid #f00;
    border-radius: 10px;
    margin-inline: auto;
}

#top #download .detail .zportal > div > p:nth-child(2) {
    font-weight: bold;
    font-size: 130%;
}


@media screen and (max-width: 430px){
    #contents h3 {
        font-size: 120%;
    }
    #top #logout .innerWrap a {
        font-size: 90%;
        padding: 5px 1em;
    }

    #top #club .innerWrap {
        padding-bottom: 2em;
    }
    #top #club .title > div {
        grid-template-columns: 1fr;
    }
    #top #club .innerWrap .detail {
        margin-block: 1.5em;
    }
    #top #download .detail > dl > div {
        grid-template-columns: 1fr;
        gap: 0 1em;
    }
    #top #download .detail > dl > div > dt {
        font-weight: bold;
    }
    #top #download .detail > dl > div.various dd > div ul {
        grid-template-columns: 1fr;
    }
    #top #download .detail > dl > div.notification > dd {
        margin-left: 0;
    }
}