@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/*===================================================

 しらベルPro LP
 20250725

===================================================*/
:root {
  --txt-main: #1A120D;
  --txt-note: #707070;
  --link: #E32B34;
  --black1: #282C32;
  --red1: #E32B34;
  --red-gra1: linear-gradient(135deg, rgba(250, 0, 12, 1) 0%, rgba(200, 26, 18, 1) 60%);
  --red-gra2: linear-gradient(135deg, rgba(227, 43, 52, 1) 0%, rgba(200, 26, 18, 1) 100%);
  --blue1: #5151CC;
  --blue2: #1A1AA3;
  --purple1: #AF4BC3;
  --l-purple1: #F7F1FC;
  --l-gray1: #F4F6F8;
  --yellow1: #AD8800;
  --yellow2: #F3C92D;
  --l-yellow1: #FFF5D5;
  --orange1: #F26E16;
  --font-ja: "Noto Sans JP", sans-serif;
  --content-width: 1280px;
  --content-small-width: 1080px;
  --content-large-width: 1440px;
  --content-full-width: 1760px;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  box-shadow: none;
}

input,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

html {
  scroll-behavior: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

td,
th {
  padding: 0;
}

header,
footer,
main {
  display: block;
}

body {
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--txt-main);
  font-family: var(--font-ja);
  word-break: break-word;
  overflow-x: hidden;
}

