@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
 * {
  box-sizing: border-box;
}

html {
    font-size: 62.5%;
}
body {
    font-size: 1.4px;
    font-size: 1.4rem;
    color:#333;
    font-family:"Noto Sans JP","Inter","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    line-height:1.6;
    background:#fff;
}

nav {
    width:100%;
    background: #b60005;
    font-size: 1.3rem;
}
nav:after {
   content:'';
   display:block;
   clear:both;
}

input, button, select {
  vertical-align: middle;
  border-radius: 0;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.button {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  text-decoration: none;
}

#contents {
    width:100%;
    background:#fff;
}

.contents--single {
    padding: 0 calc(30% - 280px);
    width: 100%;
    }

.contents--second {
    padding: 0 calc(30% - 280px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: 100%;
    }

#main {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% - 260px);
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 30px;
}

#sub {
    -webkit-flex-basis: 228px;
    -ms-flex-preferred-size: 228px;
    flex-basis: 228px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-left: 40px;
    margin-top: 10px;
}

footer {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
}

a {
    color:#b60005;
    text-decoration:none;
}

a:hover {
    opacity: 0.8;
}

address, em {
  font-style: normal;
}

h2 {
    margin-bottom: 20px;
    padding:10px 0;
    font-size:2.1rem;
    color:#333;
    font-weight: bold;
}

h3 {
    margin-bottom: 0.25em;
    padding: 2px 5px;
    color: #333;
    font-size: 20px;
    font-size: 2.0rem;
    border-bottom: 1px solid #b60005;
}

h4 {
    margin-bottom:0.25em;
    font-size:1.5rem;
    color:#710000;
    border-bottom:3px solid #710000;
}

h5 {
    position:relative;
    margin-bottom:0.25em;
    padding-left:10px;
    color:#710000;
    font-size:1.4rem;
    font-weight:bold;
}
h5:before {
    content:"";
    margin-top:-7px;
    position:absolute;
    top:50%;
    left:0;
    width:5px;
    height:14px;
    background:#8c0e0e;
}

h6 {
    margin-bottom:0.25em;
    color:#382400;
    font-size:14px;
    font-weight:bold;
}

p {
    font-size: 1.3rem;
}

img {
    vertical-align:bottom;
    width: 100%;
}
strong {
    font-weight: bold;
    font-size: 1.6rem;
}

em {
    font-weight:bold;
}

pre {
    margin:1em 0;
    padding:1em;
}

blockquote {
    margin-bottom:1em;
    padding:1em;
    border:1px dotted #ddd;
    border-left:5px solid #ddd;

}
ul,ol,dl {
    margin:0 0 1em 0;
    list-style: none;
}
ul li {
    list-style: none;
}
ol li {
    list-style: none;
}
table {
    width:100%;
    margin-bottom:1em;
    border-collapse:collapse;
    background:#fff;
}
.red {
  color: #b60005;
}
.white {
    color: #fff;
}
.bold{
    font-weight: bold;
}
i {
  display: inline-block;
  font-size: 1.3px;
  font-size: 1.3rem;
  color: #b60005;
}
.red_bold {
  color: #b60005;
}
.flex {
  display: -ms-flexbox;
  display: flex;
}
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
.clearfix {display: inline-table;}/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
.link {
  position: relative;
  color: inherit;
}
.link:after {
  display: inline-block;
  position: relative;
  content: '';
  top: -2px;
  width: 0;
  height: 0;
  margin-top: -5px;
  margin-left: 7px;
  border: 4px solid transparent;
  border-left: 4px solid #c01920;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.view-sp {
        display: none;
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
      width: 100%;
      position: relative;
}
header .header_area {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
header .header_area .inner {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-basis: auto;
    width: 1200px;
}
header .inner h1 {
    display: block;
    line-height: 4.0rem;
}
header .header_area .inner h1 img {
    margin-right: 10px;
    width: 220px;
}
header a {
    color: #333;
}
header a:hover {
}
.header_nav {
    display: block;
    position: absolute;
    right: 0;
}
.header_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    height: 34px;
    white-space: nowrap;
}
.header_menu li {
    border-left: 1px solid #d6d6d6;
    padding: 0 10px;
}
.header_menu li a {
    color: inherit;
    display: inline-block;
    padding: 0 10px;
}



/*================================================
 *  グローバルナビゲーション
 ================================================*/
@media print, screen and (min-width:768px) {
nav {
    z-index:3;
    padding: 0px calc(30% - 280px);
}
nav ul {
    margin:0;
    padding:0;
}
nav li {
    position:relative;
    width:20%;
    float:left;
    margin:0;
    padding:0;
    text-align:center;
    list-style:none;
}
nav li:before {
    content:"";
    margin-top:-7px;
    position:absolute;
    top:50%;
    left:0;
    width:1px;
    height:14px;
    background:#fff;
}
nav li:last-child:after {
    content:"";
    margin-top:-7px;
    position:absolute;
    top:50%;
    right:0;
    width:1px;
    height:14px;
    background:#fff;
}
nav li:last-child li {
    left:-50%;
}
nav li a {
    display:block;
    padding:15px 0;
    color:#fff;
    text-decoration:none;
    font-size: 1.5rem;
    font-size: 15px;
}
nav li ul {
    display:block !important;
    position:absolute;
    top:100%;
    left:0;
    margin:0;
    padding:0;
    border-radius:0 0 3px 3px;
    z-index:3;
}
nav li ul li {
    overflow:hidden;
    width:150%;
    height:0;
    -moz-transition:.2s;
    -webkit-transition:.2s;
    -o-transition:.2s;
    -ms-transition:.2s;
    transition:.2s;
}
nav li li:first-child {
    width:150%;
}
nav li ul li a {
    padding:10px 15px;
    background:#7c0c0c;
    text-align:left;
    font-weight:normal;
}
nav li:hover > a {
    opacity: 0.8;
    color:#fff;
}
nav li:hover > a:hover {
}
nav li a.current {
    display:block;
    color:#333;
    text-decoration:none;
    font-size: 1.5rem;
    font-size: 15px;
    background-color: #fff;
}
.gnav {
    display:block !important;
}

#spMenu {
    display:none;
}

.showNav {
    background:#7c0c0c !important;
}

.showSub {
    overflow:visible;
    min-height:42px;
    border-bottom:2px solid #8c0e0e;
}
.showSub:last-child {
    border-bottom:0;
}
.showSub:last-child a {
    border-radius:0 0 3px 3px;
}

.fixed {
    position:fixed;
    top:0;
    left:0;
}
}

/*================================================
 *  トピックパス（パンくずリスト）
 ================================================*/
.breadcrumb {
    padding: 20px calc(30% - 280px) 20px;
}
.breadcrumb__lists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    font-size: 1.2rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumb__list {
    padding: 2px 0;
    list-style: none;
}

.breadcrumb__link {
  color: #b60005;
}

@media (max-width: 768px) {
    .breadcrumb__list {
        margin-bottom:5px;
        line-height:1.2;
    }
}

.breadcrumb__list:after {
  content: '>';
  padding: 0 10px;
}

.breadcrumb__list:after {
  content: '>';
  padding: 0 10px;
}

.breadcrumb__list:last-child::after {
    display:none;
}
/*================================================
 *  サブコンテンツ
 ================================================*/
.submenu_area {
    background-color: #fff;
      padding-bottom: 100px;
}
.submenu {
    padding: 10px;
}

.submenu li {
    margin:0;
    padding:0;
    list-style:none;
}
.submenu li a {
    display: block;
    padding:20px 2px 20px 16px;
    color:#333;
    border-bottom:1px solid #ddd;
    text-decoration:none;
    position: relative;
    vertical-align: middle;
    line-height: 1;
    font-size: 1.3rem;
}
.submenu li:first-child::before {
    border-top: 1px solid #ddd;
}
.submenu li a:after {
    color: #b60005;
    position: absolute;
    border: 0px;
    width: 5px;
    height: 5px;
    top: 23px;
    right: 6px;
    border-top: 1px solid #b60005;
    border-right: 1px solid #b60005;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    margin: auto;
}

