@charset "UTF-8";

/* mv */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.splide__slide {
    overflow: hidden;
    position: relative;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    display: block;
}
.splide__slide.is-active img {
    animation: zoomIn 5s linear forwards;
}
.splide__slide .section-inner p {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 42px;
    text-shadow: 0px 0px 7px rgb(0, 0, 0, 1);
    top: 100px;
    left: 50px;
}
.splide__slide .section-inner p br {
    display: none;
}
@media screen and (max-width: 1250px) {
    .splide__track {
        height: 500px;
    }
}
@media screen and (max-width: 767px) {
    .splide__track {
        height: 400px;
    }
    .splide__slide .section-inner p {
        font-size: 32px;
        top: 80px;
        left: 30px;
    }
}
@media screen and (max-width: 600px) {
    .splide__slide .section-inner p {
        font-size: 26px;
        left: 20px;
    }
}
@media screen and (max-width: 430px) {
    .splide__slide .section-inner p br {
        display: block;
    }
}



/* thought 思い */
#thought .content {
    height: 550px;
}
#thought .text-area {
    margin-bottom: 30px;
}
#thought .text-area h3 {
    font-size: 24px;
    color: #2680EA;
    margin-bottom: 30px;
}
#thought .img-area {    
    background-image: url(../images/top/thought_img.jpg);
}
@media screen and (max-width: 1250px) {
    #thought .img-area {
        height: 50vw;
    }
}
@media screen and (max-width: 1024px) {
    #thought .text-area h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    #thought .img-area {
        top: 50%;
        transform: translateY(-50%);
    }
}
@media screen and (max-width: 767px) {
    #thought .content {
        height: auto;
        margin-bottom: 40px;
    }
    #thought .img-area {
        top: 0%;
        transform: initial;
    }
}
@media screen and (max-width: 600px) {
    #thought .text-area h3 {
        font-size: 18px;
    }
    #thought .text-area {
        margin-bottom: 20px;
    }
}


/* business 事業内容 */
#business .content {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
#business .text-area {
    display: flex;
    flex-direction: column;
}
#business .text-inner {
    margin-bottom: 50px;
}
#business .img-area {
    padding-right: 40px;
}
#business .title-area2 {
    padding-top: 20px;
}
#business .title-area2 .t-big {
    color: #2680EA;
}
#business .btn-area {
    margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
    #business .img-area {
        padding-right: 30px;
    }   
}
@media screen and (max-width: 767px) {
    #business .content {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    #business .img-area {
        padding-right: 0px;
    }
    #business .text-inner {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 600px) {
    #business .text-inner {
        margin-bottom: 20px;
    }
}


/* other その他の事業 */
#other {
    background-color: #26B4E9;
    padding-top: 0;
}
#other .content {
    display: grid;
    grid-template-columns: 45% 55%;
}
#other .title-area .t-big,#other .title-area .t-small {
    color: #fff;
}
#other .title-area .t-small {
    font-weight: initial;
}
#other .text-area {
    color: #fff;
    padding: 60px 30px 60px 0;
}
#other .link-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#other .link-area li a {
    position: relative; 
    z-index: 1; 
    display: block; 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    transition: all 0.3s ease; 
}

#other .link-area li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top, 
        rgb(29, 139, 179) 0%, 
        rgba(34, 161, 208, 0.25) 30%, 
        rgba(34, 161, 208, 0.2) 60%,        
        rgba(34, 161, 208, 0) 80%, 
        rgba(34, 161, 208, 0) 100% 
    );
    opacity: 1;
    z-index: 3; 
    transition: opacity 1.0s ease; 
}

#other .link-area li a:hover::after {
    opacity: 0; 
    transition: opacity 0.3s ease; 
}
#other .link-area li.list01 a {
    background-image: url("../images/top/other01.jpg");
}
#other .link-area li.list02 a {
    background-image: url("../images/top/other02.jpg");
}
#other .link-area li.list03 a {
    background-image: url("../images/top/other03.jpg");
}
#other .link-area li.list04 a {
    background-image: url("../images/top/other04.jpg");
}

#other .link-area h3 {
    position: absolute;
    color: #fff;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 4;
}
#other .link-area a:hover h3 {
    text-shadow: #000 0px 0px 10px;
}
@media screen and (max-width: 1250px) {
   #other .link-area li.list04 a {
    background-size: 170%;
   }
}
@media screen and (max-width: 1024px) {
    #other .text-area {
        padding: 40px 20px 40px 0;
    }
    #other .link-area {
        padding: 60px 0;
    }
    #other .link-area li.list02 a {
        background-position: left center;
    }
    #other .link-area li.list04 a {
        background-size: 220%;
   }
}
@media screen and (max-width: 767px) {
    #other {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #other .content {
        display: flex;
        flex-direction: column;
        row-gap: 40px;
    }
    #other .text-area {
        padding: 0;
    }
    #other .link-area {
        padding: 0;
    }
    #other .link-area li a {
        height: 45vw;
    }
    #other .link-area li.list04 a {
        background-size: cover;
   }
}
@media screen and (max-width: 600px) {
    #other .link-area li.list04 a {
        background-size: 180%;
        background-position: left center;
    }
}
@media screen and (max-width: 430px) {
    #other .link-area h3 {
        font-size: 12px;
        letter-spacing: 1px;
    }
}