@charset "utf-8";

/* # ========================================================
* #	Aurora X
* # ======================================================== */
.Aurora-X {
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    color:#000;
}


/* # ========================================================
* # Hero
* # ======================================================== */

/* PC */
.service-hero {
    width: 56%;
    margin: 0 auto 80px;
    padding-top: 60px;
    position: relative;
}

.service-hero img {
    display: block;
    height: auto;
}

.service-hero__aurora {
    width: 100%;
   


    animation: auroraWarp 14s ease-in-out infinite;
    transform-origin: center center;
}

.service-hero__logo {
    position: absolute;
    width: 90%;
    left: 50%;
    top: calc(50% + 40px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.service-hero__sp {
    display: none !important;
}

@keyframes auroraWarp {
    0% {
        transform: translateX(0) skewX(0deg) scale(1);
        filter: brightness(1) saturate(1);
    }
    25% {
        transform: translateX(-30px) skewX(-7deg) scale(1.04);
        filter: brightness(1.08) saturate(1.2);
    }
    50% {
        transform: translateX(28px) skewX(7deg) scale(1.02);
        filter: brightness(1.04) saturate(1.15);
    }
    75% {
        transform: translateX(-16px) skewX(-5deg) scale(1.03);
        filter: brightness(1.06) saturate(1.18);
    }
    100% {
        transform: translateX(0) skewX(0deg) scale(1);
        filter: brightness(1) saturate(1);
    }
}
/* SP */
@media screen and (max-width: 768px) {
    .service-hero {
        width: 74%;
        margin: 0 auto 32px;
        padding-top: 20px;
    }

    .service-hero__pc {
        display: none !important;
    }

    .service-hero__sp {
        display: block !important;
    }

    .service-hero__logo {
        width: 90%;
        top: calc(50% + 20px);
    }
}





/* # ========================================================
* #	Section
* # ======================================================== */
.Aurora-X section {
    padding-bottom: 80px;
    display: block;
  width: calc(100% - 40px);
  max-width: 840px;
  margin: 0 auto;
}
.Aurora-X section h2{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.Aurora-X section p{
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: 2;
    margin-bottom: 40px;
}

.Aurora-X section p:last-child{
     margin-bottom: 0;
}



.Aurora-X section.vision p{
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 2.4;
}



/* SP */
@media screen and (max-width: 768px) {
.Aurora-X section {
     padding-bottom: 32px;
     padding-right: 32px;
     width: 92%;
     margin: 0 auto;
}
.Aurora-X section h2{
    font-size: 20px;
    margin-bottom: 12px;
 
   
}

.Aurora-X section p{
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 12px;
}

.Aurora-X section p:last-child{
     margin-bottom: 0;
}



.Aurora-X section.vision p{
    font-size:14px;
    line-height: 2.0;
   
}


}




/* section内リスト */
.Aurora-X section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 840px;
    margin: 32px auto 0;
    padding: 0;
    list-style: none;
}

.Aurora-X section ul li {
    background: url("../service_images/icon_x.png") no-repeat center 0.3em #000;
    background-size: 24px auto;

    border-radius: 8px;
    padding: 30px 6px 8px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;

     width: 148px; /* 840 - 24*4 = 744 / 5 = 148.8 */
    box-sizing: border-box;

    text-align: center !important;
}
@media screen and (max-width: 768px) {
    .Aurora-X section ul {
        gap: 16px;
        margin: 24px auto 0;
    }

    .Aurora-X section ul li {
        width: calc((100% - 16px) / 2);
        font-size: 14px;
    }
}


/* # ========================================================
* #	Card
* # ======================================================== */

/* カード配置 */
.card {
    display: flex;
    gap: 24px;
    max-width: 840px;
    margin: 48px auto 0;
}

.card-col {
    width: 264px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-one {
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 980px) {
    .card {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 24px auto 0;
    }

    .card-col {
        display: contents;
    }

    .card-one {
        width: 100%;
    }

    .card-sms { order: 1; }
    .card-ivr { order: 2; }
    .card-aicall { order: 3; }
    .card-rcs { order: 4; }
    .card-knowledge { order: 5; }
    .card-sip { order: 6; }
    .card-storage { order: 7; }
}








.card-one h3 {
    border-radius: 8px 8px 0 0;
    background: #000;
    padding: 10px 12px;
}
.card-one h3 img {
    height: 17px;
    width:auto;
}
.card-one .card-contents {
    background: #f2f2f2;
    padding: 10px 12px;
    border-radius: 0 0 8px 8px;
}

.card-rcs .card-contents {
    padding-bottom: 20px;
}

.card-aicall .card-contents {
    padding-bottom: 32px;
}

@media screen and (max-width: 980px) {
    .card-rcs .card-contents,
    .card-aicall .card-contents{
        padding-bottom: 10px;
    }
    .card-one h3 img {
    height: 20px;

}
}



.card-one .card-contents h4 {
    font-size: 15px;
    color: #000;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-one .card-contents figure {
    height: 124px;
    width: auto;
    margin-bottom: 12px;
     display: flex;

    justify-content: center;
}

.card-one .card-contents figure img {
     height: 100%;
     width: auto;
   
}
.card-one .card-contents p {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
    line-height: 1.6;
}






/* # ========================================================
* # CTAボタンの改修
* # ======================================================== */
.Aurora-X .btn-brand {
    padding-bottom: 80px;
}

.Aurora-X .btn-brand h5 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

/* 外側＝グラデ枠 */
.Aurora-X .cta_button_wrapper {
    width: 500px;
    margin: 0 auto;
    padding: 5px;
    border-radius: 50px;
    background: linear-gradient(45deg, #6AE0FF, #FF96FE, #FB9DF9, #83EEB1, #FDE05A, #1EC9D8, #7CECB6, #6AE0FF);
    background-size: 400% 400%;
    animation: rainbow-smooth 10s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* 内側＝黒ボタン */
.Aurora-X .cta_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 48px;
    background: #212121;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 47px;
    box-sizing: border-box;
    position: relative;
}

/* hover発光 */
.Aurora-X .cta_button_wrapper:hover {
    box-shadow:
        0 0 10px rgba(106, 224, 255, 0.8),
        0 0 20px rgba(106, 224, 255, 0.6),
        0 0 30px rgba(106, 224, 255, 0.4);
}

.br-375 {
    display: none;
}

@keyframes rainbow-smooth {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media screen and (max-width: 768px) {
    .Aurora-X .btn-brand {
        padding-bottom: 40px;
    }

    .Aurora-X .btn-brand h5 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .Aurora-X .cta_button_wrapper {
        width: 80%;
    }

    .Aurora-X .cta_button {
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media screen and (max-width: 375px) {
    .br-375 {
        display: block;
    }
}




.Aurora-X .cta_button::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: url("../service_images/icon_x.png") no-repeat center / contain;
}

@media screen and (max-width: 768px) {
    .Aurora-X .cta_button::after {
        left: 18px;
        width: 24px;
        height: 24px;
    }
}