a {
  color: var(--link);
  text-underline-offset: 3px;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

em {
  font-style: normal;
}

sub {
  vertical-align: baseline;
  font-size: 0.75em;
}

sup {
  vertical-align: top;
  font-size: 0.75em;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*===================================================

 共通パーツ

===================================================*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

/* 余白----- */
.pt--0 {
  padding-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .sp-pt--0 {
    padding-top: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .pc-pt--0 {
    padding-top: 0 !important;
  }
}

.mt--1em {
  margin-top: 1em;
}

.mt--1-5em {
  margin-top: 1.5em;
}

.mt--2em {
  margin-top: 2em;
}

.mt--3em {
  margin-top: 3em;
}

/* テキスト----- */
.txt-hightlight {
  background: var(--yellow1);
  padding: 0 .2em;
}

.txt-note {
  color: var(--txt-note);
  font-size: .9em;
}

@media screen and (max-width: 767px) {
  .txt-note {
    font-size: 11px;
  }
}

.bold {
  font-weight: 700;
}

.fc-municipality {
  color: var(--blue1);
}

.fc-business {
  color: var(--red1);
}

.fc-api {
  color: var(--purple1);
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* ボタン----- */
.btn-primary,
.btn-secondary {
  background: var(--red-gra1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 48px 19px 32px;
  border-radius: 40px;
  max-width: 540px;
  height: 80px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-decoration: none;
  transition: filter .3s;
}

.btn-primary::after,
.btn-secondary::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.btn-primary:hover,
.btn-secondary:hover {
  filter: brightness(1.15);
}

.btn-primary {
  color: #fff;
  box-shadow: 0 -3px 0 0 rgba(0, 0, 0, .2) inset, 0 2px 8px 0 rgba(0, 0, 0, .16);
}

.btn-primary::after {
  background-image: url(../img/icon-btn-arrow-01.svg)
}

.btn-secondary span {
  position: relative;
  color: var(--red1);
}

.btn-secondary::before {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: #fff;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 40px;
}

.btn-secondary::after {
  background-image: url(../img/icon-btn-arrow-02.svg);
}

@media screen and (max-width: 767px) {

  .btn-primary,
  .btn-secondary {
    padding: 10px 44px 12px 28px;
    max-width: 80vw;
    height: 52px;
    font-size: 16px;
  }

  .btn-primary::after,
  .btn-secondary::after {
    width: 20px;
    height: 20px;
    right: 16px;
    margin-top: -1px;
  }

  .btn-primary {
    box-shadow: 0 -2px 0 0 rgba(0, 0, 0, .2) inset, 0 2px 8px 0 rgba(0, 0, 0, .16);
  }

  .btn-secondary::before {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    top: 3px;
    left: 3px;
  }
}

/* リンク----- */
.link-blank {
  display: inline-flex;
  align-items: center;
  gap: 0 4px;
}

.link-blank::after {
  content: "";
  display: block;
  background: url(../img/icon-blank.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
}

/* CVボタンエリア----- */
.cv-btn-wrap {
  margin-top: 100px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cv-btn-wrap {
    margin-top: 56px;
  }
}

/* セクション----- */
.section {
  padding: 0 2.4vw;
  position: relative;
}

.section.gray,
.section.gray-arrow {
  background: var(--l-gray1);
}

.section.gray-arrow::before,
.section.gray-arrow::after {
  content: "";
  border-style: solid;
  border-width: 50px 100px;
  border-color: #fff transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section.gray-arrow::after {
  border-top-color: var(--l-gray1);
  top: 100%;
}

.section.gray-arrow+.section .section__container {
  padding-top: 120px;
}

.section__container {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0;
}

.section__container.small {
  max-width: var(--content-small-width);
}

.section__container.full {
  max-width: var(--content-full-width);
}

.section-heading {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading__ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.section-heading__ttl small {
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-top: .5em;
}

.section-heading .chara-center {
  margin-bottom: 10px;
}

.section-heading .chara-center img {
  width: 80px
}

.section-lead {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 0 10px;
  }

  .section.gray-arrow::before,
  .section.gray-arrow::after {
    border-width: 25px 50px;
  }

  .section.gray-arrow+.section .section__container {
    padding-top: 60px;
  }

  .section__container {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading__ttl {
    font-size: 20px;
  }

  .section-heading__ttl small {
    font-size: 12px;
  }

  .section-heading .chara-center {
    margin-bottom: 5px;
  }

  .section-heading .chara-center img {
    width: 40px
  }

  .section-lead {
    font-size: 16px;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* アイコン----- */
.icon-user,
.icon-place,
.icon-maru,
.icon-sankaku,
.icon-batsu,
.icon-blank {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-user {
  background-image: url(../img/price-icon-01.svg);
}

.icon-place {
  background-image: url(../img/price-icon-02.svg);
}

.icon-maru {
  background-image: url(../img/icon-circle.svg);
}

.icon-sankaku {
  background-image: url(../img/icon-triangle.svg);
}

.icon-batsu {
  background-image: url(../img/icon-batsu.svg);
}

.icon-blank {
  background-image: url(../img/icon-blank.svg);
}

.icon-municipality,
.icon-business,
.icon-api {
  width: 1.4em;
  height: 1.4em;
  display: inline-flex;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-municipality {
  background-image: url(../img/icon-target-01.svg);
}

.icon-business {
  background-image: url(../img/icon-target-02.svg);
}

.icon-api {
  background-image: url(../img/icon-target-03.svg);
}

.icon-municipality.white {
  background-image: url(../img/icon-target-01_white.svg);
}

.icon-business.white {
  background-image: url(../img/icon-target-02_white.svg);
}

.icon-api.white {
  background-image: url(../img/icon-target-03_white.svg);
}

/* リスト----- */
.list-circle>li {
  padding-left: 26px;
  position: relative;
  font-weight: 700;
  line-height: 1.5;
}

.list-circle>li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: var(--red1);
  position: absolute;
  top: .4em;
  left: 0;
}

.list-circle>li:not(:last-child) {
  margin-bottom: .5em;
}

.list-dot>li {
  padding-left: 1em;
  text-indent: -1em;
}

.list-dot>li::before {
  content: "・";
}

/* flex----- */
.flex {
  display: flex;
}

.flex1 {
  flex: 1;
}

/*===================================================

 ヘッダー

===================================================*/
.l-header {
  /*max-width: var(--content-full-width);*/
  width: 95vw;
  background: #fff;
  border-radius: 50px;
  padding: 0 25px 0 50px;
  position: fixed;
  top: 40px;
  left: 2vw;
  z-index: 100;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .16);
  transition: all .4s;
}

.l-header__container {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 0 24px;
}

.header-logo {
  width: 180px;
  flex-shrink: 0;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0 24px;
}

.header-nav__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 24px;
}

.header-nav__list>li {
  display: flex;
  position: relative;
}

.header-nav__list>li a {
  color: var(--txt-main);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 0 4px;
}

.header-nav__list>li::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--red1);
  border-radius: 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
  opacity: 0;
}

.header-nav__list>li.is-active a {
  color: var(--red1);
}

.header-nav__list>li.is-active::after {
  opacity: 1;
}

.header-nav__list>li.menu1 {
  margin-right: 1em;
  position: relative;
}

.header-nav__list>li.menu1::before {
  content: "";
  display: block;
  background: #aaa;
  width: 1px;
  height: 80%;
  position: absolute;
  top: 10%;
  right: -1em;
}

/* スクロール時の調整（PC） */
@media screen and (min-width: 768px) {
  .l-header.is-scroll {
    max-width: initial;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 0;
    padding: 0 25px;
  }

  .l-header.is-scroll .l-header__container {
    height: 80px;
  }
  .l-header.is-scroll .header-logo {
    width: 160px;
  }
  .l-header.is-scroll .header-btn-primary {
    height: 50px;
  }
}

/* 各サービスごとの調整----- */
/* 自治体 */
.header-nav__list>li.menu2::after {
  background: var(--blue1);
}

.header-nav__list>li.menu2.is-active a {
  color: var(--blue1);
}

/* 企業向け */
.header-nav__list>li.menu4::after {
  background: var(--purple1);
}

.header-nav__list>li.menu4.is-active a {
  color: var(--purple1);
}

/*----*/
.header-nav__cv-list {
  display: flex;
  gap: 0 12px;
}

.header-btn-primary {
  border-radius: 40px;
  height: 56px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 32px;
  white-space: nowrap;
  background: var(--black1);
  color: #fff;
  text-decoration: none;
  transition: filter .3s;
}

.header-btn-primary:hover {
  filter: brightness(1.15);
}

@media screen and (max-width: 767px) {
  .l-header {
    padding: 0 10px 0 20px;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }

  .l-header__container {
    height: 50px;
    gap: 0;
  }

  .header-logo {
    width: 96px;
  }

  .header-nav {
    gap: 0 5px;
  }

  .header-nav__list {
    display: none;
  }

  .header-nav__cv-list {
    gap: 0 4px;
  }

  .header-btn-primary {
    height: 30px;
    font-size: 10px;
    padding: 4px 12px;
  }
}

/*===================================================

 SP用ナビゲーション

===================================================*/
@media screen and (min-width: 768px) {

  .sp-menu-btn,
  .sp-gnav {
    display: none !important;
  }
}

/* メニューボタン */
.sp-menu-btn {
  background: transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sp-menu-btn .line {
  display: block;
  width: 22px;
  height: 18px;
  position: relative;
}

.sp-menu-btn .line>span {
  display: block;
  background: var(--txt-main);
  width: 22px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  transition: all 0.2s ease-in-out;
}

.sp-menu-btn .line>span:nth-child(1) {
  top: 0;
}

.sp-menu-btn .line>span:nth-child(2) {
  top: 8px;
  transition: all 0.1s ease-in-out;
}

.sp-menu-btn .line>span:nth-child(3) {
  top: 16px;
}

.sp-menu-btn.is-active .line>span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.sp-menu-btn.is-active .line>span:nth-child(2) {
  width: 0;
}

.sp-menu-btn.is-active .line>span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* ナビゲーションの開閉 */
.sp-gnav {
  position: fixed;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  transition: left .3s ease;
  display: flex;
  justify-content: flex-end;
}

.sp-gnav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.sp-gnav__container {
  position: relative;
  padding-top: 60px;
  width: 280px;
  height: 100%;
  background: #fff;
}

.sp-gnav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  left: 0;
}

.sp-gnav.is-active .sp-gnav__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sp-gnav-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  font-size: 28px;
}

/* ナビゲーションのデザイン */
.sp-gnav__list>li {
  font-size: 14px;
  line-height: 1.2;
  position: relative;
}

.sp-gnav__list>li::before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--red1);
  opacity: 0;
  transition: all .2s;
}

.sp-gnav__list>li.menu2::before {
  background: var(--blue1);
}

.sp-gnav__list>li.menu4::before {
  background: var(--purple1);
}

.sp-gnav__list>li a {
  color: var(--txt-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0 8px;
  position: relative;
  padding: 10px 20px;
  min-height: 44px;
}

.sp-gnav__list>li.is-active::before {
  opacity: 1;
}

.sp-gnav__list>li.is-active a {
  color: var(--red1);
}

.sp-gnav__list>li.menu2.is-active a {
  color: var(--blue1);
}

.sp-gnav__list>li.menu4.is-active a {
  color: var(--purple1);
}

.sp-gnav__cv-list {
  padding: 16px 24px;
}

.sp-gnav__cv-list>li {
  margin-top: 10px;
}

.sp-gnav-btn-primary {
  border-radius: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 24px;
  white-space: nowrap;
  text-decoration: none;
}

.sp-gnav-btn-primary {
  background: var(--black1);
  color: #fff;
}

/*===================================================

 フッター

===================================================*/
.l-footer {
  padding: 0 2.4vw;
}

.l-footer__container {
  padding: 0 0 64px;
  text-align: center;
}

.l-footer .trademark-txt {
  font-size: 14px;
  margin-bottom: 40px;
}

.l-footer .copyright {
  font-size: 12px;
  color: var(--txt-note);
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 0 10px;
  }

  .l-footer__container {
    padding: 0 0 24px;
  }

  .l-footer .trademark-txt {
    margin-bottom: 24px;
  }

  .l-footer .copyright {
    font-size: 10px;
  }
}

/* フッターメニュー */
.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
  margin-bottom: 32px;
}

.footer-menu-list>li a {
  color: var(--txt-note);
  font-size: 14px;
}

.footer-menu-list>li a:hover {
  text-decoration: underline;
}

.footer-menu-list>li a .icon-blank {
  margin-left: 2px;
}

@media screen and (max-width: 767px) {
  .footer-menu-list {
    margin-bottom: 24px;
  }

  .footer-menu-list>li a {
    font-size: 12px;
  }
}

/* アクセシビリティ */
.footer-accessibility {
  font-size: 12px;
  color: var(--txt-note);
  border-top: 1px solid #ddd;
  padding-top: 32px;
  margin-top: 32px;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .footer-accessibility {
    padding-top: 16px;
    margin-top: 16px;
  }
}

/* ページトップボタン */
.btn-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  background: var(--black1);
  background: rgba(255, 255, 255, .8);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .16);
}

