@charset "utf-8";


/* =========================================
   社会保険労務士法人そら
   TOPページ改修専用CSS

   ・既存CSSとの競合防止のため
     sora-top- でクラス名を統一
   ・PC／スマートフォン対応
========================================== */

/* =========================================
   社会保険労務士法人そら
   TOPページ カラーシステム
========================================== */

:root {
  /* ブランドカラー */
  --sora-color-primary: #4eadd3;
  --sora-color-primary-dark: #176a91;
  --sora-color-primary-deep: #0f5576;

  /* 見出し・文章 */
  --sora-color-navy: #173b55;
  --sora-color-text: #334a5a;
  --sora-color-muted: #627884;

  /* 背景 */
  --sora-color-primary-light: #edf8fc;
  --sora-color-primary-pale: #f7fcfe;
  --sora-color-white: #ffffff;
  --sora-color-warm: #faf7f2;

  /* UI */
  --sora-color-border: #d6e8ef;
  --sora-color-focus: #ffbf47;

  /* シャドウ */
  --sora-shadow-soft: 0 12px 32px rgba(23, 59, 85, 0.07);
  --sora-shadow-button: 0 12px 28px rgba(23, 106, 145, 0.18);
}


.sora-top-fv,
.sora-top-fv * {
  box-sizing: border-box;
}



/* 文章エリア */
.sora-top-fv__content {
  position: relative;
  z-index: 2;
}

/* 小見出し */
.sora-top-fv__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--sora-color-primary-dark);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.sora-top-fv__label::before {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--sora-color-primary);
}

/* H1 */
.sora-top-fv__title {
  margin: 0;
  color: var(--sora-color-navy);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.sora-top-fv__title span {
  color: var(--sora-color-primary-dark);
}

/* 補足文 */
.sora-top-fv__text {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--sora-color-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.95;
}

/* ボタンエリア */
.sora-top-fv__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* 共通ボタン */
.sora-top-button {
  min-height: 56px;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.sora-top-button:hover {
  transform: translateY(-2px);
}

.sora-top-button:focus-visible {
  outline: 3px solid rgba(23, 106, 145, 0.4);
  outline-offset: 4px;
}
.sora-top-button--primary {
  color: var(--sora-color-white);
  background: var(--sora-color-primary-dark);
  box-shadow: var(--sora-shadow-button);
}

.sora-top-button--primary:hover {
  color: var(--sora-color-white);
  background: var(--sora-color-primary-deep);
}



/* 副ボタン */
.sora-top-button--secondary {
  border-color: var(--sora-color-primary-dark);
  color: var(--sora-color-primary-dark);
  background: var(--sora-color-white);
}

.sora-top-button--secondary:hover {
  color: var(--sora-color-white);
  background: var(--sora-color-primary-dark);
}

/* ボタン下の補助文 */
.sora-top-fv__support {
  margin: 16px 0 0;
  color: var(--sora-color-muted);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}





/* スクロール表示 */
.sora-top-fv__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sora-color-primary-dark);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
}

/* タブレット */
@media (max-width: 1024px) {
  .sora-top-fv {
    min-height: auto;
  }

 

  .sora-top-fv__title {
    font-size: clamp(38px, 5vw, 52px);
  }

  .sora-top-fv__text {
    font-size: 16px;
  }


}

/* スマートフォン */
@media (max-width: 767px) {
  .sora-top-fv {
    display: block;
    min-height: auto;
  }





  .sora-top-fv__label {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .sora-top-fv__label::before {
    width: 26px;
  }

  .sora-top-fv__title {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.45;
  }

  .sora-top-fv__text {
    margin-top: 21px;
    font-size: 15px;
    line-height: 1.85;
  }

  .sora-top-fv__buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 28px;
  }

  .sora-top-button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .sora-top-fv__support {
    font-size: 12px;
  }

  .sora-top-fv__scroll {
    display: none;
  }
}

/* 小型スマートフォン */

 @media (max-width: 374px) {
  .sora-top-fv__title {
    font-size: 29px;
  }
}


/* 動きを減らす設定を使用している人への配慮 */
@media (prefers-reduced-motion: reduce) {
  .sora-top-button {
    transition: none;
  }

  .sora-top-button:hover {
    transform: none;
  }
}




.sora-top-fv {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(78, 173, 211, 0.11),
      transparent 34%
    ),
    var(--sora-color-primary-pale);
}


/* PC：写真をFV全面へ配置 */
.sora-top-fv__picture {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: block;
  width: 100%;
  height: 100%;
}


/* PC：写真本体 */
.sora-top-fv__image,
.sora-top-fv__picture img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;

  /*
   * 横：右側をやや優先
   * 縦：上側を優先
   * 下部の不要な頭はトリミング
   */
  object-position: 56% 24%;
}


/* 文章を写真より前へ */
.sora-top-fv__container {
  position: relative;
  z-index: 1;

  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 120px 100px;

  display: flex;
  justify-content: flex-end;
}


