@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.3px;
    font-size: 1.3rem;
    color:#333;
    font-family: YakuHanJP,"游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","Yu Gothic local","Hiragino Sans","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;    line-height:1.5;
    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:#b60005;
    border-bottom:3px solid #b60005;
}

h5 {
    position:relative;
    margin-bottom:0.25em;
    padding-left:10px;
    color:#b60005;
    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;
    max-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;
    max-width: 1200px;
}
header .inner h1 {
    display: block;
    line-height: 4.0rem;
    font-size: 18px;
    font-size: 1.8rem;
}
header .header_area .inner h1 img {
    margin-right: 15px;
    width: 168px;
}
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;
    font-size: 13px;
    font-size: 1.3rem;
}

.header_menu li ul.sub {
    position: absolute;
    top: 100%;
    margin: 0;
    padding: 0; 
    z-index:10000;
    border-left: none;
}
.header_menu li ul.sub li {
    overflow: hidden;
  width: 200%;
  height: 0;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
  border-left: none;
}

.header_menu li ul li a{
    padding: 13px 15px;
    text-align: left;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
  }
.header_menu li:hover > a{
    color: #333;
  }
.header_menu li:hover ul li{
    display: block;
    background: #fff;
    border-bottom: 1px solid #eee;
    overflow: visible;
    height: 38px;
    border-left: none;
    z-index:10000;
  }
.header_menu li:hover ul li:first-child{
    border-top: 0;
  }
.header_menu li:hover ul li:last-child{
    border-bottom: 0;
  }




/*================================================
 *  グローバルナビゲーション
 ================================================*/
@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: 25%;
    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.8rem;
    font-size: 18px;
    line-height: 1em;
}
nav li a span{
    font-size: 1.1rem;
    font-size: 11px
}
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;
}

/*================================================
 *  フッター
 ================================================*/
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;
    height: 50px;
    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;
}
.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;
}

.section-bg--gray {
    background-color: #f8f8f8;
}
.main-contents--single {
  padding: 60px 0;
  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%;
}
.footer_entry {
    background-color: #b60005;
}
.footer_entry 


.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_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 70px;
    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: 0;
  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;
}
.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;
}
.btn_area > span:hover:before {
    right: 6px;
    transition:all 0.2s linear;
}
.button_redArea > span:before {
    transition:all 0.2s linear;
    -webkit-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 > span:hover:before {
      top: 55%;
    transition:all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.button_redArea a:hover ,.button_redArea.mynav_link a:hover {
    opacity: 1;
}

/*================================================
 *  メインビジュアル
 ================================================*/
.Offshore {
    width: 100%;
    color: #fff;
    font-size: 50px;
    font-size: 5.0rem;
    background: url(/HCLV/img/luvina_office02.jpg) 0 0 no-repeat;
    background-size: cover;
}
.contents--second.aboutus{
    width: 100%;
    color: #fff;
    font-size: 50px;
    font-size: 5.0rem;
    background: url(/HCLV/img/category-visual-aboutus.jpg) center no-repeat;
    background-position: center;
    background-size: cover;
}
.laboratory {
    width: 100%;
    color: #fff;
    font-size: 50px;
    font-size: 5.0rem;
    background: url(/HCLV/img/luvina_office03.jpg) right top no-repeat;
    background-size: cover;
}
 .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, h1.category-visual--title-top {
    font-size: 3.0rem;
    font-weight: 600;
    text-shadow: 0 0 10px #ffffff,
    0 0 20px #ffffff,
    0 0 30px #ffffff,
    0 0 40px #ffffff,
    0 0 50px #ffffff,
    0 0 60px #ffffff,
    0 0 70px #ffffff;
}

.category-visual.category-visual--top {
    height: 380px;
    width: 100vw;
    color: #fff;
    font-size: 50px;
    font-size: 5rem;
    background: url(/HCLV/img/category-visual-top.jpg) 0 -100px no-repeat;
    background-size: cover;
}
.category-visual--top h1.category-visual--title, .category-visual--top h1.category-visual--title-top {
    font-size: 6rem;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    text-shadow: #333 1px 0 10px;
}

i.typ-section-main {
    font-size: 4.0rem;
    font-style: normal;
    line-height: 1.0;
}

#main-top {
    width: 100%;
}
#main-top h3.h3_title {
    margin-bottom: 50px;

}
.main-area h3.h3_title {
    margin-bottom: 50px;
}
.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 .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: 20px;
    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;
}
.evenly_empty.top_saiyou{
    margin: 0;
}
.flex-box.evenly_empty.top {
    margin-bottom: 0px;
}
.ltr li {
    width: 30%;
    height: 336px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
}
.ltr li span {
    position: absolute;
    top: 100px;
    padding: 0 10px;
}

