@import "./import.css";

/*---------------------------
result_title
----------------------------*/
.result_title_content {
    width: 100%;
    height: 0;
    padding-top: 30%;
    position: relative;
}

.result_title_content > a,
.result_title_content > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header_thumbnail,
.header_default,
.result_title_content > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header_thumbnail {
    display: none;
}

.play_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.play_btn > img {
    width: 20vw;
    height: 40%;
    object-fit: contain;
    transform: translateY(-60px);
}

@media screen and (max-width: 640px) {
    .result_title_content {
        padding-top: 56.25%;
    }

    .header_thumbnail {
        display: block;
    }

    .header_default {
        display: none;
    }

    .play_btn>img {
        width: 40vw;
        height: 60%;
        transform: translateY(0);
    }
}

/*---------------------------
result_content
----------------------------*/
.result_content_wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.result_overview {
    background-color: var(--site-white-color);
    width: 100%;
    transform: translateY(-120px);
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .play_btn > img {
        transform: translateY(0);
    }
    .result_overview {
        transform: translateY(0);
        border-radius: 0;
    }
}

.result_header {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
}

.prev_btn_block {
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 1.75rem;
    left: 2rem;
}

.prev_btn_block:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.match_date {
    flex: 1;
    padding-right: 32px;
    text-align: center;
    color: var(--site-text-color);
    font-size: 1.1rem;
}

@media screen and (max-width: 640px) {
    .result_overview {
        padding: 1rem;
    }

    .result_header {
        order: -1;
        padding-bottom: 0.2rem;
    }

    .prev_btn_block {
        width: 20px;
        height: 20px;
        top: 1rem;
        left: 1rem;
    }

    .match_date {
        font-size: 0.9rem;
        padding-right: 20px;
    }
}

/*---------------------------
score
----------------------------*/
.score_wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    gap: 1.5rem;
    padding: 1rem;
}

.team_info_block a {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    text-align: left;
    text-decoration: none;
    transition: .2s;
}

.team_info_block.home a {
    flex-direction: row-reverse;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .team_info_block a,
    .team_info_block.home a {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 640px) {
    .score_wrapper {
        padding: 1rem 0;
        gap: 0.5rem;
    }
}

.team_info_block a:hover {
    cursor: pointer;
    opacity: 0.6;
}

.team_emblem {
    width: 56px;
    height: 56px;
}

.team_emblem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team_name {
    flex: 1;
    font-size: 1.2rem;
    color: var(--site-text-color);
    font-weight: bold;
    letter-spacing: 1px;
    transition: .2s;
}

.total_score_block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.total_score_block .score {
    padding: 12px 16px 16px;
    font-size: 2rem;
    line-height: 2rem;
    border-radius: 3px;
    color: var(--site-white-color);
    font-weight: bold;
    background-color: var(--kyushu-base);
    &.gunma {
        background-color: var(--gunma-base);
    }
    &.tochigi {
        background-color: var(--tochigi-base);
    }
}

.score_detail {
    color: var(--site-gray-color);
    padding: 4px 12px;
    font-size: 0.9rem;
}

.score_detail span {
    display: inline-block;
    font-size: 0.7rem;
    vertical-align: 4%;
    width: 56px;
}

.score_detail:nth-child(2):not(:last-child) {
    border-bottom: 1px dotted var(--site-gray-color);
}

@media screen and (max-width: 640px) {
    .team_info_block a,
    .team_info_block.home a {
        gap: 0.1rem;
    }

    .team_name {
        font-size: 0.7rem;
        letter-spacing: 0;
        line-height: 0.9rem;
        text-align: center;
    }
    
    .total_score_block {
        gap: 0.2rem;
    }

    .total_score_block .score {
        padding: 6px 12px 8px;
        font-size: 1.2rem;
        line-height: 1.4rem;
    }

    .score_detail_block {
        padding: 4px;
    }

    .score_detail {
        padding: 0;
        font-size: 0.7rem;
    }

    .score_detail span {
        width: 26px;
        font-size: 0.5rem;
    }
}

/*---------------------------
goals
----------------------------*/
.goals_wrapper {
    width: 100%;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.goals_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.goals_block.home {
    align-items: flex-end;
}

.goal_info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.goals_block.home .goal_info {
    flex-direction: row-reverse;
}

.goal_icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.goal_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.goal_time, .goal_name {
    font-size: 1rem;
    color: var(--site-text-color);
}

@media screen and (max-width: 640px) {
    .goals_wrapper {
        padding: 0.5rem 0;
        gap: 1rem;
    }

    .goal_info {
        gap: 8px;
    }

    .goal_icon {
        width: 12px;
        height: 12px;
    }

    .goal_time, .goal_name {
        font-size: 0.7rem;
        line-height: 0.9rem;
    }
}

.mvp_wrapper {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 1.3rem;
    align-items: center;
    margin: 0.5rem 0;
}

.mvp_icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mvp_player {
    text-align: right;
    font-size: 1.05rem;
    font-weight: bold !important;
    letter-spacing: 0.6px;
    color: var(--kyushu-base);
}

.mvp_player:last-child {
    text-align: left;
}

@media screen and (max-width: 640px) {
    .mvp_wrapper {
        gap: 1rem;
        grid-template-columns: 1fr 48px 1fr;
        margin: 0 0 0.3rem;
    }

    .mvp_player {
        font-size: 0.9rem;
    }
}


/*---------------------------
match_detail
----------------------------*/
.match_detail_wrapper {
    width: 90%;
    margin: 1rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--site-off-white-color);
}

.match_detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--site-gray-color);
    font-size: 0.9rem;
}

