/*--------------------------------------------------------
全体共通CSS
----------------------------------------------------------*/
:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-lightblack: #222222;
  --color-main: #07C0D8;
  --color-yellow: #FCDF00;
  --color-green: #02B424;
  --color-lightgray: #F4F7F8;
  --color-sub: #AABCD4;
  --font-main: "Hiragino Sans","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN","Helvetica Neue","MS PGothic",sans-serif;
  --font-sub1: "Hiragino Maru Gothic ProN W4", "ヒラギノ丸ゴ ProN W4" ,"Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --font-sub2: "noto-sans-cjk-jp", sans-serif;
  --font-sub3: "mochiy-pop", sans-serif;
}

/* font-family: "noto-sans-cjk-jp", sans-serif;
font-weight: 400;
font-weight: 700;
font-style: normal; */

/* Mochiy Pop Regular
font-family: "mochiy-pop", sans-serif;
font-weight: 400;
font-style: normal;
Mochiy Pop P Regular
font-family: "mochiy-pop-p", sans-serif;
font-weight: 400;
font-style: normal; */

* {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
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%;
}
.bg-beige {
  background-color: #FFFCED;
}
@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;
  }
}