.text_yugo{
    font-family:'游ゴシック体', 'Yu Gothic', YuGothic,'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ ゴシック',sans-serif;
}
h2 span{
    display: block;
}
.bg_beige{
    background-color: #fff9f1;
}
.text_green{
    color: #7e8477;
}
.nowrap{
    white-space: nowrap;
}
/* フォントサイズ */
.text48{
    font-size: .48rem;
}
.text24{
    font-size: .24rem;
}
.text21{
    font-size: .21rem
}
@media screen and (max-width: 768px) {
    .text48{
        font-size: .34rem;
    }
    .text24{
        font-size: .2rem;
    }
    .text21{
        font-size: .19rem;
    }
}
@media screen and (max-width: 599px) {
    .text48{
        font-size: .22rem;
    }
    .text24,.text21{
        font-size: .16rem;
    }
}

.results-box{
    display: flex;
    gap: 5%;
}
.results-box > div{
    width: 50%;
}
.results-box table{
    width: 100%;
    border-top: 1px solid #a0a0a0;
    font-family:'游明朝体', 'Yu Mincho', YuMincho, 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro','ＭＳ Ｐ明朝','ＭＳ 明朝',serif;
}
.results-box table tr{
    border-bottom: 1px solid #a0a0a0;
    font-size: .18rem;
    font-weight: bold;
}
.results-box table th{
    background-color: #6b7263;
    color: #fff;
    text-align: left;
    padding: 10px;
    width: 103px;
}
.results-box table td {
    color: #7e8477;
    padding: 10px 10px 10px 3%;
}
@media screen and (max-width: 768px) {
    .results-box > div:nth-child(1) >table tr:last-child{
        border-bottom: none;
    }
    .results-box{
        flex-direction: column;
        gap: 0;
    }
    .results-box > div{
        width: 100%;
    }
}
@media screen and (max-width: 599px) {
    .results-box table tr{
        font-size: .14rem;
    }
}



/* スライダー */
.resluts-slider-frame{
    max-width: 800px;
    margin-inline: auto;
}
.resluts-slider1 .slick-slide{
    height: auto!important;
}
.resluts-slider2 {
    max-width: 100%;
}

.resluts-slider2__item {
    width: calc(100% / 7) !important; /* 7列 */
}
.resluts-slider2 .slick-track {
    transform: unset !important;
    display: flex;
    flex-wrap: wrap;
}
.resluts-slider2__item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    opacity: .4;
    transition: opacity .3s;
    padding: 0 6% 6% 0; /* 隙間　*/
}
.resluts-slider2__item:nth-child(8) img,.resluts-slider2__item:nth-child(9) img,.resluts-slider2__item:nth-child(10) img,.resluts-slider2__item:nth-child(11) img,.resluts-slider2__item:nth-child(12) img,.resluts-slider2__item:nth-child(13) img,.resluts-slider2__item:nth-child(14) img{
    padding-bottom: 0!important;
}
.resluts-slider2__item:nth-child(7) img,.resluts-slider2__item:nth-child(14) img{
    padding-right: 0%!important;
}
.resluts-slider2 .slick-current img {
    opacity: 1;
}
.resluts-slider1 .slick-list {
    overflow: hidden;
}

.resluts-slider1__item img {
    display: block;
    width: 100%;
    height: auto;
}
.resluts-slider1 button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.resluts-slider1 button:focus {
    outline: none;
}

.resluts-slider1 button.arrow-common {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    width: 14%;
    padding-top: 6%;
    cursor: pointer;
    z-index: 5;
}

.resluts-slider1 button.arrow-prev {
    background-image: url(../images/results/prev.png);
    left: 3%;
}
.resluts-slider1 button.arrow-next {
    background-image: url(../images/results/next.png);
    right: -3%;
}