@charset "UTF-8";
/* --------------------------------------------------------

 base

---------------------------------------------------------*/
:root{
  --header-height: 6.25rem;
  --text: #161925;
  --white: #fff;
  --red: #e42d20;
  --green: #509646;
  --lime: #e5ea48;
  --orange: #e8843b;
  --navy: #004098;
  --max-width: calc(1200px + 5rem);
  --font-12: .75rem;
  --font-13: .813rem;
  --font-14: .875rem;
  --font-15: .938rem;
  --font-18: 1.125rem;
  --font-20: 1.25rem;
  --font-24: 1.5rem;
  --font-26: 1.625rem;
  --font-30: 1.875rem;
  --font-34: 2.125rem;
  --font-40: 2.5rem;
  --font-60: 3.75rem;
  --size-24: 1.5rem;
  --size-60: 3.75rem;
  --size-80: 5rem;
  --size-120: 7.5rem;
  --space-10: 0.625rem;
  --space-20: 1.25rem;
  --space-30: 1.875rem;
  --space-40: 2.5rem;
  --space-50: 3.125rem;
  --space-60: 3.75rem;
  --space-80: 5rem;
  --space-120: 7.5rem;
  --radius-10: 0.625rem;
  --radius-20: 1.25rem;
  --radius-30: 1.875rem;
  --radius-40: 2.5rem;
}
*, *::before, *::after {
  box-sizing: border-box;
}
blockquote,body,button,dd,dl,fieldset,h1,h2,h3,h4,h5,h6,hr,iframe,input,legend,ol,option,p,
pre,select,td,textarea,th,ul {
  margin: 0;
  padding: 0;
  border: none;
}
main {
  display: block;
}
h1,h2,h3,h4,h5,h6,small,strong,sub,sup,th {
  font-size: inherit;
  font-weight: inherit;
}
a{
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
}
sup {
  vertical-align: baseline;
}
svg {
  overflow: visible;
}
address {
  font-style: normal;
  text-decoration: none;
}
figure {
  margin: 0;
}
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}
button {
  width: 100%;
  font-size: 16px;
  text-transform: none;
  margin: 0;
  border: none;
  cursor: pointer;
  overflow: visible;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

html {
  height: 100%;
  font-family: sans-serif;
  font-size: clamp(14px, 3.73333vw, 16px);
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
    line-height: 1.65;
  }
}