@charset "utf-8";

*,*:before,*:after{
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color:#21386c;
}

body{
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size:16px;
    color:#555555;
    -webkit-text-size-adjust:none;
}

.yellow{
    color:#fff600;
}

.red{
    color:#cc1616;
}

/*****************
共通
*****************/

header{
    width:100%;
}



.inner{
    width:1100px;
    margin:0 auto;
    padding:0 20px;
}

.flexbox{
    display:flex;
    justify-content: space-between;
}

.sub_menu{
    width:100%;
    margin-top:10px;
}

.sub_menu ul{
    list-style: none;
    display:flex;
    font-weight:bold;
    width:280px;
    margin-left:auto;
}

.sub_menu ul li:first-child{
    margin-right:50px;
}

.sub_menu ul li{
    position:relative;
}


.sub_menu_access span{
    width:22px;
    height:20px;
    background:url(../images/access_icon.png) center center no-repeat;
    display:inline-block;
    background-size:contain;
    position: absolute;
    left:-24px;
    bottom:-2px;
}

.sub_menu_contact span{
    width:22px;
    height:14px;
    background:url(../images/contact_icon.png) center center no-repeat;
    display:inline-block;
    background-size:contain;
    position:absolute;
    left:-24px;
    bottom:0px;
}




.nav{
    min-width:1100px;
    background:#e3e3e3;
}

.nav ul{
    list-style: none;
    width:1100px;
    margin:0 auto;
    display:flex;
}

.nav ul li{
    width:16.666%;
    text-align:center;
    font-weight:bold;
}

.nav ul li a{
    display:block;
    padding:24px 0;
}

footer .info{
    min-width:1100px;
    width:100%;
    background:#eeeeee;
    padding:40px 0;
}

footer .info .inner{
    display:flex;
}

footer .info .admin{
    width:380px;
}

footer .info .admin h3{
    color:#21386c;
    font-size:24px;
    margin-bottom:20px;
}

footer .info .admin h4{
    font-size:20px;
    margin-bottom:20px;
}

footer .info .admin p{
    line-height:2;
    letter-spacing: -0.03em;
}

footer .info .navi{
    margin-left:160px;
    width:725px;
}

footer .info .navi ul{
    list-style: none;
    display:flex;
    flex-wrap:wrap;
    margin-top:30px;

}

footer .info .navi ul li{
    width:33%;
    line-height:3;
}

footer .info .navi ul li:before{
    content:"-";
    display:inline-block;
}

footer .copy{
    min-width:1100px;
    width:100%;
    background:#21386c;
    color:white;
    text-align:center;
    padding:30px 0;
}

.breadcrumb_list{
    display:flex;
    list-style: none;
    width:1100px;
    padding:0 30px;
    margin:10px auto 50px auto;
}

.breadcrumb_list .breadcrumb_item:first-child{
    margin-right:30px;
}

.breadcrumb_list .breadcrumb_item:last-child:before{
    content:">";
    display:inline-block;
    position:relative;
    right:10px;
}

.breadcrumb_list .breadcrumb_item:first-child a{
    text-decoration: underline;
}

.breadcrumb_list .breadcrumb_item:last-child a{
    pointer-events: none;
    color:black;
}

.page_title{
    background:#21386c;
    padding:50px 0;
    min-width:1100px;
}

.page_title h2{
    color:white;
    text-align:center;
    font-size:36px;
}



.pc_only{
    display:block !important;
}

.sp_only{
    display:none !important; 
}

