/* Titleの設定 */

.parallax_title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* width: 100vh; */
}

.parallax_title #logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.parallax_title img {
    position: absolute;
    pointer-events: none;
}

.parallax_title .img_half {
    width: 50%;
}
.parallax_title .img_third {
    width: 33%;
}

.parallax_title .img_left {
    left:0;
}
.parallax_title .img_right {
    right:0;
}
.parallax_title .img_top {
    top:0;
}
.parallax_title .img_bottom {
    bottom:0;
}
.parallax_title .img_mid {
    top:50%;
    transform: translate(0, -50%);
}

/* sloganの設定 */
.content_slogan {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content_slogan img {
    width: 100%;
}





/* slideの設定 */
.slideshow {
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
  }
  .slide{
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 1;
    font-size: 100px;
    font-family: 'Staatliches', cursive;
    align-items: center;
    justify-content: center;
  }

  .slide img{
    width: 70%;
    /* height: 70%; */
    object-fit: cover;
  }

  .active-slide{
    z-index: 10;
    display: flex;
    animation: slideIn 1s cubic-bezier(0.7, 0, 0.3, 1) 0s 1 forwards;
  }
  .prev-slide{
    display: flex;
  }
  .dot-cont{
    position: absolute;
    z-index: 11;
    bottom: 5px;
    width: 100px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
  }
  .dot{
    margin: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
  }
  .dot:hover{
    cursor: pointer;
    background: white;
  }
  .active-dot{ 
    background: rgba(255,255,255,0.9);
    animation: fadeIn 1s cubic-bezier(0.7, 0, 0.3, 1) 0s 1 forwards;
  }

/* skill showの設定 */
h1 {
    padding: 60px 0;
    color: #00c2cb;
    font-size: 45px;
    text-align: center;
}
 
.skill-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-container .image-slider {
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
}

.image-slider img {
    height: 20vh;
    object-fit: cover;
    /* width: 20vh; */
}
.image-slider img:first-child {
    margin-left: 0;
}

/* videosの設定 */
.video-container {
    width: 80%;
    height: 70vh;
    margin: 80px auto;
    align-items: center;
    justify-content: center;
}
.video-container h1 {
    padding: 60px 0;
    color: #00c2cb;
    font-size: 45px;
    text-align: center;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
}
.col {
    padding: 50px;
    width: 50%;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .parallax_title {
        margin-top: 80px;
        height: 35vh;
    }
    .content_slogan {
        height: 50vh;
    }
    .slideshow {
        height: 50vh;
    }
    .slide {
        height: 50vh;
    }
    .slide img {
        width: 100%;
    }

    .content_skill_show{
        height: 1300px;
    }
    .skill-container img{
        display: none;
    }
    .skill_title {
        display: none;
    }
    .video-container {
        width: 100%;
        height: 50vh;
        margin: 80px auto;
    }
    .col {
        width: 100%;
    }
}
   