/* 文章パネル */
.sora-top-fv__container .sora-top-fv__content {
  width: min(560px, 48%);

  padding: clamp(36px, 4vw, 54px);

  border: 1px solid rgba(216, 232, 239, 0.9);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 24px 60px rgba(23, 59, 85, 0.15);

  backdrop-filter: blur(10px);
}


/* =========================================================
   スマートフォン
========================================================= */

@media (max-width: 767px) {

  .sora-top-fv {
    display: block;
    min-height: auto;
  }


  /* 写真と文章を上下に分離 */
  .sora-top-fv__picture {
    position: relative;
    inset: auto;

    width: 100%;
    height: 310px;
  }


  .sora-top-fv__image,
  .sora-top-fv__picture img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* SPは人物の顔を優先 */
    object-position: center 25%;
  }


  .sora-top-fv__container {
    width: 100%;
    padding: 0;

    display: block;
  }


  .sora-top-fv__container .sora-top-fv__content {
    width: 100%;

    padding: 38px 16px 64px;

    border: 0;
    border-radius: 0;

    background: var(--sora-color-primary-pale);

    box-shadow: none;
    backdrop-filter: none;
  }
}

/* =========================================================
   TOP ABOUT SORA
========================================================= */

.sora-top-about {
  padding: 100px 24px;

  background: #ffffff;
}

.sora-top-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;

  max-width: 1180px;

  margin: 0 auto;

  gap: clamp(48px, 6vw, 88px);
}

.sora-top-about__content {
  min-width: 0;
}

.sora-top-about__title {
  margin: 12px 0 24px;

  color: var(--sora-color-navy);

  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.sora-top-about__lead {
  max-width: 620px;

  margin: 0;

  color: var(--sora-color-text);

  font-size: 16px;
  line-height: 2;
}

.sora-top-about__points {
  display: grid;

  margin: 32px 0 0;
  padding: 0;

  gap: 14px;

  list-style: none;
}

.sora-top-about__points li {
  position: relative;

  padding-left: 30px;

  color: var(--sora-color-navy);

  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.sora-top-about__points li::before {
  content: "✓";

  position: absolute;

  top: 0;
  left: 0;

  color: var(--sora-color-primary-dark);
}

.sora-top-about__link {
  display: inline-flex;
  align-items: center;

  min-height: 48px;

  margin-top: 36px;

  gap: 14px;

  color: var(--sora-color-primary-dark);

  font-weight: 700;

  text-decoration: none;
}

.sora-top-about__visual {
  overflow: hidden;

  border-radius: 24px;
}

.sora-top-about__visual img {
  display: block;

  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;
}


/* スマホ */
@media (max-width: 767px) {

  .sora-top-about {
    padding: 72px 20px;
  }

  .sora-top-about__layout {
    display: flex;
    flex-direction: column;

    gap: 36px;
  }

  .sora-top-about__title {
    margin-bottom: 18px;

    font-size: 30px;
  }

  .sora-top-about__lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .sora-top-about__points {
    margin-top: 24px;
  }

  .sora-top-about__visual {
    width: 100%;

    border-radius: 18px;
  }

}


/* =========================================================
   TOP CUSTOMER VOICE
========================================================= */

/* =========================================================
   お客様の声
   実際のお客様の声を準備中のため一時非表示
   公開時は is-preparing をHTMLから削除
========================================================= */

.sora-top-voices.is-preparing {
  display: none;
}

.sora-top-voices {
  padding: 100px 24px;

  background: var(--sora-color-primary-pale);
}

.sora-top-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  max-width: 1180px;

  margin: 52px auto 0;

  gap: 24px;
}

.sora-top-voice-card {
  padding: 32px;

  border: 1px solid var(--sora-color-border);
  border-radius: 20px;

  background: #ffffff;
}

.sora-top-voice-card__category {
  margin: 0 0 16px;

  color: var(--sora-color-primary-dark);

  font-size: 13px;
  font-weight: 700;
}

.sora-top-voice-card__title {
  margin: 0;

  color: var(--sora-color-navy);

  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
}

.sora-top-voice-card__text {
  margin: 18px 0 0;

  color: var(--sora-color-text);

  font-size: 14px;
  line-height: 1.9;
}

.sora-top-voice-card__company {
  margin: 24px 0 0;

  color: var(--sora-color-muted);

  font-size: 13px;
}

.sora-top-voices__more {
  display: flex;
  justify-content: center;

  margin-top: 40px;
}


@media (max-width: 767px) {

  .sora-top-voices {
    padding: 72px 20px;
  }

  .sora-top-voices__grid {
    grid-template-columns: 1fr;

    margin-top: 36px;

    gap: 18px;
  }

  .sora-top-voice-card {
    padding: 24px 20px;

    border-radius: 16px;
  }

}
/* =========================================================
   TOP CONTACT CTA
========================================================= */

.sora-top-contact-cta {
  padding: 64px 24px;

  background: var(--sora-color-navy);
}

.sora-top-contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1180px;

  margin: 0 auto;

  gap: 48px;
}

.sora-top-contact-cta__content {
  min-width: 0;
}

.sora-top-contact-cta__label {
  margin: 0 0 12px;

  color: #ffffff;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;

  opacity: 0.75;
}

