@charset "UTF-8";
/******************************************************************
** 共通設定
******************************************************************/
.topSection {
  position: relative;
}

/******************************************************************
** メインビジュアル
******************************************************************/
.topMv__inner {
  position: relative;
}

.topMv__slideWrap {
  position: relative;
  width: 78.125%;
  height: 800px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1680px) {
  .topMv__slideWrap {
    height: 700px;
  }
}
@media screen and (max-width: 1470px) {
  .topMv__slideWrap {
    height: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .topMv__slideWrap {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .topMv__slideWrap {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .topMv__slideWrap {
    height: 300px;
  }
}

.topMv__slideWrapInner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.topMv__slideWrapInner * {
  height: 100%;
}

.topMv__slideImgWrap img {
  object-fit: cover;
}

.topMv__slideMaterialWrap {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
}

.topMv__slideMaterialWrapImgWrap,
.topMv__slideMaterialWrapImgWrap img {
  height: 100%;
}

.topMv__slideMaterialWrap {
  mix-blend-mode: hard-light;
}
.topMv__slideMaterialWrap img {
  object-fit: cover;
}

.topMv__catchWrap {
  position: absolute;
  left: -5.16em;
  bottom: 0.8em;
  font-family: var(--mincho);
  font-size: 62px;
  line-height: 1;
  z-index: 5;
}
@media screen and (max-width: 1680px) {
  .topMv__catchWrap {
    font-size: 54px;
  }
}
@media screen and (max-width: 1470px) {
  .topMv__catchWrap {
    font-size: 46px;
  }
}
@media screen and (max-width: 1200px) {
  .topMv__catchWrap {
    font-size: 38px;
  }
}
@media screen and (max-width: 1024px) {
  .topMv__catchWrap {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topMv__catchWrap {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .topMv__catchWrap {
    left: -3em;
    font-size: 18px;
  }
}

.topMv__catch {
  font-size: 1em;
  margin: 0;
}

.topMv__catchInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.58em;
}
.topMv__catchInner:last-child {
  margin-bottom: 0;
}

.topMv__catchText {
  letter-spacing: 0.05em;
  display: block;
  padding: 0.31em 0.48em;
  background: -moz-linear-gradient(0% 50% 0deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
  background: -webkit-linear-gradient(0deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
  background: -webkit-gradient(
    linear,
    0% 50%,
    100% 50%,
    color-stop(0, rgb(197, 212, 232)),
    color-stop(0.9954, rgb(255, 255, 255))
  );
  background: -o-linear-gradient(0deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
  background: -ms-linear-gradient(0deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
  background: linear-gradient(90deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
}

/******************************************************************
** メインビジュアル　アニメーション
******************************************************************/
.topMv__slideWrapInner {
  transform-origin: left;
  transition: 0.7s 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.topMv__slideWrapInner.loaded {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.topMv__catchText {
  opacity: 0;
}

.topMv__catchInner {
  position: relative;
  pointer-events: none;
  overflow: hidden;
}
.topMv__catchInner:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: -moz-linear-gradient(0% 50% 0deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
  background: -webkit-linear-gradient(0deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
  background: -webkit-gradient(
    linear,
    0% 50%,
    100% 50%,
    color-stop(0, rgb(197, 212, 232)),
    color-stop(0.9954, rgb(255, 255, 255))
  );
  background: -o-linear-gradient(0deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
  background: -ms-linear-gradient(0deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
  background: linear-gradient(90deg, rgb(197, 212, 232) 0%, rgb(255, 255, 255) 99.54%);
  z-index: 5;
}
.topMv__catchInner.loaded {
  pointer-events: initial;
}
.topMv__catchInner.loaded .topMv__catchText {
  animation: fadein1 0.1s 0.4s;
  animation-fill-mode: both;
}
.topMv__catchInner.loaded:after {
  animation:
    OverlayIn 0.4s 0s cubic-bezier(0.77, 0, 0.175, 1),
    OverlayOut 0.4s 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: both;
}

@keyframes fadein1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes OverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes OverlayOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(102%);
  }
}
/******************************************************************
** おすすめ情報
******************************************************************/
.topSectionPickup {
  padding-top: 60px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .topSectionPickup {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  .topSectionPickup {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .topSectionPickup {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

.slideSectionPickup {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .slideSectionPickup {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .slideSectionPickup {
    margin-top: 20px;
  }
}
.slideSectionPickup .splide__slide.is-active .slideSectionPickup__imgWrap {
  border-color: var(--color-navy1);
}
.slideSectionPickup .splide__arrow {
  font-size: 16px;
  background: var(--color-navy1);
  border-radius: 50%;
  opacity: 1;
  width: 3.125em;
  height: 3.125em;
  z-index: 5;
  transition: var(--transition1);
}
.slideSectionPickup .splide__arrow svg {
  display: none !important;
}
.slideSectionPickup .splide__arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1.875em;
  height: 1.875em;
}
@media screen and (min-width: 1025px) {
  .slideSectionPickup .splide__arrow:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .slideSectionPickup .splide__arrow {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .slideSectionPickup .splide__arrow {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .slideSectionPickup .splide__arrow {
    font-size: 10px;
  }
}
.slideSectionPickup .splide__arrow--prev {
  left: 9.375%;
}
.slideSectionPickup .splide__arrow--prev:before {
  background: transparent url(../img/common/icon_arrow_left_white.svg) no-repeat center center/contain;
}
@media screen and (max-width: 1024px) {
  .slideSectionPickup .splide__arrow--prev {
    left: 15px;
  }
}
.slideSectionPickup .splide__arrow--next {
  right: 9.375%;
}
.slideSectionPickup .splide__arrow--next:before {
  background: transparent url(../img/common/icon_arrow_right_white.svg) no-repeat center center/contain;
}
@media screen and (max-width: 1024px) {
  .slideSectionPickup .splide__arrow--next {
    right: 15px;
  }
}

.slideSectionPickup__bnr {
  text-decoration: none;
  display: block;
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  .slideSectionPickup__bnr:hover {
    opacity: 0.7;
  }
}

.slideSectionPickup__imgWrap {
  border: 2px solid transparent;
}
.slideSectionPickup__imgWrap:before {
  content: "";
  display: block;
  padding-top: 66.6667%;
}
.slideSectionPickup__imgWrap img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}

.slideSectionPickup__bnrTtl {
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 0.6em;
  padding-left: 0.1em;
  display: block;
}
@media screen and (max-width: 768px) {
  .slideSectionPickup__bnrTtl {
    font-size: 14px;
  }
}

/******************************************************************
** 新着情報
******************************************************************/
.topSectionNews {
  background: var(--color-gray1);
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .topSectionNews {
    padding: 80px 0;
  }
}
@media screen and (max-width: 480px) {
  .topSectionNews {
    padding: 60px 0;
  }
}

@media screen and (min-width: 1025px) {
  .topSectionNews__row.row > .col-1,
  .topSectionNews__row.row > .col-2,
  .topSectionNews__row.row > .col-3,
  .topSectionNews__row.row > .col-4,
  .topSectionNews__row.row > .col-5,
  .topSectionNews__row.row > .col-6 {
    margin: 0 40px;
  }
  .topSectionNews__row.row > .col-1:first-child,
  .topSectionNews__row.row > .col-2:first-child,
  .topSectionNews__row.row > .col-3:first-child,
  .topSectionNews__row.row > .col-4:first-child,
  .topSectionNews__row.row > .col-5:first-child,
  .topSectionNews__row.row > .col-6:first-child {
    margin-left: 0 !important;
  }
  .topSectionNews__row.row > .col-1:last-child,
  .topSectionNews__row.row > .col-2:last-child,
  .topSectionNews__row.row > .col-3:last-child,
  .topSectionNews__row.row > .col-4:last-child,
  .topSectionNews__row.row > .col-5:last-child,
  .topSectionNews__row.row > .col-6:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .topSectionNews__row.row {
    -webkit-flex-wrap: initial;
    -ms-flex-wrap: initial;
    flex-wrap: initial;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .topSectionNews__row.row > .col-1,
  .topSectionNews__row.row > .col-2,
  .topSectionNews__row.row > .col-3,
  .topSectionNews__row.row > .col-4,
  .topSectionNews__row.row > .col-5,
  .topSectionNews__row.row > .col-6 {
    margin: 0;
  }
}

@media screen and (min-width: 1025px) {
  .NewsTabSection__headingSection {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    gap: 3em;
  }
}

.NewsTabSection__btnWrap {
  font-size: 18px;
  padding: 1.05em 0.5em;
  border-radius: 1.11111111em;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .NewsTabSection__btnWrap {
    margin-top: auto;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .NewsTabSection__btnWrap {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .NewsTabSection__btnWrap {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 768px) {
  .NewsTabSection__btnWrap {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .NewsTabSection__btnWrap {
    font-size: 12px;
  }
}

.NewsTabSection__btnList {
  font-size: 1em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.NewsTabSection__btnListItem {
  margin: 0 0.7em;
}
.NewsTabSection__btnListItem:first-child {
  margin-left: 0;
}
.NewsTabSection__btnListItem:last-child {
  margin-right: 0;
}

.NewsTabSection__btn {
  position: relative;
  text-align: center;
  letter-spacing: 0.05em;
  display: block;
  padding: 0.2em 0;
  transition: var(--transition1);
}
.NewsTabSection__btn:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-navy1);
  transition: var(--transition1);
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .NewsTabSection__btn:hover {
    opacity: 0.7;
  }
}

.NewsTabSection__ArticleWrap {
  display: none;
}

.NewsTabInput {
  display: none;
}
.NewsTabInput#catAll:checked ~ .NewsTabSection #tabBtnAll:after,
.NewsTabInput#catNews:checked ~ .NewsTabSection #tabBtnNews:after,
.NewsTabInput#catBlog:checked ~ .NewsTabSection #tabBtnBlog:after,
.NewsTabInput#catEvent:checked ~ .NewsTabSection #tabBtnEvent:after {
  opacity: 1;
}
.NewsTabInput#catAll:checked ~ .NewsTabSection #ArticleWrapAll,
.NewsTabInput#catNews:checked ~ .NewsTabSection #ArticleWrapNews,
.NewsTabInput#catBlog:checked ~ .NewsTabSection #ArticleWrapBlog,
.NewsTabInput#catEvent:checked ~ .NewsTabSection #ArticleWrapEvent {
  display: block;
}

/******************************************************************
** 採用情報
******************************************************************/
.topSectionRecruit {
  background: var(--color-navy1);
  padding-top: 60px;
  padding-bottom: 130px;
}
@media screen and (max-width: 480px) {
  .topSectionRecruit {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

.topSectionRecruit__row.row {
  margin-top: 45px;
}
@media screen and (min-width: 769px) {
  .topSectionRecruit__row.row > .col-1,
  .topSectionRecruit__row.row > .col-2,
  .topSectionRecruit__row.row > .col-3,
  .topSectionRecruit__row.row > .col-4,
  .topSectionRecruit__row.row > .col-5,
  .topSectionRecruit__row.row > .col-6 {
    margin: 0 15px;
  }
  .topSectionRecruit__row.row > .col-1:first-child,
  .topSectionRecruit__row.row > .col-2:first-child,
  .topSectionRecruit__row.row > .col-3:first-child,
  .topSectionRecruit__row.row > .col-4:first-child,
  .topSectionRecruit__row.row > .col-5:first-child,
  .topSectionRecruit__row.row > .col-6:first-child {
    margin-left: 0 !important;
  }
  .topSectionRecruit__row.row > .col-1:last-child,
  .topSectionRecruit__row.row > .col-2:last-child,
  .topSectionRecruit__row.row > .col-3:last-child,
  .topSectionRecruit__row.row > .col-4:last-child,
  .topSectionRecruit__row.row > .col-5:last-child,
  .topSectionRecruit__row.row > .col-6:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .topSectionRecruit__row.row {
    margin-top: 35px;
  }
}
@media screen and (max-width: 480px) {
  .topSectionRecruit__row.row {
    margin-top: 25px;
  }
}

.topSectionRecruit__catch {
  font-family: var(--mincho);
  font-size: 58px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
  .topSectionRecruit__catch {
    font-size: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .topSectionRecruit__catch {
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  .topSectionRecruit__catch {
    margin-bottom: 0.8em;
  }
}
@media screen and (max-width: 480px) {
  .topSectionRecruit__catch {
    font-size: 30px;
  }
}

@media screen and (min-width: 769px) {
  .topSectionRecruit__btnSection {
    padding-top: 25px;
  }
}

/******************************************************************
** 事業部案内
******************************************************************/
.topSectionDivisions {
  margin-top: -50px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .topSectionDivisions {
    padding-bottom: 65px;
  }
}
@media screen and (max-width: 768px) {
  .topSectionDivisions {
    margin-top: -40px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .topSectionDivisions {
    margin-top: -30px;
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 769px) {
  .topSectionDivisions__row.row > .col-1,
  .topSectionDivisions__row.row > .col-2,
  .topSectionDivisions__row.row > .col-3,
  .topSectionDivisions__row.row > .col-4,
  .topSectionDivisions__row.row > .col-5,
  .topSectionDivisions__row.row > .col-6 {
    margin: 0 20px;
  }
  .topSectionDivisions__row.row > .col-1:first-child,
  .topSectionDivisions__row.row > .col-2:first-child,
  .topSectionDivisions__row.row > .col-3:first-child,
  .topSectionDivisions__row.row > .col-4:first-child,
  .topSectionDivisions__row.row > .col-5:first-child,
  .topSectionDivisions__row.row > .col-6:first-child {
    margin-left: 0 !important;
  }
  .topSectionDivisions__row.row > .col-1:last-child,
  .topSectionDivisions__row.row > .col-2:last-child,
  .topSectionDivisions__row.row > .col-3:last-child,
  .topSectionDivisions__row.row > .col-4:last-child,
  .topSectionDivisions__row.row > .col-5:last-child,
  .topSectionDivisions__row.row > .col-6:last-child {
    margin-right: 0 !important;
  }
}

.topSectionDivisions__inner {
  position: relative;
}

.topSectionDivisions__inner01 {
  padding-top: 475px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .topSectionDivisions__inner01 {
    padding-top: 375px;
  }
}
@media screen and (max-width: 768px) {
  .topSectionDivisions__inner01 {
    padding-top: 315px;
  }
}
@media screen and (max-width: 480px) {
  .topSectionDivisions__inner01 {
    padding-top: 260px;
  }
}

@media screen and (min-width: 769px) {
  .topSectionDivisions__inner02 {
    height: 100%;
  }
}

.topSectionDivisions__sectionImgWrap {
  position: absolute;
  overflow: hidden;
  width: calc(50vw - 50px);
}

.topSectionDivisions__sectionImgWrap01 {
  top: 0;
  right: 30px;
  height: 400px;
  clip-path: polygon(100% 0, 89% 100%, 0 100%, 0 0);
}
@media screen and (max-width: 1470px) {
  .topSectionDivisions__sectionImgWrap01 {
    left: -13vw;
    right: initial;
    width: 90vw;
    height: 350px;
  }
}
@media screen and (max-width: 1300px) {
  .topSectionDivisions__sectionImgWrap01 {
    left: -8vw;
  }
}
@media screen and (max-width: 1200px) {
  .topSectionDivisions__sectionImgWrap01 {
    left: -5vw;
  }
}
@media screen and (max-width: 1024px) {
  .topSectionDivisions__sectionImgWrap01 {
    width: 90vw;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .topSectionDivisions__sectionImgWrap01 {
    height: 250px;
  }
}
@media screen and (max-width: 480px) {
  .topSectionDivisions__sectionImgWrap01 {
    height: 200px;
  }
}

.topSectionDivisions__sectionImgWrap02 {
  bottom: 0;
  left: 30px;
  height: 640px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 18% 0);
}
@media screen and (max-width: 1470px) {
  .topSectionDivisions__sectionImgWrap02 {
    left: 15px;
    width: calc(50vw - 40px);
    height: 480px;
  }
}
@media screen and (max-width: 1024px) {
  .topSectionDivisions__sectionImgWrap02 {
    left: 0;
    width: calc(50vw - 25px);
    height: 320px;
  }
}
@media screen and (max-width: 768px) {
  .topSectionDivisions__sectionImgWrap02 {
    position: relative;
    left: -2vw;
    width: 95vw;
    height: 250px;
  }
}
@media screen and (max-width: 480px) {
  .topSectionDivisions__sectionImgWrap02 {
    height: 200px;
  }
}

.topSectionDivisions__sectionImgWrapInner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.topSectionDivisions__sectionImgWrapInner img {
  height: 100%;
  object-fit: cover;
}

.topSectionDivisions__listWrap {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .topSectionDivisions__listWrap {
    margin-top: 50px;
  }
}

/******************************************************************
** 会社案内
******************************************************************/
.topSectionCorporate {
  padding-top: 90px;
  padding-bottom: 380px;
}
@media screen and (max-width: 1024px) {
  .topSectionCorporate {
    padding-top: 65px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .topSectionCorporate {
    padding-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  .topSectionCorporate {
    padding-top: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .topSectionCorporate__row.row > .col-1,
  .topSectionCorporate__row.row > .col-2,
  .topSectionCorporate__row.row > .col-3,
  .topSectionCorporate__row.row > .col-4,
  .topSectionCorporate__row.row > .col-5,
  .topSectionCorporate__row.row > .col-6 {
    margin: 0 15px;
  }
  .topSectionCorporate__row.row > .col-1:first-child,
  .topSectionCorporate__row.row > .col-2:first-child,
  .topSectionCorporate__row.row > .col-3:first-child,
  .topSectionCorporate__row.row > .col-4:first-child,
  .topSectionCorporate__row.row > .col-5:first-child,
  .topSectionCorporate__row.row > .col-6:first-child {
    margin-left: 0 !important;
  }
  .topSectionCorporate__row.row > .col-1:last-child,
  .topSectionCorporate__row.row > .col-2:last-child,
  .topSectionCorporate__row.row > .col-3:last-child,
  .topSectionCorporate__row.row > .col-4:last-child,
  .topSectionCorporate__row.row > .col-5:last-child,
  .topSectionCorporate__row.row > .col-6:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .topSectionCorporate__row.row {
    -webkit-flex-wrap: initial;
    -ms-flex-wrap: initial;
    flex-wrap: initial;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .topSectionCorporate__row.row > .col-1,
  .topSectionCorporate__row.row > .col-2,
  .topSectionCorporate__row.row > .col-3,
  .topSectionCorporate__row.row > .col-4,
  .topSectionCorporate__row.row > .col-5,
  .topSectionCorporate__row.row > .col-6 {
    margin: 0;
  }
}

.topSectionCorporate__catch {
  font-family: var(--mincho);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 1em;
}
@media screen and (max-width: 1200px) {
  .topSectionCorporate__catch {
    font-size: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .topSectionCorporate__catch {
    font-size: 44px;
    margin-bottom: 0.8em;
  }
}
@media screen and (max-width: 480px) {
  .topSectionCorporate__catch {
    font-size: 30px;
  }
}

.topSectionCorporate__sectionImgWrap {
  overflow: hidden;
  width: 47.4%;
  height: 400px;
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0% 100%);
}
@media screen and (min-width: 1025px) {
  .topSectionCorporate__sectionImgWrap {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .topSectionCorporate__sectionImgWrap {
    position: relative;
    width: 95%;
    height: 300px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .topSectionCorporate__sectionImgWrap {
    height: 250px;
  }
}
@media screen and (max-width: 480px) {
  .topSectionCorporate__sectionImgWrap {
    height: 200px;
  }
}

.topSectionCorporate__sectionImgWrapInner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.topSectionCorporate__sectionImgWrapInner img {
  height: 100%;
  object-fit: cover;
}

/******************************************************************
** 施工実績
******************************************************************/
.topSectionWorks {
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .topSectionWorks {
    padding-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .topSectionWorks {
    padding-top: 70px;
  }
}

.slideSectionWorks .splide__slide {
  border: none !important;
}

.slideSectionWorks01 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .slideSectionWorks01 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .slideSectionWorks01 {
    margin-top: 20px;
  }
}

.slideSectionWorks02 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .slideSectionWorks02 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .slideSectionWorks02 {
    margin-top: 5px;
  }
}

.slideSectionWorks__bnr {
  position: relative;
  text-decoration: none;
  display: block;
  transition: var(--transition1);
}
@media screen and (min-width: 1025px) {
  .slideSectionWorks__bnr:hover .slideSectionWorks__bnrInner {
    opacity: 1;
  }
  .slideSectionWorks__bnr:hover .slideSectionWorks__bnrTtl {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.slideSectionWorks__imgWrap:before {
  content: "";
  display: block;
  padding-top: 66.6667%;
}
.slideSectionWorks__imgWrap img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}

.slideSectionWorks__bnrInner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(37, 30, 28, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  transition: var(--transition1);
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .slideSectionWorks__bnrInner {
    background: rgba(0, 0, 0, 0.15);
    opacity: 1;
  }
}

.slideSectionWorks__bnrTtl {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 0.05em;
  display: block;
  transition: var(--transition1);
  transform: translate(0, 0.4em);
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .slideSectionWorks__bnrTtl {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .slideSectionWorks__bnrTtl {
    font-size: 16px;
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  .slideSectionWorks__bnrTtl {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .slideSectionWorks__bnrTtl {
    font-size: 12px;
  }
}
