@charset "utf-8";
/* CSS Document - ABOUT PAGE */

/*================================
下層コンテンツ幅
================================*/
main .container {
  max-width: 1024px;
}

/*================================
MV
================================*/
.abt_mv {
  margin-top: 100px;
  position: relative;
  height: 650px;
  overflow: hidden;
  z-index: 1;
}
.abt_mv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.abt_mv_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 白キャッチボックス：コンテナ左端に揃える */
.abt_mv_catch {
  position: absolute;
  top: 50%;
  left: max(20px, calc(50% - 600px));
  transform: translateY(-50%);
  background-color: var(--white);
  padding: 50px 60px;
  z-index: 2;
}
.abt_mv_catch p {
  color: var(--navy);
  font-size: 46px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -1px;
  margin-bottom: 0;
}

/* ページ中央を起点に右寄せタイトルエリア */
.abt_mv_ttl_area {
  position: absolute;
  left: 50%;
  bottom: 10%;
  z-index: 3;
  color: var(--white);
}
.abt_mv_ttl {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 15px;
}
.abt_mv_ttl em {
  font-style: italic;
}
.abt_mv_sub {
  font-size: 25px;
  letter-spacing: 4px;
}

/*================================
共通：白色バリアント（青背景セクション内）
================================*/
.sect_en_ttl.white {
  color: var(--white);
}
.sect_line.white {
  background-color: var(--white);
}
.sect_ja_ttl.white {
  color: var(--white);
}

/*================================
共通：リード文
================================*/
.abt_lead {
  text-align: center;
  padding: 100px 0 160px;
}
.abt_lead p,
.abt_lead h1 {
  font-size: 38px;
  line-height: 1.9;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 0;
}

/* 白背景セクション用リード（PROCESSとFISH REEFで使用） */
.abt_lead_dark {
  padding: 60px 0 30px;
}
.abt_lead_dark p,
.abt_lead_dark h1 {
  color: #076fb3;
}

/*================================
共通：画像＋テキスト横並びブロック
================================*/
.abt_content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 90px;
}
.abt_content_photo {
  flex: 0 0 50%;
  overflow: hidden;
}
.abt_content_photo img {
  width: 100%;
  height: auto;
  display: block;
}
.abt_content_text {
  flex: 1;
}
.abt_content_text p {
  font-size: 16px;
  line-height: 2.2;
  color: var(--white);
  margin-bottom: 0;
}

/*================================
ABOUT（青背景）
================================*/
.abt_about {
  background-color: var(--blue);
  color: var(--white);
  padding: 120px 0 150px;
}

/* 事業紹介 3カラム */
.abt_business {
  margin-top: 60px;
}
.abt_business_item {
  padding: 0 10px;
}
.abt_business_item h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.abt_business_item p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 0;
}

/*================================
PROCESS（白背景）
================================*/
.abt_process {
  background-color: var(--white);
  padding: 160px 0;
}

/* 白背景セクション内のテキストは暗色 */
.abt_process .abt_content_text p,
.abt_reef .abt_content_text p {
  color: var(--text);
}

/* プロセス循環図（画像）
--------------------------------*/
.abt_diagram {
  text-align: center;
  padding: 60px 0 80px;
}
.abt_diagram img {
  max-width: 740px;
  width: 100%;
  height: auto;
}

/* プロセスステップ
--------------------------------*/
.abt_steps {
  padding: 40px 30px 110px;
  max-width: 1300px;
  margin: 0 auto;
}
.abt_steps .row {
  --bs-gutter-x: 0;
}
.abt_steps .col-md-3 {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
/* カラム間の縦区切り線（PCのみ） */
@media (min-width: 768px) {
  .abt_steps .col-md-3:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ccc;
  }
}

.abt_step {
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ステップ番号 */
.abt_step_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  color: var(--white);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  border-radius: 50%;
}

/* 番号バッジから左右に伸びる装飾線 */
.abt_step_num::before,
.abt_step_num::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 5px;
  width: 200px;
  transform: translateY(-50%);
}
.abt_step_num::before {
  right: 100%;
}
.abt_step_num::after {
  left: 100%;
}

/* 各ステップのカラー定義 */
.abt_steps .col-md-3:nth-child(1) {
  --step-color: #076fb3;
}
.abt_steps .col-md-3:nth-child(2) {
  --step-color: #7e7e73;
}
.abt_steps .col-md-3:nth-child(3) {
  --step-color: #8caec1;
}
.abt_steps .col-md-3:nth-child(4) {
  --step-color: #75747a;
}

.abt_step_num {
  background-color: var(--step-color);
}
.abt_step_num::before,
.abt_step_num::after {
  background-color: var(--step-color);
}

