@charset "UTF-8";


/*---------------------------- PC向けのスタイル ----------------------------*/
@media screen and (min-width: 680px) {


/*---------- ページ全体の指定 ----------*/

body {
  width: 100%;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS P ゴシック", "MS P Gothic", sans-Serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #333333;
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  
}

.img_a {
  display: block;
}

.img_b {
  display: none;
}


/*---------- メイン ----------*/

#main {
  width: 100%;
  overflow: hidden;
  margin:  0 auto 0 auto;
  padding: 0;
  text-align: center;
  background-color: #ffffff;
}


/*---------- ヘッダー ----------*/

#header {
  width: 100%;
  margin:  0 auto 0 auto;
  border-top: solid 4px #6aa8de;
  background-image: url(../img/header.png);  /*-- 背景 --*/
  background-repeat: repeat-x;
}

#header h1 {
  margin:  0 auto 0 auto;
  width: 900px;
  padding: 2px 0 0 5px;
  font-weight: normal;
  text-align: left;
  font-size: 16px;
  color: #9d896c;
}


/*---------- ヘッダー内 ----------*/

#header #header_inner {
  width: 900px;
  height: 120px;  /*-- 高さ --*/
  padding: 4px;  /*-- 余白 --*/
  margin:  0 auto 0 auto;
}


/*----- 左 logo -----*/

#h_logo {
  padding: 0;
  text-align: left;
  font-size: 14px;
  color: #444444;
  line-height: 1.5;
  text-decoration: none;
  float: left;
}

#h_logo h2 {
  margin: 0;
  padding: 20px 0 0 0;  /*-- logo 位置 --*/
  text-align: left;
  font-size: 20px;
  color: #444444;
  letter-spacing: 0.05em;
}

#h_logo a {
  font-size: 22px;
  color: #666666;
  text-decoration: none;
}

#h_logo a:hover {
  font-size: 22px;
  color: #888888;
  text-decoration: none;
}


/*----- 右 info -----*/

#h_info{
  margin: 0;
  padding: 8px 0 0 0;  /*-- info画像 位置 --*/
  text-align: right;
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  text-decoration: none;
  float: right;
}

#h_info p{
  margin: 0;
  padding: 3px;
  text-align: left;
  font-size: 14px;
  color: #444444;
  letter-spacing: 0.05em;
}

#h_info a{
  font-size: 13px;
  color: #333333;
  text-decoration: none;
}

#h_info a:hover{
  font-size: 13px;
  color: #666666;
  text-decoration: none;
}

span.tel {
  font-size: 1.42em;
  color: #c9171e;
  line-height: 1.6;
  font-weight: bold;
}

span.tel:hover{
    color: red;
}


/*---------- ヘッダーメニュー ----------*/

#header-menu {
  clear: both;
  width: 100%;
  margin: 6px auto 0 auto;
  padding: 0;
  height: 56px;
  text-align: left;
  border-top: solid 1px #bbad92;
  border-bottom: solid 1px #bbad92;
  background-image: url(../img/head_menu_back_base.jpg);
  background-repeat: repeat-x;
}

#header-menu ul {
  width: 900px;
  text-align: left;
  margin: 0 auto 0 auto;
  padding: 0;
  background-image: url(../img/head_menu_back_base.jpg);
  background-repeat: repeat-x;
}

#header-menu li {
  display: inline;
  list-style-type: none;
  float: left;
  color: #ffffff;
}

#header-menu li a {
  font-size: 13px;
  color: #fffffc;
  text-align: center;
  display: block;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border-left: solid 1px #2f5776;
  text-decoration: none;
  margin-top: 8px;
  padding: 6px 38px 2px 38px;
}

#header-menu li a:hover {
  color: #fffffc;
  background-image: url(../img/head_menu_back_hover.jpg);
  background-repeat: repeat-x;
}

#header-menu li.home a {
  padding: 6px 38px 2px 38px;
  border-left: none;
}

#header-menu span.sub {
  color: #f7efd1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0; 
  visibility: hidden;
}


/*--- ドロップダウン ---*/

.menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}

.menu-item {
position: relative;
}

.menu-link {
display: block;
color: white;
text-decoration: none;
padding: 16px 20px;
}

.menu-link:hover {
background-color: #1D4C9E;
}

