/***************common***************/
body {
    padding: 0;
    margin: 0;
    font-family: "fot-udkakugo-large-pr6n", "din-2014", sans-serif;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}
html {
    scroll-behavior: smooth;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
a:hover{
    opacity: 0.7;
}
a{
    color: #4793C5;
    text-decoration: none;
}
.flex{
    display: flex;
}
.sp{
    display: none !important;
}
.pc{
    display: block !important;
}
.justify_center{
    justify-content:center
}
.justify_space-between{
    justify-content:space-between
}
.flex-wrap{
    flex-wrap: wrap;
}
.section_inner{
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}
.section_title{
    text-align: center;
}
.section_title_eg{
    font-size: 60px;
    font-weight: bold;
    font-family: "din-2014";
}
.section_title_jp{
    font-size: 20px;
    font-family: "fot-udkakugo-large-pr6n";
    margin: -30px 0 90px 0px;
}
.fade {  
    margin-bottom: -3.5px;
    -webkit-transition: 0.3s ease-in-out;  
       -moz-transition: 0.3s ease-in-out;  
         -o-transition: 0.3s ease-in-out;  
            transition: 0.3s ease-in-out;  
}
.fade:hover {  
    opacity: 0.4;  
    filter: alpha(opacity=60);  
}
a:has(.fade){
    display: inline-block;
    background-color: #000;    
}
#form{
    position:relative;
}
#container{
    font-family: "fot-udkakugo-large-pr6n", "din-2014", sans-serif;
    line-height: 2;
}
hr{
    width: 240px;
    margin-left: 0;
    height: 3.5px;
    margin-bottom: 35px;
    background-color: #fff;
}
@media only screen and (max-width: 970px) {
    body {
        font-size: 14px;
    }
    .flex{
        display: block;
    }
    .sp{
        display: block !important;
    }
    .pc{
        display: none !important;
    }
    .luxy-el{
        transform:none !important
    }
    #luxy{
        width: 100%;
        position: absolute;
        transform: translate3d(0px, 0px, 0px);
        overflow: scroll;
    }
}
.start_reveal,
.start_reveal::after {
    animation-iteration-count: 1;
    animation-iteration-count: var(--iterations, 1);
    animation-duration: 500ms;
    animation-duration: var(--duration, 500ms);
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
} 
.start_reveal {
	position: relative;
	animation-name: text;
	color: #fff;
	white-space: nowrap;
	cursor: default;
	text-transform: uppercase;	
}
.start_reveal::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #151515;
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    animation-name: revealer;
}
@keyframes text {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}
@keyframes revealer {
    0%, 50% {
        transform-origin: 0 50%;
    }
    60%, 100% {
        transform-origin: 100% 50%;		
    }
    60% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}
