@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	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;
	filter: alpha(opacity=100);
    transition: all 200ms;
}
.pc {
	display: none;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 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;
    box-sizing: border-box;
}
header .header_bg {
	display: none;
}
header a.headerLogo,
header a.headerLogo_w {
	position: absolute;
    width: 40%;
    height: 50px;
    left: 10px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
    z-index: 20000;
    background: url("../images/logo.png") no-repeat left center;
    background-size: contain;
}
header a.btnEntry {
	position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    right: 60px;
    display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
    text-align: center;
    background: #f5f5f5;
}
header a.btnEntry::before {
	content: '';
    width: 24px;
    height: 24px;
    display: block;
    background: url("../images/icon_entry.svg") no-repeat center center;
    background-size: contain;
}
header a.btnEntry:after {
	content: 'Entry';
	width: 100%;
    display: block;
    margin-top: 5px;
    font: 600 1.2em/1em futura-pt, Arial, Helvetica, "sans-serif";
    letter-spacing: 0.05em;
	text-align: center;
    color: #982E5A;
}
header a.btnContact:active {
	transition: all 200ms;
	opacity: 0.5;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【ヘッダー】グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.openMenu {
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
    z-index: 20000;
}
.btn_nav {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0;
	right: 0;
	background: #982E5A;
}
.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: 20px;
}
.open_nav .line2,
.close_nav .line2 {
	top: 28px;
}
.open_nav .line3 {
	top: 37px;
}
.close_nav .line1,
.close_nav .line3 {
	position: absolute;
    width: 28px;
	height: 1px;
    top: 28px;
	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: #982E5A;
	box-sizing: border-box;
}
.sp_nav {
	width: 90%;
	height: auto;
	display: block;
	margin: 60px auto;
}
.sp_nav ul.sp_nav_menu,
.sp_nav ul.sp_nav_menu_sub {
	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,
.sp_nav ul.sp_nav_menu_sub li {
	position: relative;
    width: 100%;
	display: block;
}
.sp_nav ul.sp_nav_menu li+li,
.sp_nav ul.sp_nav_menu_sub li {
	border-top: solid 1px rgba(255,255,255,0.3);
}
.sp_nav ul.sp_nav_menu li a,
.sp_nav ul.sp_nav_menu li p,
.sp_nav ul.sp_nav_menu_sub li a {
	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;
    letter-spacing: 0.05em;
    color: #fff;
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li a br,
.sp_nav ul.sp_nav_menu li p br {
	display: none;
}
.sp_nav ul.sp_nav_menu li a,
.sp_nav ul.sp_nav_menu_sub li a {
	background: url("../images/arrow_right_w.svg") no-repeat right 10px center;
	background-size: 12px 12px;
}
.sp_nav ul.sp_nav_menu li a img,
.sp_nav ul.sp_nav_menu li p img {
	display: none;
}
.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#worksMenu li a:hover,
.sp_nav ul.sp_nav_menu li ul#interviewMenu li a:hover {
	transition: all 200ms;
    opacity: 0.7;
}
.sp_nav ul.sp_nav_menu li ul#worksMenu,
.sp_nav ul.sp_nav_menu li ul#interviewMenu {
	width: 95%;
	display: none;
    margin: -20px 0 20px auto;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li ul#worksMenu li,
.sp_nav ul.sp_nav_menu li ul#interviewMenu li {
	width: 100%;
	height: 40px;
	display: block;
    margin-top: 5px;
}
.sp_nav ul.sp_nav_menu li ul#worksMenu li a,
.sp_nav ul.sp_nav_menu li ul#interviewMenu li a {
	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;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
article {
	clear: both;
	margin: 0 auto;
}
.block {
	position: relative;
	width: 100%;
	clear: both;
	display: block;
	margin: 0 auto;
}
.bg_gray {
	background: #EEE;
}

/*----- Title ------*/
.page_title,
.page_title2 {
	width: 100%;
	clear: both;
	margin: 60px auto 0;
	align-items: center;
	background: #982E5A;
}
.page_title h2,
.page_title2 h2 {
	width: 100%;
	clear: both;
	font-size: 1.6em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
}
.page_title h2 {
	padding: 20px 0 10px;
}
.page_title2 h2 {
	font-size: 1.4em;
	padding: 20px 0 5px;
}
.page_title h2 span {
	font-family: futura-pt, Arial, Helvetica, "sans-serif";
	font-size: 0.8em;
	font-weight: 300;
	color: rgba(255,255,255,0.5);
}
.page_title2 .en {
	width: 100%;
	clear: both;
	padding-bottom: 10px;
	font: 300 1.4em/1em futura-pt, Arial, Helvetica, "sans-serif";
	text-align: center;
	color: rgba(255,255,255,0.5);
}
.page_title img {
	width: 100%;
	clear: both;
}

/*----- Topicpath -----*/
ul.topicpath {
	display: none;
}

/*==============================
 Topページ
==============================*/
#home .main_visual {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
#home .main_visual figure {
	width: 100%;
	aspect-ratio: 2/3;
	display: block;
}
#home .main_visual figure img.photo_sp {
    width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 0;
}
#home .main_visual figure img.photo {
    display: none;
}
#home .main_visual figure img.copy {
    position: absolute;
	width: 70%;
	bottom: 45%;
	left: 15%;
	display: block;
}
#home .main_visual a.btn_about {
	width: 60%;
	height: 50px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	z-index: 1000;
	margin: -80px auto 20px;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
	color: #982E5A;
	border: solid 1px #982E5A;
	background-image: url("../images/btn_deco.png"), url("../images/arrow_right.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px top, right 20px center;
	background-size: 28px, 12px;
	background-color: #fff;
	box-sizing: border-box;
}

/* News */
#home .home_news {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: stretch;
		align-items: center;
        flex-wrap: wrap;
}
#home .home_news .news_title {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	align-self: stretch;
	padding: 10px;
	color: #FFF;
	background: #982E5A;
	box-sizing: border-box;
}
#home .home_news .news_title h2 {
	width: auto;
	display: block;
	font: 300 2.4em/1em futura-pt, Arial, Helvetica, "sans-serif";
}
#home .home_news a.news_link {
	width: auto;
	height: 20px;
	display: flex;
		justify-content: flex-end;
        align-content: center;
		align-items: center;
	padding-right: 25px;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	background: url("../images/top/arrow_news.png") no-repeat right center;
	background-size: 14px;
}
#home .home_news .inner {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	align-self: stretch;
	padding: 10px 20px;
	box-sizing: border-box;
}
#home .home_news dl.news_list {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 10px 0;;
}
#home .home_news dl.news_list+dl {
	border-top: solid 1px #ccc;
}
#home .home_news dl.news_list dt {
	width: 100%;
	display: block;
	margin-bottom: 5px;
	font-size: 1.2em;
	line-height: 1.4em;
}
#home .home_news dl.news_list dd {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.4em;
}

