@charset "UTF-8";

/*========= カーテンの様に出現の動きのCSS ===============*/
.wrap , .wrap02 , .wrap03 , .wrap04 , .wrap05 {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}
.wrap_animated::after {
    animation: blockSlideRight 2s ease both;
    position: absolute;
    background: #BF1A1F;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.img , .img02 , .img03 , .img04 , .img05 {
    opacity:0;
}
.img_animated {
    animation: imgFadeInLeft 2s ease both;
}

@keyframes blockSlideRight {
    0% {
        width: 0%;
    }
    50% {
        width: 100%;
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}
@keyframes imgFadeInLeft {
    50% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}


.sub-title-wrap {
  width: 100%;
  height: 180px;
  position: relative;
}
.sub-title {
  position: relative;
  height: 180px;
}
.sub-title-img {
  position: absolute;
}
.sub-title-img img{
  width: 60%;
}
.sub-title h1 {
  padding-top: 150px;
}

.sub-title-btn {
  position: absolute;
  top: 0px;
  right: 20px;
}
.sub-title-btn li a {
    display: block;
    width: 80px;
    height: 80px;
    border: solid 1px #000;
    border-radius: 50px;
    text-align: center;
    color: #000;
    padding-top: 26px;
    margin-bottom: 20px;
    line-height: 16px;
}
.sub-title-btn li a:hover {
    background:rgba(191,26,31,0.7);
    color: #fff;
    border: solid 1px #fff;
}
.sub-title-btn li a span {
  display: block;
  font-size: 10px;

}


/*========= アコーディオンの動きのCSS ===============*/
.acd-check{
    display: none;
}
.acd-label{
    background: #fff;
    color: #000;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    position: relative;
    border-top: solid 1px #000;
}
.acd-label:hover{
    color: #BF1A1F;
}
.acd-label:after{
    background: #fff;
    color: #BF1A1F;
    box-sizing: border-box;
    content: '\f067';
    font-weight: 600;
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 100%;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
}
.acd-content{
    display: none;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label:after{
    content: '\f068';
}
.acd-check:checked + .acd-label + .acd-content{
    display: block;
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
    transition: .5s;

}

.reason-catch img {
    width: 90%;
    height: auto;
    object-position: top;
}

.design-vari {
    width: 20%;
}

.reason-catch02 img {
    width: 55%;
    height: auto;
    object-position: top;
}







@media (max-width: 768px) {

.sub-title-wrap {
  height: 100px;
}
.sub-title {
  height: 100px;
}
.sub-title-img img{
  width: 100%;
}
.sub-title h1 {
  padding-top: 90px;
}

.design-vari {
    width: 50%;
}


}