@charset "UTF-8";
/* ========================================
   About Intro — wave-blue 背景 + dots
   背景(wave mask)は __bg 要素に分離 → コンテンツはマスクの影響を受けない
   .about-management が下にはみ出してセクションまたぎになる
   contact-page-main と同じ __bg 分離パターン
   Figma PC: 586:573, 588:1266 / SP: 799:2634, 799:2770
======================================== */
.about-intro {
  position: relative;
}

.about-intro__bg {
  position: absolute;
  inset: 0;
  background-color: #65cddb;
  -webkit-mask-image: url("../../../../assets/wave-blue.svg"), linear-gradient(#000, #000);
  mask-image: url("../../../../assets/wave-blue.svg"), linear-gradient(#000, #000);
  -webkit-mask-size: 1470px 76px, 100% calc(100% - 53px);
  mask-size: 1470px 76px, 100% calc(100% - 53px);
  -webkit-mask-position: left top, left 53px;
  mask-position: left top, left 53px;
  -webkit-mask-repeat: repeat-x, no-repeat;
  mask-repeat: repeat-x, no-repeat;
  -webkit-mask-composite: source-over;
  mask-composite: add;
}

.about-intro__dots {
  position: absolute;
  inset: 0;
  background-image: url("../../../../assets/dots-pattern.png");
  background-repeat: repeat;
  background-size: 1002px 1002px;
  opacity: 0.5;
  pointer-events: none;
}

.about-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px 163px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.about-intro__diagram {
  max-width: 585px;
}
.about-intro__diagram img {
  width: 100%;
  height: auto;
}

.about-intro__text {
  flex: 1;
  max-width: 399px;
}

/* フォントについてデザイナー様に意図を確認。 デザインだと「A P-OTF A1Gothic StdN」が使用されている */
/* A P-OTF A1Gothic StdN：モリサワフォントで有料になる。 */
/* 以下の確認『「Aboutページのこの箇所だけフォントが A1ゴシック になっていますが、こちらは意図的な使い分けでしょうか？他の文章ではZen Kaku Gothic Newが使用されています。」』 */
.about-intro__heading {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 39px;
  color: #000;
  margin-top: 84px;
  margin-bottom: 16px;
  letter-spacing: normal;
}

.about-intro__description {
  font-size: 14px;
  font-weight: 700;
  line-height: 33px;
  color: #000;
  text-align: justify;
  margin-bottom: 32px;
}

/* ========================================
   エリアマネジメントとは? ボックス
   __inner 内に配置し absolute で右下に浮かせる
   __bg のマスク外にはみ出してセクションまたぎになる
   PC: 右寄せ / SP: 中央
======================================== */
.about-management {
  position: absolute;
  bottom: -76px;
  right: 0;
  z-index: 2;
  background-color: #def6f9;
  border-radius: 50px;
  padding: 48px 31px;
  max-width: 465px;
  width: 100%;
}

.about-management__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 27px;
  color: #000;
  margin-bottom: 12px;
}

.about-management__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 27px;
  color: #000;
  text-align: justify;
}

/* NOTE: このセクションのブレークポイントは 1080px（共通の 960px ではなく固有値） */
@media (max-width: 1080px) {
  .about-intro__inner {
    max-width: 375px;
    margin: 0 auto;
    padding: 0 17px 376px;
    flex-direction: column;
    gap: 24px;
  }
  .about-intro__heading {
    margin-top: 0;
    font-size: 24px;
    line-height: 36px;
  }
  .about-intro__bg {
    -webkit-mask-size: 760px 55px, 100% calc(100% - 53px);
    mask-size: 760px 55px, 100% calc(100% - 53px);
  }
  .about-intro__diagram {
    flex: none;
    max-width: 341px;
    height: 319px;
    margin: 0 auto;
  }
  .about-intro__text {
    order: -1;
    max-width: 100%;
  }
  .about-intro__description {
    line-height: 27px;
  }
  .about-management {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    max-width: 359px;
    margin: 0 auto;
    padding: 24px 22px;
    border-radius: 30px;
  }
}