/*-------------------------------------------------
|- facility
-------------------------------------------------*/
.facility-ttl {
    padding: 27px 20px;
    box-sizing: border-box;
    color: #fff;
    font-size: 2.37rem;
    font-weight: 600;
    text-align: center;
    background: #309ccf;
}
.top-photo {
    max-width: 1080px;
    margin: auto;
    line-height: 0;
}
@media screen and (max-width: 767px){
    .facility-ttl {
        padding: 11px 10px;
        font-size: var(--fs22);
    }
}
/*-------------------------------------------------
|- detail-block
-------------------------------------------------*/
.detail-block {
    max-width: 1080px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    place-items: center;
}
.detail-photo {
    width: 100%;
    height: 100%;
    line-height: 0;
}
.detail-box {
    width: 100%;
    padding: 20px 0 20px 8%;
    box-sizing: border-box;
}
.facility-name {
    margin-bottom: 15px;
    color: #2c6bb9;
    font-size: 2rem;
    font-weight: 600;
}
.facility-place {
    margin-bottom: 10px;
    padding-left: 23px;
    box-sizing: border-box;
    font-weight: 600;
    background: url(/english/tokyoSportsFacilities/assets/img/icon_place.svg) no-repeat;
    background-size: 13px;
}
.facility-type {
    color: #2c6bb9;
    font-size: var(--fs15);
    font-weight: 600;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
}
.facility-type > * {
    margin-right: 5px;
    font-weight: 600;
}
.facility-capacity {
    margin-bottom: 20px;
    font-size: var(--fs15);
    line-height: 1.6;
}
.facility-introduction {
    margin-bottom: 35px;
    color: #333;
    font-size: var(--fs15);
    line-height: 1.7;
}
.btn-website {
    width: 210px;
}
.btn-website__link {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background-color: #2c6bb9;
    background-image: url(/english/tokyoSportsFacilities/assets/img/facility/icon_blank.svg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    border-radius: 30px;
    display: block;
}
@media screen and (max-width: 767px){
    .detail-block {
        width: 92%;
        margin: auto;
        padding: 25px 0 40px;
        grid-template-columns: 1fr;
    }
    .detail-photo {
        order: 2;
    }
    .detail-box {
        padding: 0;
        order: 1;
    }
    .facility-name {
        font-size: var(--fs22);
    }
    .facility-place {
        font-size: var(--fs15);
    }
    .facility-type,
    .facility-capacity,
    .facility-introduction {
        font-size: var(--fs14);
        line-height: 1.7;
    }
    .facility-introduction {
        margin-bottom: 10px;
    }
    .btn-website {
        margin-bottom: 25px;
    }
    .btn-website__link {
        padding: 12px 0;
        font-size: var(--fs14);
    }
}
/*-------------------------------------------------
|- info-block
-------------------------------------------------*/
.info-block {
    width: 100%;
    padding: 60px 0 90px;
    background: #eaebef;
}
.info-ttl {
    width: 89%;
    max-width: 960px;
    margin: 0 auto 20px;
    color: #2c6bb9;
    font-size: 2rem;
    font-weight: 600;
}
.info-box {
    width: 89%;
    max-width: 960px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 35%;
    grid-gap: 0 40px;
}
.info-list {
    padding: 15px 0;
    border-top: 1px solid #999;
    display: grid;
    grid-template-columns: 150px 1fr;
}
.info-list__ttl {
    color: #2c6bb9;
    font-weight: 600;
    line-height: 1.7;
}
.info-list__txt {
    line-height: 1.7;
}
.info-list__txt.flex {
    display: flex;
    flex-wrap: wrap;
}
.info-list__txt.flex > * {
    margin-right: 5px;
}
.map-txt {
    margin-bottom: 10px;
    display: flex;
}
.map-txt__ttl {
    position: relative;
    margin-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
    font-weight: 600;
}
.map-txt__ttl:before,
.map-txt__ttl:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    border-radius: 50%;
}
.map-txt__ttl:before {
    width: 16px;
    height: 16px;
    background: #f00;
}
.map-txt__ttl:after {
    top: 6px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: #fff;
}
.map-txt__link {
    padding-left: 15px;
    box-sizing: border-box;
    background: url(/english/tokyoSportsFacilities/assets/img/facility/icon_right_gray.png) no-repeat;
    background-size: 11px;
    background-position: left center;
}
.map-txt__link a {
    color: #000;
    font-size: var(--fs14);
}
.map-txt__link a:hover {
    text-decoration: underline;
}
.map-box iframe {
    width: 100%;
    max-height: 350px;
}
@media screen and (max-width: 767px){
    .info-block {
        padding: 30px 0;
    }
    .info-ttl {
        margin-bottom: 10px;
        font-size: var(--fs20);
    }
    .info-box {
        grid-template-columns: 1fr;
    }
    .info-list {
        padding: 8px 0;
        grid-template-columns: 1fr;
    }
    .info-list__ttl,
    .info-list__txt {
        font-size: var(--fs14);
    }
    .map-box {
        margin-top: 40px;
    }
    .map-txt__ttl {
        font-size: var(--fs14);
    }
    .map-txt__ttl:before {
        width: 15px;
        height: 15px;
    }
    .map-txt__ttl:after {
        width: 7px;
        height: 7px;
    }
    .map-txt__link a {
        font-size: var(--fs13);
    }
}
/*-------------------------------------------------
|- tourist
-------------------------------------------------*/
.tourist {
    width: 89%;
    max-width: 960px;
    margin: auto;
    padding: 60px 0 100px;
}
.tourist-ttl {
    margin-bottom: 40px;
    color: #309ccf;
    font-size: 2.37rem;
    font-weight: 600;
    text-align: center;
}
.tourist-list {
    margin-bottom: 55px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 40px 30px;
}
.tourist-box {
    margin-top: 15px;
    padding-right: 40px;
    box-sizing: border-box;
    background: url(/english/tokyoSportsFacilities/assets/img/facility/icon_link.svg) no-repeat;
    background-size: 30px;
    background-position: top right;
}
.tourist-cate {
    margin-bottom: 8px;
}
.tourist-cate__item {
    padding: 0 10px;
    box-sizing: border-box;
    color: #333;
    font-size: var(--fs13);
    background: #dadada;
    border-radius: 5px;
    display: inline-block;
}
.tourist-place {
    margin-bottom: 8px;
    color: #002063;
    font-size: var(--fs18);
    font-weight: 600;
}
.tourist-time {
    color: #000;
    font-size: var(--fs15);
}
.num {
    margin: 0 3px;
    color: #002063;
    font-size: var(--fs18);
    font-weight: 600;
}
.btn-back {
    width: 210px;
    padding: 10px 0;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background: #999;
    background-image: url(/english/tokyoSportsFacilities/assets/img/facility/icon_back.svg);
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center left 15px;
    border: 0;
    border-radius: 30px;
    display: block;
    cursor: pointer;
    transition: .2s;
}
.btn-back:hover {
    opacity: .8;
}
@media screen and (max-width: 767px){
    .tourist {
        padding: 45px 0 60px;
    }
    .tourist-ttl {
        margin-bottom: 15px;
        font-size: var(--fs22);
    }
    .tourist-list {
        grid-template-columns: 1fr;
        grid-gap: 40px 0;
    }
    .btn-back {
        margin: auto;
    }
}
