/*
 Theme Name:   noufuku_theme
 Template:     xeory_extension
 Version:      1.0.0
*/

.raleway{
	font-family: 'Raleway', sans-serif;
}

/* SYSTEM */
*{
	box-sizing: border-box;
}
body{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	background: #FFF;
}
a,a:hover{
	text-decoration: none;
}
p,h1,h2,h3,h4,h5,h6,span,small,li,dt,dd,th,td,a{
	line-height: 1.6;
	letter-spacing: .125em;
}

/* COMMON */
.wrap{
	width: 100% !important;
	max-width: 1280px;
	padding: 0 20px !important;
	margin: 0 auto !important;
}
.center{
	text-align: center;
}
.flex{
	display: flex;
	flex-wrap: wrap;
}
.col_2{
	width: 48%;
	margin: 0 1% 2%;
}
.col_3{
	width: calc(100% / 3 - 2%);
	margin: 0 1% 2%;
}
.col_4{
	width: 23%;
	margin: 0 1% 2%;
}

/* PARTS */
.link a{
	display: inline-block;
	padding: .2em 1em;
	color: #000000;
	font-weight: 900;
}
.link a i{
	margin-right: .8em;
	color: #182985;
	transition: all .3s ease;
}
.link a:hover i{
	transform: translateX(60%);
}
.c-title{
	text-align: center;
	margin: 2em 0 3em;
}
.c-title h2{
	color: #2CA6E0;
	font-size: 42px;
    font-weight: 100;
    line-height: 1;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
}
.c-title h2:after{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 1px;
	background: #2CA6E0;;
}

/* HEADER */
#header{
	background: #FFF;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-height: 80px;
    position: relative;
    z-index: 2;
}
#header .logo{
    padding: 5px 1em;
}
#header .logo img{
	max-height: 72px;
}
#header .menu{
	transition: all .3s ease;
	padding-right: 90px;
}
#header .menu ul{
	display: flex;
}
#header .menu ul li{
	margin: .7em .2em;
}
#header .menu ul li a{
	color: #036EB5;
	font-weight: 600;
	display: block;
    padding: .8em 1em;
    border-bottom: 3px solid transparent;
}
#header .menu ul li a:hover{
	border-bottom: 2px solid #036EB5;
}
#header .menu .recruit-btn{
	position: absolute;
	top: 0;
	right: 0;
}
#header .menu .recruit-btn a{
	display: block;
	width: 80px;
	height: 80px;
	padding: 2.15em 3px;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	color: #FFF;
	background: #036EB5;
	border: 3px solid #036EB5;
	transition: all .3s ease;
}
#header .menu .recruit-btn a span.en{
	display: none;
	font-size: 28px;
    font-weight: 100;
}
#header .menu .recruit-btn a:hover{
	color: #036EB5;
	background: #FFF;
	width: 200px;
	padding: 1.2em 0;
}
#header .menu .recruit-btn a:hover span.en{
	display: inline-block;
}
#toggle{
	display: none;
}
#drawer{
	display: none;
}

/* FOOTER */
footer#footer{
	color: #000000;
	background: #FFF;
	border: 0;
	padding: 0;
	margin: 0;
}
#footer a{
	color: inherit;
}
footer#footer .footer-01{
	background: #F4F4F3;
	padding: 0;
}
footer#footer .footer-01 ul{
	display: flex;
	flex-wrap: wrap;
}
footer#footer .footer-01 ul li{
	width: calc(100% / 3);
	padding: 3em 4em;
	border-right: 1px solid #CCC;
}
footer#footer .footer-01 ul li:last-child{
	border: 0;
}
footer#footer .footer-01 ul li h2{
	line-height: 52px;
	font-size: 42px;
	font-weight: 100;
	color: #2CA6E0;
}
footer#footer .footer-01 ul li span{
	display: block;
	font-size: 14px;
}
footer#footer .footer-01 ul li .link{
	margin-top: 1em;
	text-align: right;
}
footer#footer .footer-01 ul li .link a{
	color: #000000;
}

