/**
 * ベースリセットと要素デフォルト
 *
 * Sibloo は Bootstrap 4.1.3 を強制的に読み込み、その Reboot がリセットの多くを
 * 担う。ここでは Reboot と同じ値を自前でも宣言し、Bootstrap の有無に関わらず
 * 同じ結果になるようにする。
 */

:root {
  /* アンカーで飛んだときに上へ空ける量。固定ヘッダーを置く案件では
   * その高さに合わせる。ベースの .header は position: relative で高さを
   * 持たないため、ここでは余白としての既定値だけを持つ。 */
  --scroll-offset: 3.75rem;

  /* テキスト選択時の色 */
  --selection-bg: var(--ink);
  --selection-fg: var(--snow);

  /* hr の罫線 */
  --hr-color: var(--light-gray);
}

::selection {
  background-color: var(--selection-bg);
  color: var(--selection-fg);
}

*,
*::before,
*::after {
  /* Reboot 依存のうち最も影響が大きい。padding / sizes ユーティリティは
   * すべて border-box を前提にしている。 */
  box-sizing: border-box;
  min-width: 0px;
  min-height: 0px;
}

html {
  /* iOS の横向きで文字が自動拡大されるのを止める */
  -webkit-text-size-adjust: 100%;
  /* タップ時のハイライトを消す */
  -webkit-tap-highlight-color: transparent;

  /* 最小値13pxを保証し、1200px未満では最大22pxまでフォントサイズが流動する */
  font-size: clamp(13px, var(--font-size-base), 22px);

  @media screen and (min-width: 1200px) {
    font-size: clamp(0.1rem, var(--font-size-base), 24px);
  }
}

/**
 * ページ内リンクのスムーススクロール。
 *
 * ネイティブのハッシュ遷移に任せる。位置のオフセットは [id] の
 * scroll-margin-top が受け持つ。
 *
 * 「動きを減らす」設定の環境では即座にジャンプする。
 *
 * フォームのあるページでは 01_FormScript.js がこれを切る。validationEngine が
 * エラー箇所へ移動するときに使う jQuery の animate({ scrollTop }) と噛み合わない
 * ため。理由はそちらのコメントにある。
 */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  line-height: 1.5;
  /* 長い URL や英単語がはみ出して横スクロールを作るのを防ぐ。
   * 収まらないときだけ働くため、通常の行分割には影響しない。 */
  overflow-wrap: break-word;
  font-family: var(--font-sans);
  color: var(--ink);
  background-color: var(--ivory);
}

#root {
  margin: 0 auto;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  line-height: inherit;
}

/**
 * リスト・図・引用の margin リセット。
 *
 * 余白はユーティリティで与える方針に揃える。padding-left と list-style は
 * 既定のまま残すため、箇条書きの体裁自体は変わらない。
 */
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

/* Bootstrap の hr は margin 1rem と rgba(0,0,0,.1) の罫線を持つ。
 * 余白はユーティリティで与える方針に揃え、色は変数にする。 */
hr {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--hr-color);
}

img,
iframe,
video {
  max-width: 100%;
}

/* inline 由来の下端の隙間を防ぐ */
img,
svg {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

iframe {
  border: none;
  box-shadow: none;
}

a,
a:hover {
  color: var(--ink);
}
/* Reboot と同値。ホバー時の下線を残すかは別途判断する */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

[id] {
  scroll-margin-top: var(--scroll-offset);
}

/* ユーティリティより後に読む必要があるためここに置いている。
 * 04_padding などへ先を越されると .p-16 のような指定に負けて、
 * 視覚的に隠しきれなくなる。 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* フォーム要素はフォント関連を継承しない */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
textarea {
  resize: vertical;
}

button {
  position: relative;
  appearance: none;
  cursor: pointer;
  box-shadow: none;
  border: 0;
  background: none;
  padding: 0;
}

/**
 * フォーカスリングはキーボード操作でだけ出す。
 *
 * Bootstrap 4.1.3 は button:focus に独自のリングを当てており、詳細度が
 * (0,1,1) あるため素の button { outline: none } では打ち消せない。
 * :not(:focus-visible) を重ねて (0,2,1) にし、ポインタ操作のときだけ消す。
 *
 * Bootstrap が外れた場合も :focus-visible 側が効くため、インジケータは
 * 失われない。
 */
button:focus:not(:focus-visible) {
  outline: none;
}
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* CMS が箇条書きを <p> で出力するため、それを list-item として見せるための
 * アダプタ。ブログ固有ではないのでここに置いている。 */
.list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.5rem;
  list-style: disc outside none;

  & > p {
    margin: 0;
    display: list-item;
  }
}

