@charset "utf-8";
*, *::before, *::after{
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
	height: 100%;
	position: relative;
}
body{
	font-family:source-han-sans-japanese,游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
	font-size: 14px;font-size: 1.4rem;
	font-weight: 300;
	color:#333;
	margin: 0 auto;
	line-height: 1;
	position:relative;
    letter-spacing: 2px;
}
main{
	overflow: hidden;
}
iframe{
	max-width: 100%;
	width: calc(1100px / 2);
}
img{
	width: 100%;
	max-width: 100%;
    height: auto;
}
a{
	text-decoration: none;
	color: #333;
    cursor: pointer;
    display: block;
}
@media screen and (max-width:1024px) {
	body{
		font-size: 14px;font-size: 1.4rem;
	}
}

/* フォントここから */
.oswald{
	font-family: oswald, sans-serif;
}
.ebgaramond{
	font-family: eb-garamond, serif;
}
.toppan{
	font-family: toppan-bunkyu-midashi-min-st, serif;
}
/* フォントここまで */

/* デバイス切り替えここから */
@media screen and (max-width: 1024px) {
	.pc {display:none !important;}
}
@media print,screen and (min-width: 1025px) {
	.sp {display:none !important;}
}
/* デバイス切り替えここまで */

/* 共通スタイルここから */
h3.heading{
    margin-bottom: 50px;
    position: relative;
    font-size: 1.2rem;
}
h3.heading:after{
    content: "";
    width: 90px;
    height: 1px;
    background: #ccc;
    display: block;
    position: absolute;
    top: 72px;
    left: 5px;
}
h3.heading span{
    font-family: eb-garamond, serif;
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #1f2c5c;
    position: relative;
    display: block;
    margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
    h3.heading{
        margin-bottom:40px;
    }
    h3.heading:after{
        width: 20%;
        top: 55px;
    }
    h3.heading span{
        font-size: 5rem;
        margin-bottom: 20px;
    }
}

.btn{
    border: 0;
    position: relative;
    display: block;
    text-align: center;
    width: 280px;
    padding: 20px 0px;
    margin: 40px auto 0;
    background: rgb(31,44,91);
    background: linear-gradient(180deg, rgba(31,44,91,1) 0%, rgba(1,2,3,1) 100%);
    color: #fff;
    line-height: 1;
}
.btn:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 15%;
    height: 1px;
    transform: translate(0, -50%);
    background: #fff;
    animation: line 2s ease infinite;
}
@keyframes line{
    0%{width:0;opacity:0}
    20%{width:0;opacity:1}
    80%{width:20%;opacity:1}
    100%{width:20%;opacity:0}
}
.btn.black{
    background: #333;
}
@media screen and (max-width:1024px) {
    .btn{
        width:auto;
        margin: 40px 8% 0;
        font-size: 1.4rem;
    }
}
/* 共通スタイルここまで */

