@charset "utf-8";
/*****************************************
	style.css
	ページのみで使うスタイル
******************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*********************************
 ヘッダー
*********************************/
@media only screen and (min-width: 768px){
  header h1 {
    width: calc(100% - var(--width_logo));
    padding: 0 75px 0 15px; /* padding15 + menu60px */
  }
  header.spmode {
    margin-bottom:1.2em;
  }
  header.pcmode #h_wrapper h1{
    padding:0;
  }
}
@media only screen and (max-width: 767px){
  header h1 { width: 100%; }
  header h1 span { display: block; }
}
@media only screen and (max-width: 360px){
  header img.logo {
    max-width: calc(var(--width_logo) - 10px);
    margin-right: 10px;
  }
}

/*********************************
 hamburger menu
*********************************/
.navwrap {
  width: auto;
  height: auto;
  font-size: 1rem;
  background-color: transparent;
  /* padding-left: 15px; */
}
@media only screen and (max-width: 767px){
  .navwrap { padding-left: 0; }
}
/*------------------------------
 トグル(開閉)ボタン
-------------------------------*/
.navwrap::before {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
}
header.pcmode .toggle_box{
	display:none;
}
.toggle_box {
  position: fixed;
  top: 0;
  /* 中央1000pxの右端に揃える */
  right: calc((100% - 1000px)/2);
  display: block;
  z-index: 9999;
}
/* ガタツキ防止 */
html.is-fixed .toggle_box {
	right: calc((100% - 1000px + var(--scrollbar-width, 0px)) / 2);
}
.toggle_box .toggle_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color_link);
  transition: opacity .3s;
  opacity: 1;
  width: 60px;
  height: 60px;
  padding: 10px 0;
  cursor: pointer;
  border: 0 !important;
  appearance: none;
  -webkit-appearance: none;
}
.toggle_box .toggle_btn.open span:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}
.toggle_box .toggle_btn.open span:nth-child(2) {
  opacity: 0;
}
.toggle_box .toggle_btn.open span:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}
.toggle_box .toggle_btn span {
  transition: transform .3s;
  margin: 0 auto;
  width: 60%;
  display: block;
  height: 3px;
  background-color: #fff;
}
.toggle_box .toggle_btn span:nth-child(2) {
  margin: 6px auto;
}
/****** menu opened ******/
.toggle_box .toggle_btn.open {
  background-color: #fff;
}
.toggle_box .toggle_btn.open span {
  background-color: var(--color_link);
}
@media only screen and (max-width: 1000px){
  .toggle_box { right: 0px; }
  /* ガタツキ防止 */
  html.is-fixed .toggle_box {
    right: calc(0px + var(--scrollbar-width, 0px));
  }
}
@media only screen and (min-width: 768px){
  .toggle_box .toggle_btn:hover { opacity: 0.7; }
}
@media only screen and (max-width: 767px){
  .toggle_box .toggle_btn:active { opacity: 0.7; }
}
/*==================================
*** トグルボタンのバリエーション
===================================*/
/* -----------------------------------
 ** 四角・白タイプ：navwrap に wh を追加
------------------------------------- */
.navwrap.wh .toggle_box .toggle_btn {
  border: 1px solid #E0E0E0;
  background-color: #fff;
}
.navwrap.wh .toggle_box .toggle_btn span {
  background-color: var(--color_link);
}
/* -----------------------------------
 ** 角丸タイプ：navwrap に r1 を追加
------------------------------------- */
.navwrap.r1 .toggle_box .toggle_btn {
  border-radius: 0 0 var(--size_r1) var(--size_r1);
}
/*------------------------------
 nav.gnav
-------------------------------*/
.gnav {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9998;
}
.gnav .navcnt {
  overflow-y: initial;
  background-color: #fff;
  padding: 80px 0;
}
.gnav .navlogo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

