html {
    margin-top: 50px !important;
}
a {
    text-decoration: none;
    transition: color 0.3s linear;
    -webkit-transition: color 0.3s linear;
}
a {
    word-break: break-all;
}

a:visited {
    transition: all 0.3s linear;
    -webkit-transition: color 0.3s linear;
}
svg:not(:root) {
    overflow: hidden;
}
body > #page {
    padding-top: 0 !important;
}
#breadcrumb {
	display: none;
}

/* 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: 50px;
	z-index: 500;
	background: #ffffff;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, .3)
}
.c-header .logo {
	position: absolute;
	left: 0;
	top: 0;
		padding: 0 5.33333vw 0 2.66667vw;
		max-width: calc(100% - 120px);
    font-size: 14px;
		height: 50px;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;

}
.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: 16px;
	vertical-align: bottom;
  padding: 0 0 0 2vw;
}
.c-header .logo img {
	margin-right: 0;
	vertical-align: middle;
	width: 100px
}
.c-header .entry {
	position: absolute;
	right: 60px;
	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: 60px;
  height: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  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: 4px;
  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.4rem;
}
.entry_sub {
  font-size: 1.0rem;
}

/* ハンバーガーメニュー */
/*ボタン外側*/
.c-header .menu {
	position: absolute;
  top:0;
  right: 0;
  background: #fff;
	cursor: pointer;
	width: 60px;
	height: 50px;
}
/*ボタン内側*/
.c-header .menu span {
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 15px;
  height: 2px;
	background: #000;
  width: 30px;
}
.c-header .menu span:nth-of-type(1) {
	top:17px;	
}
.c-header .menu span:nth-of-type(2) {
	top:26px;
}
.c-header .menu span:nth-of-type(3) {
	top:35px;
}
.c-header .menu span:nth-of-type(1)::before {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:-15px;
	left:0px;
	color: #000;
	font-size: 1rem;
	text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.c-header .menu.is-active {
  background: #000;
}
.c-header .menu.is-active span {
  width: 30px;
  left: 15px;
  background: #fff;
}
.c-header .menu.is-active span:nth-of-type(1) {
  top: 26px;
  -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: 26px;
  -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:-20px;
left:13px;
color: #fff;
}

/* メニュー関連 */
.c-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 400;
  min-width: 320px;
  background: url(/img/recruit2022/bg_pattern01.png) repeat;
  opacity: 0;
  visibility: hidden;
  transition: .3s
}
.c-nav.is-active {
  opacity: 1;
  visibility: visible
}
.c-nav .inner {
  margin: 50px 0 0;
  padding: 20px 0;
  width: 100%;
  max-width: none;
  color: #000000;
  position: relative;
  z-index: 500
}
.c-nav .main {
  margin: 0 1em 2em;
}

.c-nav .main li > ul {
  margin-bottom: 20px;
}

.c-nav h2 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-style: oblique;
  font-weight: 700;
  padding-right: 20px;
}
.c-nav h2:first-letter {
    color: #E24040;
}
.c-nav h2:before {
  content: '';
  width: 10px;
  height: 10px;
  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: 12px;
  font-size: 1.2rem;
}
.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 {
  margin: 0 1em;
}
.c-nav .corpo-links > li {
  margin-bottom: 1em;
}
.c-nav .corpo-links li {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
}
.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: center;
  justify-content: center;
}
.c-nav .sns li {
  margin: 0 8px;
  width: 40px
}
.c-nav .sns a {
  transition: opacity .3s
}
.c-nav .sns a:hover {
  opacity: 0.7
}

/* トップコンテンツ内 */
.contents-wrap {
  margin-top: 0 !important;
}
.top-message{
  font-size: 44px;
  font-style: oblique;
  line-height: 1.2;
}
.btnWrapFifth {
  width: 100%;
}
.btnWrapFifth span {
  display: inline;
  line-height: 1.2;
  padding-top: 0;
}
.btnLinkBlue{
  position: relative;
  background: #0168b7;
  color: #fff;
}
.btnLinkBlue img{
  position: absolute;
  top:0;
  bottom: 0;
  left:10px;
  margin: auto;
}
.btnLinkWhite, .btnListWhite a {
  color: #000;
  text-align: left;
  padding: 1em !important;
}
h2.h2ttl {
  font-size: 40px;
  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); }

