@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* ボーダーボックスの変更*/
/* ボーダーボックスの変更*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
背景
----------------------------------------------------*/
/*----------------------------------------------------
icon回転
----------------------------------------------------*/
/*----------------------------------------------------
矢印
----------------------------------------------------*/
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
擬似要素
----------------------------------------------------*/
/*----------------------------------------------------
ボタン

基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 初期：bg塗りあり、枠線塗りあり ⇨ hoverで反転 */
/* 初期：bg塗りなし、枠線塗りあり ⇨ hoverで反転 */
/* 右矢印付き 「▶︎」*/
/* ボタン矢印あり 「 ---\ 」*/
/* '+' ありボタン */
/* hoverするとブワッとかわる */
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ホバー変更はやさ*/
/* ボーダーボックスの変更*/
/* ボーダーボックスの変更*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
背景
----------------------------------------------------*/
/*----------------------------------------------------
icon回転
----------------------------------------------------*/
/*----------------------------------------------------
矢印
----------------------------------------------------*/
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
擬似要素
----------------------------------------------------*/
/*----------------------------------------------------
ボタン

基本のhtml
<a href="" class="btn">
  <span>私たちについて</span>
</a>
----------------------------------------------------*/
/* 初期：bg塗りあり、枠線塗りあり ⇨ hoverで反転 */
/* 初期：bg塗りなし、枠線塗りあり ⇨ hoverで反転 */
/* 右矢印付き 「▶︎」*/
/* ボタン矢印あり 「 ---\ 」*/
/* '+' ありボタン */
/* hoverするとブワッとかわる */
/* 下からフワッと出てくる */
/* 上にスッと消える*/
/* 下にスッと消える*/
/* 左からスッと出てくる*/
/* 右からスッと出てくる*/
/*========= レイアウトのためのCSS ===============*/
.textSlide {
  /*左右アニメーションで画面からはみ出る際に出る横スクロールバーを隠す*/
  overflow: hidden; }

/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block; }

.slide-in_inner {
  display: inline-block; }

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/ }

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0; }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1; } }
/*----------------------------------------------------
メインビジュアル
----------------------------------------------------*/
.inner_kv {
  position: relative;
  padding: 0 15px;
  /* 751- */ }
  @media all and (min-width: 751px) {
    .inner_kv {
      padding: 0 70px; } }
  @media all and (min-width: 1226px) {
    .inner_kv {
      padding: 0;
      max-width: 1226px;
      margin: 0 auto; } }

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg); }

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg); }

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0; }
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
.mainVisual {
  position: relative;
  /* 751- */ }
  .mainVisual .main_kv {
    overflow: hidden; }
    .mainVisual .main_kv img {
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      font-family: 'object-fit: cover;'; }
  .mainVisual .slideBtn {
    display: none;
    /* 751- */ }
    @media all and (min-width: 751px) {
      .mainVisual .slideBtn {
        position: absolute;
        right: 35px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column; }
        .mainVisual .slideBtn .number {
          display: inline-block;
          padding: 20px 10px;
          cursor: pointer; }
          .mainVisual .slideBtn .number img {
            width: 32px; }
          .mainVisual .slideBtn .number.one {
            position: relative; }
            .mainVisual .slideBtn .number.one::before {
              content: "";
              position: absolute;
              height: 3px;
              width: 53px;
              background-color: white;
              left: 0px;
              bottom: 0px; }
          .mainVisual .slideBtn .number.two img {
            width: 38px; } }
    @media all and (min-width: 1270px) {
      .mainVisual .slideBtn {
        right: 0; } }
  .mainVisual .textArea {
    position: absolute;
    top: calc( 50% - 150px );
    color: white;
    width: 100%;
    animation-delay: 1s; }
    .mainVisual .textArea.textAnime {
      animation: kv_move 1.4s ease-in-out forwards; }
