@charset "utf-8";


main {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 50px;
    letter-spacing: 2px; 
}
section {
    margin: 60px 0;
}
.section__title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.h3__icon {
    width: 4%;
    margin-right: 20px;
}
h3 {
    font-size: 1.6rem;
    color: #9d5b8b;
}
.section__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section__slider {
    width: 60%;
}
table {
    width: 38%;
    padding-top: 30px;
    font-size: 1.1rem;
    background: rgb(151,88,133,0.2);
}
table tr {
    line-height: 2;
    border-bottom: 1px solid rgb(151,88,133,0.4);
}
table tr:last-child {
    border-bottom: none;
}
table th,table td {
    padding: 20px;
}
table th {
    width: 30%;
    background: rgb(151,88,133,0.4);
}



/*スライダー矢印*/
.section__slider .thumb-item {
    position: relative;
}
.section__slider .slick-prev,
.section__slider .slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(0,0,0,0.4) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 0 !important;
    transition: background 0.3s;
}
.section__slider .slick-prev:hover,
.section__slider .slick-next:hover {
    background: rgba(0,0,0,0.7) !important;
}
.section__slider .slick-prev {
    left: 10px !important;
}
.section__slider .slick-next {
    right: 10px !important;
}
.section__slider .slick-prev:before,
.section__slider .slick-next:before {
    display: none !important;
}
.section__slider .slick-prev span,
.section__slider .slick-next span {
    color: #fff;
    font-size: 1.2rem !important;
    display: block !important;
    line-height: 1;
}

@media screen and (max-width: 1028px){
    h3 {
        font-size: 1.4rem;
    }
    table {
        font-size: 0.9rem;
    }
    table th,table td {
    //    padding: 20px 20px 10px 20px ;
    }
}

@media screen and (max-width: 770px){
    main {
        padding-bottom: 30px;
    }
    .h3__icon {
        width: 4%;
        margin-right: 10px;
    }
    h3 {
        font-size: 1.1rem;
    }
    section {
        margin: 30px 0;
    }
    .section__title {
        margin-bottom: 10px;
    //    background: rebeccapurple;
    }
    .section__content {
        flex-direction: column;
    //    background: yellow;
    }
    .section__slider {
        width: 100%;
        margin-bottom: 5px;
    }
    table {
        width: 100%;
        font-size: 0.8rem;
    }
    table th,table td {
        padding: 10px;
    }
    table td {
        padding-left: 20px;
    }
    .responsive__off {
        display: none;
    }
}

@media screen and (max-width: 650px){
    h3 {
        font-size: 0.7rem;
    }
    .h3__icon {
        margin-right: 5px;
    }
    .section__title {
        align-items: flex-end;
    }
    table {
        font-size: 0.5rem;
    }
    table td {
        padding-left: 10px;
    }
    
}