/*--------------------------------------------------------
全体共通CSS
----------------------------------------------------------*/
:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-lightblack: #222222;
  --color-main: #0A3D62;
  --color-lightgray: #F4F7F8;
  --color-lightbeige: #F5F0E6;
  --color-sub: #984109;
  --font-main: "Hiragino Sans","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN","Helvetica Neue","MS PGothic",sans-serif;
  --font-sub-1: "wak", serif;
  --font-sub-2: "toppan-bunkyu-mincho-pr6n", serif;
  --font-sub-3: "heisei-maru-gothic-std", sans-serif;
  --font-sub-4: "dnp-shuei-mincho-pr6n", sans-serif;
  --font-sub-5: "Hiragino Mincho ProN", "Times New Roman", "YuMincho", "Yu Mincho", "MS PMincho", serif;
}

/* フォント wak(300,400,500)
font-family: "wak", sans-serif;
font-weight: 500;
font-style: normal; 
*/
/* フォント Toppan BunkyuMinchoPr6N R
font-family: "toppan-bunkyu-mincho-pr6n", serif;
font-weight: 400;
font-style: normal; 
*/
/* Heisei Maru Gothic Std W4
font-family: "heisei-maru-gothic-std", sans-serif;
font-weight: 400;
font-style: normal; 
*/
/* DNPShueiMinPr6N L,M,B(400,500,600)
font-family: "dnp-shuei-mincho-pr6n", sans-serif;
font-weight: 600;
font-style: normal; 
*/

* {
  font-family: var(--font-sub-2);
  font-weight: 400;
  font-style: normal; 
}
h1,h2,h3,h4,h5 {
  font-family: var(--font-sub-1);
  font-weight: 300;
  font-style: normal;
}
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;
  vertical-align: top;
}
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;
  align-items: center;
  margin: auto;
}
.desc {
  line-height: 1.8;
  font-size: 0.9rem;
}
.noscroll {
  overflow: hidden;
  height: 100%;
}
body span.font-dnp {
  font-family: var(--font-sub-4);
}

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