@media screen and (max-width:640px) {

    header{
        margin:10px 0 5px 0;
    }

    header h1 img{
        width:85%;
    }


    .inner{
        width:95%;
        padding:0;
    }

    .flexbox{
        display:block;
    }
    

    .sub_menu{
        display: none;
    }
    
    .overlay{
        content: "";
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity .5s;
      }

      .overlay.open {
        width: 100%;
        height: 100%;
        opacity: 1;
      }

      .menu-trigger {
        display: inline-block;
        width: 36px;
        height: 28px;
        vertical-align: middle;
        cursor: pointer;
        position: fixed;
        top: 20px;
        right: 10px;
        z-index: 100;
      /*   transform: translateX(0);
        transition: transform .5s;
       */}
      /* .menu-trigger.active {
        transform: translateX(-250px);
      }
       */.menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #21386c;
        transition: all .5s;
      }
      .menu-trigger.active span {
        background-color: #fff;
      }
      .menu-trigger span:nth-of-type(1) {
        top: 0;
      }
      .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
      }
      .menu-trigger span:nth-of-type(2) {
        top: 12px;
      }
      .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
      }
      .menu-trigger span:nth-of-type(3) {
        bottom: 0;
      }
      .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-12px) rotate(45deg);
      }

      .menu-trigger {
        transform: translateX(0);
      }
      .menu-trigger.active {
        transform: translateX(-250px);
      }
      .nav{
        min-width:inherit;
        width: 250px;
        height: 100%;
        padding-top: 30px;
        background-color: rgb(16, 69, 153, 0.8);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10;
        transform: translate(250px);
        transition: all .5s;
    }
      
    .nav.open {
        transform: translateZ(0);
    }

    .nav ul{
        display:block;
        width:100%;
    }

    .nav ul li{
        margin:0 auto;
        width:100%;
    }

    .nav ul li a{
        color:white;
        display:block;
        padding:20px 0;
    }

    footer .info .inner {
        display: block;
    }    

    footer .info .navi {
        display:none;
    }

    footer .info{
        padding:30px 0; 
        min-width:inherit;
    }

    footer .info .admin{
        width:100%;
    }
    

    footer .info .admin h3{
        font-size:20px;
    }

    footer .info .admin h4{
        font-size:18px;
        margin-bottom:10px;
    }
    
    
    footer .copy {
        min-width:inherit;
        font-size:14px;
        padding: 20px 0;
    }    

    .breadcrumb_list{
        width:95%;
        padding:0;
    }
        
    .page_title{
        background:#21386c;
        padding:40px 0;
        min-width: inherit;
    }
    
    .page_title h2{
        color:white;
        text-align:center;
        font-size:26px;
    }
    
   
    .pc_only{
        display:none !important;
    }
    
    .sp_only{
        display:block !important; 
    }

}

/**************************
index.html
**************************/


.toppic{
    min-width:1100px;
    background:url(../images/toppic.jpg) center center no-repeat;
    height:456px; 
    opacity: 0.9;
}

.toppic .inner{
    position:relative;
}

.theme{
    position:absolute;
    top:37px;
    left:0px;
}

.theme h2{
    font-size:45px;
    color:#fff600;
    margin-bottom:10px;
}

.theme .circle{
    content:"";
    display:inline-block;
    font-size:18px;
    color:#21386c;
    background:#fff600;
    width:80px;
    height:80px;
    border-radius: 50%;
    text-align:center;
    line-height:80px;
    position:relative;
    bottom:10px;
}

.theme .flex{
    display:flex;
}

.theme .flex:not(:first-of-type){
    margin-bottom:10px;
}

.theme .square{
    background:white;
    padding:3px 15px;
    font-size:18px;
    height:24px;
    font-weight:bold;
    color:#21386c;
    margin-right:20px;
    margin-top:7px;
    margin-left:12px;
}

.theme .text{
    font-size:22px;
    font-weight:bold;
    color:white;
    line-height:1.5;
}

.theme .normal{
    font-weight:normal;
}

.theme .big{
    font-size:48px;
}

.theme .kaiki{
    margin-bottom:-8px;
}

.theme .kaiki .text{
    position:relative;
    bottom:28px;
}

.theme .enter{
    width:100%;
    margin:0 auto;
    padding:10px;
}

.theme .enter .title{
    width:99%;
    margin:0 auto 10px;
    padding:10px ;
    text-align:center;
    color:white;
    font-weight:bold;
    font-size:20px;
    background:#cc1616;
}

.theme .enter .text{
    color:white;
    text-align:center;
    font-size:24px;
}

.newsarea{
    width:700px;
}

.news{
    margin:100px 0;
}

.news h2{
    text-align:center;
    margin-bottom:35px;
}

