@charset "utf-8";


/* =========================================================
   社会保険労務士法人そら
   全ページ共通CSS
========================================================= */


/* =========================================================
   1. ブランドカラー
========================================================= */

: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;

  --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);
}

/* =========================================================
   全ページ共通フォント
========================================================= */

html,
body {
  font-family:
    "Noto Sans JP",
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;

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

  font-weight: 400;

  font-synthesis: none;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Noto Sans JP",
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

/* ボタン・フォームも本文フォントを引き継ぐ */
button,
input,
select,
textarea {
  font: inherit;
}


/* =========================================================
   ページ全体のスクロールを正常化
========================================================= */

html {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  min-height: 100%;
  height: auto;

  overflow-x: hidden;
  overflow-y: auto;

  -webkit-overflow-scrolling: touch;
}

main,
footer {
  height: auto;
  overflow: visible;
}


/* =========================================================
   3. ハンバーガー
   PCでは非表示
========================================================= */

.hamburger {
  display: none;
}


/* =========================================================
   PC Header
========================================================= */

@media (min-width: 768px) {

  /* =========================================================
   SORAについて ドロップダウン
========================================================= */

.p-header__item--has-submenu {
  position: relative;
}

.p-header__submenu-button {
  display: inline-flex;
  align-items: center;

  min-height: 44px;

  margin: 0;
  padding: 0;

  gap: 6px;

  border: 0;

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

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

  white-space: nowrap;

  cursor: pointer;
}

.p-header__submenu-button:hover {
  color: var(--sora-color-primary-dark);
}

.p-header__submenu-icon {
  font-size: 13px;

  transition: transform 0.2s ease;
}

.p-header__submenu-button[aria-expanded="true"]
.p-header__submenu-icon {
  transform: rotate(45deg);
}


.p-header__submenu {
  position: absolute;

  top: calc(100% + 8px);
  left: 50%;

  z-index: 1010;

  display: none;

  width: 230px;

  margin: 0;
  padding: 10px;

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

  border-radius: 12px;

  background: #ffffff;

  box-shadow:
    0 16px 36px rgba(23, 59, 85, 0.12);

  list-style: none;

  transform: translateX(-50%);
}

.p-header__submenu.is-open {
  display: block;
}

.p-header__submenu a {
  display: block;

  padding: 12px 14px;

  border-radius: 8px;

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

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

  text-decoration: none;
}

.p-header__submenu a:hover {
  color: var(--sora-color-primary-dark);

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

  #hp_menu_bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 82px;
    min-height: 82px;

    padding: 10px clamp(20px, 3vw, 48px);

    box-sizing: border-box;

    background: #ffffff;

    box-shadow: 0 2px 12px rgba(23, 59, 85, 0.08);
  }
@media (min-width: 768px) {

  #hp_menu_bar .logo_wrap {
    flex: 0 0 auto;

    margin: 0;
    padding: 0;
  }


  #hp_menu_bar .logo_wrap a {
    display: flex;
    align-items: center;

    height: 62px;

    text-decoration: none;
  }


  #hp_menu_bar .logo_wrap img {
    display: block;

    width: clamp(150px, 13vw, 185px);
    height: auto;

    max-height: 52px;

    margin: 0;

    object-fit: contain;
  }

}

  /* ロゴ */
  #hp_menu_bar .logo_wrap {
    flex: 0 0 auto;

    margin: 0;
    padding: 0;
  }

  #hp_menu_bar .logo_wrap a {
    display: flex;
    align-items: center;

    height: 62px;
  }
