@charset "utf-8";

/***************************************************************************

  共通

***************************************************************************/
#pageIndex a,
#pageIndex a:hover {
  transition: 0.3s;
}
#pageIndex section .wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 100px;
}
#pageIndex .bgWhite {
  background-color: #fff;
}
#pageIndex .bgBlue {
  background-color: #e8eef5;
}
#pageIndex .bgGrade {
  background: linear-gradient(90deg, #146aa1 0%, #023e87 100%);
}

@media screen and (max-width: 767px) {
  #pageIndex section .wrap {
    width: calc(100% - 30px);
    max-width: 100%;
    padding: 45px 0 50px;
  }
}

/*--------------------------------------------------------------------------
  レイアウト
--------------------------------------------------------------------------*/
/* 2カラム */
.layout-col2Wrap {
  display: flex;
  justify-content: space-between;
}
.layout-col2Wrap div.box:last-child {
  width: 700px;
}

@media screen and (max-width: 767px) {
  .layout-col2Wrap {
    display: block;
  }
  .layout-col2Wrap div.box,
  .layout-col2Wrap div.box:last-child {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .layout-col2Wrap div.box:first-child {
    margin: 0;
  }
}


/*--------------------------------------------------------------------------
  見出し
--------------------------------------------------------------------------*/
#pageIndex h2 {
  margin: 0 0 44px 0;
}
#pageIndex h2 span {
  font-family: "Lexend Giga", sans-serif;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
  background: linear-gradient(90deg, #146aa1 0%, #023e87 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#pageIndex h2 small {
  display: block;
  font-size: 1.5rem;
  position: relative;
  margin: 20px 0 0 0;
  padding: 18px 0 0 0;
}
#pageIndex h2 small::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: #023e87;
}

#pageIndex .bgGrade h2 {
  color: #fff;
}
#pageIndex .bgGrade h2 span {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#pageIndex .bgGrade h2 small::before {
  background: #fff;
}

#pageIndex h3 {
  margin: 0 0 40px;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  background: linear-gradient(90deg, #146aa1 0%, #023e87 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#pageIndex .bgGrade h3 {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

@media screen and (max-width: 767px) {
  #pageIndex h2 {
    margin: 0 0 20px;
    text-align: center;
  }
  #pageIndex h2 span {
    font-size: 3.5rem;
  }
  #pageIndex h2 small {
    font-size: 1.3rem;
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
  }
  #pageIndex h2 small::before {
    width: 20px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%); 
  }
  #pageIndex h3 {
    text-align: center;
  }
}


/*--------------------------------------------------------------------------
  リンクボタン（別ページ）
--------------------------------------------------------------------------*/
#pageIndex section a,
#pageIndex section a:hover {
  transition: 0.3s;
}
#pageIndex .companyBlock .btn,
#pageIndex .newsBlock .btn,
#pageIndex .recruitBlock .btn {
  display: flex;
  gap: 0 10px;
  margin: 60px 0 0 0;
}
#pageIndex .companyBlock .btn a,
#pageIndex .newsBlock .btn a,
#pageIndex .recruitBlock .btn a {
  width: 170px;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px 20px;
  display: block;
  border: 1px solid #023e87;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  color: #023e87;
  background: url(/asset/images/arw_blue-right.png) no-repeat right 14px center;
  background-size: 14px auto;
}
#pageIndex .companyBlock .btn a span,
#pageIndex .newsBlock .btn a span,
#pageIndex .recruitBlock .btn a span {
  padding-right: 15px;
}

@media screen and (min-width: 768px) {
  #pageIndex .companyBlock .btn a:hover,
  #pageIndex .newsBlock .btn a:hover,
  #pageIndex .recruitBlock .btn a:hover {
    border: 1px solid #023e87;
    color: #ffffff;
    background: #023e87 url(/asset/images/arw_white-right.png) no-repeat right 14px center;
    background-size: 14px auto;
    box-shadow: 0 0 5px #023e87;
  }
}

@media screen and (max-width: 767px) {
  #pageIndex .companyBlock .btn,
  #pageIndex .newsBlock .btn,
  #pageIndex .recruitBlock .btn {
    margin: 30px 0 0 0;
    justify-content: center;
  }
}


