html {
    margin-top: 90px !important;
}
a {
    text-decoration: none;
    transition: color 0.3s linear;
    -webkit-transition: color 0.3s linear;
}
a:visited {
    transition: all 0.3s linear;
    -webkit-transition: color 0.3s linear;
}
body.breadcrumbFixed #breadcrumb {
    position: static;
}

/* header */
.c-header img,
.c-nav img {
	max-width: 100%
}
.c-header div::after,
.c-header dl::after,
.c-header ul::after,
.c-header ol::after,
.c-nav div::after,
.c-nav dl::after,
.c-nav ul::after,
.c-nav ol::after {
	content: none
}
.c-header *,
.c-nav * {
	box-sizing: border-box;
}
.c-header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 90px;
	z-index: 500;
	background: #ffffff;
}
.c-header .logo {
	position: absolute;
	left: 0;
	top: 0;
	margin-left: 25px;
  margin-top: 22px;
	font-size: 18px;
  width: 350px;
}
.c-header .logo a {
	display: block;
	color: #000;
	text-decoration: none
}
.c-header .logo a:hover {
	opacity: .7
}
.c-header .logo span {
	display: inline-block;
  font-weight: bold;
	line-height: 18px;
	vertical-align: bottom;
}
.c-header .logo img {
	margin-right: 25px;
	vertical-align: top;
	max-width: 240px
}
.c-header .entry {
	position: absolute;
	right: 100px;
	top: 0;
	text-align: center;
}
.c-header .entry a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 140px;
  height: 90px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: #E24040;
  line-height: 1.5;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
}
.c-header .entry a:after{
  position: absolute;
  content: '';
  display: block;
  right: 0;
  bottom: 0;
  border: solid transparent;
  border-width: 6px;
  border-top-color: #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.c-header .entry a:hover {
  color:#E24040;
  background: #F5F5F5
}
.entry_main {
  font-size: 1.8rem;
}
.entry_sub {
  font-size: 1.3rem;
}