footer#footer .footer-02{
	background: #FFF;
	padding: 0;
	margin: 0;
}
footer#footer .footer-02 .logo{
	padding: 3em;
	text-align: center;
}
footer#footer .footer-02 .logo h1{
	max-width: 320px;
    display: inline-block;
}
footer#footer .footer-03{
	background: #F4F4F3;
	padding: 2em 0;
}
footer#footer .footer-03 ul.main-menu{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
footer#footer .footer-03 ul.main-menu>li{
	margin: 0 1.2em;
}
footer#footer .footer-03 ul.main-menu>li>h2>a{
	font-size: 26px;
	font-weight: 600;
	color: #036EB5;
	display: block;
	padding-bottom: 1px;
	margin-bottom: 6px;
	position: relative;
	overflow: hidden;
}
footer#footer .footer-03 ul.main-menu>li>h2>a:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #2CA6E0;
	transition: all .3s ease;
	transform: translateX(-100%);
}
footer#footer .footer-03 ul.main-menu>li>h2>a:hover:after{
	transform: translateX(0);
}
footer#footer .footer-03 ul.main-menu>li>p{
	font-size: 16px;
	font-weight: bold;
}
footer#footer .footer-03 ul.sub-menu{
	margin-top: 1em;
}
footer#footer .footer-03 ul.sub-menu li a{
	display: block;
	padding: .2em;
	font-size: 14px;
}
footer#footer .footer-03 .recruit-btn{
	padding: .3em 0;
	text-align: right;
}
footer#footer .footer-03 .recruit-btn a{
	display: inline-block;
	color: #FFF;
	background: #036EB5;
	padding: .4em 1em;
	border: 1px solid #036EB5;
}
footer#footer .footer-03 .recruit-btn a .logo{
	display: inline-block;
	margin-right: .2em;
}
footer#footer .footer-03 .recruit-btn a .logo h2{
	color: #2CA6E0;
    font-size: 35px;
    font-weight: 100;
    display: inline-block;
}
footer#footer .footer-03 .recruit-btn a .anker{
	display: inline-block;
	vertical-align: super;
}
footer#footer .footer-03 .recruit-btn a:hover{
	color: #036EB5;
	background: #FFF;
}
footer#footer .footer-03 .site-info{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
footer#footer .footer-03 .site-info p.info{
	font-size: 14px;
}
footer#footer .footer-03 .site-info p.copyright{
	font-size: 12px;
}

/* MV */
#mv{
	height: 800px;
	background-size: cover;
	background-position: center center;
	position: relative;
}
#mv .logo{
	padding: 3em;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#mv .logo h2{
	font-size: 32px;
    font-weight: 100;
    color: #FFF;
}

#mv.short{
	height: 400px;
}

/* RESULT SLIDER */
.result-list{
	margin-bottom: 2em;
}
.result-slider{
	position: relative;
}
.result-slider .prev-arrow{
	position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 80px;
}
.result-slider .next-arrow{
	position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 80px;
}
.result-slider .result-slide{
	width: 480px;
	height: 0;
	padding-top: 78%;
	position: relative;
}
.result-slider .result-slide a{
	position: absolute;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.result-slider .result-slide a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all .3s ease;
}
.result-slider .result-slide a:hover img{
	transform: scale(1.1);
}

/* TOP */
#mv.top .logo img{
	max-width: 437px;
}
.top .top-concept{
	position: relative;
    padding-bottom: 6em;
}
.top .top-concept .bg{
	height: 500px;
}
.top .top-concept .bg img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: bottom;
}
.top .top-concept .wrap{
	position: absolute;
    top: 6em;
    left: 50%;
    transform: translateX(-50%);
}
.top .top-concept .wrap .logo{
	width: 55%;
	margin-right: 5%;
	padding-top: 5em;
}
.top .top-concept .wrap .content{
	width: 40%;
}
.top .top-concept .wrap .content h3{
	color: #FFF;
    font-size: 38px;
    letter-spacing: .6em;
    margin-bottom: 1em;
}
.top .top-concept .wrap .content .link a,
.top .top-concept .wrap .content .link a i{
	color: #FFF;
}
.top .top-service{
	padding-bottom: 6em;
}
.top .top-service-list{
	align-items: stretch;
	padding-bottom: 3em;
}
.top .top-service-list .box{
	position: relative;
	overflow: hidden;
}
.top .top-service-list .box.box-01{
	width: 50%;
}
.top .top-service-list .box.box-02{
	width: 100%;
}
.top .top-service-list .box .bg{
	vertical-align: top;
	width: 100%;
    height: 100%;
    transition: all .3s ease;
}
.top .top-service-list .box .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.top .top-service-list .box .content{
	position: absolute;
    width: 40%;
    height: auto;
    top: 50%;
    left: 60%;
    transform: translateY(-50%);
}
.top .top-service-list .box .content h3{
	font-weight: 100;
    font-size: 24px;
    color: #FFF;
}
.top .top-service-list .box .content h3 span{
	font-weight: 900;
    font-size: 28px;
}
.top .top-service-list .box .content h4{
	color: #FFF;
    font-size: 26px;
    letter-spacing: .3em;
    font-weight: bold;
}
.top .top-service-list .box a:hover .bg{
	transform: scale(1.1);
}
.top-result{
	padding: 6em 0;
	background: #F4F4F3;
	margin-bottom: 3em;
}
.top .top-topics{
	padding: 3em 0 6em;
}