.scroll_trigger{
    opacity: 0;
}
.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.slidein.is-animated {
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
    0% {
        transform: translateX(180px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
    }
    40%,100% {
        opacity: 1;
    }
}
.next_icon::after {
	content: url(../img/next_icon.svg);
    margin-left: 10px;
    position: relative;
    top: 2px;
}
.notfound_page{
    margin-top: 120px;
    margin: 140px 0 50px;
}
.notfound_page_title{
    font-size: 20px;
    margin: 50px 0 30px;
}
.notfound_page_back{
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 40px;
    margin: 50px 0 100px;
    display: block;
    max-width: max-content; 
}
/***************header***************/
#header{
    position: fixed;
    width: 100%;
    z-index: 998;
    top: 0;
    height: 85px;
}
.header_logo{
    margin: 35px 40px;
}
.header_logo img{
    width: 110px;
    position: relative;
}
.header_menu_nav{
    margin: 20px;
    font-family: "fot-udkakugo-large-pr6n", "din-2014", sans-serif;
}
.header_menu_nav ul{
    margin: 10px 20px;
}
.header_menu_nav ul li{
    margin: 5px 15px;
    position: relative;
}
.header_menu_nav ul li a{
    color: #fff;    
}
.cta_btn a{
    border: 1px solid #fff;
    padding: 10px 30px;
}
.contact_cta a{
    padding-left: 50px;
}
.contact_cta img{
    position: absolute;
    left: 20px;
    top: -3px;
}
.header_menu_accordion{
    position: relative;
}
.header_menu_accordion_block{
    display: none;
}
.header_menu_accordion:hover .header_menu_accordion_block {
    display: block;
    position: absolute;
    top: 20px;
    left: -50%;
    padding: 0px;
    margin: 0;
    width: 680px;
    background-color: #fff;
    color: #474b42;
    box-shadow: 2px 2px 8px #95949a;
}
.header_menu_accordion_block a{
    color: #000;
    padding: 0px 50px;
    border-right: 1px solid #ddd;
    margin: 50px 0 35px;
}
.header_menu_accordion_block a:last-child{
    border-right: 0;    
}
.header_menu_accordion_block img{
    width: 100%;
}
.header_menu_accordion_block .service_menu_block_list_title{
    font-size: 16px;
    font-weight: normal;
    margin: 15px;
    color: #000;
    text-align: center;
}
.header_menu_accordion span{
    font-size: 10px;
    position: relative;
    top: -2px;
    left: 3px;
}
@media only screen and (min-width: 1000px) {
    .hamburger{
        display: none !important;
    }
    .globalMenuSp{
        display: none;
    }
}
@media only screen and (max-width: 999px) {
    .header_menu_nav{
        display: none;
    }
    .hamburger {
        display : block;
        position: fixed;
        z-index : 3;
        right : 20px;
        top: 15px;
        width : 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }
    .hamburger span {
        display : block;
        position: absolute;
        width   : 30px;
        height  : 2px ;
        left    : 6px;
        background : #fff;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition   : 0.3s ease-in-out;
        transition        : 0.3s ease-in-out;
    }
    .hamburger span:nth-child(1) {
        top: 10px;
    }
    .hamburger span:nth-child(2) {
        top: 20px;
    }
    .hamburger span:nth-child(3) {
        top: 30px;
    }  
    .hamburger.active span:nth-child(1) {
        top : 16px;
        left: 6px;
        background :#fff;
        -webkit-transform: rotate(-45deg);
        -moz-transform   : rotate(-45deg);
        transform        : rotate(-45deg);
    }  
    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 16px;
        background :#fff;
        -webkit-transform: rotate(45deg);
        -moz-transform   : rotate(45deg);
        transform        : rotate(45deg);
    }
    nav.globalMenuSp {
        position: fixed;
        z-index : 2;
        top  : 0;
        left : 0;
        color: #fff;
        background: rgb(42 42 43 / 98%);
        text-align: center;
        width: 100%;
        transform: translateX(100%);
        transition: all 0.6s;
        height: 100vh;
        padding: 30px;
    }
    nav.globalMenuSp ul {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    nav.globalMenuSp ul li {
        list-style-type: none;
        padding: 0;
        width: 100%;
        transition: .4s all;
    }
    nav.globalMenuSp ul li:last-child {
        padding-bottom: 0;
    }
    nav.globalMenuSp ul li:hover{
        background :#ddd;
    }
    nav.globalMenuSp ul li a {
        display: block;
        color: #fff;
        padding: 1.5em 0;
        text-decoration :none;
    }
    nav.globalMenuSp.active {
        opacity: 100;
        display: block;
        transform: translateX(0%);
        height: 100vh;
        padding: 50px 0;
    }
    .cta_btn a {
        padding: 10px 30px;
        width: 250px;
        margin: 0 auto 30px;
    }
}
@media only screen and (max-width: 768px) {
    .to_top {
        display: none !important;
    }
}

/***************article_list***************/
.article_list{
    margin: 0px 20px 30px 0;
    width: calc(20% - 20px);
}
.article_list article{
    width: 100%;
}
.article_list .thumbnail_list{
    max-width: 215px;
    width: 100%;
    height: 265px;
    overflow:hidden;
}
.article_list .thumbnail_list img {
    max-width: 215px;
    width: 100%;
    height: 265px;
    object-fit: cover;
    transition-duration: 0.3s;
}
.article_list .thumbnail_list img:hover{
    transform: scale(1.2);
    transition-duration: 0.3s;
}
.article_list .post-title{
    font-weight: 500;
    margin: 10px 0;
    font-size: 15px;
    line-height: 25px;
}
.article_list .post-title a{
    color: #000;
}
.article_list .post_date{
    margin: 10px 0 0;
}
.article_list .post-term{
    margin: 5px 0;
    display: flex;
}
.article_list .post-term .term{
    color: #000;
}
.article_list .post-term-title{
    background-color: #000;
    color: #fff;
    padding: 4px 5px;
    font-size: 14px;
    margin-right: 10px;
    width: 64px;
    text-align: center;
}
.article_list .post-category{
    margin: 10px 0;
}
.article_list .post-category li a{
    background-color: #000;
    padding: 2px 5px;
    margin-right: 5px;
    font-size: 14px;
    color: #fff;
}
.article_list .post-link a{
    color: #000;
}
.article_list_link{
    margin: 5px 30px 30px 0;
    text-align: right;
}
.mask_blur{
    position: relative;
}
.mask_blur article {
    -ms-filter: blur(6px);
	filter: blur(6px);
}
.pass_page{
    display: none;
}
.mask_blur .pass_page{
    display: block;
    position: absolute;
    background-color: #000;
    color: #fff;
    top: 25%;
    right: 25%;
    z-index: 1;
    padding: 0px 15px;
}
.post-password-form p{
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
}
.post-password-form input[type="password"] {
    margin-left: 10px;
    height: 35px;
    background-color: #fbfbfb;
    border: 1px solid #939393;
}
.post-password-form input[type="submit"] {
    background-color: #000;
    color: #fff;
    padding: 6px 20px;
    font-size: 16px;
    border: 0;
    margin-left: 7px;
}