.btn-pagetop::before {
  content: "";
  display: inline-flex;
  background: url(../img/icon-btn-arrow-03.svg) no-repeat center;
  background-size: contain;
  width: 32px;
  height: 32px;
}

.btn-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .btn-pagetop {
    right: 4px;
    bottom: 8px;
    width: 32px;
    height: 32px;
  }

  .btn-pagetop::before {
    width: 20px;
    height: 20px;
  }
}

/*===================================================

 メインビジュアル

===================================================*/
.mv {
  position: relative;
  height: 940px;
  padding: 0 4vw;
  background: var(--red-gra1);
}

.mv__img {
  background-image: url(../img/mv-pic_pc.png);
  background-repeat: no-repeat;
  background-position: right 0;
  background-size: contain;
  width: 100%;
  height: 100%;
  min-width: 1700px;
  position: absolute;
  top: 0;
  left: 0;
}

.mv__container {
  position: relative;
  padding: 200px 0 0;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  gap: 0 2vw;
}

.mv__contents {
  min-width: 800px;
  color: #fff;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mv__copy {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .24);
}

.mv__ttl {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .24);
}

.mv__ttl-row {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 0 24px;
}

.mv__ttl-row .name {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.mv-btn-free {
  display: flex;
  align-items: center;
  gap: 0 5px;
  border-radius: 80px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .24);
  color: var(--txt-main);
  padding: 12px 36px 12px 20px;
  position: relative;
  text-decoration: none;
  transition: all .2s;
}

.mv-btn-free::after {
  content: "";
  display: block;
  background: url(../img/icon-blank.svg) no-repeat center;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.mv-btn-free__logo {
  width: 76px;
}

.mv-btn-free__txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.mv-btn-free__txt small {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .mv-btn-free:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
  }
}

.mv__monitor {
  margin-top: 40px;
  width: 43vw;
  max-width: 820px;
  min-width: 640px;
  position: relative;
  z-index: 1;
}

.mv__monitor video {
  position: absolute;
  top: 2.4%;
  left: 2%;
  width: 96%;
}

@media screen and (max-width: 767px) {
  .mv {
    height: auto;
    padding: 0 10px;
  }

  .mv__img {
    display: none;
  }

  .mv__container {
    position: relative;
    padding: 90px 0 0 0;
    margin: 0 auto;
    display: flex;
    gap: 0 2vw;
  }

  .mv__contents {
    min-width: initial;
    color: #fff;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mv__copy {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }

  .mv__ttl {
    margin-top: 32px;
    font-size: 15px;
  }

  .mv__ttl-row {
    flex-direction: column;
    margin-top: 8px;
    gap: 0 24px;
  }

  .mv__ttl-row .name {
    font-size: 40px;
  }

  .mv__ttl-row .btn {
    margin-top: 16px;
  }

  .mv-btn-free {
    padding: 8px 40px 8px 24px;
  }

  .mv-btn-free::after {
    right: 12px;
  }

  .mv-btn-free__logo {
    width: 64px;
  }

  .mv-btn-free__txt {
    font-size: 14px;
  }

  .mv-btn-free__txt small {
    font-size: 11px;
  }

  .mv__disaster-list {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 0 3vw;
  }

  .mv__disaster-list>li {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 5px 0;
  }

  .mv__disaster-list>li img {
    width: 12vw;
  }

  .mv__monitor {
    margin-top: -60px;
    width: 100%;
    max-width: initial;
    min-width: initial;
    bottom: -80px;
  }
}

/*===================================================

 導入部 対象別リンクエリア

===================================================*/
.section-intro {
  padding-top: 10vw;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(244, 246, 248, 1) 100%);
}

.section-intro .section__container {
  padding-top: 0;
}

.section-intro .intro-lead {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 80px;
}

.target-nav__row {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.target-nav__row::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 76%;
}

.target-nav__col-pro {
  width: 73%;
}

.target-nav__col-free {
  width: 21%;
}

.target-nav .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.target-nav .head {
  background: var(--black1);
  border-radius: 4px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 12px;
  position: relative;
}

.target-nav .head::before {
  content: "";
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: var(--black1) transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.target-nav__col-free .head {
  background: #06AD00;
}

.target-nav__col-free .head::before {
  border-top-color: #06AD00;
}

.target-card-list {
  flex: 1;
  display: flex;
  gap: 0 1.8%;
}

.target-card-list>li {
  flex: 1;
}

.target-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
  text-decoration: none;
  position: relative;
  transition: all .2s;
}

.target-card::after {
  content: "";
  display: block;
  background: var(--red1) url(../img/icon-btn-arrow-02.svg) no-repeat center;
  background-size: 30px auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .2s;
}

@media screen and (min-width: 768px) {
  .target-card:hover {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .16);
  }

  .target-card:hover::after {
    bottom: -30px;
  }
}

.target-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  padding: 12px 8px;
  background: var(--red1);
  border-radius: 10px 10px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.target-card__head [class^="icon-"] {
  width: 1.2em;
  height: 1.2em;
}

.target-card__body {
  text-align: center;
  line-height: 1.4;
  padding: 16px 16px 40px;
  color: var(--txt-main);
}

.target-card__body .ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.target-card__body .logo {
  width: 64%;
  margin: 0 auto 24px;
}

.target-card__body .txt {
  font-size: 16px;
  font-weight: 500;
}

.target-card__body .user {
  font-size: 16px;
  font-weight: 700;
}

.target-card__body .btn-blank {
  margin-top: 16px;
  display: inline-flex;
  gap: 0 4px;
  border: 2px solid #ddd;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 20px;
}

