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

@media screen and (min-width: 0px) and (max-width: 800px) {

.pc-no {
    display: inline;
}

.sp-no {
    display: none;
}

.header {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.header .hdr-wrap {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .hdr-l {
    width: 30%;   
}

.header .hdr-logo {
    width: 100%;
    max-width: 250px;
    margin: 0;
    padding: 0;
}

.header .hdr-logo a {
    width: 100%;
    height: 100%;
    line-height: 110%;
    display: block;
    transition: all 0.3s;
}
.header .hdr-logo a:hover {
    opacity: 0.5;   
}

.header .hdr-r {
    width: 70%;
}

.header .hdr-nav {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    float: none;
    position: fixed;
    top: -100%;
/* Start off the screen */
/* top: 60px;*/
    left: 0;
    z-index: 10000;
    
    overflow-y: scroll;
    background-color: #F2F8FF;
    transition: top 0.3s all; /* Change the property to 'top' */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
}

.header ul.nav-list {
    width: 100%;
    margin: 30px 0;
    padding: 0;
    list-style: none;
    display: block;
    font-size: 140%;
    font-weight: 600;
    text-align: center;
}

.header ul.nav-list li {
    width: 100%;
    margin: 0 0 10px;
}
.header ul.nav-list li:last-child {
    margin: 0;
}

.header ul.nav-list li:after {
    display: none;
    
}

.header ul.nav-list li a {
    width: 100%;
    padding: 10px 0;
    display: block;
    color: #383838;
    text-decoration: none;
    text-align: center;   
}


/**SP NAV: BUTTONS***/

.sub-nav {
    width: 10%;
    display: flex;
    justify-content: flex-end;
}
.sub-btn {
    width: 60px;
    height: 60px;
    margin: 0;
    color: #333333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content:center;
    text-align: center;
}
.sub-btn a {
    width: 100%;
    height: 100%;
    color: #333333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content:center;
    text-align: center;
}
.sub-btn .sb-flex {
    width: 100%;
    height: 100%;
    color: #333333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content:center;
    text-align: center;
}
.sub-btn .sb-icon {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: block;
}
.sub-btn .ham-icon {
    width: 100%;
}

#menu-wrapper {
    cursor: pointer;
    z-index: 100;
}

#hamburger-menu {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

#hamburger-menu span {
    opacity: 1;
    right: 0;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    color: black;
    background-color: #219DF8;
    position: absolute;
    transform: rotate(0deg);
    transition: .3s all;
}

#hamburger-menu span:nth-child(1) {
    top: 0px;
}
#hamburger-menu span:nth-child(2) {
    width: 80%;
    top: 10px;
}
#hamburger-menu span:nth-child(3) {
    top: 20px;
}

#hamburger-menu.open span:nth-child(1) {
    transform: translateY(10px) rotate(135deg);
}
#hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-60px);
}
#hamburger-menu.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-135deg);
}


/***MAIN***/