/****** menu opened ******/
/* 開閉時のガタツキ修正 */
html.is-fixed #container {
  overflow: auto;
  scrollbar-gutter: stable;
}
html.is-fixed .gnav.fixed {
  scrollbar-gutter: stable; 
}
.gnav.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.gnav.fixed .navcnt {
  width: 100%; /*var(--innerwidth)*/
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9998;
}
.gnav.fixed .navcnt {
  /* scrollbar-width: none; */
  -ms-overflow-style: none;
}
.gnav.fixed .navcnt::-webkit-scrollbar {
  display: none;
}
.gnav.fixed .navlogo {
  width: var(--innerwidth);
  position: relative;
  top: -60px;
  z-index: 9999;
}
.gnav.fixed .navlogo a {
  display: block;
  width: auto;
}
html.is-fixed {
  overflow: hidden;
  transition: transform 30s ease-in;
  width: 100%;
  height: 100%;
}
html:not(.is-fixed) {
  position: relative;
  overflow: visible;
  transition: transform .1s;
}

@media only screen and (max-width: 767px) {
  html.is-fixed .gnav.fixed .navcnt {
    width: 100%;
  }
  .gnav.fixed .navlogo {
    flex-direction: column;
    height: auto;
  }
  .gnav.fixed .navlogo img {
    width: 100%;
    max-width: var(--width_logo);
    margin: 10px auto;
  }
}
@media only screen and (max-width: 360px){
  .gnav.fixed .navlogo img {
    max-width: calc(var(--width_logo) - 10px);
    margin-right: 10px;
  }
}
/* メニュー本体 */
.gnav ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1020px;
  height: auto;
  margin: 0 auto;
  padding: 0 10px;
}
header.pcmode .gnav ul{
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 1.2em 0;
  margin: inherit;
}
header.pcmode .gnav li a {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  border-right: 1px solid var(--color_link);
  padding: 0 1em;
  display: block;
  text-align: center;
}
header.pcmode .gnav li:last-of-type a {
  border-right: none;
}
@media only screen and (max-width: 850px) and (min-width: 768px){
  header.pcmode .gnav li {
    font-size: 15px;
    padding: 0 0.7em;
  }
}
header.spmode .gnav ul {
  gap: 2px; /* アウトラインが重ならないようにする */
}
header.spmode .gnav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  background-color: #fff;
  transition: opacity .3s;
}
header.spmode .gnav ul li:hover {
  transition: opacity .3s;
  background-color: var(--color_liteBg);
  opacity: 0.7;
}
header.spmode .gnav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  width: 100%;
  height: 100%;
}
.gnav ul li a:link,
.gnav ul li a:active,
.gnav ul li a:visited {
  color: var(--color_link) !important;
}
.gnav ul li a:hover {
  color: var(--color_link) !important;
  text-decoration: none !important;
}
@media only screen and (max-width: 767px) {
  .gnav ul li a span { font-size: 16px; }
}

/* 求人検索メニュー（PCモード：横並びメニュー）*/
header.pcmode .gnav {
  position: static;
}
header.pcmode .gnav .navcnt {
  padding: 0;
}
header.pcmode .gnav .lazyscroll {
  flex-direction: inherit;
  margin: auto;
}
header.spmode .gnav{
  display:none;
}
@media only screen and (max-width: 767px) {
  header.pcmode .gnav{
    display:none;
  }
}

/*******************************
 KV
*******************************/
#kv picture {
	width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}
#kv picture img {
	width: 100%;
}

/*******************************
 キャッチ、リード文
*******************************/
#catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  margin: 35px auto 60px;
}
#catch em {
  font-size: 30px;
  font-weight: bold;
  font-style: normal;
  text-align: center;
}
#catch em span { display: block; }
.lead {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  max-width: 100%;
  padding-top: 1em;
}
@media only screen and (max-width: 767px){
  #catch {
    margin: 40px auto 20px;
  }
  #catch em {
    font-size: 22px;
    text-align: left;
    max-width: 100%;
  }
  #catch em span { display: inline; }
  .lead { text-align: left; }
}
/*******************************
 （セレクト要素）
*******************************/
#optionalCont .lead {
  text-align: center;
  padding: 0 0 10px;
}
@media only screen and (max-width: 767px){
  #optionalCont .lead {
    text-align: justify;
  }
}
/*******************************
 section
*******************************/
.secbox {
  padding: 0;
  margin: 30px auto 50px;
}
#sch_by_place.secbox { margin: 30px auto 60px; }
#intv.secbox,
#about.secbox { margin: 30px auto; }
#faq.secbox { margin: 30px auto 50px; }

