a {
  text-decoration: none;
}

p {
  font-weight: 300;
  font-size: 16px;
}

ul {
  list-style: none;
  padding-inline-start: 0;
}

body {
  font-family: "ヒラギノ角ゴシック", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

.main {
  overflow: hidden;
}

.color-blue {
  color: #3164aa;
}

.color-orange {
  color: #e16e2c;
}

.color-red {
  color: #ff0000;
}

.tab-sp-only,
.sp-only {
  display: none;
}

.pc-only,
.pc-tab-only {
  display: block;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media only screen and (max-width: 980px) {
  p {
    font-size: 14px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }

  .pc-only,
  .sp-only {
    display: none;
  }

  .tab-sp-only {
    display: block;
  }
}

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

  .pc-tab-only,
  .pc_only {
    display: none;
  }
}

/* ふわふわの動き */
.fuwafuwa {
  animation: fuwafuwa 1.5s infinite ease-in-out;
}

@keyframes fuwafuwa {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

/* フェードインの動き(MV) */
.fadeIn_up_mv {
  opacity: 0;
  transform: translate(-50%, 80px);
  transition: 2s;
}

.fadeIn_up_mv.is-show {
  transform: translate(-50%, 0px);
  opacity: 1;
}

/* フェードインの動き(下層) */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 80px);
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* どくんどくんの動き*/
.dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.2);
  }

  30% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.2);
  }

  70% {
    transform: scale(1);
  }
}

/* ヘッダー */
.l-header {
  position: sticky;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
  height: 80px;
}

.l-header__inner {
  max-width: 1020px;
  height: 80px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-betweens;
  align-items: center;
}

.l-header__logo {
  width: 283px;
}

.l-header__logo img {
  width: 100%;
  margin-top: 8px;
}

.l-header__nav-list {
  text-align: right;
}

.l-header__nav-item {
  display: inline-block;
  text-align: right;
  padding-left: 34px;
}

.l-header__nav-item a {
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.l-header__nav-item-btn a {
  background-color: #2871cc;
  padding: 10px 0;
  width: 152px;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 5px;
}

@media only screen and (max-width: 980px) {
  .l-header__inner {
    height: 60px;
  }

  .l-header__logo {
    margin: 0 auto;
    height: 100%;
    width: 250px;
  }

  .l-header__nav {
    position: fixed;
    right: -350px;
    /* 右から出てくる */
    top: 0;
    width: 350px;
    /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
  }

  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px;
    /* クリックしやすい幅 */
    height: 40px;
    /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }

  .l-header__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .l-header__nav-item {
    text-align: center;
    padding: 10px 20px;
    width: 32s0px;
  }

  .l-header__nav-item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }

  .nav_item a:hover {
    background-color: #eee;
  }

  .l-header__nav-item-btn a {
    color: #fff;
    margin: 0 auto;
    margin-top: 20px;
  }

  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
  }

  .hamburger_border_top {
    top: 14px;
  }

  .hamburger_border_center {
    top: 20px;
  }

  .hamburger_border_bottom {
    top: 26px;
  }

  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .l-header__nav {
    right: 0;
  }

  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }

  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__inner {
    height: 50px;
  }

  .l-header__logo {
    width: 200px;
  }
}

/* TOP画像 */
.sec-mv__bg {
  height: 840px;
  max-width: 1440px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/header-mv-pc.png);
  position: relative;
  margin: 0 auto;
}

.sec-mv__pc-item {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: block;
}

.sec-mv__pc-item-1 {
  font-size: 18px;
  font-weight: 600;
}

.sec-mv__pc-item-2 {
  font-size: 28px;
  font-weight: 600;
  padding-top: 20px;
}

.sec-mv__pc-item-2 span {
  color: #fff;
  background-color: #2e79d2;
  display: inline-block;
  padding: 0 2px;
  position: relative;
}

.sec-mv__pc-item-2 span::before {
  content: "・";
  color: #2e79d2;
  position: absolute;
  top: -80%;
  left: 0;
}

.sec-mv__pc-item-2 span::after {
  content: "・";
  color: #2e79d2;
  position: absolute;
  top: -80%;
  left: 17%;
}

.sec-mv__pc-item-3 {
  color: #3164aa;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  padding: 10px 0 20px;
}

.sec-mv__pc-item-3-1 {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  line-height: 0;
}

.sec-mv__pc-item-3-2 {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  line-height: 0;
}

.sec-mv__pc-item-list {
  margin-bottom: 40px;
}

.sec-mv__pc-item-list li {
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 4px 0;
  width: 320px;
  font-size: 20px;
  font-weight: 600;
  margin: 10px auto 0;
}

