@media screen and (max-width:1025px) {


/*************************** D-01. 枠組共通 ***********************/
#wrapper {
    overflow: hidden;
    margin: 0 auto;
    padding: 106px 0 100px;
    position: relative;
}
main{
    flex-direction: column;
}
main article{
    width:100%;
    margin-top:2.0rem;;
}
/*************************** D-02. header *************************/
header {
    max-width: 1280px;
    margin: auto;
    position: fixed;
    z-index: 1000;
    width: 100%;
}
.header-container {
    background:rgba(255,255,255,0.95);
    padding: 10px 1%;
}
.header-container form {
    display: none;
    width: calc(100% - 42px - 1rem - 32px - 1rem);
    background: #fff;
    text-align: center;
    top: 3px;
    left: 0;
    padding: 14px;
    position: absolute;
}
.header-container input[type="text"] {
    width: 440px;
    margin: 0 auto;
}

.header-container img {
	width: 20rem;
}


.hamburger {
    display: block;
    position: relative;
    width : 42px;
    height: 42px;
    cursor: pointer;
    margin: 0 1rem;
    transition:background .3s;
}
.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px ;
    left: 6px;
    background: #333;
    transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 10px;
}
.hamburger span:nth-child(2) {
    top: 20px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.nav_active span:nth-child(1) {
    top : 20px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.hamburger.nav_active span:nth-child(2),
.hamburger.nav_active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-sp {
    display: flex;
    align-items: center;
}
.header-sp-search{
    display: none;
    cursor: pointer;
    width: 24px;
    margin-right: 8px;
    transition:background .3s;
    position: relative;
    text-indent: -9999px;
}
.header-sp-search::after {
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    content:"";
    width: 25px;
    height: 25px;
    display: block;
    background: url(/images/icons/icon-search.svg) no-repeat;
    background-size: auto 100%;
    transition:background-color .3s;
}
.header-sp-search.search_active::after{
    background:#333 url(/images/icons/icon-close.svg) no-repeat 50%;
    padding:4px;
    background-size: 70%;
}
/*************************** D-03. nav ***************************/
.megamenu {
    display: none;
    height: calc(100vh - 60px);
    overflow-y: scroll;
    background:rgba(255,255,255,1);
    margin-top:0;
}
/* .megamenu > ul {
    display: block;
    margin-bottom: 120px;
}
.megamenu > ul > li {
    text-align: left;
    width: 98%;
    margin:0 auto;
}
.megamenu > ul > li a {
    padding-left: 16px;
}
.megamenu > ul > li > a{
    border-top:1px solid #ccc;
}
.megamenu > ul > li.has-child > a::before {
    right: 16px;
    bottom: auto;
    left: auto;
    width: 8px;
    height: 8px;
}
.megamenu div {
    position: static;
} */
/* 第2階層 */
/* .megamenu div > ul {
    background: transparent;
}
.megamenu div > ul > li {
    width: 48%;
    border-bottom: none;
}
.megamenu div > ul > li > a {
    padding-left: 0;
} */
/* 第3階層 */
/* .megamenu div > ul > li > ul {
    padding: 0 0 10px 2px;
}

.megamenu div > ul > li,
.megamenu div > ul > li > ul,
.megamenu div > ul > li > ul > li > ul,
.megamenu div > ul > li > ul > li > ul > li > ul {
    background: transparent;
}
.megamenu div > ul > li > ul > li{
    border-bottom: 1px solid #ccc;
}
.megamenu div > ul > li > ul > li > ul > li, 
.megamenu div > ul > li > ul > li > ul > li > ul > li {
    border-bottom: none;
} */

/* ヘッダーSNS */
/* .megamenu .header-sns {
	display: flex;
	align-items: center;
    max-width: 400px;
    margin: auto;
}

.megamenu .header-sns li {
	font-size: 42px;
	font-weight: bold;
	margin: 20px;
	list-style: none;
}
.megamenu .header-sns li a{
	color: #3c3635;
    font-weight: bold;
} */

.header-sns li img {
	width: 35px;
}



/*************************** D-04. main共通 ***********************/
.pc{
    display: none;
}

.sp{
    display: inherit;
}


ul.fourColumns li{
    width: 31.3333%;
    margin:1%;
}
ul.fiveColumns li{
    width: 23%;
    margin:1%;
}
ul.sixColumns li{
    width: 23%;
    margin:1%;
}

.flex-container-three > *{
    width: 48%;
}
.flex-container-four > *{
    width: 31.3333%;
}

div.flow-ol-container ol{
    flex-direction: column;
    width: 100%;
    background: linear-gradient(to bottom, #f0f2f4, #999);
}
div.flow-ol-container ol li{
    width: 100%;
    padding: 30px 0;
    background:url(../images/icons/flow-bottom-start.svg) no-repeat center bottom, url(../images/icons/flow-bottom-end.svg) no-repeat center top;
    background-size: 160px auto;
}
div.flow-ol-container ol li:last-child{
    background: url(../images/icons/flow-bottom-end.svg) no-repeat center top;
    background-size: 160px auto;
    border: none;
}
div.flow-ol-container ol li:first-child{
    background: url(../images/icons/flow-bottom-start.svg) no-repeat center bottom;
    background-size: 160px auto;
}
div.flow-ol-container ol li::before{
    counter-increment: flow-list;
    content: counter(flow-list);
    display: block;
    font-size: 4.8rem;
    padding-bottom: 1rem;
}

.page-parent li{
    min-height: 16.0rem;
}
.page-parent li a{
    font-size: 2.2rem;
}

/*************************** D-05. h1, h2見出し ********************/
/*************************** D-06. breadcrumb *********************/
.breadcrumb ol li:first-child {
	margin-left: 0;
}
/*************************** D-07. pager backnumber等 *************/
/*************************** D-08. aside **************************/
aside {
    width: 100%;
    margin-left: 0;
    position:inherit;
    display: block;
}

aside nav > ul{
    display: flex;
    flex-wrap: wrap;
}
aside nav > ul > li{
    width:48%;
    margin:1%;
}
aside nav ul li ul{
    margin-left:6px;
    padding-left:6px;
}
aside nav ul li a{
    font-size: 1.6rem;
}
aside nav > ul > li > ul > li a{
    padding:10px 4px;
}

/*************************** D-09. footer *************************/
footer {
	padding: 0 0 80px;
}

footer ul.footerNav li {
    padding: 18px;
    width: 100%;
}
footer ul.footerNav li a {
    padding: 0;
}
footer .logo img {
    max-width: 200px;
    height: auto;
    margin-top: 32px;
}
footer address {
    margin: 16px 0 32px;
}
footer small {
    font-size: 1.2rem;
}

#pageTop {
    bottom: 90px;
}

.line-container a {
	padding: 16px;
}

/*************************** D-10. toppage ***********************/
.pc-fv {
    display: none;
}
.sp-fv {
    display: block;
}
.top-fv img {
    height: 534px;
    object-position: 0 70%;
}

.top-01 {
    padding: 50px 0 110px;
}
.top-01 h1,
.top-01 h1 span {
    font-size: 4.8rem;
}

#top h2 {
    margin-bottom: 48px;
}

.top-02 {
    margin-top: 100px;
}
.top-02-container {
    flex-direction: column;
}
.top-02-container section {
    width: 100%;
}
.top-02-container section {
    margin: 0;
}
.top-02-container section.top-02-left-box {
    margin-bottom: 48px;
}
.top-02-form-container form dl label {
	padding: 8px 32px;
}
.top-02-form-container form dl dd {
    padding: 12px 0 12px 130px;
}
.top-02-left-box img {
    margin-top: 48px;
}
.top-02-left-box div {
    margin: 48px 24px 48px 24px;
}

.top-03 {
    margin-top: 100px;
}

.top-04 {
    padding: 60px 0;
    margin-top: 100px;
}
#top .top-04 h2 {
    padding-bottom: 0;
    text-align: center;
}
.top-03-container section {
    width: 48%;
    margin: 0 1% 30px;
}
.top-04-container section {
    border: none;
}
.top-04-container {
    margin-top: 48px;
    padding: 48px 24px
}