/*【Home】インナー */
#home .inner {
	position: relative;
	width: 90%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}

/*【Home】タイトル */
#home .homeTitle {
	position: relative;
	width: 100%;
	height: 40px;
	display: block;
	margin-bottom: 30px;
	font-size: 2em;
	line-height: 1em;
	text-align: center;
}
#home .homeTitle::after {
	position: absolute;
	content: '';
	width: 60px;
	height: 1px;
	bottom: 0;
	left: calc(50% - 30px);
	display: block;
	background: #982E5A;
}

/*【Home】共通ボタン */
a.btn_common {
	width: 90%;
	height: 60px;
	display: block;
	margin: 0 auto;
	font-size: 1.4em;
	line-height: 60px;
	text-align: center;
	color: #FFF;
	background-image: url("../images/btn_deco_w.png"), url("../images/arrow_right_w.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px top, right 10px center;
	background-color: #982E5A;
	background-size: 40px, 14px;
}
a.btnDetail {
	width: auto;
    height: 20px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 0 10px;
	font-size: 1.2em;
	line-height: 1.2em;
    box-sizing: border-box;
}
a.btnDetail::after {
	content: '';
    width: 20px;
    height: 20px;
	display: block;
    margin-left: 5px;
    border-radius: 10px;
	background: url("../images/arrow_right_w.svg") no-repeat center center #982E5A;
	background-size: 8px 8px;
    box-sizing: border-box;
}
a.btnDetail:hover {
	text-decoration: underline;
	color: #982E5A;
}
a.btnCommon {
	width: 70%;
	height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin: 0 auto;
	font-size: 1.3em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	border: solid 1px rgba(255,255,255,0.5);
	background-image: url("../images/btn_deco_w.png"), url("../images/arrow_right_w.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px top, right 10px center;
	background-color: #982E5A;
	background-size: 36px, 12px;
	box-sizing: border-box;
}
a.btnCommon:hover {
	transition: all 200ms;
	opacity: 0.5;
}

/*【Home】仕事を知る */
#home .homeWorks {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 40px 0;
	background: #f7f7f7;
}
#home .homeWorks ul {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin-bottom: 20px;
}
#home .homeWorks ul h3 {
	width: 100%;
	height: 30px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	margin: 5px 0;
	padding: 0 10px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.2em;
	color: #982E5A;
	border-left: solid 5px #982E5A;
	box-sizing: border-box;
}
#home .homeWorks ul li {
	width: 100%;
	display: block;
	margin: 5px 0;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}
#home .homeWorks ul li a {
	position: relative;
	width: 100%;
	height: 90px;
	display: flex;
		justify-content: space-between;
        align-content: center;
		align-items: center;
}
#home .homeWorks ul li a img {
	width: 35%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
#home .homeWorks ul li a h4 {
	width: 65%;
	display: inline-block;
	padding: 0 30px 0 15px;
	font-size: 1.4em;
	line-height: 1.2em;
	box-sizing: border-box;
}
#home .homeWorks ul li a h4 span {
	font-size: 0.8em;
	line-height: 1.2em;
}
#home .homeWorks ul li a::after {
	position: absolute;
	content: '';
    width: 20px;
    height: 20px;
	right: 10px;
	display: block;
    border-radius: 12px;
	background: url("../images/arrow_right_w.svg") no-repeat center center #982E5A;
	background-size: 8px 8px;
    box-sizing: border-box;
}
#home .homeRecruit ul.otherMenu li a:hover {
	text-decoration: underline;
	color: #982E5A;
}
#home .homeWorks .btnDetail {
	margin-left: auto;
}

/*【Home】人を知る */
#home .homeInterview {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 40px 0;
	background: url("../images/top/interview_bg.jpg") no-repeat center center;
	background-size: cover;
}
#home .homeInterview .homeTitle {
	color: #fff;
}
#home .homeInterview .homeTitle::after {
	background: #fff;
}
#home .homeInterview ul {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
#home .homeInterview ul li {
	position: relative;
	width: 48%;
	aspect-ratio: 3/4;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	margin-bottom: 20px;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}
#home .homeInterview ul li img {
    width: 100%;
	aspect-ratio: 3/4;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
#home .homeInterview ul li a {
	position: absolute;
	width: 96%;
	height: 60px;
	bottom: 5px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 10px;
	color: #fff;
	background: rgba(0,0,0,0.7);
	box-sizing: border-box;
}
#home .homeInterview ul li a::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	bottom: 10px;
	right: 10px;
	display: block;
	background: url("../images/arrow_right_w.svg") no-repeat center center;
	background-size: contain;
}
#home .homeInterview ul li a h3 {
	width: 100%;
	display: block;
	margin-bottom: 5px;
	font: 300 1.6em/1em futura-pt, Arial, Helvetica, "sans-serif";
	box-sizing: border-box;
}
#home .homeInterview ul li a span {
	width: 100%;
	display: block;
	font-size: 0.8em;
	line-height: 1.2em;
}
#home .homeInterview ul li a:hover {
	background: #982E5A;
	transition: all 200ms;
	opacity: 1 !important;
}
#home .homeInterview dl {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 20px 0 40px;
	color: #fff;
}
#home .homeInterview dl dt {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font: normal 2em/1.4em "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	text-align: center;
}
#home .homeInterview dl dd {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.8em;
	text-align: justify;
}

/*【Home】環境を知る */
#home .homeEnvironment {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 40px 0 60px;
	background: #982E5A;
	background-size: cover;
}
#home .homeEnvironment .homeTitle {
	color: #fff;
}
#home .homeEnvironment .homeTitle::after {
	background: #fff;
}
#home .homeEnvironment .inner {
	width: 100%;
	margin-bottom: 40px;
}
#home .homeEnvironment .homeEnvironment_text {
	width: 90%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 0 auto;
}
#home .homeEnvironment dl {
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin-bottom: 30px;
	color: #fff;
	box-sizing: border-box;
}
#home .homeEnvironment dl dt {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font: normal 2em/1.6em "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	text-align: center;
}
#home .homeEnvironment dl dd {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.8em;
}
#home .homeEnvironment .slideBlock {
	width: 90%;
	display: flex;
		justify-content: space-between;
        align-content:stretch;
		align-items: center;
	margin: 0 auto;
}
#home .homeEnvironment .slideBlock ul {
    width: 100%;
    display: block;
}
#home .homeEnvironment .slideBlock ul li {
    position: relative;
    width: auto;
	height: 100%;
    display: block;
}
#home .homeEnvironment .slideBlock ul li img {
    width: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	transition: all 200ms;
}
#home .homeEnvironment .slick-dots {
    position: absolute;
	width: 100%;
    bottom: -20px;
	display: flex !important;
		justify-content: center;
}
#home .homeEnvironment .slick-dots li {
    position: relative;
	width: 80px;
    display: inline-block;
    height: 2px;
    margin: 0 2px;
    cursor: pointer;
}
#home .homeEnvironment .slick-dots li button {
    width: 50px;
	height: 2px;
	display: block;
    outline: none;
    color: transparent;
    cursor: pointer;
	border: none;
	background: transparent;
}
#home .homeEnvironment .slick-dots li button:hover,
#home .homeEnvironment .slick-dots li button:focus {
    outline: none;
}
#home .homeEnvironment .slick-dots li button:hover:before,
#home .homeEnvironment .slick-dots li button:focus:before {
    opacity: 1;
}
#home .homeEnvironment .slick-dots li button:before {
    position: absolute;
	content: "";
	width: 50px;
	height: 2px;
    top: 0;
    left: 0;
	background: #fff;
    opacity: 0.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#home .homeEnvironment .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* Arrows */