@keyframes kv_move {
  0% {
    left: -50px;
    opacity: 0; }
  100% {
    left: 0px;
    opacity: 1; } }
  .mainVisual .title {
    font-size: 36px;
    font-size: 38px;
    letter-spacing: 0.03em;
    line-height: 1.722;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-style: normal;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
  .mainVisual .textArea {
    bottom: 50px; }
  @media all and (min-width: 751px) {
    .mainVisual .main_kv img {
      height: 100vh;
      min-height: 767px;
      max-height: 1000px; }
    .mainVisual .textArea {
      top: calc( 50% - 70px ); }
    .mainVisual .title {
      font-size: 48px; } }
  @media all and (min-width: 1000px) {
    .mainVisual .title {
      font-size: 58px; } }

/*----------------------------------------------------
一枚を画面いっぱいに テキストあり
----------------------------------------------------*/
#mainVisual {
  /*矢印*/
  /* slick-theme.cssの設定を消す。消さないと矢印が出てくる */ }
  #mainVisual .inner_kv {
    position: relative;
    padding: 0 15px;
    /* 751- */ }
    @media all and (min-width: 751px) {
      #mainVisual .inner_kv {
        padding: 0 70px; } }
    @media all and (min-width: 1226px) {
      #mainVisual .inner_kv {
        padding: 0;
        max-width: 1226px;
        margin: 0 auto; } }
  #mainVisual .mainVisual {
    position: relative;
    /* 751- */ }
    #mainVisual .mainVisual .main_kv {
      overflow: hidden; }
      #mainVisual .mainVisual .main_kv img {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        font-family: 'object-fit: cover;'; }
    #mainVisual .mainVisual .textArea {
      position: absolute;
      top: calc( 50% - 150px );
      color: white;
      width: 100%;
      animation-delay: 1s; }
      #mainVisual .mainVisual .textArea.fadeRight {
        animation: kv_move 1s ease-in-out forwards; }
@keyframes kv_move {
  0% {
    right: -100px;
    opacity: 0; }
  100% {
    right: 0px;
    opacity: 1; } }
    #mainVisual .mainVisual .title {
      font-size: 36px;
      font-size: 38px;
      letter-spacing: 0.03em;
      line-height: 1.722;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 700;
      font-style: normal;
      text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.4); }
    #mainVisual .mainVisual .textArea {
      bottom: 50px; }
    #mainVisual .mainVisual .text {
      margin-bottom: 32px;
      font-size: 13px;
      letter-spacing: 0em;
      line-height: 2.076;
      font-weight: bold; }
    @media all and (min-width: 751px) {
      #mainVisual .mainVisual .main_kv img {
        height: 100vh;
        min-height: 767px;
        max-height: 1000px; }
      #mainVisual .mainVisual .textArea {
        top: calc( 50% - 70px ); }
      #mainVisual .mainVisual .title {
        font-size: 48px; }
      #mainVisual .mainVisual .flex {
        display: flex;
        align-items: center; } }
    @media all and (min-width: 1000px) {
      #mainVisual .mainVisual .title {
        font-size: 58px; } }
  #mainVisual .slick-prev,
  #mainVisual .slick-next {
    position: absolute;
    z-index: 3;
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    height: 25px;
    width: 25px; }
    #mainVisual .slick-prev:hover img,
    #mainVisual .slick-next:hover img {
      opacity: 1; }
    #mainVisual .slick-prev img,
    #mainVisual .slick-next img {
      transition: all 0.5s;
      opacity: 0.6; }
    #mainVisual .slick-prev.is-active,
    #mainVisual .slick-next.is-active {
      pointer-events: none; }
      #mainVisual .slick-prev.is-active img,
      #mainVisual .slick-next.is-active img {
        opacity: 1; }
  #mainVisual .slick-prev,
  #mainVisual .slick-next {
    left: calc( 100% - 80px);
    /* CT⇨センターの意味*/ }
    @media all and (min-width: 1161px) {
      #mainVisual .slick-prev,
      #mainVisual .slick-next {
        left: 1226px; } }
    @media all and (min-width: 1366px) {
      #mainVisual .slick-prev,
      #mainVisual .slick-next {
        left: 1366px; } }
  #mainVisual .slick-prev {
    top: 50%;
    transform: translateY(-50%); }
    #mainVisual .slick-prev::before {
      content: "";
      position: absolute;
      height: 3px;
      width: 53px;
      background-color: white;
      bottom: -21px;
      left: -10px; }
    #mainVisual .slick-prev img {
      width: 32px;
      height: 20px; }
  #mainVisual .slick-next {
    top: calc( 50% + 70px);
    transform: translateY(-50%); }
    #mainVisual .slick-next img {
      width: 38px;
      height: 23px; }
  #mainVisual .slick-prev::before,
  #mainVisual .slick-next::before {
    font-family: initial;
    content: '';
    font-size: 0px;
    opacity: initial; }

  /*----------------------------------------------------
スクロールダウン
----------------------------------------------------*/
/*スクロールダウン全体の場所*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 10px;
  left: 50%;
  /* 丸の描写 */
  /* 線の描写 */
  /* 751- */
  /* CT⇨センターの意味*/ }
  .scrolldown span {
    /*描画位置*/
    position: absolute;
    left: 10px;
    bottom: 10px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; }
  .scrolldown::before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -4px;
    /*丸の形状*/
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite; }
  .scrolldown::after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: -8px;
    left: 0;
    /*線の形状*/
    width: 2px;
    height: 103px;
    background: #eee; }
  @media all and (min-width: 751px) {
    .scrolldown {
      left: calc( 100% - 60px); } }
  @media all and (min-width: 1161px) {
    .scrolldown {
      left: calc( 100% - 60px); } }
  @media all and (min-width: 1270px) {
    .scrolldown {
      left: calc( 100% + 10px); } }

