@charset "UTF-8";
/**
 * base
 * NOTE: 
 * 
 * version 3.0.1 (update 2025.04.01)
 * 
 * input要素のスタイルの上書きが難しくなることを避ける目的で
 * base.cssにおいて、input要素をinput[type="submit"]のように書かないでください。
 * [type="submit"] や [type="checkbox"]など属性セレクタのみにしてください。
 * ※この記述ならば優先度が低いためクラス名1つで上書きが可能です。
 * 
 * ラッパー、ボタン、フォームのレスポンシブの調整はvariable.cssで可能です。
 * 
**/

/**
 * CSSリセット
 * 参照元：http: //meyerweb.com/eric/tools/css/reset/
**/
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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit
}
input.btn, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 16px
}
[type="submit"], [type="button"] {
  border-radius: 0;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
[type="submit"]::-webkit-search-decoration, [type="button"]::-webkit-search-decoration {
  display: none
}
[type="submit"]::focus, [type="button"]::focus {
  outline-offset: -2px
}
label {
  cursor: pointer;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* NOTE: ここにpositionは設定しないでください。 */
}

/**
 * 再定義
**/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  background: var(--site-bg-c);
  color: var(--font-c);
  /*font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;*/
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

@media only screen and (max-width: 959.98px) {
  body {
    padding: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  body {
    padding: 0;
  }
}

body > [id="wrapper"] {
  overflow: hidden;
}

p {
  line-height: 1.65;
}

img {
  border: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  transition: all 0.2s ease;
}

table {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  empty-cells: show;
  position: static;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, opacity 0.2s ease;
}
tr,
thead,
tbody,
tfoot {
  position: static;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, opacity 0.2s ease;
}
td,
th {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  empty-cells: show;
  position: static;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, opacity 0.2s ease;
}

a,
label {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
a {
  color: var(--text-link-c);
}
a:focus,
a:hover,
button:focus,
button:hover,
label:focus,
label:hover,
input:focus,
input:hover {
  /* NOTE: ここにopacity以外の値を入れないでください */
  opacity: 0.75;
}
a.active {
  color: var(--text-link-c-hover);
}
button>*,
a>* {
  transition: inherit;
}

i,
em {
  font-style: normal;
}

strong,
b {
  font-weight: 700;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input, select, textarea {
  background: #fff;
  font-size: 90%;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, opacity 0.2s ease;
}
[type="checkbox"], [type="radio"] {
  width: 18px;
  height: 18px;
  margin: 1px 5px 0 0;
}
