/*=============================================================
 index.css
=============================================================*/
/* slider
-------------------------------------------------------------*/
.slider {
    position: relative;
    width: 100%;
    margin: 0 auto 24px;
}

.slider-main {
    position: relative;
    max-width: 82.14%;
    margin-right: 17.86%;
    width: 100%;
}

.slider-items {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slider-items .item {
    display: none;
    width: 100%;
}

.slider-items .item a {
    display: block;
    position: relative;
    opacity: 1;
}

.slider-items .item a:hover {
    opacity: 0.8;
}

.slider-items .item a.nolink {
    pointer-events: none;
}

.slider-items .item.active,
.slider-items .item a picture {
    display: block;
}

.slider-controls {
    position: absolute;
    bottom: 0px;
    right: 0;
    z-index: 10;
}

.slider-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.slider-btn img {
    width: 24px;
    height: 24px;
}

.slider-thumbnails {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 21.43%;
}

.slider-sum {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-sum li {
    width: 100%;
}

.slider-sum button {
    display: flex;
    width: 100%;
    height: 88px;
    padding: 12px;
    box-sizing: border-box;
    align-items: center;
    text-align: left;
    gap: 16px;
    background-color: #fff;
    opacity: 0.7;
    transition: var(--animation);
}

.slider-sum li.active button,
.slider-sum li:hover button {
    opacity: 1;
}

.slider-sum button img {
    width: 64px;
    height: auto;
    display: block;
}

.slider-sum button span {
    display: block;
    font-size: 14px;
    color: #888;
    line-height: 1.4;
}

.slider-sum li.active button span {
    color: var(--primary-blue);
}

/* slider-btn */
.btn-slider {
    padding: 8px 48px 8px 16px;
    min-height: 35px;
    min-width: 0;
    max-width: 170px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 32px;
    background: var(--primary-blue);
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 125%;
}

.btn-slider::before {
    content: '';
    width: 80px;
    height: 80px;
    background: #35ABFF;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 2;
}

.btn-slider::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../shared/img/icon-arrow-w.svg") no-repeat;
    background-size: 16px 16px;
    background-position: center right;
    z-index: 3;
    transition: var(--animation);
}

.btn-slider>span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: auto;
    max-width: 100%;
}

.slider-items .item a img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center left;
}

/* local-government */
@media screen and (max-width: 1159px) and (min-width: 960px) {
    .slider-items .item.local-government a img {
        object-position: calc(0% - 24px) center;
    }
}

.slider-items .item.local-government a span {
    font-size: clamp(28px, calc(3.23vw + 0.58rem), 42px);
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.84px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 64px;
    transform: translateY(-50%);
}

/* series-dx */
.slider-items .item.series-dx .btn-position {
    position: absolute;
    bottom: 81px;
    left: 234px;
    z-index: 10;
}

/* diverse-talents */
.slider-items .item.diverse-talents .btn-position {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 70px;
}

.slider-items .item.diverse-talents .btn-position p {
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: 0.8px;
}

.slider-items .item.diverse-talents .btn-position .btn-slider {
    margin: 16px auto 0;
}

/*index-ttl
-------------------------------------------------------------*/
.index-ttl {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
    letter-spacing: 0.4px;
    position: relative;
    padding: 64px 0 0;
    margin-bottom: 40px;
}

.index-ttl:before {
    content: 'ABOUT';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-family: "Roboto Condensed", Arial, sans-serif;
    background: linear-gradient(180deg, #D7EEFF 0%, #F8FCFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12.0rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 2.4px;
    z-index: 0;
    pointer-events: none;
}

#ac02 .index-ttl:before {
    content: 'PRODUCTS';
}

#ac03 .index-ttl:before {
    content: 'CONTACT';
}

.index-ttl span {
    position: relative;
    z-index: 1;
}

/* figure
-------------------------------------------------------------*/
#ac01 .col--2-- figure {
    width: calc(50vw + 15%);
    /* 拡大量をさらに減らす */
    max-width: calc(400px + 50%);
    /* 最大幅も調整 */
    margin-left: 0;
    margin-right: calc(50% - 50vw);
}

