@charset "UTF-8";

:root {
  --primary-color: #2067A7;
  --text-font-roboto: "Roboto", sans-serif;
  --text-color-1: #333;
  --text-color-2: #242D34;
  --text-color-3: #2067A7;
  --text-color-4: #555;
  --back-color: #fcfcfc;
}

body {
  background: var(--back-color);
  color: var(--text-color-1);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
}

body.is-menuOpen {
  overflow: hidden;
}

p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

img {
  height: auto;
  width: 100%;
  vertical-align: middle;
}

/* utility */
.main-color-to-text-b {
  color: var(--text-color-3);
  font-weight: 600;
}

.pt-16 { padding-top: 16px; }
.pb-0 { padding-bottom: 0 !important; }
.pb-24px { padding-bottom: 24px; }
.mt-8 { margin-top: 8px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }

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

/* PC */
@media screen and (min-width: 1024px) {
  p {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .pc-none { display: none; }
  .sp-none { display: block; }
  .dsp-i { display: inline !important; }
}