#hp_menu_bar .logo_wrap img {
  display: block;

  width: clamp(150px, 13vw, 185px);
  height: auto;

  max-height: 52px;

  margin: 0;

  object-fit: contain;
}
 
  /* ナビ */
  #global-navigation {
    flex: 1 1 auto;

    min-width: 0;

    margin: 0 0 0 clamp(24px, 3vw, 48px);
    padding: 0;
  }

  #global-navigation .p-header__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    margin: 0;
    padding: 0;

    gap: clamp(14px, 1.5vw, 26px);

    list-style: none;
  }

  #global-navigation .p-header__item {
    margin: 0;
    padding: 0;
  }

  #global-navigation .p-header__link {
    display: inline-flex;
    align-items: center;

    min-height: 44px;

    margin: 0;
    padding: 0;

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

    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;

    white-space: nowrap;
    text-decoration: none;
  }

  #global-navigation .p-header__link:hover {
    color: var(--sora-color-primary-dark);
  }

  /* PCヘッダー 通常リンクの矢印 */
#global-navigation .p-header__link::after {
  content: "›";

  display: inline-block;

  margin-left: 5px;

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

  font-size: 17px;
  font-weight: 400;
  line-height: 1;

  transform: translateX(0);

  transition: transform 0.2s ease;
}


#global-navigation .p-header__link:hover::after {
  transform: translateX(3px);
}



#global-navigation .p-header__link:hover::after {
  transform: translateX(3px);
}
/* =========================================================
   Header Actions
========================================================= */

.p-header__actions {
  display: flex;
  align-items: center;

  flex: 0 0 auto;

  margin-left: clamp(16px, 2vw, 28px);
}


/* お問い合わせ */
.p-header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 16px;

  gap: 9px;

  border-radius: 10px;

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

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

  white-space: nowrap;
  text-decoration: none;

  box-shadow:
    0 8px 20px rgba(23, 106, 145, 0.16);

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

.p-header__contact:hover {
  color: #ffffff;

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

  transform: translateY(-1px);

  box-shadow:
    0 10px 24px rgba(23, 59, 85, 0.20);
}


/* お問い合わせ矢印 */
.p-header__contact-arrow {
  font-size: 15px;

  transition: transform 0.2s ease;
}

.p-header__contact:hover .p-header__contact-arrow {
  transform: translateX(3px);
}

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

@media (max-width: 767px) {

  /* =======================================================
     Header固定分の余白
  ======================================================= */

  body {
    padding-top: 72px;
  }


  /* =======================================================
     Header本体
  ======================================================= */

  #hp_menu_bar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    display: flex;
    align-items: center;

    width: 100%;
    height: 72px;
    min-height: 72px;

    margin: 0;
    padding: 10px 16px;

    background: #ffffff;

    box-sizing: border-box;

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

@media (max-width: 767px) {

  #hp_menu_bar .logo_wrap {
    position: relative;

    z-index: 1002;

    flex: 0 1 auto;

    min-width: 0;
    max-width: calc(100% - 72px);

    margin: 0;
    padding: 0;
  }


  #hp_menu_bar .logo_wrap img {
    display: block;

    width: min(150px, 50vw);
    height: auto;

    max-height: 44px;

    object-fit: contain;
  }

}
  /* =======================================================
     ロゴ
  ======================================================= */



  #hp_menu_bar .logo_wrap {
    position: relative;

    z-index: 1002;

    flex: 0 1 auto;

    min-width: 0;
    max-width: calc(100% - 72px);

    margin: 0;
    padding: 0;
  }


  #hp_menu_bar .logo_wrap a {
    display: block;
  }


  #hp_menu_bar .logo_wrap img {
  display: block;

  width: min(150px, 50vw);
  height: auto;

  max-height: 44px;

  object-fit: contain;
}

  /* =======================================================
     ハンバーガーボタン
  ======================================================= */

  .hamburger {
    position: absolute;

    top: 12px;
    right: 16px;

    z-index: 1003;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin: 0;
    padding: 0;

    gap: 5px;

    border: 1px solid rgba(23, 106, 145, 0.18);
    border-radius: 12px;

    background: #ffffff;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    box-sizing: border-box;
  }


  /* 三本線 */
  .hamburger span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 999px;

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

    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }


  /* OPEN時：☰ → × */
  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }


  .hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }


  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  /* キーボード操作時 */
  .hamburger:focus-visible {
    outline: 3px solid var(--sora-color-focus);
    outline-offset: 3px;
  }


  /* =======================================================
     モバイルナビゲーション
  ======================================================= */
/* =======================================================
   モバイルナビゲーション
======================================================= */

#global-navigation {
  position: fixed;

  top: 72px;
  right: 0;

  z-index: 1001;

  display: block;

  width: min(86vw, 360px);

  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);

  margin: 0;

  padding:
    20px
    24px
    max(32px, env(safe-area-inset-bottom));

  overflow-y: auto;
  overscroll-behavior: contain;

  background: #ffffff;

  box-shadow:
    -18px 10px 48px rgba(23, 59, 85, 0.14);

  transform: translateX(105%);
  visibility: hidden;

  transition:
    transform 0.25s ease,
    visibility 0.25s ease;
}


#global-navigation.is-open {
  transform: translateX(0);
  visibility: visible;
}

  /* =======================================================
     メニュー一覧
  ======================================================= */

  #global-navigation .p-header__list {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
  }


  #global-navigation .p-header__item {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;

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

#global-navigation .p-header__link {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: 58px;

  padding: 14px 36px 14px 4px;

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

  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;

  text-decoration: none;
}


/* 通常リンクの矢印 */
#global-navigation .p-header__link::after {
  content: "→";

  position: absolute;

  top: 50%;
  right: 4px;

  display: block;

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

  font-size: 16px;
  font-weight: 500;
  line-height: 1;

  opacity: 1;
  visibility: visible;

  transform: translateY(-50%);
}

  #global-navigation .p-header__link:focus-visible {
    outline: 3px solid var(--sora-color-focus);
    outline-offset: 3px;
  }


  /* =======================================================
     SORAについて
     スマホサブメニュー
  ======================================================= */

  .p-header__item--has-submenu {
    position: static;
  }


  .p-header__submenu-button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 58px;

    margin: 0;
    padding: 14px 4px;

    border: 0;

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

    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;

    text-align: left;

    cursor: pointer;
  }


  .p-header__submenu {
    position: static;

    display: none;

    width: 100%;

    margin: 0;
    padding: 0 0 12px 16px;

    border: 0;

    background: transparent;

    box-shadow: none;

    list-style: none;

    transform: none;
  }


  .p-header__submenu.is-open {
    display: block;
  }


  .p-header__submenu li {
    margin: 0;
    padding: 0;

    border: 0;
  }


  .p-header__submenu a {
    display: block;

    width: 100%;

    padding: 11px 8px;

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

    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;

    text-decoration: none;
  }


  .p-header__submenu-icon {
    flex: 0 0 auto;

    margin-left: 12px;

    transition: transform 0.2s ease;
  }


  .p-header__submenu-button[aria-expanded="true"]
  .p-header__submenu-icon {
    transform: rotate(45deg);
  }


  /* =======================================================
     スマホ お問い合わせCTA
  ======================================================= */

  .p-header__mobile-contact {
    width: 100%;

    margin-top: 28px;
  }


  .p-header__mobile-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 56px;

    padding: 14px 20px;

    gap: 10px;

    border-radius: 12px;

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

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

    text-decoration: none;

    box-shadow:
      0 10px 24px rgba(23, 106, 145, 0.18);
  }


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


  /* =======================================================
     メニューOPEN中
  ======================================================= */

  body.is-menu-open {
    overflow: hidden;
  }


  /* 背景オーバーレイ */
  body.is-menu-open::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: 999;

    background: rgba(23, 59, 85, 0.34);
  }

}
 

/* =========================================================
   PAGE TOP
   PC・スマートフォン共通
========================================================= */

