@charset "utf-8";
/* CSS Document */
        /* 詳細ページ専用のスタイル */
        .detail-table {
	max-width: 800px;
	border-collapse: collapse;
	background: #fff;
	margin-right: auto;
	margin-left: auto;
        }
        .detail-table th, .detail-table td {
            border: 1px solid #ccc;
            padding: 12px 10px;
        }
        .detail-table th {
            background-color: #f0f7ff;
            color: #0073BB;
            width: 5%;
            text-align: left;
        }
        .team-intro-box {
	max-width: 800px;
	background: #fff;
	border: 2px solid #0073BB;
	border-radius: 8px;
	padding: 10px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
        }
        .team-intro-title {
		    font-weight: bold;
            color: #0073BB;
            border-bottom: 1px solid #0073BB;
            margin-bottom: 15px;
            padding-bottom: 5px;
        }

        /* スマホ用レイアウト：表を縦並びにする */
        @media screen and (max-width: 768px) {
            .detail-table th, .detail-table td {
                display: block;
                width: 100%;
                border-bottom: none;
            }
            .detail-table th {
                background-color: #0073BB;
                color: #fff;
                padding: 8px 10px;
            }
            .detail-table td {
                padding: 10px;
                border-bottom: 1px solid #ccc;
            }
        }
