header {
    padding: 37px 38px 23px;
    background-color: #fff !important;
    position: relative;
    z-index: 100;
    position: fixed;
    width: 100%;
    box-shadow: 1px 1px 4px #d8d8d8;
}

.header-warp {
    display: flex;
    justify-content: space-between;
}

.head-logo {
    display: block;
    width: 350px;
}


.header-menu-list {
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
}

.header-nav li {
    position: relative;
}


.header-nav a {
    font-size: .16rem;
    font-weight: 500;
    color: #000;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    display: inline-block;
}

.header-nav__item:hover::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-main);
}

.dropdown-list a{
    position: relative;
    white-space: nowrap;
}

.dropdown-list a:hover::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-main);
}

.head-nav-contact a {}



.header-nav {
    position: relative;
    width: 790px;
    max-width: 62%;
    margin-top: 2px;
}

.header-nav ul {
    display: flex;
    justify-content: space-between;
}

.header-nav .dropdown {
    position: relative;
    display: inline-block;
    /*padding-bottom: 24px;*/
}


.header-nav .dropdown-content {
    padding: 22px 0 0;
    position: absolute;
    left: 50%;
    top: 31px;
    min-width: 270px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, pointer-events 0s 0.2s;
    transform: translate(-50%, 0);
}

.header-nav .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-list {
    padding: 45px 33px 20px 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    /* border: 1px solid #dadada; */
    background-color: rgba(234, 248, 238, 0.9);
}

.dropdown-list::before {
    content: "";
    position: absolute;
    top: -8px;
    /* 親要素の上に出す */
    left: 50%;
    transform: translateX(-50%);
    border-width: 18px;
    /* 三角の大きさ */
    border-style: solid;
    border-color: transparent transparent #eaf8ee transparent;
    /* ↑ 上が透明、下が背景色 → 上向きの三角形になる */
}

.nav-company__list {
    padding: 45px 33px 20px;
}

.nav-property__list {
    padding: 45px 20px 20px 33px;
}

.dropdown-link {
    color: black;
    text-decoration: none;
    display: block;
    margin-bottom: 22px;
}

.hed-right__nav .dropdown-text {
    margin-bottom: 10px;
    text-align: left;
    font-size: .14rem;
}


.head-nav-contact a {
    border-radius: 5px;
    background-color: var(--color-main);
    color: #fff;
    padding: 0px 12px;
}

.head-nav-contact a::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../images/common/hover-effect.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.head-nav-contact a:hover {
    opacity: 1;
}

.head-nav-contact a:hover::before {
    animation: blink-animation 1s;
}

@keyframes blink-animation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@media screen and (max-width:1050px) {
    .header-nav {
        display: none;
    }

    header {
        padding: 23px 19px 18px;
    }

    .head-logo {
        width: 243px;
    }
}




/* ナビゲーション */

#toggle-box {
    position: relative;
    width: 70%;
    height: 100%;
    cursor: pointer;
    margin: 0px auto 0;
    border-radius: 9px;
}


#toggle-box>span {
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    background: #008444;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box>span:nth-child(1) {
    top: 0px;
}

#toggle-box>span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}

#toggle-box>span:nth-child(3) {
    bottom: 0px;
}

#toggle {
    position: fixed;
    right: 20px;
    top: 25px;
    width: 50px;
    margin: 0 auto 0px;
    height: 18px;
    justify-content: center;
    align-items: center;
    z-index: 1000;

    display: none;
}


#nav-content {
    z-index: 900;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-size: cover;
    background-repeat: no-repeat;
}

#nav-content ul {
    list-style: none;
}

#nav-content a {
    display: block;
    color: #000;
    text-decoration: none;
    transition: opacity .6s ease;
    font-size: .16rem;
    padding: 13px 41px;
    font-weight: 500;
}

.js-accordion-move {
    padding: 16px 0;
}

#nav-content a:hover {
    opacity: 0.6;
}

.is-open {
    overflow: hidden;
}

.is-open #toggle-box {
    z-index: 1000;
}

.is-open #toggle-box>span {
    background: #008444;
    /* width: 100%; */
    z-index: 3000;
}

.is-open #toggle-box>span:nth-child(1) {
    top: 50%;
    transform: rotate(40deg) translatey(-50%);
    width: 100%;
}

.is-open #toggle-box>span:nth-child(3) {
    width: 0;
}

.is-open #toggle-box>span:nth-child(2) {
    top: 50%;
    transform: rotate(-40deg) translatey(-50%);
    width: 100%;
}

#nav-content {
    padding: 20px;
    z-index: 900;
    overflow: auto;
    width: 100%;
    height: 100%;
    color: #000;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-color: #EAF8EE;
}

.is-open #nav-content {
    z-index: 999;
    transform: translateX(0);
}

.spnav-logo__link {
    width: 247px;
}

.spnav-logo__img {
    width: 100%;
}

.is-open #nav-content {
    z-index: 999;
    transform: translateX(0);
}

.sp-nav-li {
    border-bottom: solid 1px #008444;
}

.sp-nav-li:first-of-type {
    border-top: solid 1px #008444;
}

.sp-nav-a {
    padding: 14px 41px;
    font-weight: 600;
}

#nav-content nav {
    padding: 57px 17px 30px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}


.effect-accordion-menu {
    margin: 70px auto 0px;
    max-width: 300px;
    width: 100%;
}

.effect-accordion-menu__title {
    padding: 13px 42px;
    cursor: pointer;
    position: relative;
    color: #008444;
    font-weight: 600;
    font-size: .16rem;
}

.effect-accordion-menu__title:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 2px;
    width: 20px;
    background: #008444;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}

.effect-accordion-menu__title:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 2px;
    width: 20px;
    background: #008444;
    transition: all .3s ease-in-out;
}

.effect-accordion-menu__title.open:before {
    transform: rotate(180deg);
}

.effect-accordion-menu__title.open:after {
    opacity: 0;
}


.effect-accordion-menu__contents {
    display: none;
    margin-bottom: 22px;
}

.effect-accordion-menu__list {
    border-bottom: solid 1px #000;
    font-weight: 500;
}


.sp-navlogo__img {
    width: 243px;
    padding: 0 !important;
}

.effect-accordion-menu__contents li a {
    padding-left: 20px;
    padding: 5px 20px 5px 70px!important;
}


@media screen and (max-width:1050px) {
    .header-nav {
        display: none;
    }

    header {
        padding: 23px 19px 18px;
    }

    .head-logo {
        width: 243px;
    }

    #toggle{
        display: block;
    }
}