.submenu li a:hover {
    background:#eee;
}

.submenu li a:hover::before {
    right:2px;
}
.submenu li.list2{

}
.submenu li.list2 a {
    font-size: 1.4rem;
    padding: 15px 2px 15px 16px;
}

.submenu li.list2 a .side-column__mame {
    padding-left: 20px;
}

.bnr li {
    margin:0 0 10px 0;
    padding:0;
    list-style:none;
}
.bnr li a:hover {
    opacity:0.8;
    filter:alpha(opacity=80);
    -ms-filter:"alpha( opacity=80 )";
}
.bnr img {
    width:100%;
}

/*================================================
 *  フッター
 ================================================*/
footer {
    clear:both;
}

.footmenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 calc(50% - 500px);
}
.footmenu ul {
    display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #333;
  margin: 10px 0;

}
.footmenu li {
border-left: 1px solid #333;
}
.footmenu a {
    color:#333;
    display: inline-block;
    padding: 0 20px;
}

.footer_copyright {
    font-size:11px;
    font-size: 1.1rem;
    color:#333;
    margin-left: auto;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
    position:fixed;
    bottom:15px;
    right:15px;
}
.totop a {
    display:block;
    text-decoration:none;
}

/*================================================
 *  クラス
 ================================================*/
.section-block {
    margin-bottom: 50px;
 }
.text-centerd {
  text-align: center;
}
.contact-text {
  margin-bottom: 30px;
  line-height: 1.8;
}
.list {
    padding:0 0 0 0.5em;
}
.col_two_one {
    overflow:hidden;
}

.col_two_one ul {
    overflow:hidden;
    margin:2% -2% 0 0;
}
.col_two_one li {
    list-style:none;
    float:left;
    width:48%;
    margin:0 2% 2% 0;
}
.col_two_one li:nth-child(2n+1) {
    clear:both;
}
.col_two_one li img {
    width:100%;
    margin-bottom:2.5%;
}
.bottom_area {
    margin-bottom: 50px;
    text-align: center;
}
.content_area {
    margin: 30px 10px;
}
/*================================================
 *  ブロック要素
 ================================================*/
article.contents-section {
    margin-bottom: 50px;
}
.flex-box {
    display: flex;
    margin-bottom: 80px;
}
.flex-box2 {
    display: flex;
    margin-bottom: 20px;
}
.flex-box3 {
    display: flex;
    margin-bottom: 0px;
}
.flex-box4 {
    display: flex;
    margin-bottom: 20px;
}
.flex-box3.re {
    display: flex;
    margin-bottom: 0px;
}
.justify-content {
    justify-content: center;
}
.justify-content-space-around {
    justify-content: space-around;
}
.section-bg--gray {
    background-color: #eeeeee;
}
.main-contents--single {
  padding: 20px 0 60px;
  width: 100%;
}
.main-contents--single2 {
    width: 100%;
    padding: 60px calc(50% - 500px);
}
.main-contents--single3 {
  padding-bottom: 30px;
  width: 100%;
}
.main-contents--single4 {
  padding: 30px 0 0;
  width: 100%;
}
.main-contents--single5 {
  padding:0;
  width: 100%;
}
.footer_entry {
    background-color: #b60005;
}

.new_graduate {
        text-align: center;
    }
/*================================================
 *  タイトルデザイン
 ================================================*/
 h2.h2_title {
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 20px;
    border-left: 4px solid #b60005;
    border-bottom: 0;
    line-height: 1.6;
    padding: 0 15px;
}
 .titleGroup {
    position: relative;
 }
#news span {
    font-size: 1.3rem;
    vertical-align: middle;
    padding-left: 20px;
}
.more {
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    padding: 0 0 0 14px;
    color: #b60005;
    vertical-align: middle;
    text-decoration: none;
    margin-top: 3px;
    float: right;
    font-weight: normal;
}
.more2 {
    position: relative;
    font-size: 1.3rem;
    padding: 0 0 0 14px;
    color: #b60005;
    vertical-align: middle;
    text-decoration: none;
    margin-top: 3px;
    font-weight: normal;
}
.more:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.more2:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.arrow::before{
    left: 3px;
    width: 5px;
    height: 5px;
    top: -3px;
    border-top: 1px solid #b60005;
    border-right: 1px solid #b60005;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.link2::after {
    display:inline-block;
    content:'';
    width:0;
    height:0;
    margin-top:6px;
    margin-left:10px;
    border:5px solid transparent;
    border-left:6px solid #c01920;
    transition:all 0.2s linear;
    vertical-align:top;
}
h2.main_title {
    font-size: 3.0rem;
    text-align: center;
    border-bottom: 4px solid #b60005;
    padding: 0;
    display: block;
    margin-bottom: 50px;
    line-height: 1.3;
}
h2.main_title2 {
    font-size: 3.0rem;
    text-align: center;
    border-bottom: 4px solid #b60005;
    padding: 0;
    display: block;
    margin-bottom: 10px;
    line-height: 1.3;
}
/*================================================
 * button
 ================================================*/
.button.button_red {
    padding: 20px 70px;
    background: #b60005;
    border-radius: 3px;
    color: #fff;
}
.button.button_red.long {
    padding: 20px;
}
.button.button_white {
    padding: 20px 70px;
    background: #fff;
    border: 1px solid #b60005;
    border-radius: 3px;
    color: #333;
}
.button.button_white2 {
    padding: 20px 70px;
    background: #fff;
    border: 1px solid #b60005;
    border-radius: 3px;
    text-align: center;
}
.button.button_white2.albumLink {
    padding: 15px 50px;
}
.button.button_white_waku {
    padding: 20px 50px;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
}
.btn_area > span, .button_redArea > span {
  position: relative;
  display: inline-block;
}
.btn_area > span:before, .btn_area2 > span:before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right:10px;
  width: 0;
  height: 0;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left: 6px solid #b60005;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button_redArea > span:before {
    display: block;
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -6px;
  border: 6px solid transparent;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
    border-top: 6px solid #fff;
    right: 10px;
}
.btn_area3 > span:before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    margin-top: -6px;
    border: 6px solid transparent;
    border-left: 6px solid #ffffff;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
.button_redArea.mynav_link >  span:before {
    display: block;
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left: 6px solid #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
    right: 10px;
}
.btn_area.messagelink > span:before {
  border-left: 6px solid #333;
  right: 6px;
}
.btn_area.career > span:before {
  border-left: 6px solid #fff;
  right: 6px;
}
.button_redArea > span:before {
    transition:all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}

.btn_area > span:hover:before {
    right: 6px;
    transition:all 0.2s linear;
}

.button_redArea.mynav_link > span:hover:before {
    right: 0px;
    transition:all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}