@media only screen and (max-width: 768px) {
    .article_list article {
        width: 100%;
        margin: 0;
    }
    .article_list .thumbnail_list {
        width: 100%;
        max-width: 100%;
    }
    .article_list .thumbnail_list img {
        width: 100%;
        max-width: 100%;
    }
    .article_list .post-title {
        margin: 10px 0;
    }
    .article_list {
        width: 100%;
    }
}

/***************footer***************/
.footer_servise{
	background-image: url(/wp-content/themes/zenco2/img/footer_servise_back.png);
	background-repeat:  no-repeat;
	background-position: center center; 
	background-size:cover;
	color: #fff;
	text-align: center;	
	margin-bottom: -20px;
}
.footer_servise .content{
	display: flex;
	max-width: 650px;
}
.footer_servise_img{
    margin: 60px auto;
}
.footer_servise_img img{
	width:150px;
}
.footer_servise_img .black_btn{
	margin: -20px 0 10px 0;
}
.footer_servise_img .black_btn a{
	color: #fff;
    text-decoration: none;
} 
.footer_cta {
    animation: poyopoyo 2s ease-out infinite;
    animation-duration: 2s;
    opacity: 1;
    position: fixed;
    bottom: -30px;
    right: -30px;
    background-color: #0E0E0E;
    border-radius: 320px;
    padding: 65px 20px 0px 10px;
    width: 210px;
    height: 210px;
    text-align: center;
}
.footer_cta a{
    color: #fff;
}
.footer_cta_eg{
    font-size: 20px;
    font-weight: 800;
    margin-top: 10px;
    font-family: "fot-udkakugo-large-pr6n", "din-2014", sans-serif;
    letter-spacing: 4px;
}
.footer_cta_jp{
    font-size: 14px;
    margin: 15px 0px;
}
@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
        transform: scale(1.0);
    }
    50%, 70% {
        transform: scale(0.95);
    }
}
.to_top {
    position: fixed;
    bottom: 90px;
    right: 16px;
}
.to_top img{
    width: 135px;
}
.footer_pr{
    text-align: center;
}
.footer_pr_title{
    margin: 120px auto 0;
    font-size: 35px;
    max-width: max-content;
}
.footer_pr_txt{
    margin: 20px 0;
}
.footer_pr_btn{
    background-color: #fff;
    max-width: max-content;
    margin: 60px auto 100px;
    padding: 15px 50px;
    border-radius: 300px;
}
.footer_pr_btn a{
    display: block;
}
footer{
    background-color: #171718;
    padding: 50px 0 20px !important;
}
footer li{
    margin: 0 10px;
}
footer li a{
    color: #fff;
}
@media only screen and (max-width: 1095px) {
    footer li a {
        font-size: 15px;
    }
}
@media only screen and (max-width: 970px) {
    .footer_servise{
        display: none;
    }
    footer li {
        margin: 0 auto 20px;
        text-align: center;
        border-bottom: 1px solid #3f3f3f;
        padding-bottom: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .footer_pr_btn {
        padding: 15px 25px;
    }
    .footer_pr_title {
        margin: 90px auto 0;
    }
    .footer_pr_title {
        font-size: 20px;
    }
}

/***************breadcrumb***************/
.breadcrumb h1{
    font-weight: normal !important;
    margin: 0 !important;
}
.breadcrumb ul{
    margin-bottom: 20px;
}
.breadcrumb a{
    color: #fff;
}
.breadcrumb img{
    width: 8px;
    margin: 0 10px 0 15px;
    position: relative;
    top: 1px;    
}
.breadcrumb .flex{
    display: flex !important;
}

@media only screen and (max-width: 970px) {
    .breadcrumb .flex{
        -webkit-overflow-scrolling: touch;
        overflow: auto;
        white-space: nowrap;
    }
    .breadcrumb ul {
        display: flex;
        padding-bottom: 15px;
        border-bottom: 0;
    }
}
@media only screen and (max-width: 768px) {
    .breadcrumb ul li{
        padding: 0 10px 0 5px;
    }
}

/***************pager***************/
.pagenation{
    border-radius: 7px;
    overflow: hidden;
    margin: 20px auto 0;
}
.pagenation ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.pagenation .active{
    background-color: #000;
    padding: 10px 15px;
    color: white;
}
.pagenation a{
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    background-color: #a9a9a9;
}
.pagenation li{
    margin: 0px 10px;
}
.pagenation .next a, .pagenation .prev a{
    background-color: #000;
}
.pagenation .next a img, .pagenation .prev a img{
    width: 12px;
    height: 16px;
    position: relative;
    top: 2px;
}

/***************sitemap_list***************/
#sitemap_list li a {
    color: #2D2E5B !important;
}
#sitemap_list {
    display: flex;
    flex-wrap: wrap;
}
#sitemap_list li {
    width: 45%;
	margin: 10px 20px !important;
}
#sitemap_list li.home-item {
    margin-left: 20px;
}
