*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}
html{
    font-size: 62.5%;
}
body{
    font-family: 'Noto Sans JP', "源ノ角ゴシック Regular", 源ノ角ゴシック, 游ゴシック体, "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .13em;
    line-height: 1.8em;
    color: #000;
}
a{
    color: #000;
    border: none;
    display: inline-block;
}
img{
    max-width: 100%;
    width: 100%;
    height: auto;
}

header{
    width: 100%;
    height: 70px;
    position: fixed;
    padding: 8px 24px;
    top: 0;
    left: 0;
}
.menuwrap{
    width: 100%;
    height: 100%;
    position: relative;
}
header .logo{
    height: 100%;
    text-align: center;
}
header .logo a{
    height: 100%;
}
header .logo img{
    width: auto;
    height: 100%;
}
header .menu{
    position: fixed;
    width: 300px;
    height: 100vh;
    right: -300px;
    top: 0px;
    padding: 24px;
    transition: all .3s ease-in-out;
    z-index: 102;
}
header nav{
    height: 100%;
    padding-top: 50%;
}
header .menu.open{
    right: 0;
}
header .menu .menucontent li{
    opacity: 0;
    transition: opacity .5s ease-in-out;
    transition-delay:.3s;
    margin: 16px 0;
    padding: 16px 24px;
    font-size: 1.2em;
    font-weight: bold;
}
header .menu.open .menucontent li:hover {
    background-color: rgba(250,250,250,.2);
}
header .menu .menucontent li a{
    width: 100%;
}
header .menu.open .menucontent li{
    opacity: 1;
}
header .menuBtn{
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    cursor: pointer;
    z-index: 103;
}
header .menuBtn > div{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
header .menuBtn > div span{
    position: absolute;
    left: 10%;
    background-color: #FF3400;
    height: 3px;
    width: 80%;
    margin: 0 auto;
    transition: all .3s ease-in;
}
header .menuBtn > div span:nth-child(1){
    top: calc(30%);
}
header .menuBtn > div span:nth-child(2){
    top: calc(50% - 1.5px);
}
header .menuBtn > div span:nth-child(3){
    top: calc(67%);
    opacity: 1;
}

header .menuBtn.open > div span:nth-child(1){
    transform: rotate(30deg);
    top: calc(50% - 1.5px);
    background-color: #000;
}
header .menuBtn.open > div span:nth-child(2){
    transform: rotate(-30deg);
    background-color: #000;
}
header .menuBtn.open > div span:nth-child(3){
    opacity: 0;
    background-color: #000;
}

.bk-red{
    background-color: #FF3400;
}
.bk-black{
    background-color: #000;
    color: white;
}
.white{
    color: white;
}
h1{
    font-size: 1.8em;
}
.spacer{
    margin-top: 3rem;
}
.spacer_l{
    margin-top: 6.5rem;
}
.center{
    text-align: center;
}
.container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}
.btn{
    display: inline-block;
}
.btn:hover a{
    background-color: rgba(250,250,250,.2);
}
.btn a{
    padding: 8px 24px;
    color: white;
    font-weight: bold;
    transition: background-color .3s ease-in-out;
}
footer{
    margin-top: 8rem;
    padding-top: 8rem;
    padding-bottom: 1rem;
}
footer .flex{
    display: flex;
    gap: 30px;
}
footer a{
    font-weight: bold;
}
.sns{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 16px;
    padding: 16px 24px 0;
    border-top: 2px solid #000;
}
.sns li{
    flex-basis: 30px;
}
.sns li.noBasis{
    flex-basis: unset;
}
footer .sns{
    border-top: 0;
    padding: 16px 0;
}
.bold{
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    header {
        height: 50px;
    }
	header .menu {
        width: 100vw;
        right:-100vw;
    }
    .menucontent li{
        text-align: center;
    }
    header .menuBtn>div span:first-child {
        top: 23%;
    }
    header .menuBtn {
        width: 40px;
    }
    .copy_span{
        font-size: 7.4px;
    }
    .copy{
        margin-top: 0;
        font-size: .9em;
    letter-spacing: .1rem;
    }
}
.errmsg{
    padding-top: 10rem;
}
.copy{
    
}