:root {
    --main-color: #6b0010;
    --main-color-shadow: rgba(0, 0, 0, 0.2);
    --sub-color: #ffc200;
    --accent-color: #00a55f;
    --black: #333;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body{
    margin:0;
    padding:0;
}
a{
    text-decoration: none;
}

.inner{
    max-width:950px;
    min-width:350px;
    padding:10px;
    margin:0 auto;
}

.shine-btn a{
    display:block;
    padding:20px;
    background:var(--accent-color);
    border-bottom: 0.2em solid var(--main-color-shadow);
    width:90%;
    max-width:300px;
    margin:40px auto;
    color:#fff;
    text-align:center;
    border-radius:10px;
    overflow: hidden;
    position: relative;
    transition: 300ms;
}
.shine-btn a::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff4f4;
    transition: 300ms;
    animation: shinyshiny 2.5s ease-in-out infinite;
}
@-webkit-keyframes shinyshiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.main-visu{
    background-image: url(img/main-visu.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height:300px;
}



#issue .ttl{
    display:flex;
    justify-content: center;
    align-items:center;
}
#issue .ttl::before,
#issue .ttl::after{
    content:"";
    display:block;
    width:2px;
    height:30px;
    background:var(--black);
}
#issue .ttl::before{
    transform: rotate(-20deg);
    margin-right:10px;
}
#issue .ttl::after{
    transform: rotate(20deg);
    margin-left:10px;
}
#issue .list{
    padding:0;
}
#issue .list li{
    list-style: none;
    display:flex;
    margin-bottom:5px;
}
#issue .list li::before{
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    content: "\f00c";
    margin-right:10px;
}





/*suggest*/
#suggest .ttl{
    background-color: var(--main-color);
    padding:10px 20px;
    color:#fff;
    position: relative;
}
#suggest .ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50px;
    border: 15px solid transparent;
    border-top: 15px solid var(--main-color);
}
#suggest .box{
    border:3px solid var(--main-color);
    padding:10px;
}
#suggest .box .box-ttl{
    border-bottom:2px solid var(--main-color);
}
#suggest .list{
    padding:0;
}
#suggest .list li{
    list-style: none;
    display:flex;
    margin-bottom:5px;
    align-items: center;;
}
#suggest .list li::before{
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    content: "\f00c";
    margin-right:10px;
}
#suggest .txt-content{
    margin:40px auto;
}


/*feature*/
#feature .ttl{
    background-color: var(--sub-color);
    padding:10px 20px;
    color:#fff;
    position: relative;
}
#feature .ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50px;
    border: 15px solid transparent;
    border-top: 15px solid var(--sub-color);
}
#feature .box{
    border:3px solid var(--sub-color);
    padding:10px;
}
#feature .box .box-ttl{
    border-bottom:2px solid var(--sub-color);
}
#feature .list{
    padding:0;
}
#feature .list li{
    list-style: none;
    display:flex;
    margin-bottom:5px;
    align-items: center;;
}
#feature .list li::before{
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    content: "\f00c";
    margin-right:10px;
}
#feature .txt-content{
    margin:40px auto;
}

/*schedule*/
#schedule .ttl{
    background-color: var(--main-color);
    padding:10px 20px;
    color:#fff;
    position: relative;
}
#schedule .ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50px;
    border: 15px solid transparent;
    border-top: 15px solid var(--main-color);
}
#schedule .list-inner{
    display:flex;
}
#schedule .time-table{
    margin-top:40px;
}
#schedule ul{
    padding:0;
}
#schedule ul li{
    list-style: none;
    padding:0;
    margin-bottom:50px;
}
#schedule .list-inner .step-icon{
    width:130px;
    padding:15px 0 0 0;
    text-align:center;
    color:#fff;
    font-weight:bold;
    background:var(--main-color);
    position:relative;
}
#schedule .list-inner .step-icon::after{
    content:"";
    display:block;
    width:100%;
    height:20px;
    background:var(--main-color);
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
    position:absolute;
    top:100%;
    left:0;
}
#schedule .list-inner .text{
    width:calc(100% - 130px);
    padding-left:20px;
}
@media (min-width:480px){
    #schedule .list-inner .step-icon{
        width:200px;
    }
    #schedule .list-inner .text{
        width:calc(100% - 200px);
    }
}
#schedule .list-inner .text .title{
    border-bottom:1px solid var(--main-color);
    font-weight:bold;
    font-size:1.2rem;
}
#schedule .list-inner
#schedule .txt-content{
    margin:40px auto;
}
#schedule .small-text{
    font-size:.8rem;
    text-align:right;
}
#schedule .accent-color .list-inner .step-icon{
    background:var(--sub-color);
}
#schedule .accent-color .list-inner .step-icon::after{
    background:var(--sub-color);
}
#schedule .accent-color .list-inner .text .title{
    border-bottom:1px solid var(--sub-color);
}


#content .small-text{
font-size:.8rem;
text-align:right;
}
/*content*/
#content .ttl{
    background-color: var(--main-color);
    padding:10px 20px;
    color:#fff;
    position: relative;
}
#content .ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50px;
    border: 15px solid transparent;
    border-top: 15px solid var(--main-color);
}
#content .flex-box{
    display:flex;
    flex-direction: column;
}
#content .flex-box .left,
#content .flex-box .right{
    width:100%;
    padding:20px 10px;
}
@media (min-width:480px){
    #content .flex-box{
        flex-direction: row;
    }
    #content .flex-box .left,
    #content .flex-box .right{
        width:50%;
    }
    #content .flex-box .left img{
        padding:0 20px;
    }
    #content .flex-box .right img{
        padding:20px 0;
    }
}
#content .flex-box .right{
    order: 1;
}
#content .flex-box .left{
    order: 2;
}
#content .flex-box .left img,
#content .flex-box .right img{
    width:100%;
}
#content .flex-box .left .list .list-item,
#content .flex-box .right .list .list-item{
    border-bottom:1px dashed var(--main-color);
}

