@charset "utf-8";


#header{
    opacity: 0;
    transform: translate3d(0, -120px, 0);
    transition-timing-function:ease-in-out;
    transition-duration: 1s;
    transition-delay: 2500ms;
}
.isLoaded #header{
    opacity: 1;
    transform: translateZ(0);
}
@keyframes animetionLeft{
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
    to {
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }
}
/*-----------------------------------------------
    index
-----------------------------------------------*/
.secWrapper{
	width:100%;
	position:relative;
	overflow:hidden;
}
.secWrapper .img{
	display:block;
	height:100%;
	position:relative;
	left:50%;
	margin-left:-960px;
	z-index: 100;
}
.secWrapper .boxImg{
	position: relative;
}
.secWrapper .video{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
_::-webkit-full-page-media, _:future, :root .secWrapper .video{
	height:100lvh;
}
.secWrapper .videoOverlay{
	content: "";
	opacity: 0.1;
    background: #000;
    will-change: opacity;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
.secWrapper .video video{
	width:100%;
	height:100%;
	transform: translateY(0) translateX(0);
	-webkit-transform: translateY(0) translateX(0);
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0!important;
	left: 0!important;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

/* secHeroTit */
.secHeroTit{
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 999;
    padding-bottom: 400px;
}
.secHeroTit .wrapper{
    position: relative;
    padding-top: 352px;
}
.isLoaded .secHeroTit .titBox{
    animation-delay: 1s;
    text-align: center;
}
.secHeroTit .topTitBox{
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 15px;
    color: #fff;
    line-height: 1.62;
}
.secHeroTit .topTit{
    position: relative;
    display: inline-block;
}
.secHeroTit .topTit::before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    bottom: 14px;
    left: 0;
    width: 93%;
    height: 1px;
    background-color: #fff;
}
.secHeroTit .engTitImg{
    margin-top: 35px;
}
.secHeroTit .iconHero{
    position: absolute;
    bottom: 70px;
    right: 100px;
    /* background: #fff; */
}
.secHeroTit .iconInner{
    position: relative;
}
.secHeroTit .rikunaviList{
    position: absolute;
    right: 24px;
    top: 18px;
}
.secHeroTit .rikunaviItem:nth-child(2){
    margin-top: 6px;
}
.secHeroTit .rikunaviInner{
    display: block;
}
.secHeroTit .rikunaviListLink .rikunaviItem + .rikunaviItem{
    margin-top: 10px;
}
@media only screen and (max-width:767px){
    .secHeroTit{
        padding: 50px 0 296px;
    }
    .secHeroTit .wrapper{
        padding-top: 155px;
    }
    .secHeroTit .titImg{
        width: 262px;
        margin: 0 auto;
    }
    .secHeroTit .topTit::before{
        bottom: 5px;
    }
    .secHeroTit .engTitImg{
        margin-top: 15px;
        width: 261px;
    }
    .secHeroTit .iconHero{
        position: static;
        width: 89.336%;
        margin: 70px auto 0;
    }
    .secHeroTit .rikunaviList{
        right: 30px;
    }
    .secHeroTit .rikunaviItem{
        width: 150px;
    }
    .secHeroTit .spBox{
        position: absolute;
        bottom: 50px;
        left: 0;
        width: 100%;
    }
    .secHeroTit .rikunaviListLink{
        display: flex;
        justify-content: space-between;
    }
    .secHeroTit .rikunaviListLink .rikunaviItem{
        width: 165px;
    }
    .secHeroTit .rikunaviListLink .rikunaviItem + .rikunaviItem{
        margin: 0;
    }


}
@media only screen and (max-width:374px){
    .secHeroTit .topTitBox{
        font-size: 28px;
        letter-spacing: 5px;
        line-height: 1.5;
    }
}
@media only screen and (max-width:359px){
    .secHeroTit .iconHero{
        width: 280px;
    }
    .secHeroTit .rikunaviList{
        right: 20px;
        top: 15px;
    }
    .secHeroTit .rikunaviItem{
        width: 130px;
    }
}
/* secScroll */
.secScroll{
    width: 1px;
    height: 150px;
    position: absolute;
    top: calc(50% - 117px);
    left: 157px;
    margin: 0 auto;
    z-index: 1;
}
.secScroll .txtScroll{
    position: absolute;
    top: -50px;
    left: -4px;
    color: #fff;
}
.secScroll .lineScroll01{
    position: absolute;
    z-index: 0;
    width: 1px;
    height: 150px;
    background: rgba(255, 255, 255, 0.25);
}
.secScroll .lineScroll02{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
    background-position: 0 -150px;
    background-size: 100% 200%;
    animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown{
    0%{
        background-position: 0 100%;
    }
    75%{
        background-position: 0 0;
    }
    100%{
        background-position: 0 -100%;
    }
}
@media only screen and (max-width:767px){
    .secScroll{
        width: 1px;
        height: 70px;
        position: static;
        margin: 0 auto 0;
        z-index: 1;
    }
    .secScroll .txtScroll{
        position: relative;
        width: 10px;
        top: -5px;
        left: -5px;
    }
    .secScroll .lineScroll01{
        position: absolute;
        z-index: 0;
        width: 1px;
        height: 70px;
        background: rgba(255, 255, 255, 0.25);
    }
    .secScroll .lineScroll02{
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: block;
        background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
        background-position: 0 -70px;
        background-size: 100% 200%;
        animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
    }
}


/*-----------------------------------------------
    main
-----------------------------------------------*/
#main{
    position: relative;
   
    padding-top: 222px;
}
@media only screen and (max-width:767px){
    #main{
       
        padding-top: 88px;
    }
}

/* secTop */
.secTop{
   padding-bottom: 345px;
   position: relative;
}
.secTop::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 151px;
    left: 0;
    bottom: 0;
}
.secTop.lazyloaded::before{
    background: url(../img/index/iconTop01.png) center top / cover;
}
.secTop .flexBox{
    display: flex;
}
.secTop .box{
    margin: -33px 0 0px 175px;
}
.secTop .txt{
    font-size: 24px;
    letter-spacing: 5.5px;
    line-height: 3.75;
    color: #fff;
    font-weight: bold;
}
@media only screen and (max-width:767px){
    /* secTop */
    .secTop{
        padding-bottom: 112px;
    }
    .secTop img{
        width: 135px;
    }
    .secTop::before{
        width: 100%;
        height: 10.135vw;
    }
    .secTop.lazyloaded::before{
        background: url(../img/index/iconTop01_sp.png) center top / cover;
    }
    .secTop .flexBox{
        display: block;
        width: calc((305 / 375)* 100%);
        margin: 0 auto;
    }
    .secTop .box{
        margin: 22px 0 0px 0px;
    }
    .secTop .txt{
        font-size: 14px;
        letter-spacing: 1.5px;
        line-height: 2.85;
    }
}
@media only screen and (max-width:359px){
    .secTop .txt {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}

/* secList */
.secList{
    margin-top: 120px;
}
.secList .item{
    display: flex;
    align-items: center;
}
.secList .item:nth-child(2n){
    flex-direction: row-reverse;
}
.secList .item:nth-child(n+2){
    margin-top: 200px;
}
.secList .txtBox{
    width: calc(100% - 660px);
    color: #fff;
    padding: 0 0 10px 0;
}
.secList .item:nth-child(2n) .txtBox{
    width: calc(100% - 660px);
    padding: 0 0 15px 180px;
}
.secList .topTit{
    font-size: 100px;
    letter-spacing: 11px;
    position: relative;
}
.secList .topTit::before{
    position: absolute;
    content: "";
    width: 53px;
    height: 42px;
    left: -19px;
    top: -12px;
}
.secList .topTit.lazyloaded::before{
    background: url(../img/index/iconTit01.png) center top / cover;
}
.secList .item:nth-child(2n) .topTit.lazyloaded::before{
    background: url(../img/index/iconTit02.png) center top / cover;
}
.secList .spanTit{
    position: relative;
    z-index: 1;
}
.secList .item:nth-child(4) .spanTit::before{
    position: absolute;
    content: "";
    width: 240px;
    height: 66px;
    right: -71px;
    bottom: -14px;
}
.secList .item:nth-child(4) .spanTit.lazyloaded::before{
    background: url(../img/index/iconTit03.png) center top / cover;
}
.secList .tit{
    font-size: 22px;
    font-weight: bold;
    margin-top: 44px;
    letter-spacing: 5px;
}
.secList .txt{
    font-size: 16px;
    line-height: 2.25;
    margin-top: 30px;
    letter-spacing: 1px;
}
.secList .subTit{
    font-size: 30px;
    line-height: 1.6;
    font-weight: bold;
    margin-top: 30px;
    letter-spacing: 1px;
}
.secList .btnInner{
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-block;
}
.secList .btnInner::before{
    content: '';
    width: 54%;
    height: 2px;
    position: absolute;
    bottom: 24px;
    right: -2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.secList .btnInner:hover::before{
    transform: scale(1, 1);
}
.secList .spanTxt{
    font-size: 24px;
    position: relative;
    padding-left: 32px;
    letter-spacing: 2.5px;
}
.secList .spanIcon{
    width: 80px;
    height: 80px;
    color: #1a6d97;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( -90deg, rgb(22,94,131) 0%, rgb(26,113,156) 100%);
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
.secList .item:nth-child(2n) .spanIcon{
    background: linear-gradient( -90deg, rgb(22,196,92) 0%, rgb(24,222,103) 100%);
}
.secList .btnInner:hover .spanIcon{
    background: #fff;
    color: #fff;
}
.secList .flexBox{
    display: flex;
    align-items: center;
}
.secList .btnCover{
    margin-top: 57px;
}
.secList .spanIcon{
    position: relative;
}
.secList .spanIcon::before{
    position: absolute;
    content: "";
    width: 34px;
    height: 20px;
    top: 30px;
    left: calc(50% - 15px);
    transition: all .2s linear;
}
.secList .spanIcon.lazyloaded::before{
    background: url(../img/index/iconArrow01.png) center top / cover;
}
.secList .btnInner:hover .spanIcon::before{
    opacity: 0;
}
.secList .spanIcon::after{
    position: absolute;
    content: "";
    width: 34px;
    height: 20px;
    top: 30px;
    left: calc(50% - 80px);
    opacity: 0;
    transition: all .2s linear;
}
.secList .spanIcon.lazyloaded::after{
    background: url(../img/index/iconArrow02.png) center top / cover;
}
.secList .item:nth-child(2n) .spanIcon.lazyloaded::after{
    background: url(../img/index/iconArrow03.png) center top / cover;
}
.secList .btnInner:hover .spanIcon::before{
    left: 150%;
    opacity: 0;
}
.secList .btnInner:hover .spanIcon::after{
    left: calc(50% - 15px);
    opacity: 1;
}

@media only screen and (max-width:1520px){
    .secList .txt {
        font-size: 15px;
        letter-spacing: 0px;
    }
    .secList .item:nth-child(2n) .txtBox {
        padding: 0 0 15px 140px;
    }
}
@media only screen and (max-width:1450px){
    .secList .topTit {
        letter-spacing: 10px;
    }
}

@media only screen and (max-width:767px){
    .secList{
        width: calc((305 / 375)* 100%);
        margin: 80px auto 0;
    }
    .secList .item{
        flex-direction: column-reverse;
    }
    .secList .item:nth-child(2n){
        flex-direction: column-reverse;
    }
    .secList .item:nth-child(n+2){
        margin-top: 98px;
    }
    .secList .txtBox{
        width: 100%;
        padding: 0;
        margin-top: 27px;
    }
    .secList .item:nth-child(2n) .txtBox{
        width: 100%;
        padding: 0 ;
        margin-top: 27px;
    }
    .secList .topTit{
        font-size: 30px;
        letter-spacing: 3.5px;
    }
    .secList .topTit::before{
        width: 20px;
        height: 17px;
        left: -10px;
        top: -9px;
    }
    .secList .topTit.lazyloaded::before{
        background: url(../img/index/iconTit01_sp.png) center top / cover;
    }
    .secList .item:nth-child(2n) .topTit.lazyloaded::before{
        background: url(../img/index/iconTit02_sp.png) center top / cover;
    }
    .secList .spanTit{
        position: relative;
        z-index: 1;
    }
    .secList .tit{
        font-size: 14px;
        margin-top: 20px;
        letter-spacing: 2.5px;
    }
    .secList .txt{
        font-size: 12px;
        line-height: 2.167;
        margin-top: 12px;
        letter-spacing:0px;
    }
    .secList .subTit{
        font-size: 18px;
        margin-top: 15px;
        letter-spacing: 0.5px;
    }
    .secList .btnInner::before{
       display: none;
    }
    .secList .btnInner:hover::before{
        transform: 0;
    }
    .secList .spanTxt{
        font-size: 16px;
        padding-left: 15px;
        letter-spacing: 1.5px;
    }
    .secList .spanIcon{
        width: 50px;
        height: 50px;
        transition: 0.5s ease-in-out;
    }
    .secList .btnCover{
        margin-top: 27px;
    }
    .secList .spanIcon::before{
        width: 17px;
        height: 10px;
        top: 20px;
        left: calc(50% - 8.5px);
    }
    .secList .spanIcon::after{
        width: 17px;
        height: 10px;
        top: 20px;
        left: calc(50% - 80px);
    }
    .secList .item:nth-child(4) .spanTit::before {
        width: 103px;
        height: 28px;
        right: -63px;
        bottom: -10px;
    }
    .secList .item:nth-child(4) .spanTit.lazyloaded::before {
        background: url(../img/index/iconTit03_sp.png) center top / cover;
    }

    .secList .btnInner:hover .spanIcon::after{
        left: calc(50% - 8.5px);
    }
}
@media only screen and (max-width:359px){
    .br315{
        display: contents;
    }
}


/* secCompany */
.secCompany{
    margin-top: 250px;
}
.secCompany .bgBox{
    padding-top: 240px;
    height: 660px;
}
.secCompany .bgBox.lazyloaded {
    background: url(../img/index/bgCompany.jpg?240820) center top / cover;
}


.secCompany .btnInner{
    color: #fff;
    text-decoration: none;
    position: relative;
    height: 100%;
    display: block;
}
.secCompany .btnInner::before{
    content: '';
    width: 125px;
    height: 2px;
    position: absolute;
    bottom: calc(50% - 2%);
    right: calc(50% - 750px);
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.secCompany .btnInner:hover::before{
    transform: scale(1, 1);
}
.secCompany .spanTxt{
    font-size: 24px;
    position: relative;
    padding-left: 32px;
    letter-spacing: 2.5px;
}
.secCompany .spanIcon{
    width: 80px;
    height: 80px;
    color: #1a6d97;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( -90deg, rgb(22,94,131) 0%, rgb(26,113,156) 100%);
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
.secCompany .btnInner:hover .spanIcon{
    background: #fff;
    color: #fff;
}
.secCompany .flexBox{
    display: flex;
    align-items: center;
    margin-top: 10px;
    position: absolute;
    right: calc(50% - 748px);
}
.secCompany .btnCover{
    margin-top: 57px;
}
.secCompany .spanIcon{
    position: relative;
}
.secCompany .spanIcon::before{
    position: absolute;
    content: "";
    width: 34px;
    height: 20px;
    top: 30px;
    left: calc(50% - 15px);
    transition: all .2s linear;
}
.secCompany .spanIcon.lazyloaded::before{
    background: url(../img/index/iconArrow01.png) center top / cover;
}
.secCompany .btnInner:hover .spanIcon::before{
    opacity: 0;
}
.secCompany .spanIcon::after{
    position: absolute;
    content: "";
    width: 34px;
    height: 20px;
    top: 30px;
    left: calc(50% - 80px);
    opacity: 0;
    transition: all .2s linear;
}
.secCompany .spanIcon.lazyloaded::after{
    background: url(../img/index/iconArrow02.png) center top / cover;
}
.secCompany .btnInner:hover .spanIcon::before{
    left: 150%;
    opacity: 0;
}
.secCompany .btnInner:hover .spanIcon::after{
    left: calc(50% - 15px);
    opacity: 1;
}
.secCompany .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.secCompany .tit{
    font-size: 100px;
    letter-spacing: 10px;
    margin-left: -5px;
    position: relative;
}
.secCompany .tit::before{
    position: absolute;
    content: "";
    width: 53px;
    height: 42px;
    left: -19px;
    top: -12px;
}
.secCompany .tit.lazyloaded::before {
    background: url(../img/index/iconTit01.png) center top / cover;
}
.secCompany .txt{
    font-size: 22px;
    margin-top: 42px;
    letter-spacing: 6px;
}
.secCompany .spanTit{
    position: relative;
}
@media only screen and (max-width:1570px){
    .secCompany .bgBox {
        padding-left: 20px;
    }
    .secCompany .flexBox {
        right: calc(50% - 670px);
    }
    .secCompany .btnInner::before {
        right: calc(50% - 670px);
    }
}

@media only screen and (max-width:767px){
    .secCompany{
        margin-top: 118px;
    }
    .secCompany .bgBox{
        padding-left: 0px;
        padding: 31.47vw 0;
        height: auto;
    }
    .secCompany .bgBox.lazyloaded {
        background: url(../img/index/bgCompany_sp.jpg?240820) center bottom / cover;
    }
    
    .secCompany .btnInner::before{
        display: none;
    }
    .secCompany .btnInner:hover::before{
        transform: scale(1, 1);
    }
    .secCompany .spanTxt{
        font-size: 16px;
        position: relative;
        padding-left: 15px;
        letter-spacing: 2px;
    }
    .secCompany .spanIcon{
        width: 50px;
        height: 50px;
    }
    .secCompany .flexBox{
        margin-top: 50px;
        position: static;
    }
    .secCompany .btnCover{
        margin-top: 57px;
    }
    .secCompany .spanIcon{
        position: relative;
    }
    .secCompany .spanIcon::before{
        width: 17px;
        height: 10px;
        top: 20px;
        left: calc(50% - 8px);
    }
    .secCompany .spanIcon::after{
        width: 17px;
        height: 10px;
        top: 20px;
        left: calc(50% - 80px);
        opacity: 0;
    }
    .secCompany .spanIcon.lazyloaded::after{
        background: url(../img/index/iconArrow02.png) center top / cover;
    }
    .secCompany .box{
        display:block;
        width: calc((305 / 375)* 100%);
        margin: 0 auto 0;
    }
    .secCompany .tit{
        font-size: 30px;
        letter-spacing: 3.5px;
        margin-left: 0px;
    }
    .secCompany .tit::before{
        width: 20px;
        height: 17px;
        left: -10px;
        top: -9px;
    }
    .secCompany .tit.lazyloaded::before {
        background: url(../img/index/iconTit01_sp.png) center top / cover;
    }
    .secCompany .txt{
        font-size: 14px;
        margin-top: 20px;
        letter-spacing: 3px;
    }
    .secCompany .btnInner:hover .spanIcon::after{
        left: calc(50% - 8.5px);
    }
}





.secLinePlan .img{
    padding-top: 60%;
}

.secHeroSlider{
    overflow: hidden;
    padding: 175px 0 0;
    background: #fff;
}
.secHeroSlider .slBox{
    display: flex;
    align-items: center;
}
.secHeroSlider .slTit{
    font-size: 40px;
    letter-spacing: 6px;
}
.secHeroSlider .slTxt{
    margin: 8px 0 0 48px;
    font-size: 16px;
    position: relative;
}
.secHeroSlider .slTxt::before{
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    background: #222;
    left: -45px;
    top: calc(50% - 1px);
}
.secHeroSlider .boxSlider{
    position: relative;
    padding-top: 85px;
    margin-top: -27px;
}
.secHeroSlider .swiper{
    max-width: 1500px;
    width: 100%;
    overflow: visible;
}
.secHeroSlider .disabled .swiper-slide{
    width: 430px;
}
.secHeroSlider .swiper-button-prev,
.secHeroSlider .swiper-button-next{
    width: 73px;
    height:16px;
    margin-top: 0;
    top: -84px;
}
.secHeroSlider .swiper-button-prev{
    right: calc(50% - 653px);
    left: unset;
}
.secHeroSlider .swiper-button-next{
    right: calc(50% - 755px);
}
.secHeroSlider .swiper-button-prev::after,
.secHeroSlider .swiper-button-next::after{
    display: none;
}
.secHeroSlider .swiper-button-prev::after{
    transform: rotate(45deg);
  left: 3px;
}
.secHeroSlider .swiper-button-prev{
    background: url(../img/index/iconBtnPrev.gif) center center / 73px auto no-repeat;
}
.secHeroSlider .swiper-button-next{
    background: url(../img/index/iconBtnNext.gif) center center / 73px auto no-repeat;
}
.secHeroSlider .swiper-pagination{
    position: absolute;
    font-size: 15px;
    top: -26px;
    z-index: -1;
    right: calc(50% - 1045px);
    left: unset;
}
.secHeroSlider .swiper-pagination-current,
.secHeroSlider .swiper-pagination-total{
    position: relative;
    z-index: 2;
    font-size: 24px;
    top: 0;
    font-family: 'Sen', sans-serif;
}
.secHeroSlider .swiper-pagination-total{
    padding-left: 33px;
}
.secHeroSlider .swiper-slide{
    height: auto;
}
.secHeroSlider .inner{
    display: block;
    text-decoration: none;
    color: #222;
    height: 100%;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    position: relative;
}
.secHeroSlider .img{
    padding-top: 67.445%;
}
.secHeroSlider .img img{
    border-radius: 10px 10px 0 0;
}
.secHeroSlider .txtBox{
    padding: 18px 30px 83px;
}
.secHeroSlider .tit{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.63;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 102px;
    min-height: 102px;
    margin-top: 20px;
}
.secHeroSlider .titBox{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
    padding: 0 30px;
    position: absolute;
    left: 0;
    bottom: 30px;
}
.secHeroSlider .tagTitBox{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
}
.secHeroSlider .tagTit{
    margin-right: 5px;
    padding: 4px 18px;
    min-width: 66px;
    background: #f2f2f2;
    border-radius: 14px;
    color: #888888;
    display: inline-block;
    text-align: center;
}
.secHeroSlider .tagTit.new{
    background: #d8ff00;
    color: #222;
}
.secHeroSlider .tagTit:last-child{
    margin-right: 0;
}
.secHeroSlider .data{
    font-size: 18px;
    margin-top: 10px;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #888888;
}
.secHeroSlider .btnInner{
    color: #222;
    text-decoration: none;
    position: relative;
    display: inline-block;
}
.secHeroSlider .btnInner::before{
    content: '';
    width: 54%;
    height: 2px;
    position: absolute;
    bottom: 24px;
    right: -2px;
    background: #222;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.secHeroSlider .btnInner:hover::before{
    transform: scale(1, 1);
}
.secHeroSlider .spanTxt{
    font-size: 24px;
    position: relative;
    padding-left: 32px;
    letter-spacing: 2.5px;
}
.secHeroSlider .spanIcon{
    width: 80px;
    height: 80px;
    color: #1a6d97;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( -90deg, rgb(22,196,92) 0%, rgb(24,222,103) 100%);
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
.secHeroSlider .btnInner:hover .spanIcon{
    color: #fff;
}
.secHeroSlider .flexBox{
    display: flex;
    align-items: center;
}
.secHeroSlider .btnCover{
    margin-top: 59px;
    display: flex;
    justify-content: flex-end;
}
.secHeroSlider .spanIcon{
    position: relative;
}
.secHeroSlider .spanIcon::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    transition: all .2s linear;
}
.secHeroSlider .spanIcon.lazyloaded::before{
    background: url(../img/index/iconArrow01.png) center center / 34px auto no-repeat;
}
.secHeroSlider .btnInner:hover .spanIcon::before{
    opacity: 0;
}
.secHeroSlider .spanIcon::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: -100%;
    transition: all .2s linear;
    border: solid 1px rgb(22,196,92);
}
.secHeroSlider .spanIcon.lazyloaded::after{
    background: url(../img/index/iconArrow03.png)  center center / 34px auto no-repeat #fff;
}
.secHeroSlider .btnInner:hover .spanIcon::before{
    left: 200%;
    opacity: 0;
}
.secHeroSlider .btnInner:hover .spanIcon::after{
    left: 0;
    opacity: 1;
}
@media only screen and (max-width:1540px){
    .secHeroSlider .boxSlider {
        margin: -38px 0 0 20px;
    }
        .secHeroSlider .swiper-button-prev {
        right: calc(50% - 530px);
    }
    .secHeroSlider .swiper-button-next {
        right: calc(50% - 620px);
    }
    .secHeroSlider .swiper{
        width: 100%;
    }
}

@media only screen and (max-width:767px){
    .secHeroSlider .swiper{
        width: 100%;
    }
    .secHeroSlider{
        padding-top: 98px;
    }
    .secHeroSlider .slBox{
        display: block;
        padding-left: 15px;
    }
    .secHeroSlider .slTit{
        font-size:30px;
        letter-spacing: 4px;
    }
    .secHeroSlider .slTxt{
        letter-spacing: 0px;
        margin-left: 0px;
        font-size: 14px;
        margin-top: 20px;
        font-weight: 700;
    }
    .secHeroSlider .slTxt::before {
       display: none;
    }
    .secHeroSlider .boxSlider{
        padding-top: 30px;
        width: 89.334%;
        margin: 0 auto 0;
    }
    .secHeroSlider .swiper-button-prev,
    .secHeroSlider .swiper-button-next{
        width: 20px;
        height:12px;
        margin-top: 0;
        top: -43px;
    }
    .secHeroSlider .swiper-button-prev{
        right: 50px;
        left: unset;
    }
    .secHeroSlider .swiper-button-next{
        right:15px;
    }
    .secHeroSlider .swiper-button-prev::after,
    .secHeroSlider .swiper-button-next::after{
        display: none;
    }
    .secHeroSlider .swiper-button-prev::after{
        transform: rotate(45deg);
      left: 3px;
    }
    .secHeroSlider .swiper-button-prev{
        background: url(../img/index/iconBtnPrev_sp.gif) center center / 20px auto no-repeat;
    }
    .secHeroSlider .swiper-button-next{
        background: url(../img/index/iconBtnNext_sp.gif) center center / 20px auto no-repeat;
    }
    .secHeroSlider .swiper-pagination{
        position: absolute;
        font-size: 15px;
        top: -26px;
        z-index: -1;
        right: calc(50% - 1045px);
        left: unset;
    }
    .secHeroSlider .swiper-pagination-current,
    .secHeroSlider .swiper-pagination-total{
        position: relative;
        z-index: 2;
        font-size: 24px;
        top: 0;
        font-family: 'Sen', sans-serif;
    }
    .secHeroSlider .swiper-pagination-total{
        padding-left: 33px;
    }
    .secHeroSlider .img{
        padding-top: 67.37%;
    }
    .secHeroSlider .txtBox{
        padding: 5px 15px 52px;
    }
    .secHeroSlider .tit{
        font-size: 14px;
        line-height: 1.42;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        max-height: 60px;
        min-height:60px;
        margin-top: 8px;
    }
    .secHeroSlider .titBox{
        margin-top: 5px;
        justify-content: flex-start;
        bottom: 21px;
        padding: 0 15px;
    }
    .secHeroSlider .tagTitBox{
        font-size: 10px;
        letter-spacing: 0px;
    }
    .secHeroSlider .tagTit{
        padding: 1px 10px;
        min-width: 40px;
        border-radius: 60px;
        letter-spacing: 1px;
    }
    .secHeroSlider .data{
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    .secHeroSlider .btnInner::before{
        display: none;
     }
    .secHeroSlider .btnInner:hover::before{
        transform: 0;
    }
    .secHeroSlider .spanTxt{
        font-size: 16px;
        padding-left: 15px;
        letter-spacing: 1.5px;
    }
    .secHeroSlider .spanIcon{
        width: 50px;
        height: 50px;
        transition: 0.5s ease-in-out;
    }
    .secHeroSlider .btnCover{
        padding-right: 16px;
        margin-top: 29px;
    }
    .secHeroSlider .spanIcon.lazyloaded::before,.secHeroSlider .spanIcon.lazyloaded::after{
        background-size: 17px auto;
    }
    .secHeroSlider .disabled .swiper-slide{
        width: 100%;
    }
}


/* secContact */
.secContact{
    position: relative;
    background: #fff;
    padding-top: 100px;
}
.secContact .contactCover{
    padding: 239px 0 0;
    position: relative;
}
.secContact .contactCover::before{
    position: absolute;
    content: "";
    width: 100%;
    height:151px;
    left: 0;
    top: 0;
}
.secContact .contactCover.lazyloaded::before{
    background: url(../img/index/iconContact.gif) center top / cover;
}
.secContact .titBox{
    text-align: center;
}
.secContact .tit{
    font-size: 100px;
    letter-spacing: 10px;
}
.secContact .txt{
    font-size: 16px;
    line-height: 2.25;
    margin-top: 36px;
    letter-spacing: 1px;
}
.secContact .flexBox{
    display: flex;
    justify-content: space-between;
    padding: 84px 174px 51px 217px;
    position: relative;
}
.secContact .flexBox::before{
    position: absolute;
    content: "";
    background: #222;
    width: 1px;
    height: 237px;
    left: calc(50% - 0.5px);
    top: 38px;
}
.secContact .telBox{
    text-align: center;
}
.secContact .telTit{
    font-size: 32px;
    letter-spacing: 3px;
}
.secContact .telInner{
    display: block;
    height: 100%;
    text-decoration: none;
    color: #222;
    font-size: 50px;
    margin-top: 18px;
    letter-spacing: 4.5px;
}
.secContact .time{
    font-size: 16px;
    margin-top: 23px;
    letter-spacing: 1.5px;
}
.secContact .mailBox{
    text-align: center;
}
.secContact .mailTit{
    font-size: 32px;
    letter-spacing: 3px;
}
.secContact .btnInner{
    font-size: 18px;
    font-weight: 700;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 400px;
    height: 80px;
    border-radius: 40px;
    position: relative;
    margin-top: 28px;
    background-image: -moz-linear-gradient( -90deg, rgb(22,94,131) 0%, rgb(26,113,156) 100%);
    background-image: -webkit-linear-gradient( -90deg, rgb(22,94,131) 0%, rgb(26,113,156) 100%);
    background-image: -ms-linear-gradient( -90deg, rgb(22,94,131) 0%, rgb(26,113,156) 100%);
}
.secContact .btnInner::before{
    position: absolute;
    content: "";
    width: 20px;
    height: 12px;
    top: calc(50% - 6px);
    right: 41px;
}
.secContact .btnInner.lazyloaded::before{
    background: url(../img/index/iconContactBtn.png) center top / cover;
}
.secContact .boxCover{
    background: #222222;
}
.secContact .undBox{
    background: #fff;
    padding-bottom: 100px;
}

@media only screen and (max-width:767px){
    .secContact{
        padding-top: 70px;
    }
    .secContact .contactCover{
        padding: 105px 0 100px;
    }
    .secContact .contactCover::before{
        width: 100%;
        height: 10.135vw;
    }
    .secContact .contactCover.lazyloaded::before{
        background: url(../img/index/iconContact_sp.gif) center top / cover;
    }
    .secContact .tit{
        font-size: 30px;
        letter-spacing: 3.5px;
    }
    .secContact .txt{
        font-size: 12px;
        line-height: 1.83;
        margin-top: 18px;
        letter-spacing: 0px;
    }
    .secContact .flexBox{
        display: block;
        padding: 0px;
    }
    .secContact .flexBox::before{
        width: 35px;
        height: 1px;
        left: calc(50% - 17.5px);
        top: 24px;
    }
    .secContact .topBox{
        display: flex;
        justify-content: center;
        align-items: baseline;
    }
    .secContact .telTit{
        font-size: 16px;
        letter-spacing: 3px;
    }
    .secContact .telInner{
        font-size: 28px;
        margin-top: 52px;
        letter-spacing: 2.5px;
    }
    .secContact .time{
        font-size: 14px;
        margin-top: 11px;
    }
    .secContact .btnInner{
        font-size: 14px;
        width: calc((305 / 375)* 100%);
        height: 60px;
        border-radius: 30px;
        margin: 22px auto 0;
    }
    .secContact .btnInner::before{
        width: 16px;
        height: 10px;
        top: calc(50% - 5px);
        right: 29px;
    }
    
    .secContact .undBox{
        padding-bottom: 0px;
    }
    
}
@media only screen and (max-width:359px){
    .secContact .txt {
        font-size: 11px;
    }
}


.btnarrow5{
    /*矢印の基点とするためrelativeを指定*/
  position: relative;
    /*ボタンの形状*/
  border: 1px solid #555;
    padding: 8px 30px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #333;
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s linear;
}

.btnarrow5:hover{
  background:#333;
  color:#fff;
}

/*矢印と下線の形状*/
.btnarrow5::before{
  content:"";
    /*絶対配置で下線の位置を決める*/
  position: absolute;
  top:50%;
  right:-26px;
    /*下線の形状*/
  width:40px;
  height:1px;
  background:#333;
    /*アニメーションの指定*/
    transition: all .2s linear;
}

.btnarrow5::after{
  content:"";
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    top: 20%;
    right: -21px;
    /*矢印の形状*/
  width:1px;
  height:12px;
  background:#333;
    transform:skewX(45deg);
    /*アニメーションの指定*/
    transition: all .2s linear;
}

/*hoverした際の移動*/
.btnarrow5:hover::before{
  right:-30px;
}

.btnarrow5:hover::after{
  right:-25px;
}