/**
 * 印刷
 *
 * Bootstrap 4.1.3 は @page { size: a3 } と、body および .container への
 * min-width: 992px !important を当てており、そのままだと A3 用紙・デスクトップ幅で
 * 印刷される。これらは対になっていて、一部だけ戻すと用紙からはみ出す。
 *
 * ここでは全部戻し、画面と同じレスポンシブな見た目で印刷されるようにする。
 * デスクトップ幅で刷りたい案件は、これらを案件側で戻す。
 *
 * .container は自前では定義していない Bootstrap のクラスだが、案件が使っている
 * 場合に同じ問題が起きるため打ち消しておく。
 */
@media print {
  @page {
    size: auto;
  }

  body,
  .container {
    min-width: 0 !important;
  }
}

.section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  line-height: 1.25;
  --tracking: 0.16em;
  & h2, & h3, & h4, & h5,& h6 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
  }
  & > p {
    font-size: 0.875rem;
    color: var(--orange);
  }
  @media (min-width: 768px) {
   & h2, & h3, & h4, & h5,& h6 {
      font-size: 2rem;
    } 
  }
  @media (min-width: 1024px) {
   & h2, & h3, & h4, & h5,& h6 {
      font-size: 2.5rem;
    } 
  }
  @media (min-width: 1200px) {
   & h2, & h3, & h4, & h5,& h6 {
      font-size: 3rem;
    } 
  }
  &.section-title--snow {
    color: var(--snow);
    & p {
      color: var(--yellow);
    }
  }
  
  &.section-title--32 {
    gap: 0.5rem;
    & h2, & h3, & h4, & h5,& h6 {
      font-size: 1.25rem;
    }
    @media (min-width: 768px) {
     & h2, & h3, & h4, & h5,& h6 {
        font-size: 1.5rem;
      } 
    }
    @media (min-width: 1024px) {
     & h2, & h3, & h4, & h5,& h6 {
        font-size: 1.75rem;
      } 
    }
    @media (min-width: 1200px) {
     & h2, & h3, & h4, & h5,& h6 {
        font-size: 2rem;
      } 
    }
  }
  &.section-title--40 {
    gap: 0.5rem;
    & h2, & h3, & h4, & h5,& h6 {
      font-size: 1.25rem;
    }
    @media (min-width: 768px) {
     & h2, & h3, & h4, & h5,& h6 {
        font-size: 1.5rem;
      } 
    }
    @media (min-width: 1024px) {
     & h2, & h3, & h4, & h5,& h6 {
        font-size: 2rem;
      } 
    }
    @media (min-width: 1200px) {
     & h2, & h3, & h4, & h5,& h6 {
        font-size: 2.5rem;
      } 
    }
  }
}

.button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem 0.25rem 1rem;
  border-bottom: 0.5px solid hsl(from var(--ink) h s l / 0.6);
  line-height: 1.5;
  --tracking: 0.16em;
  font-family: var(--font-serif);
  font-size: 1rem;
  transition: all ease 200ms;
  &::after {
    content: "";
    aspect-ratio: 1 / 1;
    width: 0.625rem;
    border-radius: 9999px;
    background-color: var(--orange);
  }
  &:hover {
    text-decoration: none;
    opacity: 0.85;
    border-color: hsl(from var(--ink) h s l / 0.5);
  }
}

.page-hero {
  position: relative;
  padding-top: 7.5rem;
  padding-left: 1.25rem;
  @media (min-width: 768px) {
    padding-top: 12.5rem;
    padding-left: 2.5rem;
  }
  @media (min-width: 1024px) {
    padding-left: 3.75rem;
  }
  @media (min-width: 1200px) {
    padding-left: 7.5rem;
  }
  &::before {
    content: "";
    aspect-ratio: 953 / 965;
    width: 34.75rem;
    background-image: url("/system_panel/uploads/images/stump.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -1.5rem;
    left: -4.5rem;
    filter: blur(2px);
  }
  
  & .page-hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 0 1.25rem 3rem;
    height: 15rem;
    @media (min-width: 768px) {
      padding-inline: 2.5rem;
      height: 20rem;
    }
    @media (min-width: 1024px) {
      padding-inline: 3.75rem;
      height: 25rem;
    }
  }
  
  & .page-hero__title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    line-height: 1.25;
    --tracking: 0.16em;
    color: var(--snow);
    & h1 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
    }
    & > p {
      font-size: 0.875rem;
    }
    @media (min-width: 768px) {
     & h1 {
        font-size: 2rem;
      } 
    }
    @media (min-width: 1024px) {
     & h1 {
        font-size: 2.5rem;
      } 
    }
    @media (min-width: 1200px) {
     & h1 {
        font-size: 3rem;
      } 
    }
  }
}

.philosophy--title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -65%);
  background-color: var(--snow);
  padding-inline: 0.5rem;
  @media (min-width: 768px) {
    padding-inline: 3rem;
  }
}

.swiper:not(.swiper-initialized) {
  & .swiper-wrapper {
    display: flex;
    overflow: auto;
  }
  & .swiper-slide {
    min-width: 85%;
  }
}

.services-slider {
  width: 100%;
  overflow: visible;
}