.match_detail:first-of-type {
    margin-bottom: 12px;
}

.match_detail_icon {
    width: 20px;
    height: 20px;
}

.match_detail_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media screen and (max-width: 640px) {
    .match_detail_wrapper {
        order: -1;
        width: 100%;
        padding: 0 0 0.5rem;
        margin: 0;
        border-top: none;
    }

    .match_detail {
        font-size: 0.7rem;
        line-height: 0.9rem;
    }

    .match_detail:first-of-type {
        display: none;
    }

    .match_detail p {
        text-align: left;
    }

    .match_detail_icon {
        width: 16px;
        height: 16px;
    }
}

/*---------------------------
result_details
----------------------------*/
.result_details {
    width: 100%;
    margin-top: -104px;
    padding: 1.5rem;
}

@media screen and (max-width: 1100px) {
    .result_details {
        margin-top: 0;
    }
}

.photo_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
}


.group_photo {
    width: 50%;
    height: 0;
    padding-top: calc( 56.25% / 2 );
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    border: 1px solid var(--site-off-white-color);
}

@media screen and (max-width: 640px) {
    .result_details {
        padding: 0.7rem;
    }

    .photo_wrapper {
        gap: 0.7rem;
    }

    .group_photo {
        border-radius: 2px;
    }
}

.group_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/*---------------------------
line-ups
----------------------------*/
.lineups_wrapper,
.appendix_wrapper {
    width: 100%;
}

.lineups_wrapper h2,
.appendix_wrapper h2 {
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin: 3rem 0 1rem;
    color: var(--site-text-color);
    text-align: left;
}

@media screen and (max-width: 1100px) {
    .lineups_wrapper h2,
    .appendix_wrapper h2 {
        margin: 2rem 0 1rem;
        font-size: 1.1rem;
        line-height: 1.1rem;
    }
}

.lineups_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.lineups_info {
    background-color: var(--site-white-color);
    border-radius: 3px;
    overflow: hidden;
}

.lineups_info .team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: var(--site-off-white-color);
}

.lineups_info .team img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.lineups_info .team p {
    font-size: 1rem;
    color: var(--site-text-color);
}

@media screen and (max-width: 768px) {
    .lineups_info .team img {
        width: 32px;
        height: 32px;
    }

    .lineups_info .team p {
        font-size: 0.9rem;
    }
}

