@charset "UTF-8";
/* nav pc */
@media screen and (min-width: 1024px) {
    .pc-nav__item:first-of-type {
        color: #D25F69;
    }
}

/* ===================
shutter
====================== */
.no-scroll {
  overflow: hidden;
}

.shutter{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color: #D25F69;
  z-index:9999;
}

.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
}

.shutter {
  -webkit-animation: byeShutter 2.6s forwards;
          animation: byeShutter 2.6s forwards;
}

.shutter::before {
  -webkit-animation: shutterOpen 2.6s forwards;
          animation: shutterOpen 2.6s forwards;
}

.content {
  -webkit-animation: contentScale 2.6s forwards;
          animation: contentScale 2.6s forwards;
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
            transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
            transform: perspective(800px) scale(1) rotateX(0);
  }
}


/* ===================
main visual
====================== */
#background-animation-container {
    background-color: #ffffff;
    bottom: 100px;      /* 画像の上の位置 */
    height: 80vw;      /* 画像の上だけに丸を出す */
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1000;
}

.ani-bubble {
    background-color: #dc969c;
    border-radius: 75px;
    height: 150px;
    position: absolute;
    top: 100%;
    width: 150px;

    -webkit-animation: bubblemove 10s linear infinite;
    -moz-animation: bubblemove 10s linear infinite;
    animation: bubblemove 10s linear infinite;
}

@-webkit-keyframes bubblemove {
    from { top: 100%; }
    to   { top: -600px; }
}
@-moz-keyframes bubblemove {
    from { top: 100%; }
    to   { top: -600px; }
}
@keyframes bubblemove {
    from { top: 100%; }
    to   { top: -600px; } /* This must be far enough off screen to allow the largest object to wander off with enough delay before restarting at the bottom, to be caught by the interval timer */
}



.main__visual-pc {
    display: none;
}

.main__title--pc {
    display: none;
}

.main__title--pc-sub {
    display: none;
}

.main {
    position: relative;
}

.sp-img {
    /* border-radius: 95px; */
    margin: 80vw auto 0;
}

.mv-logo {
    display: block;
    position: absolute;
    top: 68vw;
    left: 5%;
    width: 33vw;
}

.mv-logo {
    transform: translateY(40px);
    opacity: 0;
    transition: 1s;
}

.mv-logo.show {
    transform: translateY(0);
    opacity: 1;
}

.main__title--sp {
    position: absolute;
    top: 40vw;
    left: 5%;
    color: #D25F69;
    font-size: 9vw;
    font-weight: 500;
    line-height: 0.7;
}

.main__title--sp-sub {
    position: absolute;
    top: 52vw;
    left: 5%;
    color: #D25F69;
    font-size: 3.7vw;
    font-weight: 400;
}


/* scroll */
.scroll_down{
    display: none;
}

    

/* mv pc */
@media screen and (min-width: 1024px) {
    #background-animation-container {
        height: 31vw;      /* 画像の上だけに丸を出す */
    }

   .main__visual-sp {
        display: none;
   }

   .main__title--sp {
        display: none;
   }

   .main__title--sp-sub {
        display: none;
   }

   .main__visual-pc {
        display: block;
   }

   .pc-img {
        /* border-radius: 100px; */
        margin: 31vw auto 0; 
        /* 37vw */
   }

   .mv-logo {
        display: block;
        position: absolute;
        top: 14vw;
        left: 51%;
        width: 15vw;
    }

    .mv-logo {
        transform: translateY(40px);
        opacity: 0;
        transition: 1s;
    }

    .mv-logo.show {
        transform: translateY(0);
        opacity: 1;
    }
   

   .main__title--pc {
        display: block;
   }

   .main__title--pc-sub {
        display: block;
   }

    .main__title--pc {
        position: absolute;
        top: 14vw;
        left: 9%;
        color: #D25F69;
        font-size: 6vw;
        font-weight: 500;
        line-height: 0.7;
    }

    .main__title--pc-sub{
        position: absolute;
        top: 21vw;
        left: 9%;
        color: #D25F69;
        font-size: 1.2vw;
        line-height: 1.9;
        font-weight: 400;
    }



