@charset "utf-8";

/*
  File Name   : top.css
  Description : コンテンツエリア関係 他
*/

/* common
============================================================ */
.top-main-title-wrap {
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.top-main-title-wrap .title-A {
  font-size: 50px;
  font-weight: 400;
  font-family: "WDXL Lubrifont SC", sans-serif;
  line-height: 1;
  letter-spacing: 2px;
  margin-right: 22px;
}
.top-main-title-wrap .title-B {
  font-size: 16px;
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  padding-bottom: 4px;
}
.top-main-title-wrap .title-B::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

/* gn */
.top-main-title-wrap.-color-gn {
  color: #049626;
}
.top-main-title-wrap.-color-gn .title-B::after {
  background-color: #049626;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .top-main-title-wrap .title-A {
    font-size: 40px;
    margin-right: 20px;
  }
}

/* kv
============================================================ */
.top-kv-wrap .com-section-inner {
  position: relative;
}

.kv-catch-wrap {
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 713px;
  height: 466px;
  background: url(../img/top/kv-catch-img.svg) 0 0 no-repeat;
  background-size: 713px auto;
}
.kv-catch-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(100% - 2910px);
  width: 2200px;
  height: 466px;
  background-color: #049626;
}

/* slick-slider-wrap */
.slick-control-wrap {
  background-color: #049626;
  height: 130px;
  border-radius: 100px 0 0 100px;
  padding-left: 44px;
  margin-top: -65px;
  position: absolute;
  right: 40px;
  z-index: 1;
}
.slick-control-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - 2544px );
  width: 2200px;
  height: 130px;
  background-color: #049626;
}
.slick-control-inner {
  display: flex;
  align-items: center;
  width: 300px;
  height: 130px;
  padding: 20px 0;
}

.slick-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}
.slick-container {
  position: relative;
  width: calc(100% + (100vw - 100%) / 2);
}

/* image */
.slick-image {
  position: relative;
  overflow: hidden;
  margin-right: 30px;
  border-radius: 20px;
  width: 800px;
  height: 500px;
}
.slick-image:before {
  display: block;
  padding-top: calc((2 / 3) * 100%);
  content: '';
}
.slick-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* arrow */
.slick-arrow-box {
  display: flex;
  margin-left: auto;
}
.slick-prev-arrow,
.slick-next-arrow {
  width: 20px;
  height: 30px;
  background: url(../img/top/slide-arrow-prev.svg) 0 0 no-repeat;
  background-size: 20px auto;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.slick-next-arrow {
  background: url(../img/top/slide-arrow-next.svg) 0 0 no-repeat;
  background-size: 20px auto;
  margin-left: 20px;
}
.slick-prev-arrow:hover,
.slick-next-arrow:hover {
  opacity: .7;
}

/* thumbnail */
.thumbnail-list {
  display: flex;
}
.thumbnail-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .15);
  margin-right: 8px;
  cursor: pointer;
}
.thumbnail-item:last-child {
  margin-right: 0;
}
.thumbnail-item.thumbnail-current {
  background-color: #fff;
}

/* counter */
.slick-counter {
  font-size: 20px;
  font-weight: 300;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
  color: #fff;
  margin-right: 30px;
}
.slick-counter .current {
  font-size: 30px;
}
.slick-counter .symbol {
  margin: 0 10px;
}
.slick-counter .total {
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .kv-catch-wrap {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 180px;
    height: 160px;
    background: url(../img/top/kv-catch-img-sp.svg) 0 0 no-repeat;
    background-size: 180px auto;
  }
  .kv-catch-wrap::after {
    display: none;
  }

  /* slick-slider-wrap */
  .slick-control-wrap {
    height: 80px;
    padding-left: 28px;
    margin-top: -40px;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  .slick-control-wrap::after {
    display: none;
  }
  .slick-control-inner {
    width: 82px;
    height: 80px;
    padding: 20px 0;
  }

  .slick-inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 20px;
  }
  .slick-container {
    position: relative;
    width: calc(100% + (100vw - 100%) / 2);
  }

  /* image */
  .slick-image {
    margin-right: 10px;
    width: 260px;
    height: 320px;
  }
  .slick-image:before {
    display: block;
    padding-top: calc((2 / 3) * 100%);
    content: '';
  }
  .slick-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* arrow */
  .slick-arrow-box {
    display: flex;
    margin-left: 0;
  }
  .slick-prev-arrow,
  .slick-next-arrow {
    width: 14px;
    height: 20px;
    background: url(../img/top/slide-arrow-prev.svg) 0 0 no-repeat;
    background-size: 14px auto;
  }
  .slick-next-arrow {
    background: url(../img/top/slide-arrow-next.svg) 0 0 no-repeat;
    background-size: 14px auto;
    margin-left: 25px;
  }
  .slick-prev-arrow:hover,
  .slick-next-arrow:hover {
    opacity: 1;
  }

  /* thumbnail */
  .thumbnail-list {
    display: flex;
    position: absolute;
    bottom: 0;
    /* left: -56px; */
    right: 105px;
  }
  .thumbnail-item {
    width: 6px;
    height: 6px;
    background-color: rgba(4, 150, 38, .15);
    margin-right: 5px;
  }
  .thumbnail-item.thumbnail-current {
    background-color: #049626;
  }

  /* counter */
  .slick-counter {
    display: none;
  }
}

