@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
/* 基本フォントサイズ設定 */
html {
  font-size: 62.5%; /* 1rem = 10px */
}

/* //基本フォントサイズ設定 */
/* 全体設定 */
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: 1.4rem;
}

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

.container-1920 {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 108px;
}
@media screen and (max-width: 767px) {
  .container-1920 {
    padding: 0 32px;
  }
}

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

/* //フォントウェイト */
/* 左から右にフェードイン（bottom含む） */
.fade-in-from-bottom-elm {
  opacity: 0;
  transform: translateX(-30px);
}

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

.fade-in-from-left-elm {
  opacity: 0;
  transform: translateX(-30px);
}

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

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

.fade-in-from-right-elm.scrolled {
  animation: fade-in-from-right 1s ease-out forwards;
}

@keyframes fade-in-from-right {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes txt-wrap {
  100% {
    transform: translateX(100%);
  }
}
/**** public CTA ****/
.public-cta {
  background-color: #626262;
  padding-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .public-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.public-cta__txt {
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 1.7333333333;
}
@media screen and (max-width: 767px) {
  .public-cta__txt {
    font-size: 1.6rem;
    text-align: center;
  }
}
.public-cta__box {
  display: flex;
  align-items: stretch;
  border: 4px solid #222222;
  border-radius: 50px;
  background-color: #FFFFFF;
  overflow: hidden;
  margin-top: 40px;
  min-height: 290px;
  padding: 42px 0px;
}
@media screen and (max-width: 767px) {
  .public-cta__box {
    flex-direction: column;
    border-radius: 30px;
    min-height: auto;
    padding: 42px 12px;
  }
}
.public-cta__box-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 40px 142px;
  border-right: 5px solid #222222;
}
@media screen and (max-width: 767px) {
  .public-cta__box-left {
    border-right: none;
    border-bottom: 2px solid #222222;
    padding: 30px;
  }
}
.public-cta__trial {
  font-weight: 700;
  font-size: 4.5rem;
  color: #222222;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .public-cta__trial {
    font-size: 2.4rem;
  }
}
.public-cta__box-right {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 40px 142px;
}
@media screen and (max-width: 767px) {
  .public-cta__box-right {
    padding: 30px;
  }
}
.public-cta__detail {
  font-size: 2.4rem;
  line-height: 1.8708333333;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .public-cta__detail {
    font-size: 1.5rem;
  }
}
.public-cta__detail strong {
  font-weight: 700;
}

/* PC/SP 表示切り替え */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

/*# sourceMappingURL=style-common.css.map */