/* ハンバーガーメニュー */
/*ボタン外側*/
.c-header .menu {
	position: absolute;
  top:0;
  right: 0;
  background: #fff;
	cursor: pointer;
	width: 100px;
  height: 90px;
}
/*ボタン内側*/
.c-header .menu span {
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 35px;
  height: 3px;
	background: #000;
  width: 32px;
}
.c-header .menu span:nth-of-type(1) {
	top:43px;	
}
.c-header .menu span:nth-of-type(2) {
	top:54px;
}
.c-header .menu span:nth-of-type(3) {
	top:65px;
}
.c-header .menu span:nth-of-type(1)::before {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:-20px;
	left:2px;
	color: #000;
	font-size: 1rem;
	text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.c-header .menu.is-active {
  background: #000000;
}
.c-header .menu.is-active span {
  width: 30px;
  left: 37px;
  background: #ffffff;
}
.c-header .menu.is-active span:nth-of-type(1) {
  top: 54px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 30px;
}
.c-header .menu.is-active span:nth-of-type(2) {
opacity: 0;
}
.c-header .menu.is-active span:nth-of-type(3){
  top: 54px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 30px;
}
.c-header .menu.is-active span:nth-of-type(1)::before {
content:"Close";/*3つ目の要素のafterにClose表示を指定*/
transform: translateY(0) rotate(45deg);
top:-25px;
left:17px;
color: #ffffff;
}


/* メニュー関連 */
.c-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 400;
  background: url(/img/recruit2022/bg_pattern01.png) repeat;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s
}
.c-nav.is-active {
  opacity: 1;
  visibility: visible
}
.c-nav .inner {
  margin: 50px 0 0;
  padding: 100px 0 30px;
  width: 100%;
  max-width: none;
  color: #000000;
  text-align: center;
  position: relative;
  z-index: 500
}
.c-nav .main {
  margin: 0 auto 20px;
  width: auto;
  max-width: 1024px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-nav .main > li {
  margin-bottom: 20px;
  width: calc(100% / 3);
  text-align:left;
  padding-right: 20px;
}
.c-nav .main li > ul {
  margin-bottom: 50px;
}
.c-nav h2 {
  position: relative;
  display: inline-block;
  font-size: 26px;
  font-size: 2.6rem;
  font-style: oblique;
  font-weight: 700;
  padding-right: 26px;
  margin-bottom: 10px;
}
.c-nav h2:first-letter {
    color: #E24040;
}
.c-nav h2:before {
  content: '';
  width: 13px;
  height: 13px;
  border: 0;
  border-top: solid 2px #E24040;
  border-right: solid 2px #E24040;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
  transform: rotate(45deg);
}
.c-nav h2:hover::before {
  right: -5px;
}
.c-nav .main a{
  text-decoration: none;
  transition: .3s;
}
.c-nav .main span {
  font-size: 16px;
  font-size: 1.6rem;
}
.c-nav .main span:before {
  content: '-';
  padding-right: 0.5em;
}
.c-nav .main a:hover,
.c-nav .corpo-links a:hover {
  color: #E24040;
}

.c-nav .corpo-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-nav .corpo-links > li {
  width: calc(100% / 3);
  text-align:left;
  padding-right: 20px;
}

.c-nav .corpo-links li {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-nav .corpo-links .ico_external {
  display: inline-block;
  fill: #000000;
  margin-left: 6px;
  width: 9px;
  height: 9px;
}

.c-nav .sns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: right;
  justify-content: right;
}
.c-nav .sns li {
  margin: 0 8px;
  width: 40px
}
.c-nav .sns a {
  transition: opacity .3s
}
.c-nav .sns a:hover {
  opacity: 0.7
}

/* top コンテンツ内 */
.top-message{
  font-size: 50px;
  font-style: oblique;
  line-height: 1.2;
}
.btnWrapFifth {
  width: 20%;
}
.btnWrapFifth span {
  display: block;
  line-height: 1.2;
  padding-top: .5em;
}
.btnLinkBlue{
  background: #0168b7;
  color: #fff;
}
.btnLinkWhite, .btnListWhite a {
  color: #000;
  text-align: left;
  padding: 1em !important;
}
h2.h2ttl {
  font-size: 50px;
  font-style: oblique;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.5em;
}
h2.h2ttl:first-letter {
  color: #E24040;
}
h2.h2ttl span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
.home-challenge__bg {
  background: url(/img/recruit2022/bg_pattern01.png) repeat;
}
.arrowBlack {
  position: relative;
  line-height: 2; }
.arrowBlack:before, .arrowBlack:after {
  content: '';
  display: block;
  width: 0.5em;
  height: 2px;
  background: #000;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
}
.arrowBlack:before {
  bottom: .3em;
  transform: rotate(45deg);
}
.arrowBlack:after {
  top: .3em;
  transform: rotate(-45deg);
}
.arrowBlack:hover::before, .arrowBlack:hover::after {
  background: #E24040;
  right: 10px;
}
.arrowWhite:hover::before, .arrowWhite:hover::after {
  right: 10px;
}

.midashi a {
  font-size: 24px;
  line-height: 1.6;
  transition: 0.3s
}

.midashi a span.Fred{
  font-size: 16px;
  color: #fff;
  background: #000;
  padding: 0.5em 2em 0.5em 1em;
  margin-right: .5em;
  font-weight: 400;
  transition: 0.3s
}
.midashi a:hover{
  color: #E24040;
}

#pagettl {
  position: relative;
  text-align: center;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
  padding-top: 39%;
}
#pagettl h2.h2ttl {
  position: absolute;
  top:40px;
  left: 0;
  right: 0;
  margin: auto;
}
#pagettl h1 {
  position: absolute;
  top:40px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 50px;
  font-style: oblique;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