/* -business
============================================================ */
.-business {
  margin-top: 310px;
}
.-business .business-bg-wrap {
  height: 450px;
  position: relative;
  background: url(../img/top/business-img-1.jpg) center no-repeat;
  background-size: cover;
  z-index: -2;
}
.-business .business-bg-wrap::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 363px;
  height: 395px;
  background: url(../img/top/business-parts.svg) 0 0 no-repeat;
  background-size: 363px auto;
}
.-business .business-body {
  margin-top: -150px;
}
.-business .com-section-inner {
  position: relative;
}
.-business .top-main-title-wrap {
  color: #049626;
}
.-business .top-main-title-wrap .title-B::after {
  background-color: #049626;
}
.-business .business-body .flex-wrap {
  display: flex;
  position: relative;
  z-index: 2;
}
.-business .business-body .desc-wrap {
  width: calc(100% - 440px);
  padding-right: 40px;
}
.-business .business-body .desc-wrap .top-main-title-wrap {
  margin-bottom: 45px;
}
.-business .business-body .desc-wrap .inner {
  padding: 60px 40px 130px;
  border-radius: 20px;
  border: solid 4px #049626;
  background-color: #fff;
}
.-business .business-body .link-wrap a {
  width: 440px;
  height: 375px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}
.-business .business-body .link-wrap a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/top/business-img-2.jpg) center no-repeat;
  background-size: cover;
  transition: all .2s ease-in-out;
  z-index: -1;
}
.-business .business-body .link-wrap .link-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.-business .business-body .link-wrap a span {
  font-size: 30px;
  font-weight: 400;
  font-family: "WDXL Lubrifont SC", sans-serif;
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
  position: relative;
  padding-right: 40px;
  z-index: 1;
}
.-business .business-body .link-wrap a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 14px;
  background: url(../img/common/icon-link-btns-arrow.svg) 0 0 no-repeat;
  background-size: 18px auto;
}

.-business .business-body .link-wrap a:hover::after {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  opacity: 1;
}

.-business .business-body .com-btn-wrap-gn {
  margin-top: -37px;
  position: relative;
  left: 40px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .-business {
    margin-top: 100px;
  }
  .-business .business-bg-wrap {
    height: 250px;
    background: url(../img/top/business-img-1-sp.jpg) center no-repeat;
    background-size: cover;
  }
  .-business .business-bg-wrap::before {
    top: -20px;
    left: 0;
    width: 130px;
    height: 141px;
    background: url(../img/top/business-parts.svg) 0 0 no-repeat;
    background-size: 130px auto;
  }
  .-business .business-body {
    margin-top: -60px;
  }
  .-business .business-body .flex-wrap {
    display: block;
  }
  .-business .business-body .desc-wrap {
    width: 100%;
    padding-right: 0;
  }
  .-business .business-body .desc-wrap .top-main-title-wrap {
    margin-bottom: 28px;
  }
  .-business .business-body .desc-wrap .inner {
    padding: 30px 40px 90px;
  }
  .-business .business-body .link-wrap {
    margin-top: 30px;
  }
  .-business .business-body .link-wrap a {
    width: 100%;
    height: 120px;
  }
  .-business .business-body .link-wrap a span {
    white-space: nowrap;
  }

  .-business .business-body .link-wrap a:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .-business .business-body .com-btn-wrap-gn {
    margin-top: -37px;
    position: static;
    text-align: center;
  }
}

@media screen and (max-width: 321px) {
  .-business .business-body .desc-wrap .inner {
    padding: 30px 20px 90px;
  }
}