@media screen and (max-width: 767px) {
  .section-intro {
    padding-top: 100px;
  }

  .section-intro .intro-lead {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .target-nav__row {
    flex-direction: column;
    gap: 48px 0;
  }

  .target-nav__row::after {
    display: none;
  }

  .target-nav__col-pro {
    width: auto;
  }

  .target-nav__col-free {
    width: auto;
  }

  .target-nav .content {
    height: auto;
    gap: 16px;
  }

  .target-nav .head {
    font-size: 16px;
    padding: 10px;
  }

  .target-nav .head::before {
    border-width: 7px 7px 0;
  }

  .target-card-list {
    flex-direction: column;
    gap: 16px 0;
  }

  .target-card {
    height: auto;
    border-radius: 8px;
  }

  .target-card::after {
    background-size: 16px auto;
    width: 24px;
    height: 24px;
    bottom: 8px;
    right: 8px;
    left: auto;
    transform: none;
  }

  .target-card__head {
    padding: 8px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    font-size: 14px;
  }

  .target-card__body {
    text-align: left;
    line-height: 1.4;
    padding: 12px 16px 16px 34vw;
    position: relative;
  }

  .target-card__body .ttl {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .target-card__body .logo {
    width: 28vw;
    margin: 0;
    position: absolute;
    top: 16px;
    left: 3vw;
  }

  .target-card__body .txt {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .target-card__body .user {
    font-size: 12px;
  }

  .target-card__body .btn-blank {
    margin-top: 4px;
    border-width: 1px;
    font-size: 12px;
    gap: 0 4px;
    padding: 8px 16px;
  }
}

/* 各サービスごとの色変更 */
.target-card--municipality::after {
  background-color: var(--blue1);
}

.target-card--municipality .target-card__head {
  background: var(--blue1);
}

.target-card--municipality .target-card__body .user {
  color: var(--blue1);
}

.target-card--business::after {
  background-color: var(--red1);
}

.target-card--business .target-card__head {
  background: var(--red1);
}

.target-card--business .target-card__body .user {
  color: var(--red1);
}

.target-card--api::after {
  background-color: var(--purple1);
}

.target-card--api .target-card__head {
  background: var(--purple1);
}

.target-card--api .target-card__body .user {
  color: var(--purple1);
}

.target-card--free::after {
  display: none;
}

.target-card--free .target-card__head {
  background: #E5E7E9;
  color: var(--txt-main);
}

.target-card--free .target-card__body {
  padding-bottom: 24px;
}

.target-card--free .target-card__body .logo {
  width: 50%;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .target-card--free .target-card__body {
    padding-bottom: 16px;
  }

  .target-card--free .target-card__body .logo {
    width: 24vw;
    left: 5vw;
  }
}

/*===================================================

 各サービス共通

===================================================*/
.target-contents {
  margin-bottom: 160px;
}

.target-heading {
  text-align: center;
}

.target-heading__icon {
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  position: relative;
  bottom: -40px;
  padding: 0 24px 24px;
}

.target-heading__icon .ribbon {
  min-width: 240px;
  background: var(--red1);
  position: relative;
  height: 36px;
  margin-bottom: 16px;
}

.target-heading__icon .ribbon::before,
.target-heading__icon .ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--red1) transparent;
}

.target-heading__icon .ribbon::before {
  left: -10px;
  border-width: 18px 0 18px 10px;
}

.target-heading__icon .ribbon::after {
  right: -10px;
  border-width: 18px 10px 18px 0;
}

.target-heading__icon .ribbon__inner {
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 0 16px;
  height: 36px;
}

.target-heading__icon .logo {
  width: 240px;
  padding-left: 40px;
}

.target-heading__bar {
  padding: 56px 2.4vw 48px;
  background: var(--red1);
  position: relative;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  overflow: hidden;
}

.target-heading__bar::before {
  content: "";
  display: block;
  background: var(--red1);
  mix-blend-mode: multiply;
  opacity: .25;
  aspect-ratio: 1/1;
  height: 200%;
  position: absolute;
  bottom: 0;
  left: -15%;
  transform: rotate(45deg);
}

.target-heading__bar .ttl {
  position: relative;
  font-size: 40px;
  font-weight: 700;
}

.target-heading__bar .txt {
  position: relative;
  margin-top: 16px;
  font-size: 22px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .target-contents {
    margin-bottom: 40px;
  }

  .target-heading__icon {
    bottom: -40px;
    padding: 0 8px 12px;
  }

  .target-heading__icon .ribbon {
    min-width: 180px;
    height: 24px;
    margin-bottom: 8px;
  }

  .target-heading__icon .ribbon::before {
    left: -6px;
    border-width: 12px 0 12px 6px;
  }

  .target-heading__icon .ribbon::after {
    right: -6px;
    border-width: 12px 6px 12px 0;
  }

  .target-heading__icon .ribbon__inner {
    font-size: 13px;
    padding: 0 16px;
    height: 24px;
  }

  .target-heading__icon .logo {
    width: 150px;
    padding-left: 20px;
  }

  .target-heading__bar {
    padding: 56px 16px 24px;
  }

  .target-heading__bar::before {
    left: -60%;
  }

  .target-heading__bar .ttl {
    font-size: 21px;
  }

  .target-heading__bar .txt {
    font-size: 14px;
  }
}

/* 各サービスごとの色変更----- */
/* 自治体 */
.target-contents--municipality .target-heading__icon .ribbon,
.target-contents--municipality .target-heading__bar,
.target-contents--municipality .target-heading__bar::before {
  background: var(--blue1);
}

.target-contents--municipality .target-heading__icon .ribbon::before,
.target-contents--municipality .target-heading__icon .ribbon::after {
  border-color: var(--blue1) transparent;
}

/* API */
.target-contents--api .target-heading__icon .ribbon,
.target-contents--api .target-heading__bar,
.target-contents--api .target-heading__bar::before {
  background: var(--purple1);
}

.target-contents--api .target-heading__icon .ribbon::before,
.target-contents--api .target-heading__icon .ribbon::after {
  border-color: var(--purple1) transparent;
}

/*===================================================

 サービス説明

===================================================*/
.section-about .section__container {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-about .section-lead {
  margin-bottom: 56px;
}

@media screen and (max-width: 767px) {
  .section-about .section__container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .section-about .section-lead {
    margin-bottom: 32px;
  }
}

/* 共通----- */
.about-capture__img img {
  border-radius: 8px;
  border: 10px solid var(--txt-main);
}

.about-capture__caption {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.about-txt-wrap {
  position: relative;
  padding-top: 60px;
}

.about-txt-wrap .target-icon {
  display: inline-block;
  position: relative;
}

.about-txt-wrap .target-icon__arrow-left {
  position: absolute;
  top: 50%;
  left: -76px;
  transform: translateY(-50%);
}

.about-txt-wrap .target-icon__arrow-right {
  position: absolute;
  top: 50%;
  right: -76px;
  transform: translateY(-50%);
}

.about-txt-wrap .target-icon__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--red1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

.about-txt-box {
  background: var(--l-gray1);
  border-radius: 4px;
  padding: 40px;
  text-align: left;
}

.list-circle>li {
  padding-left: 27px;
}

.list-circle>li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: var(--red1);
}

.list-circle>li:not(:last-child) {
  margin-bottom: .5em;
}

@media screen and (max-width: 767px) {
  .about-capture__img img {
    border-radius: 4px;
    border-width: 6px;
  }

  .about-capture__caption {
    margin-top: 10px;
    font-size: 12px;

    br {
      display: none;
    }
  }

  .about-txt-wrap {
    padding-top: 60px;
  }

  .about-txt-wrap .target-icon {}

  .about-txt-wrap .target-icon__arrow-left,
  .about-txt-wrap .target-icon__arrow-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 15px;
    top: -5px;
    left: 5px;
  }

  .about-txt-wrap .target-icon__arrow-left {
    transform: rotate(90deg);
  }

  .about-txt-wrap .target-icon__arrow-right {
    transform: rotate(-90deg);
  }

  .about-txt-wrap .target-icon__arrow-left svg,
  .about-txt-wrap .target-icon__arrow-right svg {
    width: 100%;
  }

  .about-txt-wrap .target-icon__circle {
    width: 60px;
    height: 60px;
    font-size: 14px;
    position: relative;
    z-index: 1;
  }

  .about-txt-box {
    padding: 30px 10px 16px;
  }

  .list-circle>li {
    padding-left: 16px;
  }

  .list-circle>li::before {
    width: .8em;
    height: .8em;
    top: .3em;
  }
}

/* 各サービスごとの調整----- */
/* 自治体 */
.municipality-about__row {
  display: flex;
}

.municipality-about__col-01 {
  width: 34.375%;
}

.municipality-about__col-02 {
  order: -1;
  flex: 1;
  padding-right: 44px;
}

.municipality-about__col-02 .about-txt-wrap {
  text-align: right;
}

.municipality-about__col-02 .target-icon {
  position: absolute;
  right: 40px;
  top: -20px;
}

.municipality-about__col-03 {
  flex: 1;
  padding-left: 44px;
}

.municipality-about__col-03 .target-icon {
  position: absolute;
  left: 40px;
  top: -20px;
}

.municipality-about__col-02 .target-icon__circle {
  background: var(--blue1);
}

.municipality-about__col-03 .target-icon__circle {
  background: var(--yellow1);
}

.municipality-about__col-02 .list-circle>li::before {
  background: var(--blue1);
}

.municipality-about__col-03 .list-circle>li::before {
  background: var(--yellow2);
}

@media screen and (max-width: 767px) {
  .municipality-about__row {
    flex-wrap: wrap;
  }

  .municipality-about__col-01 {
    width: 100%;
    order: -2;
    padding: 0 24px 12px;
  }

  .municipality-about__col-02 {
    order: -1;
    flex: auto;
    width: 50%;
    padding: 0 4px 0 0;
  }

  .municipality-about__col-02 .about-txt-wrap {
    text-align: right;
  }

  .municipality-about__col-02 .target-icon,
  .municipality-about__col-03 .target-icon {
    right: auto;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }

  .municipality-about__col-03 {
    flex: auto;
    width: 50%;
    padding: 0 0 0 4px;
  }

  .municipality-about__col-03 .about-txt-wrap,
  .municipality-about__col-03 .about-txt-box {
    height: 100%;
  }
}

/* 企業向け */
.business-about__row {
  display: flex;
}

.business-about__col-01 {
  width: 43.75%;
}

.business-about__col-02 {
  padding-left: 64px;
}

.business-about__col-02 .target-icon {
  position: absolute;
  left: 40px;
  top: -20px;
}

@media screen and (max-width: 767px) {
  .business-about__row {
    flex-direction: column;
  }

  .business-about__col-01 {
    width: 100%;
    padding: 0 24px 12px;
  }

  .business-about__col-02 {
    padding-left: 0;
  }

  .business-about__col-02 .target-icon {
    right: auto;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }

  .business-about__col-02 .about-txt-box {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* API */
.api-about {
  max-width: var(--content-small-width);
  margin-left: auto;
  margin-right: auto;
}

.api-about__row {
  display: flex;
  gap: 0 60px;
}

.api-about__col-01 {
  width: 320px;
}

.api-about__col-02 {
  flex: 1;
}

.api-about__col-02 .about-txt-wrap {
  padding-top: 0;
  display: flex;
  align-items: center;
}

.api-about__col-02 .list-circle>li::before {
  background: var(--purple1);
}

.api-about__col-02 .target-icon__circle {
  width: 134px;
  height: 134px;
  background: var(--purple1);
  font-size: 20px;
  position: relative;
  right: -20px;
  z-index: 1;
}

.api-about__col-02 .target-icon__arrow {
  position: absolute;
  z-index: 0;
  left: -150px;
  top: 0;
  width: 180px;
  height: 134px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px 0;
}

.api-about__col-02 .target-icon__arrow-left,
.api-about__col-02 .target-icon__arrow-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--purple1);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  position: static;
  transform: none;
}

.api-about__col-02 .target-icon__arrow-left {
  margin-left: auto;
}

.api-about__col-02 .target-icon__arrow-left .txt {
  margin-left: 2em;
}

.api-about__col-02 .target-icon__arrow-right {
  margin-right: auto;
}

.api-about__col-02 .target-icon__arrow-right .txt {
  margin-right: 2em;
}

.api-db {
  position: relative;
  z-index: 1;
}

.api-db__img {
  text-align: center;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.api-db__img .logo {
  padding-left: 30px;
}

.api-db__img .logo img {
  width: 120px;
  margin: 0 auto 10px;
}

.api-db__img svg {
  width: 100%;
}

.api-db__caption {
  margin-top: 16px;
  background: var(--l-purple1);
  padding: 16px 24px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .api-about {}

  .api-about__row {
    display: block;
  }

  .api-about__col-01 {
    width: auto;
  }

  .api-about__col-02 {}

  .api-about__col-02 .about-txt-wrap {
    display: block;
  }

  .api-about__col-02 .about-txt-box {
    padding-left: 16px;
    padding-right: 16px;
  }

  .api-about__col-02 .target-icon {
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
  }

  .api-about__col-02 .target-icon__circle {
    width: 90px;
    height: 90px;
    font-size: 14px;
    right: auto;
    left: 30px;
    bottom: -20px;
    position: absolute;
  }

  .api-about__col-02 .target-icon__arrow {
    order: -1;
    position: relative;
    left: 0;
    top: 0;
    width: 80px;
    height: 60px;
    flex-direction: row-reverse;
    gap: 0;
    margin-left: 40px;
  }

  .api-about__col-02 .target-icon__arrow-left,
  .api-about__col-02 .target-icon__arrow-right {
    flex-direction: row;
    align-items: center;
    font-size: 11px;
    width: 15px;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
  }

  .api-about__col-02 .target-icon__arrow-left svg,
  .api-about__col-02 .target-icon__arrow-right svg {
    transform: rotate(90deg);
    transform-origin: 0 0;
    position: absolute;
    width: 87px;
    height: 15px;
    top: 0;
    left: 0;
  }

  .api-about__col-02 .target-icon__arrow-right svg {
    top: auto;
    bottom: 74px;
  }

  .api-about__col-02 .target-icon__arrow-left .txt,
  .api-about__col-02 .target-icon__arrow-right .txt {
    position: absolute;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
  }

  .api-about__col-02 .target-icon__arrow-left {
    left: 55px;
  }

  .api-about__col-02 .target-icon__arrow-left .txt {
    margin-left: 0;
    left: 0;
  }

  .api-about__col-02 .target-icon__arrow-right {
    left: 34px;
  }

  .api-about__col-02 .target-icon__arrow-right .txt {
    margin-right: 0;
    right: 30px;
  }

  .api-db {
    display: flex;
    align-items: flex-end;
    padding: 0 20px;
  }

  .api-db__img {
    width: 120px;
    flex-shrink: 0;
  }

  .api-db__img .logo {
    padding-left: 10px;
  }

  .api-db__img .logo img {
    width: 100px;
  }

  .api-db__img svg {
    width: 80px;
    height: 60px;
  }

  .api-db__caption {
    margin-top: 0;
    padding: 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
  }
}

/*===================================================

 問題

===================================================*/
.section-problem {}

.section-problem .section__container {
  padding-top: 0;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8%;
}

.problem-item {
  background: #fff;
  border: 3px solid var(--red1);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.problem-item__ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  min-height: 2.8em;
  margin-bottom: 12px;
}

.problem-item__img {
  text-align: center;
  max-width: 240px;
  margin: 0 auto 12px;
}

.problem-item__img img {
  height: 140px;
}

@media screen and (max-width: 767px) {
  .problem-list {
    display: block
  }

  .problem-item {
    border-width: 2px;
    border-radius: 8px;
    padding: 24px 16px;
    margin-bottom: 10px;
  }

  .problem-item:last-child {
    margin-bottom: 0;
  }

  .problem-item::before {
    width: 36px;
    height: 36px;
    top: -18px;
  }

  .problem-item__ttl {
    font-size: 18px;
    min-height: initial;
    margin-bottom: 8px;
  }

  .problem-item__img {
    margin-bottom: 8px;
  }

  .problem-item__img img {
    height: 100px;
  }
}

/* 各サービスごとの調整----- */
/* 自治体 */
.target-contents--municipality .problem-item {
  border-color: var(--blue1);
}

/* API */
.target-contents--api .problem-item {
  border-color: var(--purple1);
}

/*===================================================

 特徴

===================================================*/
.feature-list .feature-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.feature-item {
  margin-bottom: 40px;
  display: flex;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
  overflow: hidden;
}

.feature-item__img {
  max-width: 600px;
  width: 47%;
}

.feature-item__desc {
  flex: 1;
  padding: 32px 48px;
}

@media screen and (min-width: 768px) {
  .feature-item .feature-item-img {
    height: 100%;
  }

  .feature-item .feature-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.feature-item .feature-number {
  display: inline-flex;
  background: #fff;
  border: 2px solid var(--red1);
  margin-bottom: 16px;
  line-height: 1;
  font-weight: 700;
}

.feature-item .feature-number .label {
  background: var(--red1);
  color: #fff;
  font-size: 16px;
  padding: .4em .5em;
}

.feature-item .feature-number .number {
  font-size: 18px;
  color: var(--red1);
  align-self: center;
  padding: 0 .5em;
}

.feature-item .feature-ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.feature-item .feature-txt {
  margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
  .feature-list .feature-item:nth-child(2n) {
    flex-direction: column;
  }

  .feature-item {
    margin-bottom: 16px;
    border-radius: 8px;
    flex-direction: column;
  }

  .feature-item:last-child {
    margin-bottom: 0;
  }

  .feature-item__img {
    width: 100%;
  }

  .feature-item__desc {
    padding: 16px 16px 24px;
  }

  .feature-item .feature-number {
    margin-bottom: 12px;
  }

  .feature-item .feature-number .label {
    font-size: 12px;
  }

  .feature-item .feature-number .number {
    font-size: 16px;
  }

  .feature-item .feature-ttl {
    font-size: 18px;
  }

  .feature-item .feature-txt {
    margin-top: 1em;
  }
}

/* 各サービスごとの調整----- */
/* 自治体 */
.target-contents--municipality .feature-item .feature-number {
  border-color: var(--blue1);
}

.target-contents--municipality .feature-item .feature-number .label {
  background: var(--blue1);
}

.target-contents--municipality .feature-item .feature-number .number {
  color: var(--blue1);
}

/* API */
.target-contents--api .feature-item .feature-number {
  border-color: var(--purple1);
}

.target-contents--api .feature-item .feature-number .label {
  background: var(--purple1);
}

.target-contents--api .feature-item .feature-number .number {
  color: var(--purple1);
}

/* 機能比較 */
.compare-table {
  display: flex;
  align-items: flex-start;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.compare-table__col-label {
  margin-top: 100px;
  border-radius: 16px 0 0 16px;
  background: var(--red1);
  width: 160px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .16);
}

.compare-table__col-label .label {
  color: #fff;
  height: 70px;
  display: flex;
  align-items: center;
  border-top: 1px solid #fff;
  font-weight: 700;
  padding: 16px;
}

.compare-table__col-label .label:first-child {
  border-top: none;
}

.compare-table__col-data {
  background: #fff;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .16);
  overflow: hidden;
}

.compare-table__col-data .head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 97px;
}

.compare-table__col-data .head img {
  height: 60px;
}

.compare-table__col-data .data {
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ccc;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin: 0 16px;
}

@media screen and (max-width: 767px) {
  .compare-table-wrap {
    overflow-x: auto;
    margin-left: -10px;
    margin-right: -10px;
    padding: 0 16px 16px;
  }

  .compare-table {
    width: 600px;
  }

  .compare-table__col-label {
    margin-top: 65px;
    border-radius: 10px 0 0 10px;
    width: 65px;
  }

  .compare-table__col-label .label {
    height: 60px;
    padding: 10px 8px;
    font-size: 11px;
  }

  .compare-table__col-data {
    background: #fff;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .16);
    overflow: hidden;
    font-size: 12px;
  }

  .compare-table__col-data .head {
    height: 63px;
  }

  .compare-table__col-data .head img {
    height: 30px;
  }

  .compare-table__col-data .data {
    height: 60px;
    margin: 0 8px;
  }
}

/* 製品別 ----*/
/* 無料版 */
.compare-table__col-data.free {
  flex: 1;
  margin-top: 30px;
  border-radius: 20px 0 0 0;
}

.compare-table__col-data.free .head {
  height: 70px;
}

.compare-table__col-data.free .head img {
  height: 50px;
}

@media screen and (max-width: 767px) {
  .compare-table__col-data.free {
    margin-top: 20px;
    border-radius: 10px 0 0 0;
  }

  .compare-table__col-data.free .head {
    height: 45px;
  }

  .compare-table__col-data.free .head img {
    height: 30px;
  }
}

/* プロ版 */
.compare-table__col-data.pro {
  flex: 1;
  border-style: solid;
  border-width: 3px 0 3px 3px;
  border-color: var(--red1);
  border-radius: 20px 0 0 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .compare-table__col-data.pro {
    border-width: 2px 0 2px 2px;
    border-radius: 10px 0 0 10px;
    padding-bottom: 10px;
  }
}

/* API */
.compare-table__col-data.api {
  flex: 1;
  border-style: solid;
  border-width: 3px 3px 3px 0;
  border-color: var(--red1);
  border-radius: 0 20px 20px 0;
  padding-bottom: 20px;
}

.compare-table__col-data.api .head {
  gap: 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--purple1);
}

@media screen and (max-width: 767px) {
  .compare-table__col-data.api {
    border-width: 2px 2px 2px 0;
    border-radius: 0 10px 10px 0;
    padding-bottom: 10px;
  }

  .compare-table__col-data.api .head {
    gap: 0 4px;
    font-size: 16px;
  }
}

/* 他サービス */
.compare-table__col-data.other {
  flex: 1;
  margin-top: 40px;
  border-radius: 0 20px 20px 0;
}

.compare-table__col-data.other .head {
  height: 60px;
  background: #757575;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.compare-table__col-data.other .head+.data:nth-child(2) {
  border-top-color: transparent;
}

.compare-table__col-data.other .data {
  font-weight: 400;
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .compare-table__col-data.other {
    margin-top: 25px;
    border-radius: 0 10px 10px 0;
  }

  .compare-table__col-data.other .head {
    height: 40px;
    font-size: 12px;
    padding: 0 1em;
  }

  .compare-table__col-data.other .data {
    font-size: 12px;
  }
}

.spec-update-txt {
  text-align: right;
  font-size: 14px;
  color: var(--txt-note);
}

@media screen and (max-width: 767px) {
  .spec-update-txt {
    font-size: 12px;
  }

  .cv-btn-wrap.spec-cv {
    margin-top: 40px;
  }
}

/*===================================================

 使用イメージ

===================================================*/
.use-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}