.dropdown {
z-index: 1000; /* 他の要素より高い値を設定　マウスオーバー時にリスト表示維持 */
position: absolute;
top: 100%;
left: 0;
background-color: #1D4C9E;
list-style: none;
margin: 0;
padding: 0;
width: auto; /* 自動調整 */
  min-width: 200px; /* 最小幅 */
  max-width: 350px; /* 最大幅 */
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
}

.has-dropdown:hover .dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-link {
display: block;
text-decoration: none;
padding: 12px 20px;
border-bottom: 1px solid #fff;
transition: background-color 0.3s ease;
}

.dropdown-link:hover {
background-color: #1D4C9E;
}

.dropdown li:last-child .dropdown-link {
border-bottom: none;
}


/*---------- SP電話ボタン ----------*/

.phone {
  display: none;
}

span.tel:hover{
    color: red;
}

/*---------- メイン画像 ----------*/

#header-img {
  width: 100%;
  margin: 12px 0 12px 0;
  text-align: center;
  background-color: #e7f4ff;
}

.main_photo {
  display: block;
  margin: 0 auto 0 auto;
}


/*---------- メイン動画 ----------*/

#header-vid {
  width: 100%;
  margin: 12px 0 12px 0;
  text-align: center;
  background-color: #e7f4ff;
}

.vid_main {
  width: 900px;
  text-align: center;
  background-color: #e7f4ff;
  margin: 0 auto;
}

/*---------- コンテンツ ----------*/

#container {
  width: 900px;
  margin: 0 auto 0 auto;
  overflow: hidden;
  padding: 6px 0 0 0;
  background-color: #ffffff;
}


/*---------- メインコンテンツ ----------*/

#contents {
  float: right;
  margin: 0;
  padding: 0;
  font-size: 16px;
  width: 900px;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.7;
}

#contents #pannavi {
  margin: 0 0 6px 0;
  padding: 0 0 8px 0;
  font-size: 15px;
}

#contents #pannavi a {
  font-size: 15px;
}

#contents h2 {
  height: 65px;
  margin: 0 0 10px 0;
  padding: 14px 0 0 40px;
  font-size: 18px;
  color: #54351f;
  background-image: url(../img/titlebar.gif);
  background-repeat: no-repeat;
}

#contents h2.page_title {
  margin: 0 0 18px 0;
  padding: 18px 0 4px 30px;
  line-height: 1.7;
  font-size: 20px;
  color: #2b72ae;
  border: none;
  background-image: url(../img/page_title.gif);
  background-repeat: no-repeat;
}

#contents h2.txt {
  height: auto;
  margin: 0 0 7px 0;
  padding: 0;
  border: none;
  font-size: 16px;
  color: #54351f;
  background: none;
}

#contents h3 {
  margin: 12px 3px 10px 3px;
  padding: 15px 10px 10px 18px;
  line-height: 1.4;
  font-size: 17px;
  color: #54351f;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #966934;
  border-left: solid 5px #966934;
  background-color: #f9f2d5;
}

#contents h3.beta {
  margin: 12px 2px 10px 2px;
  padding: 14px 10px 12px 16px;
  line-height: 1.4;
  font-size: 18px;
  color: #fffffc;
  border: none;
  background-image: url(../img/h3_beta.jpg);
  background-repeat: no-repeat;
}

#contents h3.point {
  margin: 10px 0 10px 0;
  padding: 10px 10px 8px 10px;
  line-height: 1.4;
  font-size: 18px;
  color: #882200;
  border-top: solid 1px #999999;
  border-right: solid 1px #bbbbbb;
  border-bottom: solid 4px #663300;
  border-left: solid 1px #bbbbbb;
  background-image: url(../img/h3_point.gif);
  background-repeat: repeat-x;
}

#contents h3.gold {
  height: 41px;
  margin: 12px 2px 10px 2px;
  padding: 14px 10px 0 18px;
  line-height: 170%;
  font-size: 19px;
  text-align: left;
  color: #662200;
  border: none;
  background-image: url(../img/h3_gold.gif);
  background-repeat: no-repeat;
}

#contents h3.gold02 {
  height: 71px;
  margin: 12px 2px 10px 2px;
  padding: 14px 2px 0 18px;
  line-height: 170%;
  font-size: 18px;
  text-align: left;
  color: #662200;
  border: none;
  background-image: url(../img/h3_gold02.gif);
  background-repeat: no-repeat;
}

