
    @keyframes truot {
        from{
            opacity: 0;
            transform: translateX(-100%);
        }
        to{
            opacity: 1;
            transform: translateX(0%);
        }
    }
    .yuuryou-option{
        font-size: 1.8rem;
        line-height:2.5rem;
        border-radius: 10px;
        margin: auto;
        width: 1200px;
        height: fit-content;
        background-color: #37a4fe;
        padding: 40px;
    }
    .yuuryou-header{
        width: fit-content;
        color: white;
        font-size: 4rem;
        margin: auto;
        line-height: 4rem;
        margin-bottom: 4rem;
    }
    .yuuryou-option .option-title{
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        color: white;
        padding: 10px;
        animation: truot 0.6s ease-in-out;
        text-align: center;

    }
    .yuuryou-option .menu-box{
        margin: 10px 0px;
        margin: auto;
    }
    .yuuryou-option input {
        display: none;
    }
    .yuuryou-option label{
        margin: auto;
        margin-top: 20px;
        margin-bottom: 5px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        position: relative;
        color: white;
        cursor: pointer;
        display: flex;
        font-family: 'Shippori Mincho B1', serif;
        width: fit-content;
        height: fit-content;

        border: solid 2px white;
        padding: 4px;
        transition: transform 0.2s ease;
        animation: truot 0.6s ease-in-out;
    }
    .yuuryou-option label:hover{
        transform: translateX(10px);
    }
    .yuuryou-option .icon{
        padding: 0.7px;
    }
    .yuuryou-option .title{
        line-height: 28px;
        height: fit-content;
        padding:0px 8px;
        border-right: solid 1px rgb(222, 220, 220);

    }
    .yuuryou-option .title-cap{
        width: fit-content;
        margin-left: 10px;
    }
    .yuuryou-option .item-box{
        background-color: white;
        border-radius: 10px;
        margin-top: 10px;
        margin-left: 10px;
        width: fit-content;
        height: 0px;
        margin: auto;
        padding-left: 20px;
        padding-right: 20px;
        overflow: hidden;
        transition: all 0.2s ease-in;
    }
    .yuuryou-option .item-box a{
        text-decoration: none;
        margin: auto;
        margin-top: 15px;
        margin-bottom: 15px;
        color: black;
        display: block;
        padding: 10px;
        border-radius: 10px;
        width: 100%;
        background-color: rgb(236, 236, 236);
    }
    .yuuryou-option .item-box a:hover{
        color: #008cff;
    }
    .yuuryou-option .caption{
        font-size: 15px;
        max-width: 60rem;
        color: gray;
    }
    .yuuryou-option .a{
        color: aqua;
    }
    .yuuryou-option .icon{
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        width: 20px;
        height: 20px;
        margin: auto;
        transition: all 0.2s ease-in;
    }
    .yuuryou-option .icon div{
        margin-left: 1px;
        height: 1.5px;
        width: 10px;
        background-color: white;
    }
    .yuuryou-option .icon div:first-child{
        margin-top: 3px;
        transform: rotate(35deg);
    }
    .yuuryou-option .icon div:last-child{
        transform: rotate(-35deg);
        margin-bottom: 5.5px;
    }
    .yuuryou-option input[type="checkbox"]:checked ~ label{
        transform: translateX(10px);
    }
    .yuuryou-option input[type="checkbox"]:checked ~ label .icon{
        transform: rotate(90deg);
    }
    .yuuryou-option input[type="checkbox"]:checked ~ .item-box{
        height: auto;
    }