.use-item {
  background: #fff;
  border-radius: 16px;
  border: 3px solid var(--red1);
  text-align: center;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
}

.use-list:has(.use-item:only-child) {
  justify-content: center;
  display: flex;
}

.use-item:only-child {
  max-width: 640px;
  min-width: 480px;
}

.use-item__number {
  background: var(--red1);
  border-radius: 0 0 8px 8px;
  padding: 6px 16px 8px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
  font-weight: 700;
  line-height: 1;
}

.use-item__number .number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--red1);
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.use-item__body {
  text-align: left;
  padding: 24px 40px 40px;
}

.use-item__img {
  max-width: 360px;
  width: 80%;
  margin: 0 auto 24px;
}

.use-item__ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

.use-item__sub-ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: .5em;
}

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

  .use-item {
    border-radius: 8px;
    border-width: 2px;
    margin-bottom: 16px;
  }

  .use-item:last-child {
    margin-bottom: 0;
  }

  .use-item:only-child {
    max-width: initial;
    min-width: initial;
  }

  .use-item__number {
    border-radius: 0 0 6px 6px;
    padding: 4px 12px 6px;
    gap: 0 4px;
    font-size: 12px;
  }

  .use-item__number .number {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

  .use-item__body {
    padding: 16px 16px 24px;
  }

  .use-item__img {
    max-width: initial;
    width: auto;
    max-width: 280px;
    margin: 0 auto 16px;
  }

  .use-item__ttl {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .use-item__sub-ttl {
    font-size: 16px;
  }
}

/* 各サービスごとの調整----- */
/* 自治体 */
.target-contents--municipality .use-item {
  border-color: var(--blue1);
}

.target-contents--municipality .use-item__number {
  background: var(--blue1);
}

.target-contents--municipality .use-item__number .number {
  color: var(--blue1);
}

/* API */
.target-contents--api .section-use.gray::after {
  display: none;
}

.target-contents--api .use-item {
  border-color: var(--purple1);
}

.target-contents--api .use-item__number {
  background: var(--purple1);
}

.target-contents--api .use-item__number .number {
  color: var(--purple1);
}

.target-contents--api .use-item__img {
  max-width: 240px;
}

@media screen and (max-width: 767px) {
  .target-contents--api .use-item__img {
    max-width: 48vw;
  }
}

/* CVボタン */
.use-cv .cv-btn-bbl::before,
.use-cv .cv-btn-bbl::after {
  background: #fff;
}

.use-cv .cv-btn-bbl__txt {
  color: #fff;
}

.use-cv .btn-primary {
  border: 3px solid #fff;
}

@media screen and (max-width: 767px) {
  .use-cv .btn-primary {
    border-width: 2px;
  }
}

/*===================================================

 参考料金イメージ

===================================================*/
.section-price {}

.price-sample-box {
  background: #fff;
  border: 3px solid var(--red1);
  border-radius: 16px;
  padding: 40px;
}

.price-sample-box__row {
  display: flex;
}

.price-sample-box__col-l {
  width: 50%;
  padding-right: 40px;
}

.price-sample-box__col-r {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .price-sample-box {
    border-width: 2px;
    border-radius: 8px;
    padding: 16px;
  }

  .price-sample-box__row {
    display: block;
  }

  .price-sample-box__col-l {
    width: auto;
    padding-right: 0;
  }

  .price-sample-box__col-r {
    width: auto;
  }
}

/* モデルケース */
.price-sample-box .modelcase-heading {
  display: flex;
  gap: 0 24px;
  margin-bottom: 24px;
}

.price-sample-box .modelcase-heading .circle {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--red1);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.price-sample-box .modelcase-heading .title {
  font-size: 24px;
  font-weight: 700;
  align-self: center;
  line-height: 1.4;
}

.price-sample-box .modelcase-price {
  background: #F4F4F4;
  border-radius: 6px;
  align-items: center;
  padding: 16px;
}

.price-sample-box .modelcase-price__detail {
  padding: 8px;
  margin-bottom: 16px;
}

.price-sample-box .modelcase-price__detail>li {
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1.4;
}

.price-sample-box .modelcase-price__detail>li:not(:last-child) {
  margin-bottom: 8px;
}

.price-sample-box .modelcase-price__detail>li [class^="icon-"] {
  font-size: 1.6em;
  margin-right: 8px;
}

.price-sample-box .modelcase-price__detail>li em {
  font-size: 20px;
  font-weight: 500;
}

.price-sample-box .modelcase-price__price {
  display: flex;
  gap: 0 16px;
}

.price-sample-box .modelcase-price__price .price-block {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 16px 24px;
  line-height: 1.4;
}

.price-sample-box .modelcase-price__price .price-block__label {
  font-weight: 700;
  margin-bottom: 8px;
}

.price-sample-box .modelcase-price__price .price-block__data {
  font-weight: 500;
  line-height: 1;
}

.price-sample-box .modelcase-price__price em {
  font-size: 40px;
  font-weight: 500;
  margin-right: 4px;
  margin-left: 2px;
}

@media screen and (max-width: 767px) {
  .price-sample-box .modelcase-heading {
    gap: 0 16px;
    margin-bottom: 16px;
  }

  .price-sample-box .modelcase-heading .circle {
    width: 64px;
    height: 64px;
    font-size: 12px;
  }

  .price-sample-box .modelcase-heading .title {
    font-size: 18px;
  }

  .price-sample-box .modelcase-price {
    margin-top: 20px;
    padding: 12px;
  }

  .price-sample-box .modelcase-price__detail {
    padding: 4px;
    margin-bottom: 12px;
  }

  .price-sample-box .modelcase-price__detail>li:not(:last-child) {
    margin-bottom: 4px;
  }

  .price-sample-box .modelcase-price__detail>li [class^="icon-"] {
    margin-right: 4px;
  }

  .price-sample-box .modelcase-price__detail>li em {
    font-size: 16px;
  }

  .price-sample-box .modelcase-price__price {
    gap: 0 8px;
    font-size: 14px;
  }

  .price-sample-box .modelcase-price__price .price-block {
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
  }

  .price-sample-box .modelcase-price__price em {
    font-size: 28px;
  }
}

/* 各サービスごとの調整----- */
/* 自治体 */
.target-contents--municipality .price-sample-box {
  border-color: var(--blue1);
}

.target-contents--municipality .price-sample-box .modelcase-heading .circle {
  background: var(--blue1);
}

/* API */
.target-contents--api .price-sample-box {
  border-color: var(--purple1);
}

.target-contents--api .price-sample-box .modelcase-heading .circle {
  background: var(--purple1);
}

/*===================================================

 API 取得可能なデータ一覧

===================================================*/
.section-data .section__container {
  padding-bottom: 0;
}

.api-data-box {
  background: var(--l-purple1);
  border-radius: 4px;
  padding: 5.625%  5.625% 4%;
  position: relative;
}

.api-data-box__head {
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
}

.api-data-box__ttl {
  text-align: center;
  color: var(--purple1);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.api-data-box__row {
  display: flex;
}

.api-data-box__row .list-circle {
  flex: 1;
}

.api-data-box__row .list-circle>li {
  line-height: 1.7;
}

.api-data-box__row .list-circle>li::before {
  background: var(--purple1);
}

.api-data-box__row .list-circle>li small {
  font-size: 14px;
  font-weight: 400;
}

.api-data-box .update {
  font-size: 14px;
  text-align: right;
  color: var(--txt-note);
}

.api-data-box__cta-txt {
  color: var(--purple1);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .api-data-box {
    padding: 56px 16px 24px;
  }

  .api-data-box__head {
    top: -16px;
  }

  .api-data-box__ttl {
    font-size: 18px;
    line-height: 1.4;
  }

  .api-data-box__row {
    display: block;
  }

  .api-data-box__row .list-circle>li {
    line-height: initial;
  }

  .api-data-box__row .list-circle>li:not(:last-child) {
    margin-bottom: 1em;
  }

  .api-data-box__row .list-circle>li small {
    font-size: 12px;
    font-weight: 400;
  }

  .api-data-box .update {
    font-size: 12px;
  }

  .api-data-box__cta-txt {
    margin-top: 1em;
  }
}

/*===================================================

 導入までの流れ

===================================================*/
.section-flow {
  background: var(--l-blue2);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 48px;
  margin-bottom: 24px;
}

.flow-item {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
  position: relative;
}

.flow-item:not(:last-child)::after {
  content: "";
  display: block;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent var(--red1);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 14px;
}

.flow-item__number {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--red1);
  line-height: 1;
  margin-bottom: 16px;
}

.flow-item__img {
  text-align: center;
}

.flow-item__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.flow-item__txt {
  margin-top: .8em;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin: 0 40px 24px;
  }
}

