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

 base

---------------------------------------------------------*/
:root{
  --main: #2a5caa;
  --sub: #38a6eb;
  --text: #142A45;
  --black: #333;
  --white: #fff;
  --pale-blue: #e6ecf5;
  --red: #e3001a;
  --orange: #e7390d;
  --light-gray: #888;
  --max-width: calc(1200px + calc(2.5rem * 2));
  --marugo: "Zen Maru Gothic", sans-serif;
}

*, *::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;
}
html {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #f8f8f8;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  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;
}
body.is-locked {
  overflow: hidden;
  position: fixed;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  html { font-size: 3.73333vw; }
  body {
    min-width: 320px;
    line-height: 1.65;
  }
}
@media screen and (min-width: 768px) {
  html { font-size: clamp(14px, 1.2945vw, 16px); }
}
@media screen and (min-width: 1000px) {
  html { font-size: 16px; }
}