/*************************** D-11. form **************************/
.keywordsearch-page form dl dd {
    padding: 10px 0 10px 0;
}
.keywordsearch-page form dl dt {
    width: 100%;
}
.keywordsearch-page input[type="text"] {
    border: 1px solid #787878;
}


/*************************** D-12. レギュレーション ********************/
pre.show{
    max-height: 80vh;
}
.regulation-color-container ul li {
    width: 31.3333%;
}

/*************************** D-13. 検索結果 ***********************/
p.search-jump{
    display:inherit;
    margin:-2.0rem 0;
}
p.search-jump a{
    padding: 5px;
    text-align: center;
    margin:0 auto;
    font-weight: bold;
    border-radius: 5px;
    cursor :pointer;
    display: block;
    transition: .5s;
}
p.search-jump a::before {
    display: inline-block;
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight:900;
    padding-right: 5px;
    transition: 0.2s;
}
p.search-jump a:hover {
    background: #eee;
}


/*************************** D-14. 内部ページ ***********************/


/* B-14-6 試合結果（カテゴリー）*/
.tablet{
    display: inherit !important;
}
ul.result li{
    margin: 8px 0.8%;
}

div.result table thead th:nth-child(1){}
div.result table thead th:nth-child(2){display: none;}
div.result table thead th:nth-child(3){}
div.result table thead th:nth-child(4){display: none;}
div.result table thead th:nth-child(5){}

