/* ==========================================
     * 1. 共通・ベーススタイル（まずはスマホ用）
     * ========================================== */
#anc-hero.p-aboutus-hero {
  position: relative;
  width: 100%;
  height: 300px;
  /* スマホの高さ */
  overflow: hidden;
  background-color: #ffffff;
}

/* 固定の方眼パターン */
.p-geometric-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center center;
  pointer-events: none;
}

/* 真ん中に配置する丸いグレーの玉（スマホ） */
.p-static-gray-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  /* スマホは元のバランス */
  width: 200px;
  height: 200px;
  background-color: #7d92a1;
  border-radius: 50%;
  z-index: 2;
  opacity: 0.8;
}

/* テキストコンテナ（スマホ） */
.p-aboutus-hero__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 20px;
  pointer-events: none;
}

.p-aboutus-hero__title-box {
  position: relative;
  top: 10%;
  /* タイポ修正完了 */
}

/* 英語タイトル（スマホ） */
.p-aboutus-hero__en {
  font-family: "Caveat", cursive;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: #ffffff;
}

/* 日本語タイトル（スマホ） */
.p-aboutus-hero__ja {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  color: #ffffff;
}

/* ==========================================
     * 2. PC対応（画面横幅 769px 以上で上書き）
     * ========================================== */
@media (min-width: 769px) {
  #anc-hero.p-aboutus-hero {
    height: 380px;
    /* PCの高さ */
  }

  .p-static-gray-circle {
    width: 300px;
    height: 300px;
    transform: translate(-50%, -43%);
    /* 文字が上に上がるのに合わせて調整 */
  }

  .p-aboutus-hero__container {
    padding-top: 25px;
  }

  .p-aboutus-hero__title-box {
    top: 5%;
    /* スマホのトップ位置指定をリセット */
  }

  .p-aboutus-hero__en {
    font-size: 4.5rem;
    margin-right: 6px;
    /* 傾きによる視覚的なズレを補正 */
  }

  .p-aboutus-hero__ja {
    font-size: 1.1rem;
    margin-top: 12px;
    letter-spacing: 0.3em;
    padding-left: 0.3em;
  }
}