.midashi a{
  font-size: 20px;
  line-height: 1.6;
  transition: 0.3s
}
.midashi a span.Fred{
  font-size: 14px;
  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;
/*  opacity: 1;*/
}
/*
.midashi a span.Fred:hover,
a.btnLinkBlack:hover{
  background: #E24040;
  opacity: 1;
}*/

#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: 200px;
  padding-top: 38.9%;
}
#pagettl h2.h2ttl {
  position: absolute;
  top:20px;
  left: 0;
  right: 0;
  margin: auto;
}
#pagettl h1 {
  position: absolute;
  top:20px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 40px;
  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;
}

/* 各ページ 共通（SPで2行化して崩れない版） */
.pgLink{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;          /* 折り返し */
  gap: 8px 8px;             /* liのmarginの代替（2行目も綺麗） */
  padding: 0 10px;          /* 端のはみ出し防止 */
}

.pgLink li{
  margin-right: 0;          /* gapに任せる */
  list-style: none;         /* 念のため */
}

/* 2行にしたいので、1行あたりの個数をコントロール（例：3→2） */
.pgLink li{
  flex: 0 0 calc((100% - 16px) / 3); /* 3列（gap 8px*2=16px） */
  max-width: calc((100% - 16px) / 3);
}

/* さらに狭い端末は2列に落とす（任意） */
@media (max-width: 420px){
  .pgLink li{
    flex: 0 0 calc((100% - 8px) / 2); /* 2列 */
    max-width: calc((100% - 8px) / 2);
  }
}

.pgLink li a{
  display: block;           /* ボタン化 */
  width: auto;              /* 100%をやめる（崩れ要因） */
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  background: #000;
  color: #fff;

  /* 余白はここに集約（arrowのpaddingと競合させない） */
  padding: .6em 2em .6em 1em;
  white-space: nowrap;      /* 文言途中で改行させない */
  box-sizing: border-box;
}

.pgLink li a:hover{
  background-color: #E55353;
}

/* arrowは「矢印だけ担当」にしてpaddingを消す */
.arrow{
  position: relative;
  display: block;           /* aがblockなので合わせる */
  padding: 0;               /* これが重要：元のpadding:10pxが崩れ原因 */
}

.arrow::before{
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.arrow.arrow-bottom::before {
  transform: rotate(135deg);
}
a.arrow:hover::before {
  top: 0;
}
.arrowBlack:hover::before, .arrowBlack:hover::after {
  background: #E24040;
  right: 10px;
}
.arrowWhite:hover::before, .arrowWhite:hover::after {
  right: 10px;
}
#recruit-contents p{
  color: #000;
}
#recruit-contents h2{
font-size: 36px;
font-weight: 700;
}
#recruit-contents h2:first-letter {
  color: #E24040;
}
#recruit-contents h3{
  font-size: 22px;
  margin-bottom: 1em;
  font-weight: 700;
}
#recruit-contents h4{
  font-size: 16px;
  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: 22px;
  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: 50px;
  margin-top: -50px;
}
/*チェックマーク*/
.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 {
  padding-top: 0.5em;
  border-top: 2px solid #eee;
  color: #aaa;
  font-size: 14px;
}
#profile dl dd,
.waku dl dd {
  padding-top: 0.5em;
  padding-bottom: 1em;
  font-size: 14px;
}

/*沿革*/
#history li {
  display: flex;
  font-size: 14px;
}
#history li .year {
  width: 100px;
  position: relative;
}
#history li .year span {
  position: relative;
  padding-left: 10px;
  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% - 100px);
}
#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: 5.5rem;
  text-indent: -5.5rem;
}
#history li img {
  display: block;
}