.top_rpa {
    background: url(/career/images/career_top_rpa.png) no-repeat;
      background-size: 100%;
}
.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 {
    margin-top: 50px;
}
.adoption li {
    border: none;
    background-color: #fff;
    width: 45%;
    padding: 50px 0;
    border: 2px solid #b60005;
    text-align: center
}

.adoption li:hover {
    opacity: 1
}

.adoption .h3_title {
    color: #b60005;
    line-height: 1.3;
}
.adoption .h3_title span {
    font-size: 1.3rem;
    font-size: 13px;
    color: #333;
    font-weight: 700;
}
#main-top .message_content_area p {
    text-align: center;
}
.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_office.png) no-repeat;
    background-size: 100%;
}
.offer_txt {
    color: #333;
    font-size: 1.4rem;
    font-size: 14px;
}
.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;
}
.contact_area {
    text-align: center;
}
.contact_area .h3_title{
    font-size: 30px;
    font-size: 3.0rem;
    color: #fff;
    margin-bottom: 0px;
    line-height: 3;
}

/*================================================
 *  ニュース
 ================================================*/

ul.news_list {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
}
ul.news_list li {
    padding: 18px 0 18px;
    border-bottom: 1px solid #E0E0E0;
}
ul.news_list li span.date {
    font-size: 14px;
    display: inline-block;
}
ul.news_list li span.tag {
    display: inline-block;
    font-size: 12px;
    background: #ccc;
    text-align: center;
    padding: 2px 10px 2px;
    min-width: 70px;
    margin-left: 15px;
}
ul.news_list li span.txt {
    font-size: 16px;
    margin-left: 15px;
}



.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_content_area {
    text-align: center;
}
.message_content_area p {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
}
.message_content_area .txt_area {
    text-align: left;
    width: 35%;
}
.img_area {
    margin-bottom: 40px;

}
.message_content_area .img_area {
    width: 65%;
}
.message_content_area .top_img {
    background: url(/HCLV/img/heartcore_LVINA.png) center no-repeat;
    border: 1px solid #999;
    padding: 5px 0;
    height: 160px;
    margin: 20px 0;
}
.img_area2 {
    margin-bottom: 40px;
    text-align: center;
}
.separate--tool .separate__body.message {
  width: 60%;
  text-align: center;
  padding: 60px 0;
}
.caption_name{
  font-size: 18px;
  font-size: 1.8rem;
  font-family: serif;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-top: 10px;
}
.area50 {
    width: 50%;
}
.area70 {
    width: 70%;
}
.information_content_area {
    text-align: center;
}
.information_content_area p {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6;
}
.information_content_area p.boder-class {
    border: 1px solid #999;
    padding: 10px;
    margin-bottom: 100px;

}
/*================================================
 *福利厚生
 ================================================*/
.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;
    font-size: 30px;
    margin-bottom: 10px;
}
h3.welfare_title span {
    font-size: 18px;
    color: #333;
    font-weight: 700;
    padding-left: 40px;
}




.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;
}

/*================================================
 *募集要項
 ================================================*/
.recruit_area {
      text-align: center;
      background-color: #fff;
}
.recruit_area h2 {
    font-weight: normal;
}
.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 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;
}



/*================================================
 *アルバム
 ================================================*/
.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: #999;
}
.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 p {
    font-size: 1.5rem;
}
.bnr_txt span{
    display: block;
    padding-top: 10px;
}