.button_redArea a:hover ,.button_redArea.mynav_link a:hover {
    opacity: 1;
}
.btn_area.mynav_link2 >  span:before {
    display: block;
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  right: 0;
  margin-top: -6px;
  border: 6px solid transparent;
  border-top: 6px solid #b60005;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.btn_area.mynav_link2 > span:hover:before {
    top: 55%;
    transition:all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.btn_area.mynav_link2 a:hover {
    opacity: 1;
}

.button.button_white3 {
    padding: 20px 70px;
    border-radius: 3px;
    text-align: center;
    font-size: 20px;
}

/*================================================
 *  メインビジュアル
 ================================================*/
.category-visual {
    width: 100%;
    height: 146px;
    position: relative;
    text-align: center;
    color: #333;
    font-size: 38px;
    font-size: 3.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}
h1.category-visual--title {
    font-size: 1.8rem;
}
i.typ-section-main {
    font-size: 4.0rem;
    font-style: normal;
    line-height: 1.0;
}
.category-visual.category-visual--message {
    height: 440px;
    width: 100vw;
    color: #fff;
    font-size: 50px;
    font-size: 5.0rem;
    background: url(/career/images/category-visual-message.png) no-repeat;
    background-size: cover;
}
.category-visual--message .category-visual--title-area {
    padding: 0 calc(40% - 280px);
    width: 100%;
}
.category-visual.category-visual--message {
    height: 440px;
    width: 100vw;
    color: #fff;
    font-size: 50px;
    font-size: 5.0rem;
    background: url(/career/images/category-visual-message.png) no-repeat;
    background-size: cover;
}
.category-visual.category-visual--interview {
    height: 350px;
    width: 100vw;
    background-color: #eee;
    font-size: 50px;
    font-size: 5.0rem;
    background: url(/career/images/category-visual-interview2.jpg) no-repeat;
    background-size: cover;
}
.category-visual.category-visual--crosstalk {
    height: 350px;
    width: 100vw;
    background-color: #eee;
    font-size: 50px;
    font-size: 5.0rem;
    background: url(/career/images/category-visual-crosstalk.jpg) no-repeat;
    background-size: cover;
}
.category-visual--message h1.category-visual {
    display: block;
    height:100%;
    font-size: 45px;
    font-size: 4.5rem;
    color: #b60005;
    font-weight: 600;
    line-height: 1.0;
    text-align: left;
    background-color:unset;
}
.category-visual--interview h1.category-visual {
    display: block;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 50px;
    color: #ffffff;
}
.category-visual--interview .category-visual-right {
    display: block;
    right: 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    text-align: right;  
    color: #fff;
    line-height: 1.6;
    background-color:unset;
}
.category-visual--interview .text-n {
    font-size: 22px;
    font-size: 2.2rem;
}
.interview_title-area {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}



/**********アニメーション設定end**********/

/* 「RightToLeft」を適用する箇所 */
h1.category-visual--title {
    animation-duration: 2s;/* アニメーション時間 */
    animation-name: RightToLeft;/* アニメーション名 */
}
i.typ-section-main {
    animation-duration: 1s;/* アニメーション時間 */
    animation-name: LeftToRight;/* アニメーション名 */
}

#main-top {
    width: 100%;
}
.separate--tool {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.separate--tool.message_area {
    background: url(/career/images/career_top_kanno02.png) 100px 0 no-repeat;
}

.tool__img {
    width: 50%;
    text-align: center;
}
.separate--tool .separate__body {
    width: 50%;
    text-align: center;
    padding: 60px 0;
}
.separate__body h3 {
    border: none;
    font-size: 3.0rem;
    line-height: 1.0;
    margin-bottom: 20px;
    padding: 0;
}
.separate__text {
    text-align: left;
}
.separate__text p {
    font-size: 1.4rem;
    line-height: 1.6;
}
.category-title-sub {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.4;
    margin-bottom: 25px;
    border: none;
}
.h3_title {
    border: none;
    font-size: 30px;
    font-size: 3.0rem;
    line-height: 1.0;
    margin-bottom: 25px;
    padding: 0;
    text-align: center;
}
.rei {
    color: #b60005;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
}
.sub {
    font-size: 13px;
    font-size: 1.3rem;
}
.category__text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.evenly_empty {
    justify-content: space-between;
}
.flex-box.evenly_empty li {
    width: 48%;
}
.evenly_empty.top_saiyou{
    margin: 0;
}
.flex-box.evenly_empty.top {
    margin-bottom: 0px;
}

.linkbtn_area li {
    width: 30%;
    text-align: right;
    border: 1px solid #b60005;
    border-radius: 6px;
}
.linkbtn_area li a {
    color: #000;
    font-weight: bold;
    font-size: 25px;
    font-size: 2.5rem;
    padding: 90px 20px 90px 80px;
    display: block;
}
.linkbtn_area li a.btn_txt {
    padding: 90px 20px 90px 50px;
}
.linkbtn_area li > span {
    position: relative;
    display: inline-block;
}
.linkbtn_area li > span:before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 1px;
    width: 0;
    height: 0;
    margin-top: -8px;
    border: 8px solid transparent;
    border-left: 8px solid #b60005;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.linkbtn_area li:hover{
    opacity: 0.8;
}
.linkbtn_area li > span:hover:before {
    right: -2px;
}
.adoption li {
    border: none;
    background-color: #fff;
    width: 45%;
    padding: 50px 0;
    text-align: center;

}
.adoption li:hover{
    opacity: 1.0;
}
.adoption .h3_title {
    margin-bottom: 10px;
}
.adoption .button.button_white {
    background: url(/career/images/career_top_memo.png) no-repeat 18px 13px;
}
.top_interview {
    background: url(/career/images/career_top_interview.png) no-repeat;
    background-size: 100%;
}
.top_number {
    background: url(/career/images/career_top_number.png) no-repeat;
    background-size: 100%;
}
.top_office {
    background: url(/career/images/career_top_office2.png) no-repeat;
    background-size: 100%;
}
.offer_txt {
    margin-bottom: 30px;
}
.contents_l {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    z-index: 0;
}
.contents_l:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 75%;
    margin: 0% -10% 0;
    background: #000;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    z-index: -1;
}
.tool__img img {
}
.effect img {
  transition: .8s;
}
.effect p {
  transition: .8s;
}
#ltr .effect #img01 {
  transition: .8s;
}
#ltr .effect #img02 {
  transition: .8s;
  transition-delay: .8s;
}
#ltr .effect #img03 {
  transition: 1.6s;
  transition-delay: 1.6s;
}
.news_are {
    display: flex;
    width: 100%;
    margin: 10px 0;
}
.news_title {
    width: 15%;
    border-right: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news_clip {
    margin: 0 0 0 20px;
    font-size: 1.3rem;
}
.news_clip .news_date {
    margin-right: 10px;
}
.main-contents--single.entry_area {
    padding: 60px 0;


}
.entry_area .h3_title{
    font-size: 20px;
    font-size: 2.0rem;
    color: #fff;
}

.entry_contact {
    padding: 0 calc(50% - 340px);
}
.info_area {
    text-align: center;
    color: #fff;
    margin-top: 30px;
}
.info_area .info_contact{
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 0 55px;
    color: #fff;
    border: none;
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
}
.info_area .info_contact:before, .info_area .info_contact:after{
content: '';
position: absolute;
top: 50%;
display: inline-block;
width: 45px;
height: 1px;
background-color: #fff;
}
.info_area .info_contact:before {left:0;}
.info_area .info_contact:after {right: 0;}

.info_jinji , .info_jinji a {
    color: #fff;
}
.Annotation {
    font-size: 0.7rem;
    margin-top: 10px;
    padding: 0 10px;
    text-align: center;
}
.sup {
  font-size: 50%;
  position: relative;
  vertical-align: top;
}
/*================================================
 * メッセージ
 ================================================*/
.message_body {
    text-align: left;
}
.message_content_area2 {
  margin-top: 80px;
  text-align: left;
}
.message_content_area2 p {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
}
.message_content_area {
    text-align: center;
    margin: 20px 0 0 0;
}
.message_content_area p {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
}
.separate--tool .separate__body.message {
  width: 60%;
  text-align: center;
  padding: 60px 0;
}
h2.message_imgtxt {
    font-weight: normal;
    font-size: 2.6rem;
    color: #333;
    line-height: 1.6;
    text-align: center;
}
h2.message_imgtxt::after {
    content: '';
    display: block;
    width: 60px;
    background: #b60005;
    height: 2px;
    margin: 10px auto 15px;
}

.caption_name{
  font-size: 18px;
  font-size: 1.8rem;
  font-family: serif;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-top: 10px;
}
/*================================================
 *  求める人財像
 ================================================*/
.personnelimg_body {
    position: relative;
}
.personnelimg_area {
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 40px;
    background-color: #fff;
}
.personnelimg_txt {
    padding: 20px 0;
}
personnelimg_area.img_01 {
    background:url(/career/images/personnel_img_01.jpg) no-repeat 0 0;
    background-size: 100%;
}
.personnelimg_area.img_02 {
    background:url(/career/images/personnel_img_02.jpg) no-repeat 0 0;
    background-size: 100%;
}
.personnelimg_area.img_03 {
    background:url(/career/images/personnel_img_03.jpg) no-repeat 0 0;
    background-size: 100%;
}
.personnelimg_area.img_04 {
    background:url(/career/images/personnel_img_04.jpg) no-repeat 0 0;
    background-size: 100%;
}
.personnelimg_area .h3_title {
    font-weight: bold;
    margin-bottom: 5px;
    color:#b60005;
    line-height: 1.4;
   }
.personnelimg_area .bold {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.personnelimg_area .txt {
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 5px;
    font-weight:normal;
    line-height: 1.4;
}
.personnelimg_area ul.personnelimg_list {
    text-align: left;
    margin-left: 40px;
}
.personnelimg_area ul.personnelimg_list li {
    list-style: disc;
    padding-bottom: 5px;
}
.circle {
    position: absolute;
    width: 40rem;
    height: 40rem;
    border: solid 30px #b60005;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}
/*================================================
 * オフィスツアー
 ================================================*/
.main_image {
    height: 200px;
    text-align: center;
    margin-bottom: 30px;
    display: table;
    width: 100%;
}
.main_image.office {
    height: 100px;
    background: #fff;
    border-radius: 6px;
    color: #b60005;
}
.main_image p {
    font-size: 30px;
    font-size: 3.0rem;
    display: table-cell;
    vertical-align: middle;
}
.office_img {
    margin-bottom: 20px;
}
.office_img {
    margin-bottom: 20px;
}
.evenly_empty .office_img {
    width: 48%;
}
.evenly_empty.triple .office_img {
    width: 32%;
}
.office_balloon {
    background-color: #fff;
    margin-bottom: 50px;
    padding: 10px 10px 10px 20px;
    border-radius: 10px;
    display: flex;
    -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
    align-items: center; /* 縦方向中央揃え */
}
.office_balloon img {
    max-width: 80px;
}
.office_balloon .balloon_txt {
    padding-left: 20px;
}
.office_balloon .balloon_txt:before {

}
.office_balloon.two_area {
    width: 50%;
    height: 100%;
    margin-right: 10px;
}
.office_balloon.two_area.right {
    width: 50%;
    height: 100%;
    margin-left: 10px;
    margin-right: 0;
}
p.balloon_txt {
    font-size: 16px;
    font-size: 1.6rem;
}
/*================================================
 * 数字で見る
 ================================================*/
.main_image.number {
    height: 100px;
    background: #fff;
}
.main_image.number p {
    color: #b60005;
}
.main-contents--single3.number_area .flex-box2.evenly_empty{
    margin-bottom: 20px;
    color: #b60005;
}
.number_img, .number_img1 {
    background-color: #fff;
    width: 49%;
    text-align: center;
    border-radius: 6px;
    position: relative;
    padding: 10px;
}
.number_img2 {
    background-color: #fff;
    width: 100%;
    border-radius: 6px;
    position: relative;
    padding: 30px;
}
.number_img3 {
    background-color: #fff;
    border-radius: 6px;
    position: relative;
    padding: 10px;
    text-align: center;
}
h2.number_imgtxt {
    margin-bottom: 18px;
    font-weight: normal;
    font-size: 2.6rem;
    color: #333;
}
h2.number_imgtxt.font-40 {
    font-size: 4rem;

}
h2.number_imgtxt.lineh01 {
    line-height: 1.2;

}
.number_56 {
    width: 54%;
}
.number_19 {
    width: 15%;
}
.number_06 {
    width: 6%;
}
.ttl{
    margin-bottom: 36px;
    display: block;
    line-height: 2;
    text-align: center;
}
.ttl::after {
    content: '';
    display: block;
    width: 60px;
    background: #000;
    margin: 0 auto;
}
.number_imgtxt.ttl::after {
    background: #b60005;
    height: 2px;
}
p.number_lead {
    display: block;
    font-size: 2rem;
    line-height: 1.6;
    color:#333;
}

.number_lead2 {
    display: block;
    font-size: 2rem;
    margin: 10px 0;
    line-height: 1.6;
    color:#333;
}

.number_leadlist {
    font-size: 1.8rem;
    line-height: 1.6;
    color:#333;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.number_leadlist dt {
    width: 12%;
}
.number_leadlist dd  {
    width: 88%;
}
.clum-left {
    margin-left: 80px;
}

.number_num {
    font-size: 5rem;
    color: #b60005;
    font-weight: bold;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    position: relative;
    margin-top: 10px;
}
.number_num.back-img {
    background: url(/career/images/number03-1.png) no-repeat;
    background-size: 25% auto;
    background-position: center;

}
.number_num.back-img2 {
    font-size: 5vw;
    background: url(/career/images/number03-2.png) no-repeat;
    background-size: 25% auto;
    background-position: center;
}
.number_num2 {
    font-size: 5rem;
    color: #b60005;
    font-weight: bold;
    white-space: normal;
    line-height: 0.8;
    text-align: center;
    margin-top: 10px;
}
.num {
    font-size: 2.5rem;

}
.num.plus {
    position: absolute;
    bottom: 20px;
    left: -7px;
}
.number_img img {
    height: auto;
    width: 300px;
}
.number_img1 img, .number_img2 img, .number_img3 img {
    height: 60px;
    width: 60px;

}
.lage-img-area {
    text-align: center;
}
.lage-img-area img.lage-img {
    height:auto;
    width: 80%;
}
.number_img1 img.lage-img2 {
    height:150px;
    width: 150px;

}
.annotation2{
    font-size: 9px;
    display: block;
    color:#333;
}
.category_chart_number {
    font-family: Oswald-Medium, sans-serif;
    fill: #000;
    line-height: 1;
    letter-spacing: 0em;
}
.category_chart_number.large {
    font-size: 56px;
    font-size: 5.6rem;

}
.category_chart_number .small {
        font-size: 16px;
        font-size: 1.6rem;

}
.introduction-menu{
    text-align: center;
    margin: 30px auto;
    padding: 20px 0;
    background: #fff;
    font-size: 1.5rem;
}
.introduction-menu a{
    padding: 10px;
}
a.current {
color: #333;
}
/*================================================
 * 先輩社員紹介
 ================================================*/
.main_image.crosstalk{
    height: auto;
    margin-bottom: 0;
    background-position: center;
    background-size: cover;
}
.member_title {
    text-align: left;
    font-size: 4.0rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.member_title .member_title-sub {
    font-size: 1.3rem;
    display: block;
}
.member_body {
    padding: 20px;
}
.member_area {
    width: 23%;
    font-size: 16px;
    font-size: 1.6rem;
}
.member_area img {
}
.member_txt {
    font-size: 16px;
    font-size: 1.6rem;
    ine-height: 1.3;
    margin-bottom: 20px;

}
.member_txt p{
    font-size: 25px;
    font-size: 2.5rem;
    margin: 10px auto 5px;
    text-align: left;
}
.member_self-introduction {
    font-size: 16px;
    font-size: 1.6rem;
    border-top: 1px solid #b60005;
    padding-top: 15px;
    margin: 0 10px;
}
.member_self-introduction span{
    display: block;
}
.crosstalk_titile {
    text-align: center;
    color: #b60005;
    font-size: 35px;
    font-size: 3.5rem;
}

.contentBox-block {
    padding: 0 10px;
}

.contentBox-block .contentBox_thumbnail_block {
  margin: 40px auto 60px;
}
.contentBox-block .contentBox_thumbnail_block-crosstalk {
  margin-bottom: 0;
}
.contentBox-block .contentBox_thumbnail_block-right {
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.contentBox-block .contentBox_thumbnail_block-crosstalk .contentBox_thumbnail_txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  line-height: 2.6rem;
  position: relative;
  max-width: 630px;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
}
.contentBox-block .contentBox_thumbnail_block-right .contentBox_thumbnail_txt {
  margin: 0 20px 30px 0;
}
.contentBox-block .contentBox_thumbnail_block-left .contentBox_thumbnail_txt {
  margin: 0 0 30px 20px;
}
.contentBox-block .contentBox_thumbnail_block-crosstalk .contentBox_thumbnail_txt:after, .contentBox_table_blockR .banner-block figcaption:before, .contentBox_table_blockR .banner-block figcaption:after, .select-wrap:before {
  position: absolute;
  display: block;
  content: '';
}
.contentBox-block .contentBox_thumbnail_block-crosstalk .contentBox_thumbnail_txt:after {
  top: 5px;
  width: 0;
  height: 0;
  border: 30px solid transparent;
}
.contentBox-block .contentBox_thumbnail_block-left .contentBox_thumbnail_txt:after {
  left: -45px;
  border-right-style: solid;
}
.contentBox-block .contentBox_thumbnail_block-left .contentBox_thumbnail_txt:after {
  border-right-color: #fff;
}
.contentBox-block .contentBox_thumbnail_block-right .contentBox_thumbnail_txt:after {
  border-left-color: #fff;
}

.contentBox-block .contentBox_thumbnail_block-right .contentBox_thumbnail_txt:after {
  right: -45px;
  border-left-style: solid;
}
.mainBox figure {
  position: relative;
}
.contentBox .contentBox_thumbnail_img {
    position: relative;
    max-width: 94px;
}
.contentBox-block .contentBox_thumbnail_block-crosstalk .contentBox_thumbnail_img {
    min-width: 70px;
    min-height: 70px;
    }
.mainBox img {
    vertical-align: top;
}
.contentBox .contentBox_thumbnail_img img {
  width: 100%;
}
.contentBox-block .contentBox_thumbnail_block-crosstalk .contentBox_thumbnail_img img {
    border-radius: 50%;
}
/*=左==*/
.contentBox-block .contentBox_thumbnail_block-left {
    -ms-flex-pack: start;
    justify-content: flex-start;
}
/*================================================
 *福利厚生
 ================================================*/
.welfare_area {
    margin-bottom: 50px;
}
.welfare_txt {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 20px 10px;
}
.welfare_list {
    background-color: #fff;
    margin-bottom: 30px;
}
h3.welfare_title {
    border: none;
    color: #b60005;
    margin: 0;
    padding: 10px 20px 0 20px;
}
.welfare_opinion{
    display: flex;
    padding-top: 10px;
    border-top: 1px solid #999;
    padding: 15px 10px;
    margin: 0 10px;
    justify-content: center;
    align-items: center;
}
.welfare_icon01, .welfare_icon02 {
    display: flex;
    flex-basis: 20%;
    order: 1;
    color: #333;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6em;
    align-items: center;
}
.welfare_icon01:before {
    content: '';
    width: 40px;
    height: 43px;
    display: inline-block;
    background: url(/career/images/welfare_icon.gif) no-repeat 0 0;
    background-size: 40px auto;
    position: relative;
    padding-right: 20px;
}
.welfare_icon02:before {
    content: '';
    width: 40px;
    height: 43px;
    display: inline-block;
    background: url(/career/images/welfare_icon2.gif) no-repeat 0 0;
    background-size: 40px auto;
    position: relative;
    padding-right: 20px;
}
.welfare_opinion .welfare_txt {
    display: flex;
    flex-basis: 80%;
    order: 2;
    padding: 0;
    font-size: 1.3rem;
}
/*================================================
 * インタビュー
 ================================================*/
 .interview_content{
    margin-bottom: 80px;
 }
 .interview_content p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
 }
.interview_content_area {
    font-size: 20px;
    font-size: 2.0rem;
    text-align: center;
    margin: 30px 0 50px;
}
.interview_content_area p {
    font-size: 1.3rem;
    margin-top: 15px;
}
h3.interview_title {
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: normal;
    margin-bottom: 0;
    text-align: left;
    font-weight: 700;
}
.number-big {
    color: #ffffff;
    font-size: 45px;
    font-size: 4.5rem;
    padding-right: 5px;
    font-weight: 700;
}
.interview_body p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
}
.interview_body .text_area, .interview_body .img_area {
    width: 48%;
}


/*================================================
 *募集要項
 ================================================*/
.recruit_area {
      text-align: center;
      background-color: #fff;
}
.recruit_area h2 {
    font-weight: normal;
}


.recruit_area.flex-box {
    margin-bottom: 0px;
}

.recruit_list{
    margin-bottom: 50px;
    display: block;
    height: 100%;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
.recruit_btn {
    margin-bottom: 50px;
    display: block;
    height: 100%;
    width: 45%;
    margin: 0 auto;
    text-align: center;
}
.mynav_link {
    padding: 20px 80px;
    margin: 0;
    border: 2px solid #999;
    border-radius: 50px;
    background-color: #fff;
    margin-bottom: 30px;
    display: block;
}
.mynav_link.border-none {
border: none;
}
.mynav_link2 {
    margin: 0;
    border: 2px solid #999;
    border-radius: 50px;
    background-color: #fff;
    margin-bottom: 30px;
    display: block;
}
.mynav_link img {
    vertical-align: middle;
}
.evenly_empty.recruit{
    width: 98%;
    margin: 0 auto;
    padding-bottom: 10px;
}
.evenly_empty.recruit li {
    width: 48%;
    background-color: #b60005;
}
table.base-table th {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  line-height: 1.5;
}
table.base-table thead th {
  color: #fff;
  text-align: center;
  background-color: #999999;
  font-size: 1.6rem;
  font-weight: bold;
}
table.base-table th, .base-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  line-height: 1.5;
}
table.base-table tbody .lay04, tbody .lay04 {
  width: 20%;
  text-align: left;
}
table.base-table tbody .lay02 {
  width: 65%;
  text-align: left;
}

.list--disc > li {
  line-height: 1.6;
  margin-left: 1em;
  margin-bottom: 10px;
  text-indent: -1em;
}
.list--disc > li:before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #666;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.list--disc.indent > li {
    line-height: 1.6;
    margin-left: 0;
    margin-bottom: 10px;
    text-indent: 1em;
  }


/*================================================
 *アルバム
 ================================================*/
.example-image-link {
  display: inline-block;
  padding: 2px;
  margin: 0 0.5rem 1rem 0.5rem;
  background-color: #fff;
  line-height: 0;
  border-radius: 4px;
  transition: background-color 0.5s ease-out;
}
  .example-image-link:hover {
    background-color: #4ae;
    transition: none;
  }

.example-image {
  border-radius: 4px;
  pointer-events: none;
}
.example-image {
  pointer-events: none;
}

/*================================================
 *  バナー
 ================================================*/
.bnr_area {
    display: flex;
    border: 1px solid #999;
    border-radius: 3px;
    box-shadow: 1px 1px 1px #999;
}
.bnr_img {
    width: 34%;
    background: #000;
}
.bnr_img img {
    height: 100%;
}
.bnr_txt {
    width: 66%;
    background: #fff;
    text-align: left;
    padding: 5px 5px 0 10px;
    color: #333;
}
.bnr_title {
    font-size: 1.9rem;
    color: #333;
    font-weight: bold;
}
.bnr_txt {
    width: 100%;
}
.bnr_txt p {
    font-size: 1.3rem;
}
.bnr_txt span{
    display: block;
    padding-top: 10px;
    font-size: 1.2rem;
}



/*================================================
 *  ipad向けデザイン
 ================================================*/
 @media screen and (max-width:768px) {
    #sub {
        display:none;
        width:100%;
    }
    #main {
        width: 100%;
    }
    header .header_area .inner {
        width: 100%;
    }
    header .header_area .inner h1 {
        padding-left: 10px;
    }
    .dejima__date {
        flex-basis: 15%;
    }
    .footmenu li {
        padding: 0 10px;
    }
    .main-contents--single.message_area {
        padding: 20px 0;
    }
    .view-pc {
        display: none;
    }
    .view-sp {
        display: block;
    }
    .separate--tool.message_area {
        background: url(/career/images/career_top_kanno02.png) 0px 0 no-repeat;
    }
    .contents--second {
        padding-top: 20px;
    }
    .bnr_title{
        font-size: 1.5rem;
    }
    .contents_l {
        padding: 0px 0 50px;
    }
    .flex-box.evenly_empty.top {
        margin: 0 10px;
    }
    .main-contents--single {
        padding: 30px 0;
    }
    .footmenu a {
        padding: 0;
    }
    .separate--tool .separate__body {
        width: 100%;
        text-align: center;
        padding: 20px 10px;
    }
    .linkbtn_area li a.btn_txt {
        font-size: 18px;
        font-size: 1.8rem;
        padding: 60px 20px 60px 20px;
    }
    .ltr li {
        width: 32%;
        font-size: 13px;
        font-size: 1.3rem;
        height: 230px;
    }
    .ltr li span {
        top: 60px;
        padding: 0 10px;
          line-height: 1.3;
    }
    .personnelimg_body .main-contents--single {
        padding: 30px 10px;
    }
    .personnelimg_body
    .personnelimg_body #main {
        padding: 0 10px;
    }
    footer {
        padding: 0 10px;
    }
    .footmenu ul {
        margin: 0;
    }
    .footmenu a {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:767px) {
    body {
        margin-top: 0 !important;
    }
    .lock {
        overflow:hidden;
    }
    .view-pc {
        display: none;
    }
    header .header_area .inner {
        padding: 0;
        width: 100%;
    }
    header .header_area .inner h1 {
        font-size: 1.0rem;
        padding-left: 50px;
        line-height: 2.0;
    }
    header .header_area .inner h1 img {
        width: 60%;
        margin-left: 20px;
    }
    header .header_area .inner h1 span {
        display: none;
    }
    footer {
        padding: 0;
    }
    .footmenu ul {
        border: none;
    }
    .summary {
        position:relative;
        top:auto;
        right:auto;
        margin-left:15px;
    }
    .sub {
        font-size: 16px;
        font-size: 1.6rem;
    }
    nav {
        width: 95%;
        background-color: #fff;
        position: absolute;
        top: 40px;
        font-size: 1.6rem;
    }
    nav ul {
        margin:0;
        padding:0;
        }
    nav .inner > ul {
        z-index:2;
        overflow:auto;
        position:fixed;
        top: 52px;
        right:0;
        width:100%;
        height:88%;
        height:-webkit-calc(100% - 53px);
        height:calc(100% - 53px);
    }
    nav li {
        position:relative;
        width:100%;
        float:none;
        margin:0;
        text-align:left;
        list-style:none;
        border-bottom:1px solid #8c0e0e;
        background:#9b0f0f;
    }
    nav li:first-child {
        border-top:0;
    }
    nav li:last-child {
        border-bottom:0;
    }
    nav li a {
        display:block;
        padding:15px 30px;
        color:#fff;
        text-decoration:none;
        background:#9b0f0f;
    }
    nav li a:hover {
        color:#fff;
        background:#710000;
    }
    nav ul ul {
        display:block;
        position:relative;
    }
    nav li li a {
        box-sizing:border-box;
        width:100%;
        padding:15px 30px 15px 30px;
        text-align:left;
    }
    #contents {
        padding-top: 40px;
    }
    header {
        width: 100%;
        position: fixed;
        background-color: #fff;
        z-index: 10000;
        position: fixed;
    }
    .header_menu li.entry{
        border-left: none;
        padding: 20px 0;
        background: #b60005;
        color: #fff;
        font-weight: bold;  
        margin: 0;
    }
    .subnav > a:before {
        display:block;
        content:"";
        position:absolute;
        -webkit-transform:rotate(45deg);
        transform:rotate(45deg);
        top:20px;
        right:30px;
        width:10px;
        height:10px;
        margin-top:-5px;
        background:#f1f1f1;
    }
    .subnav > a:after {
        display:block;
        content:"";
        position:absolute;
        -webkit-transform:rotate(45deg);
        transform:rotate(45deg);
        top:20px;
        right:30px;
        width:10px;
        height:10px;
        margin-top:-10px;
        background:#9b0f0f;
    }
    .subnav a:hover:after {
      background:#710000;
    }

    .active > a:before {
        margin-top:0;
    }
    .active > a:after {
        margin-top:5px;
    }
    .gnav {
        display:none;
    }
    #spMenu {
        display:block;
        z-index:5;
        position:fixed;
        top: 5px;
        left: 5px;
    }
    #spMenu:hover {
        cursor:pointer;
    }
    #navBtn {
        display:inline-block;
        position:relative;
        width:47px;
        height:47px;
        border-radius:5%;
        background:#710000;
        color: #710000;
    }
    #navBtnIcon {
        display:block;
        position:absolute;
        top:50%;
        left:50%;
        width:14px;
        height:2px;
        margin:-1px 0 0 -7px;
        background:#f1f1f1;
        transition:.2s;
    }
    #navBtnIcon:before,
    #navBtnIcon:after {
        display:block;
        content:'';
        position:absolute;
        top:50%;
        left:0;
        width:14px;
        height:2px;
        background:#f1f1f1;
        transition:0.3s;
    }
    #navBtnIcon:before {
        margin-top:-6px;
    }
    #navBtnIcon:after {
        margin-top:4px;
    }
    #navBtn .close {
        background:transparent;
    }
    #navBtn .close:before,
    #navBtn .close:after {
        margin-top:0;
    }
    #navBtn .close:before {
        transform:rotate(-45deg);
        -webkit-transform:rotate(-45deg);
    }
    #navBtn .close:after {
        transform:rotate(-135deg);
        -webkit-transform:rotate(-135deg);
    }
    .col_two_one ul {
        margin-right:0;
    }
    .col_two_one li {
        width:100%;
    }
    .col_two_one li:nth-child(2n+1) {
        clear:both;
    }
    .info__list {
        padding-left: 10px;
    }
    .info__date {
        width: 25%;
    }
    .info__label {
        width: 13%;
    }
    .info__text {
        width: 60%;
    }
    .footmenu {
          display: block;
          background-color: #fff;
          height: auto;
          padding: 5px 0 0 0;
    }
    .footmenu a {
          padding: 0;
  font-size: 1.1rem;
    }
    .main-contents--single.top {
        padding: 40px 10px;
    }

    .messagelink .button.button_white {
        padding: 10px 20px;
    }
    .main-contents--single.message_content {
        padding: 10px 0;
    }
    .main-contents--single.requirements {
        margin: 30px 0;
    }
    .recruit_area{
          margin-top: 10px;
          display: block;
    }
    .recruit_area .content_area {
        margin: 0px 10px;
    }
    .recruit_area h2 {
        margin: 0;
    }
    .btn_area.career .button.button_white_waku {
        width: 340px;
    }
    .separate--tool .separate__body.message {
        width: 140%;
        padding: 40px 0 50px;
    }
    .separate--tool .separate__body {
        width: 100%;
    }
    .separate--tool .separate__body.message_body {
        width: 100%;

    }
    .contents_l:before {
        height: 100%;
        margin: 3% -10% 0;
    }
    .footmenu ul {
          padding: 0;
          -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
          -ms-flex-pack: center;
          justify-content: center;
          margin: 0;
    }
    .footmenu li {
        border-right: 1px solid #333;
        border-left: none;
        margin: 10px 0;
    }
    .footmenu li:first-child {
      border-left: 1px solid #333;
    }
    .footer_copyright {
        width: 100%;
        margin: 0;
        padding: 10px;
        text-align: center;
        background-color: #c01920;
        display: block;
        vertical-align: bottom;
        color: #fff;
    }
    .footer_entry .main-contents--single.entry_area {
        padding: 40px 0;
    }
    .flex-box.evenly_empty {
        display: block;
    }
    .flex-box.evenly_empty li{
        width: 100%;
        text-align: center;
    }
    .circle {
        display: none;
    }
    .personnelimg_area {
        margin-bottom: 100px;
    }
    .personnelimg_area ul.personnelimg_list {
        margin-left: 40px;
    }
    .personnelimg_area ul.personnelimg_list li {
        text-align: left;
    }
    .personnelimg_area .bold {
        font-size: 12px;
        font-size: 1.2rem;
    }
    .personnelimg_area ul.personnelimg_list {
        margin-left: 20px;
    }
    .news_date {
        padding-right: 10px;
    }
    .new_graduate {
        margin-bottom: 10px;
    }
    .news_title {
        width: 100%;
        padding: 0 10px;
        font-size: 16px;
        font-size: 1.6rem;
        border-bottom: 1px solid #fff;
    }
    .news_are {
        display: block;
        margin: 10px 0 0;
    }
    .news_clip {
        padding: 10px;
        margin-left: 0;
    }
    .news_clip li {
        display: flex;
        padding-bottom: 3px;
    }
    .Annotation {
    text-align: left;
    }
    .ltr .flex-box.evenly_empty.top li {
        width: 100%;
        height: 370px;
        font-size: 1.6rem;
        background-size: 100%;
        text-align: left;
        margin-bottom: 15px;
    }
    .ltr .flex-box.evenly_empty.top li span{
        top: 60px;
        font-size: 1.6rem;
    }
    .main-contents--single {
        padding-bottom: 0;
        padding: 0 10px;
        background-size: 100%;
    }
    .linkbtn_area li {
        width: 100%;
        background-size: 100%;
        margin-bottom: 10px;
    }.separate--tool {
        display: block;
    }
    .separate--tool .separate__body {
        width: 100%;
        padding-bottom: 30px;
    }
    .separate--tool .separate__body.top {
        width: 100%;
        padding: 30px 10px;
    }
    .separate--tool.message_area {
        padding: 0 0;
        background-position-x: -20px;
        background-size: 60%;
    }
    .adoption {
        margin: 10px;
    }
    .contents_l {
        padding: 0;
    }
    .ltr li {
        width: 33%;
    }
    .linkbtn_area li a.btn_txt {
        font-size: 25px;
        font-size: 2.5rem;
        padding: 60px 20px;
    }
    .separate__body.message h3 {
        font-size: 2.0rem;
    }
    .adoption li {
        width: 100%;
        margin-bottom: 10px;
    }
    .contents_l {
        padding: 0;
    }
    .separate--tool.aim {
        background: none;
    }
    .offer_txt {
        margin-bottom: 15px;
    }
    .adoption li {
        padding: 30px 0;
    }
    .main-contents--single3 {
        width: auto;
        padding: 0 10px;
    }
    .main-contents--single4 {
        width: auto;
        padding: 10px;
    }
    .flex-box2 {
        display: block;
    }
    .flex-box3 {
        display: block;
    }
    .flex-box3.re {
        display: flex;
    }
    .lage-img-area img.lage-img {
        width: 100%;
    }
    .member_body {
        padding: 0;
    }
    .member_area {
        display: -ms-flexbox;
        display: flex;
        width: auto;
        max-width: inherit;
        margin-bottom: 30px;
        -ms-flex-pack: justify;
        -ms-flex-align: center;
        align-items: center;
        border-top: 1px solid #b60005;
        margin-bottom: 0;
    }
    .member_txt {
        margin-left: 10px;
        font-size: 1.1rem;
        line-height: 1.3;
    }
    .member_txt p {
        margin: 3px auto;
        text-align: left;
        font-size: 18px;
        font-size: 1.8rem;
        width: 20%;
    }
    .member_area img {
        width: 70px;
        height: 70px;
    }
    .member_title {
        font-size: 25px;
        font-size: 2.5rem;
    }
    .member_self-introduction {
        font-size: 13px;
        font-size: 1.3rem;
        width: 70%;
        border: none;
    }
    .member_body .member {
        border-bottom: 1px solid #b60005;
    }
    .crosstalk_titile {
        text-align: left;
        font-size: 24px;
        font-size: 2.4rem;
    }
    .number_img, .number_img1, .number_img2 {
        width: 100%;
        margin-bottom: 30px;
    padding: 20px 15px;
    }
    .evenly_empty .office_img {
        width: 100%;
    }
    .evenly_empty.triple .office_img {
        width: 100%;
    }
    .office_balloon.two_area.right {
        width: 100%;
        margin: 0 0 30px 0;
    }
    .office_balloon {
        margin-bottom: 30px;
    }
    .personnelimg_body .flex-box.evenly_empty {
        margin-bottom: 30px;
    }
    .evenly_empty.triple .office_img {
        width: 100%;
    }
    .office_balloon.two_area {
        width: 100%;
    }
    .btn_area.OfficeTours span{
        display: block;
    }
    .button.button_white2.albumLink {
        width: 100%;
        padding: 15px 10px;
    }
    .contentBox-block .contentBox_thumbnail_block-crosstalk {
        margin-top: 0;
    }
    .contentBox-block .contentBox_thumbnail_block-crosstalk .contentBox_thumbnail_txt {
        font-size: 1.5rem;
        line-height: 1.6;
        padding: 15px
    }
    .crosstalk_titile {
        font-size: 24px;
        font-size: 2.4rem;
        text-align: left;
    }
    .example-image {
        width: 18rem;
    }
    .recruit_list {
        width: 100%;
        padding: 0 10px;
    }
    .recruit_btn {
        width: 100%;
        padding: 0 10px;
    }
    .flex-box.evenly_empty.recruit {
        width: 95%;
        display: block;
        margin: 0 auto;
        padding: 0 0 10px 0;
    }
    .flex-box.evenly_empty.recruit li {
        margin:  10px 0px;
    }
    .flex-box.evenly_empty.recruit li .button_redArea > span:before, .flex-box.evenly_empty.recruit li .button_redArea > span:hover:before{
        right: -10px;
    }
    .flex-box.evenly_empty.recruit li .button.button_red {
    }
    .personnelimg_body .main-contents--single3 {
        margin-bottom: 30px;
    }
    .personnelimg_body .main-contents--single {
        margin-bottom: 30px;
    }
    .main-contents--single4.welfare {
        padding: 30px 10px;
    }
    .message_content_area, .message_content_area2 {
        text-align: left;
        margin: 0;
        padding: 20px 10px;
    }
    .dropdown .current , .dropdown .none {
        display: none;
    }
    .number_leadlist {
        font-size: 1.5rem;
    }
    .number_leadlist dt {
        width: 30%;
    }
    .number_leadlist dd {
        width: 70%;
    }
    .number_56 {
      width: 52%;
    }
    .number_19 {
      width: 19%;
    }
    .number_06 {
      width: 6%;
    }
    .number_56 .number_num, .number_19 .number_num, .number_06 .number_num {
      font-size: 2.9rem;
    }
  .number_56 .num, .number_19 .num, .number_06 .num {
    font-size: 1.3rem;
  }
  .clum-left {
      margin-left: 0px;
  }
  .tool__img {
      margin: 10px auto;
      text-align: center;
  }
  .tool__img img {
    width: 50%;
  }
  .number_lead2 {
    font-size: 1.8rem;
  }
  h2.number_imgtxt, h2.message_imgtxt {
    font-size: 2.2rem;
    margin-bottom:0;
  }
  .message_content_area2 .h3_title {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
  .bnr_img img {
    height: 100%;
  }
  .bnr_txt span {
    padding-top: 0px;
    font-size: 1.1rem;
  }
  .message_body {
    padding: 20px 10px;
  }
  .bnr_area {
    display: block;
  }
  .bnr_img {
    width: 100%;
  }
  .bnr_img img {
    height: 100%;
  }  
  .mynav_link {
    width: 100%;
    padding:0;
  }
  .interview_content_area {
    font-size: 1.6rem;
    margin: 0 0 30px;
  }
    .category-visual {
        background-color: #fff;
        height: 80px;
    }
    .category-visual--title-area {
        min-height: 70px;
    }
    .category-visual--title {
        font-size: 2.3rem;
    }
        h1.category-visual--title {
            font-size: 1.3rem;
    }
    i.typ-section-main {
        font-size: 3.0rem;
    }
    .category-visual--message, .category-visual--interview {
          background-size: 100%;
          height: 160px;
    }
    .category-visual--message .category-visual--title-area {
          padding-left: 20px;

    }

    .category-visual--message .typ-section-main {
        padding: 0px;
        position: relative;
        top: -20px;
    }
    .category-visual--message h1.category-visual {
          font-size: 3.0rem;
          background-color:unset;
    }
    .category-visual--interview h1.category-visual {
        font-size: 20px;
        font-size: 2.0rem;
        background-color:unset;
        margin: 0;
        height: 50px;
        line-height: 1.3;
    }
    .category-visual--interview .category-visual-right {
        font-size: 13px;
        font-size: 1.3rem;
        line-height: 1.3;
        background-color:unset;
    }
    .category-visual--interview .text-n {
        font-size: 16px;
        font-size: 1.6rem;
    }
    .category-visual.category-visual--message {
        background-size: 100%;
        height: 150px;
        margin-bottom: 10px;
    }
    .category-visual.category-visual--interview {
        background-size: 100%;
        height: 150px;
        margin-bottom: 0px;
        background-color: #eee;
    }
    .category-visual--interview .category-visual--title-area {
        padding: 10px;
    }
    .interview_body .text_area, .interview_body .img_area {
        width: 100%;
        margin-bottom: 15px;
    }
    h3.interview_title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .interview_title-area {
        margin-bottom: 0px;
    }
    .number-big {
        font-size: 35px;
        font-size: 3.5rem;
    }

}