#ftInfo {
  position: relative;

  width: 100%;
  height: auto;

  overflow: visible;

  background: #ffffff;
}

#ftInfo .pagetop {
  width: 48px;
  height: 48px;

  margin: 0;
  padding: 0;
}

#ftInfo .pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin: 0;
  padding: 0;

  border-radius: 50%;

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

  box-sizing: border-box;

  text-decoration: none;

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

#ftInfo .pagetop a img {
  display: block;

  width: 18px;
  height: 18px;

  margin: 0;
  padding: 0;

  object-fit: contain;
}


/* マウスを乗せたとき */
#ftInfo .pagetop a:hover {
  background: var(--sora-color-navy);

  transform: translateY(-2px);
}


/* キーボード操作 */
#ftInfo .pagetop a:focus-visible {
  outline: 3px solid var(--sora-color-focus);
  outline-offset: 4px;
}


/* =========================================================
   PAGE TOP
   PC
========================================================= */

@media (min-width: 768px) {
  .p-header__mobile-contact {
  display: none;
}

  #ftInfo {
    min-height: 72px;
  }

  #ftInfo .pagetop {
    position: absolute;

    right: 24px;
    bottom: 12px;
  }

}
/* =========================================================
   Footer 共通カラー
   Headerとブランドカラーを統一
========================================================= */

footer {
  color: var(--sora-color-text);
  background: #ffffff;
}


/* Footer見出し */
.p-footer__group-title {
  color: var(--sora-color-navy);
}


/* Footerリンク */
.p-footer__link {
  color: var(--sora-color-text);
}


/* SNSタイトル */
.p-footer__sns-title {
  color: var(--sora-color-navy);
}


/* 区切り線 */
.p-footer__item {
  border-color: var(--sora-color-border);
}


/* ご相談・お問い合わせ */
.p-footer__contact-link {
  color: #ffffff;
  background: var(--sora-color-primary-dark);
}

/* =========================================================
   Copyright
   PC・スマートフォン共通
========================================================= */

.l-copyright {
  width: 100%;

  margin: 0;
  padding: 0;

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

.p-copyright {
  width: 100%;

  margin: 0;
  padding: 18px 16px;

  color: #ffffff;

  font-size: 12px;
  line-height: 1.6;

  text-align: center;

  background: transparent;

  box-sizing: border-box;
}


/* =========================================================
   Footer 共通基本設定
   PC・スマホ共通
========================================================= */

footer,
footer * {
  box-sizing: border-box;
}


/* Footerロゴ */
.p-footer__logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 8px;

  color: inherit;
  text-decoration: none;
}

.p-footer__logo-link > img {
  display: block;

  width: 180px;
  max-width: 100%;
  height: auto;
}

.p-footer__logo .name {
  display: block;

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

  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}