#home .homeEnvironment .slideBlock .slick-prev,
#home .homeEnvironment .slideBlock .slick-next {
    display: none !important;
}

/* 採用情報 */
#home .homeRecruit {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 40px 0;
	background: #EEE;
}
#home .homeRecruit ul.entryMenu {
	width: 90%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
}
#home .homeRecruit ul.entryMenu li {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	border: solid 1px #982E5A;
	box-sizing: border-box;
}
#home .homeRecruit ul.entryMenu li a {
	width: 100%;
	height: 50px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	font-size: 1.4em;
	line-height: 1.2em;
	text-align: center;
	background-image: url("../images/btn_deco.png"), url("../images/arrow_right.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px top, right 10px center;
	background-color: #FFF;
	background-size: 36px, 12px;
}
#home .homeRecruit ul.otherMenu {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin-top: 10px;
}
#home .homeRecruit ul.otherMenu li {
	width: auto;
	display: inline-block;
	margin: 5px 0;
}


/*==============================
 昭和設計を知る
==============================*/
#about {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0 40px;
}
#about article {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding-bottom: 40px;
}
#about .about_top {
	position: relative;
	width: 90%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 20px auto 0;
}
#about .about_top .textBox {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#about .about_top .textBox h3 {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.4em;
	text-align: center;
	color: #982E5A;
}
#about .about_top .textBox h3 span {
	font-size: 1.2em;
}
#about .about_top .textBox p {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}
#about .about_top figure {
	width: 90%;
	display: block;
	margin: 20px auto;
}
#about .about_top dl.one_stop {
	width: 90%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
	box-sizing: border-box;
}
#about .about_top dl.one_stop dt {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.2em;
	color: #982E5A;
}
#about .about_top dl.one_stop dd {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: justify;
}
#about .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;
}
#about h3.title {
	position: relative;
	width: 100%;
	min-height: 120px;
	display: flex;
		justify-content: flex-start;
		align-content: flex-end;
		align-items: flex-end;
		flex-wrap: wrap;
	margin-bottom: 20px;
	padding-top: 60px;
	font-size: 2em;
	font-weight: bold;
	line-height: 1em;
	color: #982E5A;
	box-sizing: border-box;
}
#about h3.title::before {
	position: absolute;
	content: '';
	width: 104px;
	height: 120px;
	top: 0;
	left: -60px;
	display: block;
	background: url("../images/btn_deco.png") no-repeat center center;
	background-size: contain;
}
#about h3.title span {
	margin: 0 -0.5em;
	font-size: 0.5em;
	font-weight: normal;
}
#about h3.title p {
	width: 100%;
	min-height: 50px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin-top: 10px;
	font-size: 0.5em;
	font-weight: normal;
	line-height: 1.4em;
	color: #000;
	box-sizing: border-box;
}
#about h3.title p.kai {
	
}
#about h3.title p.kai span {
	width: 100%;
	margin: 5px 0;
	font-size: 0.8em;
}
#about .block .box {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#about .block .box figure {
	width: 100%;
	display: block;
	margin-bottom: 10px;
}
#about .block .box dl {
	width: auto;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
	margin-bottom: 20px;
	box-sizing: border-box;
}
#about .block .box dl h4,
#about .block .b3 h4 {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.4em;
}
#about .block .box dl dt {
	width: 100%;
	display: block;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.2em;
	color: #666;
}
#about .block .box dl dd {
	width: 100%;
	display: block;
	padding-top: 5px;
	font-size: 0.9em;
	line-height: 1em;
	color: #333;
}

/*プロジェクトストーリー*/
#about .project_story {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-bottom: 40px;
	padding: 40px 0 20px;
	background: #888;
	box-sizing: border-box;
}
#about .project_story h3 {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1.2em;
	text-align: center;
	color: #fff;
}
#about .project_story h3 .en {
	position: relative;
	width: 100%;
	display: block;
	font: 300 2em/1em futura-pt, Arial, Helvetica, "sans-serif";
	box-sizing: border-box;
}
#about .project_story h3 .en::after {
	position: absolute;
	content: '';
	width: 80%;
	bottom: 5px;
	left: calc(50% - 40%);
	display: block;
	border-bottom: solid 1px #fff;
}
#about .project_story ul {
	width: 90%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#about .project_story ul li {
	width: 100%;
	display: block;
	margin-bottom: 20px;
	background: #fff;
}
#about .project_story ul li h4 {
	position: relative;
	width: 100%;
	height: 80px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font-size: clamp(1.2em, 1.2vw, 1.6em);
	line-height: 1.4em;
	text-align: center;
}
#about .project_story ul li h4::after {
	position: absolute;
	content: '';
	width: 16px;
	aspect-ratio: 1/1;
	bottom: 20px;
	right: 20px;
	display: block;
	background: url("../images/about/icon_linkout.svg") no-repeat center center;
	background-size: contain;
}


/*==============================
 仕事を知る
==============================*/
#works {
	width: 100%;
	clear: both;
}
#works article {
	width: 100%;
	clear: both;
}

/*-- インデックス --*/
#works article section.index {
	position: relative;
	width: 100%;
	min-height: 400px;
	clear: both;
	overflow: hidden;
	margin: 0 auto;
	padding-bottom: 20px;
}
#works article section.index img {
	width: 100%;
	clear: both;
}
#works article section.index dl.works_list {
	width: 94%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
}
#works article section.index dl.works_list dt {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.4em;
	text-align: center;
}
#works article section.index dl.works_list dt h3 {
	margin-bottom: 10px;
	font-size: 1.2em;
	font-weight: bold;
	color: #982C59;
}
#works article section.index dl.works_list dt h3 span {
	font-size: 0.6em;
}
#works article section.index dl.works_list dd {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
}
#works article section.index a.link_work {
	width: 50%;
	height: 40px;
	clear: both;
	display: block;
	margin: 0 auto;
	padding-right: 10px;
	font-size: 1.4em;
	line-height: 40px;
	text-align: center;
	color: #982D59;
	border: solid 1px #982D59;
	background: url("../images/arrow_right.png") no-repeat right 10px center;
	background-size: 14px;
	box-sizing: border-box;
}

