@charset "utf-8";

/*------------------------------------------------------------
    2021.11 reset  CSS * ALL reset

    Noto Sans Japanese
        Light 300
        Regular 400
        Medium 500
    font-family: 'Noto Sans JP', sans-serif;
    Shippori Mincho
        Regular 400
    font-family: 'Shippori Mincho', serif;

------------------------------------------------------------*/
* { margin: 0;  padding: 0;}
*, ::before, ::after { box-sizing: border-box; }

html { line-sizing: normal; }

[hidden] { display: none; }

body{
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #323232;
    text-align: left;
    background: url("../images_ver02/common/bg.png");
    letter-spacing: 0.03em;
    position: relative;
}
@media screen and (max-width: 559px){
    body {
        font-size: 15px;
    }
}
:focus {
  outline: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
ol,
ul,
dl {
  margin: 0;
  padding: 0;
}

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

ol ol,
ul ul,
ol ul,
ul ol {
  margin: 0;
  padding: 0;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}


a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}
a:hover img{
  opacity: .8;
}
a:focus{ outline:none; }

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}
audio:not([controls]) { display:none; }

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

table {
  border-collapse: collapse;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}
select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}