.abt_step_title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  color: var(--step-color);
}
.abt_step_line {
  width: 100%;
  height: 5px;
  margin-bottom: 15px;
  background-color: var(--step-color);
}
.abt_step_subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: left;
  color: var(--step-color);
}
.abt_step_text {
  font-size: 16px;
  line-height: 2.3;
  text-align: left;
  margin-bottom: 0;
  color: var(--step-color);
}

/* クロージングテキスト
--------------------------------*/
.abt_closing {
  text-align: center;
  padding: 40px 0 0;
}
.abt_closing p {
  font-size: 31px;
  font-weight: 500;
  color: #076fb3;
  line-height: 1.7;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/*================================
ORIGINAL TECHNOLOGY（青背景）
================================*/
.abt_tech {
  background-color: var(--blue);
  color: var(--white);
  padding: 120px 0 120px;
}
.abt_tech .abt_lead {
  padding: 120px 0 90px;
}
.abt_tech .abt_content:last-child {
  margin-bottom: 30px;
}

/* 比較画像ブロック
--------------------------------*/
.abt_compare {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin: 60px 0;
}
.abt_compare_item {
  flex: 0 0 35%;
}
.abt_compare_item img {
  width: 100%;
  height: auto;
  display: block;
}
.abt_compare_caption {
  font-size: 22px;
  color: var(--white);
  margin-top: 10px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 2px;
}
.abt_compare_arrow {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.abt_compare_arrow span {
  display: block;
  width: 100%;
  max-width: 160px;
  height: 60px;
  margin-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.35);
  clip-path: polygon(0 20%, 65% 20%, 65% 0, 100% 50%, 65% 100%, 65% 80%, 0 80%);
}

/*================================
FISH REEF（白背景）
================================*/
.abt_reef {
  background-color: var(--white);
  padding: 120px 0 0;
}
.abt_reef .abt_lead_dark {
  padding: 120px 0 120px;
}
.abt_reef .abt_content {
  margin-bottom: 60px;
}

/* ギャラリー
--------------------------------*/
.abt_gallery {
  margin-top: 60px;
}
.abt_gallery_item {
  margin-bottom: 30px;
}
.abt_gallery_item img {
  width: 100%;
  height: auto;
  display: block;
}
.abt_gallery_caption {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
  letter-spacing: 2px;
}

/*================================
RESPONSIVE (max-width: 767px)
================================*/
@media (max-width: 767px) {
  /* MV */
  .abt_mv {
    margin-top: 56px;
    height: 350px;
  }
  .abt_mv_catch {
    padding: 15px 20px;
    left: 3%;
  }
  .abt_mv_catch p {
    font-size: 22px;
  }
  .abt_mv_ttl_area {
    left: auto;
    right: 5%;
    bottom: 8%;
    text-align: right;
  }
  .abt_mv_ttl {
    font-size: 28px;
  }
  .abt_mv_sub {
    font-size: 16px;
    letter-spacing: 2px;
  }

  /* ABOUT */
  .abt_about {
    padding: 60px 0 80px;
  }

  /* リード文 */
  .abt_lead {
    padding: 40px 0 50px;
  }
  .abt_lead p,
  .abt_lead h1 {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 1px;
  }

  /* 画像＋テキストブロック */
  .abt_content {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }
  .abt_content_photo {
    flex: none;
    width: 100%;
  }

  /* 事業紹介 */
  .abt_business {
    margin-top: 30px;
  }
  .abt_business .col-md-4 {
    margin-bottom: 30px;
  }
  .abt_business .col-md-4:last-child {
    margin-bottom: 0;
  }
  .abt_business_item h3 {
    font-size: 20px;
  }

  /* PROCESS */
  .abt_process {
    padding: 80px 0;
  }

  /* ダイヤグラム */
  .abt_diagram {
    padding: 30px 0 50px;
  }

  /* ステップ */
  .abt_steps {
    padding: 20px 0 50px;
  }
  .abt_steps .col-md-3 {
    margin-bottom: 40px;
  }
  .abt_steps .col-md-3:last-child {
    margin-bottom: 0;
  }
  .abt_step_num {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .abt_step_title {
    font-size: 22px;
  }

  /* クロージング */
  .abt_closing p {
    font-size: 17px;
    letter-spacing: 1px;
  }

  /* ORIGINAL TECHNOLOGY */
  .abt_tech {
    padding: 60px 0 80px;
  }

  /* 比較画像 */
  .abt_compare {
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
  }
  .abt_compare_item {
    flex: 0 0 42%;
  }
  .abt_compare_arrow {
    font-size: 40px;
    flex: 0 0 100%;
    order: 3;
    display: none;
  }
  .abt_compare_caption {
    font-size: 15px;
  }

  /* FISH REEF */
  .abt_reef {
    padding: 80px 0;
  }

  /* ギャラリー */
  .abt_gallery_caption {
    font-size: 15px;
  }
}