/* -works
============================================================ */
.-works {
  margin-top: 170px;
}
.-works .com-section-inner {
  position: relative;
}
.-works .top-main-title-wrap {
  color: #049626;
}
.-works .top-main-title-wrap .title-B::after {
  background-color: #049626;
}
.works-body {
  margin-top: 50px;
}
.works-body .flex-box {
  display: flex;
}
.works-body .single-img-wrap {
  width: 460px;
}
.works-body .list-img-wrap {
  width: calc(100% - 460px);
  padding-left: 20px;
}
.works-body .list-img-wrap ul {
  display: flex;
  flex-wrap: wrap;
}
.works-body .list-img-wrap li {
  width: calc((100% - 20px * 1) / 2);
  margin-right: 20px;
  margin-bottom: 30px;
}
.works-body .list-img-wrap li:nth-child(2n) {
  margin-right: 0;
}
.works-body .single-img-wrap .img-block,
.works-body .list-img-wrap .img-block {
  width: 100%;
  height: 224px;
  /* background-color: #1d2088; */
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.works-body .single-img-wrap .img-block {
  height: 530px;
}
.works-body .single-img-wrap .img-block img,
.works-body .list-img-wrap .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .2s ease-in-out;
}
.works-body .single-img-wrap .img-block img,
.works-body .list-img-wrap li .img-block img {
  position: relative;
  z-index: 2;
}
.works-body .single-img-wrap .img-block::after,
.works-body .list-img-wrap li .img-block::after {
  display: none;
}
.works-body .single-img-wrap .img-outer,
.works-body .list-img-wrap li .img-outer {
  position: relative;
  display: block;
}
.works-body .single-img-wrap .desc-block,
.works-body .list-img-wrap .desc-block {
  font-size: 16px;
  font-weight: bold;
  color: #049626;
  text-align: center;
  margin-top: 15px;
}
.works-body .single-img-wrap .desc-block .text,
.works-body .list-img-wrap .desc-block .text {
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}
.works-body .single-img-wrap .desc-block .text::after,
.works-body .list-img-wrap .desc-block .text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #049626;
}
.works-body .single-img-wrap a:hover img,
.works-body .list-img-wrap li a:hover img {
  -webkit-transform: scale(1.1,1.1);
  transform: scale(1.1,1.1);
  opacity: .75;
}
.works-body .single-img-wrap a:hover,
.works-body .list-img-wrap li a:hover {
  text-decoration: none;
}

.works-body .single-img-wrap .img-block img,
.works-body .list-img-wrap li .img-block img {
  position: relative;
  z-index: 2;
}
.works-body .single-img-wrap .img-block::after,
.works-body .list-img-wrap li .img-block::after {
  display: none;
}
.works-body .single-img-wrap .img-outer,
.works-body .list-img-wrap li .img-outer {
  position: relative;
  display: block;
}

.-works .com-btn-wrap-gn {
  margin-top: 0;
  position: absolute;
  top: -10px;
  right: 40px;
  z-index: 3;
}

.-works .com-section-inner::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -140px;
  right: -125px;
  width: 317px;
  height: 195px;
  background: url(../img/top/works-parts.svg) 0 0 no-repeat;
  background-size: 317px auto;
}


/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .-works {
    margin-top: 110px;
  }
  .works-body {
    margin-top: 30px;
  }
  .works-body .flex-box {
    display: block;
  }
  .works-body .single-img-wrap {
    width: 100%;
  }
  .works-body .list-img-wrap {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .works-body .list-img-wrap li {
    width: calc((100% - 15px * 1) / 2);
    margin-right: 15px;
    margin-bottom: 40px;
  }
  .works-body .list-img-wrap li:nth-child(2n) {
    margin-right: 0;
  }
  .works-body .single-img-wrap .img-block,
  .works-body .list-img-wrap .img-block {
    height: 31vw;
  }
  .works-body .single-img-wrap .img-block {
    height: 102vw;
  }
  .works-body .single-img-wrap a:hover img,
  .works-body .list-img-wrap li a:hover img {
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    opacity: 1;
  }
  .works-body .single-img-wrap a:hover,
  .works-body .list-img-wrap li a:hover {
    text-decoration: none;
  }

  .-works .com-btn-wrap-gn {
    margin-top: 0;
    position: static;
    text-align: center;
  }

  .-works .com-section-inner::before {
    top: 0;
    right: -80px;
    width: 200px;
    height: 123px;
    background: url(../img/top/works-parts.svg) 0 0 no-repeat;
    background-size: 200px auto;
  }
}