.news dl{
    width:700px;
    margin:0 auto;
    border-bottom:1px solid #959595;
    padding:20px 0;
    display:flex;
}

.news dl{
    border-bottom:1px solid #959595;
}

.news dl:first-of-type{
    border-top:1px solid #959595;
}

.news .date{
    width:150px;
    line-height:1.5;
}

.news .content{
    line-height:1.5;
}

.index .shouroku{
    width:300px;
}

.index .shouroku a:hover{
    opacity: 0.8;
}

.index .shouroku img{
    width:100%;
    margin-bottom:10px;
}

.index figure figcaption{
    text-align:center;
    background:#c7303e;
    color:#ffffff;
    padding:10px 0;
    border-radius: 10px;
}

.index .thanks{
    margin-top:50px;
}

.index .thanks .bg{
    background:#fffbde;
    padding:30px 0;
    border-radius: 25px;
}

.index .thanks .txt{
    text-align:center;
    line-height:1.8;
    font-size:22px;
    font-weight:bold;
    color:#c7303e;
}

@media screen and (max-width:640px) {

    .toppic{
        min-width: inherit;
        background:url(../images/toppic_sp.jpg?20220927) center center no-repeat;
        height:inherit;
        padding-top:48%;
        background-size:cover;
        opacity: 0.9;
    }

    .theme{
        display:none;
    }

    .newsarea{
        width:100%;
    }
    

    .news{
        margin:30px 0;
    }
        
    .news h2{
        margin-bottom:20px;
    }

    .news h2 img{
        width:50%;
    }

    .news dl{
        width:100%;
        display:block;
    }

    .index .news .shouroku{
        margin:30px auto 0;
    }

    .index .thanks{
        margin-top:30px;
    }    

    .index .thanks .bg{
        background:#fffbde;
        padding:20px;
        border-radius: 0;
    }
    

    .index .thanks .txt{
        text-align:left;
        line-height:1.8;
        font-size:16px;
        font-weight:bold;
        color:#c7303e;
    }
    
    
}

/**************************
準備中
**************************/


.preparation{
    padding:150px 0 200px 0;
    text-align:center;
}

.preparation h2{
    font-size:50px;
    margin-bottom:20px;
}

.preparation p{
    text-align:center;
    font-weight:bold;
    line-height:2;
    margin-bottom:30px;
}

.preparation a{
    display:inline-block;
    text-align:center;
    font-weight:bold;
    text-decoration: underline;
}

@media screen and (max-width:640px) {

    .preparation{
        padding:50px 0;
    }

    .preparation h2{
        font-size:30px;
    }
        
}



/**************************
greet.html
**************************/

.greet{
    margin-bottom:100px;
}

.greet h2{
    font-size:28px;
    text-align:center;
    padding:20px 0;
    background:#e7e7e7;
    margin-bottom:20px;
}

.greet p{
    font-size:18px;
    margin-bottom:18px;
    line-height:1.8;
}

.greet .name{
    text-align:right;
    margin-bottom:0;
}


@media screen and (max-width:640px) {

    .greet{
        margin-bottom:50px;
    }
    
    .greet h2{
        font-size:20px;
    }

    .greet p{
        font-size:16px;
    }
            

}


/**************************
outline.html
**************************/

.outline{
    margin-bottom:100px;
}

.outline table{
    width:100%;
    border-collapse: collapse;
    text-align:center;
}


.outline table th, .outline table td{
    padding:20px 0;
    font-size:20px;
    width:100%;
    display:block;
}

.outline table th{
    vertical-align: middle;
    background:#e3e3e3;
}

.outline table td{
    line-height:1.8;
}

.tab{
    list-style:none;
    display:flex;
    justify-content: space-between;
}

.tab li{
    text-align:center;
    width:32%;
}

.tab li a{
    display:block;
    padding:20px 0;
    background:#959595;
}

.tab li a.active{
    background:#21386c;
    color:white;
}


.content{
    list-style:none;
}

.content li{
    padding:30px 0;
    display:none;
}

.content li.active{
    display:block;
}



@media screen and (max-width:640px) {

    .outline{
        margin-bottom:50px;
    }
    
    .outline table th, .outline table td{
        font-size:16px;
    }
        
}


