@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	position: relative;
	overflow: hidden;
	font-size: 100%;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
.pc, .nobr {
	display: none!important;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
    width: 100%;
	height: 60px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
    z-index: 10000;
    background: #fff;
}
header .header_bg {
	display: none;
}
header a.headerLogo {
	position: absolute;
    width: 50%;
    height: 32px;
    left: 10px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    z-index: 20000;
    background: url("../images/logo.svg") no-repeat left center;
    background-size: contain;
}

/* 背景が左から右に流れるボタン */
a.btnContact,
a.btnGoogleMap {
	position: absolute;
    width: 80px;
    height: 30px;
    top: 30;
    right: 60px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	font: 400 0.9em/1em arial-narrow, "sans-serif";
	letter-spacing: 0.05em;
	transition: 0.3s;
	color: #fff;
	border-radius: 15px;
	background: #f36a23;
	box-sizing: border-box;
}
a.btnContact span,
a.btnGoogleMap span {
	position: relative;
}
a.btnContact::before,
a.btnGoogleMap::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #c93d0d;
	box-sizing: border-box;
}
a.btnContact:hover::before,
a.btnGoogleMap:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【ヘッダー】グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.openMenu {
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
    z-index: 20000;
}
.btn_nav {
	position: absolute;
	width: 40px;
	height: 40px;
	top: 10px;
	right: 5px;
    border-radius: 20px;
    background: #0c449b;
}
.open_nav,
.close_nav {
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	cursor: pointer;
}
.open_nav .line1,
.open_nav .line2,
.open_nav .line3 {
	position: absolute;
	width: 24px;
	height: 1px;
	left: calc(50% - 12px);
    display: block;
	background: #fff;
	transform: rotate(0deg);
    transition: all 200ms;
}
.open_nav .line1 {
	top: 13px;
}
.open_nav .line2,
.close_nav .line2 {
	top: 20px;
}
.open_nav .line3 {
	top: 27px;
}
.close_nav .line1,
.close_nav .line3 {
	position: absolute;
    width: 28px;
	height: 1px;
    top: 20px;
	left: calc(50% - 14px);
    display: block;
	background: #fff;
    transition: all 200ms;
}
.close_nav .line1 {
	transform: rotate(-45deg);
}
.close_nav .line2 {
	display: none;
}
.close_nav .line3 {
	transform: rotate(45deg);
}
.sp_nav_wrap {
	position: absolute;
	width: 100%;
	height: calc(100vh);
	top: 0;
	right: 0;
	display: none;/*表示・非表示*/
	z-index: 10000;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	background: #0c449b;
	box-sizing: border-box;
}
.sp_nav {
	width: 80%;
	height: auto;
	display: block;
	margin: 20px auto 60px 5%;
}
.sp_nav ul.sp_nav_menu {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    margin: 0 auto;
}
.sp_nav ul.sp_nav_menu li {
	position: relative;
    width: 100%;
	display: block;
}
.sp_nav ul.sp_nav_menu li+li {
	border-top: solid 1px rgba(255,255,255,0.5);
}
.sp_nav ul.sp_nav_menu li a,
.sp_nav ul.sp_nav_menu li p {
	position: relative;
	width: 100%;
    height: 60px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    font-size: 1.2em;
    line-height: 1em;
	color: #fff;
    letter-spacing: 0.05em;
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li a::after,
.sp_nav ul.sp_nav_menu li ul#recruitMenu li a::after {
	position: absolute;
	content: '';
    width: 12px;
    height: 12px;
	right: 10px;
    display: block;
	background: url("../images/arrow.svg") no-repeat center center;
    background-size: contain;
	filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(187deg) brightness(103%) contrast(100%);
}
.sp_nav ul.sp_nav_menu li a:hover,
.sp_nav ul.sp_nav_menu_sub li a:hover,
.sp_nav ul.sp_nav_menu li ul#recruitMenu li a:hover {
	transition: all 200ms;
    opacity: 0.7;
}
.sp_nav ul.sp_nav_menu li ul#recruitMenu {
	width: 95%;
	display: block;
    margin: -20px 0 20px auto;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li ul#recruitMenu li {
	width: 100%;
	height: 40px;
	display: block;
    margin-top: 5px;
}
.sp_nav ul.sp_nav_menu li ul#recruitMenu li a {
	position: relative;
	width: 100%;
	height: 40px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 0 2%;
	font-size: 1.1em;
	font-weight: normal;
	line-height: 1em;
    border: none;
	background: url("../images/arrow_right_w.svg") no-repeat right 10px center;
	background-size: 10px 10px;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li ul#recruitMenu li a::after {
	position: absolute;
	content: '';
    width: 12px;
    height: 12px;
	right: 10px;
    display: block;
	background: url("../images/arrow.svg") no-repeat center center;
    background-size: contain;
	filter: invert(100%) sepia(1%) saturate(0%) hue-rotate(187deg) brightness(103%) contrast(100%);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    padding-top: 60px;
}
.wrap {
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 30px 0;
}
.block {
	position: relative;
    width: 90%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
}
.reverse {
	
}
.bgc_blue {
	background: #0c449b;
}
.bgc_light_green {
	background: #f9fbf7;
}

/*シャドー*/
.drop span,
.drop_w span {
	position: absolute;
	content: '';
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	top: 0;
	left: 0;
    display: block;
	background: #a2bbe0;
}
.drop span:before,
.drop span:after,
.drop_w span:before,
.drop_w span:after {
  position: absolute;
  content: '';
  width: 12px;
  height: calc(24px / 2);
  background: #07418f;
}
.drop_w span:before,
.drop_w span:after {
  background: #fff;
}
.drop span:before,
.drop_w span:before {
  top: -1px;
  right: -1px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.drop span:after,
.drop_w span:after {
  bottom: -1px;
  left: -1px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/*【共通】ページタイトル*/
.pageTitle {
    position: relative;
    width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	padding-bottom: 30px;
    box-sizing: border-box;
}
.pageTitle section {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	background: url("../images/main_bg.png") no-repeat center top;
	background-size: cover;
}
.pageTitle section h2 {
    width: 90%;
	height: 120px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	padding: 0 5%;
    font-size: 1.3em;
	font-weight: bold;
	line-height: 1em;
	box-sizing: border-box;
}
.pageTitle section h2 span {
	width: 100%;
	display: block;
	margin-bottom: 10px;
    font: 200 2em/1em helvetica-neue-lt-pro, sans-serif;
	color: #07418f;
}
.pageTitle section img {
	width: 100%;
	aspect-ratio: 5/2;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}

/*【共通】パンくずリスト*/
.topicpath {
    position: absolute;
	width: 100%;
	bottom: 0;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	background: #061833;
}
.topicpath ul {
    width: 96%;
	min-height: 30px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
	margin: 0 auto;
}
.topicpath ul li {
    width: auto;
    height: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
    margin: 5px 0;
    padding: 0 10px;
    font-size: 0.8em;
	line-height: 1em;
	color: #fff;
}
.topicpath ul li:nth-of-type(1) {
    padding: 0 10px 0 0;
}
.topicpath ul li+li {
    border-left: solid 1px rgba(255,255,255,0.5);
}
.topicpath ul li a {
    color: #f36a23;
}
.topicpath ul li a:hover {
    font-weight: bold;
    transition: all 200ms;
}

/*【共通】中タイトル*/
.midTitle,
.midTitle_w {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin-bottom: 40px;
	font-size: 2em;
	line-height: 1em;
	color: #07418f;
}
.midTitle_w {
	color: #fff;
}
.midTitle span,
.midTitle_w span {
	position: relative;
	width: 100%;
	display: block;
	margin-top: 35px;
    font: 200 0.5em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
	color: #f36a23;
}
.midTitle span::before,
.midTitle_w span::before {
	position: absolute;
	content: '';
	width: 40px;
	height: 1px;
	top: -20px;
	display: block;
	background: #f36a23;
}

/*【共通】ボタンデザイン*/
.btnBlock {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
a.btnDetail,
a.btnDetail_blue {
	position: relative;
	width: auto;
    height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	padding: 0 50px 0 30px;
	font-size: 1.4em;
	line-height: 1em;
	text-align: center;
	border-radius: 25px;
	background: #fff;
	box-sizing: border-box;
}
a.btnDetail_blue {
	color: #fff;
	background: #07418f;
}
a.btnDetail::after,
a.btnDetail_blue::after {
	position: absolute;
	content: '';
    display: inline-block;
	background: url("../images/arrow_w.svg") no-repeat center center #f36a23;
	transition: all 200ms;
}
a.btnDetail::after,
a.btnDetail_blue::after {
	width: 10px;
    height: 10px;
	right: 20px;
	border-radius: 5px;
	background-size: 0px 0px;
}
a.btnDetail:hover::after,
a.btnDetail_blue:hover::after {
	width: 30px;
    height: 30px;
	right: 10px;
	border-radius: 15px;
    background-size: 12px 12px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home {
	
}
#home .title {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	font-size: 1.8em;
	line-height: 1em;
	color: #fff;
}
#home .title span {
	width: 100%;
	display: block;
    margin-top: 10px;
    font: 400 0.6em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.1em;
	opacity: 0.5;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .mainVisual {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    box-sizing: border-box;
}

/*メイン左*/
#home .mainVisual .mainVisual_l {
	position: relative;
	width: 100%;
	height: 400px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	background: url("../images/main_bg.png") no-repeat center top;
	background-size: cover;
}
#home .mainVisual .mainVisual_l img.copy {
	position: absolute;
	width: 60%;
	bottom: 40px;
	display: block;
}
@media screen and (max-width: 400px) {
#home .mainVisual .mainVisual_l {
	height: 360px;
}
#home .mainVisual .mainVisual_l img.copy {
	width: 60%;
	bottom: 30px;
}
}

/*メイン右*/
#home .mainVisual .mainVisual_r {
	position: relative;
	width: 100%;
	height: 360px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	align-self: stretch;
}
#home .mainVisual .mainVisual_r img.photo {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
#home .mainVisual .mainVisual_r img.copy {
	position: absolute;
	width: 60%;
	bottom: 20px;
	left: 3%;
	display: block;
	opacity: 0.5;
}

/*スライド*/
.mainSlide {
	position: absolute;
    width: 100%;
	top: 0;
	right: 0;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    overflow: hidden;
}
.mainSlide ul.slider {
    position: relative;
    width: 240%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
	margin: 0 -70%;
}
.mainSlide ul.slider li {
    position: relative;
	width: auto;
    display: block;
	overflow: visible;
    margin: 0 10px;
	padding: 20px 0;
    box-sizing: border-box;
}
.mainSlide ul.slider li img {
    width: 100%;
    aspect-ratio: 4/3;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
}

/* Arrows */
.mainSlide .slick-prev,
.mainSlide .slick-next {
    display: none;
	font-size: 0;
	opacity: 0;
}
/* Dots */
.mainSlide .slick-dotted.slick-slider {
    display: none;
	font-size: 0;
}


