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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
	font-weight: 500;
    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: #000;
    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%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

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

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

.header .hdr-l .hdr-logo {
    width: 100%;
    max-width: 400px;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.header ul.nav-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.header ul.nav-list li {
    text-align: center;
}

.header ul.nav-list li a {
    color: #000000;
    text-decoration: none;
} 



/***MAIN***/

.main {
    width: 100%;
    min-height: 600px;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.page h1.page-head {
    width: 100%;
    margin: 0;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    background-image: url("../img/common/pagehd_bk.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    font-size: 160%;
    font-weight: 700;
    color: #FFF;
}

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

.page h2 {
    width: 95%;
    margin: 0 auto 60px;
    padding: 10px 2.5%;
    position: relative;
    overflow: hidden;
    background-color: #770505;
    color: #FFF;
    font-size: 140%;
}

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

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

section.page-sec:last-child .sec-wrap {
    margin: 0 auto;
}


/***FOOTER***/


.pagetop {
    width: 5%;
    max-width: 60px;
    position: fixed;
    right: 1%;
/*    bottom:400px;*/
    bottom: 26%;
    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 a {
	color: #FFF;
}

.footer .ftr-bk {
    width: 100%;
    background-image: url("../img/common/ftr_bk.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
    text-align: center;
    padding: 60px 0;
}

.footer .privacy {
    font-size: 80%;
    color: #FFF;
}

.footer .privacy a {
    color: #FFF;
    text-decoration: underline;
}

.footer .copyright {    
    width: 100%;
    margin: 0;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    text-align: center;
    font-size: 80%;
}




/***NEWS***/

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 #707070;
}

ul.news-list li a {
    width: 100%;
    padding: 20px 0;
    display: block;
    color: #000000;
    text-decoration: none;
}

ul.news-list li .date {
    font-size: 80%;
    color: #4E4E4E;
}

ul.news-list li .title {
    font-size: 110%;
    font-weight: 600;
}

ul.news-list li .txt {
    font-size: 90%;
    font-weight: 400;
}


