@charset "UTF-8";
header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5rem;
  border-bottom: 1px solid #c7c6c5;
}
header .header-container .header-nav ul {
  display: flex;
  gap: 1rem;
}
header .header-container .header-nav ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
header .header-container .header-actions ul {
  display: flex;
  gap: 1rem;
}
header .header-container .header-actions ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 29px;
}
header .header-container .header-actions ul li:nth-of-type(1) a {
  color: #00a483;
  border: 1px solid #00a483;
}
header .header-container .header-actions ul li:nth-of-type(2) a {
  background: linear-gradient(90deg, #00a483, #00bdc9);
  color: #ffffff;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5rem;
  box-sizing: content-box;
}

.gradient-text {
  background: linear-gradient(90deg, #00a483, #00bdc9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* reset.scss */
/* ボックスサイズを統一（padding/borderをwidth/heightに含める） */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 余計なマージンのリセット */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* デフォルトフォントサイズ・背景色・文字色の初期化 */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: #fff;
  color: #000;
}

/* リストのデフォルトスタイル解除 */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* リンクのデフォルト色・下線を解除（必要に応じて再設定） */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像・動画をコンテナ幅に合わせる */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム要素をリセットして継承 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  margin: 0;
  border: none;
  background: none;
  padding: 0;
}

/* ボタンはカーソルをポインターに */
button {
  cursor: pointer;
}

/* テキストエリアのリサイズを縦方向だけに */
textarea {
  resize: vertical;
}

/* テーブルの余白・境界線処理 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 引用の装飾を解除 */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* 見出しサイズはリセット（後でSCSSで再指定） */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

#clients {
  --gap: 32px; /* pxにして端数を避ける */
  --pad: 16px;
  --logo-h: 128px;
  padding-block: 6rem;
  background: #fff;
  display: grid;
  gap: 2rem;
}
#clients h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
#clients .marquee {
  overflow: hidden;
  padding-inline: var(--pad);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
#clients .marquee .track {
  display: flex; /* .logos を横に並べる */
  width: max-content;
  will-change: transform; /* GPUヒント */
  transform: translate3d(0, 0, 0);
}
#clients .marquee .track .logos {
  display: flex;
  flex: 0 0 auto;
  gap: 0; /* サブピクセルを避けるため gap は使わない */
}
#clients .marquee .track .logos img {
  height: var(--logo-h);
  width: auto;
  object-fit: contain;
  display: block;
  margin-right: var(--gap); /* 等間隔は margin で整数px運用 */
}
#clients .marquee .track .logos img:last-child {
  margin-right: 0;
}

/*# sourceMappingURL=lp-common.css.map */