.sora-top-contact-cta__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.45;
}

.sora-top-contact-cta__text {
  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 14px;
  line-height: 1.9;
}

.sora-top-contact-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  flex: 0 0 auto;

  min-width: 260px;
  min-height: 60px;

  padding: 16px 22px;

  gap: 24px;

  border-radius: 12px;

  color: var(--sora-color-navy);
  background: #ffffff;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sora-top-contact-cta__button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.14);
}


@media (max-width: 767px) {

  .sora-top-contact-cta {
    padding: 56px 20px;
  }

  .sora-top-contact-cta__inner {
    flex-direction: column;
    align-items: stretch;

    gap: 28px;
  }

  .sora-top-contact-cta__title {
    font-size: 27px;
  }

  .sora-top-contact-cta__text br {
    display: none;
  }

  .sora-top-contact-cta__button {
    width: 100%;
    min-width: 0;
  }

}
/* =========================================================
   TOP RECRUIT
========================================================= */
/* =========================================================
   RECRUIT → CONTACT 間の余白調整
========================================================= */

/* PC */
.sora-top-recruit {
  padding: 88px 24px 52px;
}

.sora-top-final-contact {
  padding: 60px 24px 88px;
}


/* スマホ */
@media (max-width: 767px) {

  .sora-top-recruit {
    padding: 64px 20px 40px;
  }

  .sora-top-final-contact {
    padding: 48px 20px 64px;
  }

}

.sora-top-recruit {
  position: relative;

  padding: 88px 24px 52px;

  background: #f7fbfd;
}
.sora-top-recruit__inner {
  max-width: 1180px;

  margin: 0 auto;
  padding: 48px;

  border: 1px solid var(--sora-color-border);
  border-radius: 24px;

  background: #ffffff;
}

.sora-top-recruit__label {
  margin: 0 0 12px;

  color: var(--sora-color-primary-dark);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.sora-top-recruit__title {
  margin: 0;

  color: var(--sora-color-navy);

  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.5;
}

.sora-top-recruit__text {
  margin: 20px 0 0;

  color: var(--sora-color-text);

  font-size: 15px;
  line-height: 1.9;
}

.sora-top-recruit__link {
  
  display: inline-flex;
  align-items: center;

  min-height: 48px;

  margin-top: 28px;

  gap: 14px;

  color: var(--sora-color-primary-dark);

  font-weight: 700;

  text-decoration: none;
}
.sora-top-recruit__link:focus-visible {
  outline: 3px solid var(--sora-color-focus);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 767px) {

  .sora-top-recruit {
  padding: 64px 20px 40px;
}

  .sora-top-recruit__inner {
    padding: 32px 24px;

    border-radius: 18px;
  }

  .sora-top-recruit__title {
    font-size: 27px;
  }

  .sora-top-recruit__text br {
    display: none;
  }

}

　/* =========================================================
   TOP FINAL CONTACT
========================================================= */

.sora-top-final-contact {
  position: relative;

  padding: 60px 24px 88px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--sora-color-primary-dark) 0%,
      var(--sora-color-navy) 100%
    );
}

.sora-top-final-contact__inner {
  max-width: 800px;

  margin: 0 auto;

  text-align: center;
}

.sora-top-final-contact__label {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;

  opacity: 0.75;
}

.sora-top-final-contact__title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.5;
}

.sora-top-final-contact__text {
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.84);

  font-size: 15px;
  line-height: 1.9;
}
.sora-top-final-contact__button {
    display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;

  margin-top: 32px;
  padding: 14px 24px;

  gap: 10px;

  border: 1px solid #ffffff;
  border-radius: 12px;

  color: var(--sora-color-primary-dark);
  background: #ffffff;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.sora-top-final-contact__button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.16);
}

.sora-top-recruit__link:focus-visible {
  outline: 3px solid var(--sora-color-focus);
  outline-offset: 4px;
  border-radius: 4px;
}

.sora-top-final-contact__button:focus-visible {
  outline: 3px solid var(--sora-color-focus);
  outline-offset: 4px;
}



@media (max-width: 767px) {

    .sora-top-final-contact {
    padding: 48px 20px 64px;
  }

  .sora-top-final-contact__title {
    font-size: 29px;
  }

  .sora-top-final-contact__text br {
    display: none;
  }

  .sora-top-final-contact__button {
    width: 100%;
    min-width: 0;

    margin-top: 30px;
  }

}

/* =========================================================
   TOP共通：新規セクション基本設定
   「お悩み」「サービス」で共通使用
========================================================= */

.sora-top-section-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sora-top-section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.sora-top-section-heading__en {
  margin: 0 0 10px;
  color: var(--sora-color-primary-dark, #176a91);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.sora-top-section-heading__title {
  margin: 0;
  color: var(--sora-color-navy, #173b55);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.sora-top-section-heading__text {
  margin: 20px 0 0;
  color: var(--sora-color-text);
  font-size: 1rem;
  line-height: 1.9;
}

.sora-top-pc-only {
  display: inline;
}




/* =========================================================
   TOP：こんなお悩みはありませんか？
========================================================= */

.sora-top-concerns {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0;
  overflow: hidden;
  background: var(--sora-color-primary-light);
}

/* 背景のごく薄い装飾 */
.sora-top-concerns::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(73, 169, 209, 0.08);
  pointer-events: none;
}

.sora-top-concerns::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(73, 169, 209, 0.05);
  pointer-events: none;
}