.lineups {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 28px;
}

.lineups li {
    font-size: 1rem;
    line-height: 1rem;
    list-style: none;
    text-align: left;
    display: flex;
}

.lineups li p {
    width: 48px;
    color: var(--site-gray-color);
}

.lineups li > p:nth-of-type(3) {
    flex: 1;
}

.lineups li a {
    color: var(--site-link-color);
    text-decoration: none;
    flex: 1;
}

.lineups li a:hover {
    cursor: pointer;
    text-decoration: underline;
}

@media screen and (max-width: 640px) {
    .lineups_wrapper h2,
    .appendix_wrapper h2 {
        font-size: 0.9rem;
        margin: 1rem 0 0.5rem 4px;
    }

    .lineups_block {
        gap: 0.5rem;
    }

    .lineups_info .team {
        padding: 0.5rem 0.7rem;
    }

    .lineups_info .team img {
        display: none;
    }

    .lineups_info .team p {
        font-size: 0.8rem;
    }

    .lineups {
        padding: 0.7rem;
        gap: 8px;
    }

    .lineups li {
        font-size: 0.7rem;
    }

    .lineups li > p {
        width: 18px;
    }

    .lineups li p:nth-child(2) {
        width: 22px;
    }
}

.lineups.substitution {
    gap: 24px;
}

.lineups.substitution li {
    align-items: flex-start;
}

.lineups.substitution li > p {
    line-height: 1.4rem;
}

.substitution_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.substitution_info > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--site-gray-color);
}

.substitution_info > div p:last-of-type {
    flex: 1;
}

.substitution_info img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 28px;
    display: block;
}

@media screen and (max-width: 640px) {
    .lineups.substitution {
        gap: 16px;
    }

    .substitution_info {
        gap: 4px;
    }

    .lineups.substitution li > p {
        line-height: 1rem;
        margin-right: 4px;
    }

    .substitution_info img {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }
}

/*---------------------------
応援メッセージ
----------------------------*/
@media screen and (max-width: 768px) {
    .lineups_block.sp_fullwidth {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.lineups.cheers {
    padding: 20px;
}

.lineups.cheers li {
    gap: 1rem;
    align-items: center;
    padding: 4px;
}

.lineups.cheers li > p {
    flex: 1;
    line-height: 1.2rem;
    letter-spacing: 0.5px;
}

.contributor_info {
    width: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contributor_info img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.contributor_info img.megaphone {
    opacity: 0.5;
}

.contributor_info > p {
    width: 100% !important;
    font-size: 0.7rem;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .lineups_block.sp_fullwidth {
        gap: 0.5rem;
    }

    .lineups.cheers {
        gap: 16px;
        padding: 16px;
    }

    .lineups.cheers li {
        gap: 12px;
    }

    .contributor_info {
        width: 72px;
    }

    .contributor_info img {
        width: 48px;
        height: 48px;
    }

    .lineups.cheers li > p {
        line-height: 1rem;
    }

    .contributor_info > p {
        font-size: 0.6rem;
    }
}

/*---------------------------
appendix
----------------------------*/
.appendix_wrapper {
    padding-top: 1rem;
}

.appendix_content_block {
    width: 100%;
    background-color: var(--site-white-color);
    border-radius: 3px;
    padding: 2rem;
}

.appendix_content_block p {
    text-align: left;
    color: var(--site-text-color);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
    .appendix_content_block {
        padding: 20px 28px;
    }
}

@media screen and (max-width: 640px) {
    .appendix_content_block {
        padding: 1rem;
    }

    .appendix_content_block p {
        font-size: 0.8rem;
        line-height: 1rem;
    }
}

.visual_content_wrapper {
    width: 100%;
    padding-bottom: 1rem;
    display: grid;
    gap: 1.5rem;
    &.photo {
        grid-template-columns: 1fr 1fr 1fr;
    }
    &.video {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px){
    .visual_content_wrapper.photo {
        grid-template-columns: 1fr 1fr;
    }
    .visual_content_wrapper.video {
        grid-template-columns: 1fr;
    }
}

.video_content {
    border-radius: 3px;
    overflow: hidden;
}

.visual_block {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.video_content > .visual_block {
    border-radius: 0 0 3px 3px;
}

.visual_block > a {
    display: block;
    width: 100%;
    height: 100%;
}

.visual_block > a {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.visual_block iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video_title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--site-off-white-color);
}

.video_title img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.video_title p {
    font-size: 1rem;
    color: var(--site-text-color);
}

.empty_message {
    color: var(--site-gray-color);
    font-size: 1rem;
    text-align: left;
    grid-area: 1 / 1 / auto / span 2;
}

@media screen and (max-width: 640px) {
    .visual_content_wrapper {
        gap: 1rem;
    }

    .video_title img {
        width: 32px;
        height: 32px;
    }

    .video_title p {
        font-size: 0.8rem;
    }

    .empty_message {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/*---------------------------
旧
----------------------------*/
.pager {
    padding-top: 0;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    #results .inner {
        /*tablet*/
        max-width: 94%;
    }
}

@media screen and (max-width: 640px) {
    #results .inner {
        /*sp*/
        max-width: 90%;
    }
}

#results .inner .league_info {
    margin-bottom: 3em;
}

#results .inner .league_info > .col {
    margin-bottom: 2em;
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col {
        /*sp*/
        padding-top: 1rem;
    }
}

#results .inner .league_info > .col:last-child {
    margin-bottom: 3em;
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col:last-child {
        /*sp*/
        margin-bottom: 1rem;
    }
}

#results .inner .league_info > .col > .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    margin-bottom: 1.5em;
    color: #021c32;
}

