<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.Wrapper{
    height: 350px;
    width: 100%;
    overflow: auto;
    -ms-overflow-style: none;
    /*IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
}
.Wrapper::-webkit-scrollbar {  /* Chrome, Safari 対応 */
    display:none;
}

.AccordionBlock{
    border-color: #f3f3f3;
    border-style: solid;
    border-width: 1px;
    background-color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

.AccordionTitle{
    padding: 5px;
    display: flex;
}
.AccordionTitle .icon{
    display: inline-block;
    margin-left: auto;
}

.AccordionContents{
    font-size: 17px;
    padding-top: 10px;
}

/*縦横中央揃え*/
.display-center{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
    
.Btn{
    padding: 10px;
    margin: 10px auto 10px auto;
    width: 80%;
    background-color: #fb8c00;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}
.BtnInactive{
    padding: 10px;
    margin: 10px auto 10px auto;
    width: 80%;
    background-color: #fcf5db;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}
.Btn:hover{
    background-color: #ffda95;
    text-decoration: none;/* リンクに出てくる下線を無効にする*/
    transition: 1s;/*ふわっとさせる指定*/
}

.BtnSelect{
    padding: 10px;
    margin: 10px;
    width: 100px;
    height:auto;
    background-color: #ffc800;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}
.BtnSelect:hover{
    background-color: #ffda95;
    text-decoration: none;
    /* リンクに出てくる下線を無効にする*/
    transition: 0.5s;
    /*ふわっとさせる指定*/
}
.BtnOnSelect{
    padding: 10px;
    margin: 10px;
    width: 100px;
    height:auto;
    background-color: #3a77c7;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}
.BtnOnSelect:hover{
    background-color: #6393d2;
    text-decoration: none;/* リンクに出てくる下線を無効にする*/
    transition: 1s;/*ふわっとさせる指定*/
}

.BtnDisable{
    padding: 10px;
    margin: 10px;
    width: 100px;
    height: auto;
    background-color: #c2c2c2;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}
.FeeAgeContents{
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    height: 80px;
}

.TotalInfo{
}</pre></body></html>