/*-- 【Home】お知らせ --*/
#home .homeNews {
    position: relative;
	width: 90%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 40px auto;
    box-sizing: border-box;
}
#home .homeNews .homeNews_title {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
}
#home .homeNews .homeNews_title h2 {
	width: auto;
	display: block;
	margin-bottom: 20px;
    font: 300 2.4em/1em helvetica-neue-lt-pro, sans-serif;
    color: #0c449b;
}
#home .homeNews .homeNews_title a.news_btn {
	position: relative;
	width: auto;
    height: 36px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding-right: 40px;
	font-size: 1.2em;
	line-height: 1em;
	box-sizing: border-box;
}
#home .homeNews .homeNews_title a.news_btn::after,
#home .homeNews dl.list a::after,
#news dl.list a::after {
	position: absolute;
	content: '';
    display: inline-block;
	background: url("../images/arrow_w.svg") no-repeat center center #f36a23;
	transition: all 200ms;
}
#home .homeNews .homeNews_title a.news_btn::after,
#home .homeNews dl.list a::after,
#news dl.list a::after {
	width: 10px;
    height: 10px;
	right: 15px;
	border-radius: 5px;
	background-size: 0px 0px;
}
#home .homeNews .homeNews_title a.news_btn:hover::after,
#home .homeNews dl.list a:hover::after,
#news dl.list a:hover::after {
	width: 30px;
    height: 30px;
	right: 5px;
	border-radius: 15px;
    background-size: 12px 12px;
}
#home .homeNews .inner {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    box-sizing: border-box;
}
#home .homeNews a.news_btn:hover {
	text-decoration: underline;
    color: #f36a23;
}
#home .homeNews dl.list,
#news dl.list {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.4em;
	border-top: solid 1px #ccc;
}
#news dl.list:nth-last-child(1) {
	border-bottom: solid 1px #ccc;
}
#home .homeNews dl.list a,
#news dl.list a {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	padding: 20px 40px 20px 0;
	box-sizing: border-box;
}
#home .homeNews dl.list dt,
#news dl.list dt {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
}
#home .homeNews dl.list dt span,
#news dl.list dt span,
#news .date span {
	width: 90px;
	height: 30px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin-right: 10px;
	font: 400 0.8em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.1em;
	color: #fff;
	border-radius: 15px;
	background: #ddd;
}
#news .date span {
	margin-right: 10px;
}
#home .homeNews dl.list dt span.info,
#news dl.list dt span.info,
#news .date span.info {
	background: #5aa3cc;
}
#home .homeNews dl.list dt span.info::before,
#news dl.list dt span.info::before,
#news .date span.info::before {
	content: 'Info';
}
#home .homeNews dl.list dt span.recruit,
#news dl.list dt span.recruit,
#news .date span.recruit,
#news dl.list dt span.recruit-top,
#news .date span.recruit-top {
	background: #6dd1a1;
}
#home .homeNews dl.list dt span.recruit::before,
#news dl.list dt span.recruit::before,
#news .date span.recruit::before,
#news dl.list dt span.recruit-top::before,
#news .date span.recruit-top::before {
	content: 'Recruit';
}
#home .homeNews dl.list dd,
#news dl.list dd {
	width: 100%;
	display: block;
	margin-top: 10px;
}
#home .homeNews dl.list a:hover dd,
#news dl.list a:hover dd {
	text-decoration: underline;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】当社について
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeAbout {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    background: #07418f;
}
#home .homeAbout img.photo {
	width: 100%;
	aspect-ratio: 3/2;
    display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
#home .homeAbout .homeAbout_text {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-end;
		align-items: flex-end;
        flex-wrap: wrap;
	padding: 40px 5%;
	background: url("../images/top/about_map.svg") no-repeat left bottom 30%;
	background-size: 150%;
    box-sizing: border-box;
}
#home .homeAbout .homeAbout_text .title {
	
}
#home .homeAbout .homeAbout_text dl {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px 0;
    box-sizing: border-box;
}
#home .homeAbout .homeAbout_text dl dt {
	width: 100%;
    display: block;
	font: 200 2em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	color: #fff;
}
#home .homeAbout .homeAbout_text dl dd {
	width: 100%;
    display: block;
	box-sizing: border-box;
}
#home .homeAbout .homeAbout_text dl dd p {
	width: 100%;
    display: block;
    margin-top: 20px;
	font-size: 1.2em;
    line-height: 1.6em;
    text-align: justify;
	color: #fff;
}
#home .homeAbout .homeAbout_text ul {
	position: relative;
    width: 70%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 120px auto 0;
}
#home .homeAbout .homeAbout_text ul li {
	position: relative;
    width: 100%;
    display: block;
	margin: 10px 0;
}
#home .homeAbout .homeAbout_text ul li a.btnDetail {
	width: 100%;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】設計実績
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeProject {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	z-index: 1000;
	margin: 60px 0;
    box-sizing: border-box;
}
#home .homeProject .homeProject_text {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: space-between;
		align-items: flex-start;
        flex-wrap: wrap;
	transition: all 200ms;
}
#home .homeProject .homeProject_text .title {
	color: #07418f;
}
#home .homeProject .homeProject_text p {
	width: 100%;
    display: block;
	margin: 30px 0;
	font: 400 1.6em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	text-align: center;
}
#home .homeProject a.btnDetail {
	width: 240px;
	margin: 0 auto;
	border: solid 1px #888;
}

/*スライド*/
.slideBlock {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    margin: 0 0 40px;
}
.slideBlock ul.slider2 {
    position: relative;
    width: 200%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
	margin: 0 -50%;
}
.slideBlock ul.slider2 li {
    position: relative;
	width: auto;
    display: block;
	align-self: stretch;
    margin: 0 5px;
    background: #fff;
    box-sizing: border-box;
}
.slideBlock ul.slider2 li img {
    width: 100%;
    aspect-ratio: 4/5;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
.slideBlock ul.slider2 li div {
	position: absolute;
	width: 90%;
	height: 120px;
	bottom: 0;
	left: 0;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    padding: 20px 5px 20px 20px;
	border-left: solid 4px #f36a23;
	border-top-right-radius: 10px;
	background: rgba(0,0,0,0.7);
	box-sizing: border-box;
}
.slideBlock ul.slider2 li div span {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: 1.2em;
    line-height: 1em;
	color: #f36a23;
}
.slideBlock ul.slider2 li div h3 {
	width: 100%;
	height: 2.8em;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
	overflow: hidden;
	font-size: 1.5em;
    line-height: 1.4em;
	color: #fff;
}

/* Arrows */
.slideBlock .slick-prev,
.slideBlock .slick-next {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -100px;
    display: block;
    z-index: 1000;
    padding: 0;
	margin: 0;
    font-size: 0;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.slideBlock .slick-prev {
    left: 20px;
    background: #07418f;
}
.slideBlock .slick-prev::before {
    content: '';
	width: 40px;
    height: 40px;
	display: block;
    background: url("../images/arrow_w.svg") no-repeat center center;
    background-size: 20px 20px;
	transform: rotate(180deg);
}
[dir="rtl"] .slick-prev {
    left: 20px;
    right: auto;
}
.slideBlock .slick-next {
    right: 20px;
    background: #07418f;
}
.slideBlock .slick-next::before {
    content: '';
	width: 40px;
    height: 40px;
	display: block;
    background: url("../images/arrow_w.svg") no-repeat center center;
    background-size: 20px 20px;
}
[dir="rtl"] .slick-next {
    right: 20px;
    left: auto;
}
.slideBlock .slick-prev:hover,
.slideBlock .slick-next:hover {
    transition: all 200ms;
    opacity: 0.7;
}
.slideBlock .slick-prev:focus,
.slideBlock .slick-next:focus {
    /*outline: none;
    background: transparent;
    color: transparent;*/
}
.slideBlock .slick-prev:hover:before,
.slideBlock .slick-prev:focus:before,
.slideBlock .slick-next:hover:before,
.slideBlock .slick-next:focus:before {
    opacity: 1;
}
.slideBlock .slick-prev.slick-disabled:before,
.slideBlock .slick-next.slick-disabled:before {
    opacity: 0.25;
}
.slideBlock .slick-prev:before,
.slideBlock .slick-next:before {
    outline: none;
    font-family: "slick";
    font-size: 0;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dots */
.slideBlock .slick-dotted.slick-slider {
    display: none;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】採用情報
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeRecruit {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    background: #07418f;
	box-sizing: border-box;
}
#home .homeRecruit .block {
	margin: 40px auto;
}
#home .homeRecruit img.illust {
	position: absolute;
	width: 45%;
	top: 60px;
	right: 2%;
    display: block;
}
#home .homeRecruit .homeRecruit_title {
	position: absolute;
	width: 45%;
	top: 0;
	left: 55%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 0;
}
#home .homeRecruit .homeRecruit_title img {
	width: 100%;
    display: block;
	margin-top: 80px;
}
#home .homeRecruit .photo1 {
	position: relative;
	width: 47%;
	aspect-ratio: 4/5;
    display: block;
	margin-right: 50%;
}
#home .homeRecruit .photo2 {
	position: relative;
	width: 64%;
	aspect-ratio: 48/36;
    display: block;
	margin: 40px auto 20px;
}
#home .homeRecruit .photo1 img,
#home .homeRecruit .photo2 img {
	position: relative;
	width: 100%;
    display: block;
	z-index: 1000;
}
#home .homeRecruit dl {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		justify-content: flex-start;
		justify-content: flex-start;
        flex-wrap: wrap;
	margin-top: 20px;
	color: #fff;
}
#home .homeRecruit dl dt {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font: 400 1.6em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
#home .homeRecruit dl dd {
	width: 100%;
    display: block;
    margin-bottom: 40px;
	font-size: 1.2em;
    line-height: 1.6em;
    text-align: justify;
}
#home .homeRecruit img.copy_en {
	width: 98%;
    display: block;
	margin: 0 auto;
}
#home .homeRecruit dl a.btnDetail {
	width: 240px;
	margin: 0 auto;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
当社について
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/*社長メッセージ*/
#about .greeting {
	margin: 20px auto;
}
#about .greeting .photo {
	position: relative;
	width: 50%;
	min-width: 200px;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto 40px;
}
#about .greeting .photo span {
	width: 100%;
    display: block;
    margin-top: 10px;
	font-size: 1.2em;
    line-height: 1.2em;
	text-align: center;
}
#about .greeting dl {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: flex-end;
        flex-wrap: wrap;
    box-sizing: border-box;
}
#about .greeting dl dt {
	width: 100%;
    display: block;
	font: 200 1.8em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
#about .greeting dl dd {
	width: 100%;
    display: block;
	margin-top: 20px;
	font-size: 1.2em;
    line-height: 1.6em;
	text-align: justify;
	box-sizing: border-box;
}