#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;
}
#number .number-inner h3{
  font-size: 16px;
  font-size: 1.6rem;
}

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

/* 研修制度 */
ul.flow {
  padding: 0;
}
ul.flow li {
  list-style-type: none;
}
ul.flow dd {
  margin-left: 0;
}
.flow {
  padding-left: 0 !important;
padding-right: 20px !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: 0;
}
.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: -15px; /* 中央寄せに使用 */
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 0.5em;
}
.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: 25px;
  position: relative;
}
.flow > li dl::before,
.flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.flow > li dl::before {
  width: 20px;
  height: 20px;
  margin-top: 10px;
  background: #fff;
  border-radius: 50%;
  left: -6px;
  border: #e24040 solid 4px;
}
.flow > li dl dt {
  font-size: 2.0rem;
  font-weight: 600;
  color: rgb(226,64,64);
  margin-bottom: 0.5em;
  padding-top: 20px;
}

/* 仕事×人を知る */
.interview,.interview2 {
  display: inline-block;
  position: relative;
}

  .interview img {
    width: 100%;
    height: auto;      /* SP は縦横比を維持したまま可変に */
    object-fit: cover;
    background: #f4e9d9;
  }

.simei,.simei2 {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
  text-align: center;
  background: #e24040;
  color: #fff;
  margin: 0;
  padding: 0 5px;
  display: inline-block;
}
.nyusyabi,.nyusyabi2{
  position: absolute;
  bottom: -18px;
  left: 0;
  font-size: 12px;
  text-align: left;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0 5px;
  display: inline-block;
}
.sp-white{
  color: #ffffff;
}
/* ラベル */
.interview .label {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  text-align: left;
  background-color: #E24040;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
}
/* 社員インタビュー */
.work-main{
  margin: 0 auto;
}
.work-main .work-photo {
  max-width:90%;
}
.work-main .work-photo img {
  width: 100%;
  left: 0;
  top: 0;
}
.work-main .work-inner{
  width: 90%;
  margin-left: 10%;
}
.work-main .work-inner2{
  background: #fff;
}
.work-main .work-inner2 h2{
  font-size: 24px;
  font-style: oblique;
  padding: 0.5em;
  line-height: 1.2;
}
.work-main .work-inner2 h2:first-letter {
  color:inherit !important;
}
.work-main .work-inner2 h1{
  font-size: 14px;
  color: #fff;
  line-height: 1;
  background: #000;
  padding: 10px 20px;
  text-align: right;
  font-weight: 500;
}
.work-main .work-inner h1 small{
  font-size: 9px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
}
.work-sub .work-photo {
  width: 100%;
}
.work-sub .work-photo img {
  width: 100%;
}

.work-con h3{
  font-size: 20px !important;
  font-size: 2rem !important;
  padding-left: 75px;
  text-indent: -75px;
  margin-right: 1em;
}
.work-con h3 span{
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  background: #E24040;
  color: #fff;
  padding: 0 0.5em 0 2em;
  line-height: 1;
  margin-right: 16px;
}
.work-con h3 span::after{
	content: "";
	height: 0;
	border-top: solid 12px rgba(0, 0, 0, 0);
	border-bottom: solid 12px rgba(0, 0, 0, 0);
	border-left: solid 8px #E24040;
	position: absolute;
	top: 0;
	right: -8px;
	z-index: 5;
}

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

/* 画像とテキストを縦並びに */
.work-main02-inner {
  display: block;
}

/* 写真 */
.work-photo02 img {
  height: auto;        /* 縦横比は画像に任せる */
  max-width: 100%;     /* 画面よりはみ出さないようにだけ制限（縮小のみ） */
  display: block;
  margin: 0 auto;      /* 横は中央寄せ */
}

/* キャッチコピー */
.work-h2 {
  font-size: 2.0rem !important;
  font-style: oblique;
  line-height: 1.4;
  font-weight: 700;
  padding: 0.5em 0;
}

