@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated:  2010-09-17
Author:  Richard Clark - http: //richclarkdesign.com
Twitter:  @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Cantarell:wght@700&family=Oswald:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
  -webkit-text-size-adjust: 100%;
}

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, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

main {
  display: block;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

img[src$=".svg"] {
  display: block;
  width: 100%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* FONT
***************************************************************/
/* MV
***************************************************************/
.top_mvBox {
  position: relative;
  z-index: 0;
}

.top_mvBox .mvList li .listImg {
  width: 100%;
  height: 100%;
}

.top_mvBox .mvScroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 53px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  height: 45px;
  background: #fff;
  border-radius: 100px;
  padding: 5px;
  z-index: 2;
}

.top_mvBox .mvScroll .arrowBox {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: #335167;
  position: relative;
  z-index: 0;
}

.top_mvBox .mvScroll .arrowBox .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: arrow 1.6s infinite;
          animation: arrow 1.6s infinite;
  width: 15px;
  z-index: 1;
}

body.open_popup {
    overflow: hidden;
}

.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s;
    border:solid 3px #48558f;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 45%;
    min-width: 500px;
    background-color: #fff;
   
   border:solid 5px #48558f; 
}

.onetime_popup_title {
    position: relative;
    padding: 1em 80px;
    margin: 0px;
    background-color: #ffffff;
    color: #000000;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
}

.onetime_popup_title_close {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}
.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #000;
    content: "";
}
.onetime_popup_title_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.onetime_popup_title_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
    padding: 60px 30px;
    text-align: center;
}





.top_mvBox .mvScroll .scrollText {
  width: calc(100% - 35px);
  padding: 0 20px;
}


@-webkit-keyframes arrow {
  0% {
    top: 50%;
  }
  20% {
    top: 64%;
  }
  40% {
    top: 50%;
  }
  60% {
    top: 64%;
  }
  80% {
    top: 50%;
  }
}

@keyframes arrow {
  0% {
    top: 50%;
  }
  20% {
    top: 64%;
  }
  40% {
    top: 50%;
  }
  60% {
    top: 64%;
  }
  80% {
    top: 50%;
  }
}



@media all and (min-width: 681px) {
  .top_mvBox .mvList li {
    height: 100vh;
  }
    


    
  .top_mvBox .mvList li:nth-child(1) .listImg {
    background: url(../img/top/mv01.jpg) no-repeat center/cover;
  }
  .top_mvBox .mvList li:nth-child(2) .listImg {
    background: url(../img/top/mv02.jpg) no-repeat center/cover;
  }
  .top_mvBox .mvList li:nth-child(3) .listImg {
    background: url(../img/top/mv03.jpg) no-repeat center/cover;
  }
  .top_mvBox .mvList li:nth-child(4) .listImg {
    background: url(../img/top/mv04.jpg) no-repeat center/cover;
  }
  .top_mvBox .overTextBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .top_mvBox .overTextBox .textImg {
    width: 100%;
    height: 100%;
    background: url(../img/top/mv_text.svg) no-repeat center/cover;
  }
}

@media all and (max-width: 680px) {
  .top_mvBox .mvList li {
    width: 100vw;
    height: 100vh;
  }
    
    
    body.open_popup {
    overflow: hidden;
}

.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    visibility: hidden;
    transition: 0.5s;
    border:solid 3px #48558f;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 45%;
    min-width: 300px;
    background-color: #fff;
   
   border:solid 5px #48558f; 
}

.onetime_popup_title {
    position: relative;
    padding: 1em 80px;
    margin: 0px;
    background-color: #ffffff;
    color: #000000;
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
}

