@charset "UTF-8";
/* CSS Document */
      

        h1 {
            text-align: center;
            color: #333;
            margin-top: 20px;
            font-size: 24px;
        }


tbody{
	border-bottom: 1px dashed white;
	padding:10px 0px;
	box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}



@media (min-width: 1020px) {
	
	h2{
		width:100%;
		height:auto;
		text-align: center;
		color: white;
	}
    .content {
        width: 95%;
        height: auto;
        display: block;
        margin: 0 auto;
        box-sizing: border-box;
        background: none;
    }

    .content h1 {
        width: 100%;
        height: auto;
        text-align: center;
        font-weight: bold;
        color: white;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        margin: 10px 0px;
    }

    tbody {
        width: 100%;
        height: auto;
        background: none;
    }

    tr {
        width: 100%;
        height: auto;
        background: none;
        box-sizing: border-box;
        color: white;
        line-height: 2em;
    }

    th.team_cell {
        width: 35%;
        height: auto;
        text-align: center;
		
    }

    th.score_cell {
        width: 30%;
        height: auto;
        text-align: center;
    }

    .day-title {
        width: 100%;
        height: auto;
        text-align: center;
    }

    td.goal-cell {
        width: 30%;
        height: auto;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    td.team-cell {
        margin: 10px 0px;
        text-align: center;
		vertical-align: top; /* テキストを上段に配置 */
    }

    /* クラブ名のセルの背景を赤にする */
    td.club_cell {
        background-color: red;
        color: white; /* 文字色を白にして見やすくする */
        font-weight: bold;
        text-align: center;
        padding: 8px;
    }

    /* 試合ごとに 10px の間隔を空ける */
    .match-section {
        margin-bottom: 10px;
    }

    /* 試合終了リンク */
    .match-status {
        width: 100%;
        display: block;
        text-align: center;
        font-size: 14px;
        text-decoration: none;
        color: black;
        background-color: white;
        padding: 5px 8px;
        border-radius: 4px;
        font-weight: bold;
        margin: 20px 0px;
    }

    .match-status:hover {
        background-color: white;
    }
	
	
	
	/* スマホ向けの検索フォーム */
.search-form {
	width:70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

/* 入力フィールド */
.search-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 25px 0 0 25px;
    outline: none;
}

/* 検索ボタン */
.search-button {
    background:#EC5600; /* おしゃれなオレンジ系 */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-button:hover {
    background: #e64a19;
}

	
	p#arena{
		width:100%;
		heigth:auto;
		
	}
	
	.lp_arena {
		width:60%;
		height:auto;
		display:block;
		margin:10px auto;
	}
	
}



@media (max-width: 1020px) and (min-width: 768px) {
	
	h2{
		width:100%;
		height:auto;
		text-align: center;
		color: white;
	}
    .content {
        width: 95%;
        height: auto;
        display: block;
        margin: 0 auto;
		padding-top:100px;
        box-sizing: border-box;
        background: none;
    }

    .content h1 {
        width: 100%;
        height: auto;
        text-align: center;
        font-weight: bold;
        color: white;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        margin: 10px 0px;
    }

    tbody {
        width: 100%;
        height: auto;
        background: none;
    }

    tr {
        width: 100%;
        height: auto;
        background: none;
        box-sizing: border-box;
        color: white;
        line-height: 2em;
    }

    th.team_cell {
        width: 35%;
        height: auto;
        text-align: center;
    }

    th.score_cell {
        width: 30%;
        height: auto;
        text-align: center;
    }

    .day-title {
        width: 100%;
        height: auto;
        text-align: center;
    }

    td.goal-cell {
        width: 30%;
        height: auto;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    td.team-cell {
        margin: 10px 0px;
        text-align: center;
		vertical-align: top; /* テキストを上段に配置 */
    }

    /* クラブ名のセルの背景を赤にする */
    td.club_cell {
        background-color: red;
        color: white; /* 文字色を白にして見やすくする */
        font-weight: bold;
        text-align: center;
        padding: 8px;
    }

    /* 試合ごとに 10px の間隔を空ける */
    .match-section {
        margin-bottom: 10px;
    }

    /* 試合終了リンク */
    .match-status {
        width: 100%;
        display: block;
        text-align: center;
        font-size: 14px;
        text-decoration: none;
        color: black;
        background-color: white;
        padding: 5px 8px;
        border-radius: 4px;
        font-weight: bold;
        margin: 20px 0px;
    }

    .match-status:hover {
        background-color: white;
    }
	
	
	
	/* スマホ向けの検索フォーム */
.search-form {
	width:80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

/* 入力フィールド */
.search-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 25px 0 0 25px;
    outline: none;
}

/* 検索ボタン */
.search-button {
    background:#EC5600; /* おしゃれなオレンジ系 */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-button:hover {
    background: #e64a19;
}

	
	p#arena{
		width:100%;
		heigth:auto;
		
	}
	
	
	.lp_arena {
		width:80%;
		height:auto;
		display:block;
		margin:10px auto;
	}
	
}



