/*--------------------------------------------------------
全体共通CSS
----------------------------------------------------------*/
:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-lightblack: #222222;
  --color-main: #B52930;
  --color-lightgray: #F4F7F8;
  --color-sub: #D4AF37;
  --font-main: "noto-sans-cjk-jp", "Hiragino Sans","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN","Helvetica Neue","MS PGothic",sans-serif;
  --font-sub-1: "fot-tsukuardgothic-std", sans-serif;
  --font-sub-2: "a-otf-ud-shin-go-pr6n", sans-serif;
  --font-sub-3: "andale-mono-mt-pro", sans-serif;
}
/* A-OTF UD Shin Go Pr6N L
font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
font-weight: 300;
font-style: normal; */

/* Andale Mono MT Pro Regular
font-family: "andale-mono-mt-pro", sans-serif;
font-weight: 400;
font-style: normal; */

/* Noto Sans CJK JP Regular
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 400;
font-style: normal; */

/* Noto Sans CJK JP Medium
font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 500;
font-style: normal; */

/* Noto Sans Regular
font-family: "noto-sans", sans-serif;
font-weight: 400;
font-style: normal; */

/* Noto Sans Medium
font-family: "noto-sans", sans-serif;
font-weight: 500;
font-style: normal; */

/* FOT-TsukuARdGothic Std B
font-family: "fot-tsukuardgothic-std", sans-serif;
font-weight: 700;
font-style: normal; */

* {
  font-family: var(--font-main);
}
a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:visited {
  color: unset;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
main {
  overflow: hidden;
}
img {
  width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
}
p {
  margin: 0;
  padding: 0;
}
.post, 
.page {
  margin: 0;
}
.inner {
  width: 80%;
  max-width: 1140px;
  margin: auto;
  padding: 90px 0;
}
.flex-container {
  display: flex;
  justify-content: space-around;
  max-width: 1100px;
  margin: auto;
}
.desc {
  line-height: 1.8;
  font-size: 0.9rem;
}
.noscroll {
  overflow: hidden;
  height: 100%;
}

@media only screen and (max-width: 1080px) {
  .inner {
    width: 90%;
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .inner {
    padding: 40px 0;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media only screen and (min-width: 1081px) {
  .tb,
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 1080px) and (min-width: 768px) {
  .pc,
  .sp {
    display: none;
  }
  .tb {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .pc,
  .tb {
    display: none;
  }
  .sp {
    display: block;
  }
}