#results .inner .league_info > .col > .head h2 {
    width: 100%;
    text-align: left;
    font-size: 1.4em;
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col > .head h2 {
        /*sp*/
        width: 100%;
        text-align: center;
        margin-bottom: 1em;
    }
}

#results .inner .league_info > .col > .head .btn {
    width: 100%;
    margin-top: 1rem;
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col > .head .btn {
        /*sp*/
        width: 100%;
    }
}

#results .inner .league_info > .col > .head .btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    list-style: none;
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col > .head .btn ul {
        /*sp*/
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-justify-content: flex-start;
    }
}

#results .inner .league_info > .col > .head .btn ul li {
    margin-left: 10px;
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col > .head .btn ul li {
        /*sp*/
        width: 32%;
        margin-left: 0;
        margin-bottom: 0.3rem;
        margin-right: 1.5%;
    }
    #results .inner .league_info > .col > .head .btn ul li:nth-of-type(3n) {
        margin-right: 0;
    }
}

#results .inner .league_info > .col > .head .btn ul li a {
    display: block;
    color: #021c32;
    border: 2px solid #021c32;
    padding: 0.2em 1em;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.9em;
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col > .head .btn ul li a {
        /*sp*/
        font-size: 0.6rem;
        padding: 0.2rem 0.2rem;
    }
}

#results .inner .league_info > .col > .head .btn ul li a:visited {
    color: #021c32;
}

#results .inner .league_info > .col .row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col .row {
        /*sp*/
        width: 80%;
        margin: auto;
        margin-top: 100px;
    }
}

#results .inner .league_info > .col .row .col {
    width: 32%;
    background: #fff;
    position: relative;
    margin-bottom: 1em;
    margin-right: 2%;
    overflow: hidden;
    border: 1px solid #ccc;
}

/* #results .inner .league_info > .col .row .col:nth-of-type(3n) {
  margin-right: 0;
} */

#results .inner .league_info > .col .row .col .img {
    overflow: hidden;
}

#results .inner .league_info > .col .row .col .img img {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    width: 100%;
}

#results .inner .league_info > .col .row .col {
    width: 23.5%;
    background: #fff;
    position: relative;
    margin-right: 1%;
    overflow: hidden;
}