#contents h3.gray {
  height: 41px;
  margin: 12px 2px 10px 2px;
  padding: 14px 10px 0 18px;
  line-height: 170%;
  font-size: 19px;
  text-align: left;
  color: #662200;
  border: none;
  background-image: url(../img/h3_gray.gif);
  background-repeat: no-repeat;
}

#contents h3.gray02 {
  height: 71px;
  margin: 12px 2px 10px 2px;
  padding: 14px 2px 0 18px;
  line-height: 170%;
  font-size: 18px;
  text-align: left;
  color: #662200;
  border: none;
  background-image: url(../img/h3_gray02.gif);
  background-repeat: no-repeat;
}

#contents p {
  margin: 15px 0 15px 0;
  padding: 0 2px 0 2px;
  line-height: 1.7;
  font-size: 16px;
}


/*----- 見出しデザイン　採用 -----*/
#contents h4.underline {
  width: 130px;    /* 幅を130pxに */
  position:relative;
  font-weight:600;
  padding:10px;
  overflow:hidden;
  border-bottom:3px solid #1D4C9E
}

/*----- リスト　約款 -----*/

ul.terms-and-conditions{
  counter-reset:list;
  list-style-type:none;
  font: 14px/1.6 'arial narrow', sans-serif;
  padding:0;
}
ul.terms-and-conditions li{
  position:relative;
  padding: 0 0 0 20px;
  margin: 7px 0 15px 10px;
  font-size:14px;
  line-height: 30px;
}
ul.terms-and-conditions li:before{
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 0;
  width: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #808080;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

a[href$=".pdf"]::after {
    content: "";
    display: inline-block;
    width: 16px; /* アイコン画像の幅 */
    height: 16px; /* アイコン画像の高さ */
    background-image: url("../img/pdf.png"); /* PDFアイコン画像のパス */
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
    vertical-align: middle;
}


/*----- Topix外部リンク枠 -----*/

.button-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #2589d0;
    border-radius: 5px;
    background-color: #fff;
    color: #2589d0;
    font-size: 1em;
    cursor: pointer;
}


/*---------- リンクバナー ----------*/

.box {
  text-align: center;
  display: block;
  margin: 0 auto 0 auto;
}


/*---------- 横並びの画像 ----------*/
[class^="img-flex-"] {
	margin-bottom: 20px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.img-flex-4 > img,
.img-flex-4 a {width: 18%; }


/*---------- 規約見出し ----------*/
#contents h4.terms_title {
  display: block;
  font-weight:bold;
  border-bottom: solid 3px #F18902;
  margin: 0 auto 10px;
  padding: 0 0 5px 0;
}


/*---------- 画像の回り込み ----------*/

img.picture {
  margin: 0 10px 10px 0;
  float: left;
}

img.picture_r {
  margin: 0 5px 10px 10px;
  float: right;
}



/*---------- 会社概要テーブル ----------*/

.table_design03 {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
}
.table_design03 th, .table_design03 td {
  padding: 1em;
}
.table_design03 th {
  color: #4d9bc1;
  text-align: left;
  width: 20%;
  min-width: 4em;
  position: relative;
}
.table_design03 th::after {
  content: '';
  background-color: #c1c7c6;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
}



/*---------- 沿革テーブル ----------*/

.table_design05 {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
}
.table_design05 th, .table_design05 td {
  padding: 1em;
}
.table_design05 th {
  color: #4d9bc1;
  font-weight: bold;
  text-align: left;
  width: 16%;
  min-width: 4em;
  position: relative;
}
.table_design05 th::after {
  content: '';
  background-color: #c1c7c6;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
}


/*---------- 募集要項テーブル ----------*/

.table_design01 {
  border-collapse: collapse;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.table_design01 tr {
  background-color: #EDF8FF;
}
.table_design01 tr:nth-child(odd) {
  background-color: #D3EDFF;
}
.table_design01 th, .table_design02 td {
  padding: 1em;
}
.table_design01 th {
  font-weight: bold;
  text-align: left;
  width: 20%;
  min-width: 4em;
}


/*------- 募集職種 -------*/

.box-pic {
  width: 90%;
  max-width: 900px;
  text-align:center;
  margin: 0 auto;
  background-color: #D3EDFF;
  
}
.box-pic img {
  float:left;
  margin-right: 20px;
}

.box-pic p {
  text-align:left;
  padding-left: 3em;
}

.box8 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #232323;
    background: #D3EDFF;
    border-left: solid 10px #84C5FF;
}
.box8 p {
  width: 60%;
  text-align:left;
  margin: 0 auto;
  background-color: #D3EDFF;
}


