:root{
    --base-black: #222;
    --base-gray: #808080;
    --lite-gray: #CCCCCC;
    --ex_lite-gray: #f9f9f9;
}

.judo_wrap {
    padding: 25px 10px;
    width: 100%;
    text-align: center;
}
@media (min-width: 768px){
    .judo_wrap {
        padding: 30px 2vw;
    }
}
@media (min-width: 1024px){
    .judo_wrap {
        padding: 40px 3vw;
    }
}

.judo_wrap p{
    margin-top: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
}
.judo_wrap img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.judo_mainimage{
    width: 100%;
    max-width: 1024px;
    margin: auto;
    height: auto;
    position: relative;
}
.judo_mainimage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.judo_mainimage img:first-of-type{
    
}
.judo_mainimage img:last-of-type{
    position: absolute;
    left: 0;
    top: 0;
    animation: judo_top ease 4s both;
    animation-delay: 1s;
}
@keyframes judo_top{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@media screen and (min-width: 1024px){
    .judo_mainimage{
        
    }
}

.pt0{
    padding-top: 0;
}


.judo_links{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    justify-items: center;
    max-width: 1000px;
    
    margin: auto;
    margin-bottom: 50px;
}
.judo_links a{
    width: 100%;
    text-decoration: none;
}
.judo_links li{
    box-sizing: border-box;
    border-radius: 3px;    
    
    width: 100%;
    max-width: 490px;
    height: 46px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    
    color: #fff;
    border: solid 2px var(--base-gray);
    background-color: var(--base-gray);
    
    transition: .4s;
    
    position: relative;
}

.judo_links li.active{
    color: var(--base-black);
    border-color: var(--base-black);
    background-color: #fff;
}
.judo_links li.active:after{
    content: '>';
    display: block;
    position: absolute;
    right: 30px;
    top : 11px;
    font-size: 20px;
    transition: .4s;
}
.judo_links li.active:hover{
    color: #fff;
    border-color: var(--base-gray);
    background-color: var(--base-gray);
}
.judo_links li.active:hover:after{
    right: 24px;
}
@media screen and (max-width: 768px){
    .judo_links{
        grid-template-columns: 1fr;
        width: 80%;
        max-width: 490px;
    }
}


.judo_grid{
    width: 100%;
    display: grid;
    grid-template-columns: .8fr 1fr;
    justify-items: start;
    align-items: start;
    margin-bottom: 0;
}


.judo_grid > h3{
    text-align: left;
}
.judo_grid > dl{
    width: 100%;
    font-family: "Sawarabi Mincho", serif;
}
.judo_grid > dl dt{
    text-align: left;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.7;
}
.judo_grid > dl dd{
    text-align: left;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
@media screen and (max-width: 768px){
    .judo_grid{
        display: block;
    }
    .judo_grid > dl dt{
        font-size: 18px;
    }
}


.judo_info{
    width: 100%;
    display: grid;
    grid-template-columns: .8fr 1fr;
    justify-items: start;
    align-items: start;
    margin: 20px 0;
}
.judo_info > dl{
    width: 100%;
}
.judo_info > dl dt{
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    color: #c7000a;
    
    line-height: 1;
    padding: 20px 0 10px 0;    
}
.judo_info > dl dt:first-of-type{
    border-top: solid 1px #c7000a;
}

.judo_info > dl dd{
    text-align: left;
    border-bottom: solid 1px #c7000a;
    font-size: 1.4rem;
    line-height: 1.8;
    padding-bottom: 14px;    
}

@media screen and (max-width: 768px){
    .judo_info{
        display: block;
    }
}




:root{
    --judo-color: #aaa;
}
.judo_btn{
    border: solid 4px var(--judo-color);
    background: #fff;
    padding: 2px;
    transition: .5s;
}
.judo_btn span{
    padding: 0;
    background: var(--judo-color);
    transition: .5s;
}
.judo_btn .icon-arrow-right{
    transition: .5s;
}
.judo_btn:hover{
    border: solid 4px #fff;
    background: var(--judo-color);
}
.judo_btn:hover span{
    background: #fff;
    color: var(--judo-color);
}
.judo_btn:hover .icon-arrow-right{
    color: var(--judo-color);
}


.judo_result{
    width: 100%;
    background: linear-gradient(to right, transparent 100px ,#c7000a 100px, #c7000a 85%, transparent 85%);
    padding: 40px 100px ;
    text-align: left;
    margin-bottom: 80px;
}
.judo_result li{
    background-color: #fff;
    border: solid 1px #ccc;
    padding: 16px 20px;
    margin: auto;
    margin-bottom: 40px;
    margin-left: 30px;
    
    display: grid;
    grid-template-columns: .8fr 1fr;
    grid-template-rows: auto auto;
    
    text-align: left;
}

.judo_result .res_status{
    grid-column: 1/2;
    grid-row: 1/2;
}
.judo_result .res_status h6{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 10px;
}
.judo_result .res_status dl{
    display: grid;
    grid-template-columns: 70px auto;
    padding-bottom: 10px;
}
.judo_result .res_status dt{
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.8;
}
.judo_result .res_status dd{
    font-size: 1.4rem;
    line-height: 1.8;    
}
.judo_result .res_status .period{
    display: inline-flex;
    flex-wrap: wrap;
}

.judo_result .res_img{
    grid-column: 1/2;
    grid-row: 2/3;
}
.judo_result .res_text{
    grid-column: 2/3;
    grid-row: 1/3;
    padding-left: 20px;
}
.judo_result .res_text p{
    font-size: 1.4rem;
    line-height: 1.8;
    word-break: break-word;
    margin: 0;
}

@media screen and (max-width: 1023px){
    .judo_result{
        background: linear-gradient(to right, transparent 45px ,#c7000a 45px, #c7000a 85%, transparent 85%);
        padding: 40px 40px 1px 40px;
    }
}
@media screen and (max-width: 768px){
    .judo_result{
        background: linear-gradient(to right, transparent 40px ,#c7000a 40px, #c7000a 90%, transparent 90%);
        padding: 40px 20px 1px 30px;
        margin-bottom: 60px;
    }
    .judo_result li{
        display: block;
        
    }
    .judo_result .res_status , .judo_result .res_img{
        margin-bottom: 20px;
    }
    .judo_result .res_text{
        padding-left: 0;
    }
}
@media screen and (max-width: 567px){
    .judo_result{
        background: linear-gradient(to right, transparent 20px ,#c7000a 20px, #c7000a 85%, transparent 85%);
    }
}


.member_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: start;
    grid-gap: 50px 50px;
}

.member_grid{
    display: grid;
    grid-template-columns: .8fr 1fr;
    justify-items: start;
    align-items: start;
}
.member_grid .gr1{
    grid-column: 1/3 ;
    font-size: 16px;
    font-weight: 700;
    line-height: 2.4;
}
.member_grid .gr2{
    grid-column: 1/2 ;
    padding-right: 10px;
    width: 100%;
    height: auto;
}
.member_grid .gr3{
    grid-column: 2/3 ;
    
    width: 100%;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.member_grid .gr3 h4{
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 10px;
}
.member_grid .gr3 dl{
    display: grid;
    grid-template-columns: 75px 1fr;
}
.member_grid .gr4{
    grid-column: 1/3 ;
    width: 100%;
    height: 100%;
}
.member_grid .gr4 dl{
    display: grid;
    grid-template-columns: 95px 1fr;
    padding-top: 10px;
}
.member_grid .gr3 dt , .member_grid .gr3 dd , .member_grid .gr4 dt , .member_grid .gr4 dd{
    font-size: 14px;
    line-height: 1.4;
    margin-top: 5px;
}

@media screen and (max-width: 900px){
    .member_wrap{
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }
    .member_grid{
        grid-template-columns: 1fr 1fr;
    }
    .member_grid .gr2{
        min-width: 150px;
        max-width: 300px;
    }
    .member_grid .gr3{
        justify-content: flex-start;
    }
}


.judo_ttlType01{
    width: fit-content;
    width: max-content;

    color: #000;
    font-weight: 700;
    
    font-size: 24px;
    line-height: 45px;
    padding-right: 50px;
    position: relative;
    
    margin-bottom: 20px;
}
.judo_ttlType01:after{
    content: '';
    display: block;
    background: #000;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    
    transform-origin: left;
    
    opacity: 0;
}
.judo_ttlType01.active:after{
    animation: judo_line linear .8s both;
}

@keyframes judo_line{
    0%{
        opacity: 0;
        transform: scaleX(0);
    }
    100%{
        opacity: 1;
        transform: scaleX(1);
    }
}

@media screen and (max-width: 768px){
    .judo_ttlType01{
        font-size: 18px;
        line-height: 30px;
        padding-right: 30px;
    }
}

.bg_litegray{
    background-color: var(--ex_lite-gray);
}
.pb60{
    padding-bottom: 60px;
}


.s_slide{
    opacity: 0;
}
.s_slide.active{
    animation: judo_slide ease 1s both;
}
@keyframes judo_slide{
    0%{
        opacity: 0;
        transform: translateX(10px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

.mb60{
    margin-bottom: 60px !important;
}


.judo_info_album{
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.judo_info_album.album1{
    width: 350px;
    grid-gap: 10px;
}
.judo_info_album .album_wide{
    grid-column: 1/3;
}

/*202404追加*/
@media (min-width: 768px) { 
  .btnWrap { 
      padding: 20px 60px; 
      display: -webkit-box; 
      display: -moz-box; 
      display: -ms-flexbox; 
      display: -webkit-flex; 
      display: flex; -webkit-justify-content: space-around; /* Safari */ justify-content: space-around; -webkit-flex-wrap: wrap; /* Safari */ flex-wrap: wrap; -webkit-align-content: stretch; /* Safari */ align-content: stretch; }
}

.btnWrap > div {
    padding: 10px 0;
}
@media (min-width: 768px) { 
  .btnWrap > div { width: 45%; } }

/*.btnWrap .judo_btn01 { background: #eee; -webkit-transition: 0.2s; -moz-transition: 0.2s; -ms-transition: 0.2s; -o-transition: 0.2s; transition: 0.2s; }

.btnWrap .judo_btn01:hover { background: #fff; }*/
.judo_btn01{
    background-color: #fff;
    color: var(--base-black);
    position: relative;
    border: solid 2px var(--base-gray);
    margin: 0 auto;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none !important;
    display: table;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    width: 100%;
    text-align: center;
    text-decoration: none;
    max-width: 400px;
    box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.4);
}
.judo_btn01:hover{
    background-color: var(--base-gray);
    color:#fff;
}
.judo_btn01 > span{
    padding: 5px 5px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 50px;
    width: 100%;
    width: 100vw;
    margin: 0 auto;
    text-decoration: none !important;
}

.year_list{
    border: none;
    text-align: left;
    margin: 20px 100px 0;
    font-size: 14px;
    line-height: 2;
}

.year_list li{
    display: inline-block;
    width:10%;
}
.year_list li a{
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #fff;
    color: var(--base-gray);
    border: solid 1px #777;
    /*border-right: 1px solid #fff;*/
}
.year_list li a:hover{
    background-color: var(--base-gray);
    color:#fff;
}
.now{
    /*background-color: #092B65!important;*/
    /*text-decoration: underline!important;*/
}
.result_bottom{
    margin-bottom: 0!important;
}
@media (max-width: 1024px){
    .year_list{
        margin: 20px 20px 0;
    }
    .year_list li{
        width:25%;
    }
}
.judo_links_4line{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    justify-items: center;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 50px;
}
.judo_links_4line a{
    width: 100%;
    text-decoration: none;
}
.judo_links_4line li{
    box-sizing: border-box;
    border-radius: 3px;
    width: 100%;
    max-width: 490px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border: solid 2px var(--base-gray);
    background-color: var(--base-gray);
    transition: .4s;
    position: relative;
}

.judo_links_4line li.active{
    color: var(--base-black);
    border-color: var(--base-black);
    background-color: #fff;
}
.judo_links_4line li.active:after{
    content: '>';
    display: block;
    position: absolute;
    right: 30px;
    top : 11px;
    font-size: 20px;
    transition: .4s;
}
.judo_links_4line li.active:hover{
    color: #fff;
    border-color: var(--base-gray);
    background-color: var(--base-gray);
}
.judo_links_4line li.active:hover:after{
    right: 24px;
}
@media screen and (max-width: 768px){
    .judo_links_4line{
        grid-template-columns: 1fr;
        width: 80%;
        max-width: 490px;
    }
}
.add_left{
    text-align: left!important;
    margin: 0 100px;
}
@media (max-width: 1024px){
    .add_left{
        margin: 0 20px;
    }
}