/* -recruit
============================================================ */
.-recruit {
  background: url(../img/top/recruit-bg.png) center no-repeat;
  background-size: cover;
  margin: 0 40px;
  margin-top: 100px;
  border-radius: 20px;
  padding: 106px 0 100px;
  position: relative;
}
.-recruit::before,
.-recruit::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.-recruit::before {
  top: -80px;
  right: -110px;
  width: 316px;
  height: 314px;
  background: url(../img/recruit/staff/img-caption-wrap-parts.svg) 0 0 no-repeat;
  background-size: 316px auto;
}
.-recruit::after {
  bottom: -335px;
  left: -130px;
  width: 372px;
  height: 406px;
  background: url(../img/top/recruit-parts-B.svg) 0 0 no-repeat;
  background-size: 372px auto;
}
.-recruit .com-section-inner {
  position: relative;
}
.-recruit .top-main-title-wrap {
  color: #049626;
}
.-recruit .top-main-title-wrap .title-B::after {
  background-color: #049626;
}

/* link-full-wrap */
.-recruit .link-full-wrap {
  margin-top: 65px;
  position: relative;
}
.-recruit .link-full-wrap .link-a-title {
  background-color: #fff;
  padding: 25px 50px;
  border-radius: 20px 0 20px 0;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.-recruit .link-full-wrap img {
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}
.-recruit .link-full-wrap span img {
  border-radius: 0;
}
.-recruit .link-full-wrap a {
  display: block;
}
.-recruit .link-full-wrap a:hover {
  opacity: .7;
}

/* links-list-wrap-A */
.-recruit .links-list-wrap-A {
  margin-top: 50px;
}
.-recruit .links-list-wrap-A ul {
  display: flex;
}
.-recruit .links-list-wrap-A li {
  width: calc((100% - 40px * 2) / 3);
  margin-right: 40px;
  border-radius: 20px;
}
.-recruit .links-list-wrap-A li a {
  padding: 60px 40px;
  border-radius: 20px;
  border: solid 5px #049626;
  background-color: #fff;
  position: relative;
}
.-recruit .links-list-wrap-A li:last-child {
  margin-right: 0;
}
.-recruit .links-list-wrap-A li .title-block {
  text-align: center;
}
.-recruit .links-list-wrap-A li .text-block {
  color: #0b3745;
  margin-top: 32px;
}
.-recruit .links-list-wrap-A li a {
  display: block;
  height: 100%;
  position: relative;
}
.-recruit .links-list-wrap-A li a:hover {
  text-decoration: none;
  opacity: .7;
}

/* links-list-wrap-B */
.-recruit .links-list-wrap-B {
  margin-top: 50px;
}
.-recruit .links-list-wrap-B ul {
  display: flex;
}
.-recruit .links-list-wrap-B li {
  width: calc((100% - 40px * 1) / 2);
  margin-right: 40px;
}
.-recruit .links-list-wrap-B li:last-child {
  margin-right: 0;
}
.-recruit .links-list-wrap-B li a:hover {
  text-decoration: none;
  opacity: .7;
}

.-recruit .link-full-wrap a,
.-recruit .links-list-wrap-A li a {
  position: relative;
}
.-recruit .link-full-wrap a::after,
.-recruit .links-list-wrap-A li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: url(../img/top/recruit-arrow.svg) 0 0 no-repeat;
  background-size: 48px auto;
  z-index: 1;
}
.-recruit .links-list-wrap-A li a::after {
  bottom: -2px;
  right: -2px;
}