#pagettl h1:first-letter {
  color: #E24040;
}
#pagettl h1 span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
#pagettl2 {
  position: relative;
  text-align: center;
  padding: 1em 0 2em 0;
  background-position: center center;
  background-size: cover;
}
#pagettl2 h2.h2ttl {
  position: absolute;
  top:-.75em;
  left: 0;
  right: 0;
  margin: auto;
}

/* 各ページ 共通　*/
.pgLink{
  display: flex;
  justify-content: center;
}
.pgLink li {
  margin-right: 1em;
}
.pgLink li:last-child {
  margin-right: 0;
}
.pgLink li a {
  font-size: 26px;
  font-weight: 500;
  padding: .2em 2em .2em 1em;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: #000;
  color: #fff;
}
.pgLink li a:hover {
    background-color: #E55353;
}
.arrow {
  position: relative;
  display: inline-block;
  padding: 10px;
}
.arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.arrow.arrow-bottom::before {
  transform: rotate(135deg);
}
a.arrow:hover::before {
  top: 10px;
}
#recruit-contents p{
  color: #000;
}
#recruit-contents h2{
font-size: 40px;
font-weight: 700;
}
#recruit-contents h2:first-letter {
  color: #E24040;
}
#recruit-contents h3{
  font-size: 26px;
  margin-bottom: 1em;
  font-weight: 700;
}
#recruit-contents h4{
  font-size: 22px;
  margin-bottom: 1em;
  font-weight: 700;
}
/*チェックリスト*/
#message h3{
  background: #ebebeb;
  padding: 0.25em 1em;
}
#culture h3{
}
#training h3,
#environment h3,
#sales h3,#technician h3,
#manufacturing h3,
#sales-assistant h3,
#cm h3,
#office h3,
#engineering h3{
  font-size: 26px;
  font-weight: 700;
  font-style:normal;
  background: #ebebeb;
  padding: 0.25em 1em;
}
#technician h4{
  font-size: 16px;
  margin-bottom: 0.5em;
  border-left: #E24040 solid 5px;
  padding-left: 0.5em;
}
/*ページ内リンク調整*/
.anchor {
  display: block;
  padding-top: 90px;
  margin-top: -90px;
}
/*チェックマーク*/
.list_check {
  position: relative;
  padding: 0px 0px 0px 1.75em;
  margin: 0px;
}

.list_check::before,
.list_check::after {
  position: absolute;
  top: 50%;
  height: 1em;
  content: "";
}
.list_check::before {
  left: 0px;
  transform: translateY(-50%);
  width: 1em;
  border: 3px solid #E24040;
}
.list_check::after {
  left: 0.5em;
  transform: translateY(-75%) rotate(45deg);
  width: 0.5em;
  border-bottom: 3px solid #E24040;
  border-right: 3px solid #E24040;
}



/*会社概要*/
#profile dl dt,
.waku dl dt {
  float: left;
  clear: left;
  width: 7em; 
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 2px solid #aaa;
  color: #aaa;
  text-align: center;
}
#profile dl dd,
.waku dl dd {
  border-top: 2px solid #eee;
  padding-left: 10em; /* dtの幅以上のpaddingをとる*/
  padding-top: 1em;
  padding-bottom: 1em;
}

/*沿革*/
#history li {
  display: flex;
}
#history li .year {
  width: 150px;
  position: relative;
}
#history li .year span {
  position: relative;
  padding-left: 20px;
  color: #E24040;
  font-weight: 500;
  font-style: normal;
}
#history li .year span:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: -3px;
  top: 40%;
  border-radius: 50%;
  background-color: #E24040;
  margin-top: -1px;
}
#history li .year:before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #eee;
  left: 0;
  top: 0;
  position: absolute;
}
#history li .year-description {
  width: calc(100% - 150px);
}
#history li .year,
#history li .year-description {
  padding: 1.25rem 0 1.87rem 0;
}
#history li:last-child .year,
#history li:last-child .year-description {
  padding: 1.25rem 0 0;
}
#history li .year,
#history li:last-child .year {
  padding-left: 7.25rem;
  text-indent: -7.25rem;
}
#history li img {
  margin-left: 1em;
}