#ac01 .col--2-- figure img {
    width: 100%;
    height: auto;
}

/* ac02
-------------------------------------------------------------*/


/* ac03
-------------------------------------------------------------*/
#ac03 {
    background: url(../img/index-contact-bg.png) no-repeat center center;
    background-size: contain;
    text-align: center;
    padding-bottom: 80px;
}

/* ac04
-------------------------------------------------------------*/
#ac04 .banner-area {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

#ac04 .banner-area ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

#ac04 .banner-area ul li {
    max-width: 262px;
}

#ac04 .banner-area ul li a {
    text-decoration: none;
    transition: var(--animation);
}

#ac04 .banner-area ul li a:hover {
    opacity: 0.8;
}

#ac04 .banner-area ul li a figure {
    margin-bottom: 0;
}

#ac04 .banner-area ul li a figcaption {
    font-weight: 400;
    line-height: 150%;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1601px 以上 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media screen and (min-width: 1601px) {}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1600px ～ 1160px
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media screen and (max-width: 1600px) and (min-width: 1160px) {}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1159px ～ 768px
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media screen and (max-width: 1159px) and (min-width: 768px) {

    /* figure
    ----------------------------------------------------------*/
    #ac01 .col--2-- figure {
        width: calc(50vw + 10%);
        /* より控えめに */
        max-width: calc(300px + 50%);
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
959px 以下
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media screen and (max-width: 959.99999px) {

    /* slider
    ----------------------------------------------------------*/
    .sp-dsp-none {
        display: none;
    }

    .sp-dsp-block {
        display: block;
    }

    /* slider */
    .slider {
        margin: 0 auto 24px;
    }

    .slider-main {
        max-width: 100%;
        margin: 0 0 8px;
    }

    .slider-items {
        width: 100%;
        overflow: visible;
        border-radius: 8px;
    }

    .slider-items .item a {
        height: 420px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-items .item a img {
        height: 420px;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }

    .slider-controls {
        position: absolute;
        bottom: 0px;
        left: 50%;
        right: inherit;
        transform: translateX(-50%);
        z-index: 10;
        margin-left: 146px;
    }

    .slider-btn {
        width: 40px;
        height: 56px;
        background-color: #fff;
    }

    .slider-thumbnails {
        position: static;
        transform: inherit;
        width: 335px;
        margin: 0 auto;
    }

    .slider-sum {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .slider-sum li {
        width: 56px;
    }

    .slider-sum button {
        height: 56px;
        padding: 8px;
        gap: 8px;
        opacity: 0.7;
    }

    .slider-sum button img {
        width: 40px;
    }

    .slider-sum button span {
        font-size: 12px;
        line-height: 150%;
        display: none;
    }

    .slider-sum li.active {
        width: 154px;
    }

    .slider-sum li.active button span {
        display: block;
    }

    /* local-government */
    .slider-items .item.local-government a span {
        font-size: 2.8rem;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 100%;
    }

    /* series-dx */
    .slider-items .item.series-dx .btn-position {
        position: absolute;
        bottom: 135px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* diverse-talents */
    .slider-items .item.diverse-talents .btn-position {
        position: absolute;
        width: 100%;
        top: inherit;
        bottom: 23px;
        left: 50%;
        transform: translateX(-50%);
    }

    .slider-items .item.diverse-talents .btn-position p {
        font-size: 24px;
    }

    .slider-items .item.diverse-talents .btn-position .btn-slider {
        margin: 16px auto 0;
    }

}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
767px 以下
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media screen and (max-width: 767.99999px) {

    /* index-ttl
    -------------------------------------------------------------*/
    .index-ttl {
        padding: 64px 0 0;
        margin-bottom: 32px;
    }

    .index-ttl:before {
        position: absolute;
        font-size: 7.2rem;
    }

    /* figure
    ----------------------------------------------------------*/
    #ac01 .col--2-- figure {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    /* ac04
-------------------------------------------------------------*/
    #ac04 .banner-area {
        max-width: 262px;
    }
}