/*================================================
 *  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_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;
    }
    .category-visual.category-visual--top {
        background: url(/HCLV/img/category-visual-top.jpg) 0 0px no-repeat;
    }
}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@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: 40%;
        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:#b60005;
    }
    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: 55px;
    }
    header {
        width: 100%;
        position: fixed;
        background-color: #fff;
        z-index: 10000;
    }
    .header_menu li.entry{
        border-left: 1px solid #d6d6d6;
        padding: 15px 0;
        color: #333;
        margin: 0;
    }
    .header_menu li.entry ul li{
        padding: 0 5px;
    }

    .header_menu li ul li a {
        padding: 13px 1px;
    }
    .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:#b60005;
    }
    .area50 {
        width:100%;
    }
    .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:#b60005;
        color: #b60005;
    }
    #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;
          height: auto;
    }
    .footmenu a {
        padding: 0 10px;
        font-size: 1.1rem;
    }
    .main-contents--single.top {
        padding: 40px 10px;
    }
    .category-visual.category-visual--top {
        height: 250px;
        background: url(/HCLV/img/category-visual-top-sp.jpg) 0 0 no-repeat;
        background-size: cover;
    }
    .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: 320px;
    }
    .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 10px;
          -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;
        display: block;
        vertical-align: bottom;
        font-size: 9px;
        font-size: 0.9rem;
    }
    .footer_entry .main-contents--single.contact_area {
        padding: 40px 15px;
    }
    .footer_entry .h3_title {
        font-size: 18px;
        font-size: 1.8rem;

    }
    .flex-box.evenly_empty {
        display: block;
    }
    .flex-box.evenly_empty li{
        width: 100%;
        text-align: center;
    }
    .circle {
        display: none;
    }
    ul li.personnelimg_area {
        margin-bottom: 100px;
        height: 280px;
    }
    ul li.personnelimg_area ul.personnelimg_list {
        margin-left: 40px;
    }
    ul li.personnelimg_area ul.personnelimg_list li {
        text-align: left;
    }
    ul li.personnelimg_area .bold {
        font-size: 12px;
        font-size: 1.2rem;
    }
    ul li.personnelimg_area ul.personnelimg_list {
        margin-left: 20px;
    }
    .back_white {
        top: 180px;
    }
    .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: 100px;
        font-size: 1.6rem;
    }
    .main-contents--single {
        padding: 40px 10px;
        background-size: 100%;
    }
    .img_area {
        margin-bottom: 0;
    }
    .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;
        padding: 30px 0;
    }
    .contents_l {
        padding: 0;
    }
    .separate--tool.aim {
        background: none;
    }
    .offer_txt {
        margin-bottom: 15px;
    }
    .adoption .h3_title {
        font-size: 20px;
        font-size: 2.0rem;
    }
    .main-contents--single3 {
        width: auto;
        padding: 0 10px;
    }
    .main-contents--single4 {
        width: auto;
        padding: 10px;
    }
    .flex-box2 {
        display: block;
    }
    .flex-box3 {
        display: block;
    }
    .flex_space-evenly{
        justify-content: space-evenly;
    }
    
    .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;
    }
    .member_txt {
        margin-left: 10px;
        font-size: 1.1rem;
        line-height: 1.3;
    }
    .member_txt p {
        margin: 3px auto;
        text-align: left;
    }
    .member_area img {
        width: 70px;
        height: 70px;
    }
    .member_title {
        font-size: 25px;
        font-size: 2.5rem;
    }
    .crosstalk_titile {
        text-align: left;
        font-size: 24px;
        font-size: 2.4rem;
    }
    .number_img {
        width: 100%;
        margin-bottom: 30px;
    }
    .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;
    }
    .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 {
        text-align: left;
    }
    .dropdown .current , .dropdown .none {
        display: none;
    }
    .message_content_area .txt_area {
        width: 100%;
    }
    .message_content_area .img_area {
        width: 100%;
    }
    .message_content_area .top_img {
        background-size: 100%;
        height: 60px;
    }

    #main-top .main-contents--single {
        padding: 20px 10px;
    }
    #main-top .main-contents--single .h3_title {
        font-size: 22px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    h3.welfare_title span {
        display: block;
    }
    .welfare_area {
        margin-bottom: 0px;
    }
    .welfare_list:last-child {
        margin-bottom: 0px;
    }
    ul.news_list li span.txt {
        display: block;
        padding-top: 10px;
    }
    ul.news_list {
        margin-bottom: 0;
    }
}

@media (max-width: 640px){
        .image-row {
              text-align: left;
            }
        .example-image {
              width: 16rem;
            }
}
@media screen and (max-width:375px) {
    .ltr .flex-box.evenly_empty.top li {
        height: 330px;
    }
    .ltr .flex-box.evenly_empty.top li span {
        top: 90px;
        font-size: 1.5rem;
    }
}
/*================================================
 *  タブレット向けデザイン
 ================================================*/