#history li:last-child .year {
  padding-left: 7.25rem;
  text-indent: -7.25rem;
}

#history li:last-child .year::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #eee;
  position: absolute;
  top: 100%;
  left: -8px;
}
/* 数字で見るダイワ化成 */
#number .number-inner > div{
  text-align: center;
  border: #ebebeb 3px solid;
  padding: 1em;
  border-radius: 10px;
}


/* 福利厚生 */
#benefits h3{
  font-size: 26px;
  margin-bottom: 0.5em;
  margin-left: 50px;
	text-indent: -60px;
  line-height: 0.1em;
}
#benefits h3 i{
  margin-right: 10px;
}
#benefits h3 i img{
  vertical-align: middle;
  max-width: 50px;
}

/*研修*/
ul.flow {
  padding: 0;
}
ul.flow li {
  list-style-type: none;
}
ul.flow dd {
  margin-left: 0;
}
.flow {
  padding-left: 40px !important;
padding-right: 40px !important;
  position: relative;
}
.flow::before {
  content: "";
  width: 8px;
  height: 100%;
  background: rgb(236,175,159);
  background: -moz-linear-gradient(bottom, rgba(236,175,159,1) 0%, rgba(249,230,224,1) 100%);
  background: -webkit-linear-gradient(bottom, rgba(236,175,159,1) 0%,rgba(249,230,224,1) 100%);
  background: linear-gradient(to bottom, rgba(236,175,159,1) 0%,rgba(249,230,224,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ECAF9F', endColorstr='#F9E6E0',GradientType=1 );
  display: block;
  position: absolute;
  top: 0;
  left: 40px;
}
.flow::after {
content: "";
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid #F9E6E0;
position: absolute;
top: 100%; /* 四角形の高さと同じ物を指定 */
left: 24px; /* 中央寄せに使用 */
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 1em;
}
.flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #ee8c8c;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flow > li dl {
  padding-left: 40px;
  position: relative;
}
.flow > li dl::before,
.flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.flow > li dl::before {
  width: 25px;
  height: 25px;
margin-top: 12px;
  background: #fff;
  border-radius: 50%;
  left: -8px;
border: #e24040 solid 4px;
}
.flow > li dl dt {
  font-size: 2.4rem;
  font-weight: 600;
  color: rgb(226,64,64);
  margin-bottom: 0.5em;
padding-top: 20px;
}

/* 仕事×人を知る */
.interview {
  position: relative;
  width: 100%;
  height: auto;
}
.interview2 {
  display: inline-block;
  position: relative;
}

/* PC 用：324×210pxで下側をカット */
.interview img {
  width: 324px;
  height: 210px;
  display: block;
  object-fit: cover;      /* 画像をトリミングして枠内にフィット */
  object-position: top;   /* 上を基準にして、下側がカットされる */
  background: #f4e9d9;
}

.simei {
  position: absolute;
  bottom: 24px;
  left: 0;
  font-size:18px;
  text-align: center;
  background: #e24040;
  color: #fff;
  margin: 0;
  padding: 0 1em 0.1em 1em;
  box-sizing:border-box;
}
.simei2 {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 24px;
  text-align: center;
  background: #e24040;
  color: #fff;
  margin: 0;
  padding: 0 5px;
  display: inline-block;
}
.nyusyabi{
  font-size:14px;
  text-align: center;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 3px 6px;
  box-sizing:border-box;
}

/* ラベル */
.interview .label {
  position: absolute;
  top: 0;
  right: 0; 
  font-size: 14px;
  text-align: center;
  background: #E24040;
  color: #fff;
  margin: 0;
  padding: 3px 6px;
  white-space: nowrap;
}


.nyusyabi2{
  position: absolute;
  bottom: -24px;
  left: 0;
  font-size: 16px;
  text-align: left;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0 5px;
  display: inline-block;
}

/* 社員インタビュー */
.work-main{
  position: relative;
  height: 500px;
  margin: 0 auto;
}
.work-main .work-photo {
  position: relative;
  max-width: 1400px;
  height: 500px;
  overflow: hidden;
}
.work-main .work-photo img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.work-main .work-inner{
  position: absolute;
 /* width: 768px;*/
 min-width: 768px;
  right: 0;
  bottom: -44.39px;
  z-index: 90;
}
.work-main .work-inner2{
  position: relative;
  background: #fff;
}
.work-main .work-inner2 h2{
  font-size: 50px;
  font-style: oblique;
  padding: 0.5em 50px 0.5em 0.5em;
  line-height: 1.2;
}
.work-main .work-inner2 h2:first-letter {
  color:inherit !important;
}
.work-main .work-inner2 h1{
  font-size: 24px;
  color: #fff;
  line-height: 1;
  background: #000;
  padding: 10px 50px;
  text-align: right;
  font-weight: 500;
}
.work-main .work-inner h1 small{
  font-size: 12px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
}
.work-sub {
  position: relative;
  background: url(/img/recruit2022/bg_pattern01.png) repeat;
  height: 400px;
}
.work-sub .work-photo {
  max-width: 1024px;
  margin: 0 auto;
}
.work-sub .work-photo img {
  position: absolute;
  top: 0;
}
.work-con h3{
  font-size: 40px !important;
  font-size: 4rem !important;
  margin-bottom: 20px;
  padding-left: 130px;
  text-indent: -130px;
}
.work-con h3 span{
  position: relative;
  font-size: 30px !important;
  font-size: 3rem !important;
  background: #E24040;
  color: #fff;
  padding: 0 0.5em 0 2em;
  line-height: 1;
  margin-right: 30px;
  z-index: 20;
}

.work-con h3 span::after{
	content: "";
	height: 0;
	border-top: solid 22px rgba(0, 0, 0, 0);
	border-bottom: solid 22px rgba(0, 0, 0, 0);
	border-left: solid 15px #E24040;
	position: absolute;
	top: 0;
	right: -15px;
	z-index: 5;
}

.work-con p{
  color: #000;
}

/* ===== 社員インタビュー レイアウト変更 ===== */
.work-main02 {
  max-width: 1024px;
  margin: 0 auto;
}

/* 画像＋キャッチコピー横並び */
.work-main02-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* 写真エリア */
.work-photo02 {
    width: 256px;
    height: 332px;
    flex: 0 0 256px;
    overflow: hidden;
}
.work-photo02 img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* 枠いっぱいに表示しつつトリミング */
    object-position: center;/* 左右中央を基準にトリミング */
    display: block;
}

