/* CSS Document */

/* 変数定義 */
:root {
  --font-family: "Inter",'Noto Sans JP', sans-serif;
  --font-family-obun: "Montserrat", sans-serif;
  --font-family-jp-serif: "Noto Serif JP", serif;
  --text-color: #1f2937;
  --bg-color: #ffffff;
  --link-color: #2563eb;
  --black-color: #000;
  --black-gry-color: #111111;
  --gray-color: #dedede;
  --black-link-color: #111111;
  --white-color: #ffffff;
  --corporate-color: #a10327;
  --yelow-color: #d99104;
  --max-width: 1400px;
  --container-padding: 1rem;

  --font-base: 1.5rem; /* 16px */
  --font-sm: 1.4rem; /* 14px */
  --font-s: 1.2rem; /* 12px */
  --font-ss: 1.1rem; /* 12px */
  --font-lg: 2.0rem; /* 20px */
  --font-xl: 3.2rem; /* 32px */
}

/* 全体設定 */
html {
  font-size: 62.5%;
  scroll-padding-top: 80px; /* 固定ヘッダーの高さ分など */
}

body {
  font-family: var(--font-family);
  font-size: var(--font-base);
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  background: url(/assets/img/main_bg.gif);
  overflow-x: hidden;
  letter-spacing: 0.06em;
}

/* レイアウトベース */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* 見出し */
h1 {
  font-size: var(--font-xl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-s);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* テキスト */
p {
  line-height: 1.7;
}

.note {
  font-size: var(--font-ss);
  margin-top: 0.5rem;
}

.text__small {
  font-size: var(--font-s);
}



a:hover {
  text-decoration: underline;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ボタン */
button {
  font-size: var(--font-base);
  padding: 0.5rem 1rem;
  border: none;
  background-color: #2563eb;
  color: #fff;
  cursor: pointer;
  border-radius: 0.25rem;
}

.pc {
  display: block;
}
.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  
}