/* ホバーアニメーションここから */
.hvr-sweep-to-right {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
}
.hvr-sweep-to-right:before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ecf5fb;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -webkit-transition-timing-function: easeInOut;
    transition-timing-function: easeInOut;
}
.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.hvr-sweep-to-right:hover span,
.hvr-sweep-to-right:focus span,
.hvr-sweep-to-right:active span{
    color: white !important;
}
.hvr-sweep-to-right:hover span::before,
.hvr-sweep-to-right:focus span::before,
.hvr-sweep-to-right:active span::before{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* ヘッダーここから */
header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}
header:before{
    content: "";
    background: url(../img/common/icon_logo.svg) no-repeat right top / contain;
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 0;
    display: inline-block;
    padding-top: 135%;
    z-index: -1;
}
header h1{
    max-width: 350px;
    margin: 0 0 0 50px;
}
header nav ul{
    margin-top: 100px;
    display: flex;
}
header nav ul li{
    -ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
header nav ul li a{
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-right: 40px;
}
header nav ul li:last-of-type a{
    margin-right: 60px;
}
header nav ul li a.active:before{
    content: "";
    width: 1px;
    height: 20px;
    background: #1f2c5c;
    display: block;
    position: absolute;
    bottom: 110%;
    left: 0;
    right: 0;
    margin: auto;
}
header .btn_area{
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
}
header .btn_area li{
    display: flex;
    align-items: center;
    margin-right: 30px;
}
header .btn_area li img{
    width: 30px;
    margin-right: 10px;
}
header .btn_area li p{
    font-family: oswald, sans-serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: #202c5c;
    text-align: center;
}
header .btn_area li p span{
    font-family: source-han-sans-japanese;
    display: block;
    letter-spacing: 0;
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}
header .btn_area li p small{
    background: #f0f0f0;
    padding: 2px 5px;
    border-radius: 50px;
    margin-right: 5px;
}
header .btn_area li a{
    background: rgb(31,44,91);
    background: linear-gradient(180deg, rgba(31,44,91,1) 0%, rgba(1,2,3,1) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 10px;
    width: 260px;
    justify-content: center;
    border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1024px) {
    header{
        position: relative;
        padding-bottom: 0;
        height: 70px;
    }
    header:before{
        width:40%;
    }
    header h1{
        width: 60%;
        max-width: 250px;
        margin: 0 0 0 2%;
    }
    header .drawer-nav p{
        color: #fff;
        font-family: oswald, sans-serif;
        font-size: 2.4rem;
        letter-spacing: 5px;
        text-align: center;
        border: 1px solid #fff;
        padding: 15px 0;
        margin: 70px 8% 0;
    }
    header .drawer-nav p span{
        font-family: source-han-sans-japanese;
        display: block;
        font-size: 1.2rem;
        letter-spacing: 0;
        margin-top: 15px;
    }
    header .drawer-nav p span small{
        font-size: 1.2rem;
        background: #f0f0f0;
        padding: 2px 10px;
        border-radius: 50px;
        margin-right: 10px;
        color: #333;
    }
    header .drawer-nav ul{
        display: block;
        margin-top: 40px;
    }
    header .drawer-nav ul li{
        -ms-writing-mode: tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }
    header .drawer-nav ul li a{
        position: relative;
        color: #fff;
        display: flex;
        margin-right: 0;
        align-items: center;
        padding: 15px 4%;
        border-bottom: 1px solid #fff;
        font-size: 1.2rem;
    }
    header .drawer-nav ul li a:after{
        content: "";
        position: absolute;
        top: 50%;
        right: 4%;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transform: translate(0%, -50%) rotate(45deg);
        transform: translate(0, -50%) rotate(45deg);
    }
    header .drawer-nav ul li:first-of-type a{
        border-top: 1px solid #fff;
    }
    header .drawer-nav ul li:last-of-type a{
        margin-right: 0;
    }
    header .drawer-nav ul li a span{
        font-family: eb-garamond, serif;
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-right: 15px;
    }
    header .drawer-nav .login_btn{
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #fff;
        padding: 15px 0px;
        margin: 40px 8%;
    }
    header .drawer-nav .login_btn img{
        width: 22px;
        margin-right: 10px;
    }
}
/* ヘッダーここまで */

/* 下層メインビジュアルここから */
.under_mv{
    position: relative;
    padding: 0 0 20%;
}
.under_mv:before{
    content: "HANNAN KENSETSU KOUGYO Co.,Ltd.";
    font-family: oswald, sans-serif;
    font-size: 1.3rem;
    color: #1f2c5c;
    position: absolute;
    top: 50%;
    left:5%;
    letter-spacing: 5px;
    z-index: 1;
    transform: translate(-55%, -50%) rotate(-90deg);
}
.under_mv:after{
    content: "";
    width: 1px;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
    left: 8%;
    transform: translate(3px,0);
}
.under_mv .inner{
    margin-left: 10%;
}
.under_mv .bread_wrap{
    position: relative;
    padding-top: 20px;
}
.under_mv .bread_wrap a,.bread_wrap a:visited{
	color:#1f2c5c;
	display:inline;
}
.under_mv .bread_wrap ol{
	font-size: 1.4rem;
    font-family: oswald, sans-serif;
}
.under_mv .bread_wrap ol li{
	display: inline-block;
	color:#1f2c5c;
}
.under_mv .bread_wrap ol li:first-of-type{
	background-position: left center;
	list-style: none;
}
.under_mv .bread_wrap ol li:last-of-type span{
	font-weight: 600;
}
.under_mv .bread_wrap ol li:after{
	content: ">";
	color:#1f2c5c;
}
.under_mv .bread_wrap ol li:last-child:after{
	content:"";
}
.under_mv h2{
    position: relative;
    font-family: eb-garamond, serif;
    font-size: 16rem;
    color: #1f2c5c;
    font-weight: 600;
    letter-spacing: 5px;
    z-index: 0;
}
.under_mv h2:after{
    content: "";
    width: calc(100% + 2%);
    height: 1px;
    background: #ccc;
    position: absolute;
    bottom: 45px;
    left: -2%;
    z-index: -1;
}
.under_mv h2 span{
    font-family: toppan-bunkyu-midashi-min-st, serif;
    display: block;
    color: #333;
    font-size: 2rem;
    margin: 30px 0 30px 5px;
}
.under_mv p{
    font-size: 1.6rem;
}
/*スクロールダウン全体の場所*/
.scrolldown{
    position: absolute;
    right: 2%;
    bottom: 10%;
    height: 100px;
}
.scrolldown span{
    font-family: oswald, sans-serif;
    position: relative;
    left: 0;
    top: 0;
    color: #1f2c5c;
    writing-mode: vertical-rl;
}
.scrolldown::after{
    content: "";
    position: absolute;
    top: 90px;
    left: 4px;
    width: 1px;
    height: 30px;
    background: #1f2c5c;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}
@keyframes pathmove{
    0%{
        height:0;
        top:90px;
        opacity: 0;
    }
    30%{
        height:30px;
        opacity: 1;
    }
    100%{
        height:0;
        top:120px;
        opacity: 0;
    }
}
@media screen and (max-width: 1024px) {
    .under_mv{
        position: relative;
        padding: 0 0 75%;
        margin-top: 60px;
    }
    .under_mv:before{
        font-size: 1rem;
        left: 3%;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    .under_mv:after{
        left: 6%;
        transform: translate(0,0);
    }
    .under_mv .bread_wrap{
        padding: 15px 0 10px;
        overflow-x: scroll;
    }
    .under_mv .bread_wrap ol{
        font-size: 1.2rem;
        width: 700px;
    }
    .under_mv h2{
        font-size:5rem;
    }
    .under_mv h2:after{
        width: calc(100% + 4%);
        left: -4%;
        bottom: 30px;
    }
    .under_mv h2 span{
        font-size: 1.6rem;
        margin: 20px 0 20px 5px;
    }
    .under_mv p{
        font-size: 1.4rem;
        line-height: 1.4;
    }
    /*スクロールダウン全体の場所*/
    .scrolldown{
        right: 4%;
        bottom: 12%;
        height: 80px;
    }
    .scrolldown span{
        font-size: 1.2rem;
    }
    .scrolldown::after{
        top: 70px;
    }
    @keyframes pathmove{
        0%{
            height:0;
            top:70px;
            opacity: 0;
        }
        30%{
            height:30px;
            opacity: 1;
        }
        100%{
            height:0;
            top:100px;
            opacity: 0;
        }
    }
}
/* 下層メインビジュアルここまで */

/* コンタクトエリアここから */
.contact_area{
    max-width: 1200px;
    margin: 140px auto;
    display: flex;
}
.contact_area li{
    width: 33.333%;
    border-right: 1px solid #ccc;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}
.contact_area li:first-of-type{
    border-left: 1px solid #ccc;
}
.contact_area li h3{
    width: calc(100% - 100px);
}
.contact_area li h4{
    text-align: center;
    color: #1f2c5c;
    font-size: 1.6rem;
    font-weight: 600;
}
.contact_area li h4 img{
    display: block;
    width: 90px;
    margin: 20px auto 25px;
}
.contact_area li:first-of-type p{
    line-height: 1.6;
}
.contact_area li:nth-of-type(2) p{
    text-align: center;
}
.contact_area li:nth-of-type(2) p span{
    display: block;
    font-family: oswald, sans-serif;
    color: #1f2c5c;
    font-size: 3rem;
    letter-spacing: 5px;
    margin-bottom: 5px;
}
.contact_area li:last-of-type .btn{
    margin: 0;
    background: transparent;
    border: 1px solid #1f2c5c;
    color: #1f2c5c;
    font-weight: 600;
}
.contact_area li:last-of-type .btn:after{
    background:#1f2c5c;
}
@media screen and (max-width: 1024px) {
    .contact_area{
        max-width: 100%;
        margin:0 4% 60px;
        display: block;
    }
    .contact_area li{
        width: auto;
        border-right: 0;
        padding: 40px 0;
        border-bottom: 1px solid #ccc;
    }
    .contact_area li:first-of-type{
        border-left: 0;
    }
    .contact_area li:last-of-type{
        border-bottom: 0;
    }
    .contact_area li h3{
        width: calc(100% - 4%);
    }
    .contact_area li h4{
        text-align: center;
        color: #1f2c5c;
        font-size: 1.6rem;
        font-weight: 600;
    }
    .contact_area li h4 img{
        display: block;
        width: 90px;
        margin: 20px auto 25px;
    }
    .contact_area li:first-of-type p{
        line-height: 1.6;
    }
    .contact_area li:nth-of-type(2) p{
        text-align: center;
    }
    .contact_area li:nth-of-type(2) p span{
        display: block;
        font-family: oswald, sans-serif;
        color: #1f2c5c;
        font-size: 3rem;
        letter-spacing: 5px;
        margin-bottom: 5px;
    }
    .contact_area li:last-of-type .btn{
        width: 92%;
    }
}
/* コンタクトエリアここまで */

/* フッターここから */
footer{
    background: rgb(31,44,91);
    background: linear-gradient(180deg, rgba(31,44,91,1) 0%, rgba(1,2,3,1) 100%);
    color: #fff;
    padding-top: 50px;
    position: relative;
}
footer #page-top{
    position: fixed;
    bottom: 0;
    right: 0;
}
footer #page-top a{
    background-color: #1f2c5c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 60px;
}
#page-top a img{
    width: 32px;
}
footer .inner{
    max-width: 950px;
    margin: 0 auto;
}
footer h2{
    max-width: 340px;
    margin: 0 auto;
}
footer h2 a{
    display: block;
}
footer .license{
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    margin: 40px 0;
    letter-spacing: 0;
}
footer .license li:after{
    content: "|";
    padding: 0 10px;
}
footer .license li:last-of-type:after{
    content:none;
}
footer .link_area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .link_area h4{
    font-family: oswald, sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}
footer .link_area h4:before{
    margin-right: 1em;
}
footer .link_area h4:after{
    margin-left: 1em;
}
footer .link_area h4:before,
footer .link_area h4:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
}
footer .link_area a{
    width: 32%;
    display: block;
}
footer .menu_area{
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    align-items: center;
}
footer .menu_area nav ul{
    display: flex;
}
footer .menu_area nav ul li a{
    color: #fff;
    position: relative;
    display: block;
    margin-right: 30px;
    font-size: 1.2rem;
}
footer .menu_area nav ul li:first-of-type a{
    margin-left: 20px;
}
footer .menu_area nav ul li:last-of-type a{
    margin-right:0;
}
footer .menu_area nav ul li a:before{
    content: "";
    width: 1px;
    height: 80%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: skewX(-15deg) translate(-50%,-50%);
}
footer .menu_area nav ul li a span{
    font-family: eb-garamond, serif;
    display: block;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
footer .menu_area .login_btn{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
    width: 310px;
    border: 1px solid #fff;
    padding: 18px 0px;
}
footer .menu_area .login_btn img{
    width: 22px;
    margin-right: 10px;
}
footer .office_area{
    display: flex;
    justify-content: space-between;
    border-top: 1px dotted #fff;
    padding-top: 50px;
    margin-bottom: 40px;
    letter-spacing: 0;
}
footer .office_area .box h4{
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
}
footer .office_area .box address{
    font-style: normal;
    line-height: 1.3;
}
footer p.copy{
    font-family: oswald, sans-serif;
    background: #ecf5fb;
    font-size: 1rem;
    text-align: center;
    padding: 10px 0;
    color: #888888;
    letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
    footer{
        padding-top: 40px;
    }
    footer #page-top a{
        width: 50px;
        height: 40px;
    }
    #page-top a img{
        width: 30%;
    }
    footer .inner{
        max-width:100%;
    }
    footer h2{
        width: 60%;
    }
    footer .license{
        display: block;
        margin: 30px 0;
        text-align: center;
    }
    footer .license li{
        margin-bottom: 5px;
    }
    footer .license li:last-of-type{
        margin-bottom:0;
    }
    footer .license li:after{
        content:none;
        padding:0;
    }
    footer .link_area{
        display: block;
        margin: 0 4%;
    }
    footer .link_area a{
        width: auto;
        margin: 0 5% 20px;
    }
    footer .link_area a:last-of-type{
        margin-bottom: 0;
    }
    footer .menu_area{
        display:block;
        margin: 40px 0;
    }
    footer .menu_area nav ul{
        display: block;
    }
    footer .menu_area nav ul li a{
        display: flex;
        margin-right: 0;
        align-items: center;
        padding: 15px 4%;
        border-bottom: 1px solid #fff;
    }
    footer .menu_area nav ul li:first-of-type a{
        margin-left: 0;
    }
    footer .menu_area nav ul li:last-of-type a{
        margin-right:0;
    }
    footer .menu_area nav ul li a:before{
        content:none;
    }
    footer .menu_area nav ul li a:after{
        content: "";
        position: absolute;
        top: 50%;
        right: 4%;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transform: translate(0%, -50%) rotate(45deg);
        transform: translate(0, -50%) rotate(45deg);
    }
    footer .menu_area nav ul li a span{
        margin-bottom: 0;
        margin-right: 15px;
    }
    footer .menu_area .login_btn{
        width: auto;
        padding: 15px 0px;
        margin: 40px 8% 0;
    }
    footer .office_area{
        display: block;
        padding-top: 40px;
        margin: 0 4% 40px;
    }
    footer .office_area .box{
        margin: 0 2% 20px;
    }
    footer .office_area .box:last-of-type{
        margin-bottom: 0;
    }
}
/* フッターここまで */