/*----------------------------------------------------
スクロールダウン
----------------------------------------------------*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 10px;
  left: 50%;
  /* 丸の描写 */
  /* 線の描写 */
  /* 751- */
  /* CT⇨センターの意味*/ }
  .scrolldown2 span {
    /*描画位置*/
    position: absolute;
    left: 10px;
    bottom: 10px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; }
  .scrolldown2::before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -4px;
    /*丸の形状*/
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite; }
  .scrolldown2::after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: -8px;
    left: 0;
    /*線の形状*/
    width: 2px;
    height: 103px;
    background: #eee; }
  @media all and (min-width: 751px) {
    .scrolldown2 {
      left: calc( 100% - 60px); } }
  @media all and (min-width: 1161px) {
    .scrolldown2 {
      left: calc( 100% - 60px); } }
  @media all and (min-width: 1270px) {
    .scrolldown2 {
      left: calc( 100% - 30px); } }

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 103px; }
  100% {
    bottom: -5px; } }
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  80% {
    opacity: 0.9; }
  100% {
    opacity: 0; } }
/*----------------------------------------------------
ページ共通部分
----------------------------------------------------*/
.secTitle_top {
  /* 751- */ }
  .secTitle_top h2 {
    position: relative;
    color: #1BA1E6;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.6667;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal; }
    .secTitle_top h2 .en {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      font-style: normal;
      font-size: 12px;
      letter-spacing: 0.1em;
      line-height: 1.6667; }
  @media all and (min-width: 751px) {
    .secTitle_top h2 {
      font-size: 18px;
      letter-spacing: 0.05em;
      line-height: 1.6667; } }

.catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.583;
  /* 751- */ }
  @media all and (min-width: 751px) {
    .catch {
      font-size: 38px; } }

/*----------------------------------------------------
ABOUT US
----------------------------------------------------*/
#about {
  background: url("../images/top/about_bg_sp.png"), #ECF1F4;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom -260px center;
  padding-top: 50px;
  padding-bottom: 50px;
  /* -750 */
  /* 751- */
  /* CT⇨センターの意味*/ }
  #about .secTitle_top {
    margin-bottom: 36px; }
    #about .secTitle_top h2::after {
      content: "";
      position: absolute;
      height: 1px;
      width: 20px;
      background-color: #1BA1E6;
      left: 0;
      bottom: -15px; }
  #about .catch {
    margin-bottom: 31px; }
  #about .imageArea.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0; }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
  #about .imageArea .fluffy {
    animation: fuwafuwaT 4s ease infinite; }