/*-- 【共通】worksメニュー --*/
#works article.works_menu {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding-top: 10px;
}
ul.bx-pager {
	width: 94%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
}
ul.bx-pager li {
	width: 49%;
	display: block;
    margin: 2px 0;
	border: solid 1px #CCC;
	box-sizing: border-box;
	background: #FFF;
}
ul.bx-pager li.on {
	border: none !important;
	background-color: #982E5A !important;
}
ul.bx-pager li a,
ul.bx-pager li p {
	width: 100%;
    height: 60px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	font-size: 1em;
	line-height: 1.2em;
	text-align: center;
	box-sizing: border-box;
}
ul.bx-pager li p {
	color: #FFF;
}
ul.bx-pager li a span,
ul.bx-pager li p span {
	width: 100%;
    display: block;
    font-size: 0.8em;
}
ul.bx-pager li a:hover {
	cursor: pointer;
	color: #982E5A;
	background: rgba(255,255,255,0.5);
}

/*-- 詳細メイン --*/
#works dl.detail_title {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}
#works dl.detail_title dt {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
}
#works dl.detail_title dt h3 {
	font-size: 2em;
	line-height: 1.2em;
	color: #982C59;
}
#works dl.detail_title dt h3 span {
	margin-left: -10px;
	font-size: 0.5em;
	vertical-align: middle;
}
#works dl.detail_title dd {
	width: 100%;
	clear: both;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.2em;
}
#works article.detail_main {
	position: relative;
	width: 100%;
	clear: both;
	overflow: hidden;
	margin: 0 auto;
	background: #EEE;
}
#works article.detail_main img {
	width: 120%;
	clear: both;
}
#works article.detail_main dl.detail_main_text {
	width: 100%;
	clear: both;
	/*-webkit-transform: translateY(-70%);
	transform: translateY(-70%);*/
	padding: 20px;
	box-sizing: border-box;
}
#works article.detail_main dl.detail_main_text dt {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
}
#works article.detail_main dl.detail_main_text dd {
	width: 100%;
	clear: both;
	font-size: 1.1em;
	line-height: 1.4em;
}

/*-- 詳細コンテンツ --*/
#works article.detail_contents {
	width: 94%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
}
#works section.box {
	position: relative;
	width: 100%;
	clear: both;
	padding: 20px 0;
}
#works article.detail_contents img.img_01,
#works article.detail_contents img.img_02 {
	width: 80%;
	clear: both;
	margin: 0 10%;
}
#works article.detail_contents dl.detail_contents_text {
	width: 100%;
	clear: both;
}
#works article.detail_contents dl.detail_contents_text dt {
	width: 100%;
	clear: both;
	padding: 20px 0;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.4em;
	color: #982C59;
	text-align: center;
}
#works article.detail_contents dl.detail_contents_text dd {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1.6em;
}

/*-- 社員紹介 --*/
#works article.employee {
	width: 94%;
	clear: both;
	margin: 0 auto;
	padding: 0 0 20px;
	border-top: solid 7px #DDD;
}
#works article.employee .border_bt {
	border-bottom: solid 1px #CCC;
}
#works article.employee .employee_thumb {
	width: 60%;
	height: 180px;
	clear: both;
	overflow: hidden;
	margin: 0 auto;
}
#works article.employee dl.employee_list {
	width: 100%;
	clear: both;
}
#works article.employee dl.employee_list h3 {
	width: 100%;
	clear: both;
	padding: 20px 0 5px;
	font: normal 1.2em/1.6em "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	text-align: center;
}
#works article.employee dl.employee_list dt {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 2.4em;
	line-height: 1em;
	text-align: center;
}
#works article.employee dl.employee_list span {
	font-size: 0.5em;
	color: #982C59;
}
#works article.employee dl.employee_list dd {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
}
#works article.employee a.link_person {
	width: 50%;
	height: 40px;
	display: block;
	margin: 0 auto;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 40px;
	text-align: center;
	color: #982D59;
	border: solid 1px #982D59;
	background: url("../images/arrow_right.png") no-repeat right 10px center;
	background-size: 10px;
	box-sizing: border-box;
}

/*プロジェクト・受賞歴へのリンクボタン*/
#works .linkBlock {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
	margin: 20px 0;
}
#works .linkBlock a {
	width: 48%;
	height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin: 0 1%;
	font-size: 1.3em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	border: solid 1px rgba(255,255,255,0.5);
	background-image: url("../images/btn_deco_w.png"), url("../images/arrow_right_w.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px top, right 10px center;
	background-color: #982E5A;
	background-size: 32px, 12px;
	box-sizing: border-box;
}
#works .linkBlock a:hover {
	transition: all 200ms;
	opacity: 0.5;
}


/*==============================
 人を知る
==============================*/
#interview {
	width: 100%;
	clear: both;
}
#interview article {
	width: 100%;
	clear: both;
}
/*-- インデックス --*/
#interview section.index {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding-top: 20px;
}
#interview section.last {
	padding-bottom: 20px;
}
#interview section.index img.right,
#interview section.index img.left {
	width: 100%;
	clear: both;
}
#interview section.index div.block_fr,
#interview section.index div.block_fl {
	width: 100%;
	clear: both;
}
#interview section.index div.block_fr dl,
#interview section.index div.block_fl dl {
	width: 100%;
	clear: both;
	padding: 10px 0 20px;
}
#interview section.index div.block_fr h3,
#interview section.index div.block_fl h3 {
	width: 100%;
	clear: both;
	padding: 5px 0;
	font: normal 1.2em/1.4em "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#interview section.index div.block_fr dl dt,
#interview section.index div.block_fl dl dt {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 1.8em;
	line-height: 1em;
}
#interview section.index div.block_fr dl dt span,
#interview section.index div.block_fl dl dt span {
	margin-left: 20px;
	font-size: 0.5em;
	color: #982C59;
}
#interview section.index div.block_fr dl dd,
#interview section.index div.block_fl dl dd {
	width: 100%;
	clear: both;
	font-size: 1em;
	line-height: 1em;
}
#interview section.index div a.link_person {
	width: 50%;
	height: 40px;
	float: right;
	display: block;
	padding-right: 10px;
	font-size: 1.2em;
	line-height: 40px;
	text-align: center;
	color: #982D59;
	border: solid 1px #982D59;
	background: url("../images/arrow_right.png") no-repeat right 10px center;
	background-size: 10px;
	box-sizing: border-box;
}