/**************************
collect.html
**************************/

.collect_bg{
    background:url(../images/daruma_bg.png) center center no-repeat;
    background-size:cover;
}

.collect_bg .breadcrumb_list{
    margin-top:0;
    padding-top:10px;
}

.collect{
    margin-bottom:100px;
}

.collect .inner{
    background:rgba(255,255,255,0.8);
    padding:20px;
}

.collect .block{
    margin-bottom:20px;
}

.collect h3{
    padding:20px 0;
    font-size:20px;
    background:#21386c;
    color:white;
    margin-bottom:20px;
    text-align:center;
}

.collect p{
    font-size:18px;
    text-align:center;
    line-height:1.5;
    font-weight:bold;
}

.btn{
    width:400px;
    background:#c7303e;
    text-align:center;
    border-radius: 10px;
    transition: 0.5s;
}

.btn a{
    display:block;
    color:white;
    padding:20px 0;
}

.btn:hover{
    transform: translateY(5px);
}

.collect .btn{
    margin:30px auto 0px auto;
}

.collect ul{
    list-style: none;
    width:800px;
    margin:30px auto;
    background:#e7e7e7;
    padding:20px;
}

.collect li{
    line-height:1.5;
    margin-bottom:20px;
    font-weight:bold;
}

.collect li:last-child{
    margin-bottom:0;
}

.collect li:before{
    content:"■";
    display:inline-block;
}

.sp_only_text{
    display:none;
}

.pc_only_text{
    display:inline-block;
}



@media screen and (max-width:640px) {

    .collect_bg{
        background:none;
    }    

    .collect{
        margin-bottom:50px;
    }

    .collect .inner{
        background:none;
        padding:0px;
    }
    
        
    .collect h3{
        font-size:16px;
    }

    .collect p{
        font-size:16px;
        font-weight:normal;
    }
            
    .collect ul{
        width:100%;
    }

    .collect ul li{
        padding-left:1em;
        text-indent:-0.5em;
        font-weight:normal;
    }

    .btn{
        width:100%;
    }

    .sp_only_text{
        display:inline-block;
    }

    .pc_only_text{
        display:none;
    }
            

}


/**************************
program.html
**************************/

.program .outline{
    margin-bottom:50px;
}

.program .outline .box{
    text-align:center;
    background:#e7e7e7;
    padding:30px 0;
}

.program .outline .box p{
    font-weight:bold;
    font-size:20px;
    margin-bottom:30px;
}

.program .outline .box .btn{
    width:500px;
    display:flex;
    align-items: center;
    justify-content: center;
    margin:0 auto;
    padding:20px 0;
    color:#ffffff;
}

.program .outline .box .btn:after{
    content:"";
    display:inline-block;
    background:url(../images/pdf-icon.svg) center center no-repeat;
    background-size:contain;
    width:25px;
    height:30px;
    margin-left:8px;


}

.time-schedule{
    margin-bottom:50px;
}

.time-schedule table{
    border-collapse: collapse;
    width:100%;
}

.time-schedule table td,.time-schedule table th{
    padding:20px;
    border:1px solid #999999;
    vertical-align: middle;
    line-height:1.5;
}

.time-schedule table th{
    width:200px;
}

.time-schedule table td{
    font-weight:bold;
    font-size:20px;
}

.time-schedule table td span{
    display:block;
    font-weight:normal;
    font-size:16px;
    margin-top:10px;
}

.time-schedule table .rest{
    background:#f3f3f7;
}




@media screen and (max-width:640px) {

    .program .outline .box .btn{
        width:90%;
        line-height:1.5;
        padding:10px 0;
    }

    .program .outline .box p{
        font-size:16px;
        line-height:1.5;
        margin-bottom:20px;
    }    

    .time-schedule table td,.time-schedule table th{
        padding:10px;
        display:block;
        width:100%;
    }

    .time-schedule table th{
        background:#fffbde;
        border-bottom:none;
        border-top:none;
    }

    .time-schedule table tr:first-child th{
        border-top:1px solid #999999;
    }
    
    .time-schedule table .rest{
        border-bottom:1px solid #999999;
    }

    .time-schedule table td{
        font-size:18px;
        text-align:center;
    }
    
    .time-schedule table td span{
        display:block;
        font-weight:normal;
        font-size:14px;
        margin-top:10px;
        text-align:left;
    }
    


}