/*---------- 採用フロー ----------*/

.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: -webkit-calc(10% + 30px - 2px);
  left: calc(10% + 30px - 2px);
  z-index: 10;
}
.flow > li dl {
  width:  900px;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid rgb(107,144,219);
  border-radius: 10px;
  position: relative;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: rgb(107,144,219);
}
.flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107,144,219);
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}
.flow > li dl dt .icon {
  font-size: 12px;
  color: #fff;
  background: rgb(107,144,219);
  background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
  background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  
}

/*--全国共配スルーセンター　テーブル--*/
.table-tc {overflow-x: auto;}
.table.sp-table {width: 80%;}


/*---------- 長宮　キャプション付きリストデザイン ----------*/

.targetlist_01 ul li::marker {
  font-size: 20px;
  color: #7abbfd; content:"●";
}
.targetlist_01 ul li {
  padding-left: 10px;
  font-weight: bold; /* 太字 */
}
.targetlist_01 ol li {
  padding-left: 10px;
}
.targetlist_01 ol li::before {
  counter-increment: number;
  content: counter(number);
  background: #7abbfd;color: white;
  width: 25px;
  height: 27px;
  display: inline-block;
  text-align: center;
  position: absolute;/* 要素の配置方法を指定 */
  left:25px;
  font-weight: bold;
}
.targetlist_01 ol {
  counter-reset:number; list-style-type:none!important;
}



/*---------- 採用ページ下部リンクボタン ----------*/

a.btn_02 {
  display: flex;
  justify-content: left;
  align-items: left;
  background: #fff;
  border: 1px solid #228bc8;
  box-sizing: border-box;
  width: 60%;
  height: 50px;
  padding: 0 6% 0 10%;
  color: #228bc8;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}
a.btn_02:hover {
  background: #228bc8;
  color: #fff;
}
a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #228bc8;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}
a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}


/*---------- トピックス ----------*/

.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 20px 20px;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #00F;
}

/* 装飾 */
 
*{
  box-sizing: border-box;
}
a{
  text-decoration: none;
}


/*---------- フッター ----------*/

#footer {
  clear: both;
  width: 100%;
  margin: 0;
  padding: 30px 0 30px 0;
  text-align: center;
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
  border-top: solid 2px;
  border-top-color: #8db4d3;
  background-color: #d7e9f6;
}

#footer a {
  color: #333333;
  font-size: 14px;
  text-decoration: none;
}

#footer a:hover {
  color: #555555;
  text-decoration: none;
}

}




/*---------------------------- タブレット向けのスタイル ----------------------------*/
@media screen and (min-width:680px) and (max-width:920px) {


/*---------- メイン ----------*/

#main {
  min-width: 900px;
}

}




/*---------------------------- 共通部分（コンテンツ） ----------------------------*/

/*--- ドロップダウン ---*/

.menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}

.menu-item {
position: relative;
}

.menu-link {
display: block;
color: white;
text-decoration: none;
padding: 16px 20px;
}

.menu-link:hover {
background-color: #1D4C9E;
}

.dropdown {
position: absolute;
top: 100%;
left: 0;
background-color: #1D4C9E;
list-style: none;
margin: 0;
padding: 0;
width: auto; /* 自動調整 */
  min-width: 150px; /* 最小幅 */
  max-width: 300px; /* 最大幅 */
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
}

.has-dropdown:hover .dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-link {
display: block;
text-color: #7F7F7F;
text-decoration: none;
padding: 12px 20px;
border-bottom: 1px solid #fff;
transition: background-color 0.3s ease;
}

.dropdown-link:hover {
}

.dropdown li:last-child .dropdown-link {
border-bottom: none;
}


/*---------- 見出しタイトル装飾 ----------*/

#contents h3.white {
  margin: 20px 4px 20px 4px;
  padding: 10px 0 6px 0;
  line-height: 1.6;
  color: #792b04;
  border-top: none;
  border-right: none;
  border-bottom: solid 2px #aaaaaa;
  border-left: none;
  background-color: #ffffff;
  background-image: none;
}

#contents h4.memo {
  margin: 12px 0 10px 0;
  padding: 15px 10px 11px 16px;
  line-height: 1.4;
  color: #df5f08;
  border-bottom: solid 1px #df5f08;
  border-left: solid 5px #df5f08;
  background-color: #fbe8d3;
}