@media only screen and (max-width: 1030px) and (min-width: 768px) {
  .secbox { padding: 0 2%; }
}
@media only screen and (max-width: 767px){
  .secbox {
    padding: 0 15px;
    margin: 0 auto 30px;
  }
  #intv.secbox,
  #about.secbox { 
    padding: 0; 
  }
}

/*******************************
 heading
*******************************/
h2.cmn {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 0.5em 0;
}
#sch_by_place h2.cmn { padding-bottom: 0.75em; }

@media only screen and (max-width: 767px){
  h2.cmn {
    font-size: 28px;
    padding: 20px 0 10px;
  }
}
@media only screen and (max-width: 519px){
  h2.cmn {
    padding: 20px 0 10px;
  }
  #sch_by_place h2.cmn { padding-bottom: 10px; }
}
@media only screen and (max-width: 360px){
  h2.cmn { font-size: 24px; }
}
/*******************************
 heading（セレクト要素）
*******************************/
h2.sel {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  padding: 20px 0 22px;
}
h2.sel:focus,
h2.sel:active{
  border: none;
  outline: none;
}

h3.sel {
  color: var(--color_text);
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  width: 100%;/*IE*/
  padding: 0 0 10px;
}
@media only screen and (max-width: 767px){
  h2.sel {
    font-size: 28px;
    padding: 20px 0;
  }
  h2.sel span {
    display: block;
  }
  #intv.secbox h2.sel {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 519px){
  h2.sel { padding: 10px 0 15px; }
}
@media only screen and (max-width: 360px){
  h2.sel { font-size: 24px; }
}

/*******************************
 ▼ボタン
*******************************/
.btn_box {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.btn_box .box_inner {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: flex-start; */
  justify-content: center;
}
/*------------------------------
ボタン内調整
-------------------------------*/
.btn_box .box_inner li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%; /*IE*/
  margin: 0 7.5px 20px;
  position: relative;
}
.btn_box .box_inner li a:after {
  font-family: recop-iconfonts;
  content: "\E845";
  color: var(--color_tmText);
  line-height: 1;
  position: absolute;
  right: 15px;
  top: 21px;
}
.btn_box .box_inner li a.longtxt:after {
  right: 12px;
}
.btn_box .box_inner li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  color: var(--color_tmText) !important;
  line-height: 1.3;
  width: 100%;
  height: 60px;
  background-color: var(--color_theme);
  padding: 0.4em 25px;
  transition: opacity .3s;
  box-sizing: border-box;
}
.btn_box .box_inner li a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.btn_box .box_inner li a span {
  display: inline-block;
}
/****** 3 columns ******/
.btn_box .box_inner.col3 li {
  width: calc((99.5% - 45px) / 3);/*IE*/
}
/****** 4 columns ******/
.btn_box .box_inner.col4 li {
  width: calc((100% - 60px) / 4);
}
@media only screen and (max-width: 1000px) {
  .btn_box .box_inner.col3 li {
    width: calc((100% - 30px) / 3);
    margin: 0 5px 20px;
  }
  .btn_box .box_inner.col4 li {
    width: calc((100% - 40px) / 4);
    margin: 0 5px 20px;
  }
}
@media screen and (min-width: 768px) {
  .btn_box .box_inner li a.longtxt {
    line-height: 1;
    padding: 0.4em 21px 0.4em 16px;
  }
}
@media only screen and (max-width: 1030px) and (min-width: 768px) {
  /* ボタン内改行 */
  .btn_box .box_inner li a {
    font-size: 17px;
    padding: 0.4em 16px 0.4em 0.3em;
  }
  .btn_box .box_inner.col4 li a {
    letter-spacing: -0.5px;
  }
  .btn_box .box_inner li a:after,
  .btn_box .box_inner li a.longtxt:after {
    right: 8px;
  }

  /* 文字数が多い場合（1行11文字程度 × 2行） */
  .btn_box .box_inner li a.longtxt {
    padding: 0.4em 14px 0.4em 0.2em;
  }
  .btn_box .box_inner.col4 li a.longtxt {
    font-size: 90%;
    letter-spacing: -0.5px;
  }
}
@media only screen and (max-width: 767px) {
  .btn_box { width: 100%; }
  .btn_box .box_inner li,
  .btn_box .box_inner.col3 li,
  .btn_box .box_inner.col4 li {
    width: 100%;
    margin: 0 0 10px;
  }
  .btn_box .box_inner li a.longtxt:after {
    right: 15px;
  }
}
@media only screen and (max-width: 374px){
  .btn_box .box_inner li a:after,
  .btn_box .box_inner li a.longtxt:after {
    right: 12px;
  }
  .btn_box .box_inner li a {
    font-size: 16px;
  }
}

