/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　　Basic Style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 */

html {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 180%;
    overflow-x: hidden;
    box-sizing: border-box;
    background-color: #333;
    color: #fff;
}

img {
    max-width: 100%;
    width: 100%;
    vertical-align: bottom;
}

figure {
    padding: 0;
    margin: 2em auto;
}

figcaption {
    font-size: 0.7em;
    padding: 0 2%;
}

dl, dt, dd {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

p {
    padding: 0 10%;
    text-indent: unset;
}

.inner {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}

section {
    margin: 7em auto;
}

#container,
#footer {
    position:relative;
    z-index: 2;
}

#container {
    background-color: #000;
    padding-bottom: 5em;
}

/* 
================================
        Back to Page setting 
================================
*/

#page-top {
    position: fixed;
    top: 85%;
    left: 80%;
    font-size: 30px;
    line-height: 0.5;
    z-index: 999;
}

.fa-regular {
    padding-right: 2%;
}

.fa-solid {
    color: #555;
}



/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　　TopImage
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 */

#topimage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#logo {
    text-align: center;
}

#logo img {
    width: 200px;
    position: relative;
    z-index: 9999;
}

#topimage-img {
    position: fixed;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100vh;
    background: url(../images/image41.jpg);
    background-size: cover;
    background-position: center center;
    filter: grayscale(0.7);
}

#main_title {
    position: absolute;
    top: 10%;
    left: 5%;
    /* transform: translateX(-50%); */
    font-size: 1.8em;
    color: #ffffffc4;
    text-shadow: 3px 3px 3px #000;
    white-space: nowrap;
    font-family: 'Play', sans-serif;
    font-style: italic;
    z-index: 2;
}

@media screen and (min-width: 768px) {
    #main_title {
        font-size: 3em;
    }
}


/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　　Result
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 */

#result_container {
    margin: 7em auto 5em;
    text-align: center;
    padding: 2%;
}

#result {
    font-size: 2em;
    font-family: 'Play', sans-serif;
    font-style: italic;
    line-height: 190%;
}

#result img {
    display: inline-block;
    max-width: 40px;
    width: 100%;
    vertical-align: text-bottom;
}

.count-size {
    padding: 0 5%;
    font-size: 1.5em;
}

#result_container p {
    font-size: 2em;
    font-style: italic;
    font-weight: 700;
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    
    #result {
        font-size: 3em;
    }

    #result img {
        max-width: 120px;
    }

    #result_container p {
        font-size: 3em;
    }
}


/* 
==================================
           Score Part
================================*/
.fadein {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


#score_chart_wrap {
    max-width: 750px;
    margin: 5em auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    column-gap: 1em;
    font-family: 'Play', sans-serif;
    border: 2px solid;
}

#score_chart_wrap table, th, td {
    display: block;
}

#score_chart_wrap td:first-of-type {
    border-bottom: 2px dotted;
}

#score_chart_wrap tbody {
    display: flex;
    font-size: 2em;
    line-height: 150%;
}

#score_chart_wrap dl {
    display: flex;
}

#dataset_wrap dl:first-of-type {
    border-bottom: 2px dotted;
}

#dataset_wrap {
    display: block;
    font-size: 2em;
    font-weight: 500;
    line-height: 150%;
    margin-top: 1.4em;
}

#dataset_wrap dt {
    margin: 0 1em;
    font-size: 0.4em;
    white-space: nowrap;
}

#dataset_wrap dd {
    font-weight: 500;
}

.underline {
    border-bottom: 3px dotted #ff0000;
    padding-bottom: 1%;
}

@media screen and (min-width: 768px) {
    #score_chart_wrap tbody {
        font-size: 3em;
    }

    #dataset_wrap {
        font-size: 3em;
    }
}

/* 
==================================
           TimeTable
================================*/

.timeline_item {
    padding: 5%;
}

.match_development {
    font-size: 2em;
    font-family: 'Play', sans-serif;

}

.score_detail {
    font-size: 1.5em;
    font-weight: 500;
}

.timeline_wrap {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.timeline_wrap::before {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    background-color: #fff;
    top: 50px;
    left: 5%;
    transform: translateX(-50%);
    height:90%;
}

.left-column {
    flex-basis: 30%;
    position: relative;
}

.right-column {
    flex-basis: 70%;
}

.right-column p {
    padding: 0;
}

.try {
    background-color: orange;
    padding: 5px 7px;
    color: #fff;
    margin-right: 1em;
}

.goal {
    background-color: rgb(170, 170, 170);
    padding: 5px 7px;
    color: #000;
    margin-right: 1em;
}

.pk {
    background-color: rgb(111, 111, 111);
    padding: 5px 7px;
    color: #fff;
    margin-right: 1em;
}

#footer {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
    text-align: center;
}

#footer small {
    color: #333;
}

@media screen and (min-width: 768px) {
    .timeline_item {
        padding: 0;
    }
}

#sns_caption {
    font-family: 'Play', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    text-align: center;
}

#sns_wrap {
    text-align: center;
    margin: 1em auto;
}

.fa-brands {
    color: #fff;
    margin: 0 2%;
    display: inline-block;
}

#kyodo_sp_font {
    font-family: 'Play', sans-serif;
}

.margin-adjustment {
    margin-bottom: 2em;
}

#article_caption {
    padding: 0 2%;
}

#comments_container dl {
    margin-top: 3em;
    margin-bottom: 1em;
    padding: 0 10%;
}