#contents h4.memo_w {
  margin: 12px 0 10px 0;
  padding: 16px 10px 10px 16px;
  line-height: 1.4;
  color: #54351f;
  background-color: #fff8ee;
}

#contents h4.border {
  height: 34px;
  margin: 10px 0 15px 0;
  padding: 10px 10px 0 4px;
  line-height: 1.4;
  color: #e85922;
  border-top: none;
  border-right: none;
  border-bottom: solid 3px #966934;
  border-left: none;
  background-color: #ffffff;
}





/*---------- メインコンテンツ ----------*/


img.line {
  margin: 0 8px 4px 0;
  vertical-align: middle;
}

img.head_photo {
  margin: 0 0 16px 0;
}

hr.line {
  margin: 0 0 10px 0;
  padding: 2px 0 6px 0;
  border: 0;
  border-bottom: dotted 1px #666666;
}



#news {
  height: 170px;
  overflow: auto;
  line-height: 1.8;
  padding: 8px 6px 7px 6px;
  margin: 12px 0 7px 0;
  border: solid 1px #cccccc;
  background-color: #ffffff;
}

p.back {
  margin: 0;
  padding: 0 5px 0 0;
  text-align: right;
}


/*----- 見出しデザイン　採用 -----*/
#contents h4.underline {
  width: 130px;    /* 幅を130pxに */
  position:relative;
  font-weight:600;
  padding:10px;
  overflow:hidden;
  border-bottom:3px solid #1D4C9E;
}

#contents p {
  padding-right: 2px;
  padding-left: 2px;
  line-height: 1.6;
}



/*----- Topix外部リンク枠 -----*/

.button-1 {
  text-align: center;
  display: block;
  margin: 0 auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .9em 2em;
  border: 1px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
  color: #2589d0;
  font-size: 1em;
  cursor: pointer;
}


/*---------- リンクバナー ----------*/

.box {
  text-align: center;
  display: block;
  margin: 0 auto 0 auto;
}

/*---------- 規約見出し ----------*/
#contents h4.terms_title {
  display: block;
  font-weight:bold;
  border-bottom: solid 3px #F18902;
  margin: 0 auto 10px;
  padding: 0 0 5px 0;
}


/*---------- 画像の回り込み ----------*/

img.picture_le {
  margin: 0 10px 10px 0;
  float: left;
}

img.picture_ri {
  margin: 0 5px 10px 10px;
  float: right;
}

br.clear {
  display: block;
  clear: both;
}

/*---------- 会社概要テーブル ----------*/

.table_design03 {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
}
.table_design03 th, .table_design03 td {
  padding: 1em;
}
.table_design03 th {
  color: #4d9bc1;
  text-align: left;
  width: 20%;
  min-width: 4em;
  position: relative;
}
.table_design03 th::after {
  content: '';
  background-color: #c1c7c6;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
}



/*---------- 沿革テーブル ----------*/

.table_design05 {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
}
.table_design05 th, .table_design05 td {
  padding: 1em;
}
.table_design05 th {
  color: #4d9bc1;
  font-weight: bold;
  text-align: left;
  width: 16%;
  min-width: 4em;
  position: relative;
}
.table_design05 th::after {
  content: '';
  background-color: #c1c7c6;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
}


/*---------- 募集要項テーブル ----------*/

.table_design01 {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  float: none;
}
.table_design01 tr {
  background-color: #EDF8FF;
}
.table_design01 tr:nth-child(odd) {
  background-color: #D3EDFF;
}
.table_design01 th, .table_design02 td {
  padding: 1em;
}
.table_design01 th {
  font-weight: bold;
  text-align: left;
  width: 40%;
  min-width: 4em;
}
.table_design01 td {
 display: block; /* セルをブロック要素に指定 */
 width: 100%;/* セルを親要素いっぱいの幅に指定 */
 float: none;
}

/*------- 募集職種 -------*/

.box-pic {
  width: 100%;
  text-align:center;
  margin: 0 auto;
  background-color: #D3EDFF;
}
.box-pic img {
  float:none;
  margin-right: 0;
}
.box-pic p {
  text-align:left;
  padding-left: 3em;
}

.box8 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #232323;
    background: #D3EDFF;
    border-left: solid 10px #84C5FF;
}
.box8 p {
  width: 90%;
  text-align:left;
  margin: 0 auto;
  background-color: #D3EDFF;
}

/*---------- 採用フロー ----------*/