.main {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.page {
    min-height: 800px;
}

.page .page-wrap {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.page-hdr {
    width: 100%;
    margin: 0;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    background-color: #E8F5FF;
}

.page-hdr h1.page-title {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 160%;
    line-height: 160%;
    font-weight: 700;
    color: #2E2E2E;
}

.pankuzu {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 80%;
    font-weight: 400;
    color: #7C7C7C;
}
.pankuzu a {
    color: #7C7C7C;
    text-decoration: underline;
}

.page h2 {
    width: 95%;
    margin: 0 auto 30px;
    padding: 20px 2.5%;
    position: relative;
    overflow: hidden;
    background-color: #00406F;
    color: #FFF;
    font-size: 160%;
    line-height: 160%;
    font-weight: 600;
}

.page h3 {
    width: 95%;
    margin: 0 auto 20px;
    padding: 0 0 10px;
    position: relative;
    overflow: hidden;
    color: #00406F;
    font-size: 160%;
    line-height: 160%;
    font-weight: 600;
}
.page h3:after {
    content: "";
    width: 100%;
    height: 3px;
    display: block;
    margin: 10px auto 0;
    background-color: #00406F;
    border-radius: 10px;
}


.page h4 {
    width: 96%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 140%;
    color: #00406F;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.page h4:before {
    content: "";
    width:10px;
    height: 40px;
    display: inline-block;
    margin: 0 10px 0 0;
    background-color: #00406F;
}

.page h5 {
    width: 94%;
    margin: 20px auto;
    padding: 10px 2%;
    position: relative;
    overflow: hidden;
    font-size: 120%;
    background-color: #E8F5FF;
}

.page h6 {
    width: 96%;
    margin: 20px 0 20px 3%;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 120%;
}

.page p {
    width: 95%;
    margin: 10px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}


.page table {
    width: 98%;
    margin: 10px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #A5A5A5;
    border-spacing: 1px;
    color: #333333;
    font-size: 90%;
}

.page table th,table td {
    padding: 20px 15px;
}

.page table th {
    background-color: #E2E2E2;
    font-weight: bold;
    text-align: left;
}

.page table td {
    background-color: #FFF;
}

.btn {
    width: 80%;
    max-width: 300px;
    border: solid 1px #81A5BF;
    box-shadow: 0px 3px 10px 0px rgba(0,48,82,0.2);
-webkit-box-shadow: 0px 3px 10px 0px rgba(0,48,82,0.2);
-moz-box-shadow: 0px 3px 10px 0px rgba(0,48,82,0.2);
}

.btn a {
    width: 90%;
    margin: 0 auto;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    
    transition: all 0.3s;
    background-color: #FFF;
    color: #0076BF;
}

.btn a:hover {
    background-color: #0076BF;
    color: #FFF;
}

.btn a:after {
    content: "";
    width: 30px;
    height: 4px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    
    transition: all 0.3s;
    background-image: url("../img/common/arr_r-bl.svg");
}
.btn a:hover:after {
    background-image: url("../img/common/arr_r-wh.svg");
}

/***INDEX:about and SUB:site-guide btns***/

.about-btn-flex {
    width: 95%;
    margin: 0 auto;
    padding: 10px 2.5%;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-btn-flex a.ab-btn {
    width: 100%;
    display: block;
    margin: 0 0 30px;
    padding: 10px 0;
    text-decoration: none;
    background-color: #FFF;
    box-shadow: 0px 3px 10px 0px rgba(0,48,82,0.2);
-webkit-box-shadow: 0px 3px 10px 0px rgba(0,48,82,0.2);
-moz-box-shadow: 0px 3px 10px 0px rgba(0,48,82,0.2);
    transition: all 0.3s;    
}
.about-btn-flex a.ab-btn:hover {
    opacity: 0.5;
}

a.ab-btn figcaption {
    font-size: 120%;
    text-align: center;
    color: #0076BF;
}

/***FOOTER***/

.pagetop {
    width: 10%;
    max-width: 60px;
    position: fixed;
    right: 1%;
/*    bottom:400px;*/
    bottom: 15%;
    z-index: 10;
    line-height: 0%;
    opacity: 1.0;
	cursor: pointer;
    transition: all 0.3s;
}

.pagetop:hover {
    opacity: 0.5;
}

.sticky {
	position: fixed;
    bottom: 10px;
}

.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer section.link-sec {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #2F3438;
}

.footer section.link-sec .sec-wrap {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


.footer ul.link-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer ul.link-list li {
    width: 45%;
    margin: 0;
}

.footer ul.link-list a {
    width: 100%;
    display: block;
    transition: all 0.3s;
}

.footer ul.link-list a:hover {
    opacity: 0.5;
}

.ftr-main {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
}

.ftr-main .sec-wrap {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0 10px;
    position: relative;
    overflow: hidden;
}

.footer .ftr-logo {
    width: 50%;
    max-width: 500px;
    margin: 0 0 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer .address {
    font-size: 80%;
    margin: 0 0 30px;
}

.ftr-flex {
    display: flex;
    justify-content: flex-start;
}

.footer .copyright {
    font-size: 80%;
}


/***NEWS***/

ul.news-list {
    width: 95%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
}

ul.news-list li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #D0D0D0;
}

ul.news-list li a {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-decoration: none;
    color: #2E2E2E;
    
    transition: all 0.3s;
    background-color: #FFF;
}
ul.news-list li a:hover {
    background-color: #F2F8FF;
}
ul.news-list li .nl-img {
    width: 80%;
    margin: 0 auto;
}
ul.news-list li .nl-r {
    width: 100%;
    display: block;
}
ul.news-list li .nl-r .nl-date {
    font-size: 80%;
    color: #7C7C7C;
}
ul.news-list li .nl-r .nl-cat {
    width: 20%;
    max-width: 150px;
    font-size: 80%;
    line-height: 110%;
    margin: 0 0 10px;
    padding: 5px 0;
    text-align: center;
    background-color: #FFF;
    color: #0076BF;
    border: solid 1px #219DF8;
}
ul.news-list li .nl-r .nl-title {
    font-size: 110%;
    font-weight: 600;
}

/****/

ul.pagination {
    width: 100%;
    max-width: 300px;
    margin: 60px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0 5%;
}

ul.pagination li {
    width: 40px;
    height: 40px;
    text-align: center;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.pagination li.here {
    background-color: #00406F;
}

ul.pagination li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;    
    text-decoration: none;
    transition: all 0.3s;
    background-color: #219DF8;
}

ul.pagination li a:hover {
    background-color: #00406F;
}

/****/

.news-page h2.news-title {
    width: 100%;
    margin: 0 auto 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    color: #00406F;
    font-size: 160%;
    line-height: 160%;
    font-weight: 600;
    background-color: transparent;
}

.news-page .news-info {
    width: 100%;
    margin: 0 0 30px;
}

.news-page .ni-date {
    font-size: 80%;
    color: #7C7C7C;
}
.news-page .ni-cat {
    width: 20%;
    max-width: 150px;
    font-size: 80%;
    line-height: 110%;
    margin: 0 0 10px;
    padding: 5px 0;
    text-align: center;
    background-color: #FFF;
    color: #0076BF;
    border: solid 1px #219DF8;
}

.news-page .news-img {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.news-page .news-contents {
    width: 95%;
    margin: 0 auto 60px;
}

.news-page .btn {
    margin: 0 auto;
}

}