#results .inner .league_info > .col .row .col .img img {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    width: 100%;
    object-fit: cover;
    height: 135px !important;
}

#results .inner .league_info > .col .row .col .img.two {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

#results .inner .league_info > .col .row .col .img.two span {
    width: 50%;
    overflow: hidden;
}

#results .inner .league_info > .col .row .col .img.two span img {
    width: 200%;
    height: 135px;
    object-fit: cover;
}

#results .inner .league_info > .col .row .col .img img {
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col .row .col .img img {
        /*sp*/
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    #results .inner .league_info > .col .row .col {
        /*sp*/
        width: 100%;
        margin-bottom: 1.5rem;
        -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
    }
}

#results .inner .league_info > .col .row .col .txt {
    position: relative;
    padding: 1em;
    height: 90px;
}

#results .inner .league_info > .col .row .col .txt .icon {
    position: absolute;
    padding: 0.2em 0.5em;
    color: #fff;
    background: #ffa900;
    font-size: 0.8em;
    top: -20px;
}

#results .inner .league_info > .col .row .col .btn {
    background: rgb(47 47 129);
    color: #fff;
    padding: 0.5em;
}

#results .inner .league_info > .col .row .col a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

#results .inner .league_info > .col .row .col:hover .img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    #results_detail .inner {
        /*tablet*/
        width: 94%;
    }
}

@media screen and (max-width: 640px) {
    #results_detail .inner {
        /*sp*/
        max-width: 90%;
    }
}

.message li {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.5rem;
}

.message li div {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    padding-left: 0.5rem;
}

.message li div pre {
    font-size: 1rem;
    font-weight: initial;
    white-space: pre-wrap;
}

.message span.name {
    text-align: center;
    padding-top: 0.5rem;
    /* margin: 0.5rem 0; */
}

@media screen and (max-width: 640px) {
    .photo .message {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
    }

    .message li div pre {
        font-size: 0.8rem;
    }
}

#results_detail .inner .set {
    padding: 2em 0 1em 0;
    border-top: 1px solid #ccc;
}

#results_detail .inner .set:first-child {
    border-top: none;
}

#results_detail .inner .set .head {
    margin-bottom: 2em;
    text-align: left;
    margin-bottom: 2em;
}

#results_detail .inner .set .head h2 {
    font-size: 1.6em;
    color: #021c32;
    margin-bottom: 0.5em;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .set .head h2 {
        /*sp*/
        font-size: 1.2rem;
    }
}

#results_detail .inner .set .head span {
    font-size: 1.2em;
    color: #021c32;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .set .head span {
        /*sp*/
        font-size: 1rem;
    }
}

#results_detail .inner .set .score_box {
    background: rgb(47 47 129);
    padding: 2em 1em;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

#results_detail .inner .set .score_box .col:nth-of-type(1) {
    width: 35%;
    font-size: 1.2em;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .set .score_box .col:nth-of-type(1) {
        /*sp*/
        font-size: 0.6rem;
    }
}

#results_detail .inner .set .score_box .col:nth-of-type(2) {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

#results_detail .inner .set .score_box .col:nth-of-type(2) .box:nth-of-type(1) {
    width: 30%;
    font-size: 2em;
    font-weight: bold;
}

@media screen and (max-width: 640px) {
    #results_detail
        .inner
        .set
        .score_box
        .col:nth-of-type(2)
        .box:nth-of-type(1) {
        /*sp*/
        width: 25%;
        font-size: 1.2rem;
    }
}

#results_detail .inner .set .score_box .col:nth-of-type(2) .box:nth-of-type(2) {
    width: 40%;
}

@media screen and (max-width: 640px) {
    #results_detail
        .inner
        .set
        .score_box
        .col:nth-of-type(2)
        .box:nth-of-type(2) {
        /*sp*/
        width: 50%;
        float: none;
    }
}

