@charset "UTF-8";

/* =============================
    Base
============================= */

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
  color: #625449;
  background-color: #fff;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  padding-top: 120px; /* ヘッダーの高さ分 */
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =============================
    リンク先をヘッダー分スクロール
============================= */

[id] {
  scroll-margin-top: 80px;
}

@media screen and (min-width: 768px) {
  [id] {
    scroll-margin-top: 90px;
  }
}

@media screen and (min-width: 1024px) {
  [id] {
    scroll-margin-top: 110px;
  }
}

.c-section-heading {
  margin: 0;
  font-family: "GFS Didot", serif;
  font-size: clamp(2.5rem, 2rem + 1.2vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #222;
}

/* =========================
   Component: Button
========================= */

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  height: 60px;
  padding: 14px 24px;
  border: 1px solid #3A86FF;
  border-radius: 10px;
  background-color: #3A86FF;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

.c-btn:hover {
  background-color: #fff;
  color: #3A86FF;
}

.l-footer__copyright {
  text-align: center;
}