.onetime_popup_title_close {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}
.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #000;
    content: "";
}
.onetime_popup_title_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.onetime_popup_title_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
    padding: 10px 5px;
    text-align: center;
}
    
    
    
    
    
    
    
    
    
    
  .top_mvBox .mvList li:nth-child(1) .listImg {
    background: url(../img/top/mv01_sp.jpg) no-repeat center/cover;
  }
  .top_mvBox .mvList li:nth-child(2) .listImg {
    background: url(../img/top/mv02_sp.jpg) no-repeat center/cover;
  }
  .top_mvBox .mvList li:nth-child(3) .listImg {
    background: url(../img/top/mv03_sp.jpg) no-repeat center/cover;
  }
  .top_mvBox .mvList li:nth-child(4) .listImg {
    background: url(../img/top/mv04_sp.jpg) no-repeat center/cover;
  }
  .top_mvBox .mvScroll {
    bottom: 123px;
    width: 120px;
    height: 40px;
    padding: 3px;
  }
  .top_mvBox .mvScroll .arrowBox {
    width: 34px;
    height: 34px;
  }
  .top_mvBox .mvScroll .arrowBox .arrow {
    width: 13px;
  }
  .top_mvBox .mvScroll .scrollText {
    width: calc(100% - 34px);
    padding: 0 12px;
  }
  .top_mvBox .overTextBox {
    display: none;
  }
}

/* MV
***************************************************************/
/* 事業内容
***************************************************************/
.top_sec_business {
  padding: 230px 0 114px;
  background: url(../img/top/sec_bg.jpg) repeat-y top/cover;
}

.top_sec_business .top_sec_business_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 36px;
}

.top_sec_business .top_sec_business_list li {
  width: calc((100% - 12px)/3);
  height: 463px;
  margin-bottom: 6px;
}

.top_sec_business .top_sec_business_list li a {
  display: block;
  height: 100%;
  position: relative;
  z-index: 0;
}

.top_sec_business .top_sec_business_list li .listTextBox {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 93.5%;
  color: #fff;
  min-height: 66px;
  z-index: 1;
}

