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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 18px;
	font-weight: 400;
    line-height: 210%;
    font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "Helvetica", Arial, "メイリオ", Meiryo, sans-serif;
     -moz-font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
    background-color: #FFFFFF;
    color: #000000;
	text-align: left;
}

wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 70%;
}

a {
    color: #0069FF;
    text-decoration: underline;
}

.pc-no {
    display: none;
}

.sp-no {
    display: inline;
}

.fade {
	opacity: 1.0;
	transition: all 0.3s;
}

.fade:hover {
    opacity: 0.5;
}


/***HEADER***/

.header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10px 0;
    position: fixed;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,0.95);
    top: 0;
    left: 0;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
}

.header .hdr-wrap {
    width: 95%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header .hdr-logo {
    width: 25%;
    max-width: 350px;
}

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

.header .hdr-logo a:hover {
    opacity: 0.5;
}

.header .hdr-nav {
    width: 70%;
    max-width: 1000px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .hdr-nav a { 
    text-decoration: none;
}

.header ul.nav-list {
    width: 70%;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.header ul.nav-list li {
    position: relative;
    text-align: center;
    font-size: 100%;
    font-weight: 600;
}

.header ul.nav-list li.nav-item > a {
    width: 100%;
    display: block;
    
    transition: all 0.3s;
    color: #013F98;
}
.header ul.nav-list li.nav-item > a:after {
    content:"";
    height: 3px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    transition: all 0.3s;
    
    width: 0;
    opacity: 0;
    background-color: transparent;
}
.header ul.nav-list li.nav-item > a:hover {
    color: #001D46;
}
.header ul.nav-list li.nav-item > a:hover:after {
    width: 50px;
    opacity: 1.0;
    background-color: #001D46;
}

.header .hdr-nav .btn-contact {
    width: 20%;
    background: #013F98;
background: linear-gradient(90deg, rgba(1, 63, 152, 1) 0%, rgba(80, 128, 196, 1) 100%);
    border-radius: 5px;
    transition: all 0.3s;
}

.header .hdr-nav .btn-contact:hover {
    opacity: 0.5;
}

.header .hdr-nav .btn-contact a {
    width: 100%;
    padding: 5px 0;
    color: #FFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .hdr-nav .btn-contact a:before {
    content: "";
    width: 20px;
    height: 15px;
    display: inline-block;
    margin: 0 10px 0 0;
    background-image: url("../img/common/hdr_icon-contact.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/**SP NAV: BUTTONS***/
.sub-nav {
    display: none;
}


@media screen and (min-width: 961px) and (max-width: 1200px) {

.header .hdr-nav {
    width: 100%;
    max-width: unset;
}

}

/******/

ul.nav-list li.dd > .dd-top,ul.nav-list li.dd > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #013F98;
}

ul.nav-list li.dd > .dd-top:after,ul.nav-list li.dd > a:after {
    content: "";
    width: 10px;
    height: 10px;
    margin: 0 0 0 10px;
    display: block;
    background-image: url("../img/common/hdr_nav-more.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

ul.nav-list li.dd:hover > .dd-top {
    color: #001D46;
}

ul.nav-list li a:hover,
ul.nav-list li.dd > .dd-top:hover {
    color: #001D46;
}

ul.dropdown {
    width: 100%;
    margin: 0;
    padding: 0;    
    list-style: none;
    position: absolute;
    overflow: visible;
    top: 80%;
    left: 0;
    min-width: 150px;
    font-size: 80%;
    line-height: 110%;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(135,135,135,0.5);
-moz-box-shadow: 0px 0px 5px 0px rgba(135,135,135,0.5);
box-shadow: 0px 0px 5px 0px rgba(135,135,135,0.5);
    
    transition: all 0.3s;
    display: inline-block;
    opacity: 0;
    height: 0%;
}

ul.nav-list li.dd:hover > ul.dropdown {
    display: block;
    top: 100%;
    opacity: 1.0;
    height: auto;
    
}

ul.dropdown li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 90%;
    line-height: 140%;
    text-align: left;
    
    transition: all 0.3s;
    height: 0;
    border-bottom: solid 1px #FFF;
}
ul.dropdown li:last-child {
    border-bottom: none;
}

ul.nav-list li.dd:hover > ul.dropdown li {
    height: 100%;
}

ul.dropdown a {
    width: 90%;
    height: 100%;
    display: block;
    margin: 0 auto;
    padding: 15px 5%;
    
    transition: all 0.3s;
    background-color: #013F98;
    color: #FFF !important;
    text-align: left;
}
ul.dropdown a:hover {
/*    color: #FFF !important;*/
    background-color: #006EBD;
}


/***MAIN***/

.main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.page-main {
    
}

.page-hd {
    width: 100%;
    margin: 60px 0 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    color: #013F98;
}

.page-hd-wrap {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

h1.page-title {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 100%;
    font-weight: 500;
}

.page-title-en {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 220%;
    line-height: 110%;
    font-weight: 700;
}

.page-subhd {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.page {
    width: 95%;
    max-width: 1400px;
    min-height: 500px;
    margin: 0 auto;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-wrap {
    width: 95%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

h2.mds-line {
    width: 100%;
    margin: 0 0 60px;
    padding: 0 0 20px;
    position: relative;
    overflow: hidden;
    font-size: 200%;
    line-height: 120%;
    color: #013F98;
    background-image: linear-gradient(
      90deg, 
      #013F98 0 15%, 
      #B2C3DB 15%
    );
    background-repeat: no-repeat;
    background-size: 100% 10%;
    background-position: bottom;
}

h2.mds-bluebox {
    width: 95%;
    margin: 0 auto 30px;
    padding: 15px 2.5%;
    position: relative;
    overflow: hidden;
    background-color: #013F98;
    color: #FFF;
    font-size: 180%;
    font-weight: 500;
    line-height: 120%;
}

h3.mds-lblue {
    width: 90%;
    margin: 0 auto 30px;
    padding: 15px 2.5%;
    position: relative;
    overflow: hidden;
    background-color: #E6EFFF;
    color: #013F98;
    font-size: 140%;
    font-weight: 600;
    line-height: 160%;
}

.page h4 {
    color: #013F98;
}

.page h5 {
    font-size: 100%;
    margin: 0 0 10px;
}


.page ul > li::marker {
    color: #013F98;
}

.page ul,.page ol {
    margin: 0 0 30px;
}

.page ul > li {
    margin: 0 0 10px;
}

.page ol > li {
    margin: 0 0 20px;
}
.page ul > li:last-child,
.page ol > li:last-child {
    margin: 0;
}


.page p {
    margin: 0 0 30px;
    line-height: 220%;
}

.page .wrap-95 {
    width: 95%;
    margin: 0 auto 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.page .wrap-90 {
    width: 90%;
    margin: 0 auto 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
}


.pankuzu {
    width: 98%;
    margin: 10px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 80%;
    color: #4A4A4A;
}
.pankuzu a {
    color: #4A4A4A;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: solid 1px #4A4A4A;
}
.pankuzu a:hover {
    border-bottom: solid 1px transparent;
}

.page table {
    width: 100%;
    margin: 10px 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #707070;
    border-spacing: 1px;
    color: #000000;
    font-size: 100%;
    line-height: 180%;
}
.page table th,.page table td {
    padding: 15px 15px;
}
.page table th {
    background-color: #013F98;
    color: #FFF;
    font-weight: bold;
    text-align: left;
}
.page table td {
    background-color: #FFF;
}


/***FOOTER***/

.pagetop {
    width: 5%;
    max-width: 60px;
    position: fixed;
    right: 1%;
/*    bottom:400px;*/
    bottom: 30%;
    z-index: 10;
    line-height: 0%;
    opacity: 1.0;
	cursor: pointer;
    
    transition: all 0.3s;
    
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(1,6,152,0.35);
-webkit-box-shadow: 0px 0px 20px 0px rgba(1,6,152,0.35);
-moz-box-shadow: 0px 0px 20px 0px rgba(1,6,152,0.35);
}

.pagetop:hover {
    opacity: 0.5;
}

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

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

.footer .ftr-wrap {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    overflow: visible;
}

.footer .ftr-top {
    background-color: #F8FBFF;
}

.footer .ftr-top .ftr-wrap {
     padding: 60px 0 200px;
}


.footer .ftr-mds-en {
    text-align: center;
    font-size: 120%;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}

.footer .ftr-mds-ja {
    margin: 0 0 100px;
    text-align: center;
    font-size: 220%;
    line-height: 110%;
    color: #013F98;
}

.footer ul.rel-links {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 2%;
}
.footer ul.rel-links li {
    width: 30%;
    margin: 0 0 20px;
}

.footer ul.rel-links li a {
    width: 100%;
    height: 100%;
    display: block;
    line-height: 70%;
    transition: all 0.3s;
}

.footer ul.rel-links li a:hover {
    opacity: 0.5;
}


/**/

.footer .ftr-bot {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
}

.footer .contact-box {
    width: 90%;
    max-width: 1000px;
    margin: -150px auto 0;
    padding: 40px 0;
    position: relative;
/*
    left: 25%;
    top: -150px;
    
*/
    z-index: 10;
    overflow: hidden;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(1,6,152,0.35);
-webkit-box-shadow: 0px 0px 20px 0px rgba(1,6,152,0.35);
-moz-box-shadow: 0px 0px 20px 0px rgba(1,6,152,0.35);
}

.contact-box .contact-mds {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    color: #013F98;
    text-align: center;
    font-size: 180%;
    font-weight: 700;
}

.contact-box .contact-mds:after {
    content: "";
    width: 20px;
    height: 20px;
    margin: 0 0 0 5px;
    display: inline-block;
    background-image: url("../img/common/icon_leaf.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.contact-box .contact-txt {
    margin: 0 0 40px;    
    text-align: center;
    font-size: 80%;
    font-weight: 400;
    color: #013F98;
    
}

.contact-box .contact-flex {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.contact-box .contact-flex .cf-l {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-box .contact-flex .cf-l:after {
    content: "";
    width: 1px;
    height: 100%;
    display: inline-block;
    background-color: #B2C3DB;
}

.cf-l .tel-icon {
    width: 12%;
}

.cf-l .tel-info {
    width: 85%;
    color: #013F98;
}

.cf-l .tel-info .tel-num {
    font-size: 180%;
}

.cf-l .tel-info .tel-num a {
    color: #013F98;
    text-decoration: none;
}

.cf-l .tel-info .tel-det {
    font-size: 80%;
    font-weight: 400;
}

.contact-box .contact-flex .cf-r {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    
    transition: all 0.3s;
    background-color: #013F98;
    
}
.contact-box .contact-flex .cf-r:hover {
    background-color: #002963;
}

.contact-box .contact-flex .cf-r a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    text-align: center;
}

.contact-box .contact-flex .cf-r a:before {
    content: "";
    width: 25px;
    height: 15px;
    margin: 0 5px 0 0;
    display: inline-block;
    background-image: url("../img/common/ftr_icon-email.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer .ftr-base {
    width: 100%;
    margin: -150px 0 0;
    padding: 200px 0 30px;
    position: relative;
    overflow: hidden;
    background-color: #013F98;
    color: #FFF;
}

.footer .ftr-base .ftr-wrap {
    width: 95%;
    max-width: unset;
    padding: 0 0 60px;
}

.footer .ftr-base .ftr-flex {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .ftr-base .ftr-l {
    width: 35%;
    display: flex;
    justify-content: space-between;
}

.footer .ftr-base .ftr-l .main {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer .ftr-base .ftr-l .main .ftr-logo {
    width: 100%;
    max-width: 500px;
    margin: 0 0 10px;
}

.footer .ftr-base .ftr-l .main .company-name {
    font-size: 140%;
    font-weight: 600;
    margin: 0 0 5px;
}

.footer .ftr-base .ftr-l .main .address {
    font-weight: 400;
}

.footer .ftr-base .ftr-l .kenko-bnr {
    width: 25%;
}

.footer .ftr-base .ftr-r {
    width: 60%;
}

.footer .ftr-nav ul.ftr-links {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap:0 5%;
}

.footer .ftr-nav ul.ftr-links a {
    color: #FFF;
    text-decoration: none;
    padding: 0 0 2px;
    transition: all 0.3s;
    border-bottom: solid 1px transparent;
}

.footer .ftr-nav ul.ftr-links a:hover {
    border-bottom: solid 1px #FFF;
}

.footer .ftr-base .copyright {
    float: right;
    font-size: 90%;
    font-weight: 400;
}




/***NEWS***/

.news-flex {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
.news-flex .news-l {
    width: 35%;
}
.news-l ul.news-cat-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    font-size: 90%;
    font-weight: 400;
}
.news-l ul.news-cat-list li {
    margin: 0 0 10px;
    color: #013F98;
}
.news-l ul.news-cat-list li:before {
    content: "-";
    display: inline-block;
    margin: 0 5px 0 0;
}
.news-l ul.news-cat-list li a {
    text-decoration: none;
    color: #013F98;
    
    transition: all 0.3s;
    border-bottom: solid 1px transparent;
}
.news-l ul.news-cat-list li a:hover {
    border-bottom: solid 1px #013F98;
}
.news-flex .news-r {
    width: 60%;
}

/**SUB**/
.news-flex h2.hd-ja {
    font-size: 220%;
    line-height: 110%;
    color: #013F98;
}
.page .news-flex .news-l {
    width: 25%;
}
.page .news-l ul.news-cat-list {
    margin: 0 0 0 20px;
}
.page .news-flex .news-r {
    width: 70%;
}
/***/

ul.news-list {
    width: 100%;
    margin: 0;
    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 #B2C3DB;
}
ul.news-list li a {
    width: 100%;
    display: block;
    padding: 30px 0;
    text-decoration: none;
}
ul.news-list li .news-info {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
ul.news-list li .news-info .date {
    margin: 0 10px 0 0;
    font-size: 90%;
    font-weight: 400;
}
ul.news-list li .news-info .news-cat {
    width: 20%;
    padding: 5px 0;
    background-color: #FFF;
    border: solid 1px #B2C3DB;
    border-radius: 20px;
    text-align: center;
    color: #013F98;
    font-weight: 400;
    font-size: 70%;
    line-height: 180%;
    letter-spacing: 0.1em;
}
ul.news-list li .news-title {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 110%;
    font-weight: 500;
    
    transition: all 0.3s;
    color: #000;
}

ul.news-list li a:hover .news-title {
    color: #0069FF;
}

/***SUBPAGE NEWS***/

.page-main ul.news-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 4%;
}

.page-main ul.news-list li {
    width: 30%;
    border-bottom: none;
}

.page-main ul.news-list li .news-img {
    width: 99%;
    margin: 0 auto 10px;
    border: solid 1px #BEBEBE;
    border-radius: 5px;
}
.page-main ul.news-list li .news-img img {
    border-radius: 5px;
}

.page-main ul.news-list li .news-info {
    margin: 0 0 10px;
}

.page-main ul.news-list li .news-info .news-cat {
    width: 40%;
    line-height: 110%;
}

.page-main ul.news-list li .news-title {
    font-size: 100%;
    line-height: 180%;
}



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: #013F98;
}

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: #6FB92C;
}

ul.pagination li a:hover {
    background-color: #013F98;
}

.btn-return {
    width: 60%;
    max-width: 350px;
    margin: 100px auto 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #013F98;
    transition: all 0.3s;
}

.btn-return:hover {
    background-color: #002963;
}

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

.btn-return:hover a {
    width: 78%;
    padding: 20px 11%;
}

.btn-return a:after {
    content: "";
    width: 15px;
    height: 5px;
    display: inline-block;
    background-image: url("../img/common/icon_arr-r-w.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.btn-area {
    width: 100%;
    margin: 30px 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
.btn-area .btn-return {
    width: 40%;
    max-width: 400px;
}

.underconstruction {
    width: 100%;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.temp-page {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto;
    position: relative;
    overflow: hidden;
}

.temp-page_sp {
    display: none;
}