/*------------------------------
  ボタン（中央配置、1つ）
-------------------------------*/
.sch_all {
  margin: 50px auto;
}
.btn_entry {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 60px;
  position: relative;
  box-sizing: border-box;
}
.btn_entry a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  width: 100%;
  height: 60px;
  padding: 0.4em 25px;
  background-color: var(--color_sch);
  transition: opacity .3s;
  box-sizing: border-box;
}
.btn_entry a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.btn_entry a:link, .btn_entry a:active, .btn_entry a:visited, .btn_entry a:hover {
  color: var(--color_schText) !important;
}
.btn_entry a:after {
  font-family: recop-iconfonts;
  content: "\E845";
  color: var(--color_schText);
  font-weight: normal;
  line-height: 1;
  position: absolute;
  right: 15px;
  top: 21px;
}
@media only screen and (max-width: 767px){
  .sch_all {
    margin: 40px auto;
  }
  .btn_entry {
    max-width: 100%;
    max-width: initial;
    margin: 30px auto;
   }
}
/*==================================
*** ボタンのバリエーション ** 四角角丸、丸タイプ
===================================*/
.btn_box .box_inner.r1 li a,
.btn_entry.r1 a {
  border-radius: var(--size_r1);
}
.btn_box .box_inner.r2 li a,
.btn_entry.r2 a {
  border-radius: var(--size_r2);
}

/*******************************
 pageTopへボタン
*******************************/
/* iOSのスマホ用の調整 */
body#pagetop {
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}
html { height: -webkit-fill-available; }
/* ボタン本体 */
#scroll_pagetop {
  /* position: absolute; */
  width: 60px;
  bottom: 100px;
  margin: 0 15px 0 auto;
}
#scroll_pagetop a {
  position: fixed;
  bottom: 20px;
  right: calc((100% - 1000px) / 2 - 60px); /* 1000px幅の右端＋60px外 */
  
  display: block;
  width: 60px;
  height: 60px;
  background: rgba(var(--color_text_rgb), 0.5);
  border-radius: 10px;
  text-align: center;
  z-index: 101;
}
/* ガタツキ防止 */
html.is-fixed #scroll_pagetop a {
  right: calc((100% - 1000px + var(--scrollbar-width, 0px)) / 2 - 60px);
}
#scroll_pagetop a:hover {
  background: rgba(var(--color_text_rgb), 0.7);
  text-decoration: none !important;
}
#scroll_pagetop a:visited { color: #fff !important;}
#scroll_pagetop a:before {
  font-family: recop-iconfonts;
  content: "\e848";
  color: #fff !important;
  font-size: 30px;
  line-height: 60px;
}
/* スクリーンリーダー用テキスト */
#scroll_pagetop a span {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  top: 0;
  clip: rect(1px, 1px, 1px, 1px);
}
@media only screen and (max-width : 1200px) and (min-width : 768px) {
  #scroll_pagetop a {
    bottom: 20px;
    margin-right: 0;
    right: 15px;
  }
  /* ガタツキ防止 */
  html.is-fixed #scroll_pagetop a {
    right: calc(15px + var(--scrollbar-width, 0px));
  }
}
@media screen and (max-width: 767px) {
  #scroll_pagetop a {
    bottom: 20px;
    right: 15px;
    margin-right: 0;
    font-size: 16px;
    text-align: center !important;
  }
  /* ガタツキ防止 */
  html.is-fixed #scroll_pagetop a {
    right: calc(15px + var(--scrollbar-width, 0px));
  }
  #scroll_pagetop a.stop {
    /* position: absolute; */
    bottom: 130px;
  }
}
@media screen and (max-width: 519px) {
  #bottomContent #social {
    padding: 0 10px;
    box-sizing: border-box;
  }
}