@media screen and (max-width: 767px) {
  .flow-list {
    display: block;
    margin-bottom: 0;
  }

  .flow-item {
    padding: 16px 16px 24px 96px;
    margin-bottom: 32px;
    position: relative;
  }

  .flow-item:last-child {
    margin-bottom: 16px;
  }

  .flow-item:not(:last-child)::after {
    border-width: 16px 16px 0 16px;
    border-color: var(--red1) transparent transparent transparent;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin: 8px 0 0;
  }

  .flow-item__number {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: left;
  }

  .flow-item__img {
    position: absolute;
    top: 16px;
    left: 10px;
    width: 72px;
  }

  .flow-item__ttl {
    font-size: 16px;
    text-align: left;
  }
}

/*===================================================

 よくある質問

===================================================*/
.section-faq {
  background: var(--l-blue1);
}

.section-faq .section__container {
  padding-bottom: 24px;
}

.faq-list {
  max-width: var(--content-small-width);
  margin-left: auto;
  margin-right: auto;
}

/* ▼マーカー消す */
.faq-item summary::marker {
  content: "";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* //マーカー消す */
.faq-item {
  background: var(--l-gray1);
  border-radius: 8px;
  margin-bottom: 16px;
}

.faq-item__head {
  padding: 16px 72px 16px 24px;
  min-height: 80px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-item__head::before,
.faq-item__head::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--black1);
  position: absolute;
  right: 24px;
  transition: all .3s;
}

