/*--------------------------------------------------------
全体共通CSS
----------------------------------------------------------*/
:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-lightblack: #222222;
  --color-main: #000465;
  --color-sub: #FD9C00;
  --color-lightgray: #F4F7F8;
  --font-main: "Helvetica Neue","Hiragino Sans","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN","MS PGothic",sans-serif;
  --font-sub1: ta-kakugo-gf-01, sans-serif;
  --font-sub2: ta-kakugo-gf-02, sans-serif;
  --font-sub3: ta-kakugo-gf-03, sans-serif;
  --font-sub4: "dnp-shuei-mgothic-std", sans-serif;
}

/* font-family: "dnp-shuei-mgothic-std", sans-serif;
font-weight: 400;
font-weight: 600;
font-style: normal; */

* {
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-family: var(--font-sub4);
}
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%;
}
body, button, input, select, optgroup, textarea {
  color: var(--color-black);
}

@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;
  }
}