@charset "UTF-8";
:root {
  --clr-main: #333333;
  --clr-sub: #FF8F2C;
  --clr-bg: #FAF6F2;
  --clr-bg-sub: #FFEDDE;
  --clr-border: #d4d4d4;
  --fw-thin: 100;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;
  --cubic: cubic-bezier(0.13, 1.05, 0.96, 1);
  --cubicHigh: cubic-bezier(.18,1.07,.55,1.07);
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, mark {
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  font-size: 100%;
  font-style: normal;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  outline: 0 none;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

:focus {
  outline: 0 none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

picture {
  line-height: 1;
}

img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

h1, h2, h3, h4, h5, h6, p, div {
  word-wrap: break-word;
}

button, input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  display: block;
  margin: 0;
  padding: 0;
}

::-moz-focus-inner {
  border: 0px;
}

select::-ms-expand {
  display: none;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-image: url('../img/common/bg.png'); /* 画像のパスを指定 */
  background-repeat: repeat-y; /* 縦方向にのみ画像を繰り返す */
  background-size: 100% auto; /* 横幅を100%にし、縦は自動調整 */
  background-attachment: scroll; /* スクロールに合わせて背景もスクロール */
  background-position: center top; /* 背景画像の開始位置を中央上部に設定 */
  color: var(--clr-main);
  font-family: "Noto Sans JP", sans-serif!important;
    -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1vw;
  font-weight: var(--fw-regular);
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea, select {
  font-family: "Noto Sans JP", sans-serif!important;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  vertical-align: top;
  max-width: 100%;
  width: auto;
  height: auto;
}

canvas {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a, button {
  color: var(--clr-link);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: color var(--cubic), opacity var(--cubic), background-color var(--cubic);
  transition: color var(--cubic), opacity var(--cubic), background-color var(--cubic);
}
a:active, a:hover, button:active, button:hover {
  opacity: 0.7;
  transition: 0.3s;
}

sup,
sub {
  font-size: 0.6em;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: var(--clr-weak);
}

/* Firefox 18- */
:-moz-placeholder {
  color: var(--clr-weak);
}

/* Firefox 19+ */
::-moz-placeholder {
  color: var(--clr-weak);
}

/* IE 10+ */
:-ms-input-placeholder {
  color: var(--clr-weak);
}

:-moz-placeholder-shown {
  color: var(--clr-weak);
}

:placeholder-shown {
  color: var(--clr-weak);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


  body {
    font-size: 14px;
  }


