@charset "utf-8";
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  padding-top: 10rem;
}
.mv-page__image {
  position: relative;
}
.mv-page__item {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-5%, -50%);
  height: min(80%, 29.5rem);
  width: min(55%, 73.5rem);
  margin: 0 auto;
}
/* 枠 */
.mv-page__item::before, .mv-page__item::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10rem;
  height: 10rem;
}
.mv-page__item::before {
  top: 0;
  left: 0;
  border-left: solid 3rem #ff6d00;
  border-top: solid 3rem #ff6d00;
}
.mv-page__item::after {
  bottom: 0;
  right: 0;
  border-right: solid 3rem #ff6d00;
  border-bottom: solid 3rem #ff6d00;
}
/* TITLE */
.mv-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(100%, 29.5rem);
}
.mv-title h2 {
  color: #000;
  font-size: clamp(3.2rem, 3vw, 5rem);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
.mv-title h2 span {
  margin: 0 0 3rem 2.5rem;
  padding-left: 2.5rem;
  border-left: 1px solid #000;
  color: #164186;
  font-family: "Lexend", sans-serif;
  font-size: clamp(4rem, 3vw, 6.2rem);
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .mv-page__item {
    height: min(50%, 29.5rem);
  }
  .mv-page__item::before, .mv-page__item::after {
    width: 5rem;
    height: 5rem;
  }
  .mv-page__item::before {
    border-left-width: 1.5rem;
    border-top-width: 1.5rem;
  }
  .mv-page__item::after {
    border-right-width: 1.5rem;
    border-bottom-width: 1.5rem;
  }
  .mv-title {
    width: 90%;
    margin: 0 auto;
    padding: 3.5rem 0;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .mv-page__item {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    height: min(80%, 20.5rem);
    width: max(33rem, 75%);
  }
  .mv-title {
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 5rem 0;
  }
  .mv-title h2 {
    font-size: 3.2rem;
    text-align: center;
  }
  .mv-title h2 span {
    display: block;
    margin: 1.5rem 0 3rem;
    padding: 1rem 0 0;
    border-left: none;
    border-top: 1px solid #000;
    font-size: 4rem;
    text-align: center;
  }
}
/* Page Title
----------------------------------------------------------------------------------------------------*/
.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10rem;
  background: linear-gradient(-90deg, rgba(0, 9, 23, 1) 0%, rgba(22, 65, 134, 1) 100%);
}
.page-title h3 {
  color: #FFF;
  font-size: clamp(2.8rem, 3vw, 4.2rem);
  font-weight: 700;
}
/* Page Container
----------------------------------------------------------------------------------------------------*/
.container {
  width: 100%;
}
.contents {
  width: min(90%, 151rem);
  margin: 0 auto;
  text-align: left;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
/* TOP
----------------------------------------------------------------------------------------------------*/
.p-business {
  position: relative;
  z-index: 0;
  width: 100%;
  padding: 20rem 0 18rem;
  overflow: hidden;
}
.p-business::after {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url("../business/img/img_business-back-pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  content: "";
  top: 0;
  left: 0;
  pointer-events: none;
}
.p-business-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9rem;
  z-index: 1;
}
.p-business-item:last-child {
  margin-bottom: 0;
}
/* 左側：画像部分（886px / 1510px） */
.p-business-item__image {
  width: calc(886 / 1510 * 100%);
}
.p-business-item__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* 右側：文章部分（580px / 1510px） */
.p-business-item__body {
  width: calc(580 / 1510 * 100%);
  z-index: 3;
}
.p-business-item__title {
  margin-bottom: 3.5rem;
  color: #164186;
  line-height: 1.3;
  font-size: 4.2rem;
  font-weight: 700;
}
/* 本文 P */
.p-business-item__text {
  margin-bottom: 4.5rem;
  text-align: justify;
  line-height: 1.7;
  font-size: 2.8rem;
}
/* 詳しく見るボタン */
.p-business-item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  width: 14rem;
  height: 4rem;
  border: 1px solid #000;
  border-radius: 2rem;
  color: #000;
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s;
}
.p-business-item__link:hover {
  background-color: #000;
  color: #fff;
}
/*　変更　*/
.p-business-item__title {
  font-size: 3.6rem;
  margin: 0 0 1.4rem 0;
}
.p-business-item__text {
  font-size: 2.0rem;
  font-weight: 500;
}
/* end */
/* MOBILE */
@media screen and (max-width: 767px) {
  .p-business {
    padding: 6.5rem 0 9rem;
  }
  .p-business::after {
    background-image: url("../business/img/img_business-back-sp.png");
  }
  .p-business-item {
    flex-direction: column;
    /* 縦並びに */
    margin-bottom: 7.6rem;
  }
  .p-business-item__image, .p-business-item__body {
    width: 100%;
    /* 全幅に */
  }
  .p-business-item__image {
    margin-bottom: 2.5rem;
  }
  .p-business-item__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .p-business-item__text {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
}
/* --- 共通下部カードナビゲーション  --- */
.c-card-nav {
  z-index: 2;
  display: flex;
  width: 100%;
  margin-bottom: 16.5rem;
}
.c-card-s {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-end;
  height: 28rem;
  margin-bottom: 18rem;
  padding: 2rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  overflow: hidden;
}
/* --- 背景画像レイヤー --- */
.c-card-s::before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-size: cover;
  background-position: center;
  background-color: #000;
  opacity: 1;
  transition: opacity 0.3s;
}
/* ホバー時に画像だけを透過させる */
.c-card-s:hover::before {
  opacity: 0.5;
}
/* 各背景画像の指定（::before に対してかける） */
.-pilotboat::before {
  background-image: url('../business/img/img_c-card-pilotboat.jpg');
}
.-facility::before {
  background-image: url('../business/img/img_c-card-facility.jpg');
}
.-outsourcing::before {
  background-image: url('../business/img/img_c-card-outsourcing.jpg');
}
/* --- 白い枠（内側のシャドウ） --- */
.c-card-s::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: inset 0 0 0 2rem rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
/* --- コンテンツ（文字・リンク） --- */
.c-card-s__content {
  position: relative;
  z-index: 3;
  /* 一番上に配置 */
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}
/* 無効状態の設定 */
.c-card-s.disable {
  pointer-events: none;
}
.c-card-s.disable::before {
  opacity: 1;
  /* 画像を透過させない */
}
/* disable時の青いオーバーレイ */
.c-card-s.disable::after {
  background: rgba(22, 65, 134, .5);
  box-shadow: inset 0 0 0 2rem rgba(255, 255, 255, 0.5);
}
.c-card-s__title {
  margin: 0 auto 3rem;
  font-size: 2.0rem;
  font-weight: 700;
}
.c-card-s__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 14rem;
  height: 4rem;
  border: 1px solid #fff;
  border-radius: 2rem;
  font-size: 1.8rem;
}
/*　変更　*/
.c-card-s__content {
  font-size: 2.8rem;
  font-weight: 700;
}
/* end */
/* TABLET */
@media screen and (max-width: 1023px) {
  .c-card-nav {
    flex-direction: column;
    margin-bottom: 8rem;
  }
  .c-card-s {
    flex: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 17rem;
    margin-bottom: 0px;
    background-color: #000;
  }
  /* 背景画像を薄くして黒を透けさせる（真ん中を黒くする効果） */
  .c-card-s::before {
    opacity: 0.6;
  }
  /* 外枠の白いボーダーを維持し、青い背景を解除する */
  .c-card-s::after {
    box-shadow: inset 0 0 0 2rem rgba(255, 255, 255, 0.5);
    background: transparent;
  }
  /* disable時も通常時と同じ見た目にする */
  .c-card-s.disable {
    pointer-events: none;
  }
  .c-card-s.disable::before {
    opacity: 0.6;
  }
  .c-card-s.disable::after {
    background: transparent;
    box-shadow: inset 0 0 0 2rem rgba(255, 255, 255, 0.5);
  }
  .c-card-s__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0;
    padding: 0;
  }
  .c-card-s__title {
    margin: 0;
  }
}
/* Pilot boat
----------------------------------------------------------------------------------------------------*/
.p-pilotboat .contents {
  padding: 20rem 0 24.7rem;
}
.p-pilotboat__intro {
  margin-bottom: 17rem;
  line-height: 1.7;
  font-size: 3.2rem;
  font-weight: 500;
  color: #164186;
}
.p-pilotboat__section {
  margin-bottom: 9rem;
}
.p-pilotboat__section:last-of-type {
  margin-bottom: 0;
}
.p-pilotboat__sub-title {
  position: relative;
  margin-bottom: 7.3rem;
  padding-bottom: 3rem;
  font-size: 4.2rem;
  font-weight: 700;
}
.p-pilotboat__sub-title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #c1272d;
}
.p-pilotboat__sub-title::before {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 100%;
  width: 1.7rem;
  height: 2.9rem;
  content: "";
  background-color: #c1272d;
  transform: skewX(45deg);
  transform-origin: top left;
}
.p-pilotboat__flex {
  display: flex;
  justify-content: space-between;
}
.p-pilotboat__flex--mb {
  margin-bottom: 7rem;
}
.p-pilotboat__image {
  width: calc(580 / 1200 * 100%);
}
.p-pilotboat__body {
  width: calc(583 / 1200 * 100%);
}
.p-pilotboat__text {
  line-height: 1.7;
  text-align: justify;
  font-size: 2.8rem;
}
.p-pilotboat__gallery-images {
  display: flex;
  margin-bottom: 4rem;
}
.p-pilotboat__gallery-text {
  margin-bottom: 4rem;
  line-height: 1.7;
  font-size: 2.0rem;
}
.p-pilotboat__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 4rem;
  margin-left: auto;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 2rem;
  font-size: 1.8rem;
  color: #000;
  transition: all 0.3s;
}
.p-pilotboat__btn:hover {
  background-color: #000;
  color: #fff;
}
/*　変更　*/
.p-pilotboat__intro {
  font-size: 2.8rem;
  font-weight: 700;
}
.p-pilotboat__sub-title {
  font-size: 3.6rem;
}
.p-pilotboat__text, .p-pilotboat__gallery-text {
  font-size: 2.0rem;
  font-weight: 500;
}
.p-pilotboat__flex--mb {
  margin: 0 0 5rem 0;
}
/* end */
/* MOBILE */
@media screen and (max-width: 767px) {
  .p-pilotboat .contents {
    padding: 8rem 0 13.6rem;
  }
  .p-pilotboat__intro {
    margin-bottom: 8rem;
    font-size: 2.0rem;
  }
  .p-pilotboat__sub-title {
    margin-bottom: 5rem;
    font-size: 2.8rem;
  }
  .p-pilotboat__flex {
    flex-direction: column;
  }
  .p-pilotboat__flex--mb {
    margin-bottom: 3rem;
  }
  .p-pilotboat__image, .p-pilotboat__body {
    width: 100%;
  }
  .p-pilotboat__image {
    margin-bottom: 3rem;
  }
  .p-pilotboat__text {
    font-size: 1.8rem;
  }
  .p-pilotboat__gallery-text {
    margin-bottom: 3rem;
    font-size: 1.8rem;
  }
  .p-pilotboat__gallery-images {
    flex-direction: column;
    margin-bottom: 1.8rem;
  }
}
/* Facility
----------------------------------------------------------------------------------------------------*/
.p-facility .contents {
  padding: 20rem 0 19rem;
}
.p-facility__intro {
  margin-bottom: 17rem;
  line-height: 1.7;
  font-size: 3.2rem;
  font-weight: 500;
  color: #164186;
}
.p-facility__section {
  margin-bottom: 14rem;
}
.p-facility__section:last-of-type {
  margin-bottom: 0;
}
.p-facility__body--full {
  width: 100%;
  margin-bottom: 4rem;
}
.p-facility__sub-title {
  position: relative;
  margin-bottom: 7.3rem;
  padding-bottom: 3rem;
  font-size: 4.2rem;
  font-weight: 700;
}
.p-facility__sub-title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #c1272d;
}
.p-facility__sub-title::before {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 100%;
  width: 1.7rem;
  height: 2.9rem;
  content: "";
  background-color: #c1272d;
  transform: skewX(45deg);
  transform-origin: top left;
}
.p-facility__body--full {
  width: 100%;
  margin-bottom: 4rem;
}
.p-facility__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-facility__image {
  width: calc(580 / 1200 * 100%);
}
.p-facility__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-facility__body {
  width: calc(583 / 1200 * 100%);
}
/* テキスト共通 */
.p-facility__text {
  text-align: justify;
  line-height: 1.7;
  font-size: 2.8rem;
}
.p-facility__gallery-images {
  display: flex;
  margin-top: 4rem;
}
/*　変更　*/
.p-facility__intro {
  font-size: 2.8rem;
  font-weight: 700;
}
.p-facility__sub-title {
  font-size: 3.6rem;
}
.p-facility__text {
  font-size: 2.0rem;
  font-weight: 500;
}
/* end */
/* MOBILE */
@media screen and (max-width: 767px) {
  .p-facility .contents {
    padding: 10rem 0 12.7rem;
  }
  .p-facility__intro {
    font-size: 2.0rem;
    margin-bottom: 8rem;
  }
  .p-facility__sub-title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  .p-facility__flex {
    flex-direction: column;
    gap: 3rem;
  }
  .p-facility__image, .p-facility__body, .p-facility__body--full {
    width: 100%;
  }
  .p-facility__text {
    font-size: 1.8rem;
  }
  .p-facility__gallery-images {
    flex-direction: column;
  }
}
/* Outosourcing
----------------------------------------------------------------------------------------------------*/
.p-outsourcing .contents {
  padding: 20rem 0;
}
.p-outsourcing__intro {
  margin-bottom: 9rem;
  text-align: justify;
  line-height: 1.7;
  font-size: 3.2rem;
  font-weight: 500;
  color: #164186;
}
.p-outsourcing__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 4rem;
  margin-left: auto;
  margin-bottom: 7.7rem;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 2rem;
  font-size: 1.8rem;
  color: #000;
  transition: all 0.3s;
}
.p-outsourcing__btn:hover {
  background-color: #000;
  color: #fff;
}
.p-outsourcing__img {
  width: 100%;
}
/*　変更　*/
.p-outsourcing__intro {
  font-size: 2.8rem;
  font-weight: 700;
}
.p-outsourcing__sub-title {
  font-size: 3.6rem;
}
.p-outsourcing__text {
  font-size: 2.0rem;
  font-weight: 500;
}
/* end */
/* MOBILE */
@media screen and (max-width: 767px) {
  .p-outsourcing .contents {
    padding: 8rem 0 12rem;
  }
  .p-outsourcing__intro {
    margin-bottom: 5rem;
    font-size: 2.0rem;
  }
  .p-outsourcing__btn {
    margin-bottom: 5.3rem;
  }
}