/* 名前バー */
.work-h1{
  background: #000;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  font-size: 18px;
  line-height: 1.4;
  width: 100%;
  justify-content: flex-start;
}

/* 名前＋所属（左ブロックを伸ばして右ラベルを右端へ） */
.work-h1-main {
  font-weight: 500;
  flex: 1 1 auto;
  min-width: 0; /* ellipsisを効かせる／右端寄せ安定 */
}

/* 所属：途中で割れない（1行固定＋省略） */
.work-h1-main small {
  font-size: 14px;
  font-weight: 400;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ラベル：右端固定 */
.work-h1-tag {
  font-size: 12px;
  font-weight: 500;
  background-color: #E24040;
  padding: 4px 10px;
  line-height: 1;
  white-space: nowrap;
  margin-left: auto;
  text-align: right;
}

/*開発ストーリー*/
.story h2{
  font-size: 30px !important;
  font-size: 3rem !important;
  font-weight: 500;
  background: #000;
  color: #fff;
  padding: 10px 10px 10px 80px;
  text-indent: -70px;
  line-height: 1;
  margin-bottom: 0 !important;
}
.story h2 span.Bblack{
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 10px;
}
.story h2:first-letter {
  color: #fff !important;
}
.story .talk__member{
  font-style: oblique;
  text-align: center;
}
.story a h2:first-letter,
.story a h2:hover {
  color: #E24040 !important;
}

.story h3{
  font-size: 20px !important;
  font-size: 2rem !important;
  padding-left: 100px;
  text-indent: -110px;
  margin-right: 1em;
}
.story h3 span{
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  background: #E24040;
  color: #fff;
  padding: 0 0.5em 0 2em;
  line-height: 1;
  margin-right: 16px;
	z-index: 20;
}
.story h3 span::after{
	content: "";
	height: 0;
	border-top: solid 12px rgba(0, 0, 0, 0);
	border-bottom: solid 12px rgba(0, 0, 0, 0);
	border-left: solid 8px #E24040;
	position: absolute;
	top: 0;
	right: -8px;
	z-index: 5;
}
.story li{
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 1em;
}
.story li span{
  color: #E24040;
  margin-right: 0.5em;
}

/*社員座談会*/
.sp-widthMax49 {
  width: 49% !important;
}
.crosstalk h2{
  font-size: 30px !important;
  font-size: 3rem !important;
  font-weight: 500;
  background: #000;
  color: #fff;
  padding: 10px 10px 10px 80px;
  text-indent: -70px;
  line-height: 1;
  margin-bottom: 0 !important;
}
.crosstalk h2 span.Bblack{
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 10px;
}
.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: 20px !important;
  font-size: 2rem !important;
  padding-left: 100px;
  text-indent: -110px;
  margin-right: 1em;
}
.crosstalk h3 span{
  position: relative;
  font-size: 16px !important;
  font-size: 1.6rem !important;
  background: #E24040;
  color: #fff;
  padding: 0 0.5em 0 2em;
  line-height: 1;
  margin-right: 16px;
	z-index: 20;
}
.crosstalk h3 span::after{
	content: "";
	height: 0;
	border-top: solid 12px rgba(0, 0, 0, 0);
	border-bottom: solid 12px rgba(0, 0, 0, 0);
	border-left: solid 8px #E24040;
	position: absolute;
	top: 0;
	right: -8px;
	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: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.crosstalk .block__text {
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: justify;
}
.u-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(234, 4, 55, 0.4)));
  background: linear-gradient(transparent 70%, rgba(234, 4, 55, 0.4) 0%);
  padding: 0 0 0 0;
  font-weight: 700;
}

