@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/*--------------------------------------------------

  base

--------------------------------------------------*/
body {
  width: 100%;
  min-width: 1280px;
  margin: 0 auto;
  line-height: 2.1875;
  color: #0f0700;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main {
  overflow-x: hidden;
}
main section {
  padding: 100px 0;
}
main section section {
  padding: 0;
}

section article {
  padding: 0;
}

[class*=_wrapper] {
  width: 1080px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2.2rem;
}

h6 {
  font-size: 2rem;
}

.js-ovh {
  overflow: hidden;
}

a {
  display: block;
  height: inherit;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

button {
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
img[class] {
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, img[class] {
    max-width: none;
  }
  *::-ms-backdrop, img.snowfall-flakes {
    max-width: none;
  }
}

p:not([class]):not(:last-of-type) {
  margin-bottom: 25px;
}

a[href^="tel:"] {
  pointer-events: none;
}

.mobile {
  display: none !important;
}

/*--------------------------------------------------

  sb_style

--------------------------------------------------*/
.sb_style a {
  display: inline-block !important;
  text-decoration: underline;
}
.sb_style em {
  font-style: italic;
}
.sb_style table {
  border: 1px solid #666;
}
.sb_style table th,
.sb_style table td {
  border: 1px solid #666;
}
.sb_style img {
  width: auto;
  height: auto;
}
.sb_style a {
  color: #008bf7;
}
.sb_style h1,
.sb_style h2,
.sb_style h3,
.sb_style h4,
.sb_style h5,
.sb_style h6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
  font-weight: 700;
}
.sb_style h1 {
  padding: 0 5px;
  font-size: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid #5b3918;
}
.sb_style h2 {
  padding-left: 10px;
  font-size: 26px;
  border-left: 3px solid #5b3918;
}
.sb_style h3 {
  font-size: 24px;
  padding: 5px 10px;
  background: #5b3918;
}
.sb_style h4 {
  padding-bottom: 8px;
  font-size: 20px;
  position: relative;
}
.sb_style h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: #5b3918;
}
.sb_style h5 {
  font-size: 18px;
  padding: 5px 10px;
  background: #f2f2f2;
}
.sb_style h6 {
  font-size: 16px;
  color: #5b3918;
}
.sb_style ul li {
  position: relative;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sb_style ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5b3918;
}
.sb_style ol {
  counter-reset: item;
}
.sb_style ol li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sb_style ol li:last-child {
  margin-right: 0;
}
.sb_style ol li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  line-height: 1;
  border-radius: 50%;
  counter-increment: item;
  content: counter(item);
  letter-spacing: 0;
  position: absolute;
  left: 0;
  top: 0;
}