#results_detail
    .inner
    .set
    .score_box
    .col:nth-of-type(2)
    .box:nth-of-type(2)
    span {
    display: block;
    border: 1px solid #fff;
    border-radius: 10px;
}

#results_detail
    .inner
    .set
    .score_box
    .col:nth-of-type(2)
    .box:nth-of-type(2)
    span:nth-of-type(1) {
    margin-bottom: 0.3em;
}

@media screen and (max-width: 640px) {
    #results_detail
        .inner
        .set
        .score_box
        .col:nth-of-type(2)
        .box:nth-of-type(2)
        span {
        /*sp*/
        font-size: 0.8rem;
        line-height: 1.1rem;
    }
}

#results_detail .inner .set .score_box .col:nth-of-type(2) .box:nth-of-type(3) {
    width: 30%;
    font-size: 2em;
    font-weight: bold;
}

@media screen and (max-width: 640px) {
    #results_detail
        .inner
        .set
        .score_box
        .col:nth-of-type(2)
        .box:nth-of-type(3) {
        /*sp*/
        width: 25%;
        font-size: 1.2rem;
    }
}

#results_detail .inner .set .score_box .col:nth-of-type(3) {
    width: 35%;
    font-size: 1.2em;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .set .score_box .col:nth-of-type(3) {
        font-size: 0.6em;
    }
}

#results_detail .inner .set .score_box .col a {
    color: #fff;
}

#results_detail .inner .set .img {
    margin-bottom: 2em;
    margin-top: 2rem;
    /* padding-top: 2em; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    overflow: hidden;
    height: 325px;
    align-items: center;
    align-content: center;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .set .img {
        margin-bottom: 1em;
        margin-top: 1rem;
        height: 115px;
    }
}

#results_detail .inner .set .img img {
    width: 48%;
}

#results_detail .inner .set .info {
    margin-bottom: 2em;
    text-align: left;
}

/* #results_detail .inner .set .info .mom {
  margin-bottom: 1.0em;
  font-size: 1.2em;
} */

#results_detail .inner .set .info .mom span {
    display: inline-block;
    margin-right: 20px;
}

#results_detail .inner .set .info .mom h2 {
    /* margin-bottom: 1.0em; */
    padding-bottom: 1em;
    /* border-bottom: 1px solid #ccc; */
    text-align: center;
}

#results_detail .inner .set .info .scorer {
    /* margin-bottom: 1em; */
    /* padding-bottom: 3em; */
    /* border-bottom: 1px solid #ccc; */
    text-align: center;
}

#results_detail .inner .set .info .scorer h2 {
    /* margin-bottom: 1.0em; */
    padding-bottom: 1em;
    /* border-bottom: 1px solid #ccc; */
    text-align: center;
}

#results_detail .inner .set .info .scorer .row {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

#results_detail .inner .set .info .scorer .row .home_col {
    width: 48%;
}

#results_detail .inner .set .info .scorer .row .away_col {
    width: 48%;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .set .info .scorer .row .home_col dl {
        /*sp*/
        font-size: 0.8rem;
    }

    #results_detail .inner .set .info .scorer .row .away_col dl {
        /*sp*/
        font-size: 0.8rem;
    }
}

#results_detail .inner .set .info .scorer .row .home_col dl > div {
    /* border-bottom: 1px dotted #ccc; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: right;
}

#results_detail .inner .set .info .scorer .row .away_col dl > div {
    /* border-bottom: 1px dotted #ccc; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
}

#results_detail .inner .set .info .scorer .row .home_col dl > div dt {
    width: 70%;
    padding: 10px 0;
}

#results_detail .inner .set .info .scorer .row .away_col dl > div dt {
    width: 20%;
    padding: 10px 0;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .set .info .scorer .row .home_col dl > div dt {
        /*sp*/
        width: 25%;
    }

    #results_detail .inner .set .info .scorer .row .away_col dl > div dt {
        /*sp*/
        width: 25%;
    }
}

#results_detail .inner .set .info .scorer .row .home_col dl > div dd {
    width: 100%;
    padding: 10px 0 10px;
}

