/* ============================================================
   ABOUT — about.css
   ============================================================ */

/* ------------------------------------------------------------
   Page Hero
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 20px 26px;
  text-align: center;
  background-image: url('../img/bg_sp.webp');
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}


@media (min-width: 768px) {
  .page-hero {
    padding: 52px 20px 48px;
    overflow: visible;
    background: none;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background-image: url('../img/bg_pc.webp');
    background-size: 1400px 500px;
    background-repeat: repeat-x;
    background-position: top center;
    z-index: 0;
  }
}

/* ------------------------------------------------------------
   Hero text
   ------------------------------------------------------------ */
   .about-hero-text {
  position: relative;
  z-index: 1;
}

.page-hero-title {
    position: relative;
    z-index: 1;
    font-family: 'minion-variable-concept', 'Minion Variable Concept', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8E7173;
    letter-spacing: 0.08em;
}

.about-hero-logo {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   Hero photo
   ------------------------------------------------------------ */
.about-hero-photo-wrap {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
}

.about-hero-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------------------------------
   PC adjustments
   ------------------------------------------------------------ */
@media (min-width: 768px) {
  .about-hero-text {
    padding: 92px 20px 0;
  }

  .page-hero-title {
    font-size: 1.8rem;
  }

  .about-hero-label {
    font-size: 1.8rem;
  }

  .about-hero-logo {
    width: 220px;
    padding-top: 20px;
  }

  .about-hero-photo-wrap {
    max-width: 1000px;
    padding: 0;
  }
}

/* ------------------------------------------------------------
   Catch phrase block
   ------------------------------------------------------------ */
.about-catch {
  position: relative;
  width: fit-content;
  margin: 0 auto 36px;
  padding: 18px 24px;
  text-align: center;
  background: transparent;
}

/* 左上の鉤「 */
.about-catch::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-top: 1px solid var(--pink-hot);
  border-left: 1px solid var(--pink-hot);
}

/* 右下の鉤」 */
.about-catch::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-bottom: 1px solid var(--pink-hot);
  border-right: 1px solid var(--pink-hot);
}

.about-catch-text {
  font-family: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Yu Mincho', 'YuMincho', 'HG明朝E', 'MS PMincho', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.9;
  color: var(--pink-hot);
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .about-catch {
    padding: 22px 52px;
    margin-bottom: 44px;
  }

  .about-catch::before,
  .about-catch::after {
    width: 44px;
    height: 44px;
  }

  .about-catch-text {
    font-size: 1.5rem;
    line-height: 2.5rem;
    letter-spacing: 0.4rem;
  }
}

/* ------------------------------------------------------------
   About body text
   ------------------------------------------------------------ */
.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-body p {
  font-size: 0.9rem;
  line-height: 2.05;
  color: #555;
  text-align: center;
}

@media (max-width: 767px) {
  .about-body p {
    text-align: left;
  }
}

.about-body .winkU-name {
  font-weight: 700;
  color: var(--pink-hot);
}

@media (min-width: 768px) {
  .about-body p {
    font-size: 0.95rem;
  }

  .about-content.content-section {
    padding: 52px 0 64px;
  }
}

/* ------------------------------------------------------------
   SP adjustments
   ------------------------------------------------------------ */
@media (max-width: 767px) {
  .about-content.content-section {
    padding: 36px 0 52px;
  }

  .about-catch-text {
    font-size: 1.0rem;
    line-height: 2.2rem;
    letter-spacing: 0.4rem;
  }
}
