@charset "UTF-8";

@font-face {
  font-family: 'mamelon';
  src: url('../fonts/Mamelon-5-Hi-Regular.woff2') format("woff2");
  font-display: swap;
}

:root {
  --black: #1c1c1c;
  --green-main: #149580;
  --green-deep: #0F7060;
  --green-pale: #F3FAF9;
  --blue-main: #0591AD;
  --blue-deep: #0559ad;
  --gray-main: #788785;
  --gray-pale: #E2E4E4;
  --emph-color: #e13e53;
  --yellow: #FFD62F;
  --yellow-green: #F4F7EE;
  --font: "Kiwi Maru", serif;
  --font_en: "Barlow Condensed", sans-serif;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100vh;
  line-height: 1.8;
  margin: 0;
  background-color: var(--green-pale);
  color: var(--black);
  font-family: var(--font);
  letter-spacing: .1em;
  line-height: 2;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.6;
}
button, input, label {
  line-height: 1.1;
}

a:not([class]) {
  color: currentColor;
}

img,
picture {
  max-width: 100%;
}

input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

a {
  text-decoration: none;
}

img {
  height: auto;
}

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

table {
  border: 2px solid var(--black);
  th {
    background: var(--green-pale);
    text-align: center;
    border-left: 1px solid var(--green-deep);
    border-bottom: 1px solid var(--green-deep);
    padding: 6px 10px;
  }
  td {
    border-left: 1px solid var(--green-deep);
    border-bottom: 1px solid var(--green-deep);
    padding: 6px 10px;
  }
}

.sp {
  @media (min-width:768px) {
    display: none;
  }
}
.pc {
  @media (max-width:767px) {
    display: none;
  }
}

code {
  background: var(--yellow-green);
  border: 1px solid var(--gray-main);
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 2px 5px 3px;
}