#results_detail .inner .set .info .scorer .row .away_col dl > div dd {
    width: 100%;
    padding: 10px 0 10px;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .set .info .scorer .row .home_col dl > div dd {
        /*sp*/
        width: 100%;
        padding: 5px 0 5px;
    }

    #results_detail .inner .set .info .scorer .row .away_col dl > div dd {
        /*sp*/
        width: 100%;
        padding: 5px 0 5px;
    }
}

#results_detail .inner .set .info .remarks {
    padding-top: 2em;
}

#results_detail .inner .set .photo {
    border-top: 1px dotted #ccc;
    margin-bottom: 2em;
    padding-top: 2em;
}

#results_detail .inner .set .photo h2 {
    text-align: left;
    margin-bottom: 1em;
}

#results_detail .inner .set .photo .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

#results_detail .inner .set .photo .row a {
    display: block;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 0.8em;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .set .photo .row a {
        /*sp*/
        width: 48%;
    }
    #results_detail .inner .set .photo .row a:nth-of-type(even) {
        margin-right: 0;
    }
}

#results_detail .inner .set .photo .row a:nth-of-type(4n) {
    margin-right: 0;
}

#results_detail .inner .ranking {
    border-top: 1px dotted #ccc;
    margin-bottom: 2em;
    padding-top: 2em;
}

#results_detail .inner .ranking .head {
    text-align: left;
    margin-bottom: 1em;
}

#results_detail .inner .ranking .head h2 {
    color: #002c65;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

#results_detail .inner .ranking .head span {
    color: #999;
}

#results_detail .inner .ranking .tabs .tab_item {
    width: 30%;
    text-align: center;
    border: 1px solid #002c65;
    color: #002c65;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    margin-right: 5%;
    padding: 1em;
}

#results_detail .inner .ranking .tabs .tab_item:nth-of-type(3) {
    margin-right: 0;
}

#results_detail .inner .ranking .tabs .tab_item:hover {
    background: #002c65;
    color: #fff;
}

#results_detail .inner .ranking .tabs input[name="tab_item"] {
    display: none;
}

#results_detail .inner .ranking .tabs .tab_content {
    display: none;
    clear: both;
    overflow: hidden;
    padding-top: 2em;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .ranking .tabs .tab_content .box {
        /*sp*/
        overflow: auto;
        white-space: nowrap;
    }
    #results_detail .inner .ranking .tabs .tab_content .box::-webkit-scrollbar {
        height: 5px;
    }
    #results_detail
        .inner
        .ranking
        .tabs
        .tab_content
        .box
        .scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    #results_detail
        .inner
        .ranking
        .tabs
        .tab_content
        .box
        .scroll::-webkit-scrollbar-thumb {
        background: #bcbcbc;
    }
}

.starter {
    display: inline-block;
    text-align: left;
    width: 50%;
}

.starter h2 {
    font-weight: bold;
}

.starter li {
    list-style: none;
}

span.pos {
    display: inline-block;
    width: 5%;
}

span.num {
    display: inline-block;
    width: 5%;
}

span.name {
    display: inline-block;
    width: 80%;
}

.line {
    /* border-top: 1px dotted; */
    font-weight: bold;
    margin: 0.5rem 0;
}

.link {
    text-decoration: none;
}

.link .name {
    text-decoration: underline;
}

@media screen and (max-width: 640px) {
    .starter {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .starter h2 {
        font-size: 0.7rem;
        margin-top: 1rem;
        margin-bottom: 0rem;
    }

    span.pos {
        width: 9%;
    }

    span.num {
        width: 9%;
    }

    span.name {
        width: 78%;
    }

}

#results_detail .inner .ranking .tabs .tab_content .box table {
    width: 100%;
    border-collapse: collapse;
}

@media screen and (max-width: 640px) {
    #results_detail .inner .ranking .tabs .tab_content .box table {
        /*sp*/
        width: 200%;
    }
}

#results_detail .inner .ranking .tabs .tab_content .box table tr {
    border-bottom: 1px dotted #fff;
}

#results_detail .inner .ranking .tabs .tab_content .box table tr.line {
    border-top: 1px dotted #999;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box
    table
    tr:nth-of-type(odd) {
    background: #e8eff4;
}

#results_detail .inner .ranking .tabs .tab_content .box table tr th,
#results_detail .inner .ranking .tabs .tab_content .box table tr td {
    padding: 0.5em;
    font-size: 0.6em;
    vertical-align: middle;
}

#results_detail .inner .ranking .tabs .tab_content .box table tr th {
    background: #002c65;
    color: #fff;
    font-weight: normal;
    border-right: 1px dotted #fff;
}

#results_detail .inner .ranking .tabs .tab_content .box table tr th span {
    display: block;
    width: 8px;
    height: 6px;
    background: url(../img/common/icon_sort.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: auto;
    margin-bottom: 5px;
}

#results_detail .inner .ranking .tabs .tab_content .box table tr td {
    text-align: left;
    border-right: 1px dotted #ccc;
    text-align: center;
}

#results_detail .inner .ranking .tabs .tab_content .box table tr td.match {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

#results_detail .inner .ranking .tabs .tab_content .box table tr td.match span {
    display: inline-block;
    text-align: center;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box
    table
    tr
    td.match
    span:nth-of-type(1) {
    width: 35%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box
    table
    tr
    td.match
    span:nth-of-type(2) {
    width: 30%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box
    table
    tr
    td.match
    span:nth-of-type(3) {
    width: 35%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(1) {
    width: 5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(2) {
    width: 20%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(3) {
    width: 8%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(4) {
    width: 8%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(5) {
    width: 8%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(6) {
    width: 8%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(7) {
    width: 8%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(8) {
    width: 8%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(9) {
    width: 8%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    th:nth-of-type(10) {
    width: 10%;
    border-right: none;
}

#results_detail .inner .ranking .tabs .tab_content .box.all table tr td {
    padding: 1.2em 0.5em;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    td:nth-of-type(2) {
    text-align: left;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.all
    table
    tr
    td:nth-of-type(10) {
    border-right: none;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.match
    table
    tr
    th:nth-of-type(1) {
    width: 10%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.match
    table
    tr
    th:nth-of-type(2) {
    width: 25%;
    border-right: none;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.match
    table
    tr
    th:nth-of-type(3) {
    width: 15%;
    border-right: none;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.match
    table
    tr
    th:nth-of-type(4) {
    width: 25%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.match
    table
    tr
    th:nth-of-type(5) {
    width: 25%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.match
    table
    tr
    td:nth-of-type(2) {
    border-right: none;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.match
    table
    tr
    td:nth-of-type(3) {
    border-right: none;
}

#results_detail .inner .ranking .tabs .tab_content .box.match table tr td span {
    display: block;
    background: #ffaf00;
    color: #fff;
    font-size: 8px;
    line-height: 16px;
    width: 70%;
    margin: auto;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(1) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(2) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(3) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(4) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(5) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(6) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(7) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(8) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(9) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(10) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(11) {
    width: 8.5%;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr:nth-of-type(1)
    th:nth-of-type(12) {
    width: 6.5%;
}

#results_detail .inner .ranking .tabs .tab_content .box.stats table tr td.none {
    background: #ccc;
}

#results_detail
    .inner
    .ranking
    .tabs
    .tab_content
    .box.stats
    table
    tr
    td:nth-of-type(12) {
    background: #e8eff4;
}

#results_detail .inner .ranking .tabs #all:checked ~ #all_content,
#results_detail .inner .ranking .tabs #match:checked ~ #match_content,
#results_detail .inner .ranking .tabs #stats:checked ~ #stats_content {
    display: block;
}

#results_detail .inner .ranking .tabs input:checked + .tab_item {
    background: #002c65;
    color: #fff;
}
/*# sourceMappingURL=results.css.map */