.sec-mv__pc-item-4 .color-line {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(transparent 65%, #ffb100 20%);
}

.sec-mv__pc-item-4 .color-red {
  font-size: 24px;
}

.sec-mv__pc-item-5 {
  font-size: 14px;
  font-weight: 300;
  padding-top: 10px;
}

.sec-mv__inner-pc {
  display: block;
  position: absolute;
  bottom: -15%;
  left: 50%;
  /* transform: translateX(-50%); */
  background-image: url(../img/header-bg.png);
  max-width: 960px;
  background-size: 960px;
  width: 100%;
  z-index: 1000;
  background-repeat: no-repeat;
  text-align: center;
}

.sec-mv__inner-pc p {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0 0;
}

.sec-mv__btn {
  margin-bottom: 60px;
}

.sec-mv__btn a {
  display: block;
  width: 440px;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-weight: bold;
  background-color: #2871cc;
  border-radius: 36px;
  margin: 0 auto;
  padding: 20px 0 20px 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  box-sizing: border-box;
}

.sec-mv__btn a::before {
  content: url(../img/icon-mail.png);
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-mv__img-apply {
  position: absolute;
  right: -10%;
  bottom: 45%;
  width: 300px;
}

.sec-mv__img-apply img {
  width: 100%;
}

.sec-mv__sp-item,
.sec-mv__inner-sp {
  display: none;
}

@media only screen and (max-width: 980px) {
  .sec-mv__bg {
    height: 100vh;
    /* 全画面表示 */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../img/header-mv-sp-bg.png);
    position: relative;
    overflow: hidden;
  }

  .sec-mv__sp-item {
    position: relative;
    display: block;
    height: 100%;
    text-align: center;
  }

  .sec-mv__sp-item-img1 {
    right: -30%;
    bottom: 18%;
    position: absolute;
    width: 60%;
  }

  .sec-mv__sp-item-img2 {
    left: 0%;
    bottom: 0%;
    position: absolute;
    width: 45%;
  }

  .sec-mv__sp-item-img3 {
    right: 0;
    bottom: 0;
    position: absolute;
    width: 45%;
  }

  .sec-mv__sp-item-list {
    margin-top: 50px;
  }

  .sec-mv__sp-item-list li {
    background-color: #fff;
    border-radius: 14px;
    text-align: center;
    padding: 4px 0;
    width: 380px;
    font-size: 24px;
    font-weight: bold;
    margin: 20px auto 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }

  .sec-mv__sp-item-1 {
    line-height: 60px;
    font-size: 30px;
    font-weight: bold;
    padding-top: 40px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }

  .sec-mv__sp-item-1 span {
    color: #fff;
    background-color: #2e79d2;
    display: inline-block;
    padding: 2px;
    position: relative;
    line-height: 40px;
  }

  .sec-mv__sp-item-1 span::before {
    content: "・";
    color: #2e79d2;
    position: absolute;
    top: -71%;
    left: 0;
  }

  .sec-mv__sp-item-1 span::after {
    content: "・";
    color: #2e79d2;
    position: absolute;
    top: -71%;
    left: 17%;
  }

  .sec-mv__sp-item-logo {
    width: 80%;
  }

  .sec-mv__sp-item-2 {
    font-size: 18px;
    font-weight: bold;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }

  .sec-mv__sp-item-icon {
    width: 20%;
  }

  .sec-mv__inner-pc,
  .sec-mv__pc-item {
    display: none;
  }

  .sec-mv__inner-sp {
    display: block;
    margin: 0 15px;
    text-align: center;
    padding-top: 30px;
  }

  .sec-mv__inner-sp-store-number {
    font-family: "ヒラギノ角ゴシック", sans-serif;
    font-weight: 600;
    font-size: 18px;
    background: linear-gradient(transparent 55%, rgba(255, 177, 0, 0.4) 30%);
    display: inline;
  }

  .sec-mv__inner-sp-store-number span {
    font-size: 24px;
  }

  .sec-mv .sec-application__btn {
    margin: 20px auto;
  }
}

@media only screen and (max-width: 767px) {
  .sec-mv__bg {
    max-height: 600px;
    background-size: 100% 100%;
    background-position: top;
  }

  .sec-mv__sp-item-img1 {
    bottom: 19%;
  }

  .sec-mv__sp-item-img2,
  .sec-mv__sp-item-img3 {
    width: 48%;
  }

  .sec-mv__sp-item-list {
    margin-top: 30px;
  }

  .sec-mv__sp-item-list li {
    padding: 4px 0;
    width: 290px;
    font-size: 16px;
    margin: 10px auto 0;
  }

  .sec-mv__sp-item-1 {
    line-height: 40px;
    font-size: 22px;
    padding-top: 10px;
  }

  .sec-mv__sp-item-1 span {
    padding: 0 2px;
    line-height: 30px;
  }

  .sec-mv__sp-item-2 {
    font-size: 14px;
  }

  .sec-mv__sp-item-icon {
    width: auto;
  }
}

/* グーグル口コミ */
.sec-google-review {
  max-width: 960px;
  margin: 200px auto 80px;
}

.sec-google-review__inner {
  border: 2px solid #3164aa;
  border-radius: 8px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec-google-review__content {
  width: 120%;
}

.sec-google-review__content p {
  line-height: 32px;
}

.sec-google-review__content img {
  width: 100%;
}

.sec-google-review__img {
  width: 80%;
  margin-left: 16%;
}

.sec-google-review__img img {
  width: 100%;
}

.sec-google-review__content-header {
  font-weight: 600;
  font-size: 20px;
}

.sec-google-review__content-header::before {
  content: url(../img/review-icon.png);
  vertical-align: middle;
  padding-right: 25px;
}

@media only screen and (max-width: 980px) {
  .sec-google-review {
    margin: 50px 15px 0;
  }

  .sec-google-review__inner {
    display: block;
  }

  .sec-google-review__content {
    width: 100%;
  }

  .sec-google-review__content-header {
    text-align: center;
  }

  .sec-google-review__img {
    width: 70%;
    margin: 40px auto 0;
  }

  .sec-google-review__img-graph-sp img {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .sec-google-review {
    margin: 30px 15px 0;
  }

  .sec-google-review__content-header::before {
    display: block;
    padding-right: 0;
  }

  .sec-google-review__inner {
    padding: 30px 15px;
  }

  .sec-google-review__content-header {
    font-size: 16px;
  }

  .sec-google-review__content p {
    line-height: 28px;
    font-size: 15px;
  }
}

/* お悩み */
.sec-worries {
  max-width: 960px;
  margin: 80px auto;
}

.sec-worries__header {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}

.sec-worries__header span {
  color: #295b93;
}

.sec-worries__inner {
  display: flex;
  justify-content: center;
}

.sec-worries__inner-box {
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  width: 275px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 20px;
  position: relative;
}

.sec-worries__inner .color-orange {
  background-color: #e16e2d;
  text-align: center;
}

.sec-worries__inner .color-blue {
  background-color: #2e79d1;
}

.sec-worries__inner-box::before {
  content: "✓";
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  top: -30%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 25px;
}

.color-orange.sec-worries__inner-box::before {
  border: 1px solid #e16e2d;
  color: #e16e2d;
}

.color-blue.sec-worries__inner-box::before {
  border: 1px solid #2e79d1;
  color: #2e79d1;
}

.sec-worries__inner.sp-only {
  display: none;
}

@media only screen and (max-width: 980px) {
  .sec-worries {
    margin: 80px 15px 60px;
  }

  .sec-worries__inner-box {
    margin: 20px 10px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-worries {
    margin: 60px 15px;
  }

  .sec-worries__header {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .sec-worries__inner.pc-tab-only {
    display: none;
  }

  .sec-worries__inner.sp-only {
    display: block;
    margin: 0 auto;
  }

  .sec-worries__inner-box {
    margin: 20px auto;
  }

  .sec-worries__inner-box::before {
    top: 50%;
    left: -7%;
    transform: translateY(-50%);
  }
}

/* 悩み解決 */
.sec-solution {
  background-image: url(../img/solution-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.sec-solution__inner {
  max-width: 856px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.sec-solution__header {
  max-width: 600px;
  margin: 0 auto;
}

.sec-solution__content {
  display: flex;
  padding-top: 50px;
  align-items: flex-end;
  justify-content: space-around;
}

.sec-solution__content-text {
  width: 55%;
}

.sec-solution__content-text h2 {
  display: inline;
  font-size: 28px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  background: linear-gradient(transparent 65%, #fff95a 20%);
  margin-bottom: 30px;
}

.sec-solution__content-text h2 .color-blue {
  font-size: 40px;
  color: #004db7;
  padding-right: 10px;
}

.sec-solution__content-text p {
  width: 90%;
  line-height: 32px;
  margin-top: 40px;
}

.sec-solution__content-img {
  width: 43%;
  display: flex;
  /* flexboxを指定 */
  flex-flow: row wrap-reverse;
  /* 子要素をrow方向に並べ、逆に折返す*/
  justify-content: space-around;
  /* 並べ方向に均等な空白 */
}

.sec-solution__content-circle {
  color: #295b93;
  font-size: 16px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  box-shadow: 0px 3px 6px rgba(0, 166, 253, 0.16);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 980px) {
  .sec-solution__content {
    margin: 0 15px;
    display: block;
  }

  .sec-solution__content-text {
    width: 100%;
  }

  .sec-solution__content-text p {
    font-size: 15px;
  }

  .sec-solution__content-img {
    width: 500px;
    margin: 30px auto 0;
  }
}

@media only screen and (max-width: 767px) {
  .sec-solution {
    background-image: none;
    background-color: #eaf4ff;
  }

  .sec-solution__inner {
    padding: 50px 0;
  }

  .sec-solution__header img {
    width: 100%;
  }

  .sec-solution__content {
    padding-top: 20px;
  }

  .sec-solution__content-text h2 {
    font-size: 18px;
    display: block;
    background: none;
    text-align: center;
    line-height: 20px;
  }

  .sec-solution__content-text h2 .color-blue {
    font-size: 24px;
    display: flex;
    justify-content: center;
    padding-right: 0;
    align-items: center;
  }

  .sec-solution__content-text h2 .color-blue img {
    padding-left: 10px;
    width: 43px;
  }

  .sec-solution__content-text h2 .yellow-line {
    background: linear-gradient(transparent 60%, #fff95a 30%);
  }

  .sec-solution__content-text p {
    width: 100%;
  }

  .sec-solution__content-circle {
    width: 120px;
    height: 120px;
    font-size: 14px;
    text-align: center;
  }

  .sec-solution__content-img {
    width: 300px;
  }
}

/* 申し込みボタン */
.sec-application {
  text-align: center;
  padding: 60px 0;
}

.bg-yellow {
  background-color: #fff9f0;
}

.sec-application__btn a {
  display: block;
  width: 400px;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(45deg, #2a73ce 35%, #58ccff);
  border-radius: 36px;
  margin: 0 auto;
  padding: 15px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 767px) {
  .sec-application {
    text-align: center;
    padding: 40px 0;
  }

  .sec-application__btn a {
    font-size: 16px;
    width: 300px;
    padding: 10px 0;
  }
}

/* レビューナビとは */
.sec-about {
  position: relative;
}

.sec-about::after {
  content: "";
  position: absolute;
  background-color: #eaf4ff;
  bottom: 0;
  left: 0;
  height: 39%;
  width: 100%;
  z-index: -1;
}

.sec-about__inner {
  padding: 100px 0 70px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.sec-about__header {
  font-size: 30px;
  font-weight: 600;
  position: relative;
}

.sec-about__header span {
  font-size: 44px;
  color: #2e79d1;
}

.sec-about__header::before {
  content: "";
  background-image: url(../img/about-header-icon.png);
  background-repeat: no-repeat;
  position: absolute;
  top: -55%;
  left: 13%;
  width: 120px;
  height: 50px;
}

.sec-about__img {
  max-width: 1089px;
  margin: 80px auto 0;
}

.sec-about__img img {
  width: 100%;
}

.sec-about__btn a {
  display: block;
  width: 400px;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(45deg, #2a73ce 35%, #58ccff);
  border-radius: 8px;
  margin: 50px auto 0;
  padding: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 980px) {
  .sec-about::after {
    height: 35%;
  }

  .sec-about__inner {
    margin: 0 15px;
  }

  .sec-about__header::before {
    transform: translateX(-50%);
    left: 50%;
  }

  .sec-about__header span {
    padding-top: 15px;
    display: block;
  }

  .sec-about__img {
    width: 100%;
  }

  .sec-about__btn a {
    width: 300px;
    font-size: 18px;
    padding: 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  .sec-about__inner {
    padding: 80px 0 50px;
  }

  .sec-about__header {
    font-size: 18px;
  }

  .sec-about__header span {
    font-size: 24px;
  }

  .sec-about__header::before {
    top: -70%;
    background-size: 80%;
  }

  .sec-about__inner p {
    text-align: left;
    font-size: 16px;
    line-height: 32px;
  }

  .sec-about__img {
    overflow: scroll;
  }

  .sec-about__img img {
    width: auto;
  }

  .sec-about__btn a {
    font-size: 16px;
  }
}

/* 選ばれる理由 */
.sec-choice-reson {
  max-width: 856px;
  margin: 80px auto 0;
}

.sec-choice-reson__logo {
  width: 248px;
  text-align: center;
  margin: 0 auto;
}

.sec-choice-reson__header {
  font-weight: 600;
  text-align: center;
  font-size: 40px;
  padding-bottom: 50px;
}

.sec-choice-reson__three-pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec-choice-reson__three-pc li {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid #000;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  line-height: 36px;
}

.sec-choice-reson__three-pc li span {
  position: absolute;
  font-size: 28px;
  top: -5%;
  background-color: #fff;
  padding: 0 10px;
  display: inline-block;
}

.sec-choice-reson__three-pc li span::first-letter {
  color: #ff0000;
}

.sec-choice-reson__features {
  margin-top: 80px;
  padding: 60px 40px 30px;
}

.sec-choice-reson__features-header {
  font-weight: 600;
  text-align: center;
  font-size: 40px;
  line-height: 0px;
}

.sec-choice-reson__feature-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec-choice-reson__feature-content p {
  font-size: 15px;
}

.sec-choice-reson__feature-content li {
  width: 46%;
  padding-top: 100px;
  position: relative;
}

.sec-choice-reson__feature-content p {
  line-height: 32px;
  padding-top: 80px;
}

.sec-choice-reson__feature-content-header {
  font-size: 20px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  background: linear-gradient(transparent 60%, rgba(252, 196, 62, 0.5) 40%);
  color: #333;
  margin-left: 30px;
  display: inline;
}

.sec-choice-reson__feature-content li::before {
  font-size: 160px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: rgba(46, 121, 209, 0.2);
  font-weight: normal;
  position: absolute;
  top: 0%;
  left: -2%;
}

.sec-choice-reson__feature-content li:first-child::before {
  content: "01";
}

.sec-choice-reson__feature-content li:nth-child(2)::before {
  content: "02";
}

.sec-choice-reson__feature-content li:nth-child(3)::before {
  content: "03";
}

.sec-choice-reson__feature-content li:last-child::before {
  content: "04";
}

@media only screen and (max-width: 980px) {
  .sec-choice-reson {
    margin: 70px 15px 0;
  }

  .sec-choice-reson__three-pc {
    display: none;
  }

  .sec-choice-reson__feature-content {
    display: block;
    margin-top: -20px;
  }

  .sec-choice-reson__feature-content li {
    width: 100%;
    text-align: center;
    padding-top: 120px;
  }

  .sec-choice-reson__feature-content li::before {
    font-size: 222px;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
  }

  .sec-choice-reson__feature-content p {
    line-height: 28px;
    padding-top: 15px;
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .sec-choice-reson {
    margin: 60px 15px 0;
  }

  .sec-choice-reson__header {
    font-size: 24px;
    line-height: 45px;
    padding: 10px 0 20px;
    margin-block-start: 0;
  }

  .sec-choice-reson__logo {
    width: 150px;
    padding-bottom: 10px;
  }

  .sec-choice-reson__logo img {
    width: 100%;
  }

  .sec-choice-reson__three li {
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    width: 295px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    position: relative;
    background-color: #2e79d1;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 118, 255, 0.16);
  }

  .sec-choice-reson__features-header {
    font-size: 24px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    padding-bottom: 30px;
  }

  .sec-choice-reson__features {
    padding: 40px 20px;
    margin-top: 60px;
  }

  .sec-choice-reson__feature-content-header {
    font-size: 18px;
    margin-left: 0;
  }

  .sec-choice-reson__feature-content li {
    padding-top: 60px;
  }

  .sec-choice-reson__feature-content li::before {
    line-height: 250px;
  }
}

/* 管理画面 */
.sec-management-screen {
  background-color: #f7f7f7;
}

.sec-management-screen__inner {
  padding: 60px 0;
  max-width: 856px;
  margin: 0 auto;
  text-align: center;
}

.sec-management-screen__header {
  background-color: #fff;
  padding: 5px 20px;
  font-size: 32px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin: 20px auto;
  width: 487px;
}

.sec-management-screen__img {
  display: flex;
  justify-content: space-evenly;
  padding-top: 50px;
  position: relative;
}

.sec-management-screen__img img {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  width: 90%;
}

.sec-management-screen__img p {
  display: flex;
  position: absolute;
  top: -25%;
  right: 0;
  background-color: #fff;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

@media only screen and (max-width: 980px) {
  .sec-management-screen__inner {
    margin: 0 15px;
  }

  .sec-management-screen__img {
    display: block;
    padding-top: 30px;
  }

  .sec-management-screen__img img {
    width: 90%;
    padding-bottom: 40px;
  }

  .sec-management-screen__img p {
    bottom: -5%;
    top: auto;
    z-index: 1;
  }
}

@media only screen and (max-width: 767px) {
  .sec-management-screen__inner {
    padding: 50px 0 20px;
  }

  .sec-management-screen__header {
    font-size: 18px;
    width: 252px;
    margin: 10px auto;
  }

  .sec-management-screen__img p {
    width: 100px;
    height: 100px;
    font-size: 10px;
    bottom: 0;
    top: auto;
    z-index: 1;
  }
}

/* 活用事例 */
.sec-use-case {
  max-width: 856px;
  margin: 80px auto 70px;
  text-align: center;
}

.sec-use-case__header {
  font-size: 40px;
}

.sec-use-case__header-sub {
  font-size: 24px;
  font-weight: 600;
  line-height: 44px;
  padding-bottom: 20px;
}

.sec-use-case p {
  font-size: 18px;
  line-height: 38px;
}

.sec-use-case__content {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
}

.sec-use-case__content ul {
  width: 42%;
  margin-top: 0;
}

.sec-use-case__content-img {
  width: 52%;
}

.sec-use-case__content-img img {
  width: 100%;
}

.sec-use-case__content-title {
  color: #fff;
  background-color: #307cd3;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  padding: 15px 0;
  margin-bottom: 16px;
}

.sec-use-case__content-item {
  border: 2px solid #295b93;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 0;
  margin-bottom: 10px;
  text-align: left;
  padding-left: 40px;
  box-sizing: border-box;
}

.sec-use-case__content-text {
  width: 170px;
  display: inline-block;
}

.sec-use-case__content-text-num {
  font-size: 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

.sec-use-case__content-item .color-red {
  font-size: 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}

@media only screen and (max-width: 980px) {
  .sec-use-case {
    margin: 60px 15px;
  }

  .sec-use-case__content {
    display: block;
    padding-top: 40px;
  }

  .sec-use-case__content ul {
    width: 55%;
    text-align: center;
    margin: 0 auto;
  }

  .sec-use-case__content-img {
    width: 55%;
    margin: 20px auto 0;
  }
}

@media only screen and (max-width: 767px) {
  .sec-use-case__header {
    font-size: 24px;
  }

  .sec-use-case__header-sub {
    font-size: 18px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 32px;
  }

  .sec-use-case p {
    font-size: 15px;
  }

  .sec-use-case__content ul {
    width: 100%;
  }

  .sec-use-case__content-item {
    border: 1px solid #295b93;
    font-size: 17px;
  }

  .sec-use-case__content-text-num {
    font-size: 26px;
  }

  .sec-use-case__content-img {
    width: 100%;
  }
}

/* サービス内容 */
.sec-service {
  background-color: #e9f4ff;
}

.sec-service__inner {
  max-width: 856px;
  margin: 0 auto;
  padding: 50px 0 70px;
  text-align: center;
}

.sec-service__header {
  font-size: 40px;
  font-weight: 600;
}

.sec-service__content {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 50px;
}

.sec-service__content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.sec-service__content li {
  background-color: #f5f5f5;
  border-radius: 44px;
  width: 356px;
  height: 72px;
  margin-bottom: 30px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding-left: 90px;
  box-sizing: border-box;
}

.sec-service__content li::before {
  position: absolute;
  background-color: #fff;
  border: 1px solid #273290;
  border-radius: 50%;
  top: 0;
  left: 0;
  height: 72px;
  width: 72px;
  color: #273290;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-service__content li:first-child::before {
  content: "1";
}

.sec-service__content li:nth-child(2)::before {
  content: "2";
}

.sec-service__content li:nth-child(3)::before {
  content: "3";
}

.sec-service__content li:last-child::before {
  content: "4";
}

.sec-service__content p {
  font-size: 18px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.sec-service__price ul {
  max-width: 752px;
  display: flex;
  margin: 40px auto 0;
}

.sec-service__price ul li {
  width: 50%;
  border: 1px solid #307cd3;
}

.sec-service__price ul li:first-child {
  background-color: #307cd3;
  color: #fff;
  padding: 25px 0 5px;
}

.sec-service__price ul li:last-child {
  background-color: #fff;
  padding: 15px 0 5px;
}

.sec-service__price-1 {
  background-color: #fff;
  border-radius: 24px;
  color: #307cd3;
  padding: 5px 20px;
  font-weight: 700;
  font-size: 18px;
  width: 240px;
  margin: 0 auto;
  box-sizing: border-box;
}

.sec-service__price-2 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 0px;
}

.sec-service__price-3 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding-left: 50px;
  line-height: 40px;
}

.sec-service__price-4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 10px;
}

.sec-service__price-4 span.color-blue {
  font-size: 40px;
  font-weight: 700;
}

.sec-service__price-4 span.tax {
  font-weight: 300;
}

@media only screen and (max-width: 980px) {
  .sec-service__inner {
    margin: 0 15px;
    padding: 30px 0 50px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-service__header {
    font-size: 24px;
  }

  .sec-service__content li {
    width: 320px;
    height: 45px;
    font-size: 15px;
    justify-content: flex-start;
    padding-left: 65px;
  }

  .sec-service__content li::before {
    height: 45px;
    width: 45px;
    font-size: 15px;
  }

  .sec-service__content p {
    font-size: 15px;
    font-weight: normal;
    line-height: 30px;
  }

  .sec-service__price ul {
    display: block;
  }

  .sec-service__price ul li {
    width: 280px;
    margin: 0 auto;
  }

  .sec-service__price ul li:last-child {
    padding: 0 0 15px;
  }

  .sec-service__price p {
    font-family: "ヒラギノ角ゴシック", sans-serif;
  }

  .sec-service__price-1 {
    font-size: 14px;
    width: 180px;
  }

  .sec-service__price-2 {
    font-size: 26px;
  }

  .sec-service__price-3 {
    font-size: 14px;
    padding-left: 0px;
    text-align: center;
  }

  .sec-service__price-4 {
    font-size: 16px;
  }

  .sec-service__price-4 span.color-blue {
    font-size: 24px;
    font-weight: 700;
  }

  .sec-service__content {
    padding: 20px;
  }
}

/* ツール導入までの流れ */
.sec-flow {
  background-color: #f7f7f7;
}

.sec-flow__inner {
  max-width: 856px;
  margin: 0 auto;
  padding: 50px 0 70px;
  text-align: center;
}

.sec-flow__header {
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 30px;
}

.sec-flow__flow-content {
  display: flex;
  max-width: 752px;
  margin: 0 auto;
  justify-content: space-between;
}

.sec-flow__flow-content li {
  border: 1px solid #2a76d0;
  border-radius: 8px;
  width: 200px;
  padding: 30px 10px 10px;
  background-color: #fff;
  position: relative;
}

.sec-flow__flow-content li::before {
  border-radius: 50%;
  background-color: #2a76cf;
  position: absolute;
  top: -8%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-flow__flow-content li:first-child::before {
  content: "1";
}

.sec-flow__flow-content li:nth-child(2)::before {
  content: "2";
}

.sec-flow__flow-content li:last-child::before {
  content: "3";
}

.sec-flow__flow-content-img {
  height: 100px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-flow__flow-content-header {
  font-weight: 600;
  line-height: 10px;
}

.sec-flow__flow-content-text {
  font-size: 14px;
  text-align: left;
  line-height: 24px;
  margin: 0 auto;
  width: 90%;
}

.sec-flow__text {
  font-size: 18px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  padding: 20px 0;
}

.sec-flow__text span {
  font-weight: bold;
}

@media only screen and (max-width: 980px) {
  .sec-flow__inner {
    margin: 0 15px;
    padding: 30px 0 50px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-flow {
    background-color: #fff;
  }

  .sec-flow__inner {
    margin: 50px 15px 0;
    background-color: #fcf8f7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
    padding: 20px 0 30px;
  }

  .sec-flow__header {
    font-size: 24px;
  }

  .sec-flow__flow-content {
    display: block;
    margin-bottom: 40px;
  }

  .sec-flow__flow-content li {
    width: 280px;
    margin: 20px auto;
    box-sizing: border-box;
    padding: 20px 20px 10px 35px;
  }

  .sec-flow__flow-content li::before {
    left: -8%;
    top: 50%;
    transform: translateY(-50%);
  }

  .sec-flow__flow-content li:first-child .sec-flow__flow-content-img {
    position: absolute;
    top: -20%;
    height: 70px;
  }

  .sec-flow__flow-content li:nth-child(2) .sec-flow__flow-content-img {
    position: absolute;
    bottom: 0%;
    height: 50px;
    right: 0;
  }

  .sec-flow__flow-content li:last-child .sec-flow__flow-content-img {
    display: none !important;
  }

  .sec-flow__flow-content-img img {
    height: 100%;
  }
}

/* よくある質問 */
.sec-faq {
  max-width: 856px;
  margin: 50px auto;
  text-align: center;
}

.sec-faq__header {
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 20px;
}

.sec-faq__list li {
  border: 2px solid #295b93;
  border-radius: 16px;
  text-align: left;
  margin-bottom: 20px;
}

.sec-faq__q {
  background-color: #e9f4ff;
  border-radius: 16px 16px 0 0;
  padding: 25px 90px;
  position: relative;
  font-weight: 600;
}

.sec-faq__q::before {
  content: "Q";
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  width: 40px;
  height: 40px;
  color: #2a76cf;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

.sec-faq__a {
  font-weight: 500;
  border-radius: 16px;
  padding: 25px 20px 25px 90px;
  position: relative;
}

.sec-faq__a::before {
  content: "A";
  position: absolute;
  border-radius: 50%;
  background-color: #2a76cf;
  width: 40px;
  height: 40px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 980px) {
  .sec-faq {
    margin: 50px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-faq {
    margin: 60px 15px;
  }

  .sec-faq__header {
    font-size: 24px;
  }

  .sec-faq__q {
    font-size: 15px;
    padding: 20px 10px 20px 60px;
    line-height: 24px;
  }

  .sec-faq__a {
    font-size: 15px;
    padding: 20px 10px 20px 60px;
    font-weight: 300;
    line-height: 24px;
  }
}

/* お問い合わせ */
.sec-contact {
  background-color: #f7f7f7;
}

.sec-contact__inner {
  max-width: 856px;
  margin: 0 auto;
  padding: 50px 0 70px;
  text-align: center;
}

.sec-contact__header {
  font-size: 40px;
  font-weight: 600;
  /* padding-bottom: 30px; */
}

.sec-contact__content li {
  display: flex;
  align-items: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.sec-contact__content li:last-child {
  padding: 15px 0;
}

.sec-contact__req {
  background-color: #d82e2e;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
  padding: 3px 15px;
}

.sec-contact__any {
  background-color: #808080;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
  padding: 3px 15px;
}

.sec-contact__content li p {
  font-weight: bold;
  font-size: 18px;
  width: 20%;
  text-align: left;
  padding-left: 20px;
}

.sec-contact__content input,
.sec-contact__content textarea {
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  padding: 15px 10px;
  width: 67%;
}

.sec-contact__btn {
  display: block;
  width: 400px !important;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(45deg, #2a73ce 35%, #58ccff);
  border: none;
  border-radius: 36px;
  margin: 40px auto 10px;
  padding: 15px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.sec-contact__btn:hover {
  cursor: pointer;
}

.sec-contact__error li {
  color: red;
}

@media only screen and (max-width: 980px) {
  .sec-contact__inner {
    margin: 0 15px;
    padding: 30px 0 50px;
  }

  .sec-contact__content li {
    flex-wrap: wrap;
  }

  .sec-contact__content li p {
    width: 60%;
  }

  .sec-contact__content input,
  .sec-contact__content textarea {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .sec-contact__header {
    font-size: 24px;
    padding-bottom: 10px;
  }

  .sec-contact__btn {
    display: block;
    width: 300px !important;
    font-size: 16px;
  }
}

/* フッター */
.l-footer {
  background-color: #333333;
}

.l-footer__inner {
  max-width: 856px;
  margin: 0 auto;
  padding: 50px 0;
  color: #fff;
  font-weight: 300;
}

.l-footer__inner-box {
  display: flex;
}

.l-footer__content-left {
  width: 62%;
}

.l-footer__title {
  font-size: 18px;
  border-bottom: 1px solid #fff;
  width: 330px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.l-footer__content-left p {
  font-size: 14px;
  line-height: 24px;
}

.l-footer__sns {
  padding-top: 20px;
}

.l-footer__sns a {
  padding-right: 20px;
}

.l-footer__sub-menu {
  display: flex;
  padding-top: 20px;
  flex-wrap: wrap;
}

.l-footer__sub-menu li {
  padding-right: 20px;
}

.l-footer__sub-menu a {
  font-size: 13px;
  color: #fff;
}

.l-footer__content-right {
  width: 38%;
  padding-top: 20px;
}

.l-footer__btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.l-footer__btn li {
  width: 48%;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px;
  text-align: center;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.l-footer__btn li:last-child {
  width: 100%;
  margin-bottom: 0;
}

.l-footer__btn li a {
  color: #fff;
  font-size: 14px;
}

.l-footer__company-name {
  font-size: 24px;
  font-weight: 300;
  text-align: right;
  line-height: 0;
}

.l-footer__copy-right {
  font-size: 13px;
  text-align: right;
}

@media only screen and (max-width: 980px) {
  .l-footer__inner {
    margin: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 50px 0 20px;
  }

  .l-footer__inner-box {
    display: block;
  }

  .l-footer__content-left {
    width: 100%;
  }

  .l-footer__content-right {
    width: 100%;
  }

  .l-footer__title {
    text-align: center;
    font-size: 16px;
  }

  .l-footer__sns {
    text-align: center;
  }

  .l-footer__company-name {
    text-align: center;
    font-size: 16px;
  }

  .l-footer__sub-menu {
    justify-content: center;
  }

  .l-footer__sub-menu li {
    padding: 0 10px;
  }

  .l-footer__copy-right {
    text-align: center;
  }
}

.partner {
  height: 48px;
  width: sauto;
}

b {
  font-weight: bold;
}