@media (max-width: 640px){
        .image-row {
              text-align: left;
            }
        .example-image {
              width: 16rem;
            }
.introduction-menu{
               background:none;
            }
        
}
@media screen and (max-width:375px) {
    .ltr .flex-box.evenly_empty.top li {
        height: 330px;
    }
}
/*================================================
 *  タブレット向けデザイン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:979px) {
    .inner {
        width:100%;
    }
    #contents {
        box-sizing:border-box;
        width:100%;
    }
    #contents#top {
        background-color: #fff;
    }
    footer {
        width:100%;
    }
}
/*----------------margin paddingの設定-----------------------*/
.u-mt0 {margin-top:0 !important;}.u-mr0 {margin-right:0 !important;}.u-mb0 {margin-bottom:0 !important;}.u-ml0 {margin-left:0 !important;}.u-pt0 {padding-top:0 !important;}.u-pr0 {padding-right:0 !important;}.u-pb0 {padding-bottom:0 !important;}.u-pl0 {padding-left:0 !important;}.u-mt5 {margin-top:5px !important;}.u-mr5 {margin-right:5px !important;}.u-mb5 {margin-bottom:5px !important;}.u-ml5 {margin-left:5px !important;}.u-pt5 {padding-top:5px !important;}.u-pr5 {padding-right:5px !important;}.u-pb5 {padding-bottom:5px !important;}.u-pl5 {padding-left:5px !important;}.u-mt10 {margin-top:10px !important;}.u-mr10 {margin-right:10px !important;}.u-mb10 {margin-bottom:10px !important;}.u-ml10 {margin-left:10px !important;}.u-pt10 {padding-top:10px !important;}.u-pr10 {padding-right:10px !important;}.u-pb10 {padding-bottom:10px !important;}.u-pl10 {padding-left:10px !important;}.u-mt15 {margin-top:15px !important;}.u-mr15 {margin-right:15px !important;}.u-mb15 {margin-bottom:15px !important;}.u-ml15 {margin-left:15px !important;}.u-pt15 {padding-top:15px !important;}.u-pr15 {padding-right:15px !important;}.u-pb15 {padding-bottom:15px !important;}.u-pl15 {padding-left:15px !important;}.u-mt20 {margin-top:20px !important;}.u-mr20 {margin-right:20px !important;}.u-mb20 {margin-bottom:20px !important;}.u-ml20 {margin-left:20px !important;}.u-pt20 {padding-top:20px !important;}.u-pr20 {padding-right:20px !important;}.u-pb20 {padding-bottom:20px !important;}.u-pl20 {padding-left:20px !important;}.u-mt25 {margin-top:25px !important;}.u-mr25 {margin-right:25px !important;}.u-mb25 {margin-bottom:25px !important;}.u-ml25 {margin-left:25px !important;}.u-pt25 {padding-top:25px !important;}.u-pr25 {padding-right:25px !important;}.u-pb25 {padding-bottom:25px !important;}.u-pl25 {padding-left:25px !important;}.u-mt30 {margin-top:30px !important;}.u-mr30 {margin-right:30px !important;}.u-mb30 {margin-bottom:30px !important;}.u-ml30 {margin-left:30px !important;}.u-pt30 {padding-top:30px !important;}.u-pr30 {padding-right:30px !important;}.u-pb30 {padding-bottom:30px !important;}.u-pl30 {padding-left:30px !important;}.u-mt35 {margin-top:35px !important;}.u-mr35 {margin-right:35px !important;}.u-mb35 {margin-bottom:35px !important;}.u-ml35 {margin-left:35px !important;}.u-pt35 {padding-top:35px !important;}.u-pr35 {padding-right:35px !important;}.u-pb35 {padding-bottom:35px !important;}.u-pl35 {padding-left:35px !important;}.u-mt40 {margin-top:40px !important;}.u-mr40 {margin-right:40px !important;}.u-mb40 {margin-bottom:40px !important;}.u-ml40 {margin-left:40px !important;}.u-pt40 {padding-top:40px !important;}.u-pr40 {padding-right:40px !important;}.u-pb40 {padding-bottom:40px !important;}.u-pl40 {padding-left:40px !important;}.u-mt45 {margin-top:45px !important;}.u-mr45 {margin-right:45px !important;}.u-mb45 {margin-bottom:45px !important;}.u-ml45 {margin-left:45px !important;}.u-pt45 {padding-top:45px !important;}.u-pr45 {padding-right:45px !important;}.u-pb45 {padding-bottom:45px !important;}.u-pl45 {padding-left:45px !important;}.u-mt50 {margin-top:50px !important;}.u-mr50 {margin-right:50px !important;}.u-mb50 {margin-bottom:50px !important;}.u-ml50 {margin-left:50px !important;}.u-pt50 {padding-top:50px !important;}.u-pr50 {padding-right:50px !important;}.u-pb50 {padding-bottom:50px !important;}.u-pl50 {padding-left:50px !important;}.u-mt55 {margin-top:55px !important;}.u-mr55 {margin-right:55px !important;}.u-mb55 {margin-bottom:55px !important;}.u-ml55 {margin-left:55px !important;}.u-pt55 {padding-top:55px !important;}.u-pr55 {padding-right:55px !important;}.u-pb55 {padding-bottom:55px !important;}.u-pl55 {padding-left:55px !important;}.u-mt60 {margin-top:60px !important;}.u-mr60 {margin-right:60px !important;}.u-mb60 {margin-bottom:60px !important;}.u-ml60 {margin-left:60px !important;}.u-pt60 {padding-top:60px !important;}.u-pr60 {padding-right:60px !important;}.u-pb60 {padding-bottom:60px !important;}.u-pl60 {padding-left:60px !important;}.u-mt65 {margin-top:65px !important;}.u-mr65 {margin-right:65px !important;}.u-mb65 {margin-bottom:65px !important;}.u-ml65 {margin-left:65px !important;}.u-pt65 {padding-top:65px !important;}.u-pr65 {padding-right:65px !important;}.u-pb65 {padding-bottom:65px !important;}.u-pl65 {padding-left:65px !important;}.u-mt70 {margin-top:70px !important;}.u-mr70 {margin-right:70px !important;}.u-mb70 {margin-bottom:70px !important;}.u-ml70 {margin-left:70px !important;}.u-pt70 {padding-top:70px !important;}.u-pr70 {padding-right:70px !important;}.u-pb70 {padding-bottom:70px !important;}.u-pl70 {padding-left:70px !important;}.u-mt100 {margin-top:100px !important;}.u-mr100 {margin-right:100px !important;}.u-mb100 {margin-bottom:100px !important;}.u-ml100{margin-left:100px !important;}@charset "UTF-8";


