@charset "utf-8";
/*
Theme Name: RUSH DESIGN THEME
Author: RUSH DESIGN
Version: 1.0.0
*/
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url("https://use.typekit.net/wbh8pyl.css");
/******************************************************
リセット
******************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
  font-weight: 500;
	font: inherit;
	vertical-align: middle;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body {
  margin: 0;
	padding: 0;
	border: 0;
  color: #333;
	font-size: 100%;
  font-weight: 500;
	font: inherit;
	vertical-align: middle;
  word-break : break-all;
  background: #fff;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-size: 16px;
	font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  counter-reset: 0;
}
@media screen and (max-width: 1024px) {
  body {
    position: relative;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
    counter-reset: 0;
  }
}
main {
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 500;
  line-height: 1.5;
}
table, th, td {
  border-collapse: collapse;
  font-weight: 500;
}
dl, dt, dd {
  margin: 0;
  padding: 0;
}
p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul, ol {
  font-size: 0;
  text-align: left;
}
li {
  font-size: 1.6rem;
}
@media screen and (max-width:1024px) {
  li {
    font-size: 1.4rem;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #333;
  text-decoration: none;
  vertical-align: baseline;
  border:none;
  outline:none;
}
span {
  vertical-align: baseline;
}
*:focus {
  outline: none;
}
/******************************************************
animate.css カスタマイズ
******************************************************/
@keyframes fadeInUp60 {
  from {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp60 {
  animation-name: fadeInUp60;
  animation-duration: 1s;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@keyframes boxShadow {
  0% {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  50% {
    opacity: 1;
    box-shadow: none;
  }
  100% {
    box-shadow: -3rem 3rem 0 0 rgba(238,238,238,1);
  }
}
.fadeInUpShadow {
  animation-name: boxShadow;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
/******************************************************
回り込み解除 ※解除したいclassを記述
******************************************************/
.clear:after,
.clearfix:after,
.inner:after,
.col:after,
.box:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}
/******************************************************
領域指定
******************************************************/
.pc, .tab, .sp {display:none!important;}
/* SP */
@media screen and (max-width: 767px){
  .inner {
    margin: 0 1.5rem;
    position: relative;
  }
  .sp-left {
    text-align: left!important;
  }
  .sp {
    display: block!important;
  }
}
/* TABLET */
@media screen and (min-width: 768px) and (max-width: 1024px){
  .inner {
    margin: 0 5rem;
    position: relative;
  }
  .tab {
    display: block!important;
  }
}
/* PC */
@media screen and (min-width: 1025px){
  .inner {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    box-sizing: border-box;
  }
  .pc {
    display: block!important;
  }
}
/******************************************************
基本フォント
******************************************************/
/* 位置 */
.text-center {text-align: center;}
.text-right {text-align: right;}
.text-left {text-align: left;}
/* カラー */
.color_black {color: #1b1b1b;}
.color_white {color: #fff;}
/******************************************************
各種フォント
******************************************************/
.serif {
  font-family: "Noto Serif JP", serif;
}
.text-xlarge {font-size: 3.6rem;}
.text-large {font-size: 2.7rem;}
.color-red {color: #000;}
/******************************************************
iPhoneリセット
******************************************************/
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
input[type=text], input[type=email], textarea, select {
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  outline: none;
  -webkit-appearance:none;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #ccc;
}
/******************************************************
パンくず
******************************************************/
#breadcrumb {
  padding: 1.2em 0;
}
#breadcrumb br {
  display: none;
}
#breadcrumb li {
  display: inline-block;
  color: #333;
  font-size: 1.6rem;
}
@media screen and (max-width:767px) {
  #breadcrumb li {
    font-size: 1.2rem;
  }
}
#breadcrumb li a {
  color: #000;
}
#breadcrumb li a:hover {
  color: #000;
}
#breadcrumb li a.breadcrumb_home:before {
  content: "\f015";
  font-family: "FontAwesome";
  margin-right: .5em;
}
#breadcrumb li:after {
  content: "\f105";
  font-family: "FontAwesome";
  margin: 0 .5em;
}
#breadcrumb li:last-child:after {
  content: none;
  margin: 0;
}
/******************************************************
ページネーション
******************************************************/
#pagination {
  margin-top: 3rem;
}
#pagination ul {
  text-align: center;
}
#pagination li {
  display: inline-block;
  margin-right: .3rem;
  font-size: 1.2rem;
}
#pagination li:last-child {
  margin-right: 0;
}
#pagination li a,
#pagination li span {
  display: block;
  width: 3rem;
  height: 3rem;
  color: #fff;
  line-height: 3rem;
  background: #ccc;
}
#pagination li a:hover {
  background: #1b1b1b;
}
#pagination li span.current {
  background: #1b1b1b;
}
#pagination li span.dots {
  color: #1b1b1b;
  background: none;
}
/******************************************************
固定ページ
******************************************************/
@media screen and (min-width: 1025px) {}
@media screen and (max-width: 1024px) {}
/******************************************************
ヘッダー
******************************************************/
@media screen and (min-width: 1240px) {
  #header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
  }
  /* ロゴ */
  #h_logo {
    padding: 3rem;
  }
  /* サイトナビ */
  #fix_link_list {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 101;
  }
  #fix_link_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 150px;
    height: 50px;
    padding: 1em;
    color: #fff;
    font-weight: bold;
    background: rgba(153,0,13,.9);
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
  }
  #fix_link_list .list a:hover {
    background: rgba(153,0,13,1);
  }
  #fix_link_list .list:nth-child(n+2) {
    margin-top: 2px;
  }
  /* 追尾ボタン */
  #fix_btn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 102;
  }
  #fix_btn .btn_list {
    position: relative;
    display: flex;
  }  
  #fix_btn .btn_list .btn {
    width: 300px;    
  }
  #fix_btn .btn_list .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    height: 80px;
    color: #fff;
    font-size: 2.4rem;
    text-align: center;
    background: #1b1b1b;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #fix_btn .btn_list .btn a:hover {
    background: #2b2b2b;
  }
  #fix_btn .btn_list .btn a.tel {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 600;   
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  }  
  #fix_btn .btn_list .btn a.entry,
  #fix_btn .btn_list .btn a.home {
    font-weight: 600;    
  }  
  #fix_btn .btn_list .btn a span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    height: 2em;
  }
  #fix_btn .btn_list .btn:nth-child(n+2) a span {
    border-left: 1px solid #6b6b6b;    
  }
  #fix_btn .btn_list .btn a span:before {
    display: block;
    width: 1.2em;
    height: 1.2em;
    margin-right: .5em;
    content: "";
  }
  #fix_btn .btn_list .btn a.tel span:before {
    background: url(/wp-content/uploads/images/icon_tel.svg) center center no-repeat;
    background-size: contain;
  }
  #fix_btn .btn_list .btn a.entry span:before {
    background: url(/wp-content/uploads/images/icon_mail.svg) center center no-repeat;
    background-size: contain;
  }  
  #fix_btn .btn_list .btn a.home span:before {
    background: url(/wp-content/uploads/images/icon_back.svg) center center no-repeat;
    background-size: contain;
  }  
}
@media screen and (max-width: 1239px) {
  #header {
    height: 7rem;
  }
  #h_cover {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    background: #c01;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_cover.active {
    box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
  }
  /* ロゴ */
  #h_logo {
    padding: 1rem;
  }
  #h_logo img {
    width: auto;
    height: 5rem;
  }
  /* サイトナビ */
  
  #fix_link_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }
  #fix_link_list.on {
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }  
  #fix_link_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 120px;
    height: 40px;
    padding: 1em;
    color: #fff;
    font-weight: bold;
    background: rgba(153,0,13,1);
    box-sizing: border-box;    
  }
  #fix_link_list .list:nth-child(n+2) {
    margin-top: 2px;
  }
  /* 追尾ボタン */
  #fix_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 102;
  }
  #fix_btn .btn_list {
    position: relative;
    display: flex;
  }  
  #fix_btn .btn_list .btn {
    width: 50%;
  }
  #fix_btn .btn_list .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 6rem;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    background: #1b1b1b; 
  }
  #fix_btn .btn_list .btn a.tel {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 600;   
  }  
  #fix_btn .btn_list .btn a.entry,
  #fix_btn .btn_list .btn a.home {
    font-weight: 600;    
  }  
  #fix_btn .btn_list .btn a span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    height: 2em;
  }
  #fix_btn .btn_list .btn:nth-child(n+2) a span {
    border-left: 1px solid #6b6b6b;    
  }
  #fix_btn .btn_list .btn a span:before {
    display: block;
    width: 1.2em;
    height: 1.2em;
    margin-right: .5em;
    content: "";
  }
  #fix_btn .btn_list .btn a.tel span:before {
    background: url(/wp-content/uploads/images/icon_tel.svg) center center no-repeat;
    background-size: contain;
  }
  #fix_btn .btn_list .btn a.entry span:before {
    background: url(/wp-content/uploads/images/icon_mail.svg) center center no-repeat;
    background-size: contain;
  }  
  #fix_btn .btn_list .btn a.home span:before {
    background: url(/wp-content/uploads/images/icon_back.svg) center center no-repeat;
    background-size: contain;
  }  

  #h_toggle_btn {
    position: relative;
    width: 7rem;
    height: 7rem;
    cursor: pointer;
    z-index: 101;
  }
  #h_toggle_btn span {
    position: absolute;
    left: 2rem;
    width: 3rem;
    height: 1px;
    background: #fff;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;    
  }
  #h_toggle_btn span:nth-child(1) {
    top: 28px;
  }
  #h_toggle_btn span:nth-child(2) {
    top: 35px;
  }
  #h_toggle_btn span:nth-child(3) {
    top: 42px;
  }
  #h_toggle_btn.open span {
    background: #fff;
  }  
  #h_toggle_btn.open span:nth-child(1) {
    top: 35px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 35px;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 35px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }    
  
}
/******************************************************
トップ
******************************************************/
@media screen and (min-width: 1240px) {
  /* タイトル */
  .title_cover {
    margin-bottom: 7rem;
  }
  .main_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .main_title span {
    display: inline-block;
  }
  .main_title .eng {
    margin-bottom: .15em;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
  }
  .main_title .eng.red {
    color: #c01;
  }
  .main_title .eng.white {
    color: #fff;
  }
  .main_title .eng.yellow {
    color: #fff100;
  }
  .main_title .jap {
    margin-left: .5em;
    padding-left: .5em;
    color: #1b1b1b;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    border-left: 1px solid #1b1b1b;
  }
  .main_title .jap.white {
    color: #fff;
    border-left: 1px solid #fff;
  }
  .title_message {
    margin-top: 3rem;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
  }
  /* カバー */
  .cover {
    position: relative;
    z-index: 30;
  }
  /* メインビジュアル */
  #top_main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;    
    width: 100%;
    height: 100vh;
    background-image: url(/wp-content/uploads/images/bg_main.webp), url(/wp-content/uploads/images/main_img001.webp);
    background-position: bottom center, top center;
    background-size: 100% auto, cover;
    background-repeat: no-repeat, no-repeat;
  }
  #top_main #catch_copy {
    padding: 8rem;
    padding-bottom: 16rem;
    color: #fff;
    font-size: 6.4vw;
    font-weight: 900;
    line-height: 1;
    text-shadow: .1em .15em .15em rgba(0,0,0,0.35);
  }
  #top_main #catch_copy .catch_bottom {
    padding-left: 2em;
  }
  #top_main #catch_copy span {
    font-size: 8vw;
  }
  
  /* はじめに */
  #top_first .top_first_message_a {
    padding: 12rem 0 18rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;    
  }
  #top_first .top_first_message_a span {
    color: #c01;
    font-weight: 900;
  }
  #top_first .top_first_list {
    position: relative;
  }
  #top_first .top_first_list:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: "";
    width: 100%;
    height: 50%;
    transform: skewY(4deg);
    transform-origin: bottom right;  
    z-index: 6;        
    background: #ccc;
  }    
  #top_first .top_first_list .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }  
  #top_first .top_first_list .list:nth-child(odd) {
    padding-left: 40%;
  }
  #top_first .top_first_list .list:nth-child(even) {
    padding-right: 40%;
  }
  
  #top_first .top_first_list .list .text {
    position: relative;
    z-index: 30;
  } 
  #top_first .top_first_list .list:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    transform: skewY(-4deg);
    transform-origin: bottom left;  
    z-index: 8;        
  }  
  #top_first .top_first_list .list:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    transform: skewY(-4deg);
    transform-origin: bottom left;  
    z-index: 7;    
  }  
  #top_first .top_first_list .list:nth-child(1):after {
    background: #fafafa;
  }  
  #top_first .top_first_list .list:nth-child(1):before {
    background: url(/wp-content/uploads/images/first_img001.webp) top left no-repeat;
    background-size: 40% auto;
  }  
  #top_first .top_first_list .list:nth-child(1) .text {
    padding: 2vw 4vw 8vw;
  }  
  #top_first .top_first_list .list:nth-child(2):after {
    background: #f2f2f2;   
  }   
  #top_first .top_first_list .list:nth-child(2):before {
    background: url(/wp-content/uploads/images/first_img002.webp) top right no-repeat;
    background-size: 40% auto;
  }  
  #top_first .top_first_list .list:nth-child(2) .text {
    padding: 4vw 4vw 6vw;
  }  
  #top_first .top_first_list .list:nth-child(3):after {
    background: #fafafa;   
  }     
  #top_first .top_first_list .list:nth-child(3):before {
    background: url(/wp-content/uploads/images/first_img003.webp) top left no-repeat;
    background-size: 40% auto;
  }  
  #top_first .top_first_list .list:nth-child(3) .text {
    padding: 2vw 4vw 8vw;
  } 
  #top_first .top_first_list .list:nth-child(4):after {
    background: #f2f2f2; 
  }    
  #top_first .top_first_list .list:nth-child(4) .text {
    padding: 4vw 4vw 6vw;
  } 
  #top_first .top_first_list .list:nth-child(4):before {
    background: #f2f2f2 url(/wp-content/uploads/images/first_img004.webp) top right no-repeat;
    background-size: 40% auto;
  }  
  #top_first .top_first_list .list .text .title {
    margin-bottom: 4rem;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.25;
  }
  #top_first .top_first_list .list .text .title span {
    color: #f90;
  }
  #top_first .top_first_list .list .text p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_first .top_first_list .list .text p.bold {
    font-weight: 600;
  }
  #top_first .top_first_list .list .text li {
    position: relative;
    padding-left: 1.5em;
    font-size: 2rem;
    font-weight: 600;
  }
  #top_first .top_first_list .list .text li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }  
  #top_first .top_first_message_b {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;    
  }
  #top_first .top_first_message_b p:nth-child(n+2) {
    margin-top: 1.8em;
  }
  /* 私たちの理念 */
  #top_philosophy {
    color: #fff;
  }
  #top_philosophy .philosophy_list {
    display: flex;
    flex-wrap: wrap;
  }
  #top_philosophy .philosophy_list .list {
    display: flex;
    flex-direction: column;
    width: calc(100% / 4);
    padding: 5rem;
    border-left: 1px solid #fff;
    box-sizing: border-box;
  }
  #top_philosophy .philosophy_list .list:nth-child(4n+1) {
    border-left: none;
  }
  #top_philosophy .philosophy_list .list .icon {
    margin-bottom: 5rem;
    text-align: center;
  }
  #top_philosophy .philosophy_list .list .icon img {
    width: 40%;
    height: auto;
  }
  #top_philosophy .philosophy_list .list .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    text-align: center;
  }
  #top_philosophy .philosophy_list .list .title .eng {
    font-size: 4rem;
    font-weight: 900;
  }
  #top_philosophy .philosophy_list .list .title .jap {
    font-size: 2rem;
    font-weight: 600;
  }
  #top_philosophy .philosophy_list .list .message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin-bottom: 4rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
  }
  #top_philosophy .philosophy_list .list .comment > *:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_philosophy .philosophy_list .list .comment ul {
    font-size: 1.6rem;
  }
  #top_philosophy .philosophy_list .list .comment li {
    position: relative;
    padding-left: 1.5em;
  }
  #top_philosophy .philosophy_list .list .comment li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  /* 5つの強み */
  #top_workstyle {
    color: #fff;
  }
  #top_workstyle .workstyle_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #top_workstyle .workstyle_list .list:nth-child(even) {
    flex-direction: row-reverse;
  }
  #top_workstyle .workstyle_list .list:nth-child(n+2) {
    margin-top: 4rem;
  }
  #top_workstyle .workstyle_list .list .image {
    width: 540px;
  }
  #top_workstyle .workstyle_list .list .image img {
    box-shadow: -2rem 2rem 0 0 rgba(43,43,43,1);
  }
  #top_workstyle .workstyle_list .list .text {
    width: calc(100% - 580px);
  }
  #top_workstyle .workstyle_list .list .text .heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
  }
  #top_workstyle .workstyle_list .list .text .number {
    margin-right: .3em;
    color: #f90;
    font-size: 9rem;
    font-weight: 600;
    line-height: 1;
    font-family: "tt-commons-pro", sans-serif;
  }
  #top_workstyle .workstyle_list .list .text .title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
  }
  /* 求める人材 */
  #top_recruit .recruit_title {
    margin-bottom: 6rem;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
  }
  #top_recruit .recruit_list {
    width: 800px;
    max-width: 100%;
    margin: 0 auto 6rem;
  }
  #top_recruit .recruit_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 8rem;
    padding-left: 8rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    background: #f2f2f2;
    box-sizing: border-box;
  }
  #top_recruit .recruit_list .list:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 8rem;
    height: 8rem;
    background: url(/wp-content/uploads/images/icon_check.svg) center center no-repeat;
    background-size: 50% 50%;
  }
  #top_recruit .recruit_list .list:nth-child(n+2) {
    margin-top: 2rem;
  }
  #top_recruit .recruit_comment {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
  }
  #top_recruit .recruit_comment p:nth-child(n+2) {
    margin-top: 1.8em;
  }
  
  /* 最後に */  
  #top_message {
    color: #fff;
  }
  #top_message .message_box {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
  }
  #top_message .message_box p:nth-child(n+2) {
    margin-top: 1.8em;
  }
  #top_message .message_box p span {
    font-size: 4rem;
  }
  /* 募集要項 */  
  #top_recruitment .recruitment_table {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;    
  }
  #top_recruitment .recruitment_table table {
    width: 100%;
    table-layout: fixed;
  }
  #top_recruitment .recruitment_table tr:nth-child(n+2) {
    border-top: 1rem solid #f2f2f2;
  }
  #top_recruitment .recruitment_table th,
  #top_recruitment .recruitment_table td {
    padding: 4rem;
    line-height: 1.8;
  }
  #top_recruitment .recruitment_table th {
    width: 30%;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    background: #3b3b3b;
  }
  #top_recruitment .recruitment_table td {
    border-left: 1rem solid #f2f2f2;
    text-align: left;
    background: #fff;
  }
  #top_recruitment .recruitment_table td > *:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_recruitment .recruitment_table td p span {
    font-weight: 600;
  }
  #top_recruitment .recruitment_table td ul {
    font-size: 1.6rem;
  }
  #top_recruitment .recruitment_table td li {
    position: relative;
    padding-left: 1.5em;
  }
  #top_recruitment .recruitment_table td li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  /* 採用ステップ */     
  #top_flow .flow_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 10rem;
  }
  #top_flow .flow_list .list {
    width: calc((100% / 5) - 10px);
  }
  #top_flow .flow_list .list .title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 12rem;
    margin-right: 5rem;
    margin-bottom: 2rem;
    padding: 1em;
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 600;
    background: #c01;
    box-sizing: border-box;   
  }
  #top_flow .flow_list .list .title span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 12rem;
    background: #c01;
  }
  #top_flow .flow_list .list .title:after {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    content: "";    
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 50px solid #c01;
    border-right: 0;        
  }  
  #top_flow .flow_list .list .comment li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.8;
  }
  #top_flow .flow_list .list .comment li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  /* 会社情報 */   
  #top_company .company_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  #top_company .company_flex .image {
    width: 640px;
  }
  #top_company .company_flex .image img {
    box-shadow: -2rem 2rem 0 0 rgba(43,43,43,1);
  }
  #top_company .company_flex .text {
    width: calc(100% - 640px);
  }
  #top_company .company_flex .text a {
    color: #fff;
  }
  #top_company .company_flex .text table {
    width: 100%;
  }
  #top_company .company_flex .text table th,
  #top_company .company_flex .text table td {
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
  }
  #top_company .company_flex .text table th:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "：";
  }
  #top_company .company_flex .text table td {
    padding-left: 1em;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .bg_transform {
    position: relative;
  }
  .bg_transform:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
  }
  .bg_transform:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 50%;
  }
  

  #top_first .top_first_message_b {
    padding: 6rem 0 18rem;
  }
  /* 私たちの理念カバー */
  #top_philosophy {
    padding: 6rem 0 24rem;;
  }
  #top_philosophy:after {
    background: #c01;
    transform: skewY(4deg);
    transform-origin: top right;    
    z-index: 8;
  }  
  /* 5つの強みカバー */
  #top_workstyle {
    padding: 6rem 0 24rem;
  }
  #top_workstyle:after {
    background: #3b3b3b url(/wp-content/uploads/images/bg_workstyle.webp) top center no-repeat;
    background-size: 100% auto;
    transform: skewY(4deg);
    transform-origin: top right;    
    z-index: 7;
  }
  #top_workstyle:before {
    background: #c01;
    transform: skewY(-4deg);
    transform-origin: bottom left;    
    z-index: 6;
  }
  /* 求める人物像カバー */
  #top_recruit {
    padding: 6rem 0;
  }
  /* 最後にカバー */
  #top_message {
    padding: 18rem 0 6rem;
    color: #fff;
    z-index: 5;
  }
  #top_message:after {
    background: url(/wp-content/uploads/images/bg_message.webp) top center no-repeat;
    background-size: cover;
    transform: skewY(-4deg);
    transform-origin: top right;    
    z-index: 6;
  }  
  #top_message:before {
    background: #ccc;
    transform: skewY(4deg);
    transform-origin: bottom left;    
    z-index: 5;
  }  
  /* 募集要項カバー */
  #top_recruitment {
    padding: 18rem 0;
  }
  #top_recruitment:after {
    background: #f2f2f2;
    transform: skewY(4deg);
    transform-origin: top right;    
    z-index: 4;
  }
  #top_recruitment:before {
    background: #ccc;
    transform: skewY(-4deg);
    transform-origin: bottom left;
    z-index: 3;
  }  
  /* 採用ステップカバー */
  #top_flow {
    padding: 6rem 0;
    z-index: 2;
  }
  /* 会社情報カバー */
  #top_company {
    padding: 18rem 0 12rem;
    color: #fff;
    z-index: 1;
  }
  #top_company:after {
    background: #3b3b3b;
    transform: skewY(-4deg);
    transform-origin: top right;    
    z-index: 0;
  }  
  
  
}
@media screen and (max-width: 1239px) {
  /* タイトル */
  .title_cover {
    margin-bottom: 3rem;
  }
  .main_title {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .main_title .eng {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
  }
  .main_title .eng.red {
    color: #c01;
  }
  .main_title .eng.white {
    color: #fff;
  }
  .main_title .eng.yellow {
    color: #fff100;
  }
  .main_title .jap {
    color: #1b1b1b;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
  }
  .main_title .jap.white {
    color: #fff;
  }
  .title_message {
    margin-top: 3rem;
    font-weight: 600;
    text-align: center;
  }
  /* カバー */
  .cover {
    position: relative;
    z-index: 30;
  }
  /* メインビジュアル */
  #top_main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;    
    width: 100%;
    height: 65vh;
    background-image: url(/wp-content/uploads/images/bg_main.webp), url(/wp-content/uploads/images/main_img001.webp);
    background-position: bottom center, top center;
    background-size: 100% auto, cover;
    background-repeat: no-repeat, no-repeat;
  }
  #top_main #catch_copy {
    padding: 1.5rem;
    padding-bottom: 5rem;
    color: #fff;
    font-size: 9.6vw;
    font-weight: 900;
    line-height: 1;
    text-shadow: .1em .15em .15em rgba(0,0,0,0.35);
  }
  #top_main #catch_copy .catch_bottom {
    padding-left: 2em;
  }
  #top_main #catch_copy span {
    font-size: 12vw;
  }
  
  /* はじめに */
  #top_first {}
  
  #top_first .top_first_message_a {
    padding: 5rem 1.5rem;
    font-weight: 600;
    text-align: center;    
  }
  #top_first .top_first_message_a span {
    color: #c01;
    font-weight: 900;
  }
  #top_first .top_first_list {
    position: relative;
  }
  #top_first .top_first_list:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: "";
    width: 100%;
    height: 50%;
    transform: skewY(4deg);
    transform-origin: bottom right;  
    z-index: 6;        
    background: #ccc;
  }    
  #top_first .top_first_list .list {
    position: relative;
    padding: 0 1.5rem 5rem;
    padding-top: calc(3.5rem + 56.25vw);
  }  
  #top_first .top_first_list .list .text {
    position: relative;
    z-index: 30;
  }
  #top_first .top_first_list .list:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 56.25vw;
    transform: skewY(-4deg);
    transform-origin: bottom left;  
    z-index: 8;        
  } 
  #top_first .top_first_list .list:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    transform: skewY(-4deg);
    transform-origin: bottom left;  
    z-index: 7;    
  }  
  #top_first .top_first_list .list:nth-child(odd):after {
    background: #fafafa;
  }
  #top_first .top_first_list .list:nth-child(even):after {
    background: #f2f2f2;
  }
  
  #top_first .top_first_list .list:nth-child(1):before {
    background: url(/wp-content/uploads/images/first_img001.webp) top left no-repeat;
    background-size: cover;
  }  
  #top_first .top_first_list .list:nth-child(2):before {
    background: url(/wp-content/uploads/images/first_img002.webp) top right no-repeat;
    background-size: cover;
  }  
  #top_first .top_first_list .list:nth-child(3):before {
    background: url(/wp-content/uploads/images/first_img003.webp) top left no-repeat;
    background-size: cover;
  }    
  #top_first .top_first_list .list:nth-child(4):before {
    background: #f2f2f2 url(/wp-content/uploads/images/first_img004.webp) top right no-repeat;
    background-size: cover;
  }   
  /*
  #top_first .top_first_list .list:nth-child(1):after {
    background: #fafafa;
  }  

  #top_first .top_first_list .list:nth-child(1) .text {
    padding: 2vw 4vw 8vw;
  }  
  #top_first .top_first_list .list:nth-child(2):after {
    background: #f2f2f2;   
  }   
  #top_first .top_first_list .list:nth-child(2):before {
    background: url(/wp-content/uploads/images/first_img002.webp) top right no-repeat;
    background-size: 40% auto;
  }  
  #top_first .top_first_list .list:nth-child(2) .text {
    padding: 4vw 4vw 6vw;
  }  
  #top_first .top_first_list .list:nth-child(3):after {
    background: #fafafa;   
  }     
  #top_first .top_first_list .list:nth-child(3):before {
    background: url(/wp-content/uploads/images/first_img003.webp) top left no-repeat;
    background-size: 40% auto;
  }  
  #top_first .top_first_list .list:nth-child(3) .text {
    padding: 2vw 4vw 8vw;
  } 
  #top_first .top_first_list .list:nth-child(4):after {
    background: #f2f2f2; 
  }    
  #top_first .top_first_list .list:nth-child(4) .text {
    padding: 4vw 4vw 6vw;
  } 
  #top_first .top_first_list .list:nth-child(4):before {
    background: #f2f2f2 url(/wp-content/uploads/images/first_img004.webp) top right no-repeat;
    background-size: 40% auto;
  }  
  */
  #top_first .top_first_list .list .text .title {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.25;
  }
  #top_first .top_first_list .list .text .title span {
    color: #f90;
  }
  #top_first .top_first_list .list .text p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_first .top_first_list .list .text p.bold {
    font-weight: 600;
  }
  #top_first .top_first_list .list .text li {
    position: relative;
    padding-left: 1.5em;
    font-weight: 600;
  }
  #top_first .top_first_list .list .text li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }  
  #top_first .top_first_message_b {
    font-weight: 600;
    text-align: center;    
  }
  #top_first .top_first_message_b p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  /* 私たちの理念 */
  #top_philosophy {
    color: #fff;
  }
  #top_philosophy .philosophy_list {
    padding: 0 1.5rem;
  }
  #top_philosophy .philosophy_list .list {
    padding: 3rem 1.5rem;
    box-sizing: border-box;
  }
  #top_philosophy .philosophy_list .list:first-child {
    padding-top: 0;
  }
  #top_philosophy .philosophy_list .list:nth-child(n+2) {
    border-top: 1px solid #fff;
  }
  #top_philosophy .philosophy_list .list .icon {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  #top_philosophy .philosophy_list .list .icon img {
    width: 25%;
    height: auto;
  }
  #top_philosophy .philosophy_list .list .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  #top_philosophy .philosophy_list .list .title .eng {
    font-size: 3rem;
    font-weight: 900;
  }
  #top_philosophy .philosophy_list .list .title .jap {
    font-size: 1.4rem;
    font-weight: 600;
  }
  #top_philosophy .philosophy_list .list .message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
  }
  #top_philosophy .philosophy_list .list .comment > *:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_philosophy .philosophy_list .list .comment ul {
    font-size: 1.6rem;
  }
  #top_philosophy .philosophy_list .list .comment li {
    position: relative;
    padding-left: 1.5em;
  }
  #top_philosophy .philosophy_list .list .comment li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  /* 5つの強み */
  #top_workstyle {
    color: #fff;
  }
  #top_workstyle .workstyle_list .list {}
  #top_workstyle .workstyle_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_workstyle .workstyle_list .list .image {
    margin-bottom: 1.5rem;
  }
  #top_workstyle .workstyle_list .list .image img {
    box-shadow: -.8rem .8rem 0 0 rgba(43,43,43,1);
  }
  #top_workstyle .workstyle_list .list .text {}
  #top_workstyle .workstyle_list .list .text .heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  #top_workstyle .workstyle_list .list .text .number {
    margin-right: .3em;
    color: #f90;
    font-size: 6rem;
    font-weight: 600;
    line-height: 1;
    font-family: "tt-commons-pro", sans-serif;
  }
  #top_workstyle .workstyle_list .list .text .title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
  }
  /* 求める人材 */
  #top_recruit {}
  #top_recruit .recruit_title {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
  }
  #top_recruit .recruit_list {
    width: 800px;
    max-width: 100%;
    margin: 0 auto 3rem;
  }
  #top_recruit .recruit_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 6rem;
    padding-right: 1.5rem;
    padding-left: 6rem;
    font-weight: 600;
    line-height: 1.5;
    background: #f2f2f2;
    box-sizing: border-box;
  }
  #top_recruit .recruit_list .list:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 6rem;
    height: 6rem;
    background: url(/wp-content/uploads/images/icon_check.svg) center center no-repeat;
    background-size: 50% 50%;
  }
  #top_recruit .recruit_list .list:nth-child(n+2) {
    margin-top: 2rem;
  }
  #top_recruit .recruit_comment {
    font-weight: 600;
    text-align: center;
  }
  #top_recruit .recruit_comment p:nth-child(n+2) {
    margin-top: 1.8em;
  }
  
  /* 最後に */  
  #top_message {
    color: #fff;
  }
  #top_message .message_box {
    font-weight: 600;
    text-align: center;
  }
  #top_message .message_box p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_message .message_box p span {
    font-size: 2rem;
  }
  /* 募集要項 */  
  #top_recruitment {}
  #top_recruitment .recruitment_table {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;    
  }
  #top_recruitment .recruitment_table table {
    width: 100%;
    table-layout: fixed;
  }
  #top_recruitment .recruitment_table tr:nth-child(n+2) {
    border-top: 1rem solid #f2f2f2;
  }
  #top_recruitment .recruitment_table th,
  #top_recruitment .recruitment_table td {
    display: block;
    width: 100%;
    padding: 1.5rem;
    line-height: 1.8;
    box-sizing: border-box;
  }
  #top_recruitment .recruitment_table th {
    color: #fff;
    font-weight: 600;
    text-align: center;
    background: #3b3b3b;
  }
  #top_recruitment .recruitment_table td {
    border-top: 1rem solid #f2f2f2;
    text-align: left;
    background: #fff;
  }
  #top_recruitment .recruitment_table td > *:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_recruitment .recruitment_table td p span {
    font-weight: 600;
  }
  #top_recruitment .recruitment_table td ul {
    font-size: 1.6rem;
  }
  #top_recruitment .recruitment_table td li {
    position: relative;
    padding-left: 1.5em;
  }
  #top_recruitment .recruitment_table td li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  /* 採用ステップ */     
  #top_flow {}
  #top_flow .flow_list {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
  }
  #top_flow .flow_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_flow .flow_list .list .title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 4rem;
    padding: 1em;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 600;
    background: #c01;
    box-sizing: border-box;   
  }
  #top_flow .flow_list .list .title br {
    display: none;
  }
  #top_flow .flow_list .list .title:after {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    content: "";    
    width: 100%;
    height: 2rem;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    background: #c01;
  }  
  #top_flow .flow_list .list .comment li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.8;
  }
  #top_flow .flow_list .list .comment li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  /* 会社情報 */   
  #top_company .company_flex {}
  #top_company .company_flex .image {
    margin-bottom: 3rem;
  }
  #top_company .company_flex .image img {
    box-shadow: -.8rem .8rem 0 0 rgba(43,43,43,1);
  }
  #top_company .company_flex .text {}
  #top_company .company_flex .text a {
    color: #fff;
  }
  #top_company .company_flex .text table {
    width: 100%;
  }
  #top_company .company_flex .text table th,
  #top_company .company_flex .text table td {
    position: relative;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
  }
  #top_company .company_flex .text table th {
    padding-right: 1em;
  }
  #top_company .company_flex .text table th:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "：";
  }
  #top_company .company_flex .text table td {
    padding-left: .5em;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .bg_transform {
    position: relative;
  }
  .bg_transform:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
  }
  .bg_transform:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 50%;
  }
  

  #top_first .top_first_message_b {
    padding: 6rem 0;
  }
  /* 私たちの理念カバー */
  #top_philosophy {
    padding: 6rem 0 3rem;;
  }
  #top_philosophy:after {
    background: #c01;
    transform: skewY(4deg);
    transform-origin: top right;    
    z-index: 8;
  }  
  /* 5つの強みカバー */
  #top_workstyle {
    padding: 3rem 0 6rem;
  }
  #top_workstyle:after {
    background: #3b3b3b url(/wp-content/uploads/images/bg_workstyle.webp) top center no-repeat;
    background-size: 100% auto;
    transform: skewY(4deg);
    transform-origin: top right;    
    z-index: 7;
  }
  #top_workstyle:before {
    background: #c01;
    transform: skewY(-4deg);
    transform-origin: bottom left;    
    z-index: 6;
  }
  /* 求める人物像カバー */
  #top_recruit {
    padding: 6rem 0;
  }
  /* 最後にカバー */
  #top_message {
    padding: 6rem 0;
    color: #fff;
    z-index: 5;
  }
  #top_message:after {
    background: url(/wp-content/uploads/images/bg_message.webp) top center no-repeat;
    background-size: cover;
    transform: skewY(-4deg);
    transform-origin: top right;    
    z-index: 6;
  }  
  #top_message:before {
    background: #ccc;
    transform: skewY(4deg);
    transform-origin: bottom left;    
    z-index: 5;
  }  
  /* 募集要項カバー */
  #top_recruitment {
    padding: 6rem 0;
  }
  #top_recruitment:after {
    background: #f2f2f2;
    transform: skewY(4deg);
    transform-origin: top right;    
    z-index: 4;
  }
  #top_recruitment:before {
    background: #ccc;
    transform: skewY(-4deg);
    transform-origin: bottom left;
    z-index: 3;
  }  
  /* 採用ステップカバー */
  #top_flow {
    padding: 3rem 0;
    z-index: 2;
  }
  /* 会社情報カバー */
  #top_company {
    padding: 6rem 0;
    color: #fff;
    z-index: 1;
  }
  #top_company:after {
    background: #3b3b3b;
    transform: skewY(-4deg);
    transform-origin: top right;    
    z-index: 0;
  }  
  
  
}
/******************************************************
フッター
******************************************************/
@media screen and (min-width: 1240px) {
  #f_contact_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #f_contact_list .list {
    width: 50%;
  }
  #f_contact_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 180px;
    color: #fff;
    font-size: 4.8rem;
    text-align: center;
    box-sizing: border-box;
    background: #1b1b1b;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear; 
  }
  #f_contact_list .list a:hover {
    background: #2b2b2b;
  }
  #f_contact_list .list a.tel {
    padding-left: calc((100vw - 1200px) / 2);
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 600;    
  }
  #f_contact_list .list a.entry {
    padding-right: calc((100vw - 1200px) / 2);
    font-weight: 600;
  }  
  #f_contact_list .list a span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    height: 2em;
  }
  #f_contact_list .list:nth-child(n+2) a span {
    border-left: 1px solid #6b6b6b;    
  }
  #f_contact_list .list a span:before {
    display: block;
    width: 1.2em;
    height: 1.2em;
    margin-right: .5em;
    content: "";
  }
  #f_contact_list .list a.tel span:before {
    background: url(/wp-content/uploads/images/icon_tel.svg) center center no-repeat;
    background-size: contain;
  }
  #f_contact_list .list a.entry span:before {
    background: url(/wp-content/uploads/images/icon_mail.svg) center center no-repeat;
    background-size: contain;
  }
  #copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 180px;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    background: #161616;
  }
}
@media screen and (max-width: 1239px) {
  #f_contact_list {
    display: none;
  }
  #f_contact_list .list {
    width: 50%;
  }
  #f_contact_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 60px;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    box-sizing: border-box;
    background: #1b1b1b;
  }
  #f_contact_list .list a.tel {
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 600;    
  }
  #f_contact_list .list a.entry {
    font-weight: 600;
  }  
  #f_contact_list .list a span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    height: 2em;
  }
  #f_contact_list .list:nth-child(n+2) a span {
    border-left: 1px solid #6b6b6b;    
  }
  #f_contact_list .list a span:before {
    display: block;
    width: 1.2em;
    height: 1.2em;
    margin-right: .5em;
    content: "";
  }
  #f_contact_list .list a.tel span:before {
    background: url(/wp-content/uploads/images/icon_tel.svg) center center no-repeat;
    background-size: contain;
  }
  #f_contact_list .list a.entry span:before {
    background: url(/wp-content/uploads/images/icon_mail.svg) center center no-repeat;
    background-size: contain;
  }
  #copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60px;
    padding-bottom: 6rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background: #161616;
  }
}



