@charset "UTF-8";
/*-------------------------------------------
  　リセット
-------------------------------------------*/
*,
*::before,
*::after{
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  font-style: normal;
  box-sizing: border-box;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

ul{
  list-style: none;
}
/*-------------------------------------------
  　ショートコード
-------------------------------------------*/
*{
  --red: #ff4300;
  --blue: #0086a0;
  --pail-blue: #a8dee5;
  --light-blue: #daf3f2;
  --bg-gray: #f5f5f5;
  --white: #FFFFFF;
  --black: #000000;
  --box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  --drop-shadow: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
  --radius: 8px;
  --radius-large: 30px;
  --skew: 5deg;
}
/*-------------------------------------------
  　ベース
-------------------------------------------*/
html {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 11px;
}

body {
  font-weight: 400;
  color: #1C1E2C;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}
p{
  line-height: 1.5;
}
::placeholder {
  color: #B5B5B5;
}
::-ms-input-placeholder {
  color: #B5B5B5;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #B5B5B5;
}
img{
  width: 100%;
  height: auto;
}

:root {
  --scrollbar: 0;
}
.inner{
  max-width: 980px;
  margin: 0 auto;
}
.tb {
  display: none;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .policy-logo-link {
    position: unset;
    transform: unset;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
	.pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .pc-tb {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}