.navigation {
    position: fixed;
    z-index: 999;
    right: 0;
    top: 0;
}

/* ********** Menu ********** */
.fix-menu a {
    padding: 0;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: #cda791;
    text-decoration: none;
    font-size: inherit;
}

.fix-menu .phone {
    font-size: 1.6em;
    font-weight: 700;
}

.fix-menu .page {
    font-size: 1.6em;
    font-weight: 700;
}

.fix-menu .category {
    font-size: 1.2em;
}

/*Burger-Menu*/
.menu {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 5px 10px;
}
.menu span {
    margin: 0 auto;
    position: relative;
}

.menu span:before, .menu span:after {
    position: absolute;
    content: '';
}
.menu span, .menu span:before, .menu span:after {
    width: 30px;
    height: 4px;
    background-color: #7e7578;
    display: block;
}
.menu span:before {
    margin-top: -10px;
}
.menu span:after {
    margin-top: 10px;
}

/*Fake-Trigger*/
#sized {
    width:60px;
    height:50px;
    color:transparent;
    background-color: transparent;
    border: transparent;
}

.offcanvas-header {
    background-color: #faeee7;
}

.offcanvas-header .btn-close {
    font-size: 1.6em;
    margin-top: -0.4rem;
    margin-right: 3px;
}

/*Modal-Box*/
.modal-body.nav {
    display: flex; /* Flexコンテナとして表示 */
    justify-content: center; /* 水平方向に中央に配置 */
    height: 100%; /* 高さを100%に設定（必要に応じて調整） */
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 100%;
    height: 100vh;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    background-color: #faeee7;
}

.modal-header {
    padding: 0 10px;
    background-color: #faeee7;
    border-bottom: none;
    flex-direction: row-reverse;
}

.modal-body {
    padding: 2px 16px;
    background-color: #faeee7;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #faeee7;
    color: black;
    border-top: none;
    text-align: center;
}

.modal-footer hr {
    margin-top: 20vh;
}

.modal-footer>p {
  color: #468966
}

.modal-footer h3 {
    text-transform: none;
    font-size:4vh;

}

.close {
    color: #7e7578;
    float: left;
    font-size: 3em;
    font-weight: bold;
    opacity: 1;
    margin: -8px 10px;
}

.close:hover,
.close:focus {
    color: #B64926;
    text-decoration: none;
    cursor: pointer;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.animated {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.nav ul li a:hover{
    text-decoration: none;
    color: #B64926;
}

.nav ul li {
    display: block;
    height: 2.8em;
}

.nav ul li.blank {
    height: 1.8em;
}

.nav ul .name {
    height: 1.8em;
}

.nav ul {
    clear: both;
    width: 100%;
    text-align: center;
    padding: 0;
}

@media (min-width:768px) and (max-width:979px) {

    .nav ul {
        clear: both;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .fix-menu a {
        padding: 0;
        text-transform: uppercase;
        font-size: 3vw;
        letter-spacing: -0.05em;
    }
}

@media (max-width:767px) {

    .nav ul {
        clear: both;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .fix-menu a {
        padding: 0;
        text-transform: uppercase;
        font-size: 5vw;
        letter-spacing: -0.05em;
    }
}

@media (max-width: 480px) {

    .nav ul {
        clear: both;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .fix-menu a {
        padding: 0;
        text-transform: uppercase;
        letter-spacing: -0.05em;
    }

    .fix-menu .category {
    }

}
/* ********** Menu ********** */
