section.fs-l-pageMain.guide-page-wrap {
    display: flex;
    gap: clamp(20px,3.57vw,50px);
}
.guide-sidebar {
    width: 260px;
}
.guide-sidebar-inner{
    background-color: #EEEEED;
    height: auto;
    display: inline-block;
    position: sticky;
    top: 100px;
    width: 100%;
}
.guide-sidebar ul li a {
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #FFF;
    color: #333;
    position: relative;
}
.guide-sidebar ul li a::before{
    content: '';
    position: absolute;
    top: 0;
    bottom:0;
    margin: auto;
    right: 5%;
    height: 10px;
    width: 7px;
    background: url('https://oshimaya.itembox.design/item/img/oshimaya/icon_b_arrow.webp') no-repeat center center;
    display: inline-block;
    background-size: contain;
}
a:hover{
    text-decoration: none;
}
.guide-page-wrap .guide-main {
    width: calc(100% - 260px - clamp(20px,3.57vw,50px));
}
.guide-main h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
    padding-bottom: 15px;
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: 50px;
    background-color: #FFF;
    color: #333;
    text-align: left;
}
.guide-main h2:first-child {
    border-bottom: 1px solid #EAEAEA;
    margin-top: 0px;
}
.guide-main h3 {
    font-size: 1.8rem;
    font-weight: 500;
    padding-left: 15px;
    border-left: 5px solid;
    margin-bottom: 10px;
    color: #333;
    background-color: #FFF;
    border-bottom: none;
    border-color: #333;
    padding: 0 0 0 15px;
    line-height: 1.8;
}
.section-content {
    border-bottom: 1px solid #EAEAEA;
    padding: 0 0 45px;
    margin-top: 40px;
}
.guide-main p {
    font-size: 1.4rem;
    line-height: 1.8;
}
.guide-main li {
    font-size: 1.4rem;
    padding-bottom: 7px;
}
table.guide-table {
    border: 1px solid #D4D4D4;
    border-collapse: collapse;
    width: 50%;
}
table.guide-table th{
    background-color: #F7F7F7;
    text-align: left;
    font-weight: normal;
    padding: 14px;
}
table.guide-table.th-70 th{
    width: 70%;
}
table.guide-table td{
    padding: 14px;
}
table.guide-table.table-width100 {
    width: 100%;
    margin-bottom: 10px;
}
table.guide-table tr{
    border-bottom: 1px dashed #D4D4D4;
}
table.guide-table tr:last-child{
    border-bottom: none;
}
@media screen and (max-width: 960px) {
    .guide-sidebar {
        display: none;
    }
    .guide-main {
        width: 100%;
    }
    .guide-page-wrap .guide-main{
        width: 100%;
    }
    table.guide-table{
        width: 100%;
    }
}