@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;700&display=swap');

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}




/* styles
-------------------------------------------------------------- */
body,
button,
input,
select {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-weight: 300;
    -webkit-text-size-adjust: 100%;
    color: #000;
}
body{
    font-size: 14px;
    background: #fff;
}
img{
height:auto;
}
a img{
    opacity: 1;
    transition: .3s;
}
a:hover img{
    opacity: .75;
}

ul,ol{
    padding-left: 15px;
}


/* header
-------------------------------------------------------------- */
header#header {
    position: fixed;
    z-index: 10000;
    width: 100%;
    padding: 16px 40px;
    background-color:#fff;
}
.header{
    width: 100%;
    max-width:1200px;
    margin:0 auto;
    display: flex;
    align-items: center;
}

.site-title{
    width: 228px;
    margin-left: 36px;
    z-index: 10;
}
.header-shoulder{
margin-left:20px;
font-size:12px;
color:#ef9200;
    font-weight: 400;
}
.header_entry_box{
display:flex;
align-items:center;
margin-left:auto;
}
.header_entry img{
max-width:150px;
}
.header_entry_select_option{
padding:0 12px;
margin-left:20px;
border-right:1px solid #000;
border-left:1px solid #000;
font-size:12px;
    font-weight: 400;
line-height:1;
}
.header_entry_select_option a{
color:#000;
text-decoration:none;
    transition: .3s;
}
.header_entry_select_option a:hover{
    color: #f39500;
}


/* PC */
@media only screen and (min-width: 768px) {
}

/* SP */
@media only screen and (max-width: 767px) {

header#header {
    padding: 16px;
}
    .header-btn{
        border: none;
        margin-right: 15px;
        text-indent: -9999px;
        width: 20px;
        height: 22px;
        background: #fff;
        line-height: 1;
    }
    .header-btn span{
        position: relative;
        display: block;
        width: 20px;
        height: 1px;
        background-color: #ff7f10;
        font-size: 10px;
        margin-top: 5px;
        transition: .3s;
    }
    .header-btn.open span{
        transform: rotate(45deg);
        transform-origin: center;
    }
    .header-btn span:before{
        content: '';
        position: absolute;
        left: 0;
        top: -8px;
        display: block;
        width: 20px;
        height: 1px;
        background-color: #ff7f10;
    }
    .header-btn.open span:before{
        transform: rotate(-90deg) translateX(-8px) translateY(0px);
    }
    .header-btn span:after{
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        display: block;
        width: 20px;
        height: 1px;
        background-color: #ff7f10;
    }
    .header-btn.open span:after{
        display: none;
    }
    .header-submenu{
        position: absolute;
        z-index: -1;
        left: -100vw;
        top: 58px;
        width: 100%;
        margin: 0;
        padding: 2px 0 0 0;
        background: rgba(255,255,255,.95);
        transition: .3s;
        list-style: none;
    }
    .header-submenu.open{
        display: block;
        left: 0;
    }
    .header-submenu li {
        border-bottom: 1px solid #eee;
    }
    .header-submenu li:nth-last-child(-n + 3) {
        width: 33%;
        float: left;
        border: none;
    }
    .header-submenu li a{
        display: block;
        text-decoration: none;
        padding: 10px 15px;
        color: #333;
        font-weight: 400;
        font-family: 'Noto Sans JP', sans-serif;
    }
    .header-submenu li:nth-last-child(-n + 3) a{
        text-align: center;
        padding: 15px;
    }
    .header-submenu li:nth-last-child(-n + 3) img {
        height: 20px;
        margin: 0 auto;
    }
    
}




