@charset "UTF-8";
/* =========================================================
   GLOBAL REACHとは（about）
   ・見出しは共通 .c-section-ttl（js-section-ttl で1文字ずつアニメーション）
   ・Vision & Mission：白背景・中央寄せ
   ・もっと深く知る：共通 $gradient-light 背景・アイコン付きカード3枚（SP1列 / PC3列）
   ========================================================= */
/* 見出し下の補足テキスト（両セクション共通） */
.c-section-ttl {
  font-size: 24px;
}
@media screen and (min-width: 821px) {
  .c-section-ttl {
    font-size: 40px;
  }
}

.p-about__lead {
  margin-top: 20px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-about__lead {
    margin-top: 30px;
    font-size: 16px;
  }
}

/* ---- Vision & Mission ---- */
.p-about-vision {
  padding: 38px 0 80px;
}
@media only screen and (min-width: 992px) {
  .p-about-vision {
    padding: 60px 0 80px;
  }
}

.p-about-vision__inner {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

.p-about-vision__text {
  margin-top: 24px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.1875;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 992px) {
  .p-about-vision__text {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
    line-height: 2;
  }
}

/* ---- もっと深く知る ---- */
.p-about-more {
  padding: 80px 0;
  background: linear-gradient(90deg, #DEEBFF 0%, #E3FDFF 100%);
}
@media only screen and (min-width: 992px) {
  .p-about-more {
    padding: 80px 0;
  }
}

/* カード一覧（アイコンが上にはみ出す分の余白を確保） */
.p-about-more__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-top: 60px;
}
@media only screen and (min-width: 992px) {
  .p-about-more__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 100px;
  }
}

.p-about-more__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 20px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(94, 170, 195, 0.12);
}
@media only screen and (min-width: 992px) {
  .p-about-more__card {
    padding: 60px 20px 30px;
  }
}

/* アイコン（青丸を含むPNG・カード上端に半分重ねる） */
.p-about-more__icon {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translateX(-50%);
}
@media only screen and (min-width: 992px) {
  .p-about-more__icon {
    top: -60px;
    width: 100px;
    height: 100px;
  }
}
.p-about-more__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* タイトル（下に短い青ライン） */
.p-about-more__ttl {
  position: relative;
  padding-bottom: 10px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .p-about-more__ttl {
    font-size: 24px;
  }
}
.p-about-more__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: #0E63C4;
  transform: translateX(-50%);
}

.p-about-more__text {
  width: 100%;
  margin-top: 20px;
  color: #333;
}

/* 詳細を見る（共通 .c-btn2--card を中央寄せ・カード下端に揃える） */
.p-about-more__btn {
  margin: 20px auto 0;
}
@media only screen and (min-width: 992px) {
  .p-about-more__btn {
    margin-top: auto;
    padding-top: 0;
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) {
  .p-about-more__text + .p-about-more__btn {
    margin-top: 28px;
  }
}

/* ---- 会社概要 ---- */
.p-about-company {
  padding: 80px 0;
}
@media only screen and (min-width: 992px) {
  .p-about-company {
    padding: 80px 0 60px;
  }
}
.p-about-company .c-section-ttl {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .p-about-company .c-section-ttl {
    margin-bottom: 40px;
  }
}

.p-about-company__inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 行（奇数：薄い水色 / 偶数：白）SP：ラベル上・内容下 / PC：ラベル左・内容右 */
.p-about-company__row {
  padding: 20px;
}
@media only screen and (min-width: 992px) {
  .p-about-company__row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0 10px;
    align-items: start;
    padding: 15px 20px;
  }
}
.p-about-company__row:nth-child(odd) {
  background-color: #EBFBFF;
}
.p-about-company__row:nth-child(even) {
  background-color: #fff;
}

.p-about-company__label {
  color: #0E63C4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (min-width: 992px) {
  .p-about-company__label {
    font-size: 16px;
  }
}

.p-about-company__value {
  margin-top: 4px;
  color: #333;
}
@media only screen and (min-width: 992px) {
  .p-about-company__value {
    margin-top: 0;
  }
}

/* ---- WEWORLDグループ法人概要（表は会社概要と共通・法人ごとに下線で区切る） ---- */
.p-about-group {
  padding: 0 0 60px;
}
@media only screen and (min-width: 992px) {
  .p-about-group {
    padding: 0 0 80px;
  }
}
.p-about-group .c-section-ttl {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .p-about-group .c-section-ttl {
    margin-bottom: 40px;
  }
}

.p-about-group__item {
  padding-bottom: 40px;
  border-bottom: 1px solid #D9D9D9;
  /* 最後の法人は下線なし */
}
@media only screen and (min-width: 992px) {
  .p-about-group__item {
    padding-bottom: 60px;
  }
}
.p-about-group__item + .p-about-group__item {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  .p-about-group__item + .p-about-group__item {
    margin-top: 60px;
  }
}
.p-about-group__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* ---- アクセス（共通 $gradient-light 背景・Googleマップ埋め込み） ---- */
.p-about-access {
  padding: 80px 0;
  background: linear-gradient(90deg, #DEEBFF 0%, #E3FDFF 100%);
}
.p-about-access .c-section-ttl {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .p-about-access .c-section-ttl {
    margin-bottom: 40px;
  }
}

.p-about-access__inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 15px;
}

.p-about-access__map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}
@media only screen and (min-width: 992px) {
  .p-about-access__map iframe {
    height: 380px;
  }
}

.p-about-access__address {
  margin-top: 12px;
  color: #333;
}
@media only screen and (min-width: 992px) {
  .p-about-access__address {
    margin-top: 16px;
  }
}
/*# sourceMappingURL=about.css.map */