@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/* Foundation
---------------------------------------------------------------------*/
html {
  overflow-y: scroll;
}

body, div, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, blockquote, pre, form, input, textarea, header, footer, nav, figure, figcaption {
  margin: 0;
  padding: 0;
  zoom: 1;
}

header, footer, main, nav, article, aside, section {
  display: block;
}

ul, ol {
  list-style-type: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

hr {
  display: none;
  margin: 0;
  padding: 0;
  width: 1px;
  height: 1px;
}

a {
  outline: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media all and (-ms-high-contrast: none) {
  select::-ms-expand {
    display: none;
  }
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clear-both {
  clear: both;
}

/* For IE 6/7 */
.clearfix {
  zoom: 1;
}

/* Base */
* {
  font-style: normal;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (min-width: 769px) {
  body {
    min-width: 1280px;
    font-size: 1.6rem;
    line-height: 2;
  }
}
body a {
  color: #333;
  text-decoration: none;
}

button, input {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
}

/* ANIMATION
---------------------------------------------------------------------*/
@keyframes scale-out {
  0% {
    transform: scale(1.125);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ani-title-1st {
  0% {
    left: -9999px;
  }
  100% {
    left: 0;
  }
}
@keyframes ani-title-2nd {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes page-title-1st {
  0% {
    left: -999px;
  }
  100% {
    left: 0;
  }
}
@keyframes page-title-2nd {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.fade-up {
  transform: translate(0, 100px);
  opacity: 0;
  transition: all 1s;
  transition-delay: 0.5s;
}

.fade-up.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* Layout
---------------------------------------------------------------------*/
/* l-loading */
.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 50;
}

/* l-wrap */
.l-wrap {
  overflow: hidden;
  opacity: 0;
  transition: all 1s;
}

.l-wrap.js-fadein {
  opacity: 1;
}

/* l-header */
.l-header {
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    transition: all .5s;
  }
  .l-header.is-fixed {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .l-header.is-clone {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .l-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .l-header.is-clone {
    position: fixed;
    transform: translateY(-100px);
    transition: all .3s;
  }
  .l-header.is-clone.is-fixed {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .header-logo-sp {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .header-logo-sp img {
    width: 150px;
  }
  .header-bm {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 45px;
    padding: 8px;
    text-align: center;
    z-index: 101;
  }
  .header-bm-trigger {
    position: relative;
    width: 100%;
    height: 28px;
    margin: 0 auto;
  }
  .header-bm-trigger > span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all .4s;
  }
  .header-bm-trigger > span:nth-of-type(1) {
    top: 4px;
  }
  .header-bm-trigger > span:nth-of-type(2) {
    top: 12px;
  }
  .header-bm-trigger > span:nth-of-type(3) {
    top: 20px;
  }
  .header-bm-trigger.is-active > span {
    background-color: #fff;
  }
  .header-bm-trigger.is-active > span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .header-bm-trigger.is-active > span:nth-of-type(2) {
    opacity: 0;
  }
  .header-bm-trigger.is-active > span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  .header-bm.is-active .header-bm-txt {
    opacity: 0;
  }
  .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #333;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
    overflow-y: scroll;
  }
  .header-menu.is-active {
    height: 100%;
    visibility: visible;
    opacity: 1;
  }
  .header-inner {
    padding: 70px 4% 70px;
  }
  .header-logo {
    text-align: center;
    margin-bottom: 30px;
  }
  .header-nav {
    margin-bottom: 30px;
  }
  .header-nav li {
    border-bottom: 1px solid #707070;
  }
  .header-nav li a {
    display: block;
    color: #fff;
    padding: 10px;
  }
  .header-tel {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
  }
  .header-contact a {
    position: relative;
    display: block;
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    padding: 10px 20px 10px 50px;
    background-color: #e13c44;
    background-image: url("../img/common/ic_contact_w.svg");
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 30px auto;
  }
}
@media screen and (min-width: 769px) {
  .header-logo-sp {
    display: none;
  }
  .header-bm {
    display: none;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header-logo {
    align-self: center;
    margin-left: 30px;
  }
  .header-logo img {
    width: 280px;
  }
  .header-r {
    display: flex;
  }
  .header-nav {
    display: flex;
    height: 100%;
  }
  .header-nav li {
    margin-right: 40px;
  }
  .header-nav li a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .header-nav li a span {
    position: relative;
  }
  .header-nav li a span::after {
    position: relative;
    top: 3px;
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: all .5s;
  }
  .header-nav li a:hover span::after {
    width: 100%;
  }
  .header-tel {
    display: none;
  }
  .header-contact a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    padding: 30px 60px;
    background-color: #e13c44;
  }
  .header-contact a::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg) translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  #top-header.is-fixed .header-logo-sp {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  #top-header .header-logo-sp {
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
  }
}
@media screen and (min-width: 769px) {
  #top-header .header-inner {
    background-color: inherit;
  }
  #top-header .header-logo a {
    display: none;
  }
  #top-header .header-nav li a {
    color: #fff;
  }
  #top-header .header-nav li a span::after {
    background-color: #fff;
  }
}

/* l-main */
/* l-pagetitle */
.l-pagetitle {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 500px;
}
.l-pagetitle.about {
  background-image: url("../img/about/page_title_about.png");
}
.l-pagetitle.consulting {
  background-image: url("../img/consulting_logistic/page_title_consulting.png");
}
.l-pagetitle.logistic {
  background-image: url("../img/consulting_logistic/page_title_logistic.png");
}
.l-pagetitle.example {
  background-image: url("../img/example/page_title_example.png");
}
.l-pagetitle.contact {
  background-image: url("../img/contact/page_title_contact.png");
}
@media screen and (max-width: 768px) {
  .l-pagetitle {
    min-height: 150px;
  }
}
.l-pagetitle-hn {
  align-self: center;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  /*
  &.scroll-in {
  	span {
  		animation-name: page-title-1st;
  		animation-duration: 2s;
  		animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  		animation-fill-mode: both;
  		opacity: 1;
  		&.en {
  			animation-delay: 0s;
  			&::before {
  				animation-delay: 2s;
  			}
  		}
  		&.jp {
  			animation-delay: .5s;
  			&::before {
  				animation-delay: 2.5s;
  			}
  		}
  		&::before {
  			content: '';
  			display: block;
  			position: absolute;
  			top: 0;
  			left: 0;
  			width: 100%;
  			height: 100%;
  			background-color: #fff;
  			animation-name: page-title-2nd;
  			animation-duration: 1.2s;
  			animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  			animation-fill-mode: both;
  		}
  	}
  }
  */
}
@media screen and (max-width: 768px) {
  .l-pagetitle-hn {
    line-height: 1.2;
  }
}
.l-pagetitle-hn span {
  position: relative;
  display: inline-block;
  /*left: -9999px;*/
  /*opacity: 0;*/
  overflow: hidden;
}
.l-pagetitle-hn span.en {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .l-pagetitle-hn span.en {
    font-size: 1.4rem;
  }
}
.l-pagetitle-hn span.jp {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .l-pagetitle-hn span.jp {
    font-size: 1.8rem;
  }
}

/* l-content */
.l-content {
  padding: 92px 0 0;
}
@media screen and (max-width: 768px) {
  .l-content {
    padding: 65px 0 0;
  }
}

/* l-sec */
.l-sec {
  width: 92%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .l-sec {
    padding: 30px 0;
  }
}
.l-sec.sec-small {
  max-width: 960px;
}

/* l-inner */
.l-inner {
  width: 92%;
  max-width: 1260px;
  margin: 0 auto;
}

/* PAGETOP */
.l-pagetop {
  position: relative;
  font-size: 1.4rem;
  text-align: center;
  border-top: 1px solid #CFCFCF;
  padding: 18px 10px 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-pagetop {
    font-size: 1.1rem;
  }
}
.l-pagetop::before {
  content: '';
  display: block;
  position: absolute;
  top: 15px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #CFCFCF;
  border-left: solid 2px #CFCFCF;
  transform: rotate(45deg) translateX(-50%);
}
@media screen and (max-width: 768px) {
  .l-pagetop::before {
    top: 12px;
  }
}

/* l-footer */
.l-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("../img/common/footer_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 30px 10px;
  }
}
@media screen and (min-width: 769px) {
  .l-footer {
    min-height: 400px;
    padding: 70px 0 20px;
  }
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92%;
  max-width: 92%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    display: none;
  }
}
.footer-tel {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
}
.footer-tel span {
  display: block;
  font-size: 1.8rem;
}
.footer-btn {
  border-left: 1px solid #fff;
  margin-left: 50px;
}
.footer-btn a {
  position: relative;
  display: block;
  font-size: 1.8rem;
  color: #fff;
  padding: 10px 60px;
  border: 1px solid #fff;
  border-radius: 7px;
  margin-left: 50px;
}
.footer-btn a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg) translateY(-50%);
}
.footer-cr {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

/* Component
---------------------------------------------------------------------*/
/* HOVER */
.mouseover {
  transition: all .5s;
}

.mouseover:hover {
  opacity: .7;
}

/* FLEX */
@media screen and (min-width: 769px) {
  .flex-just {
    display: flex;
    justify-content: center;
  }
}

/* IMAGE */
.image img {
  width: 100%;
}

/* CAPTON */
.caption-top {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .caption-top {
    font-size: 1.2rem;
  }
}

.caption-bottom {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .caption-bottom {
    font-size: 1.2rem;
  }
}

/* LIST */
.list-num:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .list-num:not(:last-child) {
    margin-bottom: 20px;
  }
}
.list-num li {
  position: relative;
  font-size: 1.8rem;
  padding-left: 1.5em;
  counter-increment: num-list;
}
@media screen and (max-width: 768px) {
  .list-num li {
    font-size: 1.4rem;
  }
}
.list-num li::before {
  display: block;
  content: counter(num-list) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.list-circle:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .list-circle:not(:last-child) {
    margin-bottom: 20px;
  }
}
.list-circle li {
  font-size: 1.8rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .list-circle li {
    font-size: 1.4rem;
  }
}
.list-circle li::before {
  content: '●';
}