/**************************
participants.html
**************************/

.participants .traffic{
    margin-bottom:50px;
}

.participants .traffic h2{
    font-size: 28px;
    text-align: center;
    padding: 20px 0;
    background: #e7e7e7;
    margin-bottom: 50px;
}

.participants .traffic h3{
    font-size:20px;
    margin-bottom:20px;
}

.participants .traffic .txtarea .box{
    margin-bottom:20px;
}

.participants .traffic .txtarea{
    width:544px;
}

.participants .traffic .txtarea h4{
    margin-bottom:10px;
    background:#f3f3d5;
    padding:15px;
}

.participants .traffic .txtarea .txt{
    line-height:1.8;
    letter-spacing: -0.03em;
    margin-bottom:10px;
}

.participants .traffic .txtarea .txt.indent{
    padding-left:1.4em;
    text-indent:-1.4em;
}

.participants .traffic .txtarea .txt.attent{
    font-weight:bold;
}

.participants .traffic .txtarea .stage{
    margin-top:50px;
    background:#e7e7e7;
    padding:30px 0;
    text-align:center;
}

.participants .traffic .txtarea .stage span{
    font-size:16px;
}

.participants .traffic .imgarea{
    width:450px;
}

.participants .traffic .imgarea img{
    width:100%;
}

.participants .guid .box{
    margin-bottom:50px;
}

.participants .guid h2{
    font-size: 28px;
    text-align: center;
    padding: 20px 0;
    background: #e7e7e7;
    margin-bottom: 50px;
}

.participants .guid h3{
    font-size:20px;
    margin-bottom:20px;
    border-bottom:1px solid #999999;
    padding-bottom:10px;
}

.participants .guid .txt{
    line-height:1.8;
    margin-bottom:20px;
}

.participants .guid .txt .bold{
    font-weight:bold;
}

.participants .guid .txt .under{
    text-decoration: underline;
}

.participants .guid .list{
    list-style-type: none;
    line-height:1.5;
}

.participants .guid .list li{
    margin-bottom:20px;
}

.participants .guid .list li .bold{
    font-weight:bold;
}