/* 住所 */
.p-footer__address-wrap {
  margin-top: 24px;

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

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

.p-footer__address {
  margin: 0;

  font-style: normal;
}

.p-footer__address-link {
  display: inline-block;

  margin-top: 8px;

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

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

  text-decoration: underline;
  text-underline-offset: 3px;
}


/* 電話 */
.p-footer__tel-wrap {
  margin-top: 20px;
}

.p-footer__tel-wrap p {
  margin: 0;
}

.p-footer__tel-wrap a {
  display: flex;
  align-items: center;

  min-height: 44px;

  gap: 10px;

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

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

  text-decoration: none;
}


/* メール */
.p-footer__mail-wrap {
  margin-top: 14px;
}

.p-footer__mail {
  display: flex;
  align-items: center;

  margin: 0;

  gap: 10px;
}

.p-footer__mail + .p-footer__mail {
  margin-top: 10px;
}

.p-footer__mail a {
  color: var(--sora-color-text);

  font-size: 14px;
  line-height: 1.6;

  overflow-wrap: anywhere;
  text-decoration: none;
}


/* SNS */
.p-footer__sns-title {
  margin: 24px 0 12px;

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

  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.p-footer__sns-wrap {
  display: flex;
  align-items: center;

  margin: 0;
  padding: 0;

  gap: 14px;

  list-style: none;
}

.p-footer__sns {
  margin: 0;
  padding: 0;
}

.p-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

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

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

  text-decoration: none;
}

.p-footer__sns-link img {
  display: block;

  width: 20px;
  height: 20px;

  object-fit: contain;
}


/* =========================================================
   全ページ共通の基本設定
========================================================= */

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   Footer
   PC
========================================================= */

@media (min-width: 768px) {

  

  .p-footer__inner {
    display: grid;

    grid-template-columns:
      minmax(280px, 0.8fr)
      minmax(0, 1.4fr);

    width: min(100% - 64px, 1180px);

    margin: 0 auto;
    padding: 72px 0 64px;

    gap: 72px;
  }


  /* 法人情報 */
  .p-footer__info {
    grid-column: 1;
    grid-row: 1;
  }


  /* ナビ全体 */
  .p-footer__nav-wrap {
    grid-column: 2;
    grid-row: 1;
  }


  .p-footer__nav {
    display: grid;

    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 36px 28px;
  }


  /* 各グループ */
  .p-footer__group {
    min-width: 0;
  }


  /* 見出し */
  .p-footer__group-title {
    margin: 0 0 14px;

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

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


  /* リスト */
  .p-footer__list {
    margin: 0;
    padding: 0;

    list-style: none;
  }


  .p-footer__item {
    margin: 0;
  }


  .p-footer__item + .p-footer__item {
    margin-top: 8px;
  }


  .p-footer__link {
    display: inline-flex;
    align-items: center;

    min-height: 36px;

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

    font-size: 14px;
    line-height: 1.6;

    text-decoration: none;

    transition: color 0.2s ease;
  }


  .p-footer__link:hover {
    color: var(--sora-color-primary-dark);
  }


  /* お問い合わせ */
  .p-footer__group--contact {
    grid-column: 1 / -1;

    margin-top: 4px;
  }


  .p-footer__contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: min(100%, 360px);
    min-height: 56px;

    padding: 14px 20px;

    border-radius: 12px;

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

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

    text-decoration: none;

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


  .p-footer__contact-link:hover {
    background: var(--sora-color-navy);

    transform: translateY(-2px);
  }


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

}



/* =========================================================
   Footer 電話・メールアイコン
   PC・スマートフォン共通
========================================================= */
 

.p-footer__contact-icon {
  display: block;

  flex: 0 0 auto;

  width: 36px;
  height: 36px;

  object-fit: contain;
}

.p-footer__tel-wrap a,
.p-footer__mail {
  display: flex;
  align-items: center;

  gap: 10px;
}

.p-footer__mail a {
  overflow-wrap: anywhere;
}


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

@media (max-width: 767px) {

  /* =========================================================
   Footer 新ナビ
   スマートフォン
========================================================= */

.p-footer__group {
  width: 100%;
}


.p-footer__group + .p-footer__group {
  margin-top: 28px;
}


.p-footer__group-title {
  margin: 0 0 10px;

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

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


.p-footer__group .p-footer__list {
  width: 100%;

  margin: 0;
  padding: 0;

  list-style: none;
}


.p-footer__group .p-footer__item {
  width: 100%;

  margin: 0;

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


.p-footer__group .p-footer__link {
  position: relative;

  display: flex;
  align-items: center;

 
  width: 100%;
  min-height: 50px;

  padding: 12px 30px 12px 4px;

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

  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;

  text-decoration: none;
}

/* 右側の矢印 */
.p-footer__group .p-footer__link::after {
  content: "→";

  position: absolute;

  top: 50%;
  right: 4px;

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

  font-size: 14px;

  transform: translateY(-50%);
}


/* ご相談・お問い合わせ */
.p-footer__group--contact {
  margin-top: 32px;
}


.p-footer__contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 56px;

  padding: 14px 18px;

  border-radius: 12px;

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

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

  text-decoration: none;

  box-shadow:
    0 10px 24px rgba(23, 106, 145, 0.14);
}


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

  footer {
    position: static;

    width: 100%;
    height: auto;

    overflow: visible;

    color: var(--sora-color-text);
    background: #ffffff;
  }

  /* Footer全体 */
  .p-footer__inner {
    position: static;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: min(100% - 32px, 560px);
    height: auto;

    margin: 0 auto;
    padding: 48px 0 40px;

    gap: 40px;

    overflow: visible;
  }


  /* 法人情報 */
  .p-footer__info {
    order: 1;

    width: 100%;
    height: auto;
  }


  /* ナビ・SNS */
  .p-footer__nav-wrap {
    order: 2;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: auto;

    gap: 24px;
  }


  /* Footerナビ */
  .p-footer__nav {
    display: block;

    width: 100%;
    height: auto;

    overflow: visible;
  }


  /* ロゴ */
  .p-footer__logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 8px;

    text-decoration: none;
  }

  .p-footer__logo-link > img {
    display: block;

    width: min(170px, 52vw);
    height: auto;
  }


  /* 住所 */
  .p-footer__address-wrap {
    margin-top: 24px;

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

  .p-footer__address {
    margin: 0;

    font-style: normal;
  }


  /* 電話 */
  .p-footer__tel-wrap {
    margin-top: 20px;
  }

  .p-footer__tel-wrap p {
    margin: 0;
  }

  .p-footer__tel-wrap a {
    display: flex;
    align-items: center;

    min-height: 44px;

    gap: 10px;

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

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

    text-decoration: none;
  }


  /* メール */
  .p-footer__mail-wrap {
    margin-top: 14px;
  }

  .p-footer__mail {
    display: flex;
    align-items: center;

    margin: 0;

    gap: 10px;
  }

  .p-footer__mail + .p-footer__mail {
    margin-top: 10px;
  }

  .p-footer__mail a {
    color: var(--sora-color-text);

    font-size: 14px;
    line-height: 1.6;

    overflow-wrap: anywhere;
    text-decoration: none;
  }


  /* 電話・メールアイコン */
.p-footer__contact-icon {
  flex-basis: 32px;

  width: 32px;
  height: 32px;
}

  /* SNS */
  .p-footer__sns-wrap {
    display: flex;
    align-items: center;

    width: 100%;

    margin: 0;
    padding: 0;

    gap: 14px;

    list-style: none;
  }

  .p-footer__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

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

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

  .p-footer__sns-link img {
    display: block;

    width: 20px;
    height: 20px;

    object-fit: contain;
  }


  /* PAGE TOP */

  #ftInfo .pagetop {
    position: static;

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

    width: min(100% - 32px, 560px);
    height: auto;

    margin: 0 auto;
    padding: 0 0 18px;
  }



}


/* =========================================================
   Footer 電話・メールアイコン
========================================================= */


/* =========================================================
   5. 動きを減らす設定
========================================================= */

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

  .hamburger span,
  #global-navigation {
    transition: none;
  }

}
/* =========================================================
   準備中ページ
========================================================= */

.page-placeholder {
  width: min(100% - 40px, 960px);

  margin: 0 auto;
  padding: 160px 0 120px;

  text-align: center;
}

.page-placeholder__en {
  margin: 0 0 10px;

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

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

.page-placeholder h1 {
  margin: 0;

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

  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.4;
}

.page-placeholder p {
  max-width: 640px;

  margin: 24px auto 0;

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

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

.page-placeholder a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  margin-top: 32px;
  padding: 0 22px;

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

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

  font-weight: 700;

  text-decoration: none;
}


@media (max-width: 767px) {

  .page-placeholder {
    padding: 120px 0 80px;
  }

}
