/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* General styling */
.header {
    padding: 20px;
}

.header__inner {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}

.header__title {
    margin: 0;
    font-size: 24px;
}

.header__nav {
    display: flex;
    margin-top: 38px;
    justify-content: center;
}

.header__menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu li a {
    color: #43B869;
    text-decoration: none;
    font-size: 1rem;
    font-family: "Zen Old Mincho", serif;
    display:inline-block;
    width: 100%;
    transition: .5s;
}
.header__menu li a:hover{
    color:#333;
}
/* Mobile menu hidden by default */
.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #F6FAEE;
    transition: right 0.3s ease-in-out;
    z-index: 10;
}
.mobile-menu__wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.mobile-menu__items {
    list-style: none;
    margin-top: 50px;
    text-align: center;
}

.mobile-menu__items li {
    margin-top: 24px;
}

.mobile-menu__items li a {
    color: #43B869;
    text-decoration: none;
    font-size: 20px;
}
.mobile-menu__title img{
    margin: auto;
    height: auto;
    max-width: 180px;
}
/* Hamburger icon */
.header__hamburger {
    display: block;
        position: absolute;
        right: 20px;
        z-index: 99;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 29px;
    height: 22px;
}

.hamburger-icon .bar {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #43B869;
    transition: 0.3s;
}

/* X mark transformation */
.hamburger-icon.active .bar:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
}

.hamburger-icon.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active .bar:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 10px;
}
.header__text{
    color: #43B869;
}
.header__wrapper{
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.header__sns{
    margin-right: 50px;
}
.header__text{
    display:none;
}

.mobile-menu.active {
    right: 0;
}
.head__visual img{
    width:auto;
    height: 56px;
    object-fit: contain;
}
/* Responsive Design */
@media (min-width: 768px) {
    .header{
        padding:0 clamp(2rem,4.5vw,60px);
        height: 90px;
    }
    .header__wrapper{
        justify-content: end;
    }
    .header__text{
        display:block;
    }
    .header__hamburger {
       display:none;
    }


    .header__inner {
        display: flex;
        justify-content: space-between;
        width: 100%;
        justify-content: end;
        height: -webkit-fill-available;
        height: -moz-available;
    }
    .header__title img{
        object-fit: contain;
        height: 80px;
    }
   
    .header__sns{
        padding-top: 6px;
    }
    .header__arrowArea{
        margin-top: 56px;
    }
    .header__arrowArea p{
        text-align: center;
        position: relative;
        padding-bottom: 40px;
        color:#43B8697D;
        font-family: "Zen Old Mincho", serif;
    }
    @keyframes arrow-bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-10px); /* 矢印が上に移動 */
        }
        60% {
            transform: translateX(-50%) translateY(0px); /* 矢印が少し下に戻る */
        }
    }
    
    .header__arrowArea p:before {
        content: "";
        display: inline-block;
        background-image: url(../img/arrow.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 38px;
        height: 38px;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        animation: arrow-bounce 2s infinite; /* アニメーションを追加 */
    }
    
    .header__text{
        padding-top: 6px;
    }
}
/* ===============================================
# カレンダー文字
=============================================== */
.nHqeVd{
    font-size: 12px;
}