/*campaign*/
#campaign .ttl{
    display:flex;
    align-items: center;
}
#campaign .ttl .left{
    padding:10px;
    border-radius:50%;
    background:var(--accent-color);
    width:80px;
    height:80px;
    display:flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    position:relative;
    z-index:2;
}
#campaign .ttl .left::before{
    content:"";
    display:block;
    background:transparent;
    border-radius:50%;
    width:75px;
    height:75px;
    border:1px dashed #fff;
    position:absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#campaign .ttl .right{
    background:var(--accent-color);
    padding:10px 30px 10px 20px;
    color:#fff;
    position:relative;
    margin-left:-20px;
    z-index:1;
}
#campaign .ttl .right:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
    top: 0;
    right: 0;
    border-width: 25px 15px 25px 0px;
    border-color: transparent #fff transparent transparent;
    border-style: solid;
}
#campaign .ttl .right span{
    display:block;
    border-top:1px dashed #fff;
}
#campaign .ttl .right span{
    display:block;
    border-bottom:1px dashed #fff;
    padding:2px 0;
}
#campaign .content{
    border:2px solid var(--accent-color);
    padding:70px 20px 40px 20px;
    border-radius:10px;
    margin-top:-50px;
}
#campaign .content .content-ttl{
    text-align:center;
    font-size:1.3rem;
    font-weight:bold;
    margin-bottom:10px;
}
#campaign .content .txt{
    text-align:center;
}


/*review*/
#review .ttl{
    background-color: var(--main-color);
    padding:10px 20px;
    color:#fff;
    position: relative;
}
#review .ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50px;
    border: 15px solid transparent;
    border-top: 15px solid var(--main-color);
}
#review .review-box{
    border:1px solid #c1c1c1; 
    margin-bottom:40px;
}
#review .review-box .review-box-ttl{
    border-bottom:1px solid var(--main-color);
    padding:20px;
}
#review .review-box .review-box-ttl .left{
    display:inline;
    color:#fff;
    background:var(--main-color);
    padding:10px;
}
#review .review-box .review-box-ttl .right{
    font-size:1.1rem;
    margin-top:10px;
}
@media (min-width:480px){
    #review .review-box .review-box-ttl .right{
        display:inline;
    }
}
#review .review-box .review-box-txt{
    padding:10px;
}

/*member*/
#member .ttl{
    background-color: var(--main-color);
    padding:10px 20px;
    color:#fff;
    position: relative;
}
#member .ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50px;
    border: 15px solid transparent;
    border-top: 15px solid var(--main-color);

}
#member .flex-box{
    display:flex;
    flex-wrap:wrap;
}
#member .flex-box .box{
    width:100%;
    box-shadow:2px 2px 5px var(--main-color-shadow);
}
@media (min-width:480px){
    #member .flex-box .box{
        width:calc((100% - 40px) / 2);
        margin:10px;
    }
}
#member .box .box-ttl{
    text-align:center;
}
#member .box .img{
   background-image: url('img/yuki.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    width:300px;
    height:300px;
    border-radius:50%;
    margin:20px auto;
}
#member .box .img.hiroki{
    background-image: url('img/hiroki.webp');
}
#member .sns-list ul{
    display:flex;
    justify-content: center;
}
#member .sns-list ul li{
    list-style:none;
    margin:10px;
}
#member .sns-list ul li i{
    font-size:50px;
}


/*detail*/
#detail .ttl{
    background-color: var(--main-color);
    padding:10px 20px;
    color:#fff;
    position: relative;
}
#detail .ttl:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50px;
    border: 15px solid transparent;
    border-top: 15px solid var(--main-color);

}
#detail .table table{
    margin-top:40px;
    width:100%;
    border-collapse:collapse;
    border-spacing: 0;
}
#detail .table table tr td{
    border:1px solid #c1c1c1;
    padding:10px;
    display:block;
}
#detail .table table tr td:first-child{
    background:var(--main-color);
    color:#fff;
}
@media (min-width:480px){
    #detail .table table tr td{
        display:table-cell;
    }
}

/*fix-btn*/
.fix-btn{
    position:fixed;
    bottom:10px;
    right:10px;
}
.fix-btn a{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    text-align:center;
    align-items: middle;
    background: var(--accent-color);
    color:#fff;
    width:130px;
    height:130px;
    border-radius: 50%;
    font-size:1.1rem;
    border: 1px solid #fff;
}
@media (min-width:480px){
    .fix-btn{
        bottom:30px;
        right:30px;
    }
    .fix-btn a{
        padding:20px;
        font-size:1.2rem;
        width:150px;
        height:150px;
    }
}
.pop-anime{
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
  }
  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1.0);
    }
    50%, 70% {
      transform: scale(0.95);
    }
  }
  
/*footer*/
footer div{
    background:var(--main-color);
    color:#fff;
    text-align:center;
    padding:80px 0;
}


.btn-up-copy{
    margin-bottom: -35px;
    margin-top: 35px;
    text-align: center;
    font-size: 90%;
}
.btn-up-copy a{
    font-weight:bold;
}
.fix-btn-up-copy{
    margin-bottom: -35px;
    margin-top: 35px;
    text-align: center;
    font-size: 90%;
    position: fixed;
    bottom: 50px;
    right: 10px;
}
.fix-btn-up-copy a{
    font-weight:bold;
}