/*-- インタビュー詳細 --*/
#interview article.headline {
	position: relative;
	width: 100%;
	height: 200px;
	clear: both;
	overflow: hidden;
	margin: 0 auto;
	background: #EEE;
}
#interview article.headline img {
	position: absolute;
	width: 120%;
	right: 15%;
}
#interview article.headline dl.headline_text {
	position: absolute;
	width: 55%;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#interview article.headline dl.headline_text h3 {
	width: 100%;
	clear: both;
	padding-bottom: 20px;
	font: normal 1.2em/1.4em "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#interview article.headline dl.headline_text h3 br {
	display: none;
}
#interview article.headline dl.headline_text dt {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 1.6em;
	line-height: 1em;
}
#interview article.headline dl.headline_text dt span {
	margin-left: 10px;
	font-size: 0.5em;
	color: #982C59;
}
#interview article.headline dl.headline_text dd {
	width: 100%;
	clear: both;
	font-size: 1em;
	line-height: 1em;
}
#interview article.block {
	width: 94%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
}
#interview article.block dl.interview_q {
	position: relative;
	width: 100%;
	clear: both;
	padding: 20px 0;
}
#interview article.block dl.interview_q+dl {
	border-top: solid 1px #CCC;
}
#interview article.block dl.interview_q img.mark_q {
	position: absolute;
	width: 50px;
	top: 20px;
	left: 0px;
}
#interview article.block dl.interview_q dt {
	width: 100%;
	height: 40px;
	clear: both;
	display: table;
	padding-left: 60px;
	box-sizing: border-box;
}
#interview article.block dl.interview_q dt h4 {
	display: table-cell;
	font-size: 1.3em;
	line-height: 1.4em;
	vertical-align: middle;
}
#interview article.block dl.interview_q dd {
	width: 100%;
	clear: both;
	padding: 10px 0 0;
	box-sizing: border-box;
}
#interview article.block dl.interview_q dd p {
	width: 100%;
	font-size: 1.2em;
	line-height: 1.6em;
}
#interview article.block dl.interview_q dd p.tx_fr,
#interview article.block dl.interview_q dd p.tx_fl {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
}
#interview article.block dl.interview_q dd img.img_fr,
#interview article.block dl.interview_q dd img.img_fl {
	width: 80%;
	clear: both;
	margin: 0 10%;
}

#interview article.personal {
	width: 94%;
	clear: both;
	display: block;
	margin: 0 auto 40px;
	padding: 2% 4%;
	border: solid 7px #EEE;
	box-sizing: border-box;
}
#interview article.personal section {
	width: 100%;
	clear: both;
	margin-bottom: 10px;
}
#interview article.personal section img {
	width: 80%;
	margin: 0 10%;
}
#interview article.personal section p {
	width: 80%;
	clear: both;
	margin: 0 auto;
	padding: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
}
#interview article.personal .personal_name {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 2.4em;
	line-height: 1.4em;
}
#interview article.personal .personal_name span {
	margin-left: 20px;
	font-size: 0.6em;
	vertical-align: middle;
	color: #982C59;
}
#interview article.personal table {
	width: 100%;
	clear: both;
}
#interview article.personal table tr+tr {
	border-top: solid 1px #CCC;
}
#interview article.personal table th,
#interview article.personal table td {
	padding: 10px 0 10px 5px;
	font-size: 0.9em;
	line-height: 1.6em;
	vertical-align: top;
}
#interview article.personal table th {
	width: 30%;
	text-align: left;
	color: #999;
}
#interview article.personal table td {
	width: 70%;
}

/*-- インタビュー下部一覧メニュー --*/
#interview ul.interview_thumb {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	background: #333;
}
#interview ul.interview_thumb li {
	position: relative;
	width: 50%;
	display: block;
	overflow: hidden;
}
#interview ul.interview_thumb li a.caption {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	padding-top: 75%;
	font-size: 1.2em;
	line-height: 1.2em;
	text-align: center;
	color: #FFF;
}
#interview ul.interview_thumb li a.caption:hover {
	color: #FFF;
}
#interview ul.interview_thumb li a.caption span {
	font-size: 0.6em;
}
#interview ul.interview_thumb li .mask {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 100;
	background: linear-gradient(0deg, rgba(0,0,0,0.65), rgba(0,0,0,0));
	-webkit-transition:	all 0.2s ease;
	transition: all 0.2s ease;
}
#interview ul.interview_thumb li:hover .mask {
	opacity: 1;
}

/*==============================
 環境を知る
==============================*/
#environment {
	width: 100%;
	clear: both;
}
#environment article {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding-bottom: 10px;
}
#environment .block1,
#environment .block2,
#environment .block2-2,
#environment .block3 {
	width: 94%;
	clear: both;
	margin: 0 auto;
	text-align: center;
}
#environment h3.block_title {
	position: relative;
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
	color: #982E5A;
	box-sizing: border-box;
}
#environment h3.block_title img {
	position: absolute;
	width: 40px;
	top: 0px;
	left: -20px;
}
#environment h3.environment_copy {
	width: 94%;
	clear: both;
	margin: 20px auto 20px;
	font: bold 2em/1em "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	text-align: center;
}
#environment h3.environment_copy span {
	font-size: 1.4em;
}
#environment .read {
	width: 94%;
	clear: both;
	margin: 20px auto;
	font-size: 1.2em;
	line-height: 1.6em;
}
#environment .read a {
	text-decoration: underline;
    color: #06c;
}
#environment dl {
	width: 100%;
	clear: both;
	margin: 0 auto 20px;
	text-align: left;
}
#environment dl h4,
#environment div h4 {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 1.6em;
	line-height: 1em;
}
#environment dl dt {
	width: 100%;
	clear: both;
	padding: 5px 0;
	font-size: 1.2em;
	line-height: 1.2em;
	color: #982C59;
}
#environment dl dd,
#environment div p {
	width: 100%;
	clear: both;
	font-size: 1em;
	line-height: 1.6em;
	color: #333;
}
#environment dl dd br,
#environment div p br {
	display: none;
}
#environment dl ul.environment_list {
	width: 80%;
	clear: both;
	margin: 20px 0 0 20%;
	text-align: center;
}
#environment dl ul.environment_list li {
	float: left;
	clear: both;
	padding: 5px 20px 5px 15px;
	font-size: 1em;
	line-height: 1.6em;
	background: url("../images/list_mark.png") no-repeat left 10px;
	background-size: 10px;
	box-sizing: border-box;
}
#environment img {
	clear: both;
}

/*-- WORK｜働く --*/
#environment img.block1_01_img {
	width: 90%;
	clear: both;
	margin-bottom: 20px;
}
#environment img.block1_02_img {
	width: 60%;
	clear: both;
	margin-bottom: 20px;
}