/* テキストエリア */
.work-text02 {
  flex: 1;
}

/* キャッチコピー（h2） : 少し小さめに */
.work-h2 {
  font-size: 3.2rem;      /* 5rem → 3.2rem くらいがバランス良い */
  font-style: oblique;
  line-height: 1.3;
  font-weight: 700;
  padding: 0.5em 0;
}

/* 名前バー（h1 相当） */
.work-h1 {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: flex-end;   /* 全体を右寄せ */
  align-items: center;
  gap: 12px;                   /* 名前と「キャリア」の間 */
  padding: 8px 16px;
  line-height: 1.3;
  font-size: 22px;
}

/* 名前＋所属 */
.work-h1-main {
  font-weight: 500;
}
.work-h1-main small {
  font-size: 14px;
  font-weight: 400;
  margin-left: 1em;
}

/* 「キャリア」ラベル */
.work-h1-tag {
  font-size: 14px;
  font-weight: 500;
  background-color: #E24040;
  padding: 4px 14px;
  line-height: 1;
  white-space: nowrap;
}

/*開発ストーリー*/
.story h2{
  font-size: 26px !important;
  font-size: 2.6rem !important;
  font-weight: 500;
  background: #000;
  color: #fff;
  padding: 10px 10px 10px 90px;
  line-height: 1;
  margin-bottom: 0 !important;
  text-indent: -80px;
}
.story h2 span.Bblack{
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 20px;
}
.story h2:first-letter {
  color: #fff !important;
}.story h2{
  font-size: 26px !important;
  font-size: 2.6rem !important;
  font-weight: 500;
  background: #000;
  color: #fff;
  padding: 10px 10px 10px 90px;
  line-height: 1;
  margin-bottom: 0 !important;
  text-indent: -80px;
}
.story h2 span.Bblack{
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 20px;
}
.story h2:first-letter {
  color: #fff !important;
}
.story a h2:first-letter,
.story a h2:hover {
  color: #E24040 !important;
}
.story h3{
  font-size: 40px !important;
  font-size: 4rem !important;
  margin-bottom: 20px;
  padding-left: 150px;
  text-indent: -160px;
}
.story h3 span{
  position: relative;
  font-size: 30px !important;
  font-size: 3rem !important;
  background: #E24040;
  color: #fff;
  padding: 0 0.5em 0 2em;
  line-height: 1;
  margin-right: 30px;
	z-index: 20;
}
.story h3 span::after{
	content: "";
	height: 0;
	border-top: solid 22px rgba(0, 0, 0, 0);
	border-bottom: solid 22px rgba(0, 0, 0, 0);
	border-left: solid 15px #E24040;
	position: absolute;
	top: 0;
	right: -15px;
	z-index: 5;
}
.story li{
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 1em;
}
.story li span{
  color: #E24040;
  margin-right: 0.5em;
}

