.video-wrapper {
    position: relative;
}

#menu {
    width: 100%;
    background: #796e6e;
}

.breadcrumb-001 {
    height: 35px;
    display: flex;
    gap: 0 22px;
    list-style: none;
    padding: 0;
    margin: 0 20px;
    font-size: .9em;
}

.breadcrumb-001 li {
    display: flex;
    align-items: center;
}

.breadcrumb-001 li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M11.7%207.5%204%2013.8v6.8c0%20.4.3.7.7.7h4.7c.4%200%20.7-.3.7-.7v-4c0-.4.3-.7.7-.7h2.7c.4%200%20.7.3.7.7v4c0%20.4.3.7.7.7h4.7c.4%200%20.7-.3.7-.7v-6.8l-7.7-6.3h-.9zm12.1%204.4L20.3%209V3.2c0-.3-.2-.5-.5-.5h-2.3c-.3%200-.5.2-.5.5v2.9L13.3%203c-.7-.6-1.8-.6-2.5%200L.2%2011.8c-.2.2-.3.5-.1.7l1.1%201.3c.2.2.5.2.7.1l9.8-8.1h.6l9.8%208.1c.2.2.5.1.7-.1l1.1-1.3c.2-.2.1-.5-.1-.6z%22%20style%3D%22fill%3A%23fbf9f9%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb-001 li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #fbf9f9;
    border-right: 1px solid #fbf9f9;
    content: '';
}

.breadcrumb-001 a {
    color: #fcfcfc;
    text-decoration: none;
}

.accordion-005 {
    max-width: 1300px;
    margin: 30px auto;
}

.accordion-005:not([open]) {
    margin-bottom: 7px;
}

.accordion-005 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-left: 5px solid #909292;
    background-color: #fcfcfd;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion-005 summary::-webkit-details-marker {
    display: none;
}

.accordion-005 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #cccccd;
    border-right: 3px solid #cccccd;
    content: '';
    transition: transform .3s;
}

.accordion-005[open] summary::after {
    transform: rotate(225deg);
}

.accordion-005 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 2em 2em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-005[open] p {
    transform: none;
    opacity: 1;
}

#grid {
    width: 100%;
    text-align: center;
    margin-top: 100px;
    font-size: x-large;
}

.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 6%;
    margin-bottom: 50px;
}

#botan {
    margin: 50px 0;
}

.button-002 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    margin:0 auto;
    padding: .9em 2em;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #333333;
    font-weight: 600;
    font-size: 1em;
}

.button-002:hover {
    background-color: #909292;
}

.button-002 a {
    width: 100%;
}

/* -------------------------------------------------------------------mobile-------------------------------------------------------------------------- */
@media (max-width: 500px) {
    .breadcrumb-001 {
        display: none;
    }
    
    .grid {
        gap: 7px;
        grid-template-columns: repeat(3,1fr);
    }

    #grid {
        margin-top: 40px;
        font-size: medium;
    }

    .griditem p {
        font-size: x-small;
    }

    .button-002 {
        width: 50%;
    }
    
}