@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
/* 基本フォントサイズ設定 */
html {
  font-size: 100%; /* ブラウザのデフォルトのフォントサイズ。大抵は16px */
}

/* //基本フォントサイズ設定 */
/* 全体設定 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  overflow-x: hidden;
  position: relative;
  color: #222222;
  -webkit-font-smoothing: antialiased; /* macで文字が太くなる現象を解消 */
  background-color: #D5D5D5;
  font-size: 0.875rem;
}

p {
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

.container-980 {
  max-width: 1010px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-1242 {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 15px;
}

.txt-default {
  line-height: 1.8571428571;
}

.d-inline-block {
  display: inline-block;
}

/* //全体設定 */
/* フォントファミリー */
.jakarta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* //フォントファミリー */
/* フォントウェイト */
.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* //フォントウェイト */
/* 下から上にフェードイン */
.fade-in-from-bottom-elm {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-from-bottom-elm.scrolled {
  animation: fade-in-from-bottom 0.7s linear forwards;
}

@keyframes fade-in-from-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* //下から上にフェードイン */
/* 左から右にフェードイン */
.fade-in-from-left-elm {
  opacity: 0;
  transform: translateX(-20px);
}

.fade-in-from-left-elm.scrolled {
  animation: fade-in-from-left 1s linear forwards;
}

@keyframes fade-in-from-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* //左から右にフェードイン *//*# sourceMappingURL=style-common.css.map */