/* main
-------------------------------------------------------------- */
.mv{
    position: relative;
    padding-top:59px;
}
.mv img{
    width:100%;
    height: 448px;
    object-fit: cover;
}
.mv-text{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #FFFFFF;
}
.mv-text h2{
    font-weight: 900;
    font-size: 40px;
    line-height: 1.2;
}
.mv-text h2 span{
    display: inline-block;
    padding: 3px 30px 3px 10%;
    margin-bottom: 10px;
    background: url(../images/mv-bg-h2.png) no-repeat right center;
    background-size: cover;
    white-space: nowrap;
}
.mv-text h2 span:first-child{
    padding-right: 5%;
}
.mv-text p{
    margin-bottom: 20px;
    padding-left: 10%;
    font-weight: 400;
}

.mv2.bg-gray{
    padding: 30px 0;
}
.mv2 .inner{
    display: flex;
    max-width: 900px;
}
.mv2 h2{
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
}
.mv2 p{
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
}
.mv2 .mv2-btnset_btn{
    width: 35%;
    max-width: 300px;
}
/* PC */
@media only screen and (min-width: 768px) {
    .mv2 .inner{
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
}

/* SP */
@media only screen and (max-width: 767px) {
.mv{
    padding-top:0;
}
.mv-text{
    left: 0;
    top: 80px;
    bottom: auto;
}
    .mv-text h2{
        font-size: 28px;
    }
    .mv-text h2 span{
        padding-left: 5%;
    }
    .mv-text p{
        padding-left: 5%;
        font-size: 12px;
    }
    .mv2 .inner{
        flex-wrap: wrap;
    }
    .mv2 .inner .mv2-text{
        order: 2;
        width: 100%;
        margin-top: 20px;
    }
    .mv2 .mv2-btnset_btn{
        order: 1;
        width: 100%;
        text-align: center;
    }
    .mv2 p{
        font-size: 14px;
    }
}


.wrapper{
position:relative;
margin:0 auto;
padding:50px 0 0;
}

main{
}
section .inner{
margin:0 auto;
width:100%;
max-width:1100px;
}
section .inner > *:last-child{
    margin-bottom: 0;
}
main h2{
text-align:center;
margin-bottom:40px;
    font-size: 28px;
font-weight:700;
}
main h2 small{
    font-size: 22px;
}
main h3{
background:url(../images/bg-h3.png) no-repeat left center;
background-size: 10px 100%;
padding-left:26px;
margin-bottom:20px;
    font-size: 22px;
}
main p{
margin-bottom:40px;
font-weight:400;
    font-size: 16px;
    line-height: 1.75;
}
main a{
    color: #000;
}

.bg-gray.section02{
    padding-top: 35px;
}
.section02 h3{
margin-bottom:0;
}

.esports-list{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
list-style:none;
padding:0;
}
.esports-item{
width:24%;
text-align:center;
margin-top:30px;
font-weight:400;
    font-size: 16px;
}
.esports-item img{
margin-bottom:10px;
max-width:86%;
}
.esports-list_text{
    background-color: #fff;
    border: 2px solid #bbb;
    padding: 30px;
    margin-top: 30px;
}
.esports-list_textAttention{
    text-align: center;
    color: #cc0000;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 0;
}

.section01{
padding:50px 0;
}
.section03{
padding:0 0 50px 0;
}

.section04 h3{
margin-bottom:40px;
}

.section06 .twitter-banner{
    text-align: center;
}
.section06 .twitter-banner a{
    display: inline-block;
}
.section07{
    padding:100px 0;
}
.section08-content > div:first-child{
    width: 130px;
    padding: 15px;
    background: #fff;
}
.section08-content p{
    margin-bottom: 0;
}
/* PC */
@media only screen and (min-width: 768px) {
.section08-content{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.section08-content > div:first-child{
    margin-right: 30px;
}
}
/* SP */
@media only screen and (max-width: 767px) {
    .esports-list_text{
        padding: 15px;
        margin-top: 15px;
    }
    .esports-list_textAttention{
        font-size: 16px;
    }
    .bg-gray.section06{
        padding: 0;
    }
    .section06 .twitter-banner{
        padding: 0;
    }
    .section08-content > div:first-child{
        text-align: center;
        margin: 0 auto 15px;
    }
    .section08-content{
        margin-bottom: 20px;
    }
}


/* PC */
@media only screen and (min-width: 768px) {
    main{
        position: relative;
    }
section .inner{
padding:0 370px 0 15px;
}


side{
    position: absolute;
    top: 0;
width:280px;
}
    side.bottomfixed{
        position: fixed;
        top: auto;
    }
    side.bottomfixed2{
        position: fixed;
        top: 110px;
    }
    .twitter-timeline{
        background: url(../images/twitter_x2.png) no-repeat left center;
        background-size: 1px 100%;
        padding-left: 14px;
    }
    side p:first-child{
        text-align: center;
    }
side iframe{
width:266px !important;
}
    #banner_slide{
        margin: 50px 0 0 0;
        list-style: none;
        padding: 0;
    }
    #banner_slide li{
        margin-bottom: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1099px) {
    side{
        padding-right: 15px;
    }
    side iframe{
        width: 265px !important;
    }
}

/* SP */
@media only screen and (max-width: 767px) {
.wrapper{
padding:30px 0 0;
}
    side{
        text-align: center;
        padding: 0 34px;
        margin-bottom: 30px;
    }
    
section .inner{
padding:0 34px;
}
main h2{
    font-size: 20px;
    margin-bottom: 20px;
}
main h2 small{
    font-size: 16px;
}
main h3{
background:url(../images/bg-h3.png) no-repeat left center;
background-size: 7px 100%;
padding-left:16px;
    margin-bottom: 10px;
    font-size: 16px;
}
main p{
    font-size: 12px;
    margin-bottom: 20px;
}

.section02 h3{
font-size:12px;
font-weight:700;
}
.esports-item{
margin-top:15px;
font-size:12px;
}
.esports-item small{
font-size:10px;
}
    
}


/* footer
-------------------------------------------------------------- */
footer {
}

.footer-btnset{
text-align:center;
padding:0 0 50px 0;
margin:0 auto;
}
.footer-detail .footer-btnset{
    padding-bottom: 0;
}
.footer-btnset img{
display:inline-block;
}
.footer-btnset_btn{
margin-bottom:50px;
    text-align: center;
}
section .inner > .footer-btnset_btn:last-child{
    margin-top: 40px;
}
.footer-btnset_btn img{
    margin-right:auto;
    margin-left: auto;
}


.footer{
background-color:#ddd;
}

.footer .inner{
    width: 100%;
    max-width:1200px;
    margin:0 auto;
    padding:80px 0 50px;
    font-size:12px;
}
.footer .inner a{
color:#000;
text-decoration:none;
}
.footer_menu{
list-style:none;
margin-bottom:20px;
padding:0;
}
.footer-btnset_banner img{
    width: 100%;
    margin-bottom: 50px;
    vertical-align: bottom;
}
.footer-detail .footer-btnset_banner img{
    margin: 50px 0 0;
}


/* PC */
@media only screen and (min-width: 768px) {

.footer .inner{
    display:flex;
    justify-content:space-between;
}

    .footer_top a{
        transition: .3s;
    }
.footer_top a:hover{
    color: #f39500;
}
.footer_menu{
display:flex;
justify-content:flex-end;
text-align:right;
}
.footer_menu li{
border-right:1px solid #000;
padding:0 10px;
line-height:1;
}
.footer_menu li:last-child{
border:none;
padding-right:0;
}
}

/* SP */
@media only screen and (max-width: 767px) {

.footer-btnset_btn{
margin-bottom:25px;
}

.footer-btnset_btn img{
    width: 73%;
}
.footer-btnset_btn + div img{
    width: 30%;
}
.footer .inner{
text-align:center;
padding:50px 0;
}
.footer_top{
margin-bottom:1em;
}
.footer_menu li{
line-height:1.7;
}
.copyright{
text-align:right;
font-size:10px;
margin:0 34px;
}
}


/* Misc & mixens
-------------------------------------------------------------- */
.youtube{
  width:100%;
  max-width:570px;
  margin:0 auto 50px;
}
.youtube-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube-inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.bg-gray{
background-color:#eee;
padding-top:50px;
padding-bottom:50px;
}
.bg-gray2{
background-color:#f9f9f9;
padding-top:50px;
padding-bottom:50px;
}

.tar{
    text-align: right !important;
}
.tac{
    text-align: center !important;
}

.arrow{
    padding-right: 50px;
}
.arrow:after{
    content: '▲';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius:18px;
    background: #000;
    color: #fff;
    transform: rotate(90deg) translateX(-2px);
    margin-left: 10px;
    font-size: 10px;
    line-height: 15px;
    padding-left: 4px;
}


/* PC */
@media only screen and (min-width: 768px) {
    .sp{
        display: none !important;
    }
}

/* SP */
@media only screen and (max-width: 767px) {
    .pc{
        display: none !important;
    }
    .youtube{
  margin:0 auto 25px;
}
.arrow:after{
    width: 12px;
    height: 12px;
    border-radius:12px;
    transform: rotate(90deg) translateX(-2px);
    margin-left: 6px;
    font-size: 7px;
    line-height: 12px;
    padding-left: 1px;
}
}




/* 下層（espots-detail）
-------------------------------------------------------------- */
.breadcrumbs {
    padding-top: 59px;
    margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
.breadcrumbs ul {
    padding: 0 15px;
}
.breadcrumbs ul li {
  display: inline-block;
  font-size: 11px;
    margin-right: 5px;
}
.breadcrumbs ul li a {
  color: #000;
}
.breadcrumbs ul li:not(:last-child):after{
    content: '＞';
    margin-left:10px;
}


.detail-header{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.detail-header img{
    width: 175px;
    margin-right: 30px;
}
.detail-header h2{
    font-size: 18px;
    text-align: left;
    margin-bottom: 20px;
}
.detail-header h3{
    margin-bottom: 10px;
}
.detail-header div *:last-child{
    margin-bottom: 0;
}

/* PC */
@media only screen and (min-width: 768px) {
.detail-header img + div{
    width: calc(100% - 205px);
}
}
/* SP */
@media only screen and (max-width: 767px) {
    .detail-header{
        position: relative;
        margin-top: 58px;
        padding: 16px 0 0;
        display: block;
    }
    .detail-header img{
        position: absolute;
        left: 0;
        bottom: 5px;
        width: 80px;
    }
    .detail-header h2{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .detail-header p{
        padding-left: 90px;
        font-size: 10px;
        min-height: 80px;
    }
}

.section01-content{
    display: flex;
    flex-wrap: wrap;
}
.section01-item{
    width: calc(50% - 15px);
    background: url(../images/twitter_x2.png) no-repeat left center;
    background-size: auto;
    background-size: 1px 100%;
    padding: 10px 0 10px 30px;
    margin-bottom: 20px;
}
.section01-item ul,
.section01-item ol{
    margin: 10px 0 0 0;
    padding-left: 20px;
}
/* PC */
@media only screen and (min-width: 768px) {
.section01-item:nth-child(2n){
    margin-left: 30px;
}
}
/* SP */
@media only screen and (max-width: 767px) {
    .section01-item{
        width: 100%;
    }
}

.detail-section02{
    margin: 100px 0;
}
.detail-esports-list{
    background: url(../images/twitter_x2.png) no-repeat left center;
    background-size: auto;
    background-size: 1px 100%;
    padding: 0;
}
.detail-esports-list ul,
.detail-esports-list ol{
    padding: 0 0 0 30px;
}
/* PC */
@media only screen and (min-width: 768px) {
.detail-esports-list{
    display: flex;
}
}
/* SP */
@media only screen and (max-width: 767px) {
.detail-section02{
    margin: 80px 0;
}
.detail-esports-list ul{
    padding: 0 0 0 40px;
}
}


/* PC */
@media only screen and (min-width: 768px) {
}

/* SP */
@media only screen and (max-width: 767px) {
}