div.result table tbody td{
    font-size: 1.4rem;
    line-height: 1.4;
    vertical-align: inherit;
}
div.result table tbody td:nth-child(1) {}
div.result table tbody td:nth-child(1) em{
    display: block !important;
    text-align: center;
    margin-top: 5px;
}
div.result table tbody td:nth-child(2) {display: none;}
div.result table tbody td:nth-child(3) {
    display: flex;
    align-items: center;
    text-align: left;
}
div.result table tbody td:nth-child(3) span{
    margin-right: 5px;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}
div.result table tbody td:nth-child(3) div{
    text-align: center;
    width: 100%;
}
div.result table tbody td:nth-child(3) span img{
    width: 100%;
    height: auto;
}
div.result table tbody td:nth-child(3) em{
    display: block !important;
    text-align: center;
    margin-top: 5px;
}
div.result table tbody td:nth-child(4) {display: none;}
div.result table tbody td:nth-child(5) {
    font-size: 1.6rem;
}
div.result table tbody td:nth-child(5) a{
    text-decoration: none;
}
div.result table tbody td:nth-child(5) a span{
    text-decoration: none;
    display: block;
    font-size: 2.0rem;
}
dl.result-options{
    width: 100%;
    margin-bottom: 0.5rem;
}
dl.result-options select {
    border-radius: 0;
    background: #fff url(/images/icons/sort-down-solid.svg) no-repeat right 4px top 20%;
    background-size: 14px;
    color: #333;
}

.job-list-box  {
	width: 48%;
    margin: 0 1% 24px;
    padding: 16px;
    flex-direction: column;
}
.job-list-box .img {
    width: 100%;
    margin-bottom: 8px;
}
.job-list-box .img img {
    max-height: 200px;
}
.job-list-infobox {
    width: 100%;
    margin-left: 0;
}
.job-list-infobox h2 {
	padding-top: 8px;
}

.tokyo-job-container .job-list-infobox h2 {
	padding-top: 0;
}


.job-01 {
    flex-direction: column-reverse;
    margin-top: 48px;
}
.job-info-right,
.job-info-left {
	width: 100%;
    margin: 0 0 32px;
}
.job-02 {
    margin-top: 0;
}
.job-03 {
    margin-bottom: 56px;
}


}/* max-width */

