@charset "utf-8";

#header{
    background: #f8f8f8;
    position: relative;
    height: 11rem;
    display: flex;
    align-items: center;
}
#header::after{
    position: absolute;
    content: "";
    width: 192rem;
    height: 0.5rem;
    left: calc(50% - 96rem);
    top: 0;
    background-image: -moz-linear-gradient( 0deg, rgb(10,148,68) 0%, rgb(38,170,225) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(10,148,68) 0%, rgb(38,170,225) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(10,148,68) 0%, rgb(38,170,225) 100%);
}
#header .headerInner{
    display: flex;
    justify-content: space-between;
    padding: 0 30rem 0 3.5rem;
    width: 100%;
}
#header .leftbox{
    display: flex;
    align-items: center;
}
#header .headerLogo{
    width: 22.2rem;
}
#header .headerTit{
    margin: 0.5rem 0 0 3rem;
    font-size: var(--pcFontSize12);
}
#header .rightbox{
    display: flex;
    align-items: center;
    padding-top: 0.5rem;
}
#header .rightlist{
    display: flex;
}
#header .rightItem{
    font-size: var(--pcFontSize16);
    font-weight: bold;
}
#header .rightItem:nth-child(n+2){
    margin-left: 3.5rem;
}
#header .link{
    display: inline-block;
}
#header .rightLinkbox{
    position: absolute;
    top: 0;
    right: 0;
    width: 23rem;
}
#header .boxlink{
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ColorWhite);
    background: #24a9da;
    font-size: var(--pcFontSize20);
    line-height: var(--pcLineHeight20_28);
    font-weight: bold;
    border-radius: 0 0 0 3rem;
}
#header .linktxt{
    position: relative;
    padding-top: 3rem;
}
#header .linktxt::after{
    position: absolute;
    content: "";
    width: 2.7rem;
    height: 2rem;
    top: 0;
    left: calc(50% - 1.35rem);
    background: url(../img/kaitori/iconHeader.png) center top / cover;
}
@media only screen and (max-width:1615px){
    #header .headerInner{
        padding: 0 25rem 0 3.5rem;
    }
    #header .rightItem:nth-child(n+2){
        margin-left: 2rem;
    }
    #header .rightLinkbox{
        width: 20rem;
    }
    #header .boxlink{
        height: 14rem;
    }
}
@media only screen and (max-width:1215px){
    #header{
        height: 6.3rem;
    }
    #header::after{
        width: 100%;
        height: 0.3rem;
        left: 0;
        top: 0;
    }
    #header .headerInner{
        display: block;
        padding: 0 2rem;
    }
    #header .headerLogo{
        width: 11.3rem;
    }
    #header .headerTit{
        margin: 0 0 0 1.2rem;
        font-size: var(--spFontSize10);
        line-height: var(--spLineHeight10_14);
    }
    #header .rightbox{
        display: none;
    }
}
/* footer */
#footer{
    padding: 15rem 0 10rem;
    position: relative;
}
#footer .titBox{
    text-align: center;
}
#footer .headerLogo{
    width: 27.6rem;
    margin: 0 auto;
    display: inline-block;
}
#footer .txt{
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_50);
    margin-top: 3.6rem;
}
#footer .snsList{
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}
#footer .snsItem{
    width: 6rem;
}
#footer .snsItem:nth-child(2){
    margin-left: 2rem;
}
#footer .snsInner{
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ColorWhite);
}
#footer .snsInner img{
    width: 2.4rem;
}
#footer .tellist{
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}
#footer .telitem{
    width: 28rem;
    margin-right: 5rem;
}
#footer .telitem:last-child{
    margin-right: 0;
}
#footer .tellink{
    display: block;
    text-align: center;
}
#footer .telleft{
    height: 6rem;
    background: var(--ColorWhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--pcFontSize16);
    font-weight: bold;
    border-radius: 1.5rem;
}
#footer .telnum{
    font-size: var(--pcFontSize26);
    letter-spacing: var(--pcLetterSpacing26_50);
    font-weight: bold;
    margin-top: 2.4rem;
}
#footer .teltxt{
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_50);
    margin-top: 2.5rem;
}
#footer .copy{
    font-size: var(--pcFontSize12);
    letter-spacing: var(--pcLetterSpacing12_50);
    text-align: center;
    margin-top: 10rem;
}
#footer .iconTop{
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ColorWhite);
    box-shadow: 0rem 0rem 0.8rem 0.2rem rgba(0, 0, 0, 0.05);
}
#footer .iconTop img{
    width: 1.8rem;
}
@media only screen and (max-width:1215px){
    #footer{
        padding: 7rem 0 6.8rem;
    }
    #fNavi + #footer{
        padding-bottom: 13.3rem;
    }
    #footer .headerLogo{
        width: 16.6rem;
    }
    #footer .txt{
        font-size: var(--spFontSize12);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 2.2rem;
    }
    #footer .snsList{
        margin-top: 2rem;
    }
    #footer .snsItem:nth-child(2){
        margin-left: 1.5rem;
    }
    #footer .tellist{
        margin-top: 3rem;
    }
    #footer .telitem{
        width: 31.344%;
        margin-right: 2.984%;
    }
    #footer .telleft{
        height: 4rem;
        font-size: var(--spFontSize12);
    }
    #footer .telnum{
        font-size: var(--spFontSize14);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 1.2rem;
    }
    #footer .teltxt{
        font-size: var(--spFontSize11);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 2rem;
        text-align: center;
    }
    #footer .copy{
        font-size: var(--spFontSize10);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 5rem;
    }
    #footer .iconTop{
        display: none;
    }
}
#fNavi{
    display: none;
}
@media only screen and (max-width:1215px){
    #fNavi{
        display: block;
        transform: translateY(115%);
        transition: all 0.2s ease-out;
        width: 100%;
        z-index: 100;
        position: fixed;
        bottom: 0;
        left: 0;
    }
    #fNavi.jsShow{
        transform: none;
    }
    #fNavi .inner{
        height: 6.5rem;
        border-radius: 1rem 1rem 0 0;
        background-color: rgb(36, 169, 218);
        box-shadow: inset 0rem -0.3rem 0rem 0rem rgba(1, 1, 1, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
        color: var(--ColorWhite);
        font-size:var(--spFontSize16);
        font-weight: bold;
    }
    #fNavi .inner::after{
        position: absolute;
        content: "";
        width: 7.2rem;
        height: 7.3rem;
        right: 1rem;
        bottom: 0;
        background: url(../img/kaitori/iconFnavi02.png) center top / cover;
    }
    #fNavi .txt{
        position: relative;
        padding-left: 3.1rem;
    }
    #fNavi .txt::after{
        position: absolute;
        content: "";
        width: 2.1rem;
        height: 1.6rem;
        left: 0;
        top: calc(50% - 0.8rem);
        background: url(../img/kaitori/iconFnavi.png) center top / cover;
    }
}
/*-----------------------------------------------
    index
-----------------------------------------------*/
.secTop{
    height: 88rem;
    background: url(../img/kaitori/bgTop.jpg) center top / cover;
}
.secTop .wrapper{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4rem;
}
.secTop .tit{
    width: 102.8rem;
    position: relative;
    left: 1rem;
}
.secTop .iconImg{
    position: absolute;
    bottom: -5.5rem;
    right: -13rem;
    width: 45.2rem;
}
.secTop .btnBox{
    margin: 2.5rem auto 0;
    width: 52rem;
}
.secTop .btnInner{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 10rem;
    border-radius: 5rem;
    background: var(--ColorWhite);
    font-size: var(--pcFontSize22);
    font-weight: bold;
    position: relative;
}
.secTop .btnInner::after{
    position: absolute;
    content: "";
    width: 5rem;
    height: 5rem;
    right: 2.5rem;
    top: calc(50% - 2.5rem);
    border-radius: 50%;
    background: #f8f8f8;
    background: url(../img/kaitori/iconFormLink.png) center center / 1.6rem auto no-repeat #f8f8f8;
}
@media only screen and (max-width:1215px){
    .secTop{
        height: 54.4rem;
        background: url(../img/kaitori/bgTop_sp.jpg) center top / cover;
    }
    .secTop .wrapper{
        display: block;
        padding: 4rem 0 0;
    }
    .secTop .tit{
        width: 100%;
        margin: 0 auto;
        max-width: 33.5rem;
        left: 0;
    }
    .secTop .iconImg{
        position: relative;
        width: 21.9rem;
        bottom: 2.8rem;
        right: -6rem;
        margin: 0 auto;
    }
    .secTop .btnBox{
        position: absolute;
        bottom: -4rem;
        left: 0;
        margin: 0 auto;
        width: 100%;
    }
    .secTop .btnInner{
        height: 8rem;
        border-radius: 4rem;
        font-size: var(--spFontSize18);
        padding-right: 4.5rem;
        z-index: 10;
    }
    .secTop .btnInner::after{
        width: 4rem;
        height: 4rem;
        right: 2rem;
        top: calc(50% - 2rem);
        background: url(../img/kaitori/iconFormLink.png) center center / 1.2rem auto no-repeat #f8f8f8;
    }
}
@media only screen and (max-width:359px){
    .secTop .iconImg{
        bottom: -1rem;
    }
}
/* secReason */
.secReason{
    padding-top: 10rem;
}
.secReason .topTitBox{
    text-align: center;
}
.secReason .topTit{
    font-size: var(--pcFontSize28);
    line-height: var(--pcLineHeight28_44);
    letter-spacing: var(--pcLetterSpacing28_50);
    font-weight: bold;
}
.secReason .topTxt{
    margin-top: 2rem;
}
.secReason .number{
    display: inline-block;
    width: 4.5rem;
}
.secReason .numberTxt{
    font-size: var(--pcFontSize38);
    letter-spacing: var(--pcLetterSpacing38_50);
    font-weight: bold;
    margin-left: 0.8rem;
}
.secReason .topEng{
    width: 12.3rem;
    display: inline-block;
    position: relative;
    margin-top: 3.2rem;
}
.secReason .topEng::after,
.secReason .topEng::before{
    position: absolute;
    content: "";
    width: 2rem;
    height: 0.1rem;
    top: calc(50% - 0.05rem);
    background: var(--textColor);
}
.secReason .topEng::after{
    left: -3.8rem;
}
.secReason .topEng::before{
    right: -3.8rem;
}
@media only screen and (max-width:1215px){
    .secReason{
        padding-top: 10.2rem;
    }
    .secReason .topTit{
        font-size: var(--spFontSize18);
        line-height: var(--spLineHeight18_30);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secReason .topTxt{
        margin-top: 0.8rem;
    }
    .secReason .number{
        width: 2.3rem;
    }
    .secReason .numberTxt{
        font-size: var(--spFontSize24);
        letter-spacing: var(--spLetterSpacing0);
        margin-left: 0.8rem;
    }
    .secReason .topEng{
        width: 5.9rem;
        margin-top: 1.5rem;
    }
    .secReason .topEng::after,
    .secReason .topEng::before{
        width: 1rem;
    }
    .secReason .topEng::after{
        left: -2rem;
    }
    .secReason .topEng::before{
        right: -2rem;
    }
}
.secReason .list{
    margin-top: 6rem;
}
.secReason .item{
    position: relative;
    min-height: 60rem;
}
.secReason .img{
    position: absolute;
    top: 0;
    left: calc(50% - 86rem);
    width: 75rem;
    border-radius: 12.2rem;
    overflow: hidden;
}
.secReason .txtBox{
    width: 68rem;
    margin-left: auto;
    padding: 8rem 0 0;
}
.secReason .numberImg img{
    width: auto;
    height: 5.7rem;
}
.secReason .tit{
    font-size: var(--pcFontSize28);
    line-height: var(--pcLineHeight28_48);
    font-weight: bold;
    margin-top: 2.6rem;
}
.secReason .txt{
    font-size: var(--pcFontSize18);
    line-height: var(--pcLineHeight18_34);
    margin-top: 2rem;
}
.secReason .item:nth-child(n+2){
    margin-top: 6rem;
}
.secReason .item:nth-child(2n) .img{
    left: auto;
    right: calc(50% - 86rem);
}
.secReason .item:nth-child(2n) .txtBox{
    margin-left: 0;
}
@media only screen and (max-width:1215px){
    .secReason .list{
        margin: 3rem auto 0;
        max-width: 67rem;
    }
    .secReason .item{
        display: block;
        min-height: auto;
    }
    .secReason .img{
        position: static;
        width: calc(100% - 4rem);
        border-radius: 4.5rem;
        margin: 0 auto;
    }
    .secReason .txtBox{
        width: 100%;
        margin: 0 auto;
        padding: 1.8rem 0 0;
        position: relative;
    }
    .secReason .numberImg{
        position: absolute;
        top: -1rem;
        right: 0;
    }
    .secReason .numberImg img{
        width: auto;
        height: 4.3rem;
    }
    .secReason .tit{
        font-size: var(--spFontSize18);
        line-height: var(--spLineHeight18_28);
        margin-top: 0;
    }
    .secReason .txt{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_26);
        margin-top: 1rem;
    }
    .secReason .item:nth-child(n+2){
        margin-top: 4.5rem;
    }
}
/* secWorks */
.secWorks{
    padding-top: 12rem;
}
.secWorks .titBox{
    height: 15rem;
    background: #223746;
    color: var(--ColorWhite);
    font-size: var(--pcFontSize38);
    letter-spacing: var(--pcLetterSpacing38_50);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.secWorks .tit{
    font-weight: bold;
}
.secWorks .mainBox{
    padding: 7rem 0 10rem;
}
.secWorks.lazyloaded .mainBox{
    background: url(../img/kaitori/bgWorks.jpg) center top / cover;
}
.secWorks .mainList{
    max-width: 172rem;
    width: calc(100% - 10rem);
    margin: 0 auto;
    display: flex;
}
.secWorks .mainItem{
    width: 55.814%;
}
.secWorks .mainItem:nth-child(2){
    width: 40.117%;
    margin-left: auto;
}
.secWorks .mainTit{
    width: 30rem;
    height: 8rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ColorWhite);
    font-size: var(--pcFontSize32);
    letter-spacing: var(--pcLetterSpacing32_50);
    font-weight: bold;
    background-image: -moz-linear-gradient( 0deg, rgb(10,148,68) 0%, rgb(38,170,225) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(10,148,68) 0%, rgb(38,170,225) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(10,148,68) 0%, rgb(38,170,225) 100%);
    border-radius: 4rem;
    position: relative;
    z-index: 10;
}
.secWorks .mainSubList{
    background: var(--ColorWhite);
    height: calc(100% - 4rem);
    border-radius: 8rem;
    margin-top: -4rem;
    padding: 9rem 3rem 8.2rem;
    display: flex;
    justify-content: center;
}
.secWorks .mainSubItem{
    width: 24rem;
}
.secWorks .mainSubItem:nth-child(n+2){
    margin-left: 3rem;
}
.secWorks .mainItemTit{
    font-size: var(--pcFontSize18);
    font-weight: bold;
    background: #f8f8f8;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 1.5rem;
}
.secWorks .mainItemTxt{
    font-size: var(--pcFontSize16);
    line-height:var(--pcLineHeight16_28);
    margin-top: 3.5rem;
}
.secWorks .mainItemTxt + .mainItemTxt{
    margin-top: 2.8rem;
}
.secTabBox{
    display: none;
}
@media only screen and (max-width:1215px){
    .secWorks{
        padding-top: 6.5rem;
    }
    .secWorks .titBox{
        height: 7rem;
        font-size: var(--spFontSize18);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secWorks .mainBox{
        padding: 2rem 0 4rem;
    }
    .secWorks.lazyloaded .mainBox{
        background: url(../img/kaitori/bgWorks_sp.jpg) center top / cover;
    }
    .secWorks .mainList{
        display: none;
    }
    .secTabBox{
        display: block;
    }
    .secTabBox .tab-content .content{
        display: none;
    }
    .secTabBox .tab-content .content.active {
        display: block;
    }
    .secTabBox .secTabMenu{
        display: flex;
        width: 89.334%;
        margin: 0 auto;
    }
    .secTabBox .tab{
        width: calc(50% - 0.45rem);
        height: 5rem;
        font-size: var(--spFontSize14);
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ColorWhite);
        background: #0a9444;
        border-radius: 2rem 2rem 0 0;
    }
    .secTabBox .tab:nth-child(2){
        margin-left: 0.9rem;
        background: #22a9d9;
    }
    .secTabBox .tab-content{
        border-top: solid 0.2rem rgb(10, 148, 68);
        background: var(--ColorWhite);
        padding: 2rem 0 4rem;
    }
    .secTabBox .content{
        width: 89.334%;
        margin: 0 auto;
    }
    .secTabBox .tabItem{
        border: solid 0.1rem #e8e8e8;
    }
    .secTabBox .tabItem:nth-child(n+2){
        margin-top: 1.1rem;
    }
    .secTabBox .tabTit{
        background: #f8f8f8;
        font-size: var(--spFontSize14);
        font-weight: bold;
        text-align: center;
        padding: 1.65rem;
    }
    .secTabBox .tabSubList{
        display: flex;
    }
    .secTabBox .tabSubItem{
        width: calc(50% - 0.05rem);
    }
    .secTabBox .tabSubItem:nth-child(2){
        border-left: solid 0.1rem #e8e8e8;
    }
    .secTabBox .tabSubTxt{
        font-size: var(--spFontSize12);
        padding: 1.3rem;
        border-top: solid 0.1rem #e8e8e8;
        text-align: center;
    }
    .secTabBox .tabSubTxt.color{
        background: #f8f8f8;
    }
}
/* secHouse */
.secHouse{
    margin-top: 12rem;
    position: relative;
}
.secHouse::after{
    position: absolute;
    content: "";
    width: 8rem;
    height: 11rem;
    bottom: -5.5rem;
    left: calc(50% - 4rem);
}
.secHouse.lazyloaded::after{
    background: url(../img/kaitori/iconHouseBox.png) center top / cover;
}
.secHouse .topTitBox{
    width: 68rem;
    margin: 0 auto;
    position: relative;
    background: var(--ColorWhite);
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.secHouse .topTitBox::after,
.secHouse .topTitBox::before{
    position: absolute;
    content: "";
    width: 2rem;
    height: 14rem;
    top: 0;
}
.secHouse .topTitBox::after{
    left: 0;
}
.secHouse .topTitBox::before{
    right: 0;
}
.secHouse.lazyloaded .topTitBox::after{
    background: url(../img/kaitori/iconHouseTit01.png) center top / cover;
}
.secHouse.lazyloaded .topTitBox::before{
    background: url(../img/kaitori/iconHouseTit02.png) center top / cover;
}
.secHouse .topTit{
    font-size: var(--pcFontSize28);
    line-height: var(--pcLineHeight28_44);
    font-weight: bold;
}
.secHouse .mainBox{
    background: var(--ColorWhite);
    box-shadow: 0rem 0rem 0.8rem 0.2rem rgba(0, 0, 0, 0.05);
    border-radius: 12.2rem;
    padding: 10rem 9rem 12rem;
    margin-top: -7rem;
}
.secHouse .list{
    display: flex;
}
.secHouse .item{
    height: 20rem;
    width: 34rem;
    border-radius: 6rem 6rem 0 6rem;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.secHouse .item:nth-child(n+2){
    margin-left: 4rem;
}
.secHouse .item::after{
    position: absolute;
    content: "";
    bottom: -2rem;
    right: -2rem;
}
.secHouse .item:nth-child(1)::after{
    width: 6.8rem;
    height: 11.2rem;
}
.secHouse.lazyloaded .item:nth-child(1)::after{
    background: url(../img/kaitori/iconHouseItem01.png) center top / cover;
}
.secHouse .item:nth-child(2)::after{
    width: 10.4rem;
    height: 12.6rem;
    right: -3.3rem;
}
.secHouse.lazyloaded .item:nth-child(2)::after{
    background: url(../img/kaitori/iconHouseItem02.png) center top / cover;
}
.secHouse .item:nth-child(3)::after{
    width: 8.3rem;
    height: 11.9rem;
}
.secHouse.lazyloaded .item:nth-child(3)::after{
    background: url(../img/kaitori/iconHouseItem03.png) center top / cover;
}
.secHouse .itemTxt{
    font-size: var(--pcFontSize20);
    line-height: var(--pcLineHeight20_36);
    font-weight: bold;
}
.secHouse .itemTxt span{
    background: linear-gradient(transparent 5%, #f6e73c 5%, #f6e73c 95%, transparent 95%);
}
.secHouse .txt{
    font-size: var(--pcFontSize28);
    letter-spacing: var(--pcLetterSpacing28_50);
    font-weight: bold;
    margin-top: 8rem;
    text-align: center;
}
.secHouse .txt span{
    background: linear-gradient(transparent 75%, #f6e73c 75%, #f6e73c 95%, transparent 95%);
}
@media only screen and (max-width:1215px){
    .secHouse{
        margin-top: 6.5rem;
    }
    .secHouse::after{
        width: 2.9rem;
        height: 4.2rem;
        bottom: -2.3rem;
        left: calc(50% - 1.45rem);
    }
    .secHouse.lazyloaded::after{
        background: url(../img/kaitori/iconHouseBox_sp.png) center top / cover;
    }
    .secHouse .topTitBox{
        width: 100%;
        background: none;
        height: auto;
        display: block;
    }
    .secHouse .topTitBox::after,
    .secHouse .topTitBox::before{
        display: none;
    }
    .secHouse .topTit{
        font-size: var(--spFontSize16);
        line-height: var(--spLineHeight16_26);
        text-shadow:  0.5rem 0.5rem 0.5rem #fff, 0.5rem 0.5rem 0.5rem #fff, 0.5rem 0.5rem 0.5rem #fff, -0.5rem -0.5rem 0.5rem #fff , -0.5rem -0.5rem 0.5rem #fff;
    }
    .secHouse .mainBox{
        border-radius: 4rem;
        padding: 5rem 0 4.5rem;
        margin: -2.5rem auto 0;
        max-width: 67rem;
    }
    .secHouse .list{
        display: block;
    }
    .secHouse .item{
        height: 8rem;
        width: 22.5rem;
        margin: 0 auto;
        border-radius: 4rem 4rem 0 4rem;
        left: -1.8rem;
        justify-content: flex-start;
        padding-left: 3rem;
        text-align: left;
    }
    .secHouse .item:nth-child(n+2){
        margin: 2rem auto 0;
    }
    .secHouse .item::after{
        bottom: -0.4rem;
        right: -3.3rem;
    }
    .secHouse .item:nth-child(1)::after{
        width: 4.3rem;
        height: 7.1rem;
    }
    .secHouse .item:nth-child(2)::after{
        width: 6.6rem;
        height: 8rem;
        right: -3.3rem;
    }
    .secHouse .item:nth-child(3)::after{
        width: 5.2rem;
        height: 7.5rem;
    }
    .secHouse .itemTxt{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
    }
    .secHouse .itemTxt span{
        background: linear-gradient(transparent 5%, #f6e73c 5%, #f6e73c 95%, transparent 95%);
    }
    .secHouse .txt{
        font-size: var(--spFontSize16);
        line-height: var(--spLineHeight16_26);
        margin-top: 3rem;
    }
    .secHouse .txt span{
        background: linear-gradient(transparent 75%, #f6e73c 75%, #f6e73c 95%, transparent 95%);
    }
}
/* secSupport */
.secSupport{
    padding-top: 11.5rem;
}
.secSupport .topTitBox{
    text-align: center;
}
.secSupport .number{
    display: inline-block;
    width: 4.6rem;
}
.secSupport .numberTxt{
    font-size: var(--pcFontSize38);
    letter-spacing: var(--pcLetterSpacing38_50);
    font-weight: bold;
    margin-left: 0.8rem;
}
.secSupport .topEng{
    width: 14.4rem;
    display: inline-block;
    position: relative;
    margin-top: 3.2rem;
}
.secSupport .topEng::after,
.secSupport .topEng::before{
    position: absolute;
    content: "";
    width: 2rem;
    height: 0.1rem;
    top: calc(50% - 0.05rem);
    background: var(--textColor);
}
.secSupport .topEng::after{
    left: -3.8rem;
}
.secSupport .topEng::before{
    right: -3.8rem;
}
@media only screen and (max-width:1215px){
    .secSupport{
        padding-top: 5rem;
    }
    .secSupport .number{
        width: 2.4rem;
    }
    .secSupport .numberTxt{
        font-size: var(--spFontSize24);
        letter-spacing: var(--spLetterSpacing0);
        margin-left: 0.8rem;
    }
    .secSupport .topEng{
        width: 6.8rem;
        margin-top: 1.5rem;
    }
    .secSupport .topEng::after,
    .secSupport .topEng::before{
        width: 1rem;
    }
    .secSupport .topEng::after{
        left: -2rem;
    }
    .secSupport .topEng::before{
        right: -2rem;
    }
}
.secSupport .list{
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
}
.secSupport .item{
    width: 45.3125%;
    margin-right: 9.375%;
}
.secSupport .item:nth-child(2n){
    margin-right: 0;
}
.secSupport .item:nth-child(n+3){
    margin-top: 9rem;
}
.secSupport .titNumber{
    text-align: center;
}
.secSupport .titNumber img{
    width: auto;
    height: 9.4rem;
}
.secSupport .itemTit{
    font-size: var(--pcFontSize28);
    font-weight: bold;
    text-align: center;
    margin-top: 2.6rem;
}
.secSupport .img{
    border-radius: 10rem;
    overflow: hidden;
    margin-top: 4rem;
}
.secSupport .itemTxt{
    font-size: var(--pcFontSize18);
    line-height: var(--pcLineHeight18_34);
    margin-top: 3rem;
}
@media only screen and (max-width:1215px){
    .secSupport .list{
        margin: 4rem auto 0;
        max-width: 67rem;
    }
    .secSupport .item{
        width: 46.568%;
        margin-right: 6.864%;
    }
    .secSupport .item:nth-child(n+3){
        margin-top: 4.5rem;
    }
    .secSupport .titNumber img{
        width: auto;
        height: 5rem;
    }
    .secSupport .itemTit{
        font-size: var(--spFontSize16);
        line-height: var(--spLineHeight16_24);
        margin-top: 1.3rem;
    }
    .secSupport .img{
        border-radius: 2.5rem;
        margin-top: 1.3rem;
    }
    .secSupport .itemTxt{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
        margin-top: 1.5rem;
    }
}
/* secVoice */
.secVoice{
    padding-top: 14rem;
}
.secVoice .bgBox{
    padding: 10rem 0 10rem;
    position: relative;
}
.secVoice.lazyloaded .bgBox{
    background: url(../img/kaitori/bgVoice.jpg) center top / cover;
}
.secVoice .wrapper{
    width: calc(100% - 10rem);
    max-width: 172rem;
    margin: 0 auto;
}
.secVoice .titBox{
    text-align: center;
}
.secVoice .tit{
    color: var(--ColorWhite);
    font-weight: bold;
    position: relative;
    display: inline-block;
}
.secVoice .tit::after,
.secVoice .tit::before{
    position: absolute;
    content: "";
    width: 0.1rem;
    height: 4rem;
    background: var(--ColorWhite);
    top: 0;
}
.secVoice .tit::after{
    left: -3rem;
    transform: rotate(-20deg);
}
.secVoice .tit::before{
    right: -3rem;
    transform: rotate(20deg);
}
.secVoice .tit01{
    font-size: var(--pcFontSize28);
    letter-spacing: var(--pcLetterSpacing28_50);
}
.secVoice .tit02{
    font-size: var(--pcFontSize38);
    letter-spacing: var(--pcLetterSpacing38_50);
    display: block;
    margin-top: 3rem;
}
.secVoice .boxSlider{
    position: relative;
    margin-top: 5.5rem;
    width: 182rem;
    overflow: hidden;
    z-index: 10;
}
.secVoice .swiperCover{
    position: relative;
    width: 172rem;
}
.secVoice .swiper{
    width: 100%;
    margin-left: 0;
    overflow: visible;
    position: relative;
}
.secVoice .swiper-slide{
    height: auto;
}
.secVoice .img{
    width: 17rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.secVoice .mainBox{
    position: relative;
    background: var(--ColorWhite);
    border-radius: 6rem;
    margin-top: -12rem;
    padding: 15rem 5rem 16rem;
    height: calc(100% - 5rem);
}
.secVoice .mainBox::after{
    position: absolute;
    content: "";
    width: 4.2rem;
    height: 3.4rem;
    left: 8.5rem;
    top: -1.8rem;
}
.secVoice.lazyloaded .mainBox::after{
    background: url(../img/kaitori/iconVoiceMain.png) center top / cover;
}
.secVoice .mainTit{
    font-size: var(--pcFontSize22);
    line-height: var(--pcLineHeight22_40);
    font-weight: bold;
    text-align: center;
}
.secVoice .txt{
    font-size: var(--pcFontSize16);
    line-height: var(--pcLineHeight16_30);
    margin-top: 2.2rem;
}
.secVoice .subTxt{
    position: absolute;
    bottom: 8rem;
    left: 5rem;
    width: calc(100% - 10rem);
    border-radius: 1.5rem;
    background: #f8f8f8;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_50);
}
.secVoice .swiper-pagination{
    position: static;
	padding-top: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.secVoice .swiper-pagination-bullet{
    border: solid 0.1rem var(--ColorWhite);
    background: none;
    margin: 0 1rem !important;
    opacity: 1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}
.secVoice .swiper-pagination-bullet-active{
    background: var(--ColorWhite);
}
.secVoice .swiper-horizontal>.swiper-scrollbar,
.secVoice .swiper-scrollbar.swiper-scrollbar-horizontal{
    position: absolute;
    left: 8rem;
    bottom: 10.8rem;
    width: calc(100% - 16rem);
    height: 0.6rem;
    border-radius: 0.3rem;
    background: none;
}
.secVoice .swiper-scrollbar-drag{
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}
.secVoice .engImg{
    width: calc(100% + 4.8rem);
    bottom: 0;
    left: -2.4rem;
    position: absolute;
}
@media only screen and (max-width:1820px){
    .secVoice .boxSlider{
        width: calc(100% + 5rem);
    }
    .secVoice .swiperCover{
        width: calc(100% - 5rem);
    }
}
@media only screen and (max-width:1215px){
    .secVoice{
        padding-top: 6.5rem;
    }
    .secVoice .bgBox{
        padding: 5.5rem 0 5rem;
    }
    .secVoice.lazyloaded .bgBox{
        background: url(../img/kaitori/bgVoice_sp.jpg) center top / cover;
    }
    .secVoice .wrapper{
        width: calc(100% - 4rem);
        max-width: none;
    }
    .secVoice .tit::after,
    .secVoice .tit::before{
        height: 3rem;
        top: -0.5rem;
    }
    .secVoice .tit::after{
        left: 0;
        transform: rotate(-20deg);
    }
    .secVoice .tit::before{
        right: 0;
        transform: rotate(20deg);
    }
    .secVoice .tit01{
        font-size: var(--spFontSize13);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secVoice .tit02{
        font-size: var(--spFontSize24);
        letter-spacing: var(--spLetterSpacing0);
        margin-top: 2rem;
    }
    .secVoice .boxSlider{
        margin-top: 3rem;
        width: calc(100% + 2rem);
    }
    .secVoice .swiperCover{
        width: calc(100% - 2rem);
    }
    .secVoice .swiper{
        width: 100%;
    }
    .secVoice .img{
        width: 10.5rem;
    }
    .secVoice .mainBox{
        border-radius: 3rem;
        margin-top: -7.7rem;
        padding: 9.4rem 2rem 11.5rem;
        height: calc(100% - 5rem);
    }
    .secVoice .mainBox::after{
        width: 2.3rem;
        height: 1.9rem;
        left: 3rem;
        top: -1rem;
    }
    .secVoice .mainTit{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
    }
    .secVoice .txt{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_22);
        margin-top: 0.8rem;
    }
    .secVoice .subTxt{
        bottom: 4rem;
        left: 2rem;
        width: calc(100% - 4rem);
        border-radius: 1rem;
        height: 4rem;
        font-size: var(--spFontSize11);
        letter-spacing: var(--spLetterSpacing11__05);
    }
    .secVoice .swiper-pagination{
        padding-top: 1rem;
    }
    .secVoice .swiper-pagination-bullet{
        border: solid 0.1rem var(--ColorWhite);
        background: none;
        margin: 0 0.55rem !important;
        opacity: 1;
        width: 1.1rem;
        height: 1.1rem;
    }
    .secVoice .swiper-pagination-bullet-active{
        background: var(--ColorWhite);
    }
    .secVoice .swiper-horizontal>.swiper-scrollbar,
    .secVoice .swiper-scrollbar.swiper-scrollbar-horizontal{
        position: absolute;
        left: -1rem;
        bottom: 6.2rem;
        width: calc(100% + 2rem);
        height: 0.4rem;
        border-radius: 0.2rem;
        background: none;
    }
    .secVoice .swiper-scrollbar-drag{
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0.2rem;
    }
    .secVoice .engImg{
        width: 38.8rem;
        bottom: -0.2rem;
        left: calc(50% - 19.4rem);
    }
}
@media only screen and (max-width:1215px){
    .secVoice .mainTit{
        font-size: var(--spFontSize13);
    }
    .secVoice .subTxt{
        left: 1rem;
        width: calc(100% - 2rem);
        font-size: var(--spFontSize10);
    }
}
/* secFaq */
.secFaq{
    padding-top: 10rem;
}
.secFaq .topTotBox{
    text-align: center;
}
.secFaq .topTit{
    font-size: var(--pcFontSize38);
    font-weight: bold;
}
.secFaq .topEng{
    display: inline-block;
    width: 6.7rem;
    position: relative;
    margin-top: 3.5rem;
}
.secFaq .topEng::after,
.secFaq .topEng::before{
    position: absolute;
    content: "";
    width: 2rem;
    height: 0.1rem;
    top: calc(50% - 0.05rem);
    background: var(--textColor);
}
.secFaq .topEng::after{
    left: -3.8rem;
}
.secFaq .topEng::before{
    right: -3.8rem;
}
@media only screen and (max-width:1215px){
    .secFaq{
        padding-top: 7rem;
    }
    .secFaq .topTit{
        font-size: var(--spFontSize24);
    }
    .secFaq .topEng{
        width: 3rem;
        margin-top: 1.5rem;
    }
    .secFaq .topEng::after,
    .secFaq .topEng::before{
        width: 1rem;
    }
    .secFaq .topEng::after{
        left: -2rem;
    }
    .secFaq .topEng::before{
        right: -2rem;
    }
}
.secFaq .list{
    margin-top: 5rem;
}
.secFaq .item:nth-child(n+2){
    margin-top: 2rem;
}
.secFaq .mainTitBox{
    position: relative;
    background: #e1f2e8;
    border-radius: 4.3rem;
    padding: 2.7rem 10rem 2.8rem 6rem;
    margin-bottom: 2rem;
}
.secFaq .mainTitFlexBox{
    display: flex;
}
.secFaq .txtImg{
    width: 2.3rem;
    flex-shrink: 0;
    position: relative;
    top: 0.5rem;
}
.secFaq .mainTit{
    font-size: var(--pcFontSize18);
    line-height: var(--pcLineHeight18_30);
    font-weight: bold;
    margin-left: 1.5rem;
}
.secFaq .faqBox{
    display: none;
    background: var(--ColorWhite);
    border-radius: 4.3rem;
    padding: 2.8rem 10rem 2.8rem 6rem;
}
.secFaq .txtFlex{
    display: flex;
}
.secFaq .txtImg02{
    width: 2.4rem;
    flex-shrink: 0;
    position: relative;
    top: 0.5rem;
}
.secFaq .txt{
    font-size: var(--pcFontSize18);
    line-height: var(--pcLineHeight18_30);
    margin-left: 1rem;
}
.secFaq .icon{
    position: absolute;
    width: 5.6rem;
    height: 5.6rem;
    right: 1.5rem;
    top: calc(50% - 2.8rem);
    border-radius: 50%;
    background: #0a9444;
}
.secFaq .icon::after,
.secFaq .icon::before{
    position: absolute;
    content: "";
    width: 1.4rem;
    height: 0.2rem;
    background: var(--ColorWhite);
    top: calc(50% - 0.1rem);
    left: calc(50% - 0.7rem);
}
.secFaq .icon::before{
    transform: rotate(-90deg);
}
.secFaq .mainTitBox.on .icon::before{
    display: none;
}
@media only screen and (max-width:1215px){
    .secFaq .list{
        margin-top: 2.8rem;
    }
    .secFaq .item:nth-child(n+2){
        margin-top: 1rem;
    }
    .secFaq .mainTitBox{
        border-radius: 2.75rem;
        padding: 1.65rem 5.5rem 1.65rem 2rem;
        margin-bottom: 1rem;
    }
    .secFaq .txtImg{
        width: 1.7rem;
        top: 0.5rem;
    }
    .secFaq .mainTit{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
        margin-left: 0.5rem;
    }
    .secFaq .faqBox{
        border-radius: 2.75rem;
        padding: 1.6rem 2rem 1.6rem 2rem;
    }
    .secFaq .txtImg02{
        width: 1.8rem;
        top: 0.5rem;
    }
    .secFaq .txt{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_22);
        margin-left: 1rem;
    }
    .secFaq .icon{
        width: 2.9rem;
        height: 2.9rem;
        right: 1.3rem;
        top: calc(50% - 1.45rem);
    }
    .secFaq .icon::after,
    .secFaq .icon::before{
        width: 1.1rem;
        height: 0.1rem;
        top: calc(50% - 0.05rem);
        left: calc(50% - 0.55rem);
    }
}
/* secCmnNextLoad */
.secCmnNextLoad{
    width: 40rem;
    height: 9rem;
    margin: 5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.secCmnNextLoad .btn{
    width: 100%;
    text-decoration: none;
    height: 100%;
    background: var(--ColorWhite);
    border: 1px solid #d7d7d7;
    border-radius: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textColor);
    font-weight: bold;
    font-size: var(--pcFontSize18);
    position: relative;
    cursor: pointer;
}
.secCmnNextLoad .btn::after{
    position: absolute;
    content: "";
    width: 5rem;
    height: 5rem;
    right: 2.5rem;
    top: calc(50% - 2.5rem);
    border-radius: 50%;
    background: #f8f8f8;
}
.secCmnNextLoad.lazyloaded .btn::after{
    background: url(../img/kaitori/iconFormLink.png) center center / 1.6rem auto no-repeat #f8f8f8;
}
.secCmnNextLoad #listLoading{
    display: none;
}
@media only screen and (max-width:1215px){
    .secCmnNextLoad{
        width: 20.5rem;
        height: 5rem;
        margin: 2rem auto 0;
    }
    .secCmnNextLoad .btn{
        border-radius: 2.5rem;
        font-size: var(--spFontSize14);
    }
    .secCmnNextLoad .btn::after{
        width: 2.4rem;
        height: 2.4rem;
        right: 1.3rem;
        top: calc(50% - 1.2rem);
    }
    .secCmnNextLoad.lazyloaded .btn::after{
        background: url(../img/kaitori/iconFormLink.png) center center / 0.8rem auto no-repeat #f8f8f8;
    }
}
/* secPurchase */
.secPurchase{
    margin-top: 10rem;
    background: var(--ColorWhite);
    border-radius: 12.2rem;
    box-shadow: 0rem 0rem 0.8rem 0.2rem rgba(0, 0, 0, 0.05);
    padding: 6.5rem 5rem 8rem;
    position: relative;
}
.secPurchase .iconImg{
    width: 3.7rem;
    position: absolute;
    left: calc(50% - 1.85rem);
    top: -2rem;
}
.secPurchase .tit{
    font-size: var(--pcFontSize28);
    letter-spacing: var(--pcLetterSpacing28_50);
    font-weight: bold;
    text-align: center;
}
.secPurchase .list{
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
.secPurchase .item{
    width: 24rem;
    margin-right: 3rem;
}
.secPurchase .item:last-child{
    margin-right: 0;
}
.secPurchase .itemTit{
    font-size: var(--pcFontSize18);
    font-weight: bold;
    background: #f8f8f8;
    height: 6rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.secPurchase .txtBox{
    margin-top: 2.2rem;
}
.secPurchase .txt{
    display: flex;
    font-size: var(--pcFontSize18);
    line-height: var(--pcLineHeight18_30);
}
.secPurchase .txt + .txt{
    margin-top: 1rem;
}
.secPurchase .subTxt{
    text-align: center;
    margin-top: 3.2rem;
    font-size: var(--pcFontSize14);
}
@media only screen and (max-width:1215px){
    .secPurchase{
        margin-top: 6rem;
        border-radius: 4rem;
        padding: 3.3rem 2rem 3.5rem;
    }
    .secPurchase .iconImg{
        width: 1.9rem;
        left: calc(50% - 0.95rem);
        top: -1rem;
    }
    .secPurchase .tit{
        font-size: var(--spFontSize18);
        letter-spacing: var(--spLetterSpacing0);
    }
    .secPurchase .list{
        margin-top: 2.5rem;
    }
    .secPurchase .item{
        width: 31.526%;
        margin-right: 2.711%;
    }
    .secPurchase .itemTit{
        font-size: var(--spFontSize14);
        height: 4rem;
        border-radius: 1.5rem;
    }
    .secPurchase .txtBox{
        margin-top: 1rem;
        margin-right: -1rem;
    }
    .secPurchase .txt{
        font-size: var(--spFontSize12);
        line-height: var(--spLineHeight12_22);
    }
    .secPurchase .txt + .txt{
        margin-top: 0;
    }
    .secPurchase .subTxt{
        text-align: center;
        margin-top: 1rem;
        font-size: var(--spFontSize11);
        line-height: var(--spLineHeight11_18);
    }
}