/*-- STUDY｜学ぶ --*/
#environment img.block2_01_img,
#environment img.block2_02_img,
#environment img.block2_03_img {
	width: 90%;
	clear: both;
	margin-bottom: 20px;
}
#environment dl.block2_03_text,
#environment dl.block2_04_text {
	width: 100%;
	margin: 10px auto;
}
#environment div.block2_fl_text,
#environment div.block2_fr_text {
	width: 100%;
	margin: 10px auto 20px;
	text-align: left;
}
#environment div.block2_fl_text img,
#environment div.block2_fr_text img {
	width: 90%;
	margin: 10px 5% 0;
	clear: both;
}

/*-- FOLLOWSHIP｜交わる --*/
#environment .block3 .read2 {
	width: 100%;
	clear: both;
	margin: 0 auto 20px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: left;
}
#environment .block3 .read2 br {
	display: none;
}
#environment img.block3_01a_img {
	width: 90%;
}
#environment img.block3_01b_img {
	width: 70%;
	margin: 5px 0 20px;
}
#environment dl.block3_02_text,
#environment dl.block3_03_text {
	width: 100%;
}
#environment p.block3_02_img,
#environment p.block3_03_img {
	width: 90%;
	clear: both;
	margin: 0 auto 20px;
	font-size: 1em;
	line-height: 2em;
	text-align: right;
}

/*==============================
 採用に関するQ&A
==============================*/
#question {
	width: 100%;
	clear: both;
	padding-bottom: 20px;
}
#question a {
	color: #06C;
	text-decoration: underline;
}
#question a:hover {
	color: #999;
}
#question h3.question_copy {
	width: 94%;
	clear: both;
	margin: 20px auto;
	font: bold 1.6em/1.4em "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	text-align: center;
}
#question article {
	width: 94%;
	clear: both;
	margin: 0 auto;
}
#question ul.navi {
	width: 100%;
	clear: both;
	overflow: hidden;
}
#question div.question {
	position: relative;
	width: 100%;
	height: 60px;
	clear: both;
	display: table;
	cursor: pointer;
	margin: 0 auto;
	border-top: solid 1px #CCC;
	background: url("../images/question/open.png") no-repeat 100% center;
	background-size: 15px;
	box-sizing: border-box;
}
#question div.question img.icon_q {
	position: absolute;
	width: 50px;
	top: 10px;
	left: 0px;
}
#question div.question h4 {
	width: 100%;
	display: table-cell;
	padding: 0 10px 0 60px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
	vertical-align: middle;
	box-sizing: border-box;
}
#question div.open {
	cursor: pointer;
	background: url("../images/question/close.png") no-repeat 100% center #F5F5F5;
	background-size: 15px;
	box-sizing: border-box;
}
#question ul.answer {
	position: relative;
	width: 100%;
	float: right;
	clear: both;
	margin: 0 auto;
	padding: 20px 0 20px 60px;
	background: url("../images/question/icon_a.png") no-repeat left 15px;
	background-size: 50px;
	box-sizing: border-box;
}
#question ul.answer img.icon_a {
	position: absolute;
	width: 50px;
	top: 20px;
	left: -120px;
}
#question ul.answer p {
	width: 100%;
	min-height: 4.8em;
	clear: both;
	margin: 0 auto 20px;
	font-size: 1.2em;
	line-height: 1.6em;
}

/*==============================
 採用情報
==============================*/
#recruit {
	width: 100%;
	clear: both;
	padding: 20px 0;
}
#recruit article {
	width: 94%;
	clear: both;
	margin: 0 auto;
}
#recruit section {
	width: 100%;
	clear: both;
	padding: 20px 0;
}
#recruit h3 {
	width: 100%;
	clear: both;
	padding-bottom: 10px;
	font-size: 1.4em;
	line-height: 1em;
	border-bottom: solid 1px #982C59;
}
#recruit h3 span {
	color: #982C59
}
#recruit table {
	width: 100%;
	display: table;
	border-top: solid 1px #982C59;
	border-left: solid 1px #CCC;
}
#recruit table th,
#recruit table td {
	display: table-cell;
	padding: 10px 5px;
	font-size: 1em;
	line-height: 1.3em;
	vertical-align: top;
	border-right: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}
#recruit table th {
	width: 20%;
	text-align: left;
	background: #F5F5F5;
}
#recruit table td.w_sub {
	width: 18%;
}
#recruit p {
	width: 96%;
	clear: both;
	margin: 0 auto;
	padding-top: 10px;
	font-size: 1em;
	line-height: 1.6em;
}
#recruit a.btn_entry {
	width: 90%;
	height: 60px;
	display: block;
	margin: 40px auto;
	font-size: 1.6em;
	line-height: 60px;
	text-align: center;
	color: #982E5A;
	border: solid 1px #982E5A;
	background-image: url("../images/btn_deco.png"), url("../images/arrow_right.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px top, right 10px center;
	background-color: #FFF;
	background-size: 36px, 12px;
	box-sizing: border-box;
}

/*-- エントリー --*/
#recruit .entry {
	width: 90%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	box-sizing: border-box;
}
#recruit .entry_block {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 10px 0;
	background: #EEE;
	box-sizing: border-box;
}
#recruit .entry_block h3.entry_catg {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	padding: 10px 0;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	color: #982C59;
	border: none;
	background: #EEE;
	box-sizing: border-box;
}
#recruit a.btn_entry2 {
	width: 90%;
	height: 50px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	margin: 5px auto;
	font-size: 1.2em;
	line-height: 1em;
	text-align: center;
	color: #982E5A;
	border: solid 1px #982E5A;
	background-image: url("../images/btn_deco.png"), url("../images/arrow_right.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left 10px top, right 10px center;
	background-color: #FFF;
	background-size: 32px, 12px;
	box-sizing: border-box;
}

/*==============================
 ニュース
==============================*/
#news {
	width: 100%;
	clear: both;
}
#news article {
	width: 94%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
}
#news .inner {
	position: relative;
	width: 94%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
}
#news a.news_link {
	position: absolute;
	top: 40px;
	right: 0px;
	display: block;
	padding-right: 15px;
	font-size: 1em;
	line-height: 1.6em;
	text-align: right;
	background: url(../images/arrow_right.png) no-repeat right center;
	background-size: 8px;
}
#news .news_title {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font: 300 2.4em/1em futura-pt, Arial, Helvetica, "sans-serif";
	border-bottom: solid 1px #CCC;
}
#news dl.news_list {
	width: 100%;
	float: left;
	clear: both;
	padding: 10px 0;
}
#news dl.news_list+dl {
	border-top: solid 1px #CCC;
}
#news dl.news_list dt {
	position: relative;
	width: 100%;
	clear: both;
	padding: 7px 0 7px 40px;
	font-size: 1em;
	line-height: 1.6em;
	color: #999;
	box-sizing: border-box;
}
#news dl.news_list dt .mark_new {
	position: absolute;
	width: 36px;
	top: -2px;
	left: 0px;
}
#news dl.news_list dd {
	width: 100%;
	clear: both;
	padding: 0 0 0 40px;
	font-size: 1.1em;
	line-height: 1.4em;
	box-sizing: border-box;
}
#news dl.news_list dd a {
	color: #06C;
}
#news dl.news_list dd a:hover {
	color: #333;
	text-decoration: underline;
}
.wp-pagenavi {
	width: 100%;
	clear: both;
	float: left;
	margin-bottom: 20px;
	margin-top: 30px;
	text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
	border: 1px solid #982E5A;
	padding: 3px 7px;
	margin: 2px;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
	border-color: #982E5A;
}
.wp-pagenavi span.current {
	font-weight: bold;
	background-color: #982E5A;
	color: #FFF;
}

