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

* {
    margin: 0px;
    padding: 0px;
}
/*【border-box】全体設定*/
*, *:before, *:after {
    box-sizing: border-box;
}
ul, li {
    list-style: none;
}
img {
    vertical-align: bottom;
    border-style: none;
}
a {
    text-decoration: none;
}
/********************************************/


body {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    background-color: #f0f0f0;
    background-image: url(../image/0_back_1920x24-25.png);
    background-repeat: repeat;
}
#wrapper {
    text-align: center;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
    padding: 0px;
    width: auto;
    height: auto;
}
main {
    width: min(400px, 80%);
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
}
h1 {
}
img {
    border-style: none;
    margin: 0px;
    padding: 0px;
    vertical-align: bottom;
    width: 100%;
    height: auto;
}
a:hover {
    opacity: 0.8;
}

/*////////////////////////////////////////////*/
@media screen and (max-width:480px) {
main {
    width: 80%;
}
}