/* ページ遷移アニメーションここから */
body.fo .fade_group div{
    right: 0;
}
body.fo .fade_group2 div{
    right: 100vw;
}
.fade_group div ,
.fade_group2 div {
    content: '';
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100%;
    pointer-events: none;
}
.fade_group div {
    z-index: 9999;
    transition: .6s;
}
.fade_group2 div {
    z-index: 9998;
    transition: .8s;
}
.fade_group div:nth-of-type(1) {
    background: rgba(77, 94, 153,.3);
    background: linear-gradient(-90deg, rgba(31,44,91,.3) 0%, rgba(1,2,3,.3) 100%);
}
.fade_group div:nth-of-type(2) {
    background: rgba(77, 94, 153,.5);
    background: linear-gradient(-90deg, rgba(31,44,91,.5) 0%, rgba(1,2,3,.5) 100%);
    transition-delay:.1s;
}
.fade_group div:nth-of-type(3) {
    background: rgb(31,44,91,.7);
    background: linear-gradient(-90deg, rgba(31,44,91,.7) 0%, rgba(1,2,3,.7) 100%);
    transition-delay:.2s;
}
.fade_group div:nth-of-type(4) {
    background: rgb(31,44,91,1);
    background: linear-gradient(-90deg, rgba(31,44,91,1) 0%, rgba(1,2,3,1) 100%);
    transition-delay:.3s;
}
.fade_group2 div:nth-of-type(1) {
    background: rgb(236,245,251,.7);
    transition-delay: .2s;
}
.fade_group2 div:nth-of-type(2) {
    background: rgb(236,245,251,.9);
    transition-delay: .3s;
}
/* ページ遷移アニメーションここまで */