/* スマホでもPCと同じテーブルレイアウトを維持 */
@media screen and (max-width: 768px) {
	
	h2{
		width:100%;
		height:auto;
		text-align: center;
		color: white;
	}
    .content {
        width: 95%;
        height: auto;
        display: block;
        margin: 0 auto;
		padding-top:80px;
        box-sizing: border-box;
        background: none;
    }

    .content h1 {
        width: 100%;
        height: auto;
        text-align: center;
        font-weight: bold;
        color: white;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        margin: 10px 0px;
		box-sizing: border-box;
    }

    tbody {
        width: 100%;
        height: auto;
        background: none;
    }

    tr {
        width: 100%;
        height: auto;
        background: none;
        box-sizing: border-box;
        color: white;
        line-height: 2em;
    }

    th.team_cell {
        width: 35%;
        height: auto;
        text-align: center;
    }

    th.score_cell {
        width: 30%;
        height: auto;
        text-align: center;
    }

    .day-title {
        width: 100%;
        height: auto;
        text-align: center;
    }

    td.goal-cell {
        width: 30%;
        height: auto;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    td.team-cell {
        margin: 10px 0px;
        text-align: center;
		vertical-align: top; /* テキストを上段に配置 */
    }

    /* クラブ名のセルの背景を赤にする */
    td.club_cell {
        
        color: white; /* 文字色を白にして見やすくする */
        font-weight: bold;
        text-align: center;
        padding: 8px;
    }

    /* 試合ごとに 10px の間隔を空ける */
    .match-section {
        margin-bottom: 10px;
    }

    /* 試合終了リンク */
    .match-status {
        width: 100%;
        display: block;
        text-align: center;
        font-size: 14px;
        text-decoration: none;
        color: black;
        background-color: white;
        padding: 5px 8px;
        border-radius: 4px;
        font-weight: bold;
        margin: 20px 0px;
    }

    .match-status:hover {
        background-color: white;
    }
	
	
	
	/* スマホ向けの検索フォーム */
.search-form {
	width:90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    background: none;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

/* 入力フィールド */
.search-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 25px 0 0 25px;
    outline: none;
}

/* 検索ボタン */
.search-button {
    background:#EC5600; /* おしゃれなオレンジ系 */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-button:hover {
    background: #e64a19;
}

	p#arena{
		width:100%;
		heigth:auto;
		
	}
	
	.lp_arena {
		width:80%;
		height:auto;
		display:block;
		margin:10px auto;
	}
	
	
	
										} /* max-width: 768px */





/* トップページ検索　　*/
.search-box {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-box input {
    width: 80%;
    padding: 8px;
    font-size: 16px;
}

.search-box button {
    padding: 8px;
    cursor: pointer;
}

#match-list {
    list-style: none;
    padding: 0;
}

#match-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#match-list .home {
    text-align: left;
    flex: 1;
}

#match-list .score {
    text-align: center;
    flex: 1;
    font-weight: bold;
}

#match-list .away {
    text-align: right;
    flex: 1;
}

#match-list .status {
    display: block;
    text-align: center;
    margin-top: 5px;
    color: #007bff;
    text-decoration: none;
}

#match-list .status:hover {
    text-decoration: underline;
}


/* スマホ用のレスポンシブ調整 */
@media screen and (max-width: 480px) {
	
	/* header paadding設定 */
	 .content {
        width: 95%;
        height: auto;
        display: block;
        margin: 0 auto;
		padding-top:60px;
        box-sizing: border-box;
        background: none;
    }

    .content h1 {
        width: 100%;
        height: auto;
        text-align: center;
        font-weight: bold;
        color: white;
    }

	
	
	
	
	.lp_arena {
		width:80%;
		height:auto;
		display:block;
		margin:10px auto;
	}
	
	
	
	
}





    