@charset "utf-8";

.first-view {
    height: calc(100vh - 110px); /* 高さ　ブラウザいっぱい ヘッダー分引く　171頁参照 */
    background-image: url(../image/show_img.jpg);
    background-repeat: no-repeat; /*173頁参照*/
    background-position: center;
    background-size: cover;
}

.first-view-text {
    width: 100%;
    max-width: 1200px;
    margin-left: auto; /*左右中央配置　177頁参照*/
    margin-right: auto;
    padding-left: 40px; /*？？変化しない*/
    padding-right: 40px;
    padding-bottom: 10px; /*？？変化しない*/
    color:white;
    font-weight: bold;
    text-shadow: 1px 1px 10px #000;

}

.first-view-text h1 { /* 179頁参照 */
    font-family:'montserrat', sans-serif;
    font-size:  56px;
    line-height:  72px;
}

.first-view-text p {
    font-size: 18px;
    margin-top: 20px;
}

.lead {
    max-width: 1200px;
    margin: 60px auto;
}

.lead p{
    line-height: 2;
    text-align: center;
}

.recommended{ /*212頁参照*/
    /* background-color: #f8f8f8; */
    background-image: url(../image/back.jpg);
    padding-top: 45px;
    padding-bottom: 55px;
}


 

.recommended h2{
    padding-top: 30px;
    font-size: 30px;
    font-weight:bold;
    text-align: center;

}
.recommended h3{
    font-size: 22px;
    font-weight:bold;
    text-align: center;
}

.recommended h2::after{  /*214頁参照　疑似要素　横棒
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;　*/
}

.item-list { /*216頁参照*/
    display: flex; /*横並び*/
    /* min-width: 400px; */
    flex-wrap: wrap; /*子要素を複数行で折り返して並べる 200頁参照*/
    justify-content: center; /*チーム中央配置*/
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px 60px 50px 60px; /*上 右 下 左*/ 
    /* overflow-x:auto; */
    outline-style: double; /*Leagueの枠*/

}

.item-list li{
    /*flex-shrink: 0; /*縮まないようにする　２１７頁参照*/
    width: 260px;
    margin: 20px 20px; /*上下　左右*/
    padding-left: 5px;
    padding-right: 5px;
    outline-style:solid; /*球団の枠*/
}

.item-list li:first-child { /*218頁参照*/
    /* margin-left: 0; */
    /* margin-right: auto; */
}

.item-list dt{
    font-weight: bold;
    text-align: center;
    font-size: 18px;
}

.item-list dd{
    text-align: center;
}

.item-list p{
    text-align: center;
}

.location {
    text-align: center;
    /* font-size: 50px; */
}

/* .map { マップの拡大表示を消す
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
}
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 360px);
	margin-top: -170px;
}*/


@media (max-width:800px) { /* 800px以下の場合 187頁参照 */
    .first-view {
    height: calc(100vh - 50px); /* 高さ　ブラウザいっぱい calcは計算　ヘッダー分引く　187頁参照 */
    background-image: url(../image/Yu\ Darvish_.jpg);
    align-items: flex-start;
    }
    .first-view-text {
        padding-top: 400px;
        padding-left: 20px;
    }
    .first-view-text h1 {
        font-size: 36px;
        line-height: 48px;
    }
    .first-view-text p { /* 189頁参照 */
        font-size: 14px;
        margin-top: 15px;
    }
    .lead {
        padding-left: 20px;
        padding-right: 20px;
    }
    .lead p {
        text-align: left;
    }
    .item-list{ /*223頁参照*/
        padding-left: 20px;
        padding-right: 20px;
    }
    .item-list li{
        width: 260px;
        /* margin-left: 30px; */
    }

}