/*社員座談会*/
.crosstalk h2{
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 500;
  background: #000;
  color: #fff;
  padding: 0.2em 1em;
  line-height: 1;
  margin-bottom: 0 !important;
}
.crosstalk h2 span.Bblack{
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 20px;
}
.crosstalk h2:first-letter {
  color: #fff !important;
}
.crosstalk .talk__member{
  font-style: oblique;
  text-align: center;
}
.crosstalk a h2:hover,
.crosstalk a h2:first-letter {
  color: #E24040 !important;
}
.crosstalk h3{
  font-size: 40px;
  font-size: 4rem;
  margin-bottom: 20px;
  padding-left: 150px;
  text-indent: -160px;
}
.crosstalk h3 span{
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  background: #E24040;
  color: #fff;
  padding: 0 0.5em 0 2em;
  line-height: 1;
  margin-right: 30px;
	z-index: 20;
}
.crosstalk h3 span::after{
	content: "";
	height: 0;
	border-top: solid 22px rgba(0, 0, 0, 0);
	border-bottom: solid 22px rgba(0, 0, 0, 0);
	border-left: solid 15px #E24040;
	position: absolute;
	top: 0;
	right: -15px;
	z-index: 5;
}
.crosstalk .container__col{
  display: flex;
}
.crosstalk .block__name {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  min-width: 50px;
  margin-right: 20px;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.crosstalk .block__text {
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: justify;
}
.u-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(234, 4, 55, 0.4)));
  background: linear-gradient(transparent 60%, rgba(234, 4, 55, 0.4) 0%);
  padding: 0 0 3px 0;
  font-weight: 700;
}

/*募集要項*/
/* 選考フロー */
.recruitmentFlow_vessel {
  margin: 0 auto;
  width: 100%;
  /*max-width: 70.5vw;*/
}