/* scroll */
    .scroll_down{
        display: block;
        position:absolute;
        top: 29vw;
        left: 90%;
    }

    .scroll_down p{
        position: absolute;
        left: 10px;
        bottom: 87px;
        color: #D25F69;
        font-size: 15px;
        /* font-family: 'Josefin Sans', sans-serif; */
        letter-spacing: .2em;
        writing-mode: vertical-lr;
        text-transform: uppercase;
    }

    .scroll_down:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: -4px;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #D25F69;
        animation:
            circlemove 1.6s ease-in-out infinite,
            cirlemovehide 1.6s ease-out infinite;
    }

    @keyframes circlemove{
        0%{bottom:160px;}
        100%{bottom:0px;}
    }

    @keyframes cirlemovehide{
        0%{opacity:0}
        50%{opacity:1;}
        80%{opacity:0.9;}
        100%{opacity:0;}
    }

    .scroll_down:after{
        content:"";
        position: absolute;
        bottom:0;
        left:0;
        width:2px;
        height: 160px;
        background: #D25F69;
    }
}/* pc 1024px */


/* ===================
about
====================== */
.section--about {
    padding-bottom: 80px;
    background-image: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0),rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 1)),
    url(../images/section-bg.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.about {
    padding: 75px 7.4% 70px;
}

.section__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 40px;
}

.section__txt {
    font-size: 1.6rem;
    margin-top: 40px;
    line-height: 1.6;
}

.btn {
    display: block;
    margin-top: 53px;
    width: 180px;
    height: 40px;
    background-color: #D25F69;
    border: 2px solid #D25F69;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    line-height: 2.3;
    transition: 0.4s;
}

.btn:hover {
    background-color: #ffffff;
    color: #D25F69;
}

/* about tablet */
@media screen and (min-width: 600px) {
    .section__topic {
        font-size: 6.5rem;
    }

     .section__title {
        font-size: 2.8rem;
    }

    .section__txt {
        font-size: 1.7rem;
    }
}/* tablet 600px */

/* about pc */
@media screen and (min-width: 1024px) {
    .section--about {
        padding-bottom: 160px;
    }

    .about__inner {
        max-width: 1450px;
        margin: 0 auto;
        display: flex;
        align-items: end;
    }

     .section__title {
        font-size: 2.1rem;
    }

    .about-img {
        width: 433px;
        height: 344px;
    }

    .about {
        padding: 135px 113px 0 12%;
    }
}/* pc 1024px */

@media screen and (min-width: 1440px) {
    .section__title {
        font-size: 2.8rem;
    }

    .about-img {
        width: 586px;
        height: 466px;
    }

    .about {
        padding: 135px 143px 0 15%;
    }
}/* pc 1440px */


/* ===================
news
====================== */
.section--news {
    text-align: center;
    background-color: #ffffff;
    padding: 50px 7.4% 80px;
}

.news {
    display: flex;
}

.news__list {
    margin-top: 60px;
}

.news__item {
    margin-top: 20px;
}

.news__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #A8A8A8;
    margin-top: 20px;
}

.news__date {
    font-size: 1.6rem;
    font-weight: 500;
    color: #D25F69;
    margin-right: 28px;
}

.news__title {
    font-size: 1.6rem;
    text-align: left;
    transition: 0.4s;
}

.news__title:hover {
    color: #D25F69;
}

.btn--news {
    margin: 54px auto 0;
}

/* news tablet */
@media screen and (min-width: 600px) {
    .news__date {
        font-size: 1.6rem;
        font-weight: 500;
        color: #D25F69;
        margin: 0 28px 0 24px;
    }
}/* tablet 600px */

/* news pc */
@media screen and (min-width:1024px) {
    .news__list {
        max-width: 1000px;
        margin: 70px auto 0;
    }

    .section--news {
        padding: 80px 15% 115px;
    }

    .news__date {
        margin: 0 45px 0 50px;
    }
}/* pc 1024px */


/* ===================
brand
====================== */
.section--brand {
    padding: 63px 7.4% 110px;
    background-color: #f4f4f4;
}

.brand__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.Brand__list {
    display: grid;
    gap: 0 7vw;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 9vw;
    max-width: 620px;
}

.Brand__item {
    padding-bottom: 7vw;
    transition: 0.4s;
}

.Brand__item:hover {
    filter: brightness(80%);
}

/* brand pc */
@media screen and (min-width: 1024px) {
    .section--brand {
        padding: 100px 15% 140px;
    }

    .Brand__list {
        display: grid;
        gap: 0 4vw;
        grid-template-columns: repeat(4, 1fr);
        margin: 0;
        padding-top: 63px;
        max-width: 1000px;
    }

    .Brand__item {
        padding-bottom: 4vw;
    }
}/* pc 1024px */


/* ===================
recruit
====================== */
.section--recruit {
    padding: 60px 7.4% 95px;
    background-image: url(../images/recruit-img.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.recruit__inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* recruit pc */
@media screen and (min-width: 1024px) {
    .section--recruit {
        padding: 120px 15% 140px;
    }
}/* pc 1024px */


