@charset "utf-8";

.loopSlide {
    position: relative;
    display: flex;
    width: 100vw;
    overflow: hidden;
    margin-top: 50px;
}

.loopSlide ul {
    padding: 2px 0;
    width: calc(250px * 14);
    display: flex;
    flex-shrink: 0;
    height: 333px;
}
.loopSlide ul li:nth-of-type(1),
.loopSlide ul li:nth-of-type(3),
.loopSlide ul li:nth-of-type(5),
.loopSlide ul li:nth-of-type(7),
.loopSlide ul li:nth-of-type(9),
.loopSlide ul li:nth-of-type(11),
.loopSlide ul li:nth-of-type(13) {
    align-self: end;
    display: block;
}
.illust__item img {
    outline: 2px solid var(--primary-white);
}

.loopSlide ul:first-child {
    animation: slide1 300s -150s linear infinite;
}

.loopSlide ul:last-child {
    animation: slide2 300s linear infinite;
}

.loopSlide ul li {
    display: inline-block;
    width: 200px;
    min-width: 150px;
    margin-right: 50px;
    list-style: none;
    text-align: center;
}

.loopSlide ul li img {
    display: block;
    width: 100%;
    height: auto;
}

/* .loopSlide:hover ul {
    animation-play-state: paused;
} */

@keyframes slide1 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

/* メイン案内 */
.contact__main {
    margin: 0 auto;
    margin-top: 80px;
    width: 87.2vw;
}
.contact__txt {
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
}
.contact__sns {
    display: flex;
    column-gap: 34px;
    justify-content: center;
    margin-top: 30px;
}
.contact__sns img {
    width: 40px;
    border-radius: 8px;
}
.contact__attention {
    margin: 50px auto 0;
    width: 87.2vw;
    padding: 4.3vw;
    border: solid 2px var(--primary-white);
    max-width: 600px;
}
.contact__attention p {
    font-size: 1.6rem;
    font-weight: 600;
}
.contact__attention--content {
    margin-top: 10px;
}
.contact__attention--content li {
    font-size: 1.4rem;
}
.contact__attention--txt {
    margin-top: 20px;
}
.contact__attention--txt p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8; 
    text-indent: -1em;
    padding-left: 1em;
}

@media screen and (min-width:768px) {
    .contact__contents {
        margin-top: 75px;
    }
    .contact__main {
        margin-top: 100px;
    }
   .contact__attention {
    margin-top: 60px;
   }
}

@media screen and (min-width:1081px) {
    .contact__contents {
        margin-top: 6.9vw;
    }
    .contact__main {
        margin-top: 6.9vw;
    }
   .contact__attention {
        margin-top: 4.2vw;
   }
    .contact__txt {
        font-size: 1.4vw;
    }
    .contact__sns {
        column-gap: 2.8vw;
        margin-top: 2.1vw;
    }
    .contact__sns img {
        width: 3.5vw;
        height: 3.5vw;
        max-width: 65px;
        max-height: 65px;
        border-radius: 10px;
    }
    .contact__attention {
        max-width: none;
        width: 47.2vw;
    }
    .contact__attention p {
        font-size: 1.3vw;
    }
    .contact__attention--content li {
        font-size: 1.1vw;
    }
    .contact__attention--txt {
        margin-top: 25px;
    }
    .contact__attention--txt p {
        font-size: 1.1vw;
    }
}