.faq-item__head::before {
  transform: rotate(90deg);
}

.faq-item[open] .faq-item__head::before {
  transform: rotate(180deg);
}

.faq-item[open] .faq-item__head::after {
  opacity: 0;
}

.faq-item__head .question {
  font-size: 18px;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
}

.faq-item__head .question::before {
  content: "Q";
  color: var(--blue2);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  line-height: 1;
}

.faq-item__body {
  padding: 0 72px 24px 24px;
}

.faq-item__body .answer {
  padding-left: 40px;
  position: relative;
}

.faq-item__body .answer::before {
  content: "A";
  color: var(--red1);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .faq-item {
    border-radius: 6px;
    margin-bottom: 8px;
  }

  .faq-item__head {
    padding: 16px 40px 16px 12px;
    min-height: initial;
  }

  .faq-item__head::before,
  .faq-item__head::after {
    width: 14px;
    height: 2px;
    right: 16px;
  }

  .faq-item__head .question {
    font-size: 14px;
    padding-left: 24px;
  }

  .faq-item__head .question::before {
    font-size: 18px;
  }

  .faq-item__body {
    padding: 0 12px 16px 12px;
  }

  .faq-item__body .answer {
    padding-left: 24px;
  }

  .faq-item__body .answer::before {
    font-size: 18px;
  }
}

/*===================================================

 必須デバイス・スペック・仕様詳細

===================================================*/
.section-spec {}

.spec-table-wrap {
  max-width: var(--content-small-width);
  margin-left: auto;
  margin-right: auto;
}

.spec-table {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}

.spec-table th {
  background: #F1F1F1;
  font-weight: 500;
  text-align: left;
}

.spec-table th,
.spec-table td {
  padding: 1.5em;
  border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {

  .spec-table th,
  .spec-table td {
    padding: 12px;
  }

  .spec-table th {
    font-size: 12px;
  }
}