/*******************************
 #bottomContent - #areaLink
*******************************/
#areaLink div.area {
  width: 100%;
  max-width: 1000px;
  min-height: 100px; /* TOPフッター暫定対応 */
  margin: auto;
}
#areaLink div.area table {
  margin: 0 10px 20px 0;
}
#areaLink div.area table a {
  color: var(--color_text)!important;
}
@media only screen and (max-width: 767px){
  #bottomContent #areaLink {
    padding: 0 15px;
  }
  #areaLink div.area {
    margin: 0 10px 20px auto;
  }
  #areaLink div.area table {
    margin: 0 0 0 auto;
  }
}

/*******************************
 フッター 調整
*******************************/
@media only screen and (max-width: 767px){
  #footer { position: relative; }
}

/*=========================================================================*/
/* ブロックスキップ（アクセシビリティ）※TABキーで確認 */
/*=========================================================================*/
.skipNav { position: relative; }
.skipNav a {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
.skipNav a:focus,
.skipNav a:active {
  display: block;
  width: 15em;
  height: auto;
  top: 10px;
  left: 10px;
  clip: auto;
  z-index: 1000;
  font-size: 1rem;
  padding: 5px;
  background-color: #FFF;
  border: 1px solid #999;
  border-radius: 10px;
  text-align: center;
}


/*=============================================================================================================*/
/* セレクト要素 */
/*=============================================================================================================*/
#optionalCont {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
#optionalCont * {
  box-sizing: border-box;
}