/*当社の強み*/
#about .advantage {
	justify-content: center;
}
#about .advantage .copy {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font: 200 1.8em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	text-align: center;
	color: #fff;
}
#about .advantage .box {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 20px 0;
	box-sizing: border-box;
}
#about .advantage .box .boxTitle {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 5px 0;
	border-bottom: solid 1px #fff;
	box-sizing: border-box;
}
#about .advantage .box .boxTitle img {
	width: 60px;
    display: block;
}
#about .advantage .box .boxTitle .en {
	width: auto;
    display: block;
	font: 200 1.6em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.1em;
	color: #fff;
}
#about .advantage .box dl {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	color: #fff;
    box-sizing: border-box;
}
#about .advantage .box dl dt {
	width: 100%;
    display: block;
	margin: 20px 0 10px;
	font-size: 2.4em;
    line-height: 1.4em;
	letter-spacing: 0.2em;
	box-sizing: border-box;
}
#about .advantage .box dl dd {
	width: 100%;
    display: block;
	font-size: 1.4em;
    line-height: 1.6em;
    text-align: justify;
}
#about .advantage .box .photo {
	position: relative;
	width: 60%;
	aspect-ratio: 3/4;
    display: block;
	margin: 20px auto;
}
#about .advantage .box .photo img {
	position: relative;
	width: 100%;
    display: block;
	z-index: 1000;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】当社についてメニュー
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.aboutMenu {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        /*flex-wrap: wrap;*/
	padding: 40px 0;
	background: #061833;
}
.aboutMenu .block {
	max-width: 1600px;
}
.aboutMenu .boxTitle {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	margin-bottom: 20px;
	font-size: 2em;
	line-height: 1em;
	color: #fff;
    box-sizing: border-box;
}
.aboutMenu .boxTitle span {
	width: 100%;
    display: block;
	margin-top: 10px;
	font: 200 0.5em/1em helvetica-neue-lt-pro, sans-serif;
	text-indent: 0.3em;
	letter-spacing: 0.05em;
	color: #f36a23;
}
.aboutMenu ul {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	transition: all 200ms;
}
.aboutMenu ul li {
    position: relative;
	width: 100%;
    display: block;
	margin: 5px 0;
}
.aboutMenu ul li img {
    width: 100%;
    aspect-ratio: 2/1;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
.aboutMenu ul li:nth-of-type(1) img {
    object-position: 50% 40%;
}
.aboutMenu ul li div {
	position: absolute;
	width: 90%;
	height: 70px;
	bottom: 0;
	left: 0;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    padding: 0 5px 0 20px;
	font-size: 1.4em;
    line-height: 1.4em;
	color: #fff;
	border-left: solid 4px #f36a23;
	border-top-right-radius: 10px;
	background: rgba(0,0,0,0.7);
	box-sizing: border-box;
}
.aboutMenu ul li div span {
	width: 100%;
    display: block;
	margin-bottom: 5px;
	font-size: 0.8em;
    line-height: 1em;
	color: #f36a23;
}
.aboutMenu ul li div a.btnDetail {
	position: absolute;
	width: 100px;
    height: 30px;
	bottom: 15px;
	right: -20px;
	padding: 0 20px 0 0;
	font-size: 0.8em;
	border-radius: 20px;
}
.aboutMenu ul li div a.btnDetail::after {
	position: absolute;
	content: '';
    width: 10px;
    height: 10px;
	right: 10px;
    display: inline-block;
	border-radius: 5px;
	background: url("../images/arrow_w.svg") no-repeat center center #f36a23;
	background-size: 0px 0px;
	transition: all 200ms;
}
.aboutMenu ul li div a.btnDetail:hover::after {
	position: absolute;
	content: '';
    width: 30px;
    height: 30px;
	right: 0;
    display: inline-block;
	border-radius: 15px;
	background: url("../images/arrow_w.svg") no-repeat center center #f36a23;
    background-size: 12px 12px;
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
事業内容
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#business .wrap {
	margin: 0 auto;
	padding: 40px 0 0;
}
#business dl.mainCopy,
#project dl.mainCopy,
#efforts dl.mainCopy {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    margin: 0 auto 40px;
}
#business dl.mainCopy dt,
#project dl.mainCopy dt,
#efforts dl.mainCopy dt {
	width: 100%;
    display: block;
	font: 400 1.8em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	text-align: center;
	color: #0c449b;
}
#business dl.mainCopy dd,
#project dl.mainCopy dd,
#efforts dl.mainCopy dd {
	width: 100%;
    display: block;
	margin-top: 20px;
	font-size: 1.2em;
    line-height: 1.6em;
	text-align: justify;
}
#business .businessBlock {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#business .businessBlock:nth-of-type(odd) {
	flex-direction: row-reverse;
	background: #061833;
}
#business .businessBlock:nth-of-type(even) {
	background: #0c449b;
}
#business .businessBlock img.photo {
	position: relative;
	width: 100%;
	aspect-ratio: 3/2;
    display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
#business .businessBlock .textBox {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    padding: 40px 5%;
	box-sizing: border-box;
}
#business .businessBlock .textBox dl {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding-top: 30px;
	color: #fff;
	border-top: solid 1px #ccc;
}
#business .businessBlock .textBox dl .number {
	position: absolute;
	width: 110px;
	top: -12px;
	left: 0;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	font: 200 1.2em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
}
#business .businessBlock:nth-of-type(odd) .textBox dl .number {
	background: #061833;
}
#business .businessBlock:nth-of-type(even) .textBox dl .number {
	background: #0c449b;
}
#business .businessBlock .textBox dl .number span {
    display: inline-block;
	margin-left: 10px;
	font-size: 1.6em;
    line-height: 1em;
	color: #f36a23;
}
#business .businessBlock .textBox dl dt {
	width: 100%;
    display: block;
	margin-top: 10px;
	font-size: 2em;
	font-weight: bold;
    line-height: 1.2em;
}
#business .businessBlock .textBox dl dd {
	width: 100%;
    display: block;
	margin-top: 20px;
	font-size: 1.2em;
    line-height: 1.6em;
	text-align: justify;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
設計実績
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#project .wrap {
	
}
#project dl.mainCopy {
	/*「事業内容」に記述*/
	margin: 0 auto;
}
#project ul.projectList {
	width: 80%;
    display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
}
#project ul.projectList li {
    width: 100%;
    display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: stretch;
		flex-wrap: wrap;
	margin: 0 0 20px;
	background: #fff;
    box-sizing: border-box;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
#project ul.projectList li img {
    width: 106%;
    aspect-ratio: 4/3;
	display: block;
	margin: 0 -3%;
	object-fit: cover;
	object-position: 50% 50%;
}
#project ul.projectList li div {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin: -40px auto 0;
    padding: 20px 5%;
	border-top: solid 5px #f36a23;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 0 -5px 5px 0 rgba(0,0,0,0.1);
}
#project ul.projectList li div h3 {
	width: 100%;
	min-height: 2.8em;
    display: block;
	font-size: 1.5em;
	font-weight: bold;
    line-height: 1.4em;
}
#project ul.projectList li div span {
	width: 100%;
    display: block;
    margin-top: 10px;
	font-size: 1.2em;
    line-height: 1.2em;
}
#project ul.projectList li dl {
	width: 100%;
    display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    margin: 15px 0;
	padding-top: 10px;
	border-top: solid 1px #f36a23;
	box-sizing: border-box;
}
#project ul.projectList li dl dt {
	width: 3em;
    display: inline-block;
    font-size: 1.2em;
    line-height: 1.4em;
	text-align-last: justify;
	color: #f36a23;
}
#project ul.projectList li dl dd {
	width: calc(100% - 4em);
    display: inline-block;
    font-size: 1.2em;
    line-height: 1.4em;
	text-align: justify;
}
#project .projectList_other {
	width: 90%;
    display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto 80px;
	transition: all 800ms;
}

/*表示・非表示ボタン*/
#toggle {
    display: none;
}
#project .btn {
    position: absolute;
	width: 160px;
	height: 40px;
	bottom: 40px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
    margin: 0 auto;
	font-size: 1.3em;
    line-height: 1em;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
	background: #f36a23;
}
#project .btn::before {
    content: '全て表示';
}
#toggle:checked ~ .btn {
    background: #aaa;
}
#toggle:checked ~ .btn::before {
    content: '閉じる';
}
.hidden {
    max-height: 390px;
	display: block;
	overflow: hidden;
}
#toggle:checked ~ .hidden {
    max-height: 9000px;
	display: block;
	overflow: visible;
}
#project .projectList_other table {
    width: 100%;
    display: table;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
	background: #fff;
}
#project .projectList_other table th,
#project .projectList_other table td {
    display: table-cell;
    padding: 15px 5px;
    vertical-align: top;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
}
#project .projectList_other table th {
    padding: 20px 10px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1em;
	letter-spacing: 0.1em;
    text-align: center;
	color: #fff;
	background: #f36a23;
}
#project .projectList_other table th:nth-of-type(1) {
    width: 25%;
}
#project .projectList_other table th:nth-of-type(2) {
    width: 20%;
}
#project .projectList_other table th:nth-of-type(3) {
    width: 50%;
}
#project .projectList_other table td {
    font-size: 1.1em;
	line-height: 1.4em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
当社の取り組み
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#efforts .wrap {
	
}
#efforts dl.mainCopy {
	/*「事業内容」に記述*/
}
#efforts .effortsBlock {
	position: relative;
    width: 90%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    margin: 20px auto;
	padding: 40px 0 0;
	border-top: solid 1px #ccc;
	box-sizing: border-box;
}
#efforts .effortsBlock .number {
	position: absolute;
	width: 80px;
	top: -12px;
	left: 0;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	font: 200 1.2em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
	color: #0c449b;
	background: #fff;
}
#efforts .effortsBlock .number span {
    display: inline-block;
	margin-left: 0.2em;
	font-size: 1.6em;
    line-height: 1em;
	color: #f36a23;
}
#efforts .effortsBlock .photo {
	position: relative;
	width: 80%;
    display: block;
	margin: 0 auto 40px;
}
#efforts .effortsBlock .photo img {
	position: relative;
	width: 100%;
    display: block;
	z-index: 1000;
}
#efforts .effortsBlock dl {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#efforts .effortsBlock dl span {
	width: 100%;
    display: block;
	margin: -10px 0 0;
	font: 400 3.2em/1em helvetica-neue-lt-pro, sans-serif;
	text-indent: -0.1em;
	text-align: center;
	color: #eee;
	transition: all 200ms;
}
#efforts .effortsBlock dl dt {
	width: 100%;
    display: block;
	margin-top: 10px;
	font-size: 1.8em;
	font-weight: bold;
    line-height: 1.2em;
	text-align: center;
	color: #0c449b;
}
#efforts .effortsBlock dl dd {
	width: 100%;
    display: block;
	margin-top: 20px;
	font-size: 1.2em;
    line-height: 1.6em;
	text-align: justify;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
企業情報
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*会社概要*/
#company .overview {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
}
#company .overview table {
    width: 100%;
    display: table;
}
#company .overview table tr {
    border-top: solid 1px #ccc;
}
#company .overview table th,
#company .overview table td {
    display: table-cell;
    padding: 20px 5px;
    font-size: 1.2em;
	line-height: 1.6em;
}
#company .overview table th {
    width: 80px;
	font-size: 1.2em;
	font-weight: bold;
    vertical-align: top;
    text-align: left;
	color: #aaa;
}
#company .overview table td ul {
    width: calc(100% - 1em);
	display: block;
	margin-left: auto;
}
#company .overview table td ul li {
    width: 100%;
	display: list-item;
	list-style: disc outside;
}
#company .overview table td ul li+li {
    margin-top: 5px;
}