@media screen and (max-width:640px) {

    
    .participants .traffic h2{
        font-size: 20px;
        margin-bottom:20px;
    }
    
    .participants .traffic h3{
        font-size:18px;
    }
        
    .participants .traffic .txtarea{
        width:100%;
    }
    
    .participants .traffic .txtarea h4{
        line-height:1.5;
    }
    
    .participants .traffic .txtarea .txt{
        letter-spacing: 0;
    }
    
    
    .participants .traffic .txtarea .stage{
        margin-top:30px;
    }
    
    .participants .traffic .txtarea .stage span{
        font-size:16px;
        display:block;
        line-height:1.5;
        margin-top:10px;
    }
    
    .participants .traffic .imgarea{
        width:100%;
    }
    
    .participants .traffic .imgarea img{
        margin-bottom:20px;
    }
    
    .participants .guid .box{
        margin-bottom:30px;
    }
    
    .participants .guid h2{
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .participants .guid h3{
        font-size:18px;
        margin-bottom:10px;
        letter-spacing: -0.05em;
    }
    
    .participants .guid .txt{
        line-height:1.8;
        margin-bottom:20px;
    }
    
    .participants .guid .txt .bold{
        font-weight:bold;
    }
    
    .participants .guid .txt .under{
        text-decoration: underline;
    }
    
    .participants .guid .list{
        list-style-type: none;
        line-height:1.5;
    }
    
    .participants .guid .list li{
        margin-bottom:20px;
    }

    
    .participants .guid .list li .bold{
        font-weight:bold;
    }
    
    


}


/**************************
release.html
**************************/

.release .sec{
    margin-bottom:50px;
}

.release .sec h2{
    font-size: 28px;
    text-align: center;
    padding: 20px 0;
    background: #e7e7e7;
    margin-bottom: 30px;
}

.release .sec01 h3{
    font-size:20px;
    margin-bottom:20px;
    border-bottom:1px solid #999999;
    padding-bottom:5px;
}

.release .sec01 .list{
    list-style-type:decimal;
    margin-left:28px;
}

.release .sec01 .list li{
    margin-bottom:24px;
}

.release .sec02 h3{
    font-size:20px;
    margin-bottom:20px;
    border-bottom:1px solid #999999;
    padding-bottom:5px;
}

.release .sec02 .list{
    list-style-type:decimal;
    margin-left:28px;
}

.release .sec02 .list > li{
    margin-bottom:24px;
    font-weight:bold;
}

.release .sec02 .list > li span{
    font-weight:normal;
    margin-top:10px;
}

.release .sec02 .item05 span{
    display:block;
    margin-top:16px;
    line-height:1.8;
}

.release .sec02 .child-list{
    margin-left:20px;
    list-style: none;
}

.release .sec02 .child-list li{
    padding-left:1.2em;
    text-indent:-1.2em;
}

.release .sec02 .border-box{
    border:1px solid #999999;
    padding:20px;
    width:800px;
    margin:50px auto 0 auto;
}

.release .sec02 .media h4{
    font-size:18px;
    text-align:center;
    margin-bottom:30px;
    background:#21386c;
    color:#ffffff;
    padding:20px 0;
}

.release .sec02 .media .list li{
    line-height:1.5;
    font-weight:normal;
}

.release .sec02 .media .attent{
    background:#f7e0e2;
    padding:20px;
    margin-top:10px;
}

.release .sec02 .media .spec{
    background-color: #f3f3d5;
    width:410px;
    display:block;
    padding:10px;
    line-height:1.8;
    margin:10px 0;
}

.release .sec02 .media .attent span{
    font-weight:bold;
    display:block;
    margin-bottom:8px;
}

.release .sec03 .list{
    list-style: none;
}
.release .sec03 .list li{
    border-bottom:1px solid #999999;
    padding-bottom:16px;
    margin-bottom:16px;
}

.release .sec03 .list span{
    display:block;
    font-weight:bold;
    font-size:16px;
    margin-bottom:12px;
}

@media screen and (max-width:640px) {
    
    .release .sec h2{
        font-size: 20px;
    }
    
    .release .sec01 h3{
        font-size:18px;
        line-height:1.5;
    }
        
    .release .sec01 .list li{
        margin-bottom:16px;
        line-height:1.5;
    }
    
    .release .sec02 h3{
        font-size:18px;
    }
    
    
    .release .sec02 .list > li{
        margin-bottom:20px;
        line-height:1.5;
    }
    
    .release .sec02 .list > li span{
        font-weight:normal;
        margin-top:0px;
        display:block;
    }
    
    .release .sec02 .item05 span{
        display:block;
        margin-top:16px;
        line-height:1.8;
    }

    .release .sec02 .item05 .imgarea{
        text-align:center;
    }
    
    .release .sec02 .child-list{
        margin:16px 0 16px 0px;
    }
    
    .release .sec02 .child-list li{
        margin-bottom:8px;
    }

    
    .release .sec02 .border-box{
        border:1px solid #999999;
        padding:10px;
        width:100%;
        margin:50px auto 0 auto;
    }
    
    .release .sec02 .media h4{
        font-size:16px;
        margin-bottom:20px;
        padding:20px 0;
    }
    
    .release .sec02 .media .list li{
        line-height:1.5;
        font-weight:normal;
    }
    
    .release .sec02 .media .attent{
        background:#f7e0e2;
        padding:20px;
        margin-top:10px;
    }
    
    .release .sec02 .media .spec{
        background-color: #f3f3d5;
        width:100%;
        display:block;
        padding:10px;
        line-height:1.8;
        margin:10px 0;
    }
    
    .release .sec02 .media .attent span{
        font-weight:bold;
    }
    
    .release .sec03 .list{
        list-style: none;
    }
    .release .sec03 .list li{
        border-bottom:1px solid #999999;
        padding-bottom:16px;
        margin-bottom:16px;
        padding-left:1em;
        text-indent:-1em;
        line-height:1.5;
    }

    .release .sec03 .list .double{
        padding-left:1.9em;
        text-indent:-1.9em;
    }
    
    .release .sec03 .list span{
        display:block;
        font-weight:bold;
        font-size:18px;
        margin-bottom:12px;
    }

    

}

/**************************
access.html
**************************/

.access{
    margin-bottom:100px;
}

.access h2{
    font-size:24px;
    margin-bottom:50px;
    border-left:7px solid #21386c;
    padding:16px 0 16px 10px;
    background:#e7e7e7;
}

.access table{
    width:100%;
    border-collapse: collapse;
}

.access table tr{
    border-bottom:1px solid #e7e7e7;
}

.access table tr:first-child th, .access table tr:first-child td{
    padding:0 0 10px 0;
}

.access table th, .access table td{
    padding:50px 0 10px;
    font-size:20px;
}

.access table th{
    text-align:left;
    vertical-align: middle;
}

.access .route{
    list-style:none;
}

.access .route li{
    line-height:1.5;
    font-size:18px;
    margin-bottom:20px;
}

.access .route li:last-child{
    margin-bottom:0;
}

.access .route li span{
    font-weight:bold;
    display:inline-block;
    margin-bottom:6px;
    font-size:20px;
}

.access .route li:before{
    content:"-";
    display:inline-block;
    margin-right:6px;
    position:relative;
    bottom:2px;
}

.gmap{
    margin-bottom:100px;
}

.gmap h2{
    font-size:24px;
    margin-bottom:30px;
    border-left:7px solid #21386c;
    padding:16px 0 16px 10px;
    background:#e7e7e7;
}

.gmap iframe{
    width:100%;
    height:500px;
}


@media screen and (max-width:640px) {

    .access{
        margin-bottom:50px;
    }

    .access h2{
        font-size:20px;
        margin-bottom:20px;
    }
    
    .access table th, .access table td{
        width:100%;
        display:block;
        padding:0px;
        font-size:16px;
    }

    .access table tr:first-child th, .access table tr:first-child td{
        padding:0;
   }
        
    
    .access table th{
        text-align:center;
        background:#f1f1f1;
        padding:10px 0 !important;
    }

    .access table td{
        padding:20px 0 !important;
    }

    .access .route li{
        font-size:16px;
        margin-bottom:20px;
    }
        
    .access .route li span{
        font-weight:bold;
        display:inline-block;
        margin-bottom:6px;
        font-size:16px;
    }
    
    .gmap{
        margin-bottom:50px;
    }

    .gmap iframe{
        width:100%;
        height:300px;
    }
    
    


}

/**************************
contact.html
**************************/

.link{
    margin-bottom:100px;
}

.link h2{
    font-size:24px;
    margin-bottom:30px;
    border-left:7px solid #21386c;
    padding:16px 0 16px 10px;
    background:#e7e7e7;
}

.link .list{
    list-style:none;
}

.link .list li{
    margin-bottom:20px;
    font-size:20px;
}

.link .list li:before{
    content:"●";
    font-size:10px;
    color:#21386c;
    position:relative;
    bottom:3px;
    right:0px;
    margin-right:10px;
}

.contact{
    margin-bottom:100px;
}

.contact h2{
    font-size:24px;
    margin-bottom:30px;
    border-left:7px solid #21386c;
    padding:16px 0 16px 10px;
    background:#e7e7e7;
}

.contact h3{
    font-size:22px;
    margin-bottom:20px;
}

.contact p{
    line-height:2;
    font-size:18px;
}


@media screen and (max-width:640px) {


    .link{
        margin-bottom:50px;
    }
    
    .link h2{
        font-size:20px;
    }
    
    
    .link .list li{
        margin-bottom:20px;
        font-size:18px;
    }
    
    
    .contact{
        margin-bottom:50px;
    }
    
    .contact h2{
        font-size:20px;
    }
    
    .contact h3{
        font-size:18px;
        margin-bottom:20px;
    }
    
    .contact p{
        line-height:2;
        font-size:16px;
    }
}