/*******************************
 ３段組（セレクト要素共通）
*******************************/
.cmn3cols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: flex-start; */
  justify-content: center;
  align-items: stretch;
}
.cmn3cols dl {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: 1 0 auto; /* fix IE11 */
  width: calc((100% - 45px) / 3);
  border: 1px solid #ccc;
  padding: 30px 20px;
  margin: 0 7.5px 20px;
}
/* 調整 2列＆幅半分 */
.cmn3cols.to2c dl {
  width: calc(96% / 2);
  margin: 0 1% 20px;
}
/* cf L.865 */
.cmn3cols dt {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  padding: 10px 0; /* 10px 0 25px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-basis: calc(2.8em + 20px);
  flex-shrink: 0; /* fix IE11 */
}
.cmn3cols dt span {
  display: block;
}
.cmn3cols dd {
  width: 100%; /*IE*/
}
.cmn3cols dd.pic img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto; /* SP横回転時 */
}
.cmn3cols dd.txt {
  font-size: 16px;
  text-align: justify;
  padding: 20px 0 0;
}
.cmn3cols dd.btn {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 2;
  padding: 15px 0 0 ;
}
@media only screen and (min-width: 768px) {
  /* 調整 横1-2列の時 */
  .cmn3cols dl { max-width: calc((100% - 45px) / 3); }
  /* 調整 2列＆幅半分 */
  .cmn3cols.to2c dl { max-width: calc(96% / 2); }
}
@media only screen and (max-width: 1030px) and (min-width: 768px) {
  .cmn3cols dl {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 767px){
  .cmn3cols {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .cmn3cols dl,
  .cmn3cols.to2c dl /* 追加 */ {
    width: 100%;
    margin: 0 0 20px;
  }
  .cmn3cols dt {
    padding: 0 0 20px;
    padding: 0 0 10px;
    flex-basis: auto;
  }
  .cmn3cols dd.pic img {
    max-width: 100%; /*295px*/
  }
  #jobdata .cmn3cols dd.pic img { max-width: 280px; }
  .cmn3cols dd.txt {
    padding: 15px 0 0;
  }
  .cmn3cols dd.btn {
    padding: 12px 0 0 ;
  }
}

/* アイコン使用枠（メリット、制度紹介） */
.cmn3cols.narrow dl {
  padding: 15px 20px 20px;
}
.cmn3cols.narrow dl dt {
  order: 2;
}
.cmn3cols.narrow dl dt.opp {
  justify-content: center;
}
.cmn3cols dd.icn {
  order: 1;
  flex-basis: 90px;
}
.cmn3cols dd.icn img {
  width: 100%;
  max-width: 90px;
  margin: 0 auto; /* SP横回転時 */
}
.cmn3cols.narrow dl dd.txt {
  order: 3;
  /* flex: 10 1 6.8em; */
  flex-grow: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}
@media only screen and (max-width: 767px){
  .cmn3cols.narrow dl dt,
  .cmn3cols.narrow dl dd.txt {
    flex-basis: auto;
  }
  .cmn3cols.narrow dl dd.txt {
    padding: 5px 0 10px;
  }
}

/*******************************
 ３段組みボタン（セレクト要素共通）
*******************************/
.cmn3cols dd.btn a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff !important;
  line-height: 1.3;
  width: 100%;
  height: 60px;
  padding: 0.4em 25px;
  background-color: var(--color_theme);
  transition: opacity .3s;
  position: relative;
}
.cmn3cols dd.btn a:after {
  font-family: recop-iconfonts;
  content: "\E845";
  color: #fff;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  right: 15px;
  top: 21px;
}
.cmn3cols dd.btn a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
@media only screen and (min-width: 768px){
  .cmn3cols dd.btn a.longtxt {
    line-height: 1;
    padding-top: 0.2em;
  }
}
@media only screen and (max-width: 1030px) and (min-width: 768px) {
  /* ボタン内改行 */
  .cmn3cols dd.btn a {
    font-size: 17px; /* 文字数により適宜調整可 */
    padding: 0.4em 18px 0.4em 11px;
  }
  .cmn3cols dd.btn a.longtxt {
    padding: 0.3em 23px 0.3em 10px;
  }
  .cmn3cols dd.btn a:after {
    right: 10px;
  }
}
/* @media only screen and (max-width: 900px) and (min-width: 768px) {
  .cmn3cols.to2c dd.btn a.longtxt {  }
} */

@media only screen and (max-width: 767px){}
@media only screen and (max-width: 480px){ /* 文字数により適宜調整可 */
  .cmn3cols dd.btn a.longtxt {
    display: block;
  }
  .cmn3cols dd.btn a.longtxt span {
    display: inline-block;
  }
  .cmn3cols dd.btn a:after {
    right: 12px;
  }
}
@media only screen and (max-width: 374px){
  .cmn3cols dd.btn a {
    font-size: 17px; /* 文字数により適宜調整可 */
  }
  .cmn3cols dd.btn a.longtxt {
    font-size: 16px; /* 文字数により適宜調整可 */
    line-height: 1.4; /* 文字数により適宜調整可 */
  }
}
/*==================================
*** ボタンのバリエーション ** 四角角丸、丸タイプ
===================================*/
.cmn3cols dd.btn.r1 a,
.cmn2cols dd.btn.r1 a {
  border-radius: var(--size_r1);
}
.cmn3cols dd.btn.r2 a,
.cmn2cols dd.btn.r2 a {
  border-radius: var(--size_r2);
}

/*******************************
 インタビュー
*******************************/
#intv .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
}
#intv .inner:last-of-type {
  margin-bottom: 20px;
}
#intv .prof {
  width: 100%;
}
#intv .prof img {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 15px;
}
#intv h3.sel {
  font-size: 26px;
  text-align: center;
}
#intv h3.sel span {
  display: block;
}
#intv .lead {
  font-weight: bold;
  padding: 0 0 20px;
}
.inner img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
#intv .text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: justify;
  width: 100%;/*IE*/
  padding: 0;
}
#intv .text figure {
  width: 44%;
  padding-bottom: 30px;
}
#intv .text div {
  width: 56%;
  padding: 0 0 30px 30px;
}
#intv h4 {
  font-size: 20px;
  line-height: 1.4;
  padding-bottom: 10px;
}
#intv .text.opp figure { order: 2; }
#intv .text.opp div { order: 1; padding: 0 30px 30px 0; }