.flow > li {
  position: relative;
  width: 100%;
  display: block;
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: -webkit-calc(10% + 30px - 2px);
  left: calc(10% + 30px - 2px);
  z-index: 10;
}
.flow > li dl {
  width:  100%;;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid rgb(107,144,219);
  border-radius: 10px;
  position: relative;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: rgb(107,144,219);
}
.flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107,144,219);
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}
.flow > li dl dt .icon {
  font-size: 12px;
  color: #fff;
  background: rgb(107,144,219);
  background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
  background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}


/*---------- 長宮　キャプション付きリストデザイン ----------*/

.targetlist_01 ul li::marker {
  font-size: 20px;
  color: #7abbfd; content:"●";
}
.targetlist_01 ul li {
  padding-left: 10px;
  font-weight: bold; /* 太字 */
}
.targetlist_01 ol li {
  padding-left: 10px;
}
.targetlist_01 ol li::before {
  counter-increment: number;
  content: counter(number);
  background: #7abbfd;color: white;
  width: 25px;
  height: 27px;
  display: inline-block;
  text-align: center;
  position: absolute;/* 要素の配置方法を指定 */
  left:25px;
  font-weight: bold;
}
.targetlist_01 ol {
  counter-reset:number; list-style-type:none!important;
}




/*---------- 採用ページ下部リンクボタン ----------*/

a.btn_02 {
  display:  flex;
  justify-content: left;
  margin: 0 auto 0 auto;
  align-items: center;
  background: #fff;
  border: 1px solid #228bc8;
  box-sizing: border-box;
  width: 80%;
  height: 50px;
  padding: 0 6% 0 12%;
  color: #228bc8;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}
a.btn_02:hover {
  background: #228bc8;
  color: #fff;
}
a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #228bc8;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}
a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}



/*---------- コンテンツ枠装飾 ----------*/

.gray_bg {
  margin: 18px 0 18px 0;
  padding: 2px 18px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #eeeeee;
}

.gray_bg p {
  padding: 3px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.brown_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #f8f4e6;
}

.pink_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #fdeee6;
}

.green_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #f0f6da;
}

.blue_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #ebf6f7;
}

.info_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #fff8e3;
}

.point_bg {
  margin: 10px 2px 10px 2px;
  padding: 2px 5px 2px 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border: solid 1px #dfcf98;
  background-color: #fcfbf9;
}

.pale_bg {
  margin: 18px 2px 18px 2px;
  padding: 8px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #fffedf;
}

.message_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #fff8e3;
  background-image: url(../img/message.png);
  background-repeat: no-repeat;
}

.memo_bg {
  margin: 8px 0 18px 0;
  padding: 6px 18px 6px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #faf2e2;
}

.memo_w_bg {
  margin: 8px 0 12px 0;
  padding: 6px 18px 6px 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #fff8ee;
}

.koe_bg {
  margin: 0;
  padding: 0;
}

.koe_beta_bg {
  margin: 8px 0 8px 0;
  padding: 2px 10px 2px 10px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  background-color: #7e6a41;
}

.check_bg {
  margin: 8px 0 18px 0;
  padding: 2px 18px 2px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #6c4e1f;
  border: solid 6px #ded0b2;
  background-color: #faf1e3;
}

.check_bg p {
  margin: 18px 0 18px 0;
  padding: 0 2px 0 2px;
  line-height: 1.7;
  color: #6c4e1f;
}

.banner_bg {
  margin: 3px 0 10px 0;
  padding: 10px 10px 10px 14px;
  border-top: solid 3px #dec58e;
  border-right: solid 3px #dec58e;
  border-bottom: solid 3px #dec58e;
  border-left: solid 3px #dec58e;
  background-color: #fff8e3;
}

.waku_bg {
  margin: 14px 2px 14px 2px;
  padding: 2px 8px 2px 10px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 10px #f1eae0;
  border-right: solid 6px #f1eae0;
  border-bottom: solid 10px #f1eae0;
  border-left: solid 6px #f1eae0;
}

.waku_gray_bg {
  margin: 14px 2px 14px 2px;
  padding: 6px 14px 2px 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 2px #dddddd;
  border-right: solid 2px #dddddd;
  border-bottom: solid 2px #dddddd;
  border-left: solid 2px #dddddd;
  background-color: #fcfbf9;
}

