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

 base

---------------------------------------------------------*/
:target {
  scroll-margin-top: var(--header-height);
}
:root{
  --main: #2baccb;
  --main-10: #e9f7fa;
  --text: #4d4d4d;
  --white: #fff;
  --black: #2d2d2d;
  --gray-88: #888;
  --gray-de: #dedede;
  --gray-ef: #efefef;
  --gray-f4: #f4f4f4;
  --yellow: #ffed19;
  --blue: #2e6cb2;
  --blue-10: color-mix(in srgb, var(--blue) 10%, transparent);
  --orange: #d85f2d;
  --orange-10: color-mix(in srgb, var(--orange) 10%, transparent);
  --green: #4ea96d;
  --green-10: color-mix(in srgb, var(--green) 10%, transparent);
  --max-width: 72.875rem;
  --10px: 0.625rem;
  --20px: 1.25rem;
  --30px: 1.875rem;
  --40px: 2.5rem;
  --50px: 3.125rem;
  --60px: 3.75rem;
  --80px: 5rem;
  --100px: 6.25rem;
  --120px: 7.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;
  transition: all 0.15s ease;
}
a:hover {
  opacity: 0.75;
}
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;
}
svg {
  display: block;
}
html {
  height: 100%;
  font-family: sans-serif;
  font-size: clamp(14px, 3.73333vw, 16px);
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: var(--c-main);
}
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;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
    line-height: 1.65;
  }
}