.recruitmentFlow_list {
  position: relative;
  z-index: 1;
}
.recruitmentFlow_listVessel {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
.recruitmentFlow_listContent {
  width: 20%;
}
.recruitmentFlow_listNo {
  position: relative;
  color: #000;
  font-size: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}
.recruitmentFlow_listNo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #cecece;
}
.recruitmentFlow_listNoVsl {
  position: relative;
  padding: 0 0 6px 0;
  display: inline-block;
}
.recruitmentFlow_listNoVsl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #E24040;
}
.recruitmentFlow_listVessel .recruitmentFlow_listContent:last-child::after {
  content: '';
  position: absolute;
  top: 23px;
  right: 0;
  display: block;
  width: 10px;
  height: 17px;
  background: #fff url(/img/recruit2022/freshGraduate/bg_arrow_01.svg) no-repeat;
  background-size: 10px 17px;
}
body.-is-ie .recruitmentFlow_listVessel .recruitmentFlow_listContent:last-child::after {
  top: 23.5px;
}
.recruitmentFlow_listText {
  margin-top: 1.57vw;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

/* 募集要項内のエントリーボタン */

.guidance .btnLinkBlue{
  position: relative;
}

.guidance .btnLinkBlue img{
  position: absolute;
  top:0;
  bottom: 0;
  left:10px;
  margin: auto;
}
.guidance .btnWrapFifth span {
  padding-top: 0;
  line-height: 1.8;
}
.btnLinkBlue_b{
  position: relative;
  background: #fff;
  color: #0168b7;
  border: #0168b7 1px solid;
  padding: 2em 0 !important;
}

.btnLinkBlue_b img{
  position: absolute;
  top:0;
  bottom: 0;
  left:10px;
  margin: auto;
  max-width: 200px;
}
.btnLinkBlue_b span{
  position: absolute;
  top: 50%;
  right:40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  line-height: 1.4;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: left !important;
}
.arrowBlue {
  position: relative;
}
.arrowBlue:before, .arrowBlue:after {
  content: '';
  display: block;
  width: 0.5em;
  height: 2px;
  background: #0168b7;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
}
.arrowBlue:before {
  bottom: .3em;
  transform: rotate(45deg);
}
.arrowBlue:after {
  top: .3em;
  transform: rotate(-45deg);
}
/* キャリア募集要項 */
/* インタビュー */

.career_interview {
  position: relative;
  height: 332px;
  background: #fff;
}
.career_interview img {
  max-width: 256px;
  height: 332px;
  overflow: hidden;
}

.career_interview .career-inner{
  position: absolute;
  top: 50%;
  left: 256px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.career_interview .career-inner .catch{
  font-size:50px;
  font-size:5rem;
  font-style: oblique;
  line-height: 1.2;
  font-weight: 700;
  padding: 0.5em;
}
.career_interview .career-inner .namae {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  background: #000;
  padding: 10px;
  text-align: right;
  font-weight: 500;
}

#interview h3{
  font-size: 40px !important;
  font-size: 4rem !important;
  margin-bottom: 20px;
  padding-left: 130px;
  text-indent: -130px;
}
#interview h3 span{
  position: relative;
  font-size: 30px !important;
  font-size: 3rem !important;
  background: #E24040;
  color: #fff;
  padding: 0 0.5em 0 2em;
  margin-right: 30px;
  z-index: 20;
}

#interview h3 span::after{
	content: "";
	height: 0;
	border-top: solid 22px rgba(0, 0, 0, 0);
	border-bottom: solid 22px rgba(0, 0, 0, 0);
	border-left: solid 15px #E24040;
	position: absolute;
	top: 0;
	right: -15px;
	z-index: 5;
}

.dfbox{
  font-size: 24px; /* ラベルの文字サイズ */
  font-weight: 500;
  text-align: center;
  background: #000; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:8px;
  color: #fff;
  line-height: 1;
}
.dfbox-under{
  font-size: 16px; /* 開いた部分の文字サイズ */
  color: #000; /* 開いた部分の文字色 */
  padding: 18px; /* 開いた部分の枠内の余白 */
  background: #fff; /* 開いた部分の背景色 */
}
/*---------------------------------
アコーディオンボックス
--------------------------------*/
.acbox{
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
}