@keyframes fuwafuwaT {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(-15px); }
  100% {
    transform: translateY(0px); } }
  #about .text {
    margin-bottom: 30px; }
    #about .text p {
      font-size: 13px;
      letter-spacing: 0.1em;
      line-height: 1.846; }
  @media all and (max-width: 751px) {
    #about .textArea {
      margin-bottom: 47px; }
    #about .imageArea {
      margin: 0 auto;
      max-width: 400px; } }
  @media all and (min-width: 500px) {
    #about {
      background: url("../images/top/about_bg_sp.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: 1200px;
      background-position: bottom -260px left -150px; } }
  @media all and (min-width: 600px) {
    #about {
      background: url("../images/top/about_bg_sp.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: 1200px;
      background-position: bottom -400px left -150px; } }
  @media all and (min-width: 751px) {
    #about {
      background: url("../images/top/about_bg_pc.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: 1200px;
      background-position: bottom -250px right -300px ,0;
      padding-top: 104px;
      padding-bottom: 81px; }
      #about .textArea {
        text-align: center;
        margin-bottom: 60px; }
      #about .text {
        margin-bottom: 40px; }
        #about .text p {
          font-size: 14px;
          letter-spacing: 0.1em;
          line-height: 2.142; }
      #about .imageArea {
        margin: 0 auto;
        max-width: 500px; } }
  @media all and (min-width: 1000px) {
    #about {
      background: url("../images/top/about_bg_pc.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom -200px right -150px ,0;
      padding-top: 104px;
      padding-bottom: 81px; }
      #about .contents {
        display: flex;
        justify-content: space-between;
        align-items: center; }
      #about .textArea {
        text-align: initial;
        margin-bottom: 0px; }
      #about .imageArea {
        margin: 0;
        max-width: 500px; } }
  @media all and (min-width: 1161px) {
    #about {
      background: url("../images/top/about_bg_pc.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom -350px right -150px ,0; }
      #about .textArea {
        max-width: 540px; }
      #about .imageArea {
        max-width: 670px; } }
  @media all and (min-width: 1300px) {
    #about {
      background: url("../images/top/about_bg_pc.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom -400px right -100px ,0; } }
  @media all and (min-width: 1500px) {
    #about {
      background: url("../images/top/about_bg_pc.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom -600px right -100px ,0; } }
  @media all and (min-width: 1700px) {
    #about {
      background: url("../images/top/about_bg_pc.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom -500px right -300px ,0; } }
  @media all and (min-width: 1700px) {
    #about {
      background: url("../images/top/about_bg_pc.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom -600px right -300px ,0; } }
  @media all and (min-width: 1800px) {
    #about {
      background: url("../images/top/about_bg_pc.png"), #ECF1F4;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom -550px right -500px ,0; } }

/*----------------------------------------------------
service 事業内容
----------------------------------------------------*/
.forSP_Machine {
  display: block; }
  @media all and (min-width: 900px) {
    .forSP_Machine {
      display: none; } }

.forPC_Machine {
  display: none; }
  @media all and (min-width: 900px) {
    .forPC_Machine {
      display: block; } }

#service {
  background: white;
  padding-top: 50px;
  padding-bottom: 50px;
  /* 751- */
  /* CT⇨センターの意味*/ }
  #service .secTitle_top {
    margin-bottom: 36px; }
    #service .secTitle_top h2::after {
      content: "";
      position: absolute;
      height: 1px;
      width: 20px;
      background-color: #1BA1E6;
      left: 0;
      bottom: -15px; }
  #service .catch {
    text-align: center;
    margin-bottom: 20px; }
  #service .binipro {
    text-align: center;
    margin-bottom: 37px;
    /* -750 */ }
    @media all and (max-width: 751px) {
      #service .binipro {
        margin-top: 20px; } }
    #service .binipro p {
      font-size: 13px;
      letter-spacing: 0.1em;
      line-height: 2.153; }
    #service .binipro .number {
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 700;
      font-style: normal;
      font-size: 20px; }
    #service .binipro .marker {
      background: linear-gradient(transparent 50%, #FFEF77 0%); }
  #service .btnArea {
    text-align: center; }
  @media all and (min-width: 751px) {
    #service {
      padding-top: 86px;
      padding-bottom: 84px; }
      #service .catch {
        font-size: 40px;
        letter-spacing: 0.05em;
        line-height: 1.25; }
      #service .binipro p {
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 2; }
      #service .binipro .number {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 22px; } }
  @media all and (min-width: 900px) {
    #service .contents {
      display: flex;
      justify-content: space-between;
      align-items: center; }
    #service .textArea {
      order: 2; }
    #service .imageArea {
      position: relative;
      bottom: -50px;
      order: 1; }
    #service .btnArea {
      text-align: left; } }
  @media all and (min-width: 1161px) {
    #service .textArea {
      max-width: 477px; }
    #service .imageArea {
      max-width: 778px;
      bottom: 0px;
      order: 1; }
    #service .inner {
      max-width: 1266px; } }

/*----------------------------------------------------
news お知らせ
----------------------------------------------------*/
#news {
  padding: 50px 0;
  background-color: #ECF1F4;
  /* 751- */ }
  #news .newsBox {
    background-color: #fff;
    padding: 30px 18px 40px; }
  #news .secTitle_top {
    margin-bottom: 20px; }
  #news .lt {
    /* -750 */ }
    @media all and (max-width: 751px) {
      #news .lt {
        margin-bottom: 30px; } }
  #news .lt_item {
    border-bottom: 1px solid #BFBFBF; }
    #news .lt_item > a {
      padding: 20px 0px;
      display: block;
      width: 100%;
      height: 100%;
      cursor: pointer; }
    #news .lt_item:first-child {
      border-top: 1px solid #BFBFBF; }
  #news .btnArea {
    text-align: center; }
  #news .title {
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 1.692;
    overflow: hidden;
    text-overflow: ellipsis; }
  #news .sub {
    display: flex;
    margin-bottom: 10px; }
  #news .catArea {
    width: 140px; }
  #news .cat {
    text-transform: uppercase;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: normal;
    border: 1px solid #1BA1E6;
    color: #1BA1E6; }
  #news .date {
    margin-right: 14px;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #3B464D; }
  @media all and (min-width: 751px) {
    #news {
      padding: 100px 0; }
      #news .secTitle_top {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px; }
      #news .newsBox {
        padding: 70px 82px; }
      #news .lt_item {
        transition: all 0.5s; }
        #news .lt_item > a {
          padding: 20px 0px 15px; }
        #news .lt_item:hover {
          padding-left: 15px; }
      #news .textArea {
        display: flex; }
      #news .catArea {
        margin-top: 5px; }
      #news .title {
        font-size: 16px;
        letter-spacing: 0.1em;
        line-height: 2.625;
        margin-left: 32px; }
      #news .cat {
        font-size: 11px;
        letter-spacing: 0.05em;
        line-height: 2.625; }
      #news .date {
        font-size: 16px;
        letter-spacing: 0.05em;
        line-height: 2.625;
        margin-right: 33px; } }