/*--------------------------------------------------------------------------
  写真ブルーマスク
--------------------------------------------------------------------------*/
.filterBlue {
  position: relative;
  display: inline-block;
}

.filterBlue img {
  display: block;
}

.filterBlue::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(2, 62, 135, 0.3); /* 青色の半透明レイヤー */
  pointer-events: none; /* クリックイベントを無効にする */
}

/***************************************************************************

  メインビジュアル

***************************************************************************/
.mainvisualBlock {
  max-width: 1440px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .mainvisualBlock {
    max-width: 100%;
  }
}


/***************************************************************************

  会社情報

***************************************************************************/
#pageIndex .companyBlock .wrap {
  position: relative;
  padding-top: 130px;
}
.companyBlock .wrap::after {
  position: absolute;
  content: "";
  width: 643px;
  height: 374px;
  right: -60px;
  top: 90px;
  background: url(/asset/images/top/bg_company.png) no-repeat right top;
}
.companyBlock .box {
  z-index: 1;
}
.companyBlock .box:last-child {
  margin: 150px 0 0 0;
}
.companyBlock .box:last-child p {
  line-height: 2;
  text-shadow: 0 0 5px rgba(255, 255, 255, 1);
}

@media screen and (max-width: 767px) {
  #pageIndex .companyBlock .wrap {
    padding-top: 45px;
  }
  .companyBlock .wrap::after {
    display: none;
  }
  .companyBlock figure img {
    width: 100vw;
  }
  .companyBlock .box:last-child p {
    line-height: 1.8;
    text-shadow: none;
    margin: 20px 0 0 0;
  }
}


/***************************************************************************

  背景５枚

***************************************************************************/
.bgLineBlock ul {
  width: 100%;
  max-height: 200px;
  margin: auto;
  display: flex;
}
.bgLineBlock ul li {
  width: calc(100% / 5);
}
.bgLineBlock ul li img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .bgLineBlock ul li {
    width: calc(100% / 3);
  }
  .bgLineBlock ul li:nth-child(4),
  .bgLineBlock ul li:nth-child(5) {
    display: none;
  }
}