.top_sec_business .top_sec_business_list li .listTitle {
  font-size: 27px;
  letter-spacing: 0.3em;
  line-height: 50px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.top_sec_business .top_sec_business_list li .listTitle.ls0 {
  letter-spacing: 0;
  font-size: 21px;  
}

.top_sec_business .top_sec_business_list li .listTitle2 {
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 50px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}


.top_sec_business .top_sec_business_list li .listTextBtm {
  position: relative;
  padding: 12px 28px 0 0;
}

.top_sec_business .top_sec_business_list li .listText {
  width: calc(100% - 80px);
  letter-spacing: 0;
  text-align: justify;
  line-height: 27px;
}

.top_sec_business .top_sec_business_list li .arrow {
  display: block;
  position: absolute;
  right: 28px;
  top: calc(50% + 12px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.top_sec_business .top_sec_business_list li .arrow::before, .top_sec_business .top_sec_business_list li .arrow::after {
  content: '';
  position: absolute;
  height: 1px;
  background: #fff;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.top_sec_business .top_sec_business_list li .arrow::before {
  width: 18px;
  top: 50%;
  right: calc((100% - 18px)/2);
}

.top_sec_business .top_sec_business_list li .arrow::after {
  width: 7px;
  top: calc((100% - 5px)/2);
  right: calc((100% - 21px)/2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top_sec_business .top_sec_business_list li .listImg, .top_sec_business .top_sec_business_list li .img {
  width: 100%;
  height: 100%;
}

.top_sec_business .top_sec_business_list li .listImg {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.top_sec_business .top_sec_business_list li .listImg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1;
}

.top_sec_business .top_sec_business_list li .listImg .img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.top_sec_business .top_sec_business_list li:nth-child(1) .listImg::before {
  background: #0B1D03;
}

.top_sec_business .top_sec_business_list li:nth-child(1) .listImg .img {
  background: url(../img/top/business_img01n.png) no-repeat center/cover;
}

.top_sec_business .top_sec_business_list li:nth-child(2) .listImg::before {
  background: #2E2E04;
}

.top_sec_business .top_sec_business_list li:nth-child(2) .listImg .img {
  background: url(../img/top/business_img02n.png) no-repeat center/cover;
}

.top_sec_business .top_sec_business_list li:nth-child(3) .listImg::before {
  background: #244845;
}

.top_sec_business .top_sec_business_list li:nth-child(3) .listImg .img {
  background: url(../img/top/business_img03n.png) no-repeat center/cover;
}

.top_sec_business .top_sec_business_list li:nth-child(4) .listImg::before {
  background: #463727;
}

.top_sec_business .top_sec_business_list li:nth-child(4) .listImg .img {
  background: url(../img/top/business_img04n.png) no-repeat center/cover;
}

.top_sec_business .top_sec_business_list li:nth-child(5) .listImg::before {
  background: #1B2531;
}

.top_sec_business .top_sec_business_list li:nth-child(5) .listImg .img {
  background: url(../img/top/business_img05n.png) no-repeat center/cover;
}

.top_sec_business .top_sec_business_list li:nth-child(6) .listImg::before {
  background: #000;
}

.top_sec_business .top_sec_business_list li:nth-child(6) .listImg .img {
  background: url(../img/top/business_img06n.png) no-repeat center/cover;
}

.top_sec_business .top_sec_business_list.orginAnime li {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.top_sec_business .top_sec_business_list.orginAnime li:nth-child(1) {
 /* -webkit-transition: opacity 0.6s 0.2s, -webkit-transform 0.6s 0.2s;
  transition: opacity 0.6s 0.2s, -webkit-transform 0.6s 0.2s;
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s, -webkit-transform 0.6s 0.2s;*/
}

.top_sec_business .top_sec_business_list.orginAnime li:nth-child(2) {
  -webkit-transition: opacity 0.6s 0.4s, -webkit-transform 0.6s 0.4s;
  transition: opacity 0.6s 0.4s, -webkit-transform 0.6s 0.4s;
  transition: opacity 0.6s 0.4s, transform 0.6s 0.4s;
  transition: opacity 0.6s 0.4s, transform 0.6s 0.4s, -webkit-transform 0.6s 0.4s;
}

.top_sec_business .top_sec_business_list.orginAnime li:nth-child(3) {
  -webkit-transition: opacity 0.6s 0.6s, -webkit-transform 0.6s 0.6s;
  transition: opacity 0.6s 0.6s, -webkit-transform 0.6s 0.6s;
  transition: opacity 0.6s 0.6s, transform 0.6s 0.6s;
  transition: opacity 0.6s 0.6s, transform 0.6s 0.6s, -webkit-transform 0.6s 0.6s;
}

.top_sec_business .top_sec_business_list.orginAnime li:nth-child(4) {
  -webkit-transition: opacity 0.6s 0.8s, -webkit-transform 0.6s 0.8s;
  transition: opacity 0.6s 0.8s, -webkit-transform 0.6s 0.8s;
  transition: opacity 0.6s 0.8s, transform 0.6s 0.8s;
  transition: opacity 0.6s 0.8s, transform 0.6s 0.8s, -webkit-transform 0.6s 0.8s;
}

.top_sec_business .top_sec_business_list.orginAnime li:nth-child(5) {
  -webkit-transition: opacity 0.6s 1s, -webkit-transform 0.6s 1s;
  transition: opacity 0.6s 1s, -webkit-transform 0.6s 1s;
  transition: opacity 0.6s 1s, transform 0.6s 1s;
  transition: opacity 0.6s 1s, transform 0.6s 1s, -webkit-transform 0.6s 1s;
}

.top_sec_business .top_sec_business_list.orginAnime li:nth-child(6) {
  -webkit-transition: opacity 0.6s 1.2s, -webkit-transform 0.6s 1.2s;
  transition: opacity 0.6s 1.2s, -webkit-transform 0.6s 1.2s;
  transition: opacity 0.6s 1.2s, transform 0.6s 1.2s;
  transition: opacity 0.6s 1.2s, transform 0.6s 1.2s, -webkit-transform 0.6s 1.2s;
}

.top_sec_business .top_sec_business_list.orginAnime.action li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media all and (min-width: 681px) {
  .top_sec_business_list li a:hover .img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .top_sec_business_list li a:hover .arrow::before {
    right: calc((100% - 37px)/2);
  }
  .top_sec_business_list li a:hover .arrow::after {
    right: calc((100% - 40px)/2);
  }
}

@media all and (max-width: 680px) {
  .top_sec_business {
    padding: 53px 0 56px;
  }
  .top_sec_business .top_sec_business_list {
    width: 93.75%;
    margin: 45px auto 0;
  }
  .top_sec_business .top_sec_business_list li {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .top_sec_business .top_sec_business_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .top_sec_business .top_sec_business_list li .listTextBox {
    position: relative;
    bottom: 0;
    width: 73%;
    padding: 20px 12px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .top_sec_business .top_sec_business_list li .listTitle {
    font-size: 15px;
    letter-spacing: 0.15em;
    line-height: 1;
    padding-bottom: 10px;
    position: relative;
  }
  .top_sec_business .top_sec_business_list li .listTitle::before, .top_sec_business .top_sec_business_list li .listTitle::after {
    content: '';
    position: absolute;
    height: 1px;
    background: #fff;
  }
  .top_sec_business .top_sec_business_list li .listTitle::before {
    top: 8px;
    right: 0;
    width: 12px;
  }
  .top_sec_business .top_sec_business_list li .listTitle::after {
    top: 6px;
    right: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 5px;
  }
    
    .top_sec_business .top_sec_business_list li .listTitle2 {
    font-size: 15px;
    letter-spacing: 0.15em;
    line-height: 1;
    padding-bottom: 10px;
    position: relative;
  }
  .top_sec_business .top_sec_business_list li .listTitle2::before, .top_sec_business .top_sec_business_list li .listTitle2::after {
    content: '';
    position: absolute;
    height: 1px;
    background: #fff;
  }
  .top_sec_business .top_sec_business_list li .listTitle2::before {
    top: 8px;
    right: 0;
    width: 12px;
  }
  .top_sec_business .top_sec_business_list li .listTitle2::after {
    top: 6px;
    right: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 5px;
  }
    
    
    
    
    
    
  .top_sec_business .top_sec_business_list li .listTextBtm {
    padding: 8px 0 0 0;
    min-height: auto;
  }
  .top_sec_business .top_sec_business_list li .listText {
    width: 100%;
      font-size:11px;
    letter-spacing: 0.05em;
    line-height: 1.35;
    padding-right: 0;
  }
  .top_sec_business .top_sec_business_list li .arrow {
    display: none;
  }
  .top_sec_business .top_sec_business_list li .listImg {
    width: 27%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .top_sec_business .top_sec_business_list li .listImg::before {
    content: none;
  }
  .top_sec_business .top_sec_business_list li:nth-child(1) .listTextBox {
    background: #687465;
  }
  .top_sec_business .top_sec_business_list li:nth-child(1) .listImg .img {
    background: url(../img/top/business_img01n_sp.png) no-repeat center/cover;
  }
  .top_sec_business .top_sec_business_list li:nth-child(2) .listTextBox {
    background: #7A7C64;
  }
  .top_sec_business .top_sec_business_list li:nth-child(2) .listImg .img {
    background: url(../img/top/business_img02n_sp.png) no-repeat center/cover;
  }
  .top_sec_business .top_sec_business_list li:nth-child(3) .listTextBox {
    background: #718B8A;
  }
  .top_sec_business .top_sec_business_list li:nth-child(3) .listImg .img {
    background: url(../img/top/business_img03n_sp.png) no-repeat center/cover;
  }
  .top_sec_business .top_sec_business_list li:nth-child(4) .listTextBox {
    background: #847E75;
  }
  .top_sec_business .top_sec_business_list li:nth-child(4) .listImg .img {
    background: url(../img/top/business_img04n_sp.png) no-repeat center/cover;
  }
  .top_sec_business .top_sec_business_list li:nth-child(5) .listTextBox {
    background: #687079;
  }
  .top_sec_business .top_sec_business_list li:nth-child(5) .listImg .img {
    background: url(../img/top/business_img05n_sp.png) no-repeat center/cover;
  }
  .top_sec_business .top_sec_business_list li:nth-child(6) .listTextBox {
    background: #626566;
  }
  .top_sec_business .top_sec_business_list li:nth-child(6) .listImg .img {
    background: url(../img/top/business_img06n_sp.png) no-repeat center/cover;
  }
}

/* 事業内容
***************************************************************/
/* 会社情報
***************************************************************/
.top_sec_corporate {
  padding: 210px 0 60px;
  background: url(../img/top/sec_bg.jpg) repeat-y top/cover;
}

.top_sec_corporate .top_sec_titleBox {
  margin-bottom: 50px;
}

.top_sec_corporate .inner {
  width: 1150px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.top_sec_corporate .top_sec_corporate_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top_sec_corporate .top_sec_corporate_list li {
  width: 560px;
}

.top_sec_corporate .top_sec_corporate_list li a {
  display: block;
}

.top_sec_corporate .top_sec_corporate_list li .listImg {
  overflow: hidden;
}

.top_sec_corporate .top_sec_corporate_list li .listImg img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.top_sec_corporate .top_sec_corporate_list li .listTextBox {
  padding: 20px 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.top_sec_corporate .top_sec_corporate_list li .arrow {
  display: block;
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.top_sec_corporate .top_sec_corporate_list li .arrow::before, .top_sec_corporate .top_sec_corporate_list li .arrow::after {
  content: '';
  position: absolute;
  height: 1px;
  background: #335167;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.top_sec_corporate .top_sec_corporate_list li .arrow::before {
  width: 18px;
  top: 50%;
  right: calc((100% - 18px)/2);
}

.top_sec_corporate .top_sec_corporate_list li .arrow::after {
  width: 7px;
  top: calc((100% - 5px)/2);
  right: calc((100% - 21px)/2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top_sec_corporate .top_sec_corporate_list li .listTitle {
  width: calc(100% - 58px);
  padding-left: 18px;
}

.top_sec_corporate .top_sec_corporate_list li .listTitle span {
  display: block;
}

.top_sec_corporate .top_sec_corporate_list li .listTitle .jp {
  font-size: 20px;
  font-weight: 500;
  color: #335167;
  margin-bottom: 6px;
}

.top_sec_corporate .top_sec_corporate_list li .listTitle .en {
  height: 9px;
}

.top_sec_corporate .top_sec_corporate_list li .listTitle .en img {
  width: auto;
}

.top_sec_corporate .top_sec_corporate_list li .listTitle2 {
  width: calc(100% - 58px);
  padding-left: 18px;
}

.top_sec_corporate .top_sec_corporate_list li .listTitle2 span {
  display: block;
}

.top_sec_corporate .top_sec_corporate_list li .listTitle2 .jp {
  font-size: 20px;
  font-weight: 500;
  color: #335167;
  margin-bottom: 6px;
}

.top_sec_corporate .top_sec_corporate_list li .listTitle2 .en {
  height: 9px;
}

.top_sec_corporate .top_sec_corporate_list li .listTitle2 .en img {
  width: auto;
}



.top_sec_corporate .top_sec_corporate_list.orginAnime li {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.top_sec_corporate .top_sec_corporate_list.orginAnime li:nth-child(1) {
  -webkit-transition: opacity 0.6s 0.3s, -webkit-transform 0.6s 0.3s;
  transition: opacity 0.6s 0.3s, -webkit-transform 0.6s 0.3s;
  transition: opacity 0.6s 0.3s, transform 0.6s 0.3s;
  transition: opacity 0.6s 0.3s, transform 0.6s 0.3s, -webkit-transform 0.6s 0.3s;
}

.top_sec_corporate .top_sec_corporate_list.orginAnime li:nth-child(2) {
  -webkit-transition: opacity 0.6s 0.6s, -webkit-transform 0.6s 0.6s;
  transition: opacity 0.6s 0.6s, -webkit-transform 0.6s 0.6s;
  transition: opacity 0.6s 0.6s, transform 0.6s 0.6s;
  transition: opacity 0.6s 0.6s, transform 0.6s 0.6s, -webkit-transform 0.6s 0.6s;
}

.top_sec_corporate .top_sec_corporate_list.orginAnime li:nth-child(3) {
  -webkit-transition: opacity 0.6s 0.9s, -webkit-transform 0.6s 0.9s;
  transition: opacity 0.6s 0.9s, -webkit-transform 0.6s 0.9s;
  transition: opacity 0.6s 0.9s, transform 0.6s 0.9s;
  transition: opacity 0.6s 0.9s, transform 0.6s 0.9s, -webkit-transform 0.6s 0.9s;
}

.top_sec_corporate .top_sec_corporate_list.orginAnime li:nth-child(4) {
  -webkit-transition: opacity 0.6s 1.2s, -webkit-transform 0.6s 1.2s;
  transition: opacity 0.6s 1.2s, -webkit-transform 0.6s 1.2s;
  transition: opacity 0.6s 1.2s, transform 0.6s 1.2s;
  transition: opacity 0.6s 1.2s, transform 0.6s 1.2s, -webkit-transform 0.6s 1.2s;
}

.top_sec_corporate .top_sec_corporate_list.orginAnime.action li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media all and (min-width: 681px) {
  .top_sec_corporate .top_sec_corporate_list li {
    margin: 0 30px 40px 0;
  }
  .top_sec_corporate .top_sec_corporate_list li:nth-child(2n) {
    margin-right: 0;
  }
  .top_sec_corporate .top_sec_corporate_list li:last-child, .top_sec_corporate .top_sec_corporate_list li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .top_sec_corporate .top_sec_corporate_list li a:hover .listImg img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .top_sec_corporate .top_sec_corporate_list li a:hover .arrow {
    background: #335167;
  }
  .top_sec_corporate .top_sec_corporate_list li a:hover .arrow::before, .top_sec_corporate .top_sec_corporate_list li a:hover .arrow::after {
    background: #fff;
  }
  .top_sec_corporate .top_sec_corporate_list li a:hover .arrow::before {
    right: calc((100% - 37px)/2);
  }
  .top_sec_corporate .top_sec_corporate_list li a:hover .arrow::after {
    right: calc((100% - 40px)/2);
  }
}

@media all and (max-width: 680px) {
  .top_sec_corporate {
    padding: 65px 0 70px;
  }
  .top_sec_corporate .top_sec_titleBox {
    margin-bottom: 55px;
  }
  .top_sec_corporate .inner {
    width: 90.627%;
  }
  .top_sec_corporate .top_sec_corporate_list li {
    width: 100%;
    margin-bottom: 30px;
  }
  .top_sec_corporate .top_sec_corporate_list li:last-child {
    margin-bottom: 0;
  }
  .top_sec_corporate .top_sec_corporate_list li .listTextBox {
    padding: 10px 0 0;
  }
  .top_sec_corporate .top_sec_corporate_list li .arrow {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
  }
  .top_sec_corporate .top_sec_corporate_list li .arrow::before {
    width: 10px;
    right: calc((100% - 10px)/2);
  }
  .top_sec_corporate .top_sec_corporate_list li .arrow::after {
    width: 5px;
    top: calc((100% - 3px)/2);
    right: calc((100% - 11px)/2);
  }
  .top_sec_corporate .top_sec_corporate_list li .listTitle {
    width: calc(100% - 38px);
    padding-left: 10px;
  }
  .top_sec_corporate .top_sec_corporate_list li .listTitle .jp {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .top_sec_corporate .top_sec_corporate_list li .listTitle .en {
    height: 8px;
  }
   
    .top_sec_corporate .top_sec_corporate_list li .listTitle2 {
    width: calc(100% - 38px);
    padding-left: 10px;
  }
  .top_sec_corporate .top_sec_corporate_list li .listTitle2 .jp {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .top_sec_corporate .top_sec_corporate_list li .listTitle2 .en {
    height: 8px;
  }  
    
    
    
}

/* 会社情報
***************************************************************/
/* 採用情報
***************************************************************/
.top_sec_recruit {
  padding: 210px 0 100px;
}

.top_sec_recruit .top_sec_titleBox {
  margin-bottom: 50px;
}

.top_sec_recruit .inner {
  width: 1022px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.top_sec_recruit .top_sec_recruit_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top_sec_recruit .top_sec_recruit_list li {
  width: 491px;
}

.top_sec_recruit .top_sec_recruit_list li a {
  display: block;
}

.top_sec_recruit .top_sec_recruit_list li .listImg {
  overflow: hidden;
}

.top_sec_recruit .top_sec_recruit_list li .listImg img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.top_sec_recruit .top_sec_recruit_list li .listTextBox {
  width: 78%;
  padding-top: 14px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top_sec_recruit .top_sec_recruit_list li .arrow {
  display: block;
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #335167;
}

.top_sec_recruit .top_sec_recruit_list li .arrow::before, .top_sec_recruit .top_sec_recruit_list li .arrow::after {
  content: '';
  position: absolute;
  height: 1px;
  background: #335167;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.top_sec_recruit .top_sec_recruit_list li .arrow::before {
  width: 18px;
  top: 50%;
  right: calc((100% - 18px)/2);
}

.top_sec_recruit .top_sec_recruit_list li .arrow::after {
  width: 7px;
  top: calc((100% - 5px)/2);
  right: calc((100% - 21px)/2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top_sec_recruit .top_sec_recruit_list li .listTitle {
  width: calc(100% - 65px);
  padding-left: 16px;
  font-size: 20px;
  color: #335167;
  font-weight: 500;
}


.top_sec_no1_list li {
  width: 685px;
    margin:5% auto;
}

.top_sec_no1_list li a {
  display: block;
}

.top_sec_no1_list li a :hover{
 opacity: 0.5;
}



.listImg2{
    margin:5% auto;
}


@media all and (min-width: 681px) {
  .top_sec_recruit .top_sec_recruit_list li {
    margin: 0 40px 40px 0;
  }
  .top_sec_recruit .top_sec_recruit_list li:nth-child(2n) {
    margin-right: 0;
  }
  .top_sec_recruit .top_sec_recruit_list li:last-child, .top_sec_recruit .top_sec_recruit_list li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .top_sec_recruit .top_sec_recruit_list li a:hover .listImg img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .top_sec_recruit .top_sec_recruit_list li a:hover .arrow::before {
    right: calc((100% - 37px)/2);
  }
  .top_sec_recruit .top_sec_recruit_list li a:hover .arrow::after {
    right: calc((100% - 40px)/2);
  }
}

@media all and (max-width: 680px) {
  .top_sec_recruit {
    padding: 65px 0 90px;
  }
  .top_sec_recruit .top_sec_titleBox {
    margin-bottom: 28px;
  }
  .top_sec_recruit .inner {
    width: 90.627%;
  }
  .top_sec_recruit .top_sec_recruit_list li {
    width: 100%;
    margin-bottom: 30px;
  }
  .top_sec_recruit .top_sec_recruit_list li:last-child {
    margin-bottom: 0;
  }
  .top_sec_recruit .top_sec_recruit_list li .listTextBox {
    width: 100%;
    padding-top: 12px;
  }
  .top_sec_recruit .top_sec_recruit_list li .arrow {
    width: 38px;
    height: 38px;
  }
  .top_sec_recruit .top_sec_recruit_list li .arrow::before {
    width: 10px;
    right: calc((100% - 10px)/2);
  }
  .top_sec_recruit .top_sec_recruit_list li .arrow::after {
    width: 5px;
    top: calc((100% - 3px)/2);
    right: calc((100% - 11px)/2);
  }
  .top_sec_recruit .top_sec_recruit_list li .listTitle {
    width: calc(100% - 38px);
    padding-left: 10px;
    font-size: 15px;
  }
    
  .top_sec_business .top_sec_business_list li .listTitle.ls0 {
  font-size: 15px;  
      line-height: 1.3;
}  
    
    
    
    
    .top_sec_recruit .top_sec_recruit_list li .listTitle2 {
    width: calc(100% - 38px);
    padding-left: 10px;
    font-size: 13px;
  }  
    
  .top_sec_no1_list li {
  width:98%;
    margin-top:10%;
      margin-left:1%;
}

.top_sec_no1_list li a {
  display: block;
}


.listImg2{
    margin:5% auto;
}
  
    
}

/* 採用情報
***************************************************************/
/*# sourceMappingURL=index.css.map */