/*所在地*/
#company .access {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin: 20px 0 0;
	padding: 20px 0;
	border-top: solid 1px rgba(255,255,255,0.5);
}
#company .access #kobe,
#company .access #fukuoka {
	position: absolute;
    width: 1px;
	height: 120px;
	top: -160px;
	display: block;
	opacity: 0;
}
#company .access .en {
	position: absolute;
	width: 85px;
	top: -10px;
	left: 0;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	font: 200 1.4em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
	color: #fff;
	background: #0c449b;
}
#company .access .kobe {
	width: 60px;
}
#company .access .box {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	color: #fff;
	box-sizing: border-box;
}
#company .access .box h4 {
	width: 100%;
    display: block;
    margin: 0 0 20px;
    font-size: 2em;
    line-height: 1.2em;
}
#company .access .box h4 span {
	font-size: 0.8em;
}
#company .access .box address {
	width: 100%;
    display: block;
    margin-bottom: 20px;
    font-size: 1.2em;
    line-height: 1.6em;
}
#company .access .box a.btnGoogleMap {
	width: 90px;
	bottom: 20px;
	right: 0;
}
#company .access iframe {
	position: relative;
    width: 100%;
    height: 300px;
	display: block;
    align-self: stretch;
}

/*写真*/
#company .access ul.photoBlock {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    margin: 20px 0;
}
#company .access ul.photoBlock li {
	position: relative;
	width: 30%;
    display: block;
}
#company .access ul.photoBlock li:nth-of-type(1) {
	position: relative;
	width: 50%;
    display: block;
}
#company .access ul.photoBlock li:nth-of-type(2) {
	position: relative;
	width: 45%;
    display: block;
}
#company .access ul.photoBlock li:nth-of-type(3) {
	position: absolute;
	width: 45%;
	bottom: 0;
	right: 0;
    display: block;
}
#company .access ul.photoBlock li img {
	position: relative;
	width: 100%;
	display: block;
    z-index: 1000;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#recruit {
	background: url("../images/recruit/bg.webp") no-repeat left top;
	background-size: cover;
}
#recruit .midTitle_rec {
	position: relative;
	width: 100%;
	height: 30px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	font-size: 1.2em;
	line-height: 1em;
	box-sizing: border-box;
}
#recruit .midTitle_rec span {
	width: auto;
	display: inline-block;
	margin: 0 5px 5px 0;
	font: 200 1.6em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
	color: #07418f;
	box-sizing: border-box;
}
#recruit .recruitEnvironment .midTitle_rec span {
	width: 100%;
	display: block;
	margin: 0 0 10px 0;
}
#recruit .midTitle_rec::before {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	top: -25px;
	left: -20px;
	display: block;
	background: url("../images/recruit/deco.svg") no-repeat center center;
	background-size: contain;
}

/*【採用情報】メインビジュアル*/
#recruit .mainVisual {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 5%;
    box-sizing: border-box;
}
#recruit .mainVisual img.illust {
	position: absolute;
	width: 50%;
	display: block;
	top: 10%;
	left: 0;
	mix-blend-mode: screen;
}
#recruit .mainVisual img.photo {
	position: relative;
	width: 90%;
	display: block;
	margin: 0 0 20px auto;
}
#recruit .mainVisual img.copy {
	width: 70%;
	display: block;

}

/*【採用情報】お知らせ*/
#recruit .recruitNews {
	position: relative;
    width: 100%;
	min-height: 80px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin: 20px auto 0;
	padding: 20px 5%;
	border-radius: 10px;
	background: #fff;
    box-sizing: border-box;
}
#recruit .recruitNews h2 {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin-bottom: 10px;
	padding: 10px 0;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1em;
	border-bottom: solid 1px #ccc;
	box-sizing: border-box;
}
#recruit .recruitNews dl.list {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	font-size: 1.3em;
	line-height: 1.4em;
}
#recruit .recruitNews dl.list a {
	position: relative;
	width: 100%;
	height: inherit;
	min-height: 80px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	overflow: visible;
	padding: 10px 40px 10px 0;
	box-sizing: border-box;
}
#recruit .recruitNews dl.list a::after {
	position: absolute;
	content: '';
    width: 10px;
    height: 10px;
	right: 0;
    display: block;
	border-radius: 5px;
	background: url("../images/arrow_w.svg") no-repeat center center #f36a23;
	background-size: 0px 0px;
	transition: all 200ms;
}
#recruit .recruitNews dl.list a:hover::after {
	position: absolute;
	content: '';
    width: 30px;
    height: 30px;
	right: -10px;
    display: block;
	border-radius: 15px;
	background: url("../images/arrow_w.svg") no-repeat center center #f36a23;
    background-size: 12px 12px;
	transition: all 200ms;
}
#recruit .recruitNews dl.list dt {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
}
#recruit .recruitNews dl.list dd {
	width: 100%;
	display: block;
	margin-top: 10px;
}
#recruit .recruitNews dl.list a:hover dd {
	text-decoration: underline;
}

/*【採用情報】メッセージ*/
#recruit .recruitMessage dl,
#recruit .recruitWork .recruitWork_text dl {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    margin: 20px auto;
}
#recruit .recruitMessage dl dt,
#recruit .recruitWork .recruitWork_text dl dt {
	width: 100%;
    display: block;
	font: 400 1.8em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
#recruit .recruitMessage dl dd,
#recruit .recruitWork .recruitWork_text dl dd {
	width: 100%;
    display: block;
	font-size: 1.2em;
    line-height: 1.6em;
	text-align: justify;
}
#recruit .recruitMessage dl dd {
	width: 100%;
	margin: 10px 0;
}

/*【採用情報】私たちの仕事*/
#recruit .recruitWork img {
	position: relative;
    width: 100%;
    display: block;
	object-fit: contain;
	object-position: 50% 0;
}
#recruit .recruitWork .recruitWork_text {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-end;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
	margin-top: 40px;
}
#recruit .recruitWork .recruitWork_text dl {
	justify-content: flex-start;
    margin: 40px 0 20px;
}
#recruit .recruitWork .recruitWork_text dl dt {
	width: 100%;
	margin-bottom: 20px;
}
#recruit .recruitWork .recruitWork_text dl dd {
	margin: 0;
}
#recruit .recruitWork .recruitWork_text a.btnDetail {
	margin-left: auto;
}

/*【採用情報】働く環境*/
#recruit .recruitEnvironment {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-end;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 20px 0 40px;
}
#recruit .recruitEnvironment img.photo {
	width: 50%;
	aspect-ratio: 4/3;
    display: block;
    align-self: stretch;
	object-fit: cover;
	object-position: 50% 50%;
}
#recruit .recruitEnvironment .block {
	position: relative;
    width: 90%;
    display: flex;
		justify-content: center;
	margin-top: -60px;
	padding: 60px 7% 40px;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}
#recruit .recruitEnvironment dl {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    margin: 20px auto;
}
#recruit .recruitEnvironment dl dt {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font: 400 1.4em/1.6em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	text-align: center;
}
#recruit .recruitEnvironment dl dd {
	width: 100%;
    display: block;
	font-size: 1.2em;
    line-height: 1.6em;
	text-align: justify;
}

/*【採用情報】働く仲間*/
#recruit .recruitCoworker {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    margin: 40px 0 80px;
}
#recruit .recruitCoworker .homeCoworker_text {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: space-between;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
	transition: all 200ms;
}
#recruit .recruitCoworker .homeCoworker_text p {
	width: 100%;
    display: block;
	margin-top: 40px;
	font: 400 1.8em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	text-align: center;
	font-feature-settings: "palt";
}
#recruit .recruitCoworker .homeCoworker_text p br {
	display: none;
}
#recruit .recruitCoworker a.btnDetail {
	width: 180px;
	margin: 0 auto;
}

/*スライド*/
.slideBlock_coworker {
	position: relative;
    width: 90%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    /*overflow: hidden;*/
    margin: 40px auto;
}
.slideBlock_coworker ul.slider {
    position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
}
.slideBlock_coworker ul.slider li {
    position: relative;
	width: auto;
	aspect-ratio: 4/5;
    display: block;
	align-self: stretch;
    margin: 0 15px;
}
.slideBlock_coworker ul.slider li div {
	position: relative;
	width: 100%;
	aspect-ratio: 4/5;
	display: block;
	-webkit-mask-image: url("../images/recruit/mask_thumb.svg");
	mask-image: url("../images/recruit/mask_thumb.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.slideBlock_coworker ul.slider li span {
    position: absolute;
	width: auto;
	height: 20px;
	top: 0;
	left: 0;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
	color: #07418f;
}
.slideBlock_coworker ul.slider li span::before {
    content: '●';
	width: auto;
    display: inline-block;
}
.slideBlock_coworker ul.slider li img {
    position: absolute;
	width: 90%;
	bottom: 45px;
	left: -30px;
    display: block;
}
.slideBlock_coworker ul.slider li a.btn,
#recruit .coworker ul.coworkerIndex li a.btn {
	position: absolute;
	width: 80%;
    height: 40px;
	bottom: 20px;
	right: calc(50% - 40%);
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	padding: 0 20px 0 10px;
	font-size: 1em;
	line-height: 1em;
	border-radius: 20px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .coworker ul.coworkerIndex li a.btn {
	justify-content: flex-start;
	width: 240px;
	bottom: 10px;
	right: 10px;
}
.slideBlock_coworker ul.slider li a.btn::after,
.slideBlock_coworker ul.slider li a.btn:hover::after,
#recruit .coworker ul.coworkerIndex li a.btn::after,
#recruit .coworker ul.coworkerIndex li a.btn:hover::after {
	position: absolute;
	content: '';
    display: inline-block;
	border-radius: 5px;
	background: url("../images/arrow_w.svg") no-repeat center center #f36a23;
	transition: all 200ms;
}
.slideBlock_coworker ul.slider li a.btn::after,
#recruit .coworker ul.coworkerIndex li a.btn::after {
	width: 10px;
    height: 10px;
	right: 20px;
	border-radius: 5px;
	background-size: 0px 0px;
}
.slideBlock_coworker ul.slider li a.btn:hover::after,
#recruit .coworker ul.coworkerIndex li a.btn:hover::after {
	width: 30px;
    height: 30px;
	right: 10px;
	border-radius: 15px;
    background-size: 12px 12px;
}

