@charset "UTF-8";
/*メディアクエリ*/
/*WordPress対策・全ページ余白なし*/
* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
}

img {
  vertical-align: bottom; /*画像の下に余白を作らない*/
  max-width: 100%;
}

a {
  text-decoration: none; /*aタグに下線がつかない*/
}

main {
  /*各ページの固有の内容を囲むクラス*/
  z-index: 1;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  main {
    padding: 160px 0 0 0; /*PCヘッダーの高さ*/
  }
  /*電話番号をクリックしても自動発信しない*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  main {
    padding: 60px 0 0 0; /*SPヘッダーの高さ*/
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

p.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/*お知らせ*/
/*PC*/
@media screen and (min-width: 769px) {
  #news {
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 675px);
  }
  #news .news__container {
    position: relative;
    width: 70%;
    max-width: 1000px;
    height: auto;
    margin: 50px auto;
padding-bottom: 100px;
  }
  #news .news__container time {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.8px;
    text-align: left;
    color: #222;
    margin-bottom: 10px;
  }
  #news .news__container h1 {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 1.6px;
    text-align: left;
    color: #222;
    margin-bottom: 20px;
  }
  #news .news__container p {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height:2em;
    letter-spacing: 0.8px;
    text-align: left;
    color: #222;
  }
}
/*SP*/
@media screen and (max-width: 768px) {
  #news {
    position: relative;
    width: 100%;
    height: auto;
  }
  #news .news__container {
    position: relative;
    width: 90%;
    height: auto;
    margin: 30px auto 50px;
  }
  #news .news__container time {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.65px;
    text-align: left;
    color: #222;
    margin-bottom: 5px;
  }
  #news .news__container h1 {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 1.3px;
    text-align: left;
    color: #222;
    margin-bottom: 10px;
  }
  #news .news__container p {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 0.65px;
    text-align: left;
    color: #222;
  }
}/*# sourceMappingURL=post.css.map */