/*-- News（詳細ページ） --*/
#news h3.article_title {
	width: 100%;
	float: both;
	margin-bottom: 20px;
	font-size: 1.8em;
	line-height: 1.4em;
}
#news .date {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	font-size: 1.2em;
	line-height: 1em;
	text-align: right;
	color: #999;
}
#news .content {
	width: 100%;
	float: both;
	padding: 20px 0;
	font-size: 1.2em;
	line-height: 1.6em;
	border-top: solid 1px #CCC;
}
#news .page_navi {
	position: relative;
	width: 100%;
	clear: both;
	border-top: solid 1px #CCC;
}
#news .page_navi .prev {
	position: absolute;
	width: auto;
	max-width: 40%;
	top: 0px;
	left: 0px;
	display: flex;
	padding: 20px 0;
	align-items: center;
	font-size: 1.2em;
	line-height: 20px;
	box-sizing: border-box;
}
#news .page_navi .prev a {
	padding-left: 20px;
	text-decoration: none;
	background: url(../images/arrow_left.png) no-repeat left center;
	background-size: 8px;
}
#news .page_navi .next {
	position: absolute;
	width: auto;
	max-width: 40%;
	top: 0px;
	right: 0px;
	display: flex;
	padding: 20px 0;
	align-items: center;
	font-size: 1.2em;
	line-height: 20px;
	box-sizing: border-box;
}
#news .page_navi .next a {
	padding-right: 20px;
	text-decoration: none;
	background: url(../images/arrow_right.png) no-repeat right center;
	background-size: 8px;
}
#news .page_navi .center {
	width: 20%;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}

/*==============================
お問い合わせ
==============================*/
/*
#form {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
}
#form .text,
#form .thanks {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1.4em;
}
#form dl {
	width: 100%;
	float: left;
	clear: both;
	padding: 20px 0;
	border-bottom: solid 1px #CCC;
}
#form dl dt {
	position: relative;
	width: 100%;
	clear: both;
	margin-bottom: 5px;
	padding: 0 5px;
	font-size: 1.2em;
	line-height: 1.6em;
	box-sizing: border-box;
}
#form dl dt .must {
	float: left;
	display: inline-block;
	margin-right: 5px;
	padding: 5px 7px;
	font-size: 0.8em;
	line-height: 1em;
	text-align: center;
	color: red;
	border: solid 1px red;
}
#form dl dt .note,
#form dl dd .note {
	margin-top: 5px;
	font-size: 0.8em;
	line-height: 1.4em;
	color: #666;
}
#form dl dd {
	width: 100%;
	clear: both;
	font-size: 1.2em;
	line-height: 1em;
}
#form dl dd.checkbox_list {
	width: 100%;
	clear: both;
    padding-left: 5%;
	font-size: 1.2em;
	line-height: 2em;
    box-sizing: border-box;
}
#form dl dd .error {
	margin-left: 5px;
	font-size: 1em;
	line-height: 1.2em;
	color: red;
}
#form dl dd input.ip01,
#form dl dd input.ip02,
#form dl dd input.ip03,
#form dl dd input.ip04,
#form dl dd input.ip05 {
	margin: 0 5px;
	padding: 5px;
	box-sizing: border-box;
}
#form dl dd input.ip01 {
	width: 80%;
}
#form dl dd input.ip02 {
	width: 100%;
}
#form dl dd input.ip03 {
	width: 20%;
}
#form dl dd input.ip04 {
	width: 25%;
}
#form dl dd input.ip05 {
	width: 20%;
}
#form dl dd textarea {
	width: 100%;
	margin: 0 5px;
	padding: 5px;
	box-sizing: border-box;
}
#form dl dd select.sl01,
#form dl dd select.sl02 {
	margin: 0 5px;
	padding: 5px;
	box-sizing: border-box;
}
#form dl dd select.sl01 {
	width: 60%;
}
#form dl dd select.sl02 {
	width: 15%;
}
#form dl dd ul.check_list {
	width: 95%;
	float: left;
	clear: both;
	margin-left: 5%;
}
#form dl dd ul.check_list li {
	width: 100%;
	float: left;
	display: block;
	padding: 5px 0;
	line-height: 2em;
}
#form dl dd.priv {
	line-height: 40px;
	text-align: center;
}
#form label {
	display: block;
}
#form .privacy {
	width: 100%;
	float: left;
	clear: both;
	font-size: 1em;
	line-height: 1.6em;
}
#form .btn_send {
	width: 100%;
	clear: both;
	padding: 10px 0;
	text-align: center;
}
#form .btn_confirm {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}
.mw_wp_form_input .btn input{
	background: url(../images/contact/btn_confirm.png) no-repeat center center;
    background-size: auto 100%;
	width: 100%;
	height: 50px;
	display: block;
	margin: 40px auto;
	text-indent: -9999px;
	overflow: hidden;
	border-radius: 25px;
	border: solid 1px #982E5A;
	cursor: pointer;
	color: #FFF;
}
.mw_wp_form_confirm .btn input{
	background: url(../images/contact/btn_send.png) no-repeat center center;
    background-size: auto 100%;
	width: 100%;
	height: 50px;
	margin: 0 auto;
	text-indent: -9999px;
	overflow: hidden;
	border: none;
	cursor: pointer;
	color: #FFF;
}
#submitback {
	width: 100%;
	text-align:center;
	clear: both;
}
#submitback input{
	background: url(../images/contact/btn_back.png) no-repeat center center;
    background-size: auto 100%;
	width: 100%;
	height: 50px;
	margin: 40px auto;
	text-indent: -9999px;
	overflow: hidden;
	border-radius: 25px;
	border: solid 1px #982E5A;
	cursor: pointer;
}
#form .btn_back a {
	width: 30%;
	clear: both;
	display: block;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1em;
	text-align: center;
	color: #982E5A;
	border-radius: 25px;
	border: solid 1px #982E5A;
}
#form .privacy_area {
	width: 100%;
	height: 300px;
	clear: both;
	overflow: auto;
	margin: auto 0;
	padding: 10px;
	border: solid 5px #EEE;
	box-sizing: border-box;
}
#form .privacy_area h3 {
	width: 100%;
	clear: both;
	margin: 0 auto;
	padding: 10px 0;
	font-size: 1.2em;
	line-height: 1em;
	text-align: center;
}
*/