/* Arrows */
.slideBlock_coworker .slick-prev,
.slideBlock_coworker .slick-next {
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: -95px;
    display: block;
    z-index: 1000;
    padding: 0;
	margin: 0;
    font-size: 0;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.slideBlock_coworker .slick-prev {
    left: 10px;
    background: #07418f;
}
.slideBlock_coworker .slick-prev::before {
    content: '';
	width: 30px;
    height: 30px;
	display: block;
    background: url("../images/arrow_w.svg") no-repeat center center;
    background-size: 12px 12px;
	transform: rotate(180deg);
}
[dir="rtl"] .slick-prev {
    left: 10px;
    right: auto;
}
.slideBlock_coworker .slick-next {
    right: 10px;
    background: #07418f;
}
.slideBlock_coworker .slick-next::before {
    content: '';
	width: 30px;
    height: 30px;
	display: block;
    background: url("../images/arrow_w.svg") no-repeat center center;
    background-size: 12px 12px;
}
[dir="rtl"] .slick-next {
    right: 10px;
    left: auto;
}
.slideBlock_coworker .slick-prev:hover,
.slideBlock_coworker .slick-next:hover {
    transition: all 200ms;
    opacity: 0.7;
}
.slideBlock_coworker .slick-prev:focus,
.slideBlock_coworker .slick-next:focus {
    /*outline: none;
    background: transparent;
    color: transparent;*/
}
.slideBlock_coworker .slick-prev:hover:before,
.slideBlock_coworker .slick-prev:focus:before,
.slideBlock_coworker .slick-next:hover:before,
.slideBlock_coworker .slick-next:focus:before {
    opacity: 1;
}
.slideBlock_coworker .slick-prev.slick-disabled:before,
.slideBlock_coworker .slick-next.slick-disabled:before {
    opacity: 0.25;
}
.slideBlock_coworker .slick-prev:before,
.slideBlock_coworker .slick-next:before {
    outline: none;
    font-family: "slick";
    font-size: 0;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dots */
.slideBlock_coworker .slick-dotted.slick-slider {
    display: none;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報【共通】エントリー
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#recruit .commonEntry {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin-top: 180px;
	padding-bottom: 40px;
	background: #07418f;
	box-sizing: border-box;
}
#recruit .commonEntry img {
	position: absolute;
    width: 55%;
	bottom: 0;
	right: 0;
    display: block;
}
#recruit .commonEntry .commonEntry_block {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: -180px auto 0;
	padding: 40px 7% 20px;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}
#recruit .commonEntry .commonEntry_block p {
	width: 100%;
    display: block;
	margin: 20px 0;
	font: 400 1.2em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	text-align: center;
}
#recruit .commonEntry .commonEntry_block ul {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#recruit .commonEntry .commonEntry_block ul li {
	width: 100%;
    display: block;
	margin: 5px 0;
}
#recruit .commonEntry .commonEntry_block ul li a {
	position: relative;
	width: 100%;
    height: 60px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font-size: 1.3em;
	line-height: 1em;
	border: solid 1px #07418f;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .commonEntry .commonEntry_block ul li a::before {
	position: absolute;
	content: '';
	width: 30px;
	height: 30px;
	left: 10px;
    display: block;
	background: url("../images/recruit/icon_entry.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(30%) saturate(7313%) hue-rotate(211deg) brightness(96%) contrast(91%);
}
#recruit .commonEntry .commonEntry_block ul li a::after,
#recruit .commonEntry .commonEntry_block ul li a:hover::after {
	position: absolute;
	content: '';
    display: block;
	border-radius: 5px;
	background: url("../images/arrow_w.svg") no-repeat center center #f36a23;
	transition: all 200ms;
}
#recruit .commonEntry .commonEntry_block ul li a::after {
	width: 10px;
    height: 10px;
	right: 20px;
	border-radius: 5px;
	background-size: 0px 0px;
}
#recruit .commonEntry .commonEntry_block ul li a:hover::after {
	width: 30px;
    height: 30px;
	right: 10px;
	border-radius: 15px;
    background-size: 12px 12px;
}
#recruit .commonEntry .contentsMenu {
	position: relative;
    width: 100%;
	max-width: 320px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px auto 0;
	box-sizing: border-box;
}
#recruit .commonEntry .contentsMenu .contentsMenu_title {
	position: relative;
    width: 100%;
	height: 40px;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin-bottom: 20px;
	box-sizing: border-box;
}
#recruit .commonEntry .contentsMenu .contentsMenu_title h2 {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin-bottom: 20px;
    font: 200 2em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
	color: #fff;
}
#recruit .commonEntry .contentsMenu .contentsMenu_title a {
	position: relative;
	width: auto;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin-left: auto;
    font-size: 1.2em;
	line-height: 1em;
	color: #fff;
}
#recruit .commonEntry .contentsMenu .contentsMenu_title a::before {
	content: '';
	width: 10px;
	height: 10px;
	display: inline-block;
	margin-right: 10px;
    background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(6%) saturate(1%) hue-rotate(25deg) brightness(106%) contrast(100%);
}
#recruit .commonEntry .contentsMenu .contentsMenu_title a:hover {
	text-decoration: underline;
}
#recruit .commonEntry .contentsMenu ul {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
	padding: 10px 0;
	box-sizing: border-box;
}
#recruit .commonEntry .contentsMenu ul li {
	width: 100%;
    display: block;
	margin: 5px 0;
}
#recruit .commonEntry .contentsMenu ul a.linkFAQ {
	position: relative;
	width: auto;
	height: 50px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	z-index: 2000;
	margin: 0 auto;
	margin: 20px 10px;
    font-size: 1.3em;
	line-height: 1em;
	color: #fff;
}
#recruit .commonEntry .contentsMenu ul a.linkFAQ::before {
	content: '';
	width: 30px;
	height: 30px;
	display: inline-block;
	margin-right: 10px;
    background: url("../images/recruit/icon_faq.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(6%) saturate(1%) hue-rotate(25deg) brightness(106%) contrast(100%);
}
#recruit .commonEntry .contentsMenu ul a.linkFAQ:hover {
	text-decoration: underline;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報【共通】ページタイトル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#recruit .pageTitle_rec {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-end;
        align-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    box-sizing: border-box;
}
#recruit .pageTitle_rec .block {
	position: relative;
	width: 90%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px auto 20px;
}
#recruit .pageTitle_rec .name {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	box-sizing: border-box;
}
/*
#recruit .pageTitle_rec .name::before,
#recruit .pageTitle_rec .name::after {
	position: absolute;
	content: '';
	width: 24px;
	height: 24px;
	display: block;
	background: url("../images/recruit/deco.svg") no-repeat center center;
	background-size: contain;
}
#recruit .pageTitle_rec .name::before {
	top: 0;
	left: 0;
}
#recruit .pageTitle_rec .name::after {
	bottom: 0;
	right: 0;
	transform: rotate(180deg);
}
*/
#recruit .pageTitle_rec .name h2 {
	width: auto;
	display: block;
    font-size: 1.8em;
	font-weight: 700;
	line-height: 1.6em;
	text-align: center;
	color: #07418f;
}
#recruit .pageTitle_rec .name h2.small {
	font-size: 1.6em;
}
#recruit .pageTitle_rec .name h2 b {
	width: 100%;
	display: block;
    font-size: 0.65em;
	line-height: 1.2em;
}
#recruit .pageTitle_rec .name h2 span {
	width: 100%;
	display: block;
	margin-top: 10px;
    font: 200 0.6em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
	text-align: center;
}
#recruit .pageTitle_rec img.illust {
	position: absolute;
	width: 40%;
	max-width: 760px;
	display: block;
	top: 0;
	left: 0;
	mix-blend-mode: screen;
}
#recruit .pageTitle_rec img.photo {
	width: 100%;
	display: block;
}
#recruit .pageTitle_rec .copy {
	width: 100%;
	display: block;
	margin-top: 20px;
	font: 400 1.5em/1.4em "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	letter-spacing: 0.1em;
	text-align: center;
	font-feature-settings: "palt";
}
#recruit .pageTitle_rec .read {
	position: relative;
	width: 90%;
	display: block;
	margin: 0 auto;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報「私たちの仕事」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#recruit .work {
	width: 90%;
	margin: 0 auto;
}
#recruit .work .workBlock {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-end;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 20px auto;
}
#recruit .work .workBlock .midTitle_rec {
	margin: 0 0 10px 5%;
}
#recruit .work .workBlock .photo {
	width: 100%;
	aspect-ratio: 3/2;
	display: block;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#recruit .work .workBlock dl {
	position: relative;
	width: 90%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: -30px auto 0;
	padding: 40px 5% 20px;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .work .workBlock dl h3 {
	position: absolute;
	width: 60px;
	height: 60px;
	top: -30px;
	left: -5%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1em;
	letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
	border-radius: 10px;
	background: #07418f;
}
#recruit .work .workBlock dl dt {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-size: 1.6em;
	line-height: 1.6em;
}
#recruit .work .workBlock dl dd {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報「働く環境」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#recruit .environment {
	width: 90%;
	margin: 0 auto;
}
#recruit .environment .midTitle_rec span,
#recruit .coworker .midTitle_rec span,
#recruit .job .midTitle_rec span {
	margin: 0;
	font: 700 1.2em/1em "biz-udgothic", "游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	color: #07418f;
	letter-spacing: normal;
}
#recruit .environment .environmentBlock {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-end;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px auto;
}
#recruit .environment .environmentBlock .midTitle_rec,
#recruit .job .midTitle_rec {
	margin: 0 0 10px 5%;
}
#recruit .environment .environmentBlock .photo {
	width: 100%;
	display: block;
}
#recruit .environment .environmentBlock .photo img {
	width: 100%;
	aspect-ratio: 2/1;
	display: block;
	object-fit: cover;
	object-position: 50% 35%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
#recruit .environment .environmentBlock .box {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .environment .environmentBlock .full {
	border-radius: 10px;
	background: #fff;
}
#recruit .environment .environmentBlock .box .text {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 5%;
	box-sizing: border-box;
}
#recruit .environment .environmentBlock .box .text .copy {
	width: 100%;
	display: block;
	font-size: 1.6em;
	line-height: 1.4em;
}
#recruit .environment .environmentBlock .box .text .read {
	width: 100%;
	display: block;
	margin-top: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}
#recruit .environment .environmentBlock .box .text dl {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin-top: 40px;
}
#recruit .environment .environmentBlock .box .text dl dt {
	position: relative;
	width: 100%;
	height: 40px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	margin-bottom: 10px;
	padding: 0 10px;
	font-size: 1.3em;
	line-height: 1em;
	color: #fff;
	border-radius: 5px;
	background: #07418f;
	box-sizing: border-box;
}
#recruit .environment .environmentBlock .box .text dl dt::before {
	position: absolute;
	content: '';
	width: 14px;
	height: 14px;
	top: -14px;
	left: -14px;
	display: block;
	border-radius: 4px;
	background: #07418f;
}
#recruit .environment .environmentBlock .box .text dl dd {
	width: 100%;
	display: block;
}
#recruit .environment .environmentBlock .box .text dl dd ul {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding-left: 2.5em;
	box-sizing: border-box;
}
#recruit .environment .environmentBlock .box .text dl dd ul li {
	width: 100%;
	display: list-item;
	margin: 5px 0;
	font-size: 1.2em;
	line-height: 1.4em;
	list-style: disc outside;
}
#recruit .environment .environmentBlock .box .text dl dd p {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}
#recruit .environment .environmentBlock .box .text ul.benefitList {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin-top: 20px;
}
#recruit .environment .environmentBlock .box .text ul.benefitList li {
	width: 100%;
	display: block;
	padding: 15px 0 15px 1em;
	font-size: 1.1em;
	line-height: 1.4em;
	border-top: dashed 1px #666;
	box-sizing: border-box;
}
#recruit .environment .environmentBlock .box .text ul.benefitList li::before {
	content: '●';
	display: inline-block;
	text-indent: -1em;
	color: #07418f;
}

