@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/* ========================================

1.ベースグループ

======================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: justify;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 62.5%;
  font-weight: var(--font-weight-light);
  line-height: 1.6;
}

body {
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
  background-color: var(--recruit-color-base);
  color: var(--recruit-color-text1);
  -webkit-text-size-adjust: 100%;
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overscroll-behavior: none;
}

footer {
  background: var(--recruit-color-accent005);
  z-index: 10;
}

ol,
ul {
  list-style: none;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
  width: 100%;
}

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

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
section,
summary {
  display: block;
}

/*========== ベース設定（文字サイズ） ==========*/

h1 {
  --fluid-type-min: 3.88rem;
  --fluid-type-rcm: 6.87vw;
  --fluid-type-max: 4.52rem;
  letter-spacing: 0.05em;
}

h2 {
  --fluid-type-min: 2.66rem;
  --fluid-type-rcm: 4.23vw;
  --fluid-type-max: 3.14rem;
  letter-spacing: 0.04em;
}

h3 {
  --fluid-type-min: 1.98rem;
  --fluid-type-rcm: 2.63vw;
  --fluid-type-max: 2.36rem;
  letter-spacing: 0.03em;
}

h4 {
  --fluid-type-min: 1.61rem;
  --fluid-type-rcm: 2.11vw;
  --fluid-type-max: 1.97rem;
  letter-spacing: 0.02em;
}

h5 {
  --fluid-type-min: 1.2rem;
  --fluid-type-rcm: 0.87vw;
  --fluid-type-max: 1.46rem;
  letter-spacing: 0.02em;
}

h6 {
  --fluid-type-min: 1.44rem;
  --fluid-type-rcm: 0.53vw;
  --fluid-type-max: 1.76rem;
  letter-spacing: 0.02em;
}

p,
a,
li,
th,
td {
  --fluid-type-min: 1.6rem;
  --fluid-type-rcm: 1.6vw;
  --fluid-type-max: 1.8rem;
  font-weight: var(--font-weight-light);
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
th,
td {
  font-size: clamp(var(--fluid-type-min), calc(1rem + var(--fluid-type-rcm)), var(--fluid-type-max));
}

strong {
  font-size: 1.05em;
  font-weight: var(--font-weight-medium);
}

sup {
  font-size: 0.5em;
}
