.header-contens {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 83.2px;
    width: 100%;
    display: none;
    background-color: #e8e5e2;
}

@media (max-width: 780px) {
    .header-contens{
        position: fixed;
        top: 0;
        z-index: 8000;
        display: block;
        height: calc((130 / 750) * 100vw);
    }
}

.header-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 105px;
    z-index: 9999;
}

@media (max-width: 780px) {
    .header-logo {
        width: calc((120 / 750) * 100vw);
    }
}

.hamburger {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 14px;
    cursor: pointer;
    z-index: 9999;
}

@media (max-width: 780px) {
    .hamburger {
        width: calc((90 / 780) * 100vw);
        height: calc((20 / 780) * 100vw);
        right: calc((20 / 780) * 100vw);
    }
}

.hamburger span {
    display: inline-block;
    transition: all .5s;
    position: absolute;
    height: 1px;
    background: #353131;
    width: 100%;
    left: 0;
}

.hamburger span:nth-of-type(1) {
    top: 0px;
}

.hamburger span:nth-of-type(2) {
    bottom: 0px;
}

.hamburger.active span:nth-of-type(1) {
    top:0px; 
    transform: translateY(6px) rotate(-16deg);
    width: 100%;
}

@media (max-width: 780px) {
    .hamburger.active span:nth-of-type(1) {
        transform: translateY(calc((9 / 780) * 100vw)) rotate(-16deg);
    }
}

.hamburger.active span:nth-of-type(2){
    bottom: 0px;
    transform: translateY(-6px) rotate(16deg);
    width: 100%;
}

@media (max-width: 780px) {
    .hamburger.active span:nth-of-type(2){
        transform: translateY(calc((-9 / 780) * 100vw)) rotate(16deg);
    }
}


.globalMenuSp {
  position: fixed;
  inset: 0;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  background-color: #e8e5e2;
  z-index: 5000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .3s ease, visibility 0s linear .3s;

  font-family: "yuria-idol-en", sans-serif;
}


@media (max-width: 780px) {
    .globalMenuSp {
        position: fixed;
    }
}


.globalMenuSp.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  /* visibility遅延を消す（開いた瞬間に可視） */
  transition: opacity .3s ease, visibility 0s;
}


.globalMenuSp-container {
  /* margin-top: 120px; */
  width: fit-content;
  padding-left: 60px;
  width: 100%;
}

@media (max-width: 780px) {
    .globalMenuSp-container {
        padding: calc((120 / 480) * 100vw) 0 calc((180 / 480) * 100vw);
        padding-left: calc((60 / 480) * 100vw);
    }
}   

.globalMenuSp-wrapper {
    opacity: 0;
    transform: translateX(-20px);
    /* ★ デフォルト（非active）は opacity だけ */
    transition: all .5s ease;
}

@media (max-width: 780px) {
    .globalMenuSp-wrapper {
        transform: calc((-20 / 480) * 100vw);
    }
}   

/* ★ active のときだけ transform も動かす */
.globalMenuSp.active .globalMenuSp-wrapper {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease;
}


.sp-content-left-list {
    margin-bottom: 60px;
}

@media (max-width: 780px) {
    .sp-content-left-list {
        margin-bottom: calc((60 / 480) * 100vw);
    }
}  

.sp-content-left-list li.daymonth {
    font-size: 40px !important;
}

@media (max-width: 780px) {
    .sp-content-left-list li.daymonth {
        font-size: calc((40 / 480) * 100vw);
    }
}  

.globalMenuSp .sp-content-left-list li.pd {
    padding-left: 13px;
}

@media (max-width: 780px) {
    .globalMenuSp .sp-content-left-list li.pd {
        padding-left: calc((13 / 480) * 100vw);
    }
} 

.globalMenuSp-container .sp-content-left-list li {
    font-size: 26px;
    margin-bottom: 30px;
}

@media (max-width: 780px) {
    .globalMenuSp-container .sp-content-left-list li {
        font-size: calc((26 / 480) * 100vw);
        margin-bottom: calc((30 / 480) * 100vw);
    }
} 

.globalMenuSp .sp-content-left-sns li {
    font-size: 14.08px;
    font-family: "optima", sans-serif;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 780px) {
    .globalMenuSp .sp-content-left-sns li {
        font-size: calc((14.08 / 480) * 100vw);
        margin-bottom: calc((20 / 480) * 100vw);
    }
} 

.globalMenuSp .sp-content-left-sns li::before {
    display: inline-block;
    content: "";
    margin-bottom: 1.28px;
    margin-right: 9.6px;
    width: 6.4px;
    height: 6.4px;
    background-color: #353131;
    border-radius: 100%;
}

@media (max-width: 780px) {
    .globalMenuSp .sp-content-left-sns li::before {
        margin-right: calc((9.6 / 480) * 100vw);
        margin-bottom: calc((1.28 / 480) * 100vw);
        width: calc((6.4 / 480) * 100vw);
        height: calc((6.4 / 480) * 100vw);
    }
}