/* スクロールバーを考慮して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%;
    }
}


@media screen and (max-width: 760px) {
    .category-visual {
        height: 100px;
    }
    .category-visual--title {
        font-size: 2.3rem;
    }
    .category-visual--top {
          background-size: 100%;
          height: 160px;
    }
    .category-visual--top .typ-section-main {
        padding: 0px;
        position: relative;
        top: -20px;
    }
    .category-visual--top h1.category-visual--title-top {
          font-size: 3.0rem;
          margin-top: 20px;
    }
    h1.category-visual--title {
          font-size: 1.3rem;
    }
    i.typ-section-main {
        font-size: 3.0rem;
    }
    .category-visual--title-area {
          min-height: 70px;
    }

}

/*================================================
 *　トップページ
 ================================================*/
/**********アニメーション設定**********/
/*右から左*/
@keyframes RightToLeft {
    0% {
        opacity: 0;/* 透明 */
        transform: translateX(20px);/* X軸方向に50px */
    }
    100% {
        opacity: 1;/* 不透明 */
        transform: translateX(0);/* X軸方向に0px */
    }
}

/*左から右*/
@keyframes LeftToRight{
    0% {
        opacity: 0;/* 透明 */
        transform: translateX(-20px);/* X軸方向に50px */
    }
    100% {
        opacity: 1;/* 不透明 */
        transform: translateX(0);/* X軸方向に0px */
    }
}
/*上から下*/
@keyframes SlideDown {
    0% {
        opacity: 0;/* 透明 */
        transform: translateY(-20px);/* Y軸方向に-50px */
    }
    100% {
        opacity: 1;/* 不透明 */
        transform: translateY(0);/* Y軸方向に0px */
    }
}

/*下から上*/
@keyframes SlideUp {
    0% {
        opacity: 0;/* 透明 */
        transform: translateY(20px);/* Y軸方向に50px */
    }
    100% {
        opacity: 1;/* 不透明 */
        transform: translateY(0);/* Y軸方向に0px */
    }
}
/*ふんわり*/
 @keyframes appear {
    0% {
        opacity: 0;/* 透明 */
    }
    100% {
        opacity: 1;/* 不透明 */
    }
}

.loop_css {
  position: relative;
  display: -webkit-flex;
  display: flex;
  width: 100vw;
  height: 524px;
  left: 0%;
  margin-left: 0vw;
  overflow: hidden;
}

.loop_css img {
  width: auto;
  height: 100%;
}

.loop_css img:first-child {
  -webkit-animation: loop 50s -25s linear infinite;
  animation: loop 50s -25s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.loop_css img + img {
  -webkit-animation: loop2 50s  linear infinite;
  animation: loop2 50s linear infinite;
}


/**********アニメーション設定end**********/

/* 「RightToLeft」を適用する箇所 */
h1.category-visual--title {
    animation-duration: 2s;/* アニメーション時間 */
    animation-name: RightToLeft;/* アニメーション名 */
}
i.typ-section-main {
    animation-duration: 1s;/* アニメーション時間 */
    animation-name: LeftToRight;/* アニメーション名 */
}

/* 「SlideDown」を適用する箇所 */
h1.category-visual--title-top {
    animation-duration: 2s;/* アニメーション時間 */
    animation-name: SlideDown;/* アニメーション名 */
}

/*----------------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;}