/***************************************************************************

  事業紹介

***************************************************************************/
.businessBlock .box p {
  line-height: 2;
}
.businessListBlock {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px 0 0 0;
}
.businessListBlock article {
  width: calc(100% / 2 - 20px);
}
.businessListBlock figure img {
  transition: 0.3s;
}
.businessListBlock dl {
  position: relative;
}
.businessListBlock dl dt {
  margin: -40px 0 0 -10px;
  width: calc(100% - 10px);
  font-size: 2rem;
  padding: 12px 20px;
  background: linear-gradient(90deg, #146aa1 0%, #023e87 100%);
  color: #ffffff;
  font-weight: bold;
}
.businessListBlock dl dt span {
  display: block;
  background: url(/asset/images/arw_white-right.png) no-repeat right center / 14px auto;
}
.businessListBlock dl dd {
  padding: 20px 30px 0 20px;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .businessListBlock a,
  .businessListBlock a:hover {
    transition: 0.3s !important;
  }
  .businessListBlock a:hover figure img {
    opacity: 0.7;
    transition: 0.3s;
  }
  .businessListBlock a:hover dl dt {
    background: linear-gradient(90deg, #146aa1 0%, #146aa1 100%);
    transition: 0.3s;
  }
}

@media screen and (max-width: 767px) {
  .businessBlock .wrap {
    width: 100% !important;
  }
  .businessBlock .box p {
    line-height: 1.8;
    width: calc(100% - 30px);
    margin: auto;
  }
  .businessListBlock {
    display: block;
    margin: 40px 0 0 0;
  }
  .businessListBlock article {
    width: 100%;
    margin: 28px 0 0 0;
  }
  .businessListBlock article figure {
    position: relative;
    display: block;
    width: 95vw;
    background: #ffffff;
    z-index: 1;
  }
  .businessListBlock article figure img {
    width: 95vw;
    height: 53vw;
    object-fit: cover;
  }
  .businessListBlock article:nth-child(odd) figure {
    float: right;
  }
  .businessListBlock article figure::before {
    position: absolute;
    content: "";
    width: 90vw;
    height: 45vw;
    right: 10px;
    bottom: 15px;
    box-shadow: 0 0 40px rgba(2, 62, 135, 0.6);
    z-index: -1;
  }
  .businessListBlock dl {
    position: relative;
    clear: both;
    z-index: 1;
  }
  .businessListBlock dl dt {
    margin: -10px 10px 0 10px;
    width: calc(100% - 20px);
    font-size: 1.6rem;
  }
  .businessListBlock dl dt span {
    display: block;
    background: url(/asset/images/arw_white-right.png) no-repeat right center / 14px auto;
  }
  .businessListBlock dl dd {
    font-size: 1.3rem;
    padding: 15px 30px 0 20px;
  }
}


/***************************************************************************

  施工実績

***************************************************************************/
.constructionBlock .box p {
  color: #ffffff;
  letter-spacing: 0;
  line-height: 2;
}

.constListBlock {
  margin: 60px 0 0 0;
  position: relative;
  display: flex;
  gap: 0 1px;
}
.constListBlock::after {
  position: absolute;
  content: "";
  width: 1140px;
  height: 380px;
  right: 10px;
  bottom: 10px;
  box-shadow: 0 0 50px rgba(6, 37, 75, 1);
}
.constListBlock article {
  width: calc(100% / 3);
  padding: 40px;
  background: #ffffff;
  z-index: 1;
}
.constListBlock article a {
  display: block;
}
.constListBlock article .detail {
  margin: 44px 0 0 0;
}
.constListBlock article .detail .tag {
  font-size: 1.4rem;
  padding: 4px 10px;
  letter-spacing: 0;
  background: #e8eef5;
  border-radius: 4px;
}
.constListBlock article .detail .date {
  margin: 10px 0 5px;
  font-size: 1.4rem;
  display: block;
}
.constListBlock article .detail strong {
  font-weight: 500;
  color: #023e87;
}

.constructionBlock .btn {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  margin: 50px 0 0 0;
}
.constructionBlock .btn a {
  width: 170px;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px 20px;
  display: block;
  border: 1px solid #ffffff;
  border-radius: 5px;
  text-align: center;
  color: #ffffff;
  background: url(/asset/images/arw_white-right.png) no-repeat right 14px center;
  background-size: 14px auto;
}
.constructionBlock .btn a span {
  padding-right: 15px;
}

.swiper-pagination {
  bottom: var(--swiper-pagination-bottom,auto) !important;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.swiper-pagination-bullet-active {
  background-color: #023e87;
}

@media screen and (min-width: 768px) {
  .constListBlock article a:hover {
    opacity: 0.7;
  }
  .constructionBlock .btn a:hover {
    color: #023e87;
    background: #ffffff url(/asset/images/arw_blue-right.png) no-repeat right 14px center;
    background-size: 14px auto;
    box-shadow: 0 0 5px #ffffff;
  }
}

@media screen and (max-width: 767px) {
  .constructionBlock .box p {
    line-height: 1.8;
  }
  .constListBlock {
    margin: 30px 0 0 0;
    gap: 0;
  }
  .constListBlock::after {
    width: 325px;
    height: 350px;
    right: 10px;
    bottom: 10px;
  }
  .constListBlock article {
    width: 100%;
    padding: 20px;
  }
  .constListBlock article:nth-child(2),
  .constListBlock article:nth-child(3) {
    display: none;
  }
  .constListBlock article .detail {
    margin: 50px 0 0 0;
  }
  .constructionBlock .btn {
    margin: 30px 0 0 0;
    justify-content: center;
  }
}


/***************************************************************************

  採用情報

***************************************************************************/
.recruitBlock {
  background: #ffffff url(/asset/images/top/bg_recruit.jpg) no-repeat right center / contain !important;
}
.recruitBlock p {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .recruitBlock {
    background: #ffffff url(/asset/images/top/bg_recruit.jpg) no-repeat right top / contain !important;
    padding: 65vw 0 0 0;
  }
  .recruitBlock p {
    line-height: 1.8;
  }
}


/***************************************************************************

  お知らせ

***************************************************************************/
.newsBlock .newsListBox {
  margin: 0 0 50px;
}
.newsBlock .newsListBox ul li {
  border-bottom: 1px solid #ddd;
}
.newsBlock .newsListBox ul li a {
  display: block;
  overflow: hidden;
  padding: 25px 5px;
}
.newsBlock .newsListBox ul li span {
  float: left;
}
.newsBlock .newsListBox ul li .date {
  width: 155px;
}
.newsBlock .newsListBox ul li .category {
  width: 120px;
  text-align: center;
  padding: 2px 0;
  font-size: 1.4rem;
  background-color: #e8eef5;
  border-radius: 4px;
  display: inline-block;
}
.newsBlock .newsListBox ul li .title {
  width: calc(100% - 155px - 120px - 45px);
  margin-left: 45px;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .newsBlock .newsListBox ul li a:hover {
    background-color: #f9f9f9;
  }
}

@media screen and (max-width: 767px) {
  .newsBlock .newsListBox {
    margin: 0 0 30px;
  }
  .newsBlock .newsListBox ul li a {
    padding: 20px 0;
  }
  .newsBlock .newsListBox ul li span {
    float: none;
  }
  .newsBlock .newsListBox ul li .date {
    width: 150px;
    display: inline-block;
  }
  .newsBlock .newsListBox ul li .category {
    width: 100px;
    font-size: 1.2rem;
  }
  .newsBlock .newsListBox ul li .title {
    width: 100%;
    margin: 5px 0 0 0;
    display: block;
  }
  .newsBlock .btn {
    justify-content: center;
  }
}


/***************************************************************************

  お問い合わせ

***************************************************************************/
.contactBox {
  margin: 24px 0 0 0;
  display: flex;
  width: 100%;
  gap: 0 1px;
}
.contactBox dl {
  width: calc(100% / 2);
  padding: 20px;
  text-align: center;
  background: #ffffff;
}
.contactBox dl dt {
  color: #023e87;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.contactBox dl:first-child dd strong {
  font-size: 2.2rem;
  margin: 15px 0 0 0;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.contactBox dl:first-child dd strong span {
  font-size: 2.6rem;
  font-weight: 600;
}
.contactBox dl:last-child dd a {
  width: 240px;
  margin: 12px auto 0;
  padding: 13px 0 13px 30px;
  background: #023e87 url(/asset/images/arw_white-right.png) no-repeat right 12px center / 14px auto;
  color: #ffffff;
  border: 1px solid #023e87;
  font-weight: 500;
  border-radius: 5px;
  display: block;
}
.contactBox dl:last-child dd a span {
  padding-right: 40px;
}

@media screen and (min-width: 768px) {
  .contactBox dl:last-child dd a:hover {
    background: #ffffff url(/asset/images/arw_blue-right.png) no-repeat right 12px center / 14px auto;
    color: #023e87;
    border: 1px solid #023e87;
    box-shadow: 0 0 5px #023e87;
  }
}

@media screen and (max-width: 767px) {
  .contactBlock .box > p {
    text-align: center;
  }
  .contactBox {
    flex-direction: column;
    gap: 2px 0;
  }
  .contactBox dl {
    width: 100%;
    padding: 20px;
    text-align: center;
    background: #ffffff;
  }
  .contactBox dl dt {
    color: #023e87;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
  }
  .contactBox dl:first-child dd strong {
    font-size: 2.2rem;
    margin: 15px 0 0 0;
    font-weight: 600;
    display: block;
    line-height: 1;
  }
  .contactBox dl:first-child dd strong span {
    font-size: 2.6rem;
    font-weight: 600;
  }
  .contactBox dl:last-child dd a {
    width: 240px;
    margin: 12px auto 0;
    padding: 13px 0 13px 30px;
    background: #023e87 url(/asset/images/arw_white-right.png) no-repeat right 12px center / 14px auto;
    color: #ffffff;
    border: 1px solid #023e87;
    font-weight: 500;
    border-radius: 5px;
    display: block;
  }
  .contactBox dl:last-child dd a span {
    padding-right: 40px;
  }
}