.acbox label{
  font-size: 24px; /* ラベルの文字サイズ */
  font-weight: 500;
  text-align: center;
  background: #000; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:8px;
  cursor: pointer;
  color: #fff;
  line-height: 1;
}

.acbox label:hover{
  background: #333; /* ラベルにマウスを乗せた時の背景色 */
}

.acbox input{
  display: none;
}

.acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}

.acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.acbox input:checked ~ div{
  height: auto;
  padding: 18px; /* 開いた部分の枠内の余白 */
  background: #fff; /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #000; /* クリック後のラベルの背景色 */
}

.acbox-under{
  font-size: 16px; /* 開いた部分の文字サイズ */
  color: #000; /* 開いた部分の文字色 */
}

/* サイトマップ */
.sitemap_list h2 {
  margin: 0 0 20px;
  padding: 30px 0 10px;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: left;
  border-bottom: solid 1px #cccccc;
 }

 .sitemap_list h2:first-letter {
    color: #E24040;
}
  .sitemap_list h2 a {
    color: #000000; }
    .sitemap_list h2 a:visited {
      color: #000000; }
    .sitemap_list h2 a:hover {
      color: #E24040; }
.sitemap_list li {
  margin-bottom: 10px;
  font-weight: 600; }
.sitemap_list li a {
    color: #0075C1;
 }
.sitemap_list li a:visited {
    color: #6344AA;
 }
 .sitemap_list li a:hover {
    color: #0075C1; }

/* footer */
.footer {
  width: 100%;
  background-color: #000;
  position: relative;
  z-index: 100;
  letter-spacing: 0.02em;}
.footer_inner {
    width: 100%;
    height: 67px;
    box-sizing: border-box;
    padding-left: 4%;
    padding-right: 4%;
    display: flex;
    display: -ms-flex;
    flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    align-items: center;
    -ms-align-items: center;
}
.footer_inner > * {
    width: 50%; }

.footer_menu {
    display: flex;
    display: -ms-flex;
    flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    justify-content: center;
    -ms-justify-content: center;
}

.footer_menu ul {
    display: flex;
    display: -ms-flex;
}

.footer_menu li a {
    font-size: 1.4rem;
    padding: 0 14px;
    color: #fff;
    display: block;
}
.footer_menu li a:hover {
      color: #888; }

.footer_menu li a .ico_external {
      display: inline-block;
      fill: #b0b0b0;
      margin-left: 6px;
      width: 9px;
      height: 9px; }

.copyright_txt {
  font-size: 1.5rem;
  color: #fff;
  opacity: .6;
  padding: 0 34px; }

/* pagetop */
.pagetop {
	background-color: #282828;
    text-align: center;
    position: relative;
    line-height: 50px;
    transition: background-color 0.1s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 67px;
    height: 67px;
    position: absolute;
    top: 0;
    right: 0; }

.pagetop:hover {
  background-color: #444; }

.pagetop_arrow {
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #a8a8a8;
  border-right: 2px solid #a8a8a8;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 12px;
  transition: all 0.5s linear; }

.fixedBottomNav{
	display: none;
}

/* 外部リンクマーク */
#recruit2022-top a[href^="http"]:after,
#recruit2022-top a[href^="//"]:after {
  margin: 0 0 0 3px;
  font-family: "Font Awesome 5 Free";
  content: '\f35d';
  font-weight: 900;
}
#recruit2022-top a[href^="https://www.daiwakasei.co.jp/"]:after {
  margin: inherit;
  font-family: inherit;
  content: '';
  font-weight: inherit;
}

/* recruit: YouTube iframe 比率崩れ対策（Gutenberg非使用向け） */
.contents-wrap iframe[src*="youtube.com"],
.contents-wrap iframe[src*="youtu.be"] {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
}
