@charset "UTF-8";
/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  リセット
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.6;
  letter-spacing: 0.6px;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  vertical-align: top;
  border: 0;
  width: auto;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style-type: none;
  padding-inline-start: 0;
  list-style-position: inside;
}

#root,
#__next {
  isolation: isolate;
}

/* Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
-------------------------------------------------------------------*/
:root {
  --main-color: #c2441e;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  リンク
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
a {
  transition: all ease 0.6s;
}

a:link {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
  transition: all ease 0.6s;
}

a:active {
  color: inherit;
  text-decoration: none;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  PC、SP切り替え
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: block;
  }
}

.only-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

.only-pc960 {
  display: none;
}
@media screen and (min-width: 960px) {
  .only-pc960 {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */