@charset "UTF-8";
a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
}
/* ===================================================================

	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;
    font-size: 100%;
}

body{
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 400;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
button{
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 400;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
}
body.noscroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
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; */
}
img{
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}
address{ font-style: normal;}
table{border-collapse:collapse;}
tr{border: none;}
.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;}
.linknone{ pointer-events: none;}

@media only screen and (max-width: 1024px){

}
@media only screen and (max-width: 768px){
}
@media only screen and (max-width: 479px){
    .sp{ display: block;}
    .owrap, .cwrap{padding: 0 25px;}
}

/* ===================================================================

	add

=================================================================== */
.btn{
    display: inline-block;
    position: relative;
    text-align: center;
    margin: auto;
    max-width: 300px;
    width: 100%;
}
.ttl{
    font-weight: 700;
}
.container{
    max-width: 1160px;
    width: 100%;
    margin: auto;
}

@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;
}