/* TOPICS LIST */
.topics-list{
	margin: 1em 0 2em;
}
.topics-list .topics-box .thumb{
	overflow: hidden;
	width: 100%;
	height: 0;
	padding-top: 78%;
	margin-bottom: 5px;
	position: relative;
}
.topics-list .topics-box .thumb a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.topics-list .topics-box .thumb img{
	transition: all .3s ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.topics-list .topics-box .thumb a:hover img{
	transform: scale(1.1);
}
.topics-list .topics-box .meta p.date{
	color: #808080;
	font-size: 14px;
	font-weight: bold;
	float: left;
	margin: 0;
}
.topics-list .topics-box .meta div.terms{
	float: right;
	display: flex;
}
.topics-list .topics-box .meta div.terms span{
	display: inline-block;
	margin-right: 5px;
	padding: 2px 4px;
	color: #FFF;
	background: #5EB7E8;
}
.topics-list .topics-box .meta div.terms span.news{
	background: #BF9F66;
}
.topics-list .topics-box .title{
	clear: both;
	margin-top: 5px;
}
.topics-list .topics-box .title h3 a{
	color: #3E3A39;
	font-size: 18px;
	font-weight: bold;
}

/* TOPICS SINGLE */
.post-header .cat-name span{
	border: 0;
	font-weight: bold;
	color: #FFF;
	background: #5EB7E8;
}
.post-header .cat-name span.news{
	background: #BF9F66;
}
.post-header .meta p.date{
	text-align: right;
	color: #808080;
	font-size: 14px;
	font-weight: bold;
	margin: 0;
}
.single-content .link{
	margin: 2em 0 6em;
}

/* CONCEPT */
.concept .concept-title{
	padding: 3em 0;
}
.concept .concept-content{
	padding-bottom: 6em;
	background-size: cover;
	background-position: top center;
}
.concept .concept-content .concept-flex{
	margin-bottom: 10em;
	align-items: center;
}
.concept .concept-content #mission.concept-flex{
	flex-direction: row-reverse;
	align-items: baseline;
}
.concept .concept-content .concept-flex .logo{
	width: 60%;
}
.concept .concept-content .concept-flex .content{
	width: 40%;
	padding: 3em;
}
.concept .concept-content .concept-flex .content ul{
	padding-left: 2em;
}
.concept .concept-content .concept-flex .content ul li{
	position: relative;
	margin-bottom: 1.2em;
}
.concept .concept-content .concept-flex .content ul li:before{
	content: '●';
	display: block;
	position: absolute;
	color: #2CA6E0;
	right: 100%;
	top: 0;
	transform: translateX(-30%);
}

/* ABOUT US */
.about .about-about{
	padding: 1em 0 0;
}
.about .about-table{
	max-width: 550px;
	margin: 2em auto 4em;
}
.about .about-banner{
	background: #F4F4F3;
	padding: 4em 0;
}
.about .about-banner h3{
	font-size: 24px;
	margin-bottom: 1em;
}
.about .about-banner img{
	max-width: 280px;
}
.about-activity{
	padding: 6em 0;
}
.about-activity h3{
	font-size: 28px;
	margin-bottom: 2em;
}
.about .about-table h4{
	margin-bottom: 10px;
}
.about .about-table dl,
.about .about-table dt,
.about .about-table dd{
	margin: 0;
	padding: 0;
}
.about .about-table dl{
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #000000;
}
.about .about-table dl:last-child{
	border-bottom: 1px solid #000000;
}
.about .about-table dt,
.about .about-table dd{
	padding: 9px 16px;
}
.about .about-table dt{
	width: 25%;
}
.about .about-table dd{
	width: 75%;
}
.about .about-table dl dl{
	border-top: 0;
	border-bottom: 1px solid #000000;
	justify-content: flex-end;
}
.about .about-table dl dl:last-child{
	border: 0;
}
.about .about-table dl dl dt{
	width: 40%;
}
.about .about-table dl dl dd{
	width: 60%;
	border-bottom: 1px solid #000000;
}
.about .about-table dl dl dd:last-child{
	border: 0;
}