/* TEXT */
.txt:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .txt:not(:last-child) {
    margin-bottom: 20px;
  }
}

.txt-lead {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .txt-lead {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 20px;
  }
}

/* CATCH */
.catch-sub {
  font-weight: bold;
  color: #1281D5;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .catch-sub {
    font-size: 1.3rem;
    margin-top: 10px;
  }
}

.catch-main {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .catch-main {
    font-size: 1.5rem;
  }
}

.catch-txt {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .catch-txt {
    margin-top: 10px;
  }
}

/* TITLE */
.title-hn02 {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .title-hn02 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.title-hn03 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .title-hn03 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

/* ROW */
@media screen and (min-width: 769px) {
  .row-2 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -50px;
  }
  .row-2-sm {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
  }
  .row-3 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
  }
}

/* COLUMN */
@media screen and (max-width: 768px) {
  .col-1:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .col-1 {
    width: 100%;
    padding: 0 25px;
  }
  .col-1:nth-of-type(n+2) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .col-2:nth-of-type(n+2) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) {
  .col-2 {
    width: 50%;
    padding: 0 50px;
  }
  .col-2:nth-of-type(n+3) {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .col-2-sm:nth-of-type(n+2) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) {
  .col-2-sm {
    width: 50%;
    padding: 0 25px;
  }
  .col-2-sm:nth-of-type(n+3) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .col-3:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .col-3 {
    width: calc(100% / 3);
    padding: 0 25px;
  }
  .col-3:nth-of-type(n+4) {
    margin-top: 30px;
  }
}

/* Project
---------------------------------------------------------------------*/
/* TOP-MV */
.top-mv {
  position: relative;
}
.top-mv-logo {
  position: absolute;
  top: 40px;
  left: 30px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .top-mv-logo {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top-mv-logo img {
  width: 260px;
}
.top-mv-title {
  position: absolute;
  top: 50%;
  left: 80px;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-mv-title {
    top: inherit;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1;
  }
}
.top-mv-title .title {
  display: inline-block;
  position: relative;
  line-height: 1.8;
  animation-name: ani-title-1st;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: both;
  overflow: hidden;
}
.top-mv-title .title.title-1 {
  animation-delay: 2s;
}
.top-mv-title .title.title-1::before {
  animation-delay: 4s;
}
.top-mv-title .title.title-2 {
  animation-delay: 2.5s;
}
.top-mv-title .title.title-2::before {
  animation-delay: 4.5s;
}
.top-mv-title .title::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation-name: ani-title-2nd;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: both;
}
.top-mv .swiper-slide {
  max-height: 100vh;
  overflow: hidden;
}
.top-mv .swiper-slide::before {
  content: '';
  display: block;
  padding-top: 56.25%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 1s ease-out;
  /*
  transition: opacity 2s ease-out;
  */
}
@media screen and (max-width: 768px) {
  .top-mv .swiper-slide::before {
    padding-top: 100%;
  }
}
.top-mv .swiper-slide.slide-1::before {
  background-image: url("../img/mv_01.png");
}
.top-mv .swiper-slide.slide-2::before {
  background-image: url("../img/mv_02.png");
}
.top-mv .swiper-slide.slide-3::before {
  background-image: url("../img/mv_03.png");
}
.top-mv .swiper-slide-active::before {
  opacity: 1;
  filter: blur(0);
  transition: filter 1s ease-out;
  animation: scale-out 6s ease-out;
  /*
  transition: filter 2s ease-out;
  animation: scale-out 8s ease-out;
  */
}

/* TOP-LEAD */
.top-lead {
  width: 92%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 70px 0 120px;
}
@media screen and (max-width: 768px) {
  .top-lead {
    padding: 30px 0;
  }
}
.top-lead .lead-hn {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-lead .lead-hn {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.top-lead .lead-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -20px 40px;
}
@media screen and (max-width: 768px) {
  .top-lead .lead-list {
    display: block;
    margin: 0 0 30px;
  }
}
.top-lead .lead-list li {
  width: 48%;
  font-size: 1.8rem;
  font-weight: bold;
  text-indent: -1.55em;
  padding-left: 1.55em;
}
@media screen and (max-width: 768px) {
  .top-lead .lead-list li {
    width: 100%;
    font-size: 1.4rem;
  }
  .top-lead .lead-list li:nth-of-type(n+2) {
    margin-top: 5px;
  }
}
@media screen and (min-width: 769px) {
  .top-lead .lead-list li:nth-of-type(n+3) {
    margin-top: 5px;
  }
}
@media screen and (min-width: 769px) {
  .top-lead .lead-txt {
    text-align: center;
  }
}

/* TOP-CONLOG */
.top-conlog {
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-conlog {
    flex-direction: column;
  }
}
.top-conlog .conlog-item {
  position: relative;
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-conlog .conlog-item {
    width: 100%;
  }
}
.top-conlog .conlog-item::before {
  content: '';
  display: block;
  padding-top: 55%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all .5s;
}
.top-conlog .conlog-item:nth-of-type(1)::before {
  background-image: url("../img/conlog_consulting.png");
}
.top-conlog .conlog-item:nth-of-type(2)::before {
  background-image: url("../img/conlog_logistic.png");
}
.top-conlog .conlog-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  transition: all .5s;
}
@media screen and (max-width: 768px) {
  .top-conlog .conlog-item a::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(45deg) translateY(-50%);
  }
}
.top-conlog .conlog-item:hover::before {
  transform: scale(1.2);
}
.top-conlog .conlog-item:hover a {
  background-color: rgba(0, 0, 0, 0.3);
}
.top-conlog .conlog-hn {
  font-size: 3rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .top-conlog .conlog-hn {
    font-size: 1.8rem;
  }
}

/* TOP-NEWS */
.top-news {
  width: 92%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 70px 0 0;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 30px 0 0;
  }
}
.top-news .news-hn {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top-news .news-hn {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.top-news .news-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .top-news .news-list {
    margin: 0 -25px;
  }
}
.top-news .news-item {
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .top-news .news-item {
    width: 100%;
  }
  .top-news .news-item:nth-of-type(n+2) {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .top-news .news-item {
    width: calc(50% - 50px);
    margin: 0 25px;
  }
  .top-news .news-item:nth-of-type(n+3) {
    margin-top: 20px;
  }
}
.top-news .news-date {
  display: inline-block;
  font-size: 1.4rem;
  color: #83818A;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .top-news .news-date {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .top-news .news-date {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .top-news .news-txt {
    font-size: 1.5rem;
  }
}

/* TOP-example */
.top-example {
  width: 92%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .top-example {
    padding: 30px 0;
  }
}
.top-example .example-hn {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top-example .example-hn {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/* 会社情報 */
.about-info {
  max-width: 620px;
  margin: 0 auto;
  margin-bottom: 70px;
}
.about-info ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px;
}
@media screen and (max-width: 768px) {
  .about-info ul {
    flex-direction: column;
    margin: 0;
  }
}
.about-info ul li {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .about-info ul li {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .about-info {
    margin-bottom: 30px;
  }
}

/* 経営支援コンサルティング */
.consulting-row {
  position: relative;
  display: flex;
  padding: 120px 0 80px;
}
@media screen and (max-width: 768px) {
  .consulting-row {
    flex-direction: column-reverse;
    padding: 30px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .consulting-row {
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (min-width: 769px) {
  .consulting-row .col {
    padding: 30px 50px 0 7%;
  }
}
@media screen and (min-width: 769px) {
  .consulting-row .title-hn03 {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .consulting-row figure {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  .consulting-row figure {
    width: 60%;
  }
}
.consulting-row figure img {
  width: 100%;
}

/* 物流IT管理システム */
.logistic-sec {
  color: #fff;
  background-color: #16234B;
}
.logistic-inner {
  width: 92%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 70px 0 150px;
}
@media screen and (max-width: 768px) {
  .logistic-inner {
    padding: 30px 0;
  }
}

/* お問い合わせ */
.contact-flow {
  display: flex;
  width: 100%;
  margin: 70px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contact-flow {
    margin: 30px 0;
  }
}
.contact-flow li {
  position: relative;
  width: 33.3333%;
  text-align: center;
  background: #A8A8A8;
  padding: 1em 0.5em 1em 2em;
  color: #fff;
}
.contact-flow li::before, .contact-flow li::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.contact-flow li::before {
  top: 50%;
  transform: translateY(-50%);
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.contact-flow li::after {
  top: 50%;
  transform: translateY(-50%);
  right: -.8em;
  border-style: solid;
  border-color: transparent transparent transparent #A8A8A8;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.contact-flow li.is-current {
  background: #666;
}
.contact-flow li.is-current::after {
  border-color: transparent transparent transparent #666;
}
.contact-flow li:last-child {
  padding-right: 1em;
}
.contact-flow li:last-child::before, .contact-flow li:last-child::after {
  display: none;
}

.form-content {
  background-color: #F0F0F0;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .form-content {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.form-inner {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -20px 0;
}
@media screen and (max-width: 768px) {
  .form-inner {
    flex-direction: column;
    margin: -20px -20px 0;
  }
}
.form-dt {
  line-height: 1.6;
  margin-bottom: 5px;
}
.form-dt .mandatory, .form-dt .badge {
  color: #E31212;
  padding-left: 20px;
}
.form-dd:nth-of-type(n+2) {
  margin-top: 10px;
}
.form-col1 {
  width: 100%;
  padding: 40px 20px 0;
}
@media screen and (max-width: 768px) {
  .form-col1 {
    padding: 20px 20px 0;
  }
}
.form-col2 {
  width: 50%;
  padding: 40px 20px 0;
}
@media screen and (max-width: 768px) {
  .form-col2 {
    width: 100%;
    padding: 20px 20px 0;
  }
}
.form-text, .form-textarea, .form-control {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  padding: .8em;
  background-color: #fff;
}
.form-text::placeholder, .form-textarea::placeholder, .form-control::placeholder {
  color: #ccc;
}
@media screen and (max-width: 768px) {
  .form-text, .form-textarea, .form-control {
    padding: .5em;
  }
}
.form-textarea {
  min-height: 200px;
  resize: none;
}
.form-zipcode {
  width: 8em;
  margin-left: 10px;
}
.form-btn {
  text-align: center;
}
.form-btn .btn {
  position: relative;
  display: inline-block;
  width: 70%;
  max-width: 400px;
  font-size: 1.8rem;
  color: #fff;
  padding: 15px;
  text-align: center;
  margin-top: 70px;
  border-radius: 6px;
  background-color: #16234B;
  cursor: pointer;
  transition: all .5s;
}
@media screen and (max-width: 768px) {
  .form-btn .btn {
    font-size: 1.4rem;
    padding: 10px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 769px) {
  .form-btn .btn {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.form-btn .btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .form-btn .btn::after {
    right: 15px;
    width: 8px;
    height: 8px;
  }
}
.form-btn .btn:hover {
  opacity: .7;
}
.form-btn .btn-back {
  background-color: #999;
}
.form-btn .btn-back::after {
  display: none;
}
.form-btn .btn-back::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 30px;
  width: 10px;
  height: 10px;
  border: 0;
  border-left: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .form-btn .btn-back::before {
    left: 15px;
    width: 8px;
    height: 8px;
  }
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.btn-zipcode {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  padding: 15px;
  text-align: center;
  margin-left: 10px;
  border-radius: 6px;
  background-color: #16234B;
  cursor: pointer;
  transition: all .5s;
}
@media screen and (max-width: 768px) {
  .btn-zipcode {
    font-size: 1.2rem;
    padding: 12px 10px;
  }
}
.btn-zipcode:hover {
  opacity: .7;
}

/* Utility
---------------------------------------------------------------------*/
.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-mt-0 {
  margin-top: 0;
}
.u-mb-0 {
  margin-bottom: 0;
}
.u-mb-5 {
  margin-bottom: 5px;
}
.u-mb-20 {
  margin-bottom: 20px;
}
.u-mb-30 {
  margin-bottom: 30px;
}
.u-mb-50 {
  margin-bottom: 50px;
}
.u-mb-70 {
  margin-bottom: 70px;
}
.u-mb-100 {
  margin-bottom: 100px;
}
.u-mb-120 {
  margin-bottom: 120px;
}
.u-mb-150 {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .u-mb-30-sp {
    margin-bottom: 30px;
  }
}
.u-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-none-sp {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-none-pc {
    display: none;
  }
}