/******************************************************
応募フォーム
******************************************************/
@media screen and (min-width: 1240px) {
  #entry_cover {
    padding: 12rem 0;
    background: #3b3b3b;
  }
  .entry_form {
    width: 800px;
    max-width: 100%;
    margin: 0 auto 3rem;
    padding: 5rem;
    background: #fff;
    box-sizing: border-box;
  }
  .entry_form .entry_box:nth-child(n+2) {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #ccc;
  }
  .entry_form .entry_title {
    margin-bottom: .8em;
    padding: .8em;
    color: #fff;
    font-weight: 600;
    line-height: 1.5;
    background: #c01;
  }
  .entry_form dl:nth-of-type(n+2) {
    margin-top: 1.2em;
  }
  .entry_form dl dt,
  .entry_form dl dd {
    position: relative;
    line-height: 1.5;
  }
  .entry_form dl dt {
    padding-left: 1.5em;
  }
  .entry_form dl dt .req {
    display: inline-block;
    margin-left: .8em;
    padding: 0 .8em;
    color: #fff;
    font-size: 1.2rem;
    background: #f90;
  }
  .entry_form dl dt:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "●";
    /*color: #c01;*/
  }
  .mw_wp_form.mw_wp_form_confirm dd {
    padding: 2rem;
    background: #f2f2f2;
  }
  .entry_form dl dd {
    margin-top: .4em;
  }
  .entry_form dl dd div:nth-of-type(n+2) {
    margin-top: .8em;
  }
  .mw_wp_form.mw_wp_form_confirm dl dd div:nth-of-type(n+2) {
    margin-top: 0;
  }
  .mw_wp_form.mw_wp_form_confirm dd .no_confirm {
    display: none;
  }  
  .entry_form input,
  .entry_form textarea {
    padding: .4em;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  .entry_form input[type=text],
  .entry_form input[type=email],
  .entry_form textarea {
    width: 100%;
  }
  .entry_form input[type=tel] {
    width: 50%;
  }
  .entry_btn {
    text-align: center;
  }
  .entry_btn input[type=submit],
  .entry_btn button[type=submit] {
    width: 120px;
    height: 4rem;
    color: #fff;    
    font-size: 1.4rem;
    font-weight: 600;
    background: #c01;
    border: none;
  }
  .entry_btn button[type=submit] {
    background: #6b6b6b;
  }
  .thanks_comment {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 5rem;
    padding: 0 5rem;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
  }
  .thanks_comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  .back_btn {
    margin: 0 auto;
    text-align: center;
  }
  .back_btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    height: 60px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    background: #c01;
  }
}
@media screen and (max-width: 1239px) {
  #entry_cover {
    padding: 3rem 1.5rem;
    background: #3b3b3b;
  }
  .entry_form {
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: #fff;
  }
  .entry_form .entry_box:nth-child(n+2) {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #ccc;
  }
  .entry_form .entry_title {
    margin-bottom: .8em;
    padding: .8em;
    color: #fff;
    font-weight: 600;
    line-height: 1.5;
    background: #c01;
  }
  .entry_form dl:nth-of-type(n+2) {
    margin-top: 1.2em;
  }
  .entry_form dl dt,
  .entry_form dl dd {
    position: relative;
    line-height: 1.5;
  }
  .entry_form dl dt {
    padding-left: 1.5em;
  }
  .entry_form dl dt .req {
    display: inline-block;
    margin-left: .8em;
    padding: 0 .8em;
    color: #fff;
    font-size: 1.2rem;
    background: #f90;
  }
  .entry_form dl dt:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "●";
    /*color: #c01;*/
  }
  .mw_wp_form.mw_wp_form_confirm dd {
    padding: 1.5rem;
    background: #f2f2f2;
  }
  .entry_form dl dd {
    margin-top: .4em;
  }
  .entry_form dl dd div:nth-of-type(n+2) {
    margin-top: .8em;
  }
  .mw_wp_form.mw_wp_form_confirm dl dd div:nth-of-type(n+2) {
    margin-top: 0;
  }    
  .mw_wp_form.mw_wp_form_confirm dd .no_confirm {
    display: none;
  }
  .entry_form input,
  .entry_form textarea {
    padding: .4em;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  .entry_form input[type=text],
  .entry_form input[type=email],
  .entry_form textarea {
    width: 100%;
  }
  .entry_form input[type=tel] {
    width: 50%;
  }
  .entry_btn {
    text-align: center;
  }
  .entry_btn input[type=submit],
  .entry_btn button[type=submit] {
    width: 120px;
    height: 4rem;
    color: #fff;    
    font-size: 1.4rem;
    font-weight: 600;
    background: #c01;
    border: none;
  }
  .entry_btn button[type=submit] {
    background: #6b6b6b;
  }
  .thanks_comment {
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    color: #fff;
    box-sizing: border-box;
  }
  .thanks_comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  .back_btn {
    margin: 0 auto;
    text-align: center;
  }
  .back_btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 200px;
    height: 50px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    background: #c01;
  }  
}