/*数字データ*/
#recruit .environment .environmentBlock .box ul.data {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 5%;
	transition: all 200ms;
}
#recruit .environment .environmentBlock .box ul.data li {
	width: 49%;
	display: flex;
		justify-content: center;
        align-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
	margin: 20px 0;
	transition: all 200ms;
}
#recruit .environment .environmentBlock .box ul.data li h4 {
	width: 100%;
	height: 30px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	color: #fff;
	border-radius: 15px;
	background: #07418f;
}
#recruit .environment .environmentBlock .box ul.data li img {
	width: 60%;
	display: block;
	margin: 10px auto;
}
#recruit .environment .environmentBlock .box ul.data li .number {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-end;
        align-items: flex-end;
        flex-wrap: wrap;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.2em;
	vertical-align: baseline;
	color: #07418f;
	box-sizing: border-box;
}
#recruit .environment .environmentBlock .box ul.data li .number span {
	position: relative;
	font: 700 1.6em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
}
#recruit .environment .environmentBlock .box ul.data li .number span::before {
	position: absolute;
	width: 4em;
	top: -7px;
	right: calc(100% + 5px);
	display: block;
	font-size: 0.4em;
	letter-spacing: normal;
	text-align: right;
}
#recruit .environment .environmentBlock .box ul.data li .sex {
	padding-left: 1em;
}
#recruit .environment .environmentBlock .box ul.data li .number span.male::before {
	content: '男性';
}
#recruit .environment .environmentBlock .box ul.data li .number span.female {
	margin-left: 1em;
}
#recruit .environment .environmentBlock .box ul.data li .number span.female::before {
	content: '女性';
}
#recruit .environment .environmentBlock .box ul.data li .exp {
	padding-left: 2em;
}
#recruit .environment .environmentBlock .box ul.data li .number span.yes::before {
	content: '経験者';
}
#recruit .environment .environmentBlock .box ul.data li .number span.no {
	margin-left: 1.7em;
}
#recruit .environment .environmentBlock .box ul.data li .number span.no::before {
	content: '未経験者';
}

/*ギャラリー*/
#recruit .environment .environmentBlock .box ul.gallery {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 5%;
	transition: all 200ms;
}
#recruit .environment .environmentBlock .box ul.gallery p {
	width: 100%;
	display: block;
	margin: 20px 0;
	font-size: 1.4em;
	line-height: 1.2em;
	text-align: center;
}
#recruit .environment .environmentBlock .box ul.gallery li {
	position: relative;
	width: 100%;
	display: block;
	margin: 5px 0;
}
#recruit .environment .environmentBlock .box ul.gallery li img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	border-radius: 10px;
}
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(1),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(20) {
	width: 100%;
}
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(2),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(3),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(4),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(7),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(8),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(9),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(12),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(13),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(14),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(17),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(18),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(19) {
	width: 31.666%;
	aspect-ratio: 1/1;
}
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(5),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(11),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(15) {
	width: 55.833%;
	aspect-ratio: 67/42;
}
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(6),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(10),
#recruit .environment .environmentBlock .box ul.gallery li:nth-of-type(16) {
	width: 41.666%;
	aspect-ratio: 25/21;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報「働く仲間」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#recruit .coworker {
	width: 90%;
	margin: 0 auto;
}
#recruit .coworker ul.coworkerIndex {
    position: relative;
    width: 90%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
}
#recruit .coworker ul.coworkerIndex li {
    position: relative;
	width: 100%;
	aspect-ratio: 3/2;
    display: block;
	align-self: stretch;
    margin: 10px 0;
}
#recruit .coworker ul.coworkerIndex li div {
	position: relative;
	width: 100%;
	aspect-ratio: 3/2;
	display: block;
	-webkit-mask-image: url("../images/recruit/coworker/mask.svg");
	mask-image: url("../images/recruit/coworker/mask.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#recruit .coworker ul.coworkerIndex li span {
    position: absolute;
	width: auto;
	top: 0;
	left: 0;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.4em;
	color: #07418f;
}
#recruit .coworker ul.coworkerIndex li span::before {
    content: '●';
	width: auto;
    display: inline-block;
}
#recruit .coworker ul.coworkerIndex li img {
    position: absolute;
	width: 60%;
	bottom: 20px;
	left: -20px;
    display: block;
	z-index: 1000;
}
#recruit .coworker ul.coworkerIndex li a.btn {
    width: 70%;
	min-width: 200px;
	margin-right: -10%;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報「働く仲間」詳細
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*ページタイトル*/
#recruit .pageTitle_rec .photo_coworker {
	position: relative;
	width: 100%;
	aspect-ratio: 94/44;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 20px 0 40px;
	padding-bottom: 40px;
	box-sizing: border-box;
}
#recruit .pageTitle_rec .photo_coworker img.left {
	width: 51%;
	aspect-ratio: 4/3;
	display: block;
	border-radius: 10px;
}
#recruit .pageTitle_rec .photo_coworker .right {
	position: absolute;
	width: 51%;
	aspect-ratio: 4/3;
	bottom: 0;
	right: 0;
	display: block;
	-webkit-mask-image: url("../images/recruit/coworker/mask_title.svg");
	mask-image: url("../images/recruit/coworker/mask_title.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #fff;
}
#recruit .pageTitle_rec .photo_coworker img.tag {
	position: absolute;
	width: 60%;
	bottom: -20px;
	left: -3%;
	display: block;
}
#recruit .pageTitle_rec .photo_coworker .text {
    position: absolute;
	width: 47%;
	height: 3em;
	top: 3%;
	left: 53%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	font-size: 0.8em;
	line-height: 1em;
}
#recruit .pageTitle_rec .photo_coworker .text span {
    width: 100%;
	display: block;
	margin-bottom: 5px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1em;
	color: #07418f;
}
#recruit .coworker .midTitle_rec {
	margin: 0 0 10px 5%;
}

/*これが私の仕事です*/
#recruit .coworker .myjob {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin-bottom: 40px;
}
#recruit .coworker .myjob .photo {
	width: 100%;
	aspect-ratio: 4/3;
	display: block;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#recruit .coworker .myjob dl {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
	margin: 10px auto;
	padding: 20px 5%;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
	transition: all 200ms;
}
#recruit .coworker .myjob dl dt {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-size: 1.6em;
	line-height: 1.2em;
}
#recruit .coworker .myjob dl dd {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}

/*インタビュー*/
#recruit .coworker .interview {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin-bottom: 60px;
}
#recruit .coworker .interview dl {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
}
#recruit .coworker .interview dl.q2 {
	margin: 20px 0 0 0;
}
#recruit .coworker .interview dl dt {
	position: relative;
	width: 100%;
	min-height: 80px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
	padding: 10px 5px 10px 60px;
	font-size: 1.3em;
	line-height: 1.2em;
	color: #fff;
	border-radius: 10px;
	background: #07418f;
	box-sizing: border-box;
}
#recruit .coworker .interview dl dt::before {
	position: absolute;
	content: '';
	width: 60px;
	height: 80px;
	left: 0;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	font: 200 1.4em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
	text-align: center;
	box-sizing: border-box;
}
#recruit .coworker .interview dl.q1 dt::before {
	content: 'Q1';
}
#recruit .coworker .interview dl.q2 dt::before {
	content: 'Q2';
}
#recruit .coworker .interview dl dd {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 10px 0;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .coworker .interview dl dd p {
	width: 100%;
	display: block;
	padding: 20px 5%;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
	box-sizing: border-box;
}
#recruit .coworker .interview dl.q2 dd p {
	width: 100%;
}
#recruit .coworker .interview dl.q2 dd img {
	width: 100%;
	aspect-ratio: 4/3;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

/*ある日の私の一日*/
#recruit .coworker .oneday,
#recruit .coworker .profile {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	box-sizing: border-box;
}
#recruit .coworker .oneday {
	margin-bottom: 60px;
}
#recruit .coworker .oneday .box {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 2%;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .coworker .oneday .box .timeline {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
	box-sizing: border-box;
}
#recruit .coworker .oneday .box .timeline::after {
	position: absolute;
	content: '';
	width: 2px;
	height: calc(100% - 60px);
	top: 30px;
	left: 28px;
	display: block;
	background: #07418f;
}
#recruit .coworker .oneday .box .timeline hr {
	position: relative;
	width: 100%;
	height: 10px;
	display: block;
	border: none;
	background: #ddd;
}
#recruit .coworker .oneday .box .timeline .cell {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 10px 0;
	box-sizing: border-box;
}
#recruit .coworker .oneday .box .timeline .cell dl {
	position: relative;
	width: calc(100% - 20px);
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin-left: auto;
	padding: 0 20px;
	box-sizing: border-box;
}
#recruit .coworker .oneday .box .timeline .cell dl::before {
	position: absolute;
	content: '';
	width: 18px;
	height: 18px;
	top: 11px;
	left: 0;
	display: block;
	z-index: 1000;
	border: solid 2px #07418f;
	border-radius: 9px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .coworker .oneday .box .timeline .cell dl span {
	width: 60px;
	height: 36px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	margin: 0 10px;
	font: 200 0.8em/1em helvetica-neue-lt-pro, sans-serif;
	color: #fff;
	border-radius: 5px;
	background: #07418f;
}
#recruit .coworker .oneday .box .timeline .cell dl dt {
	width: 100%;
	min-height: 40px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.2em;
}
#recruit .coworker .oneday .box .timeline .cell dl dd {
	width: 100%;
	display: block;
	margin-top: 5px;
	padding-left: 80px;
	font-size: 1.2em;
	line-height: 1.4em;
	box-sizing: border-box;
}
#recruit .coworker .oneday .box .timeline .cell .photo {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	margin: 0 0 30px;
	padding: 0 30px;
	box-sizing: border-box;
}
#recruit .coworker .oneday .box .timeline .cell .photo img {
	width: 94%;
	aspect-ratio: 3/2;
	display: block;
	margin: 20px 0 0 auto;
	object-fit: cover;
	object-position: 50% 50%;
	border-radius: 10px;
	box-shadow: 5px 5px 0 0 #bee6f5;
}

