@charset "UTF-8";
/**********************************************
*  layout
***********************************************/
.d-none {
  display: none;
}

.text-right {
  text-align: right;
}

.text-right .d-flex {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.text-blue {
  color: #00227b;
}

.text-black {
  color: #000;
}

.text-gray {
  color: #707070;
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.relative {
  position: relative;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/**********************************************
*  header
***********************************************/
.l-header {
  position: fixed;
  z-index: 100;
  height: 100px;
  background: rgba(0, 0, 0, 0);
  top: 0;
  width: 100%;
  max-width: 1900px;
}

.l-header.headerWhite {
  background: rgba(255, 255, 255, 0.6);
}

.l-header .header-inner {
  max-width: 1400px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

.l-header .header-inner .button-content {
  width: 130px;
}

.l-header .header-inner .button-arrow {
  width: 30px;
  left: calc(100% - 22px);
}

.logo-img {
  width: 110px;
}

.nav-wrapper {
  margin: auto 0;
}

.nav {
  margin: auto 0;
}

.nav .globalnav {
  position: relative;
  left: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  margin: 0;
}

.nav .globalnav li {
  margin: auto 22px;
}

.nav .globalnav li:last-child {
  margin-right: 0;
}

.nav .globalnav li a {
  text-decoration: none;
  color: #000;
}

.nav .globalnav li .is-now {
  color: #00227b;
  position: relative;
}

.nav .globalnav li .is-now::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  /*線の上下位置*/
  display: inline-block;
  width: 70px;
  /*線の長さ*/
  height: 5px;
  /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  /*位置調整*/
  background-color: #00227b;
  /*線の色*/
}

.nav .globalnav li .sm-content {
  display: none;
}

.nav .globalnav .dropdown-btn {
  position: relative;
  padding-right: 1em;
  cursor: pointer;
}

.nav .globalnav .dropdown-btn:hover {
  opacity: 0.7;
}

.nav .globalnav .dropdown-btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #000;
  border-right: solid 2px #000;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav .globalnav .dropdown {
  z-index: 10;
  position: absolute;
  left: -10px;
  top: 17px;
  width: 120px;
  display: none;
  padding: 10px;
  background: #fff;
}

.nav .globalnav .dropdown li {
  margin: 0;
  line-height: 2;
}

.nav .globalnav .open {
  display: block;
}

.nav .globalnav .close {
  display: block;
}

.contact {
  padding: 13px 23px;
  border: 1px solid #00227b;
  border-radius: 20px;
}

.toggle {
  display: none;
}

@media screen and (max-width: 1200px) {
  .logo-img {
    width: 110px;
  }
}

@media screen and (max-width: 1000px) {
  .l-header {
    height: 80px;
  }
  .l-header .globalnav {
    height: 80px;
  }
  .l-header .globalnav li {
    margin: auto 13px;
  }
  .l-header .globalnav li .is-now::before {
    width: 50px;
    /*線の長さ*/
  }
  .l-header .button-content {
    width: 100px;
  }
  .l-header .button-arrow {
    width: 25px;
    top: 5px;
    left: calc(100% - 17px);
  }
  .logo-img {
    width: 90px;
  }
}

@media screen and (max-width: 450px) {
  .logo-img {
    width: 70px;
  }
}

.burger-btn {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  vertical-align: middle;
  width: 39px;
  height: 39px;
  position: relative;
  z-index: 3;
  border: none;
  margin: auto 0;
}

.bar {
  width: 20px;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #000;
}

.bar_top {
  top: 10px;
}

.bar_mid {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bar_bottom {
  bottom: 10px;
}

.burger-btn.close .bar {
  width: 45px;
  height: 2px;
}

.burger-btn.close .bar_top {
  -webkit-transform: translate(-50%, 10px) rotate(45deg);
          transform: translate(-50%, 10px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  top: 20px;
}

.burger-btn.close .bar_mid {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.burger-btn.close .bar_bottom {
  -webkit-transform: translate(-50%, -8px) rotate(-45deg);
          transform: translate(-50%, -8px) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  bottom: 0;
}

@media screen and (max-width: 450px) {
  body {
    overflow: hidden;
  }
  .burger-btn {
    display: block;
  }
  /* 以下、ハンバーガーメニュー */
  .nav-wrapper {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 100vw;
    z-index: 2;
    opacity: 0.9;
  }
  .nav-wrapper.slide-in {
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  .nav {
    font-size: 20px;
    width: 90%;
    height: 100%;
    background-color: #00227b;
    z-index: 2;
    opacity: 0.9;
  }
  .nav.text-sm {
    font-size: 18px;
  }
  .nav .globalnav {
    display: block;
    position: absolute;
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: left;
    padding: 0;
    margin: 0;
  }
  .nav .globalnav li {
    margin-right: 0;
    margin-bottom: 20px;
    color: #fff;
  }
  .nav .globalnav li a {
    color: #fff;
  }
  .nav .globalnav li .is-now {
    color: #fff;
    opacity: 0.6;
  }
  .nav .globalnav li .is-now::before {
    width: 0;
  }
  .nav .globalnav li .button {
    display: none;
  }
  .nav .globalnav li .sm-content {
    display: block;
  }
  .nav .globalnav .dropdown-btn::after {
    width: 10px;
    height: 10px;
    top: 13px;
    right: 70px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .nav .globalnav .dropdown-btn .dropdown {
    display: block;
    position: relative;
    left: 1.5em;
    top: 0;
    background-color: #00227b;
  }
  .nav .globalnav .dropdown-btn .dropdown li {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .nav .globalnav .dropdown-btn .close {
    display: block;
  }
  /* メニューオープン時 */
  .noscroll {
    overflow: hidden;
  }
}

/**********************************************
*  footer
***********************************************/
.l-footer {
  margin: auto;
  width: 100%;
  max-width: 1900px;
  font-size: 13px;
  height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-footer a {
  text-decoration: none;
  color: #fff;
}

.l-footer .l-footer-left {
  padding-top: 65px;
  width: 50%;
  font-size: 15px;
}

.l-footer .l-footer-left .footer-inner {
  margin-right: 0;
  margin-left: auto;
}

.l-footer .l-footer-left .footer-inner .logo {
  margin-bottom: 25px;
}

.l-footer .l-footer-left .footer-inner .logo img {
  width: 90px;
}

.l-footer .l-footer-left .footer-inner .name {
  margin-bottom: 5px;
}

.l-footer .l-footer-left .footer-inner .address {
  line-height: 2.2;
}

.l-footer .l-footer-right {
  padding-top: 45px;
  width: 50%;
  background: #00227b;
  line-height: 32px;
}

.l-footer .l-footer-right .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 860px;
}

.l-footer .l-footer-right .footer-inner li::before {
  content: "ー";
  margin-right: 15px;
  color: #fff;
}

.l-footer .l-footer-right .footer-inner .footerlist-left {
  width: 200px;
  padding-left: 60px;
}

.l-footer .l-footer-right .footer-inner .footerlist-right {
  margin-right: 45px;
  padding-left: 30px;
  width: 170px;
}

.l-footer .l-footer-right .footer-inner .footerlist-right li:not(:first-child)::before {
  content: "　";
  margin-right: 15px;
}

.l-footer .l-footer-right .footer-inner .footer-img img {
  width: 100%;
}

.l-footer .footer-inner {
  width: 100%;
  max-width: 700px;
}

.gmap-wrap{
    position : relative;
    height : 0;
    padding-bottom : 75%; /* 縦横比の指定 */
    overflow : hidden;
}
 
.gmap-wrap iframe,
.gmap-wrap object,
.gmap-wrap embed{
    position : absolute;
    top : 0;
    left : 0;
    width : 100%;
    height : 100%;
}

	
.copyright {
  background: #000;
  padding: 18px;
}

@media screen and (max-width: 1900px) {
  .l-footer {
    height: auto;
  }
  .l-footer .l-footer-left .footer-inner {
    width: 95%;
  }
  .l-footer .l-footer-right .footer-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .l-footer .l-footer-right .footer-inner .footerlist-left {
    width: 40%;
    padding-left: 50px;
  }
  .l-footer .l-footer-right .footer-inner .footerlist-right {
    width: 40%;
    margin-right: 0;
    padding-left: 25px;
  }
  .l-footer .l-footer-right .footer-inner .footer-img {
    margin-left: 30px;
    width: 50%;
  }
	
	
	.access {
    width: 90%;
	margin-bottom:30px;
  }
  table.access th,
  table.access td {
    display: block;
    width: 100%;
    border-bottom:none;
	 
  }
  .access1 tr:last-child{
    display: block;
    width: 100%;
  }
}



@media screen and (max-width: 768px) {
  .l-footer {
    font-size: 11px;
  }
  .l-footer .l-footer-left,
  .l-footer .l-footer-right {
    padding-top: 30px;
  }
  .l-footer .l-footer-left .footer-inner .logo {
    margin-bottom: 20px;
  }
  .l-footer .l-footer-left .footer-inner .name {
    margin-bottom: 10px;
  }
  .l-footer .l-footer-right .footer-inner .footerlist-left,
  .l-footer .l-footer-right .footer-inner .footerlist-right {
    padding: 0;
    padding-left: 20px;
  }
	
}

@media screen and (max-width: 450px) {
  .l-footer {
    font-size: 10px;
    display: block;
  }
  .l-footer .l-footer-left {
    padding: 15px 20px;
    width: 100%;
  }
  .l-footer .l-footer-left .footer-inner {
    width: 100%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-footer .l-footer-left .footer-inner .logo {
    margin: auto 0;
    margin-right: 30px;
  }
  .l-footer .l-footer-left .footer-inner .logo .logo-img {
    width: 60px;
  }
  .l-footer .l-footer-right {
    padding-top: 10px;
    width: 100%;
  }
  .l-footer .l-footer-right .footer-inner {
    margin-bottom: 0;
  }
  .l-footer .l-footer-right .footer-inner .footer-img img {
    width: 60%;
  }
}

/**********************************************
*  status
***********************************************/
.is-activ {
  display: block;
}

.is-none {
  display: none !important;
}

.invisible {
  opacity: 0;
}

/**********************************************
*  index
***********************************************/
body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-image: url(http://www.ibiz-inc.co.jp/hp/wp-content/themes/plug002/assets/img/top/top.png);
  background-repeat: no-repeat;
  background-size: 1900px auto;
  max-width: 1900px;
  background-position: top;
}

.l-index a {
  text-decoration: none;
}

.l-index main {
  width: 90%;
}

.l-index p {
  line-height: 2;
}

.l-index .text-18 {
  font-size: 18px;
}

.l-index h2 {
  font-size: 100px;
  position: relative;
  top: -0.5em;
}

.l-index h2 span {
  font-size: 28px;
  text-shadow: none;
  font-family: "游ゴシック", sans-serif;
  font-weight: 500;
}

.l-index h3 {
  font-size: 28px;
}

.l-index .textSlide .animation span {
  font-size: 100px;
}

.l-index .top-img {
  z-index: -1;
  position: absolute;
  width: 100%;
}

.l-index .l-header {
  background: rgba(0, 0, 0, 0);
}

.l-index .l-top {
  max-width: 1200px;
  line-height: 1;
  margin: 210px auto 150px;
}

.l-index .l-top .text-top {
  letter-spacing: -4px;
  top: 0;
  font-size: 100px;
  margin-bottom: 37px;
  font-weight: 500;
}

.l-index .l-top .text-middle,
.l-index .l-top .text-bottom {
  opacity: 0;
}

.l-index .text-middle {
  font-size: 24px;
  margin-bottom: 30px;
}

.l-index .section {
  margin: 0 auto 120px;
  max-width: 1200px;
}

.l-index .content {
  margin-bottom: 120px;
}

.l-index .description {
  background: rgba(255, 255, 255, 0.7);
  width: 550px;
  height: 150px;
  border-radius: 10px;
  margin-bottom: 35px;
  padding: 25px;
}

.l-index .description p {
  margin: 0;
}

.l-index .for-smiles {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 140px;
}

.l-index .for-smiles h2 {
  top: 0;
  margin: 0;
  margin-top: 84px;
  letter-spacing: -5px;
}

.l-index .for-smiles .text-middle {
  text-align: end;
  margin-right: 560px;
}

.l-index .for-smiles .text-bottom {
  margin-right: 0;
}

.l-index .business-img {
  max-width: 850px;
  width: 70%;
  position: absolute;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.l-index .business-left .business-img {
  right: 0;
}

.l-index .business-right {
  text-align: right;
}

.l-index .business-right .description {
  text-align: left;
  margin-right: 0;
  margin-left: auto;
}

.l-index .business-right .business-img {
  left: 0;
}

.l-index .index-title {
  color: #f7f7f7;
  line-height: 1.3;
  margin-bottom: 88px;
}

.l-index .index-title span {
  font-size: 28px;
}

.l-index .index-title.shadow {
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.16);
}

.l-index .news {
  margin-bottom: 0;
  padding-bottom: 200px;
}

.l-index .news .content {
  background: #fff;
  padding: 10px 36px 40px 70px;
  max-width: 1200px;
  border-radius: 10px;
}

.l-index .news .content .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.l-index .news .content .detail .title {
  font-size: 28px;
  margin-top: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 70px;
}

.l-index .news .content .detail ul {
  margin: 0;
  padding: 0;
  font-size: 14px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.l-index .news .content .detail ul li {
  border-bottom: 1px dashed #00227b;
  padding: 30px 0;
}

.l-index .news .content .detail ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-index .news .content .detail ul li a div {
  margin: auto 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.l-index .news .content .detail ul li a .orange {
  font-size: 12px;
}

.l-index .news .content .detail ul li a .list-title {
  font-size: 12px;
  border-radius: 20px;
  padding: 4px 0;
  margin-right: 20px;
  width: 100px;
  text-align: center;
}

.l-index .news .content .detail ul li a .list-content {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  color: #000;
}

.l-index .company {
  position: relative;
}

.l-index .company:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  display: block;
  max-width: 1900px;
  width: 100vw;
  height: 100%;
  background-image: url(http://www.ibiz-inc.co.jp/hp/wp-content/themes/plug002/assets/img/top/company.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.l-index .company h2 {
  margin-bottom: 315px;
}

.l-index .recruit {
  margin-top: 270px;
  margin-bottom: 0;
  position: relative;
  height: 445px;
}

.l-index .recruit::before, .l-index .recruit::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  display: block;
  max-width: 1900px;
  width: 100vw;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.l-index .recruit::before {
  background-image: url(http://www.ibiz-inc.co.jp/hp/wp-content/themes/plug002/assets/img/top/recruit.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
}

.l-index .recruit::after {
  background: rgba(0, 34, 123, 0.5);
  content: "";
}

.l-index .recruit .index-title {
  margin-bottom: 30px;
}

.l-index .recruit .button {
  margin-top: 70px;
}

.l-index .recruit .button .button-arrow {
  left: 162px;
}

.l-index .googlemap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.news-bar {
  max-width: 1200px;
  margin-top: 150px;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 30px;
  line-height: 60px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.news-bar .title {
  width: 150px;
  background: #00227b;
  color: #fff;
  margin: 0;
  text-align: center;
  border-radius: 30px;
}

.news-bar .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 15px;
}

.news-bar .content .orange {
  height: 40%;
  position: relative;
  top: 14px;
}

.news-bar .content p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #000;
}

.card-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-two a {
  width: 45%;
  text-decoration: none;
}

.card-two .card {
  border-radius: 10px;
  margin-bottom: 40px;
}

.card-two .card .card-img {
  margin-bottom: 50px;
}

.card-two .card .card-footer {
  padding: 0 20px;
  height: 230px;
}

.card-two .card .card-title {
  font-size: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

.card-two .arrow {
  position: absolute;
  width: 57px;
  bottom: -15px;
  left: calc(50% - 28.5px);
}

.card-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-three a {
  width: 30%;
}

.card-three a .card {
  border-radius: 15px;
  margin-bottom: 40px;
  font-size: 15px;
  text-align: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.card-three a .card .card-footer {
  height: 120px;
}

.card-three a .card .card-footer .card-title {
  text-align: left;
  left: 10px;
  top: -17px;
  color: #f0f0f0;
  font-size: 30px;
  position: absolute;
}

.card-three a .card .card-footer .card-content {
  margin: auto;
  padding-top: 40px;
}

.card-three a .card .card-footer .arrow {
  position: absolute;
  right: 30px;
  top: 30px;
}

.card {
  background: #fff;
}

.card .card-img img {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .l-index .l-top .text-top {
    font-size: 80px;
    margin-bottom: 0px;
  }
  .l-index .news-bar {
    margin-top: 50px;
  }
  .l-index .news .content {
    padding-left: 40px;
  }
  .l-index .news .content .detail .title {
    margin-right: 40px;
  }
  .l-index .for-smiles h2 {
    letter-spacing: -3px;
  }
  .l-index .company h2 {
    margin-bottom: 100px;
  }
  .l-index .recruit {
    margin-top: 150px;
    height: auto;
    padding-bottom: 50px;
  }
  .l-index .recruit h2 {
    margin-bottom: 30px;
  }
  .l-index .recruit .button {
    margin-top: 30px;
  }
  .l-index .recruit .button .button-arrow {
    top: 12px;
  }
  .card-three .card .card-footer .arrow {
    right: 20px;
  }
}

@media screen and (max-width: 1000px) {
  .l-index {
    background-size: 1300px auto;
  }
  .l-index .text-18 {
    font-size: 14px;
  }
  .l-index h2 {
    font-size: 60px;
  }
  .l-index h3 {
    line-height: 1;
  }
  .l-index .textSlide .animation span {
    font-size: 60px;
  }
  .l-index .index-title {
    line-height: 1.1;
    margin-bottom: 30px;
  }
  .l-index .index-title span {
    font-size: 20px;
  }
  .l-index .l-top {
    margin-top: 180px;
    margin-bottom: 30px;
  }
  .l-index .l-top .text-top span {
    font-size: 60px;
  }
  .l-index .l-top .text-top .d-flex:nth-child(1) .animation:nth-child(7) {
    width: 1em;
  }
  .l-index .l-top .text-middle {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .l-index .news-bar {
    margin-top: 30px;
    height: 40px;
    line-height: 40px;
  }
  .l-index .news-bar .content .orange {
    top: 5px;
  }
  .l-index .news-bar .content p {
    margin-top: 8px;
  }
  .l-index .news-bar .title {
    width: 120px;
  }
  .l-index .for-smiles {
    margin-bottom: 70px;
  }
  .l-index .for-smiles .text-middle {
    font-size: 18px;
    margin-right: 260px;
    margin-bottom: 15px;
  }
  .l-index .business .business-img {
    width: 80%;
  }
  .l-index .description {
    height: 100px;
    width: 400px;
    padding: 15px;
    margin-bottom: 20px;
  }
  .l-index .content {
    margin-bottom: 70px;
  }
  .l-index .news {
    padding-bottom: 70px;
  }
  .l-index .news .content {
    padding-left: 40px;
  }
  .l-index .news .content .detail .title {
    font-size: 18px;
    margin-top: 15px;
  }
  .l-index .news .content .detail ul {
    font-size: 12px;
  }
  .l-index .news .content .detail ul li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: auto 5px;
  }
  .l-index .news .content .detail ul li div {
    margin: auto 3px;
  }
  .l-index .news .content .detail ul li .new {
    font-size: 10px;
    width: 40px;
    padding: 4px 0;
  }
  .l-index .news .content .detail ul li .list-title {
    padding: 4px 0px;
    margin-right: 8px;
    width: 90px;
  }
  .l-index .news .content .detail ul li .list-content {
    width: 100%;
  }
  .l-index .company {
    margin-bottom: 50px;
  }
  .l-index .company h2 {
    margin-bottom: 50px;
  }
  .l-index .recruit {
    margin-top: 40px;
    padding-bottom: 30px;
  }
  .l-index .recruit .button {
    margin-top: 20px;
  }
  .l-index .card-two .card .card-img {
    margin-bottom: 30px;
  }
  .l-index .card-two .card .card-footer {
    height: 180px;
  }
  .l-index .card-two .card .card-footer .card-title {
    margin-bottom: 25px;
  }
  .l-index .card-three .card .card-footer .card-content {
    padding-top: 40px;
    margin-bottom: 10px;
  }
  .l-index .card-three .card .card-footer .arrow {
    top: 100px;
    left: calc(50% - 20px);
    right: auto;
  }
}

@media screen and (max-width: 450px) {
  .l-index {
    background-size: auto 130vh;
  }
  .l-index h2 {
    font-size: 40px;
    top: -25px;
  }
  .l-index .index-title {
    margin-bottom: 15px;
  }
  .l-index .index-title span {
    font-size: 15px;
    line-height: 1.5;
  }
  .l-index .index-title .animation span {
    font-size: 40px;
  }
  .l-index .section {
    margin-bottom: 30px;
  }
  .l-index .l-top {
    margin-top: 300px;
    line-height: 1.1;
  }
  .l-index .l-top .text-top {
    font-size: 60px;
  }
  .l-index .l-top .text-middle {
    font-size: 25px;
    margin-top: 30px;
  }
  .l-index .l-top .text-bottom {
    font-size: 15px;
    margin-top: 30px;
  }
  .l-index .news-bar {
    line-height: 30px;
    height: 30px;
    font-size: 11px;
    margin-top: 50px;
  }
  .l-index .news-bar .content {
    margin-left: 5px;
    position: relative;
    top: -6px;
  }
  .l-index .news-bar .content .orange {
    top: 9px;
  }
  .l-index .news-bar .content p {
    width: 270px;
    margin-top: 10px;
  }
  .l-index .news-bar .title {
    width: 50px;
  }
  .l-index .news-bar .orange {
    width: 35px;
  }
  .l-index .for-smiles {
    margin-bottom: 50px;
  }
  .l-index .for-smiles h2 {
    margin-top: 40px;
    letter-spacing: -2px;
  }
  .l-index .for-smiles h2 .animation span {
    font-size: 40px;
  }
  .l-index .for-smiles .text-middle {
    font-size: 15px;
    margin-right: 170px;
  }
  .l-index .for-smiles .text-bottom {
    font-size: 15px;
  }
  .l-index .business h3 {
    margin: 15px auto;
    font-size: 28px;
    line-height: 1.4;
  }
  .l-index .business h3 span {
    font-weight: 300;
  }
  .l-index .business .description {
    margin-top: 160px;
    width: 90%;
    height: auto;
    min-height: 160px;
  }
  .l-index .business .arrow {
    width: 40px;
  }
  .l-index .business .business-img {
    width: 100%;
    top: 38%;
  }
  .l-index .news {
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .l-index .news .content {
    padding: 5px;
    margin-left: 0;
  }
  .l-index .news .content .detail {
    display: block;
    margin-bottom: 20px;
  }
  .l-index .news .content .detail .title {
    margin-left: 5px;
  }
  .l-index .news .content .detail ul {
    padding-left: 0;
  }
  .l-index .news .content .detail ul li {
    margin: 0;
    padding: 10px;
  }
  .l-index .news .content .detail ul li a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-index .news .content .detail ul li a .orange {
    padding: 2px 0 0;
  }
  .l-index .news .content .detail ul li a .list-title {
    padding: 0;
  }
  .l-index .news .content .detail ul li div {
    margin: auto 2px;
  }
  .l-index .news .content .detail ul li .new {
    padding: 2px 0;
  }
  .l-index .news .content .detail ul li .list-content {
    width: 100%;
  }
  .l-index .news .content .button {
    margin-bottom: 20px;
  }
  .l-index .company h2 {
    margin-bottom: 20px;
  }
  .l-index .recruit {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  .l-index .recruit h2 {
    margin-bottom: 10px;
  }
  .l-index .recruit .button {
    margin-top: 10px;
  }
  .l-index .recruit .button .button-content {
    padding: 8px 0;
    width: 100px;
  }
  .l-index .recruit .button .button-arrow {
    left: 80px;
    top: 6px;
  }
  .l-index .card-two {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-index .card-two a {
    width: 100%;
  }
  .l-index .card-two a .card {
    margin: auto;
    margin-bottom: 60px;
  }
  .l-index .card-two a .card .card-title div {
    margin: auto 0;
  }
  .l-index .card-two a .card .card-footer {
    height: 150px;
  }
  .l-index .card-three a {
    width: 31%;
  }
  .l-index .card-three a .card {
    margin-bottom: 20px;
  }
  .l-index .card-three a .card .card-footer {
    height: 90px;
  }
  .l-index .card-three a .card .card-footer .card-title {
    font-size: 15px;
    top: -7px;
  }
  .l-index .card-three a .card .card-footer .card-content {
    padding-top: 35px;
    font-size: 10px;
  }
  .l-index .card-three a .card .card-footer .arrow {
    width: 40px;
    left: calc(50% - 15px);
    top: 76px;
  }
  .l-index .content {
    margin-bottom: 30px;
    margin-left: 10px;
  }
  .l-index .orange {
    width: 40px;
    line-height: 18px;
    margin-right: 0;
  }
  .l-index .description {
    width: 280px;
    height: 100px;
    padding: 10px;
    margin-bottom: 10px;
  }
}

/**********************************************
*  base
***********************************************/
html {
  font-size: 15px;
  overflow: auto;
  padding: 0;
  margin: 0;
  color: #000;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

h2 {
  margin: 0;
}

main {
  margin: 0 auto;
}

li {
  list-style: none;
}

a:hover {
  opacity: 0.7;
}

.slang-bg {
  position: relative;
}

.slang-bg:before {
  position: absolute;
  z-index: -10;
  top: -130px;
  left: 50%;
  display: block;
  max-width: 1900px;
  width: 100vw;
  height: 120%;
  background-image: url(http://www.ibiz-inc.co.jp/hp/wp-content/themes/plug002/assets/img/common/background.png);
  background-size: 100%;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 1200px) {
  .slang-bg::before {
    top: -70px;
  }
}

@media screen and (max-width: 1000px) {
  .slang-bg::before {
    top: -50px;
  }
}

@media screen and (max-width: 450px) {
  .slang-bg::before {
    top: -10px;
  }
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 15px;
}

.text-lg {
  font-size: 20px;
}

.text-xl {
  font-size: 50px;
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 12px;
  }
  .text-xs {
    font-size: 8px;
  }
  .text-sm {
    font-size: 10px;
  }
  .text-md {
    font-size: 12px;
  }
  .text-lg {
    font-size: 16px;
  }
  .text-xl {
    font-size: 30px;
  }
}

@media screen and (max-width: 450px) {
  html {
    font-size: 12px;
  }
}

.font-english {
  font-family: "Roboto Serif", serif;
}

.fw-bold {
  font-weight: bold !important;
}

.text-blue {
  color: #00227b;
}

.text-black {
  color: #000;
}

.orange {
  display: inline-block;
  color: #fff;
  width: 60px;
  line-height: 25px;
  background: #ff6200;
  text-align: center;
  border-radius: 20px;
  margin-right: 10px;
  vertical-align: middle;
  padding: 5px 0 0;
}

.bg-blue {
  position: relative;
}

.bg-blue:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  display: block;
  max-width: 1900px;
  width: 100vw;
  height: 100%;
  background-color: #00227b;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bg-white {
  background: #fff;
  border-radius: 10px;
  padding: 80px 120px;
}

@media screen and (max-width: 450px) {
  .bg-white {
    padding: 30px 20px;
  }
}

.box-shadow {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 450px) {
  .d-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.button {
  position: relative;
}

.button a {
  text-decoration: none;
}

.button .button-content {
  width: 180px;
  padding: 7px 0;
  border-radius: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button .button-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  height: 7px;
  position: absolute;
  left: calc(50% + 70px);
  top: 13px;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
}

.button-blue .button-content {
  color: #00227b;
  border: 1px solid #00227b;
}

.button-blue .button-arrow {
  border-bottom: 1px solid #00227b;
  border-right: 1px solid #00227b;
}

.button-white .button-content {
  color: #fff;
  border: 1px solid #fff;
}

.button-white .button-arrow {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 1000px) {
  .button .button-arrow {
    top: 10px;
  }
}

@media screen and (max-width: 450px) {
  .button .button-content {
    width: 120px;
  }
  .button .button-arrow {
    width: 30px;
    left: calc(50% + 40px);
    top: 10px;
  }
}

.br-xl,
.br-md,
.br-sm {
  display: none;
}

@media screen and (max-width: 1200px) {
  .br-xl {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .br-md {
    display: block;
  }
}

@media screen and (max-width: 450px) {
  .br-sm {
    display: block;
  }
}

/* 左から */
.slideLeft {
  opacity: 0;
}

.slideLeft.is-active {
  -webkit-animation-name: slideLeftAnime;
          animation-name: slideLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes slideLeftAnime {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideLeftAnime {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/* 右から */
.slideRight {
  opacity: 0;
}

.slideRight.is-active {
  -webkit-animation-name: slideRightAnime;
          animation-name: slideRightAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes slideRightAnime {
  from {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRightAnime {
  from {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/* 下から */
.slideUp {
  opacity: 0;
}

.slideUp.is-active {
  -webkit-animation-name: slideUpAnime;
          animation-name: slideUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes slideUpAnime {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUpAnime {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.textSlide .animation {
  overflow: hidden;
}

.textSlide .animation:nth-child(2) span {
  -webkit-transition-delay: 0.04s;
          transition-delay: 0.04s;
}

.textSlide .animation:nth-child(3) span {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}

.textSlide .animation:nth-child(4) span {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.textSlide .animation:nth-child(5) span {
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}

.textSlide .animation:nth-child(6) span {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.textSlide .animation:nth-child(7) span {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.textSlide .animation:nth-child(8) span {
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}

.textSlide .animation:nth-child(9) span {
  -webkit-transition-delay: 0.32s;
          transition-delay: 0.32s;
}

.textSlide .animation:nth-child(10) span {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.textSlide .animation:nth-child(11) span {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.textSlide .animation:nth-child(12) span {
  -webkit-transition-delay: 0.44s;
          transition-delay: 0.44s;
}

.textSlide .animation:nth-child(13) span {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}

.textSlide .animation:nth-child(14) span {
  -webkit-transition-delay: 0.52s;
          transition-delay: 0.52s;
}

.textSlide .animation:nth-child(15) span {
  -webkit-transition-delay: 0.56s;
          transition-delay: 0.56s;
}

.textSlide .animation:nth-child(16) span {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.textSlide .animation:nth-child(17) span {
  -webkit-transition-delay: 0.64s;
          transition-delay: 0.64s;
}

.textSlide .animation:nth-child(18) span {
  -webkit-transition-delay: 0.68s;
          transition-delay: 0.68s;
}

.textSlide .animation:nth-child(19) span {
  -webkit-transition-delay: 0.72s;
          transition-delay: 0.72s;
}

.textSlide .animation:nth-child(20) span {
  -webkit-transition-delay: 0.76s;
          transition-delay: 0.76s;
}

.textSlide .animation:nth-child(21) span {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.textSlide .animation:nth-child(22) span {
  -webkit-transition-delay: 0.84s;
          transition-delay: 0.84s;
}

.textSlide .animation:nth-child(23) span {
  -webkit-transition-delay: 0.88s;
          transition-delay: 0.88s;
}

.textSlide .animation:nth-child(24) span {
  -webkit-transition-delay: 0.92s;
          transition-delay: 0.92s;
}

.textSlide .animation:nth-child(25) span {
  -webkit-transition-delay: 0.96s;
          transition-delay: 0.96s;
}

.textSlide .animation:nth-child(26) span {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.textSlide .animation:nth-child(27) span {
  -webkit-transition-delay: 1.04s;
          transition-delay: 1.04s;
}

.textSlide .animation:nth-child(28) span {
  -webkit-transition-delay: 1.08s;
          transition-delay: 1.08s;
}

.textSlide .animation:nth-child(29) span {
  -webkit-transition-delay: 1.12s;
          transition-delay: 1.12s;
}

.textSlide .animation:nth-child(30) span {
  -webkit-transition-delay: 1.16s;
          transition-delay: 1.16s;
}

.textSlide .animation:nth-child(31) span {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.textSlide .animation span {
  font-family: "Roboto Serif", serif;
  font-size: 50px;
  display: block;
  -webkit-transform: translate(-200%, 0);
          transform: translate(-200%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.textSlide.-visible .animation span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 450px) {
  .textSlide .animation span {
    font-size: 30px;
  }
}
/*# sourceMappingURL=style.css.map */