/* ページネーションここから */
.pagenation{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    width: 100%;
}
.pagenation li a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333333;
    padding: 18px;
    width: 50px;
    margin-right: 10px;
    background: #f0f0f0;
    font-weight: 600;
}
.pagenation li.active a{
    color: #fff;
    background: #333333;
}
.pagenation li.next a,
.pagenation li.prev a{
    color: #f0f0f0;
}
.pagenation li.next a:after,
.pagenation li.prev a:after{
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
}
.pagenation li.prev a:after{
    left: 50%;
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    -webkit-transform: translate(0%, -50%) rotate(45deg);
    transform: translate(0%, -50%) rotate(45deg);
}
.pagenation li.next a:after{
    right: 50%;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: translate(-1%, -50%) rotate(45deg);
    transform: translate(50%, -50%) rotate(45deg);
}
    
/* ページネーションここまで */
/* loading start */
.loaded .loader {
    display: none;
}
.loader {
    width: 1em;
    height: 1em;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load5 1.1s infinite ease;
    animation: load5 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
@-webkit-keyframes load5 {
    0%,
    100% {
        box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.5), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.7);
    }
    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.7), .8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.5);
    }
    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.5), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.5), 2.5em 0em 0 0em rgba(0, 0, 0, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.5), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.5), 0em 2.5em 0 0em rgba(0, 0, 0, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.5), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.5), -2.6em 0em 0 0em rgba(0, 0, 0, 0.7), -1.8em -1.8em 0 0em #ffffff;
    }
}
@keyframes load5 {
    0%,
    100% {
        box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.5), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.7);
    }
    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.5);
    }
    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.5), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.5), 2.5em 0em 0 0em rgba(0, 0, 0, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.5), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.5), 0em 2.5em 0 0em rgba(0, 0, 0, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.5), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
    }
    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.5), -2.6em 0em 0 0em rgba(0, 0, 0, 0.7), -1.8em -1.8em 0 0em #ffffff;
    }
}1
/* loading end */
