@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;
}
body{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #333;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    text-autospace: normal;
}

main{
    overflow: hidden;
}
a{
    text-decoration: none;
    color: #333333;
    transition: 0.5s;
}
a:hover{
    opacity: 0.7;
    cursor: pointer;
    transition: 0.5s;
}
body a:not(.wp-element-button) {
    text-decoration: none;
}
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;
}
span{ font-weight: 700;}
address{ font-style: normal;}
table{ border-collapse: collapse;}
tr{border: none;}
.owrap, .cwrap {padding: 0 30px;}
.sp {display: none;}
.pc {display: block;}
.imp{ display: block !important;}
.btnwrap {text-align: center;}
.center {text-align: center;}
.left {text-align: left;}
.right {text-align: right;}
.logo {display: inline-block;}
h1,h2,h3,h4,h5{ line-height: 1.3; letter-spacing: 0.1rem;}

@media only screen and (max-width: 1024px){
    body{
        font-size: 20px;
    }
}
@media only screen and (max-width: 768px){
    h1,h2,h3,h4,h5{
        font-size: 26px;
    }
    p,th,td,li{
        font-size: 18px;
    }
}
@media only screen and (max-width: 479px){
    body{
        font-size: 16px;
        letter-spacing: 0.01rem;
        line-height: 1.8;
    }
    h1,h2,h3,h4,h5{
        font-size: 20px;
    }
    p,th,td,li{
        font-size: 16px;
    }
    .sp{display: block;}
    .owrap, .cwrap{padding: 0 25px;}
    .lead,.txts,.txt,p{ letter-spacing: -0.025rem;}
}

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

	add

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

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

	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;
}