/*プロフィール*/
#recruit .coworker .profile .box {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .coworker .profile .box .text {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 5%;
	box-sizing: border-box;
}
#recruit .coworker .profile .box .text h4 {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: 1em;
	line-height: 1.6em;
}
#recruit .coworker .profile .box .text h4 span {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font: 200 4em/1em helvetica-neue-lt-pro, sans-serif;
	color: #07418f;
}
#recruit .coworker .profile .box .text .copy {
	width: 100%;
	display: block;
	margin: 10px 0;
	font-size: 1.4em;
	line-height: 1.6em;
}
#recruit .coworker .profile .box .text dl {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin-top: 20px;
}
#recruit .coworker .profile .box .text dl dt {
	position: relative;
	width: 100%;
	height: 40px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	margin-bottom: 10px;
	font-size: 1.3em;
	line-height: 1em;
	color: #07418f;
	border-bottom: solid 1px #07418f;
	box-sizing: border-box;
}
#recruit .coworker .profile .box .text dl dd {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}
#recruit .coworker .profile .box img {
	width: 100%;
	aspect-ratio: 4/3;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報「採用Q&A」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#recruit .faqBlock {
	position: relative;
	width: 90%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
}
#recruit .faqBlock ul.navi {
	width: 100%;
	clear: both;
	margin: 0 auto;
	overflow: hidden;
}
#recruit .faqBlock ul.navi li {
	width: 100%;
	display: block;
    margin-bottom: 10px;
	padding: 0;
	border-radius: 10px;
	background: #fff;
}
#recruit .faqBlock div.question {
	position: relative;
	width: 100%;
	min-height: 60px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	cursor: pointer;
	margin: 0 auto;
    padding: 0 40px 0 60px;
	background: url("../images/recruit/faq/faq_open.svg") no-repeat right 10px center;
    background-size: 20px 20px;
	box-sizing: border-box;
}
#recruit .faqBlock div.question::before {
	position: absolute;
	content: 'Q';
	width: 60px;
	left: 0px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    font: 400 2.4em/1em futura LT BT, futura-pt, Arial, Helvetica, sans-serif;
	text-align: center;
	color: #07418f;
	box-sizing: border-box;
}
#recruit .faqBlock div.question h3 {
	width: 100%;
	display: block;
	margin: 0 auto;
	font-size: 1.3em;
    font-weight: bold;
	line-height: 1.2em;
	color: #07418f;
}
#recruit .faqBlock div.open {
    cursor: pointer;
    background: url("../images/recruit/faq/faq_close.svg") no-repeat right 10px center;
    background-size: 20px 20px;
}
#recruit .faqBlock ul.answer {
	position: relative;
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 10px 40px 10px 60px;
    border-radius: 10px;
	box-sizing: border-box;
}
#recruit .faqBlock ul.answer p {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
    text-align: justify;
}
#recruit .faqBlock ul.answer p a {
	text-decoration: underline;
    color: #06c;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報「募集要項」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#recruit .job {
	width: 90%;
	margin: -40px auto 20px;
}
#recruit .job .messageBlock {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-end;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px auto;
}
#recruit .job .messageBlock .photo {
	width: 100%;
	aspect-ratio: 4/3;
	display: block;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#recruit .job .messageBlock dl {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 10px auto;
	padding: 20px 5%;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .job .messageBlock dl dt {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-size: 1.6em;
	line-height: 1.4em;
}
#recruit .job .messageBlock dl dd {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}

/*募集要項*/
#recruit .job .descriptionBlock {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-end;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 20px auto;
}
#recruit .job .descriptionBlock .box {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	padding: 20px 5%;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}
#recruit .job .descriptionBlock .box table {
    width: 100%;
    display: table;
	margin: 0 auto 20px;
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
	background: #fff;
}
#recruit .job .descriptionBlock .box table th,
#recruit .job .descriptionBlock .box table td {
    display: table-cell;
    padding: 15px 5px;
    font-size: 1.2em;
	line-height: 1.6em;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}
#recruit .job .descriptionBlock .box table th {
    width: 80px;
    vertical-align: top;
    text-align: left;
	color: #07418f;
	background: #f9f9f9;
}
#recruit .job .descriptionBlock .box table td a {
    text-decoration: underline;
	color: #06c;
}
#recruit .job .descriptionBlock .box a.btnEntry {
	position: relative;
	width: 80%;
    height: 50px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	font: 400 1.2em/1em arial-narrow, "sans-serif";
	letter-spacing: 0.05em;
	transition: 0.3s;
	color: #fff;
	border-radius: 30px;
	background: #0c449b;
	background-size: 20px 20px;
	box-sizing: border-box;
}
#recruit .job .descriptionBlock .box a.btnEntry::after {
	position: absolute;
	content: '';
	width: 12px;
    height: 12px;
	right: 15px;
	display: block;
	background: url("../images/arrow_w.svg") no-repeat center center;
	background-size: contain;
}
#recruit .job .descriptionBlock .box a.btnEntry span {
	position: relative;
}
#recruit .job .descriptionBlock .box a.btnEntry::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background:#062b60;
	background-size: 20px 20px;
	box-sizing: border-box;
}
#recruit .job .descriptionBlock .box a.btnEntry:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
採用情報「エントリー」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#recruit .entry {
	position: relative;
	width: 90%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
	margin: 20px auto;
	padding: 20px 8%;
	border-radius: 10px;
	background: #fff;
	box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
ニュース
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#news .block {
	margin: 0 auto 20px;
}
.wp-pagenavi {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin: 20px auto 40px;
	text-align: center;
	font-size: 1.2em;
	line-height: 1em;
}
.wp-pagenavi a,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	min-width: 30px;
    height: 30px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	text-decoration: none;
    border: none;
	border-radius: 5px;
    background: #f5f5f5;
    box-sizing: border-box;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	border: none;
}
.wp-pagenavi a:hover {
	border-color: #5aa3cc;
}
.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
	box-sizing: border-box;
}
.wp-pagenavi a.page,
.wp-pagenavi span.pages {
    border: none;
}
.wp-pagenavi span.current {
	width: 30px;
    height: 30px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-weight: bold;
	color: #FFF;
	border: none;
	border-radius: 5px;
	background: #5aa3cc;
    box-sizing: border-box;
}
.wp-pagenavi span.extend {
	padding: 5px 10px;
    border: none;
}
.wp-pagenavi .first,
.wp-pagenavi .last {
	width: 50px;
    height: 30px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-size: 0.9em;
	color: #5aa3cc;
	border: solid 1px #5aa3cc;
	border-radius: 5px;
	background: #fff;
    box-sizing: border-box;
}

/*-- News（詳細ページ） --*/
#news .date {
	width: auto;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin-bottom: 10px;
	font-size: 1.2em;
	line-height: 1em;
	color: #999;
}
#news h3.articleTitle {
	width: 100%;
	display: block;
	margin: 0 auto;
	padding-bottom: 20px;
	font-size: 1.4em;
	line-height: 1.2em;
	border-bottom: solid 1px #CCC;
}
#news .content {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 15px 0;
    font-size: 1.2em;
	line-height: 1.8em;
}
#news .content p {
	width: 100%;
    display: block;
    padding: 5px 0;
	font-size: 1em;
}
#news .content a {
	text-decoration: underline;
	color: #06C;
}
#news .content .aligncenter {
	display: block;
    margin: 10px auto;
}
.pageNavi {
	position: relative;
	width: 100%;
    min-height: 60px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    margin: 0 auto;
	border-top: solid 1px #CCC;
}
.pageNavi .prev,
.pageNavi .next {
	width: 45%;
	display: block;
}
.pageNavi .prev a,
.pageNavi .next a {
	height: 60px;
    display: flex;
		align-content: center;
		align-items: center;
    font-size: 0.8em;
	line-height: 1.2em;
	text-decoration: none;
    box-sizing: border-box;
}
.pageNavi .prev a {
	justify-content: flex-start;
}
.pageNavi .prev a::before {
	content: '';
	width: 10px;
	height: 10px;
	margin-right: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	transform: rotate(180deg);
}
.pageNavi .next a {
	justify-content: flex-end;
}
.pageNavi .next a::after {
	content: '';
	width: 10px;
	height: 10px;
	margin-left: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
}
.pageNavi a.btnList {
	position: absolute;
    width: 10%;
    left: calc(50% - 5%);
	display: block;
}
.pageNavi a.btnList span {
	width: 90%;
	max-width: 30px;
	height: 1px;
	display: block;
	margin: 7px auto;
	background: #000;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#form h3 {
	width: 100%;
    height: 50px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
    font-size: 1.5em;
	line-height: 1em;
    color: #0c449b;
    border-bottom: solid 2px #0c449b;
    box-sizing: border-box;
}
#form h3 span {
	width: 32px;
    height: 32px;
	display: inline-block;
    margin-right: 10px;
	filter: invert(16%) sepia(30%) saturate(7313%) hue-rotate(211deg) brightness(96%) contrast(91%);
}
#form h3 span.tel {
	background: url("../images/icon_tel.svg") no-repeat center center;
	background-size: contain;
}
#form h3 span.web {
	background: url("../images/icon_web.svg") no-repeat center center;
	background-size: contain;
}
#form .telBlock {
	width: 100%;
    display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 20px auto 60px;
}
#form .telBlock dl.tel {
	width: 100%;
    display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 10px 0;
	padding: 0;
	border: none;
}
#form .telBlock dl.tel dt {
	width: 100%;
	display: block;
	padding: 0;
	font-size: 1.6em;
	line-height: 1.2em;
    text-align: center;
}
#form .telBlock dl.tel dd {
	width: 100%;
    display: block;
	padding: 0;
	font: 200 1.6em/1em helvetica-neue-lt-pro, sans-serif;
    text-align: center;
}
#form .telBlock dl.tel dd span {
	font-size: 1.6em;
	line-height: 1.2em;
}
#form .telBlock dl.tel dd a {
	text-decoration: none;
}
#form .telBlock p {
	width: 100%;
	display: block;
	font-size: 1.4em;
	line-height: 1.6em;
    text-align: center;
}

/*フォーム内ボタン色*/
#form .btnSend input[type=submit],
#form .submitback input,
#form .btnSend span,
#form a.btnHome {
	background: #0c449b !important;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
サイトポリシー／個人情報保護方針
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#policy .block {
	margin: 20px auto;
	padding-bottom: 20px;
	border-bottom: solid 5px #eee;
}
#policy .block .box {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px 0;
}
#policy .block hr {
	width: 100%;
	height: 1px;
	border: none;
	background: #ddd;
}
#policy .block .date {
	width: auto;
	display: block;
    margin-left: auto;
	font-size: 1.2em;
	line-height: 1.2em;
	margin-bottom: 20px;
	text-align: right;
}
#policy .block .text {
	width: 100%;
	display: block;
	font-size: 1em;
	line-height: 1.6em;
	text-align: justify;
}
#policy .block .titleLarge {
	width: 100%;
	display: block;
	margin: 20px 0 10px;
    padding-bottom: 10px;
	font-size: 1.4em;
    font-weight: 700;
	line-height: 1em;
    border-bottom: solid 4px #0074be;
}
#policy .block .txBlue {
	width: 100%;
	display: block;
	margin: 20px 0;
	font-size: 1.3em;
    font-weight: 700;
	line-height: 1em;
    color: #0074be;
}
#policy .block .subject {
	width: 100%;
	display: block;
	margin-bottom: 15px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1em;
}
#policy .block .text a {
	color: #06C;
	text-decoration: underline;
}
#policy .block dl {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 10px 0;
}
#policy .block dl dt {
	width: 25px;
	display: inline-block;
	font-size: 1em;
	line-height: 1.4em;
}
#policy .block dl dd {
	width: calc(100% - 25px);
	display: inline-block;
	font-size: 1em;
	line-height: 1.4em;
}
#policy .block ul {
	width: calc(100% - 25px);
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 15px 0 0 auto;
}
#policy .block ul li {
	width: 100%;
	margin-bottom: 10px;
	font-size: 1em;
	line-height: 1.4em;
    box-sizing: border-box;
}
#policy .block ul.number li {
	padding-left: 1.5em;
    text-indent: -2em;
}
#policy .block ul.disc li {
	text-indent: inherit;
    list-style-position: outside;
	list-style-type: disc;
}
#policy .block ol {
	width: 80%;
	display: block;
	margin: 0 auto;
}
#policy .block ol li {
	width: 100%;
	margin: 30px 0;
	font-size: 1em;
	line-height: 1.4em;
	list-style: decimal outside;
}
#policy .block .contact {
	width: 100%;
	display: block;
	margin: 0 auto 20px;
	font-size: 1.2em;
	line-height: 1em;
	text-align: center;
}
#policy .block address {
	width: 100%;
    display: block;
	margin: 20px auto;
	font-size: 1em;
	line-height: 1.4em;
	text-align: center;
}
#policy .block address strong {
	width: 100%;
    display: block;
    margin-bottom: 10px;
	font-size: 1.2em;
	line-height: 1.2em;
	text-align: center;
}
#policy .block .tel {
	width: 100%;
	display: block;
	margin-top: 20px;
	font-size: 1.4em;
	line-height: 1.4em;
	text-align: center;
}
#policy .block .tel span {
	font-size: 1.6em;
}
#policy .block .tel span.small {
	font-size: 0.6em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
