@charset "UTF-8";

/* =================================================
RESET & BASE
================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.78;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

p {
  margin: 0 0 1em;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

address {
  font-style: normal;
}

:root {
  --c-orange: #C97A2F;
  --c-orange-dark: #d97a1c;
  --c-orange-soft: #f8efe2;
  --c-navy: #1f2a47;
  --c-navy-deep: #15203b;
  --c-bg: #ffffff;
  --c-text: #222;
  --c-muted: #8a8a8a;
  --c-rule: #e6e6e6;
  --c-green: #2e9c5b;
  --c-red: #d94a4a;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --container: 1120px;
  --gutter: 24px;
}

/* utility */
.skip-link {
  position: absolute;
  top: -1000px;
  left: 0;
  background: var(--c-navy);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
}
.skip-link:focus {
  top: 0;
}
@media (max-width: 767px) {

  .pc-only {
    display: none !important;
  }

}
@media (min-width: 768px) {

  .sp-only {
    display: none !important;
  }

}


/* =================================================
PRINT
================================================= */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .back-to-top {
    display: none;
  }
  body {
    background: #fff;
  }
}