/*募集要項*/
/* 選考フロー */
.recruitmentFlow_vessel {
  width: auto;
  max-width: 100%;
}
.recruitmentFlow_list {
  position: relative;
  z-index: 1;
}
.recruitmentFlow_listVessel {
  display: block;
}
.recruitmentFlow_listContent {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  position: relative;
  width: auto;
}
.recruitmentFlow_listNo {
  position: relative;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  width: 41px;
  font-size: 18px;
  line-height: 1.1;
}
.recruitmentFlow_listNo::before {
  content: '';
  position: absolute;
  bottom: auto;
  top: 0;
  left: auto;
  right: 0;
  width: 1px;
  height: 100%;
  background: #e3e3e3;
  display: block;
}
.recruitmentFlow_listNo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 2px;
  height: 20px;
  background: #E24040;
}
.recruitmentFlow_listNoVsl {
  position: relative;
  padding: 0;
  display: inline-block;
}
.recruitmentFlow_listNoVsl::after {
  display: none;
}
.recruitmentFlow_listVessel .recruitmentFlow_listContent:last-child::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: 0;
  right: auto;
  display: block;
  left: 32px;
  width: 17px;
  height: 10px;
  background: #fff url(/img/recruit2022/freshGraduate/bg_arrow_01_sp.svg) no-repeat;
  background-size: 17px 10px;
}
body.-is-ie .recruitmentFlow_listVessel .recruitmentFlow_listContent:last-child::after {
  top: auto;
}
.recruitmentFlow_listText {
  flex: 1;
  margin-top: 0;
  padding: 0 0 35px 20px;
  color: #000;
  font-size: 14px;
   font-weight: 700;
   line-height: 1.5;
}
.recruitmentFlow_listVessel .recruitmentFlow_listContent:last-child .recruitmentFlow_listText {
  padding-bottom: 33px;
}




/* 募集要項内のエントリーボタン */
.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: 50%;
}
.btnLinkBlue_b span{
  position: absolute;
  top: 50%;
  right:40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  line-height: 1.2;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left !important;
  max-width: 50%;
}
.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 {
  width: 100%;
}
.career_interview img {
  width: 100%;
  height: auto;
}

.career_interview .career-inner .catch{
  font-size:24px;
  font-size:2.4rem;
  font-style: oblique;
  line-height: 1.2;
  font-weight: 700;
  background: #fff;
  padding: 0.5em;
}
.career_interview .career-inner .namae {
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  background: #000;
  padding: 10px;
  text-align: right;
  font-weight: 500;
}
#interview h3{
  font-size: 20px !important;
  font-size: 2rem !important;
  padding-left: 75px;
  text-indent: -75px;
  margin-right: 1em;
}
#interview h3 span{
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  background: #E24040;
  color: #fff;
  padding: 0 0.5em 0 2em;
  line-height: 1;
  margin-right: 16px;
}
#interview h3 span::after{
	content: "";
	height: 0;
	border-top: solid 12px rgba(0, 0, 0, 0);
	border-bottom: solid 12px rgba(0, 0, 0, 0);
	border-left: solid 8px #E24040;
	position: absolute;
	top: 0;
	right: -8px;
	z-index: 5;
}
.dfbox{
  font-size: 18px; /* ラベルの文字サイズ */
  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: 18px; /* ラベルの文字サイズ */
  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: -10px;
}

.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: 18px;
  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 {
  padding-bottom: 50px;
  width: 100%;
  background-color: #000;
  position: relative;
  z-index: 100;
  letter-spacing: 0.02em;}

.footer_inner {
  display: block;
  height: auto;
  padding-top: 22px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 4%;
  padding-right: 4%;
  flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  align-items: center;
  -ms-align-items: center;}

.footer_inner > * {
    width: 100%;
}

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

.footer_menu ul {
	margin-bottom: 6px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    display: flex;
    display: -ms-flex;}

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


.footer_menu li a:hover {
      color: #888; }

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

.copyright_txt {
  font-size: 1.0rem;
  -webkit-transform: scale(0.9);
  -webkit-transform-origin: 0 0;
  padding: 0 0 23px 0;
  color: #fff;
  opacity: .6; }

/* pagetop */
.pagetop {
  width: 100%;
  height: 50px;
  position: relative;	
  background-color: #282828;
  text-align: center;
  line-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0; }

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

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

/* 外部リンクマーク */
#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;
}