/*==============================
サイトマップ
==============================*/
#sitemap {
	width: 100%;
	clear: both;
	padding: 20px 0;
}
#sitemap article {
	width: 80%;
	clear: both;
	margin: 0 auto;
}
#sitemap article ul {
	width: 100%;
	clear: both;
	margin: 0 auto;
}
#sitemap article ul li.menu+li {
	border-top: solid 1px #CCC;
}
#sitemap article ul li.menu {
	width: 100%;
	clear: both;
}
#sitemap article ul li.menu2 {
	float: left;
	margin-left: 40px;
	box-sizing: border-box;
}
#sitemap article ul li.menu a,
#sitemap article ul li.menu p,
#sitemap article ul li.menu2 a {
	width: 100%;
	display: block;
	padding: 20px 0;
	font-size: 1.4em;
	line-height: 1em;
}
#sitemap article ul li.menu2 a {
	padding: 5px 0 20px;
}
#sitemap article ul li.menu2 a br {
	display: none;
}

/*==============================
サイトポリシー／個人情報保護方針
==============================*/
#policy {
	width: 100%;
	clear: both;
	padding: 10px 0 20px;
}
#policy article {
	width: 94%;
	clear: both;
	margin: 0 auto;
}
#policy section {
	width: 100%;
	clear: both;
	padding: 10px 0;
}
#policy .border_bottom {
	border-bottom: solid 1px #CCC;
}
#policy h3 {
	width: 100%;
	clear: both;
	padding-bottom: 10px;
	font-size: 1.4em;
	line-height: 1em;
	color: #982C59;
	border-bottom: solid 1px #CCC;
}
#policy p,
#form .privacy_area p {
	width: 100%;
	clear: both;
	padding-top: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
}
#policy p.date,
#form .privacy_area p.date {
	width: 100%;
	clear: both;
	padding-bottom: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
	text-align: right;
}
#policy ol,
#form .privacy_area ol {
	width: 100%;
	clear: both;
	padding-top: 10px;
}
#policy ol li,
#form .privacy_area ol li {
	width: 95%;
	float: right;
	clear: both;
	padding-top: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
	list-style: decimal outside;
}
#policy ul,
#form .privacy_area ul {
	width: 90%;
	clear: both;
	margin: 0 auto;
	padding-bottom: 20px;
}
#policy ul li,
#form .privacy_area ul li {
	width: 100%;
	clear: both;
	padding-top: 10px;
	font-size: 1.2em;
	line-height: 1.6em;
}
#policy p.contact_title {
	width: 100%;
	clear: both;
	margin-bottom: 20px;
	padding: 10px 0;
	font-size: 1.6em;
	line-height: 1.6em;
	text-align: center;
	border-top: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}
#policy p.tel {
	width: 100%;
	clear: both;
	padding: 10px 0;
	font-size: 2.4em;
	line-height: 1.6em;
	text-align: center;
}
#policy p.tel span {
	font-size: 1.4em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-bottom: 100px;
}
footer #page-top {
	position: fixed;
	width: 50px;
	right: 5px;
	bottom: 70px;
	z-index: 10000;
	border-radius: 25px;
	background: rgba(0,0,0,0.25);
}

/*--inner_top--*/
footer .inner_top {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 40px 0;
	color: #FFF;
	background: #982E5A;
}
footer .inner_top a {
	color: #fff;
 	text-decoration: none;
}
footer .inner_top .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;
}
footer .inner_top .info {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
footer .inner_top .info .logo {
	width: 100%;
	display: block;
	margin-bottom: 10px;
	font-size: 1.4em;
	line-height: 1em;
	text-align: center;
}
footer .inner_top .info .logo img {
	width: 60%;
	margin: 0 auto 20px;
}
footer .inner_top .info address {
	width: 100%;
	display: block;
	margin: 10px 0 20px;
	font-size: 1em;
	line-height: 1.2em;
	text-align: center;
}
footer .inner_top .info a.btn_official {
	width: 260px;
	height: 50px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	border: solid 1px rgba(255,255,255,0.5);
	background: url("../images/arrow_right_w.png") no-repeat right 10px center;
	background-size: 12px;
	box-sizing: border-box;
}

/*-- footer navi --*/
footer .inner_top .footer_navi {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 20px 0;
	color: #FFF;
}
footer .inner_top .footer_navi ul {
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
footer .inner_top .footer_navi ul.footer_navi_list {
	width: 100%;
}
footer .inner_top .footer_navi ul.footer_navi_list2 {
	width: 50%;
}
footer .inner_top .footer_navi ul li {
	width: 100%;
	display: block;
	margin: 10px 0;
}
footer .inner_top .footer_navi ul li a {
	width: 100%;
	display: block;
	font-size: 1.2em;
	line-height: 1.2em;
	color: #FFF;
}
footer .inner_top .footer_navi ul li ul.second {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-top: 10px;
	padding-left: 20px;
	box-sizing: border-box;
}
footer .inner_top .footer_navi ul li ul.second li {
	margin: 5px 0;
}

/*--inner_bottom--*/
footer .inner_bottom {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
		flex-wrap: wrap;
	padding: 20px 0;
}
footer .inner_bottom ul.footer_menu {
	width: auto;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	margin-bottom: 20px;
}
footer .inner_bottom ul.footer_menu li {
	display: inline-block;
	margin-right: 10px;
	font-size: 1em;
	line-height: 1em;
}
footer .inner_bottom ul.footer_menu li+li {
	padding-left: 10px;
	border-left: solid 1px #CCC;
}
footer .inner_bottom .copyright {
	float: right;
	font-size: 1em;
	line-height: 1em;
	color: #666;
}

/*募集エントリー*/
ul.fix_btnEntry {
	position: fixed;
	width: 100%;
	bottom: 0;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	z-index: 88888;
	padding: 15px 2%;
	background: rgba(0,0,0,0.8);
	box-sizing: border-box;
}
ul.fix_btnEntry li {
	width: 32%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	box-sizing: border-box;
}
ul.fix_btnEntry li a {
	width: 100%;
	height: 50px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	font-size: 1em;
	line-height: 1em;
	text-align: center;
	color: #fff;
	border: solid 1px rgba(255,255,255,0.5);
	background-image: url("../images/btn_deco_w.png");
	background-repeat: no-repeat;
	background-position: left 5px top;
	background-color: #982E5A;
	background-size: 16px;
	box-sizing: border-box;
	box-shadow: 0 0 10px rgba(0,0,0,0.8);
}
ul.fix_btnEntry li a.active {
	transition: all 200ms;
	opacity: 0.5;
}