@media only screen and (max-width: 767px){
  #intv .inner {
    margin-bottom: 75px;
  }
  #intv .prof,
  #intv .text {
    width: 100%;
    padding: 0 0 20px;
  }
  #intv .inner .lead {
    text-align: center;
    padding-bottom: 0;
  }
  #intv .inner .lead span {
    display: inline-block;
    padding-left: 0.3em;
  }
  #intv .text {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
  }
  #intv .text figure {
    width: 75%;
    padding-bottom: 20px;
  }
  #intv.secbox h3.sel {
    padding: 0 15px 5px;
  }
  #intv .text div {
    width: 100%;
    text-align: left;
    padding: 0 0 15px;
  }
  #intv .text.opp figure { order: 1; }
  #intv .text.opp div { order: 2; padding: 0 0 15px; }
  
}
@media only screen and (max-width: 519px){
  #intv h3.sel { font-size: 20px; }
  #intv h4 { font-size: 18px; }
  #intv .text figure { width: 80%; }
  #intv .text:last-of-type div { padding-bottom: 0; }
}

/*******************************
 企業情報
*******************************/
#about .inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
#about .inner figure {
  width: 47%;
  padding: 0 30px 30px 0;
}
#about .inner img {
  width: 100%;
  max-width: 470px; /* img440 + padding30 */
}
#about .innertxt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 53%;
}
#about .innertxt section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: justify;
  padding-bottom: 30px;
}
#about .innertxt p {
  width: 100%;/*IE*/
}
/* タテ組み（写真幅100％） */
#about .inner.toSgl {
  flex-direction: column;
  align-items: center;
}
#about .inner.toSgl figure {
  width: 100%;
  padding: 0 0 30px 0;
}
#about .inner.toSgl img {
  width: 100%;
  max-width: 100%;
}
#about .inner.toSgl .innertxt {
  width: 100%;
}
#about .toSgl .innertxt section {
  align-items: center;
  width: 100%;/*IE*/
}
#about .toSgl .innertxt section p {
  width: 100%;/*IE*/
}
@media only screen and (min-width: 768px){
  #about .toSgl .innertxt section h3.sel {
    text-align: center;
  }
}
@media only screen and (max-width: 767px){
  #about .inner {
    flex-direction: column;
    align-items: center;
  }
  #about .inner figure,
  #about .inner.toSgl figure {
    width: 100%;
    padding: 0;
  }
  #about .inner img {
    max-width: 100%;
    max-width: initial;
  }
  #about .innertxt {
    width: 100%;
  }
  #about .innertxt section {
    padding: 30px 15px 0;
  }
  #about .innertxt section:last-child p {
    padding-bottom: 15px;
  }
}