.sora-top-concerns .sora-top-section-inner {
  position: relative;
  z-index: 1;
}


/* お悩みカード一覧 */
.sora-top-concerns__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}


/* お悩みカード */
.sora-top-concern-card {
  position: relative;
  min-width: 0;
  padding: 32px 26px 30px;
  overflow: hidden;

  border: 1px solid var(--sora-color-border);
  border-radius: 18px;

  background: var(--sora-color-white);

  box-shadow: var(--sora-shadow-soft);
}


/* カード番号 */
.sora-top-concern-card__number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(78, 173, 211, 0.3);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}


/* アイコン */
.sora-top-concern-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--sora-color-primary-dark, #176a91);
  background: #eef8fc;
}

.sora-top-concern-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* カードタイトル */
.sora-top-concern-card__title {
  margin: 0;
  color: var(--sora-color-navy, #173b55);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.7;
}


/* カード本文 */
.sora-top-concern-card__text {
  margin: 14px 0 0;
  color: var(--sora-color-muted);
  font-size: 0.92rem;
  line-height: 1.85;
}


/* お悩み → サービスへの視線誘導 */
.sora-top-concerns__guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 46px;
}

.sora-top-concerns__guide-line {
  display: block;
  width: 1px;
  height: 32px;
  background: #a9d8ea;
}

.sora-top-concerns__guide-arrow {
  margin-top: 4px;
  color: var(--sora-color-primary-dark, #176a91);
  font-size: 1.25rem;
  line-height: 1;
}


/* サービスへつなぐ文章 */
.sora-top-concerns__lead {
  margin: 18px 0 0;
  color: var(--sora-color-navy, #173b55);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}


/* =========================================================
   TOP：サービス
========================================================= */

.sora-top-services {
  padding: clamp(80px, 9vw, 128px) 0;
  background: #ffffff;
}


/* サービス一覧 */
.sora-top-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}


/* サービスカード */
.sora-top-service-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce8ee;
  border-radius: 18px;
  background: #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}


/* PCなどマウス操作可能な端末のみ */
@media (hover: hover) and (pointer: fine) {
  .sora-top-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(78, 173, 211, 0.55);
    box-shadow: 0 16px 38px rgba(23, 59, 85, 0.09);
  }
}


/* サービス番号 */
.sora-top-service-card__number {
  display: flex;
  flex: 0 0 88px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 30px;
  
  color: var(--sora-color-primary-dark);
  background: var(--sora-color-primary-light);

  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}


/* サービス本文 */
.sora-top-service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 30px 30px 28px;
}


