@charset "UTF-8";
/* ===================================================================

	Setting

=================================================================== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html{
    height: 100%;
    width: 100%;
    /* html overflow: auto; 重要 scroll*/
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0 !important;
    background: #000;
}
body{
    max-width: 480px;
    margin: auto;
    padding: 0;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.8;
    width: 100%;
    height: 100%;
}
main{
    overflow: hidden;
}
a{
    text-decoration: none;
    color: #333;
    transition: 0.5s;
}
a:hover{
    opacity: 0.7;
    cursor: pointer;
    transition: 0.5s;
}
li{
    list-style-type: none;
    /* padding-left:1em;
	text-indent:-1em; */
}
button{
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
}
img{
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}
address{ font-style: normal;}
table{border-collapse:collapse;}
tr{border: none;}
th{background-color: #ccc;}
th,td{padding: 5px 10px; font-weight: unset; border: solid 1px #eaeaea;}
.owrap, .cwrap {padding: 0 30px;}
.sp {display: none;}
.pc {display: block;}
.btnwrap {text-align: center;}
.center {text-align: center;}
.left {text-align: left;}
.right {text-align: right;}
.logo {display: inline-block;}
.bottomspace-small{ margin-bottom: 90px;}
.bottomspace-middle{ margin-bottom: 120px;}
.bottomspace-wide{ margin-bottom: 150px;}


@media only screen and (max-width: 1024px){
}
@media only screen and (max-width: 768px){
    h1,h2,h3,h4,h5{
        font-size: 26px;
    }
    p,th,td,li{
        font-size: 15px;
    }
    .bottomspace-small{ margin-bottom: 60px;}
    .bottomspace-middle{ margin-bottom: 90px;}
    .bottomspace-wide{ margin-bottom: 120px;}
}
@media only screen and (max-width: 479px){
    h1,h2,h3,h4,h5{
        font-size: 20px;
    }
    .owrap, .cwrap{padding: 0 25px;}
    .bottomspace-wide{ margin-bottom: 90px;}
}

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

	add

=================================================================== */
.btn{
    display: inline-block;
    position: relative;
    text-align: center;
    margin: auto;
    max-width: 300px;
    width: 100%;
}
.btn a{
    background-color: #01A3E7;
    display: inline-block;
    color: #fff;
    transition: 0.5s;
    width: 100%;
    font-weight: 700;
    padding: 20px;
}
.ttl{
    font-weight: 700;
}
.container{
    max-width: 1200px;
    width: 100%;
    margin: auto;
}
.mainheadtxt{
	line-height: 2;
}

@media only screen and (max-width: 1024px){
    .btn{
        max-width: 250px;
    }
}
@media only screen and (max-width: 768px){
    .btn a{
        font-size: 18px;
    }
}
@media only screen and (max-width: 479px){
    .btn {
        max-width: 200px;
    }
    .btn a{
        padding: 18px 20px;
        font-size: 17px;
    }
}


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

	flex

=================================================================== */
.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flexwrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flexwrapjc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flexjs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.flexjc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flexje{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.flexas{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.flexac{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flexae{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.flexacjc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flexacjbe{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flexacjar{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.flexcol{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.flexcolac{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flexcoljc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flexcolacjc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}