.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}

/* .header.scrolled{
    background: #fff;
    padding-bottom: 20px;
} */

.header.active{
    background: #fff;
    padding-bottom: 20px;
}

.header__inner{
    padding-top: 35px;
}

.header__content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo{
	max-width: 243px;
}

.header__logo-link{
    display: block;
}

.header__logo-link img{
    display: block;
    width: 100%;
    object-fit: cover;
}

.header__items{
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__item{
    border: 1px solid #030049;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.header__item:nth-of-type(1){
    background: #030049;
    color: #fff;
}

.header__item:nth-of-type(1) .icon::before ,
.header__item:nth-of-type(1) .icon::after{
    background: #fff;
}

.header__item:nth-of-type(1) .icon{
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.header__item:nth-of-type(2){
    background: #fff;
}

.header__link{
    font-weight: 700;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0.8px;
    display: block;
	padding: 10px 35px;
}

.header__right{
    display: flex;
    align-items: center;
    gap: 20px;
}


/* メニュー */
.header__menu{
    width: 40px;
    height: 23px;
    position: relative;
    cursor: pointer;
}

.header__menu span{
    width: 100%;
    height: 1px;
    background: #030049;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.header__menu span:nth-child(1){
    top: 0;
}

.header__menu span:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
}

.header__menu span:nth-child(3){
    bottom: 0;
}

/* activeクラスがついたときの×印スタイル */
.header__menu.active span:nth-child(1){
    top: 50%;
    transform: translateY(-50%) rotate(-25deg);
}

.header__menu.active span:nth-child(2){
    opacity: 0;
}

.header__menu.active span:nth-child(3){
    bottom: 50%;
    transform: translateY(50%) rotate(25deg);
}

@media (max-width: 768px) {
    .header__items{
        display: none;
    }
    
    .header__right{
        display: flex;
        align-items: center;
        gap: 20px;
    }

}
/* add */
.header__dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 291px;
    margin-top: 20px;
    
}

.header__dropdown-item{
    background: #F2F2F6;
    padding: 20px;
    border-radius: 5px;
	display: block;
}

.header__dropdown-item:nth-of-type(n + 2){
    margin-top: 10px;
}

.header__dropdown-number{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0.03em;
    color: #040315;
}

.header__dropdown-body{
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.header__dropdown-title{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #040315;
}
.header__dropdown-items li:nth-of-type(n + 2){
    margin-top: 10px;
}

.header.passed-mainvisual{
    background: #fff;
    padding-bottom: 20px;
}