#contents .waku_tone_bg {
  margin: 14px 2px 14px 2px;
  padding: 2px 8px 2px 10px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 10px #f1eae0;
  border-right: solid 6px #f1eae0;
  border-bottom: solid 10px #f1eae0;
  border-left: solid 6px #f1eae0;
  background-color: #fffcf7;
}

.waku_gold_bg {
  margin: 14px 2px 14px 2px;
  padding: 2px 6px 2px 8px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-top: solid 5px #f0ddb2;
  border-right: solid 5px #f0ddb2;
  border-bottom: solid 5px #f0ddb2;
  border-left: solid 5px #f0ddb2;
  background-color: #fff8e3;
}

.gray_bg_contact {
  margin: 18px 2px 10px 2px;
  padding: 10px 8px 10px 18px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #eeeeee;
}

.gray_bg_contact p {
  margin: 0;
  padding: 3px 0 3px 0;
  line-height: 1.7;
}


/*---------- 文字装飾 ----------*/

span.big {
  font-size: 1.12em;
  line-height: 1.9;
}

span.b_big {
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.b_big_x {
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1.7;
}

span.check {
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
  color: #555555;
}

span.red {
  color: #e60033;
}

span.red_x {
  color: #e60033;
  font-size: 1.12em;
  line-height: 1.7;
}

span.red_b {
  color: #e60033;
  font-weight: bold;
  line-height: 1.7;
}

span.red_big {
  color: #e60033;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.red_big_x {
  color: #e60033;
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1.7;
}

span.brown {
  color: #993300;
}

span.brown_b {
  color: #993300;
  font-weight: bold;
}

span.brown_x {
  color: #993300;
  font-size: 1.12em;
  line-height: 1.7;
}

span.brown_b {
  color: #993300;
  font-weight: bold;
  line-height: 1.7;
}

span.brown_big {
  color: #993300;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.brown_big_x {
  color: #993300;
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1.7;
}

span.blue {
  color: #007bbb;
}

span.blue_b {
  color: #007bbb;
  font-weight: bold;
  line-height: 1.7;
}

span.blue_big {
  color: #007bbb;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.pink {
  color: #c53d43;
}

span.pink_b {
  color: #c53d43;
  font-weight: bold;
  line-height: 1.7;
}

span.pink_big {
  color: #c53d43;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.orange {
  color: #e85922;
  line-height: 1.7;
}

span.orange_b {
  color: #e85922;
  font-weight: bold;
  line-height: 1.7;
}

span.orange_big {
  color: #e85922;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.orange_big_x {
  color: #e85922;
  font-weight: bold;
  font-size: 1.25em;
  line-height: 1.7;
}

span.green {
  color: #00ae4f;
}

span.green_b {
  color: #688119;
  font-weight: bold;
  line-height: 1.7;
}

span.green_big {
  color: #688119;
  font-weight: bold;
  font-size: 1.12em;
  line-height: 1.7;
}

span.mark {
  padding: 2px 2px 0 2px;
  color: #54351f;
  line-height: 1.7;
  background-color: #fdfaab;
}

span.mark_b {
  padding: 2px 2px 0 2px;
  color: #54351f;
  line-height: 1.7;
  font-weight: bold;
  background-color: #fdfaab;
}

span.mark_big {
  padding: 2px 2px 0 2px;
  color: #54351f;
  font-size: 1.12em;
  line-height: 1.7;
  font-weight: bold;
  background-color: #fdfaab;
}

 span.mark_red {
  padding: 2px 2px 0 2px;
  color: #e60033;
  line-height: 1.7;
  background-color: #fdfaab;
}

span.mark_red_b {
  padding: 2px 2px 0 2px;
  color: #e60033;
  font-weight: bold;
  line-height: 1.7;
  background-color: #fdfaab;
}

span.mark_brown {
  padding: 2px 2px 0 2px;
  color: #993300;
  line-height: 1.7;
  background-color: #fdfaab;
}

span.mark_brown_b {
  padding: 2px 2px 0 2px;
  color: #993300;
  font-weight: bold;
  line-height: 1.7;
  background-color: #fdfaab;
}


/*---------- サイドエリア ----------*/

#menu hr.line {
  margin: 0;
  padding: 2px 0 6px 0;
  border: 0;
  border-bottom: dotted 1px #666666;
}


/*---------- トップに戻る ----------*/

.menu_back p.back {
  margin: 6px 0 0 0;
  padding: 0 5px 0 0;
  text-align: right;
}

.scroll {
  width: 180px;
  height: 28px;
}