.about .about-table.table-02 dl{
	align-items: center;
}
.about .about-table.table-02 dt{
	width: 70%;
}
.about .about-table.table-02 dd{
	width: 30%;
	text-align: right;
}
.about .about-table.table-02 dl dt.long{
	width: 100%;
}

/* SERVICE */
.service .service-title{
	padding: 3em 0 6em;
}
.service .service-list{
	margin-bottom: 2em;
}
.service .service-list .service-box{
	width: calc((100% - 1280px) / 2 + 1280px);
}
@media only screen and (max-width: 1280px){
	.service .service-list .service-box{
		width: 100%;
	}
}
.service .service-list .service-box.box-right{
	margin-left: auto;
}
.service .service-list .service-box.box-left{
	margin-right: auto;
}
.service .service-list .service-box .inner{
	width: 100%;
	max-width: 1280px;
}
.service .service-list .service-box.box-right .inner{
	margin-right: auto;
}
.service .service-list .service-box.box-left .inner.flex{
	margin-left: auto;
	flex-direction: row-reverse;
}
.service .service-list #service01{
	background: #926134;
}
.service .service-list #service02{
	background: #F7BC00;
}
.service .service-list #service03{
	background: #2CA4DE;
}
.service .service-list #service04{
	background: #8BC01F;
}
.service .service-list #service05{
	background: #EE86A8;
}
.service .service-list .service-box .logo{
	padding: 3em;
}
.service .service-list .service-box .photo{
	width: 50%;
	position: relative;
}
.service .service-list .service-box .photo:after{
	content: '';
	position: absolute;
	display: block;
	width: 50%;
	height: 100%;
	top: 0;
}
.service .service-list #service03 .photo:after{
	background: linear-gradient(to right, transparent, #2CA4DE);
}
.service .service-list #service04 .photo:after{
	background: linear-gradient(to left, transparent, #8BC01F);
}
.service .service-list #service05 .photo:after{
	background: linear-gradient(to right, transparent, #EE86A8);
}
.service .service-list .service-box.box-right .photo:after{
	right: 0;
}
.service .service-list .service-box.box-left .photo:after{
	left: 0;
}
.service .service-list .service-box .content{
	padding: 3em 2em 1em;
}
.service .service-list .service-box .content .head{
	display: flex;
	align-items: flex-end;
	margin-bottom: 1em;
}
.service .service-list .service-box .content .head .title{
	width: 100%;
}
.service .service-list .service-box .content .head .sns ul{
	display: flex;
	padding: 0;
	margin: 0;
}
.service .service-list .service-box .content .head .sns ul li{
	margin-right: 16px;
}
.service .service-list .service-box .content .head .sns ul li a{
	color: #FFF;
	font-size: 42px;
}
.service .service-list .service-box .content h3{
	color: #FFF;
	font-size: 22px;
	font-weight: 100;
	margin-bottom: 10px;
	line-height: 22px;
}
.service .service-list .service-box .content h3 span{
	margin-left: 5px;
	font-size: 30px;
	font-weight: 600;
	line-height: 22px;
}
.service .service-list .service-box .content h4{
	font-size: 28px;
    font-weight: normal;
    color: #FFF;
    margin-bottom: .3em;
}
.service .service-list .service-box .content p{
	margin-top: 3em;
	margin-bottom: 0;
	color: #FFF;
}
.service .service-activity{
	padding: 2em 0 6em;
}
.service .service-activity h2{
	color: #2CA4DE;
	font-size: 28px;
	margin-bottom: 1em;
}
.service .service-activity .service-activity-box{
	width: 50%;
	padding: 3em 2em;
	color: #FFF;
	background: #2CA4DE;
}
.service .service-activity .service-activity-box:nth-of-type(2),
.service .service-activity .service-activity-box:nth-of-type(3){
	background: #036EB5;
}
.service .service-activity .service-activity-box h3{
	font-size: 22px;
	margin-bottom: 2em;
}
.service .service-activity .service-activity-box p{
	padding-bottom: 1em;
	border-bottom: 1px solid #FFF;
	margin-bottom: 1em;
}
.service .service-activity .service-activity-box ul{
	padding: 0;
}
.service .service-activity .service-activity-box ul li{
	position: relative;
	padding-left: 1.2em;
}
.service .service-activity .service-activity-box ul li:before{
	content: '●';
	position: absolute;
	top: 0;
	left: 0;
}