/*******************************
 FAQ
*******************************/
#faq {}
.faq_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
/* h3 */
.faq_inner h3.sel {
  color: var(--color_text);
  text-align: center;
  padding: 30px 0 0;
}
.faq_inner:first-of-type h3.sel {
  padding: 0;
}
.faq_inner dl.qa {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 10px;
}
.faq_inner dt {
  font-size: 18px;
  color: var(--color_text);
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  padding-bottom: 10px;
}
.faq_inner dt:before {
  content: 'Q.';
  color: var(--color_faqQ);
  font-size: 1.67em;/*30px*/
  line-height: 1.67;
  padding-right: 0.4em;
}
.faq_inner dd {
  font-size: 16px;
  background-color: var(--color_liteBg);
  padding: 25px 35px;
}
.faq_inner dd p {
  text-align: justify;
  padding-left: 2em;
  position: relative;
}
.faq_inner dd p:before {
  content: 'A.';
  color: var(--color_faqA);
  font-weight: bold;
  font-size: 1.25em; /*20px*/
  line-height: 1.25;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 767px){
  /* h3 */
  .faq_inner:first-of-type h3.sel,
  .faq_inner h3.sel {
    padding-bottom: 10px;
  }
  .faq_inner dl.qa {
    padding-bottom: 12px;
    margin-bottom: 5px;
    position: relative;
  }
  .faq_inner dt {
    padding: 0 30px 8px 0;
    position: relative;
  }
  .faq_inner dd {
    display: none;
    padding: 20px 15px;
  }
}

/*accordion button*/
.accordionBtn_sp{
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
}
@media only screen and (max-width: 767px){
  .accordionBtn_sp{
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right:0;
    top: 50%;
    margin-top: -12.5px;
  }
  .accordionBtn_sp::before{
    font-family: recop-iconfonts;
    content: "\E818";
    color: var(--color_faqQ);
    font-size: 24px;
    cursor: pointer;
  }
  .faq_inner dt.show .accordionBtn_sp::before{
    content: "\E825";
  }
}

/*-------------------------------------------*/
  /* アクセシビリティ対応 */
/*-------------------------------------------*/
@media only screen and (max-width: 767px) {
  .accordionBtn_sp::after {
      content:"クリック・タップで開きます";
      position: absolute;
      width: 1px;
      height: 1px;
      top: 0;
      left: 0;
      clip: rect(1px, 1px, 1px, 1px);
  }
  .show .accordionBtn_sp::after {
      content:"クリック・タップで閉じます";
  }
}

/*******************************
 登録制度
*******************************/
#reg {}
#reg .lead {
  text-align: left;
}
#reg figure {
  display: flex;
  flex-direction: column;
}
#reg img {
  align-self: center;
  width: 100%;
  max-width: 800px;
  padding: 0 0 20px;
}
#reg h3 {
  font-size: 18px;
  font-weight: bold;
}
#reg ul { padding: 0 0 30px; }
#reg ul li {
  font-size: 16px;
  text-align: justify;
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 1.5em;
}
#reg .btn_entry a,
#reg .btn_entry a:link,
#reg .btn_entry a:active,
#reg .btn_entry a:visited, 
#reg .btn_entry a:hover {
  color: var(--color_tmText) !important;
  background-color: var(--color_theme) !important;
}
#reg .btn_entry a:after {
  color: var(--color_tmText);
}
@media only screen and (max-width: 767px){
  #reg ul { padding: 0 0 25px; }
  #reg .btn_entry {
    max-width: 100%;
    max-width: initial;
    margin: 0px auto 75px;
  }
}

/*動画*/

.movie_area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  text-align: center;
}
.movie_area .m_inner {
  width: calc(96% / 2);
  border: 1px solid #ccc;
  padding: 40px 20px 30px;
  margin-bottom: 20px;
}
.movie_area .m_box {
  position: relative;
}
.movie_area .m_box::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.movie_area .m_box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .movie_area .m_inner {
    width: 100%;
    margin-bottom: 20px;
    padding: 30px 20px;
  }
}