サイトマップ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#sitemap .block {
	margin: 20px auto;
	padding-bottom: 20px;
	border-bottom: solid 5px #eee;
}
#sitemap ul.list {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
}
#sitemap ul.list li {
	width: 100%;
	display: block;
    align-self: stretch;
    border-bottom: solid 1px #DDD;
}
#sitemap ul.list li:nth-last-of-type(-n+2) {
	border-bottom: none;
}
#sitemap ul.list li a,
#sitemap ul.list li p {
	position: relative;
	width: 100%;
	display: block;
	padding: 30px 0 30px 15px;
	font-size: 1.2em;
	line-height: 1em;
	box-sizing: border-box;
}
#sitemap ul.list li p {
	padding: 30px 10px;
}
#sitemap ul.list li a::before {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	top: 33px;
	left: 0;
	display: block;
	margin: 0 5px 0 0;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(30%) saturate(7313%) hue-rotate(211deg) brightness(96%) contrast(91%);
}
#sitemap ul.list li a:hover {
    transition: all 200ms;
    opacity: 0.5;
}
#sitemap ul.list li.half {
	width: 49%;
}
#sitemap ul.listS {
	width: calc(100% - 20px);
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 0 10px auto;
}
#sitemap ul.listS li {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	border: none;
}
#sitemap ul.list li.half ul.listS li {
	width: 100%;
}
#sitemap ul.listS li a {
	width: 100%;
	display: block;
	padding: 5px 0 5px 20px;
	font-size: 1.3em;
	line-height: 1.2em;
    box-sizing: border-box;
}
#sitemap ul.listS li a::before {
	top: 8px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】サービスメニュー
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.serviceMenu {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	background: url("../images/service_menu_bg.jpg") no-repeat center center;
	background-size: cover;
	box-sizing: border-box;
}
.serviceMenu section {
	position: relative;
	width: calc(90% - 100px);
	max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
    padding: 80px 0 120px;
    box-sizing: border-box;
}
.serviceMenu .title_w {
	position: relative;
    width: 100%;
	height: 80px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    font-size: 1.6em;
	line-height: 1em;
	color: #fff;
}
.serviceMenu .title_w::before {
	position: absolute;
    content: '';
    width: 100px;
    height: 80px;
    left: -110px;
	display: block;
	background: url("../images/mark_cross_w.svg") no-repeat center center;
	background-size: contain;
}
.serviceMenu .title_w span {
	width: 100%;
	display: block;
    margin-bottom: 10px;
    font: 700 2.8em/1em arial-narrow, "sans-serif";
}
.serviceMenu ul {
	width: 85%;
	max-width: 900px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 0 0 auto;
	border-top: solid 1px rgba(191,221,173,0.5);
    box-sizing: border-box;
}
.serviceMenu ul li {
	width: 100%;
    display: block;
	border-bottom: solid 1px rgba(191,221,173,0.5);
}
.serviceMenu ul li a {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 20px 0;
    box-sizing: border-box;
	transition: all 200ms;
}
.serviceMenu ul li a img {
	position: relative;
	width: 20%;
	aspect-ratio: 39/34;
    display: block;
}
.serviceMenu ul li a div {
	width: calc(100% - 20%);
	top: 0;
	right: 0;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    padding-right: 50px;
	box-sizing: border-box;
}
.serviceMenu ul li a div .number {
	width: 120px;
	height: 120px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    font: 400 7.2em/1em arial-narrow, "sans-serif";
    color: #bfddad;
}
.serviceMenu ul li a div .number::before {
	content: 'SERVICES';
	width: 100%;
	display: block;
    font-size: 0.2em;
    line-height: 1.2em;
	text-align: center;
}
.serviceMenu ul li a h3 {
	width: calc(100% - 120px);
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin-top: 20px;
	font: 900 2.4em/1.2em "source-han-sans-cjk-ja", sans-serif;
	font-feature-settings: "palt";
	color: #bfddad;
	box-sizing: border-box;
}
.serviceMenu ul li a h3 p {
	width: 100%;
	display: block;
    margin-top: 10px;
	font-size: 0.7em;
	line-height: 1.2em;
	color: #fff;
}
.serviceMenu ul li a .arrow {
	position: absolute;
	width: 40px;
	height: 40px;
	right: 0;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	border-radius: 3px;
    background: #bfddad;
}
.serviceMenu ul li a .arrow::before {
	content: '';
	width: 12px;
	height: 12px;
	display: block;
    background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(21%) sepia(25%) saturate(3916%) hue-rotate(155deg) brightness(92%) contrast(101%);
}
.serviceMenu ul li a:hover img {
	opacity: 1;
	transition: all 200ms;
}
.serviceMenu ul li a:hover div h3,
.serviceMenu ul li a:hover div .number {
	color: #fff;
	transition: all 200ms;
}
.serviceMenu ul li a:hover .arrow {
	background: #fff;
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonContact {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
    padding: 40px 0;
	background: #f7f7f7;
}
.commonContact .boxTitle {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	margin-bottom: 20px;
	font-size: 1.4em;
	line-height: 1em;
	text-align: center;
    box-sizing: border-box;
}
.commonContact .boxTitle span {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font: 200 2em/1em helvetica-neue-lt-pro, sans-serif;
	letter-spacing: 0.05em;
	color: #07418f;
}
.commonContact ul {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
}
.commonContact ul li {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	border-bottom: solid 1px #ccc;
    box-sizing: border-box;
}
.commonContact ul li:nth-of-type(1) {
	border-top: solid 1px #ccc;
}
.commonContact ul li a {
	position: relative;
	width: 100%;
    min-height: 80px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	padding: 0 60px;
    font-size: 1.4em;
	line-height: 1em;
    text-align: center;
    border-radius: 3px;
    
	box-sizing: border-box;
}
.commonContact .tel a {
	justify-content: center;
	font-size: 1.8em;
	text-align: center;
	/*cursor: default;
	pointer-events: none;*/
}
.commonContact .tel a span {
	margin: 0 10px;
	font-size: 0.7em;
	text-align: center;
}
.commonContact .tel a::before,
.commonContact .web a::before {
	position: absolute;
	content: '';
    width: 40px;
    height: 40px;
	left: 10px;
    display: block;
	filter: invert(16%) sepia(30%) saturate(7313%) hue-rotate(211deg) brightness(96%) contrast(91%);
}
.commonContact .tel a::before {
	background: url("../images/icon_tel.svg") no-repeat center center;
    background-size: contain;
}
.commonContact .web a::before {
	background: url("../images/icon_web.svg") no-repeat center center;
    background-size: contain;
}
.commonContact .tel a::after,
.commonContact .web a::after {
	position: absolute;
	content: '';
    width: 12px;
    height: 12px;
	right: 26px;
    display: block;
	border-radius: 6px;
	background: url("../images/arrow_w.svg") no-repeat center center #07418f;
	background-size: 0px 0px;
	transition: all 200ms;
}
.commonContact .tel a:hover::after,
.commonContact .web a:hover::after {
	position: absolute;
	content: '';
    width: 36px;
    height: 36px;
	right: 16px;
    display: block;
	border-radius: 18px;
	background: url("../images/arrow_w.svg") no-repeat center center #07418f;
    background-size: 14px 14px;
	transition: all 200ms;
}
.commonContact .tel a::after,
.commonContact .tel a:hover::after {
	display: none;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding-top: 40px;
    box-sizing: border-box;
}
footer #page-top{
	position: fixed;
	width: 50px;
	right: 0;
	bottom: 0;
	z-index: 30000;
    border-radius: 25px;
	background: #f36a23;
}
footer .grad {
	position: absolute;
	width: 100%;
	height: 50%;
	top: 0;
    display: block;
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
}
footer .block {
	width: 100%;
	margin: 0;
}
footer .info {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	z-index: 1000;
	padding: 0 5%;
}
footer .info a.logo {
    width: 20%;
	display: block;
	margin: 0 auto;
}
footer .info a.logo img {
    width: 100%;
	display: block;
}
footer .info address {
	width: calc(100%);
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	box-sizing: border-box;
}
footer .info address strong {
	width: 100%;
    display: block;
	margin: 20px 0 0;
	font-size: 1.8em;
    line-height: 1.2em;
	text-align: center;
	font-feature-settings: "palt";
	color: #07418f;
}
footer .info address strong span {
	width: 100%;
    display: block;
	font-size: 0.7em;
}
footer .info address p {
	position: relative;
	width: 100%;
    display: block;
	margin: 30px 0;
	font-size: 1em;
    line-height: 1.6em;
	text-align: center;
}
footer .info address p a.btn {
	position: absolute;
	width: 90px;
	height: 24px;
	bottom: -30px;
	left: calc(50% - 45px);
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font: 200 0.9em/1em "futura-pt", Arial, "sans-serif";
	letter-spacing: 0.05em;
	color: #fff;
	border-radius: 12px;
	background: #666;
	transition: all 200ms;
}
footer .info address p a.btn:hover {
	background: #333;
}
footer .info address a.btnDetail {
	margin: 40px auto;
	border: solid 1px #ccc;
}
footer img.copy {
	width: 70%;
    display: block;
	z-index: 1000;
	margin: 0 auto;
}
footer .bottom {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin-top: -120px;
	color: #fff;
	background: #07418f;
}
footer .bottom::before {
	content: '';
	width: 100%;
	aspect-ratio: 1/1;
    display: block;
	background: url("../images/footer_bg.jpg") no-repeat center bottom;
    background-size: cover;
}
footer .bottom::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 50%;
	top: 0;
    display: block;
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
}
footer .bottom ul {
	width: 100%;
	height: 60px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
	margin-bottom: 20px;
}
footer .bottom ul li {
	display: block;
	padding-right: 15px;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
}
footer .bottom ul li+li {
	padding-left: 15px;
	border-left: solid 1px rgba(255,255,255,0.5);
}
footer .bottom ul li a {
	color: #fff;
}
footer .bottom ul li a:hover {
	text-decoration: underline;
}
footer .bottom .copyright {
	width: 100%;
    display: block;
	margin-bottom: 40px;
	font: 300 1em/1em "futura-pt", Arial, "sans-serif";
	text-align: center;
}
