@charset "utf-8";

.header__item {
    mix-blend-mode: normal;
}

.logo__PC {
    display: none;
}

.logo__SP {
    display: block;
    width: 55px; 
    height: 80px;
    background-image: url('/wp-content/themes/akari_takahashi_site/assets/images/logo-white.png');
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}


.hamburger__line span {
    background-color: #fff;
    transition: all 0.4s;
}

.hamburger__menu {
    color: #fff;
    transition: all 0.4s;
}

.hamburger__line.is-active span {
    background-color: var(--primary-black);
}

.hamburger__menu.is-active {
    color: var(--primary-black);
}

.slideshowPC,
.slideshowSP {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshowPC img,
.slideshowSP img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshowPC img.active,
.slideshowSP img.active {
    opacity: 1;
    z-index: 1;
}

.slideshowSP {
    /* padding-top: 112px; */
    overflow: hidden;
}

.gradient__SP {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    width: 100%;
    height: 112px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.header.is-active .logo__SP {
    background-image: url('/wp-content/themes/akari_takahashi_site/assets/images/logo-Photoroom.png');
}

/* 表示切り替え */
@media screen and (min-width:320px) and (max-width:1023px) {
    .slideshowPC {
        display: none;
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .header.is-active .logo__SP {
    background-image: url('/wp-content/themes/akari_takahashi_site/assets/images/logo-white.png');
  }

}


@media screen and (min-width:1024px) {
    .hamburger__line span {
        background-color: var(--primary-black);
    }

    .hamburger__menu {
        color: var(--primary-black);
    }

    .logo__SP {
        display: none;
    }

    .logo__PC {
        width: 55px;
        display: block;
        margin: 0 auto;
        height: 100%;
    }

    .gradient__SP {
        display: none;
    }

    .slideshowSP {
        display: none;
    }

    .slideshowPC {
        justify-content: center; 
        align-items: center;
        padding: 0 var(--contentPaddingPC); 
        box-sizing: border-box;
    }

    .slideshow__wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .slideshow__wrapper img.active {
        opacity: 1;
        z-index: 1;
    }

}
