/* =========================================================
   single-group_company.php
   PC基準レイアウト調整
   ========================================================= */

.group-company-single{
  color: #000000;
}

/* 共通幅 */
.gc-inner{
  width: min(100%, 1080px);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

/* =========================
   Hero
   ========================= */
.gc-hero{
  width: 100%;
  min-height: 767px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* =========================
   Intro
   ========================= */
.gc-intro{
  padding: 72px 0 96px;
  background: #ffffff;
}

/* 会社名 */
.gc-intro__company{
  margin: 0 0 15px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}

/* リード見出し */
.gc-intro__headline{
  margin: 0 -3px 72px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #096FD1;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.gc-intro__headline-pc,
.gc-intro__headline-sp{
  display: block;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

/* 今回はPC基準なのでSP見出しは隠す */
.gc-intro__headline-sp{
  display: none;
}

/* =========================
   TOPICS
   ========================= */
.gc-topics{
  margin-top: 0;
}

.gc-topics__head{
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.gc-topics__title{
  flex: 0 0 auto;
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: #51A0ED;
}

/* TOPICS右ライン */
.gc-topics__head::after{
  content: "";
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background: #668FA2;
}

/* 本文＋画像 */
.gc-topics__body.has-image{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 471px;
  gap: 35px;
  align-items: start;
}

.gc-topics__image{
  width: 471px;
  padding-top: 10px;
}

.gc-topics__image img{
  width: 471px;
  height: 353px;
  object-fit: cover;
  display: block;
}

.gc-topics__body:not(.has-image){
  display: block;
}

.gc-topics__texts{
  min-width: 0;
}

/* TOPICSテキスト */
.gc-topics__text{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  color: #000000;
  text-align: justify;
}

/* 区切り線：1px 線分2 間隔2 / 最上段なし / 本文と26px */
.gc-topics__text + .gc-topics__text{
  margin-top: 26px;
  padding-top: 26px;
  background-image: repeating-linear-gradient(
    to right,
    #096FD1 0 2px,
    transparent 2px 4px
  );
  background-repeat: repeat-x;
  background-size: 4px 1px;
  background-position: left top;
}

.gc-topics__image{
  width: 471px;
  height: 353px;
}

.gc-topics__image img{
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   Profile / 会社概要
   ========================= */
.gc-profile{
  padding: 88px 0 96px;
  background: #E6FBFF;
}

.gc-profile__heading{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
}

/* Corporate Data */
.gc-profile__heading-en{
  position: relative;
  margin: 0;
  padding-right: 28px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: #51A0ED;
}

/* 縦ライン */
.gc-profile__heading-en::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 60px;
  background: #668FA2;
  transform: translateY(-50%);
}

/* 会社概要 */
.gc-profile__heading-ja{
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  color: #096FD1;
}

/* table */
.gc-profile__table{
  margin: 0;
}

.gc-profile__row{
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 26px;
  align-items: start;
}

/* 最上段は線なし、2段目以降だけ線あり */
.gc-profile__row + .gc-profile__row{
  margin-top: 26px;
  padding-top: 26px;
  background-image: repeating-linear-gradient(
    to right,
    #096FD1 0 2px,
    transparent 2px 4px
  );
  background-repeat: repeat-x;
  background-size: 4px 1px;
  background-position: left top;
}

/* 左見出し */
.gc-profile__term{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
  color: #096FD1;
}

/* 右コンテンツ */
.gc-profile__desc{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
  color: #000000;
}

.gc-profile__desc a{
  color: #000000;
  text-decoration: none;
  word-break: break-all;
}

.gc-profile__desc a:hover{
  text-decoration: underline;
}

/* map */
.gc-profile__map{
  margin-top: 40px;
  width: 800px;
  max-width: 100%;
}

.gc-profile__map iframe{
  display: block;
  width: 800px;
  max-width: 100%;
  height: 450px;
  border: 0;
}

/* =========================
   PC微調整
   ========================= */
@media (max-width: 1200px){
  .gc-hero{
    min-height: 620px;
  }
}

@media (max-width: 1024px){
  .gc-inner{
    padding-left: 24px;
    padding-right: 24px;
  }

  .gc-hero{
    min-height: 520px;
  }

  .gc-topics__body.has-image{
    grid-template-columns: 1fr 360px;
    gap: 36px;
  }
}

@media (max-width: 800px){

  /* 共通幅 */
  .gc-inner{
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hero */
  .gc-hero{
    min-height: 280px;
    background-position: center center;
    background-size: cover;
  }

  /* =========================
     Intro
     ========================= */
  .gc-intro{
    padding: 0 0 30px;
    background: #ffffff;
  }

  /* （１）タイトル（社名） */
  .gc-intro__company{
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #000000;
  }

  /* （２）リード */
  .gc-intro__headline{
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0;
    color: #096FD1;
    font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  }

  .gc-intro__headline-pc{
    display: none;
  }

  .gc-intro__headline-sp{
    display: block;
  }

  /* =========================
     TOPICS
     ========================= */
  .gc-topics{
    margin-top: 23px;
  }

  .gc-topics__head{
    gap: 14px;
    margin-bottom: 15px;
  }

  /* （３）TOPICSタイトル */
  .gc-topics__title{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #51A0ED;
  }

  /* （４）TOPICS右ライン */
  .gc-topics__head::after{
    height: 1px;
    background: #668FA2;
  }

  /* 1カラム化 */
  .gc-topics__body.has-image{
    display: block;
  }

  .gc-topics__texts{
    min-width: 0;
  }

  /* （５）TOPICS本文 */
  .gc-topics__text{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    color: #000000;
    text-align: left;
  }

  /* （６）区切り線 PCと同じ */
  .gc-topics__text + .gc-topics__text{
    margin-top: 15px;
    padding-top: 15px;
    background-image: repeating-linear-gradient(
      to right,
      #096FD1 0 2px,
      transparent 2px 4px
    );
    background-repeat: repeat-x;
    background-size: 4px 1px;
    background-position: left top;
  }

  /* （７）写真 */
  .gc-topics__image{
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding-top: 0;
  }

  .gc-topics__image img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* =========================
     Profile / 会社概要
     ========================= */
  .gc-profile{
    padding: 30px 0 0;
    background: #E6FBFF;
  }

  .gc-profile__heading{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 50px;
  }

  /* （８）Corporate Data */
  .gc-profile__heading-en{
    font-size: 16px;
    font-weight: 500;
    color: #51A0ED;
    padding-right: 0;
  }

  .gc-profile__heading-en::after{
    width: 1px;
    height: 21px;
    background: #668FA2;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }

  /* （９）会社概要タイトル */
  .gc-profile__heading-ja{
    font-size: 40px;
    font-weight: 700;
    color: #096FD1;
  }

  .gc-profile__table{
    margin: 0;
  }

  .gc-profile__row{
    display: block;
  }

  /* （１２）区切り線 PCと同じ */
  .gc-profile__row + .gc-profile__row{
    margin-top: 36px;
    padding-top: 36px;
    background-image: repeating-linear-gradient(
      to right,
      #096FD1 0 2px,
      transparent 2px 4px
    );
    background-repeat: repeat-x;
    background-size: 4px 1px;
    background-position: left top;
  }

  /* （１０）商号など左見出し */
  .gc-profile__term{
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    color: #096FD1;
  }

  /* （１１）内容 */
  .gc-profile__desc{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    color: #000000;
  }

  .gc-profile__desc a{
    color: #000000;
    text-decoration: none;
    word-break: break-all;
  }

  /* map */
  .gc-profile__map{
    margin-top: 30px;
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
  }

  /* （１３）マップ 全幅 高さ300px */
  .gc-profile__map iframe{
    display: block;
    width: 100%;
    max-width: none;
    height: 300px;
    border: 0;
  }
}