/* RECRUIT */
.recruit .recruit-content{
	padding: 3em 0 3em;
}
.recruit .recruit-content .recruit-table{
	margin-bottom: 6em;
}
.recruit .recruit-content .recruit-table dl{
	border-top: 1px solid #000000;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin: 0;
}
.recruit .recruit-content .recruit-table dl:last-child{
	border-bottom: 1px solid #000000;
}
.recruit .recruit-content .recruit-table dt,
.recruit .recruit-content .recruit-table dd{
	padding: 10px 1.2em;
	margin: 0;
}
.recruit .recruit-content .recruit-table dd p{
	margin: 0;
}
.recruit .recruit-content .recruit-table dd p:first-child{
	padding-bottom: 10px;
	border-bottom: 1px solid #000000;
}
.recruit .recruit-content .recruit-table dd p:last-child{
	padding-top: 10px;
	border: 0;
}
.recruit .recruit-content .recruit-table dt{
	width: 12em;
}
.recruit .recruit-content .recruit-table dd{
	width: calc(100% - 12em);
}
.recruit .recruit-form{
	padding: 4em 0 4em;
	margin-bottom: 4em;
	background: #F4F4F3;
}
.recruit .recruit-form .form-container{
	background: #FFF;
	padding: 1.4em;
}

/* CONTACT */
table.inquiry{
	border-collapse: separate;
	border-spacing: 8px;
	border: 0;
	margin-bottom: 10px;
}
table.inquiry th,
table.inquiry td{
	padding: .6em;
	border: 0;
}
.post-content table tbody th,
table.inquiry th{
	position: relative;
	vertical-align: middle;
	padding-left: 2em;
	padding-right: 4em;
	font-weight: bold;
	color: #FFF;
	background: #036EB7;
}
table.inquiry th span.haveto,
table.inquiry th span.any{
	position: absolute;
	display: inline-block;
	padding: 3px 5px;
	font-size: 12px;
	font-weight: bold;
	background: #333;
	right: 2em;
}
table.inquiry th span.haveto{
	color: #FFF;
	background: #DA881B;
}
table.inquiry td{
	background: #EEEEEF;
}
table.inquiry td input,
table.inquiry td select,
table.inquiry td textarea{
	width: 100%;
	padding: 1em 3em 1em 2em;
	border: 1px solid #CCC;
	border-radius: 13px;
}
table.inquiry .wpcf7-list-item label{
	align-items: center;
    display: flex;
}
table.inquiry .wpcf7-list-item label input{
	width: auto;
    margin-right: 1em;
}
table.inquiry .wpcf7-list-item label span{
	word-break: keep-all;
}
.wpcf7 input[type="file"]{
	background: #FFF;
}
.wpcf7 .pp_sec{
	color: #000000;
	background: #F7F7F7;
	padding: 2em;
	margin-bottom: 2em;
}
.wpcf7 .pp_sec h4{
	font-size: 24px;
	font-weight: bold;
	border: 0;
	padding: 0;
	margin: 0 0 1em;
}
.wpcf7-form .submit{
	text-align: center;
}
.wpcf7-form .submit input{
	padding: 1em 3em;
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	background: #2CA6E0;
}
.wpcf7 .ajax-loader{
	display: none;
}
.wp-block-image img{
	width: auto;
	height: auto;
}

/* PAGE */
.cat-content, article.post, article.page{
	border: 0;
}
.pagination-wrap{
	width: 100%;
	display: block;
	margin: 2em 0;
	text-align: center;
}
.pagination{
	display: inline-block;
}
.pagination .current{
	background: #2CA6E0;
}