.-recruit .com-btn-wrap-gn {
  margin-top: 0;
  position: absolute;
  top: -10px;
  right: 40px;
  z-index: 3;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .-recruit {
    background: url(../img/top/recruit-bg.png) center no-repeat;
    background-size: cover;
    margin: 0 20px;
    margin-top: 80px;
    padding: 60px 20px 60px;
  }
  .-recruit::before {
    top: -40px;
    right: -60px;
    width: 160px;
    height: 159px;
    background: url(../img/recruit/staff/img-caption-wrap-parts.svg) 0 0 no-repeat;
    background-size: 160px auto;
  }
  .-recruit::after {
    bottom: -145px;
    left: -55px;
    width: 160px;
    height: 174px;
    background: url(../img/top/recruit-parts-B.svg) 0 0 no-repeat;
    background-size: 160px auto;
  }
  .-recruit .com-section-inner {
    position: relative;
  }
  .-recruit .top-main-title-wrap {
    color: #049626;
  }
  .-recruit .top-main-title-wrap .title-B::after {
    background-color: #049626;
  }

  /* link-full-wrap */
  .-recruit .link-full-wrap {
    margin-top: 30px;
  }
  .-recruit .link-full-wrap .link-a-title {
    padding: 13px 18px;
  }
  .-recruit .link-full-wrap a:hover {
    opacity: 1;
  }

  /* links-list-wrap-A */
  .-recruit .links-list-wrap-A {
    margin-top: 30px;
  }
  .-recruit .links-list-wrap-A ul {
    display: block;
  }
  .-recruit .links-list-wrap-A li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .-recruit .links-list-wrap-A li a {
    padding: 30px 30px 30px;
    border-radius: 20px;
    border: solid 5px #049626;
    background-color: #fff;
    position: relative;
  }
  .-recruit .links-list-wrap-A li:last-child {
    margin-bottom: 0;
  }
  .-recruit .links-list-wrap-A li .title-block {
    text-align: left;
  }
  .-recruit .links-list-wrap-A li .text-block {
    margin-top: 30px;
  }
  .-recruit .links-list-wrap-A li a:hover {
    opacity: 1;
  }

  /* links-list-wrap-B */
  .-recruit .links-list-wrap-B {
    margin-top: 30px;
  }
  .-recruit .links-list-wrap-B ul {
    display: block;
  }
  .-recruit .links-list-wrap-B li {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .-recruit .links-list-wrap-B li:last-child {
    margin-top: 10px;
  }
  .-recruit .links-list-wrap-B li a:hover {
    opacity: 1;
  }

  .-recruit .link-full-wrap a,
  .-recruit .links-list-wrap-A li a {
    position: relative;
  }
  .-recruit .link-full-wrap a::after,
  .-recruit .links-list-wrap-A li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: url(../img/top/recruit-arrow.svg) 0 0 no-repeat;
    background-size: 48px auto;
    z-index: 1;
  }
  .-recruit .links-list-wrap-A li a::after {
    bottom: -2px;
    right: -2px;
  }

  .-recruit .com-btn-wrap-gn {
    margin-top: 30px;
    position: static;
    text-align: center;
  }
}

@media screen and (max-width: 321px) {
  .-recruit {
    margin: 60px 0 0;
    padding: 60px 0 60px;
    border-radius: 0;
  }
}

/* -company
============================================================ */
.-company {
  height: 480px;
  background: url(../img/top/company-bg.jpg) center no-repeat;
  background-size: cover;
  margin: 0 40px;
  margin-top: 150px;
  border-radius: 20px;
  padding-top: 124px;
}
.-company .flex-box {
  display: flex;
}
.-company .left-wrap {
  width: 330px;
}
.-company .left-wrap .text {
  line-height: 1.8;
  letter-spacing: 1px;
  color: #fff;
  margin-top: 58px;
}
.-company .right-wrap {
  width: 465px;
  margin-left: auto;
}
.-company .right-wrap .com-btn-wrap-gn {
  margin-top: 0;
}
.-company .right-wrap .sdgs-bn-wrap {
  margin-top: 62px;
}
.-company .right-wrap .sdgs-bn-wrap a:hover {
  opacity: .7;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .-company {
    height: auto;
    background: url(../img/top/company-bg-sp.jpg) center no-repeat;
    background-size: cover;
    margin: 0 20px;
    margin-top: 57px;
    padding: 60px 20px;
  }
  .-company .flex-box {
    display: block;
  }
  .-company .left-wrap {
    width: 100%;
  }
  .-company .left-wrap .text {
    margin-top: 30px;
  }
  .-company .right-wrap {
    width: 100%;
    margin-left: 0;
  }
  .-company .right-wrap .com-btn-wrap-gn {
    margin-top: 48px;
    text-align: center;
  }
  .-company .right-wrap .sdgs-bn-wrap {
    margin-top: 40px;
    text-align: center;
  }
  .-company .right-wrap .sdgs-bn-wrap a:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 321px) {
  .-company {
    height: auto;
    background: url(../img/top/company-bg-sp.jpg) center no-repeat;
    background-size: cover;
    margin: 57px 0 0;
    padding: 60px 20px;
    border-radius: 0;
  }
}

/* offset
============================================================ */
.com-offset-target {
  position: relative;
  top: 30px;
  opacity: 0;
  transition: all .4s ease-in-out;
}
.com-offset-target.js-offset-active {
  top: 0;
  opacity: 1;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1101px) {
  .hoge {
  }
}