/*----------------------------------------------------
RECRUIT 採用情報
----------------------------------------------------*/
#recruit {
  margin-bottom: 100px;
  position: relative;
  /* 751- */
  /* CT⇨センターの意味*/ }
  #recruit .visual {
    position: relative; }
    #recruit .visual img {
      object-fit: cover; }
  #recruit .visual_text {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%); }
    #recruit .visual_text p {
      font-size: 30px;
      letter-spacing: 0.08em;
      line-height: 1.6667;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-style: normal;
      color: white; }
    #recruit .visual_text .sub {
      display: block;
      position: relative;
      font-size: 13px;
      letter-spacing: 0.15em;
      line-height: 1.6667;
      margin-left: 3em; }
      #recruit .visual_text .sub::before {
        content: "";
        position: absolute;
        height: 1px;
        width: 30px;
        background-color: white;
        top: 7px;
        left: -3em; }
  #recruit .secTitle_top {
    margin-bottom: 25px; }
  #recruit .inner {
    position: relative;
    /* -750 */ }
    @media all and (max-width: 751px) {
      #recruit .inner {
        padding-bottom: 350px; } }
  #recruit .recruit_box {
    padding: 30px 17px 34px;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(27, 161, 230, 0.2);
    /* -750 */ }
    @media all and (max-width: 751px) {
      #recruit .recruit_box {
        position: absolute;
        width: calc( 100% - 30px );
        top: -20px; } }
  #recruit .catch {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.875;
    margin-bottom: 25px; }
    #recruit .catch span {
      position: relative; }
      #recruit .catch span::before {
        content: "";
        position: absolute;
        height: 1px;
        width: 100%;
        background-color: #1BA1E6;
        top: 30px; }
  #recruit .text {
    margin-bottom: 39px;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 1.692; }
  #recruit .btnArea {
    text-align: center; }
  @media all and (min-width: 751px) {
    #recruit .visual {
      max-width: 1366px;
      margin: 0 auto; }
    #recruit .visual_text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      #recruit .visual_text p {
        font-size: 46px;
        letter-spacing: 0.08em;
        line-height: 1.6667; }
      #recruit .visual_text .sub {
        font-size: 14px;
        letter-spacing: 0.15em;
        line-height: 1.6667;
        margin-left: 3em; }
        #recruit .visual_text .sub::before {
          content: "";
          position: absolute;
          height: 1px;
          width: 30px;
          background-color: white;
          top: 10px;
          left: -3em; }
    #recruit .recruit_box {
      position: absolute;
      padding: 59px 61px;
      width: calc( 100% - 200px );
      top: -50px;
      box-sizing: border-box; }
    #recruit .inner {
      position: relative;
      padding-bottom: 350px; }
    #recruit .catch {
      font-size: 26px;
      letter-spacing: 0.1em;
      line-height: 1.153;
      margin-bottom: 26px; }
      #recruit .catch span {
        position: relative; }
        #recruit .catch span::before {
          content: "";
          position: absolute;
          height: 1px;
          width: 100%;
          background-color: #1BA1E6;
          top: 40px; }
    #recruit .text {
      font-size: 15px;
      letter-spacing: 0.1em;
      line-height: 1.866; } }
  @media all and (min-width: 1161px) {
    #recruit {
      margin-bottom: 0px; }
      #recruit .visual_text {
        position: absolute;
        left: 54px;
        transform: translateX(0); }
      #recruit .inner {
        position: relative;
        padding-bottom: 160px; }
      #recruit .recruit_box {
        top: -350px;
        right: 0;
        width: 700px; }
      #recruit .btnArea {
        text-align: left; } }

/*# sourceMappingURL=top.css.map */
