/*-------------------------------------------------
|- mainVisual
-------------------------------------------------*/
.mainVisual {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    line-height: 0;
}
/*-------------------------------------------------
|- about
-------------------------------------------------*/
.about {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 0 45px;
    place-items: center;
}
.about-img {
    width: 100%;
    height: 100%;
    line-height: 0;
}
.about-img img {
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.about-box {
    padding: 20px 0;
}
.about-ttl {
    margin-bottom: 15px;
    color: #309ccf;
    font-size: 2.5rem;
    font-weight: 600;
}
.about-txt {
    padding-right: 40px;
    box-sizing: border-box;
    line-height: 2;
}
@media screen and (max-width: 767px){
    .about {
        width: 92%;
        margin: 25px auto 40px;
        grid-template-columns: 1fr;
    }
    .about-img {
        order: 2;
    }
    .about-box {
        padding: 0;
        order: 1;
    }
    .about-ttl {
        margin-bottom: 10px;
        font-size: var(--fs24);
    }
    .about-txt {
        margin-bottom: 20px;
        font-size: var(--fs14);
        line-height: 1.7;
    }
}
/*-------------------------------------------------
|- videos
-------------------------------------------------*/
.videos {
    width: 100%;
    padding: 50px 0 60px;
    background: #309ccf;
}
.videos-ttl {
    margin-bottom: 30px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}
.videos-box {
    width: 92%;
    max-width: 800px;
    height: 450px;
    margin: auto;
}
.videos-box iframe {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px){
    .videos {
        padding: 30px 0 40px;
    }
    .videos-ttl {
        margin-bottom: 20px;
        font-size: var(--fs24);
    }
    .videos-box {
        position: relative;
        height: auto;
        padding-top: 50%;
    }
    .videos-box iframe {
        position: absolute;
        top: 0;
        left: 0;
    }
}
/*-------------------------------------------------
|- venues
-------------------------------------------------*/
.venues {
    max-width: 960px;
    margin: auto;
    padding: 80px 0 60px;
}
.venues-ttl {
    margin-bottom: 40px;
    color: #309ccf;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}
.selection-block {
    width: 100%;
    padding: 30px 40px 15px;
    box-sizing: border-box;
    background: #eaebef;
}
.selection-ttl {
    margin-bottom: 20px;
    font-size: var(--fs21);
    font-weight: 600;
    text-align: center;
}
.selection-box {
    width: 100%;
    border-top: 1px solid #999;
}
.selection-txt {
    margin: 20px 0 10px;
    font-weight: 600;
}
.select-list {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}
.select-list__item {
    margin: 0 5px 15px 0;
}
.select-list__link {
    width: 100%;
    padding: 3px 15px;
    color: #2c6bb9;
    font-size: var(--fs13);
    font-weight: 600;
    background: #fff;
    border: 1px solid #2c6bb9;
    box-sizing: border-box;
    border-radius: 30px;
    display: block;
    transition: .2s;
}
.select-list__link:hover,
.select-list__link.active {
    color: #fff;
    background: #2c6bb9;
}

.facility-block {
    width: 100%;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 65px 30px;
}
.facility__item {
    position: relative;
}
.facility-link {
    width: 100%;
    height: 100%;
    display: block;
}
.facility-box {
    margin-top: 10px;
    padding-bottom: 50px;
}
.facility-name {
    margin-bottom: 10px;
    color: #2c6bb9;
    font-size: var(--fs23);
    font-weight: 600;
}
.facility-place {
    margin-bottom: 10px;
    padding-left: 15px;
    box-sizing: border-box;
    color: #333;
    font-weight: 600;
    background: url(/english/tokyoSportsFacilities/assets/img/icon_place.svg) no-repeat;
    background-size: 13px;
}
.sports-category {
    display: flex;
    flex-wrap: wrap;
}
.sports-category > * {
    margin-right: 5px;
}
.sports-category,
.capacity {
    color: #000;
    font-size: var(--fs15);
    letter-spacing: -.03rem;
    line-height: 1.6;
}
.detail-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 9px 0;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background: #2c6bb9;
    border: 1px solid #2c6bb9;
    box-sizing: border-box;
    border-radius: 30px;
    transition: .2s;
}
.facility-link:hover .detail-btn {
    color: #2c6bb9;
    background: #fff;
}
.input-check {
    display: none;
}
.item-all {
    padding: 3px 15px;
    color: #2c6bb9;
    font-size: var(--fs13);
    font-weight: 600;
    background: #fff;
    border: 1px solid #2c6bb9;
    box-sizing: border-box;
    border-radius: 30px;
    transition: .2s;
    cursor: pointer;
}
.input-label {
    width: 100%;
    padding: 3px 15px;
    color: #2c6bb9;
    font-size: var(--fs13);
    font-weight: 600;
    background: #fff;
    border: 1px solid #2c6bb9;
    box-sizing: border-box;
    border-radius: 30px;
    display: block;
    transition: .2s;
    cursor: pointer;
}
.item-all:hover,
.item-all.active,
.input-label:hover,
.input-label.active {
    color: #fff;
    background: #2c6bb9;
}
.item-reset {
    margin-left: 10px;
    padding: 3px 15px;
    font-size: var(--fs14);
    font-weight: 600;
    border: 1px solid #333;
    box-sizing: border-box;
    border-radius: 30px;
    display: inline-block;
    cursor: pointer;
}
.item-reset.active {
    color: #fff;
    background: #333;
}
.js_target {
    display: none;
}
.js_target.js_selected {
    display: block;
}
@media screen and (max-width: 767px){
    .venues {
        width: 92%;
        padding: 35px 0 60px;
    }
    .venues-ttl {
        margin-bottom: 20px;
        font-size: var(--fs24);
    }
    .selection-block {
        padding: 20px 15px 5px;
    }
    .selection-ttl {
        margin-bottom: 10px;
        font-size: var(--fs16);
    }
    .selection-txt {
        margin: 10px 0;
        font-size: var(--fs13);
    }
    .item-reset {
        font-size: var(--fs13);
    }
    .select-list {
        margin: 0;
    }
    .select-list__link {
        padding: 2px 15px;
        font-size: var(--fs12);
    }
    .facility-block {
        margin-top: 55px;
        grid-template-columns: 1fr;
        grid-gap: 50px 0;
    }
    .facility-box {
        margin-top: 15px;
        padding-bottom: 15px;
    }
    .facility-name {
        font-size: var(--fs18);
    }
    .facility-place {
        font-size: var(--fs14);
        background-size: 11px;
    }
    .sports-category, .capacity {
        font-size: var(--fs14);
        line-height: 1.7;
    }
    .detail-btn {
        position: relative;
    }
}
/*-------------------------------------------------
|- brochure
-------------------------------------------------*/
.brochure {
    max-width: 960px;
    min-height: 450px;
    margin: 0 auto;
    background-color: #309ccf;
    background-image: url(/english/tokyoSportsFacilities/assets/img/bg_brochure_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.brochure-ttl {
    max-width: 545px;
    margin: 0 0 50px 14%;
    padding: 50px 0 0;
    color: #fff;
    font-size: 2.37rem;
    font-weight: 600;
}
.brochure-box {
    max-width: 545px;
    margin-left: 14%;
    display: grid;
    grid-template-columns: 66% 30%;
    grid-gap: 0 4%;
}
.brochure-detail {
    position: relative;
}
.detail-ttl {
    margin-bottom: 20px;
    color: #fff;
    font-size: var(--fs23);
    font-weight: 600;
    letter-spacing: -.02em;
}
.detail-txt {
    color: #fff;
    font-weight: 300;
    line-height: 2;
}
.download-btn {
    width: 220px;
    margin-top: 30px;
}
.download-btn__link {
    width: 100%;
    padding: 9px 0;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background-color: #2c6bb9;
    background-image: url(/english/tokyoSportsFacilities/assets/img/icon_download.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 30px;
    display: block;
    transition: .2s;
}
@media screen and (max-width: 767px){
    .brochure {
        width: 92%;
        min-height: 460px;
        padding: 20px 0 0;
        background-image: url(/english/tokyoSportsFacilities/assets/img/bg_brochure_sp.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .brochure-ttl {
        max-width: none;
        margin: 0;
        padding: 0 0 10px;
        color: #fff;
        font-size: var(--fs24);
        font-weight: 600;
        text-align: center;
    }
    .brochure-box {
        width: 91%;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }
    .brochure-detail {
        order: 2;
    }
    .brochure-img {
        width: 38%;
        margin: 0 auto 10px;
    }
    .detail-ttl {
        margin-bottom: 5px;
        font-size: var(--fs16);
        text-align: center;
    }
    .detail-txt {
        width: 85%;
        margin: 0 auto 10px;
        font-size: var(--fs14);
        line-height: 1.9;
    }
    .download-btn {
        position: relative;
        width: 70%;
        margin: 0 auto;
    }
}
/*-------------------------------------------------
|- external-block
-------------------------------------------------*/
.external-block {
    width: 90%;
    max-width: 960px;
    margin: 50px auto;
    padding: 40px 0;
    background: #ecf4f9;
}

.external-blockg {
    width: 90%;
    max-width: 960px;
    margin: 50px auto;
    padding: 40px 0;
    background: #ececec;
}

.external-box {
    width: 90%;
    max-width: 900px;
    margin: auto;
}
.external-txt {
    margin-bottom: 20px;
    line-height: 1.7;
}
.external-link {
    width: 100%;
    padding: 15px 0;
    color: #fff;
    font-size: var(--fs18);
    font-weight: 600;
    text-align: center;
    background-color: #2c6bb9;
    border: 1px solid #2c6bb9;
    box-sizing: border-box;
    border-radius: 10px;
    display: block;
    transition: .2s;
}
.external-link:hover {
    color: #2c6bb9;
    background: #fff;
}

h3.external-ttl {
    margin: 0px 0px 20px 0px;
    font-size: 25px;
    font-weight: bold;
    color: #2c6bba;
    }
@media screen and (max-width: 767px){
    .external-block {
        width: 92%;
        margin: 30px auto;
        padding: 15px 0;
    }
    .external-txt {
        font-size: var(--fs14);
    }
    .external-link {
        padding: 10px;
        font-size: var(--fs16);
    }
}
/*-------------------------------------------------
|- spopita-block
-------------------------------------------------*/
.spopita-block {
    width: 90%;
    max-width: 960px;
    margin: 60px auto 0;
}
.spopita-txt {
    margin-bottom: 30px;
    line-height: 1.7;
}
.spopita-logo {
    width: 350px;
    margin: auto;
    border: 1px solid #999;
    box-sizing: border-box;
}
.spopita-logo a {
    transition: .2s;
}
.spopita-logo a:hover {
    opacity: .8;
}
@media screen and (max-width: 767px){
    .spopita-block {
        margin: 30px auto 0;
    }
    .spopita-txt {
        margin-bottom: 15px;
        font-size: var(--fs14);
    }
    .spopita-logo {
        width: 80%;
        line-height: 1;
    }
}
/*-------------------------------------------------
|- inquiries
-------------------------------------------------*/
.inquiries {
    width: 92%;
    max-width: 960px;
    margin: 80px auto 125px;
    padding: 20px 30px;
    border: 1px solid #999;
    box-sizing: border-box;
    border-radius: 5px;
}
.inquiries-ttl {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: var(--fs18);
    border-bottom: 1px solid #999;
}
.inquiries-txt {
    margin-bottom: 20px;
    font-size: var(--fs18);
    line-height: 1.8;
}
.inquiries-txt-s {
    font-size: var(--fs13);
}
@media screen and (max-width: 767px){
    .inquiries {
        margin: 30px auto 80px;
        padding: 20px 22px;
    }
    .inquiries-ttl {
        font-size: var(--fs16);
    }
    .inquiries-txt {
        margin-bottom: 15px;
        font-size: var(--fs14);
        line-height: 1.7;
    }
    .inquiries-txt-s {
        font-size: var(--fs12);
    }
}

/*-------------------------------------------------
|- sporting-Events -block
-------------------------------------------------*/
.sporting-Events-block {
    width: 90%;
    max-width: 960px;
    margin: 50px auto;
    padding: 40px 20px;
    background: #ceebfd;
	display: grid;
    grid-template-columns: repeat(2,1fr);
    place-items: center;
}
.sporting-Events-photo {
    width: 100%;
    height: 100%;
    line-height: 0;
}
.sporting-Events-box {
    width: 100%;
    padding: 20px 0 20px 8%;
    box-sizing: border-box;
}
.sporting-Events-txt {
    margin-bottom: 20px;
    line-height: 1.7;
}
@media screen and (max-width: 767px){
    .sporting-Events-block {
        width: 92%;
        margin: 30px auto;
        padding: 15px 10px;
		grid-template-columns: 1fr;
    }
	.sporting-Events-box{
		padding: 10px;
	}
    .sporting-Events-txt {
        font-size: var(--fs14);
    }
}