/* サービスタイトル */
.sora-top-service-card__title {
  margin: 0;
  color: var(--sora-color-navy, #173b55);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}


/* サービス説明 */
.sora-top-service-card__text {
  margin: 14px 0 22px;
  color:var(--sora-color-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}


/* 詳しく見る */
.sora-top-service-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: auto;
  color: var(--sora-color-primary-dark, #176a91);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.sora-top-service-card__link span:last-child {
  transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sora-top-service-card__link:hover span:last-child {
    transform: translateX(4px);
  }
}


/* キーボード操作時のフォーカス */
.sora-top-service-card__link:focus-visible {
  outline: 3px solid var(--sora-color-primary-dark, #176a91);
  outline-offset: 5px;
  border-radius: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .sora-top-service-card__link:hover {
    color: var(--sora-color-primary-deep, #0f5576);
  }
}

/* サービス一覧CTA */
.sora-top-services__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.sora-top-services__button {
  min-width: 300px;
}


/* =========================================================
   タブレット
========================================================= */

@media (max-width: 1024px) {

  .sora-top-section-inner {
    width: min(100% - 40px, 960px);
  }

  .sora-top-concerns__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   スマートフォン
========================================================= */

@media (max-width: 767px) {

  .sora-top-section-inner {
    width: min(100% - 32px, 680px);
  }

  .sora-top-section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .sora-top-section-heading__en {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .sora-top-section-heading__title {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.5;
  }

  .sora-top-section-heading__text {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .sora-top-pc-only {
    display: none;
  }


  /* -----------------------------------------
     お悩み
  ------------------------------------------ */

  .sora-top-concerns {
    padding: 68px 0 64px;
  }

  .sora-top-concerns__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sora-top-concern-card {
    padding: 24px 20px;
  }

  .sora-top-concern-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }

  .sora-top-concern-card__icon svg {
    width: 31px;
    height: 31px;
  }

  .sora-top-concern-card__number {
    top: 18px;
    right: 18px;
    font-size: 1.8rem;
  }

  .sora-top-concern-card__title {
    font-size: 1.02rem;
  }

  .sora-top-concern-card__text {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .sora-top-concerns__guide {
    margin-top: 34px;
  }

  .sora-top-concerns__lead {
    margin-top: 14px;
    font-size: 1.05rem;
  }


  /* -----------------------------------------
     サービス
  ------------------------------------------ */

  .sora-top-services {
    padding: 72px 0 80px;
  }

  .sora-top-services__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sora-top-service-card__number {
    flex-basis: 62px;
    padding-top: 25px;
    font-size: 0.95rem;
  }

  .sora-top-service-card__body {
    padding: 23px 20px 22px;
  }

  .sora-top-service-card__title {
    font-size: 1.05rem;
  }

  .sora-top-service-card__text {
    margin: 10px 0 18px;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .sora-top-services__cta {
    margin-top: 34px;
  }

  .sora-top-services__button {
    width: 100%;
    min-width: 0;
  }

}


/* =========================================================
   小さいスマートフォン
========================================================= */

@media (max-width: 390px) {

  .sora-top-section-inner {
    width: calc(100% - 28px);
  }

  .sora-top-service-card__number {
    flex-basis: 54px;
  }

  .sora-top-service-card__body {
    padding-inline: 16px;
  }

}


/* =========================================================
   動きを減らす設定を使用しているユーザーへの配慮
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .sora-top-service-card,
  .sora-top-service-card__link span:last-child {
    transition: none;
  }

}

/* =========================================================
   TOP：そらが大切にしていること
========================================================= */

.sora-top-values {
  position: relative;
  padding: clamp(88px, 9vw, 132px) 0;
  overflow: hidden;
  background: var(--sora-color-warm, #faf7f2);
}


/* 背景にごく薄い空色の装飾 */
.sora-top-values::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(73, 169, 209, 0.06);
  pointer-events: none;
}

.sora-top-values::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(73, 169, 209, 0.05);
  pointer-events: none;
}


.sora-top-values .sora-top-section-inner {
  position: relative;
  z-index: 1;
}


/* =========================================
   見出し
========================================= */

.sora-top-values__heading {
  margin-bottom: 54px;
  text-align: center;
}


/* =========================================
   企業理念
========================================= */

.sora-top-values__philosophy {
  display: grid;
  grid-template-columns:
    minmax(260px, 0.75fr)
    minmax(0, 1.25fr);
  gap: clamp(46px, 7vw, 90px);
  align-items: start;
  padding: clamp(42px, 5vw, 64px);
  border: 1px solid #d8e8ef;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(23, 59, 85, 0.06);
}

/* メッセージ下の余白 */
.sora-top-values__message {
  position: static;
}

/* 小見出し */
.sora-top-values__label {
  margin: 0 0 13px;
  color: #176a91;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
}


/* No Smile... */
.sora-top-values__catch {
  margin: 0;
  color: #173b55;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}


/* 理念本文一覧 */
.sora-top-values__philosophy-list {
  border-top: 1px solid #d8e8ef;
}


/* 理念1項目 */
.sora-top-values__philosophy-item {
  margin: 0;
  padding: 25px 0;
  border-bottom: 1px solid #d8e8ef;
  color: #334b5b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}


/* =========================================
   行動指針
========================================= */

.sora-top-values__principles {
  margin-top: clamp(62px, 7vw, 92px);
}


.sora-top-values__principles-heading {
  max-width: 720px;
  margin-bottom: 30px;
}


/* =========================================
   会社紹介リンク
========================================= */

.sora-top-values__cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 38px;
}


.sora-top-values__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  color: #176a91;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}


.sora-top-values__link span:last-child {
  transition: transform 0.2s ease;
}


@media (hover: hover) and (pointer: fine) {
  .sora-top-values__link:hover span:last-child {
    transform: translateX(5px);
  }
}


.sora-top-values__link:focus-visible {
  outline: 3px solid #176a91;
  outline-offset: 5px;
  border-radius: 4px;
}


/* =========================================================
   タブレット
========================================================= */

@media (max-width: 1024px) {

  .sora-top-values__philosophy {
    grid-template-columns:
      minmax(220px, 0.72fr)
      minmax(0, 1.28fr);
    gap: 44px;
  }

}


/* =========================================================
   スマートフォン
========================================================= */

@media (max-width: 767px) {

  .sora-top-values {
    padding: 72px 0 80px;
  }


  .sora-top-values__heading {
    margin-bottom: 34px;
    text-align: left;
  }


  /* PCの左右配置をそのまま縮小しない */
  .sora-top-values__philosophy {
    display: block;
    padding: 28px 20px 22px;
    border-radius: 18px;
  }


  /* sticky解除 */
  .sora-top-values__message {
    position: static;
    margin-bottom: 28px;
  }


  .sora-top-values__catch {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }


  .sora-top-values__philosophy-item {
    padding: 20px 0;
    font-size: 0.94rem;
    line-height: 1.9;
  }


  .sora-top-values__principles {
    margin-top: 58px;
  }


  .sora-top-values__principles-heading {
    margin-bottom: 20px;
  }



  .sora-top-values__cta {
    justify-content: flex-start;
    margin-top: 30px;
  }

}


/* =========================================================
   動きを減らすユーザーへの配慮
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .sora-top-values__link span:last-child {
    transition: none;
  }

}
/* =========================================================
   正式6項目の行動指針に現在のHTMLを合わせる
========================================================= */

.sora-top-values__principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--sora-color-border, #d6e8ef);
}

.sora-top-values__principle {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;

  min-height: 104px;
  margin: 0;
  padding: 24px 28px;

  border-bottom: 1px solid var(--sora-color-border, #d6e8ef);
}

.sora-top-values__principle:nth-child(odd) {
  border-right: 1px solid var(--sora-color-border, #d6e8ef);
}

.sora-top-values__number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  color: var(--sora-color-primary-dark, #176a91);
  background: var(--sora-color-primary-light, #edf8fc);

  font-size: 0.8rem;
  font-weight: 700;
}

.sora-top-values__principle-title {
  margin: 0;
  color: var(--sora-color-navy, #173b55);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  line-height: 1.6;
}

.sora-top-values__principles-title {
  margin: 0;
  color: var(--sora-color-navy, #173b55);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .sora-top-values__principles-grid {
    display: block;
  }

  .sora-top-values__principle,
  .sora-top-values__principle:nth-child(odd) {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 21px 0;

    border-right: 0;
    border-bottom: 1px solid var(--sora-color-border, #d6e8ef);
  }

  .sora-top-values__number {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }

  .sora-top-values__principle-title {
    font-size: 1rem;
  }
}

/* =========================================================
   TOP：そらの日常
========================================================= */

.sora-top-daily {
  position: relative;

  overflow: hidden;

  padding-block: clamp(76px, 9vw, 124px);

  background: var(--sora-color-primary-pale, #f5fbfe);
}


/* -------------------------
   2カラム
------------------------- */

.sora-top-daily__layout {
  display: grid;

  grid-template-columns:
    minmax(300px, 0.8fr)
    minmax(0, 1.2fr);

  gap: clamp(48px, 7vw, 88px);

  align-items: center;
}


/* -------------------------
   文章
------------------------- */

.sora-top-daily__content {
  max-width: 500px;
}


.sora-top-daily__lead {
  margin: 26px 0 0;

  color: var(--sora-color-navy, #173b55);

  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
  line-height: 1.9;
}


.sora-top-daily__text {
  margin: 18px 0 0;

  color: var(--sora-color-muted, #536673);

  font-size: 1rem;
  line-height: 1.9;
}


/* CTA */
.sora-top-daily__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;

  margin-top: 34px;
}


/* 採用リンク */
.sora-top-daily__recruit-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;

  min-height: 44px;

  color: var(--sora-color-primary-dark, #176a91);

  font-size: 0.95rem;
  font-weight: 700;

  text-decoration: none;
}


.sora-top-daily__recruit-link span {
  transition: transform 0.2s ease;
}


@media (hover: hover) and (pointer: fine) {

  .sora-top-daily__recruit-link:hover span {
    transform: translateX(4px);
  }
}


.sora-top-daily__recruit-link:focus-visible {
  outline: 3px solid var(--sora-color-focus, #ffbf47);
  outline-offset: 4px;
}


/* -------------------------
   写真レイアウト
------------------------- */

.sora-top-daily__photos {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(0, 0.85fr);

  grid-template-rows: repeat(2, minmax(0, 1fr));

  gap: 14px;

  min-width: 0;
}


.sora-top-daily__photo {
  overflow: hidden;

  margin: 0;

  border-radius: 18px;

  background: #ffffff;
}


.sora-top-daily__photo--large {
  grid-row: 1 / 3;

  border-radius: 26px 26px 70px 26px;
}


.sora-top-daily__photo img {
  display: block;

  width: 100%;
  height: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;
}


.sora-top-daily__photo--large img {
  aspect-ratio: 4 / 5;
}




  /* -------------------------
     そらの日常
  ------------------------- */

  .sora-top-daily {
    padding-block: 68px;
  }


  .sora-top-daily__layout {
    display: flex;
    flex-direction: column;

    gap: 38px;
  }


  .sora-top-daily__content {
    max-width: none;
  }


  .sora-top-daily__lead {
    margin-top: 20px;

    font-size: 1.05rem;
    line-height: 1.8;
  }


  .sora-top-daily__text {
    margin-top: 14px;

    font-size: 0.95rem;
    line-height: 1.8;
  }


  .sora-top-daily__actions {
    display: grid;
    gap: 18px;

    margin-top: 28px;
  }


  .sora-top-daily__actions .sora-top-button {
    width: 100%;
  }


  .sora-top-daily__recruit-link {
    justify-content: center;
  }


  /* 写真 */
  .sora-top-daily__photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;

    gap: 10px;

    width: 100%;
  }


  .sora-top-daily__photo--large {
    grid-column: 1 / -1;
    grid-row: auto;

    border-radius: 20px 20px 50px 20px;
  }


  .sora-top-daily__photo--large img {
    aspect-ratio: 4 / 3;
  }


  .sora-top-daily__photo:not(.sora-top-daily__photo--large) img {
    aspect-ratio: 1 / 1;
  }

/* =========================================================
   「そらが大切にしていること」を非表示
========================================================= */

.sora-top-values {
  display: none;
}
/* =========================================================
   SORA DAILY
========================================================= */

.sora-daily {
  padding: 96px 24px;

  background: #ffffff;
}


.sora-daily__inner {
  max-width: 1180px;

  margin: 0 auto;
}


/* 見出し */

.sora-daily__heading {
  max-width: 680px;

  margin-bottom: 44px;
}


.sora-daily__en {
  margin: 0 0 12px;

  color: var(--sora-color-primary-dark);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}


.sora-daily__title {
  margin: 0;

  color: var(--sora-color-navy);

  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.4;
}


.sora-daily__lead {
  margin: 20px 0 0;

  color: var(--sora-color-text);

  font-size: 15px;
  line-height: 1.9;
}


/* =========================================================
   写真
========================================================= */

.sora-daily__gallery {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 18px;
}


.sora-daily__item {
  overflow: hidden;

  margin: 0;

  border-radius: 20px;

  background: #f4f8fa;
}


.sora-daily__item img {
  display: block;

  width: 100%;
  height: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  transition: transform 0.35s ease;
}


/* 1枚目だけ少し大きく見せる */

.sora-daily__item:first-child img {
  aspect-ratio: 5 / 3;
}


.sora-daily__item:hover img {
  transform: scale(1.025);
}


/* =========================================================
   Instagram
========================================================= */

.sora-daily__instagram {
  display: flex;
  justify-content: flex-end;

  margin-top: 32px;
}


.sora-daily__instagram-link {
  display: inline-flex;
  align-items: center;

  min-height: 50px;

  padding: 10px 18px;

  gap: 10px;

  border: 1px solid var(--sora-color-border);
  border-radius: 999px;

  color: var(--sora-color-navy);
  background: #ffffff;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.sora-daily__instagram-link:hover {
  border-color: var(--sora-color-primary-dark);

  transform: translateY(-2px);

  box-shadow:
    0 8px 22px rgba(23, 106, 145, 0.10);
}


.sora-daily__instagram-link:focus-visible {
  outline: 3px solid var(--sora-color-focus);
  outline-offset: 3px;
}


.sora-daily__instagram-icon {
  color: var(--sora-color-primary-dark);

  font-size: 12px;
  letter-spacing: 0.04em;
}


/* =========================================================
   スマホ
========================================================= */

@media (max-width: 767px) {

  .sora-daily {
    padding: 72px 20px;
  }


  .sora-daily__heading {
    margin-bottom: 30px;
  }


  .sora-daily__title {
    font-size: 30px;
  }


  .sora-daily__lead {
    margin-top: 16px;

    font-size: 14px;
    line-height: 1.9;
  }


  .sora-daily__lead br {
    display: none;
  }


  .sora-daily__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;
  }


  /* 1枚目を横幅いっぱいにする */

  .sora-daily__item:first-child {
    grid-column: 1 / -1;
  }


  .sora-daily__item {
    border-radius: 14px;
  }


  .sora-daily__item:first-child img {
    aspect-ratio: 16 / 10;
  }


  .sora-daily__item:not(:first-child) img {
    aspect-ratio: 1 / 1;
  }


  .sora-daily__instagram {
    justify-content: stretch;

    margin-top: 24px;
  }


  .sora-daily__instagram-link {
    justify-content: center;

    width: 100%;
  }

}
/* =========================================================
   教えて！服部先生
========================================================= */

.sora-top-tips {
  padding: 96px 24px;

  background: var(--sora-color-primary-pale);
}

.sora-top-tips__inner {
  width: min(100%, 1120px);

  margin: 0 auto;
}


/* -----------------------------------------
   見出し
------------------------------------------ */

.sora-top-tips__heading {
  max-width: 720px;

  margin: 0 auto 48px;

  text-align: center;
}

.sora-top-tips__en {
  margin: 0 0 10px;

  color: var(--sora-color-primary-dark);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sora-top-tips__title {
  margin: 0;

  color: var(--sora-color-navy);

  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.35;
}

.sora-top-tips__lead {
  margin: 18px 0 0;

  color: var(--sora-color-text);

  font-size: 15px;
  line-height: 1.9;
}


/* -----------------------------------------
   動画＋説明
------------------------------------------ */

/* =========================================================
   教えて！服部先生
   動画
========================================================= */

.sora-top-tips__content {
  display: grid;

  grid-template-columns:
    minmax(260px, 380px)
    minmax(0, 1fr);

  align-items: center;

  width: min(100%, 900px);

  margin: 0 auto;

  gap: clamp(40px, 6vw, 72px);
}


.sora-top-tips__movie {
  width: 100%;

  overflow: hidden;

  border-radius: 20px;

  background: #eef5f8;

  box-shadow:
    0 18px 44px rgba(23, 59, 85, 0.14);
}


.sora-top-tips__video {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 9 / 16;

  border: 0;
  border-radius: 20px;

  background: #eef5f8;

  object-fit: cover;
}
/* -----------------------------------------
   説明
------------------------------------------ */

.sora-top-tips__body {
  min-width: 0;
}

.sora-top-tips__category {
  margin: 0 0 12px;

  color: var(--sora-color-primary-dark);

  font-size: 13px;
  font-weight: 700;
}

.sora-top-tips__movie-title {
  margin: 0;

  color: var(--sora-color-navy);

  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.5;
}

.sora-top-tips__text {
  margin: 20px 0 0;

  color: var(--sora-color-text);

  font-size: 15px;
  line-height: 1.9;
}

/* Instagram導線 */

.sora-top-tips__link {
  display: inline-flex;
  align-items: center;

  min-height: 46px;

  margin-top: 28px;
  padding: 0 20px;

  gap: 9px;

  border: 1px solid var(--sora-color-primary-dark);
  border-radius: 999px;

  color: var(--sora-color-primary-dark);
  background: #ffffff;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.sora-top-tips__link:hover {
  color: #ffffff;
  background: var(--sora-color-primary-dark);

  transform: translateY(-1px);
}

.sora-top-tips__link:focus-visible {
  outline: 3px solid var(--sora-color-focus);
  outline-offset: 4px;
}

@media (max-width: 767px) {

  .sora-top-tips {
    padding: 64px 16px;
  }

  .sora-top-tips__heading {
    margin-bottom: 32px;
  }

  .sora-top-tips__title {
    font-size: 28px;
  }

  .sora-top-tips__lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .sora-top-tips__content {
    display: block;

    width: min(100%, 360px);
  }

  .sora-top-tips__movie,
  .sora-top-tips__video {
    border-radius: 16px;
  }

  .sora-top-tips__body {
    margin-top: 28px;
  }

  .sora-top-tips__movie-title {
    font-size: 22px;
  }

  .sora-top-tips__text {
    margin-top: 16px;

    font-size: 14px;
    line-height: 1.8;
  }

  .sora-top-tips__link {
    min-height: 46px;

    margin-top: 22px;
  }

}
/* =========================================================
   Services：最終CTA
========================================================= */

.sora-services-cta {
  padding:
    clamp(80px, 9vw, 120px)
    0;

  background:
    var(--sora-color-primary-pale, #f7fcfe);
}


.sora-services-cta__box {
  position: relative;

  overflow: hidden;

  padding:
    clamp(48px, 6vw, 72px);

  border-radius: 24px;

  background: #ffffff;

  text-align: center;

  box-shadow:
    0 18px 48px
    rgba(23, 59, 85, 0.07);
}


/* 背景装飾 */
.sora-services-cta__box::before {
  content: "";

  position: absolute;
  top: -100px;
  right: -80px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background:
    rgba(78, 173, 211, 0.09);

  pointer-events: none;
}


/* 英字 */
.sora-services-cta__en {
  position: relative;
  z-index: 1;

  margin: 0 0 12px;

  color:
    var(--sora-color-primary-dark, #176a91);

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}


/* 見出し */
.sora-services-cta__title {
  position: relative;
  z-index: 1;

  margin: 0;

  color:
    var(--sora-color-navy, #173b55);

  font-size:
    clamp(1.75rem, 3vw, 2.5rem);

  font-weight: 700;
  line-height: 1.55;
}


/* 説明文 */
.sora-services-cta__text {
  position: relative;
  z-index: 1;

  max-width: 620px;

  margin:
    18px auto 0;

  color:
    var(--sora-color-muted, #627884);

  font-size: 1rem;
  line-height: 1.9;
}


/* CTAボタン */
.sora-services-cta__button {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  min-width: 260px;

  margin-top: 30px;
  padding: 16px 28px;

  border-radius: 999px;

  color: #ffffff;

  background:
    var(--sora-color-primary-dark, #176a91);

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}


/* PC hover */
@media (hover: hover) and (pointer: fine) {

  .sora-services-cta__button:hover {
    transform: translateY(-2px);

    box-shadow:
      0 12px 26px
      rgba(23, 59, 85, 0.16);
  }

}


/* キーボード操作 */
.sora-services-cta__button:focus-visible {
  outline:
    3px solid
    var(--sora-color-focus, #ffbf47);

  outline-offset: 4px;
}


/* =========================================================
   Services CTA：スマートフォン
========================================================= */

@media (max-width: 767px) {

  .sora-services-cta {
    padding:
      68px
      0
      76px;
  }


  .sora-services-cta__box {
    padding:
      38px
      22px;

    border-radius: 18px;

    text-align: left;
  }


  .sora-services-cta__box::before {
    top: -100px;
    right: -110px;

    width: 220px;
    height: 220px;
  }


  .sora-services-cta__en {
    font-size: 0.72rem;
  }


  .sora-services-cta__title {
    font-size:
      clamp(1.5rem, 7vw, 1.95rem);
  }


  .sora-services-cta__text {
    margin-top: 14px;

    font-size: 0.92rem;
  }


  .sora-services-cta__button {
    width: 100%;

    min-width: 0;

    margin-top: 24px;

    padding:
      15px
      20px;
  }

}