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

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

 どしゃブルPro LP
 20250604

===================================================*/
:root {
  --txt-main: #0D171A;
  --txt-note: #707070;
  --link: #0071bd;
  --blue1: #467B8B;
  --blue2: #66B4CC;
  --l-blue1: #E2F4FA;
  --l-blue2: #F6FAFB;
  --red1: #D52501;
  --red-gra1: linear-gradient(135deg, rgba(242, 110, 22, 1) 0%, rgba(213, 37, 1, 1) 100%);
  --yellow1: #FFFAB2;
  --l-yellow1: #FFF5D5;
  --orange1: #F26E16;
  --font-ja: "Noto Sans JP", sans-serif;
  --content-width: 1280px;
  --content-small-width: 1080px;
  --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;
  padding-top: 120px;
}

a {
  color: var(--link);
  text-underline-offset: 3px;
  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;
    padding-top: 60px;
  }
}

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

 共通パーツ

===================================================*/
.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;
  }
}

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

.txt-line {
  display: inline-block;
  background: url(../img/line-wave.svg) repeat-x 0 bottom;
  padding: 0 .2em .6em;
}

@media screen and (max-width: 767px) {
  .txt-line {
    background: url(../img/line-wave.svg) repeat-x 0 bottom;
    background-size: auto 15px;
  }
}

.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-orange {
  color: var(--orange1);
}

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

/* ボタン----- */
.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: 400px;
  height: 80px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  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;
  }
}

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

.cv-btn-bbl {
  display: inline-flex;
  position: relative;
  margin-bottom: 16px;
  animation: move 6s 2s infinite;
}

.cv-btn-bbl::before,
.cv-btn-bbl::after {
  content: "";
  width: 3px;
  height: 36px;
  position: absolute;
  background: var(--orange1);
  border-radius: 2px;
  bottom: 0;
}

.cv-btn-bbl::before {
  left: 0;
  transform: rotate(-30deg);
}

.cv-btn-bbl::after {
  right: 0;
  transform: rotate(30deg);
}

.cv-btn-bbl__txt {
  padding: 4px 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

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

  .cv-btn-bbl {
    margin-bottom: 8px;
  }

  .cv-btn-bbl::before,
  .cv-btn-bbl::after {
    width: 2px;
    height: 24px;
  }

  .cv-btn-bbl__txt {
    padding: 2px 16px;
    font-size: 14px;
  }
}

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

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

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

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

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

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

.section-heading__ttl.rain {
  position: relative;
}

.section-heading__ttl.rain::before,
.section-heading__ttl.rain::after {
  content: "";
  display: block;
  background: url(../img/icon-rain.svg) no-repeat center;
  background-size: contain;
  width: 68px;
  height: 72px;
  position: absolute;
}

.section-heading__ttl.rain::before {
  top: -24px;
  left: -80px;
}

.section-heading__ttl.rain::after {
  bottom: -10px;
  right: -100px;
}

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

  .section__container {
    padding: 40px 0 56px;
  }

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

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

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

  .section-heading__ttl.rain::before,
  .section-heading__ttl.rain::after {
    width: 34px;
    height: 36px;
  }

  .section-heading__ttl.rain::before {
    top: -24px;
    left: -10px;
  }

  .section-heading__ttl.rain::after {
    bottom: -10px;
    right: -28px;
  }
}

/* アイコン----- */
.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-blank.blue {
  background-image: url(../img/icon-blank_blue.svg);
}

/* アニメーション----- */
@keyframes move {
  0% {
    transform: translateY(0);
  }

  2% {
    transform: translateY(5px);
  }

  4% {
    transform: translateY(0);
  }

  6% {
    transform: translateY(5px);
  }

  8% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(5px);
  }

  12% {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

 ヘッダー

===================================================*/
.l-header {
  background: #fff;
  padding: 0 2.4vw;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.l-header__container {
  padding: 20px 0;
  height: 120px;
  display: flex;
  align-items: center;
  gap: 0 40px;
}

.header-logo img {
  width: 180px;
}

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

.header-nav__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .6em 1.8em;
}

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

.header-nav__list>li a {
  color: var(--txt-main);
  font-size: 16px;
  font-weight: 700;
}

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

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

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

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

.header-btn-secondary,
.header-btn-primary {
  border-radius: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 20px;
  white-space: nowrap;
  transition: filter .3s;
}

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

.header-btn-secondary {
  background: #fff;
  border: 2px solid var(--red1);
  color: var(--red1);
}

.header-btn-primary {
  background: var(--red1);
  color: #fff;
}

@media screen and (min-width: 768px) and (max-width: 940px) {
  .header-nav__cv-list {
    flex-direction: column;
    gap: 8px;
  }

  .header-nav__list>li a {
    font-size: 15px;
  }

  .header-btn-secondary,
  .header-btn-primary {
    height: 36px;
    font-size: 14px;
  }
}

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

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

  .header-logo img {
    width: 90px;
  }

  .header-nav {
    gap: 0;
  }

  .header-nav__list {
    display: none;
  }

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

  .header-btn-secondary,
  .header-btn-primary {
    height: 32px;
    font-size: 10px;
    padding: 4px 10px;
  }

  .header-btn-secondary {
    border-width: 1px;
  }
}

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

 SP用ナビゲーション

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

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

/* メニューボタン */
.sp-menu-btn {
  background: #fff;
  width: 60px;
  height: 60px;
  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: 60px;
  width: 100%;
  height: calc(100% - 60px);
  z-index: 110;
  transition: left .3s ease;
  display: flex;
  justify-content: flex-end;
}

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

.sp-gnav__container {
  position: relative;
  width: 200px;
  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__list>li {
  font-size: 14px;
  line-height: 1.2;
}

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

.sp-gnav__list>li a::before {
  content: "";
  display: inline-flex;
  background: url(../img/icon-nav-arrow-01.svg) no-repeat center;
  background-size: contain;
  width: 1.2em;
  height: 1.2em;
  margin-right: 4px;
}

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

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

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

.sp-gnav-btn-secondary,
.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;
}

.sp-gnav-btn-secondary {
  background: #fff;
  border: 2px solid var(--red1);
  color: var(--red1);
}

.sp-gnav-btn-primary {
  background: var(--red1);
  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(--blue2);
  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: 720px;
  max-height: calc(100vh - 100px);
  min-height: 560px;
  padding: 0 4vw;
  background: var(--txt-main);
}

.mv__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.mv__img::before {
  content: "";
  background: url(../img/mv-pic.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: scaleIn 1.5s 0s ease-in-out forwards;
}

.mv__rain {}

.mv__rain span {
  background: url(../img/ill-rain.png) no-repeat right 0;
  background-size: contain;
  mix-blend-mode: overlay;
  width: 720px;
  height: 480px;
  position: absolute;
  top: 0;
  right: 0;
  animation: fadeIn 1s 0s forwards;
  opacity: 0;
}

.mv__rain span:nth-child(1) {
  top: 0;
  right: 0;
  animation-delay: 1s;
}

.mv__rain span:nth-child(2) {
  top: 50%;
  right: 50%;
  animation-delay: 2s;
}

.mv__container {
  position: relative;
  /*max-width: 1600px;*/
  padding: 80px 0 40px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 0 2vw;
}

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

.mv__ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .15em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .24);
  white-space: nowrap;
}

.mv__cv {
  margin-top: 40px;
}

.mv__cv .cv-btn-bbl__txt {
  font-size: 18px;
  letter-spacing: .15em;
}

.mv__cv .cv-btn-bbl::before,
.mv__cv .cv-btn-bbl::after {
  background: #fff;
}

.mv__cv .btn-primary {
  width: 400px;
}

.mv__monitor {
  width: 55%;
  max-width: 960px;
  position: relative;
}

.mv__monitor img {
  position: absolute;
  width: 100%;
  bottom: -100px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv {
    height: auto;
    max-height: initial;
  }

  .mv__container {
    gap: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .mv__contents {
    align-items: center;
  }

  .mv__monitor {
    margin-top: auto;
    width: 80%;
    height: 44vw;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    height: calc(100svh - 60px);
    max-height: initial;
    min-height: 540px;
    padding: 0 16px;
  }

  .mv__rain span {
    width: 332px;
    height: 190px;
  }

  .mv__container {
    position: relative;
    padding: 20vw 0 50vw;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 0 2vw;
    flex-direction: column;
  }

  .mv__contents {
    min-width: initial;
    position: relative;
    z-index: 1;
  }

  .mv__ttl {
    font-size: 22px;
  }

  .mv__cv {
    margin: 32px auto 0;
  }

  .mv__cv .cv-btn-bbl__txt {
    font-size: 13px;
  }

  .mv__cv .btn-primary {
    width: auto;
    font-size: 14px;
  }

  .mv__monitor {
    width: 100%;
    max-width: 440px;
    position: absolute;
    bottom: -12vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .mv__monitor img {
    position: static;
  }
}

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

 災害

===================================================*/
.section-disaster {
  position: relative;
}

.section-disaster::before {
  content: "";
  background: url(../img/ill-rain.png) no-repeat right 0;
  background-size: contain;
  width: 720px;
  height: 480px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: .25;
}

.section-disaster .section__container {
  position: relative;
  padding-top: 140px;
}

.section-disaster-lead {
  font-size: 32px;
  font-weight: 700;
}

.disaster-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}

.disaster-item {
  background: #fff;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
  border-radius: 12px;
}

.disaster-item__head {
  text-align: center;
  padding: 24px;
  line-height: 1.4;
}

.disaster-item__head .label {
  font-size: 22px;
  font-weight: 700;
}

.disaster-item__head .date {
  font-size: 18px;
}

.disaster-item__body .disaster-txt {
  padding: 24px 32px;
}

.disaster-appeal-txt {
  margin-top: 80px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .section-disaster::before {
    width: 360px;
    height: 240px;
  }

  .section-disaster .section__container {
    padding-top: 100px;
  }

  .section-disaster-lead {
    font-size: 18px;
  }

  .disaster-list {
    display: block;
  }

  .disaster-item {
    border-radius: 8px;
    margin-bottom: 16px;
  }

  .disaster-item__head {
    padding: 16px;
  }

  .disaster-item__head .label {
    font-size: 18px;
  }

  .disaster-item__head .date {
    font-size: 12px;
  }

  .disaster-item__body .disaster-txt {
    padding: 16px;
  }

  .disaster-appeal-txt {
    margin: 40px 10px 0;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
  }
}

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

 問題

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

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

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

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

.problem-item::before {
  content: "";
  background: url(../img/problem-icon-face.svg) no-repeat center;
  background-size: contain;
  width: 56px;
  height: 56px;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.problem-item__ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  min-height:4.5em;
  margin-bottom: 16px;
}

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

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

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

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

/* どしゃブルが解決 */
.solution-box {
  margin-top: 160px;
  background: var(--l-blue1);
  border-radius: 16px;
  position: relative;
}

.solution-box::after {
  content: "";
  display: block;
  background: url(../img/solution-icon-arrow.svg) no-repeat center bottom;
  background-size: contain;
  width: 220px;
  height: 60px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}

.solution-box::before {
  content: "";
  background: url(../img/ill-rain.png) no-repeat center;
  background-size: contain;
  width: 832px;
  height: 480px;
  position: absolute;
  top: -100px;
  left: 70%;
  mix-blend-mode: color-dodge;
  opacity: .5;
}

.solution-box__head {
  position: absolute;
  top: -64px;
  left: 0;
  width: 100%;
}

.solution-box__head-ttl {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.solution-box__body {
  padding: 64px 48px 48px;
  text-align: center;
}

.solution-box__sub-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue1);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
}

.solution-box__sub-ttl .fill {
  background: var(--blue1);
  padding: .2em .5em;
  color: #fff;
  margin-left: .5em;
}

.solution-service-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
  position: relative;
  z-index: 1;
}

.solution-service-icon {
  position: relative;
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-service-icon:not(:first-child)::before {
  content: "";
  background: url(../img/solution-icon-cross.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -36px;
}

.solution-service-icon .label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.solution-sample-img {
  width: 438px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -16px;
}

.solution-txt-01 {
  margin-top: 1em;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue1);
  line-height: 1.5;
}

.solution-txt-02 {
  margin-top: .5em;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .solution-box {
    margin-top: 100px;
    border-radius: 10px;
  }

  .solution-box::after {
    width: 100px;
    height: 28px;
  }

  .solution-box::before {
    width: 416px;
    height: 240px;
    top: -100px;
    left: 20%;
    opacity: .7;
  }

  .solution-box__head {
    top: -32px;
  }

  .solution-box__head-ttl {
    flex-direction: column;
    align-items: center;
    gap: 16px 0;
    font-size: 20px;
  }

  .solution-box__head-ttl .logo {
    height: 64px;
  }

  .solution-box__body {
    padding: 88px 16px 24px;
    position: relative;
  }

  .solution-box__sub-ttl {
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .solution-box__sub-ttl .fill {
    margin: 4px 0 0;
  }

  .solution-service-list {
    gap: 12px 16px;
    flex-wrap: wrap;
  }

  .solution-service-list::after {
    content: "";
    background: url(../img/solution-icon-cross.svg) no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
  }

  .solution-service-icon {
    width: 36vw;
    height: 36vw;
  }

  .solution-service-icon::before {
    display: none;
  }

  .solution-service-icon .label {
    font-size: 13px;
    line-height: 1.2;
  }

  .solution-service-icon .img {
    width: 78%;
    margin: 0 auto;
  }

  .solution-sample-img {
    width: 80%;
    top: 0;
    margin-top: 16px;
  }

  .solution-txt-01 {
    font-size: 16px;
  }

  .solution-txt-02 {
    font-size: 18px;
  }
}

/* CVエリア */
.solution-cv {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .solution-cv {
    margin-top: 40px;
  }
}

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

 特徴

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

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

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

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

.feature-item .feature-number .number {
  font-size: 18px;
  color: var(--blue1);
  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__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;
  }
}

/* 機能比較 */
.spec-compare {
  margin-top: 120px;
}

.spec-compare__heading {
  color: var(--blue1);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}

.compare-table {
  display: flex;
  align-items: flex-start;
  max-width: var(--content-small-width);
  margin-left: auto;
  margin-right: auto;
}

.compare-table__col-label {
  margin-top: 100px;
  border-radius: 20px 0 0 20px;
  background: var(--blue1);
  width: 20%;
  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 24px;
}

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

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

.compare-table__col-data.dosyabull {
  border-radius: 20px;
  width: 45%;
  border: 3px solid var(--blue1);
  padding-bottom: 30px;
  position: relative;
}

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

.compare-table__col-data.dosyabull .head img {
  width: 150px;
}

.compare-table__col-data.dosyabull .data {
  font-size: 18px;
  font-weight: 700;
}

.compare-table__col-data.kikikuru {
  margin-top: 40px;
  border-radius: 0 20px 20px 0;
  width: 35%;
}

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

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

@media screen and (max-width: 767px) {
  .spec-compare {
    margin-top: 64px;
  }

  .spec-compare__heading {
    font-size: 18px;
    margin-bottom: 24px;
  }

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

  .compare-table__col-label .label {
    height: 60px;
    padding: 10px;
    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 {}

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

  .compare-table__col-data.dosyabull {
    border-radius: 10px;
    width: 45%;
    border-width: 2px;
    padding-bottom: 15px;
  }

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

  .compare-table__col-data.dosyabull .head img {
    width: 80px;
  }

  .compare-table__col-data.dosyabull .data {
    font-size: 12px;
    font-weight: 700;
  }

  .compare-table__col-data.kikikuru {
    margin-top: 25px;
    border-radius: 0 10px 10px 0;
    width: 35%;
  }

  .compare-table__col-data.kikikuru .head {
    height: 40px;
    font-size: 12px;
  }
}

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

 使用イメージ

===================================================*/
.section-use {
  background: var(--blue1) url(../img/use-bg.jpg) no-repeat center;
  background-size: cover;
}

.section-use .section-heading__ttl {
  color: #fff;
}

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

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

.use-item__number {
  background: var(--blue1);
  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(--blue1);
  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: 470px;
  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: 24px;
  }

  .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: 320px;
    margin: 0 auto 8px;
  }

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

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

/* 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(--orange1);
  border-radius: 16px;
}

.price-sample-box__row {
  overflow: hidden;
  display: flex;
  border-radius: 16px;
}

.price-sample-box__modelcase {
  width: 55%;
  padding: 3.5%;
}

.price-sample-box__demo {
  width: 45%;
  background: var(--l-yellow1);
  padding: 3.5%;
}

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

  .price-sample-box__row {
    flex-direction: column;
    border-radius: 16px;
  }

  .price-sample-box__modelcase {
    width: auto;
    padding: 16px 16px 40px;
  }

  .price-sample-box__demo {
    width: auto;
    position: relative;
    padding: 40px 16px 24px;
  }
}

/* モデルケース */
.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(--orange1);
  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 {
  margin-top: 40px;
  background: #F4F4F4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 16px 24px;
}

.price-sample-box .modelcase-price__detail>li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}

.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 {
  margin-left: auto;
  font-size: 24px;
  font-weight: 700;
}

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

@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: 16px;
    padding: 12px 16px;
  }

  .price-sample-box .modelcase-price__detail>li {
    font-size: 12px;
    align-items: flex-end;
  }

  .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 {
    font-size: 15px;
  }

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

/* デモ */
.price-sample-box .about-demo-heading {
  display: flex;
  align-items: center;
  gap: 0 24px;
}

.price-sample-box .about-demo-heading__img {
  width: 130px;
  flex-shrink: 0;
}

.price-sample-box .about-demo-heading__ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--red1);
}

.price-sample-box .about-demo-spec {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.price-sample-box .about-demo-spec__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  font-weight: 700;
  line-height: 1.4;
}

.price-sample-box .about-demo-spec__list>li {
  display: flex;
  align-items: center;
  gap: 0 4px;
}

.price-sample-box .about-demo-spec__list>li::before {
  content: "";
  background: url(../img/icon-checklist.svg) no-repeat center;
  background-size: contain;
  display: block;
  width: 1em;
  height: 1em;
}

.price-sample-box .price-cv {
  margin-top: 40px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .price-sample-box .about-demo-heading {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .price-sample-box .modelcase-price {
    display: block;
  }

  .price-sample-box .about-demo-spec__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .price-sample-box .about-demo-heading {
    flex-direction: column-reverse;
    gap: 20px 0;
  }

  .price-sample-box .about-demo-heading__img {
    width: 180px;
  }

  .price-sample-box .about-demo-heading__ttl {
    font-size: 24px;
    position: absolute;
    top: -.5em;
  }

  .price-sample-box .about-demo-spec {
    margin-top: 24px;
  }

  .price-sample-box .about-demo-spec__list {
    gap: 8px 16px;
  }

  .price-sample-box .price-cv {
    margin-top: 24px;
  }
}

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

 導入までの流れ

===================================================*/
.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(--blue2);
  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(--blue1);
  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(--blue2) 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);
}

.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: #fff;
  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: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--blue1);
  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(--blue1);
  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: 12px 40px 12px 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;
  }
}

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

 画面デモ

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

.demo-item {
  max-width: 840px;
  margin: 0 auto 48px;
  text-align: center;
}

.demo-item__img {
  display: inline-flex;
  border-radius: 10px;
  border: 10px solid var(--txt-main);
}

.demo-item__desc {
  text-align: left;
  padding: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .demo-item {
    margin-bottom: 32px;
  }

  .demo-item__img {
    border-radius: 5px;
    border-width: 4px;
  }

  .demo-item__desc {
    padding: 10px 6px 0;
  }
}

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

 個人向けアプリ

===================================================*/
.section-b2c {
  background: #0E8DB4;
  overflow: hidden;
}

/* レイアウト */
.b2c-app-container {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.b2c-app-row {
  display: flex;
}

.b2c-app-row__col-txt {
  color: #fff;
  flex: 1;
  padding: 64px 40px 64px 0;
}

.b2c-app-row__col-img {
  order: -1;
  position: relative;
  width: 320px;
}

.b2c-app-row__col-action {
  width: 25%;
  max-width: 326px;
  align-self: center;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .b2c-app-row {
    flex-wrap: wrap;
  }

  .b2c-app-row .b2c-app-row__col-txt {
    flex: auto;
    order: -2;
    width: 100%;
    padding: 64px;
  }

  .b2c-app-row .b2c-app-row__col-img {
    order: -1;
    width: 50%;
  }

  .b2c-app-row .b2c-app-row__col-action {
    width: 50%;
    padding: 0 0 40px 0;
  }

  .b2c-app-row .b2c-app-row__col-img .b2c-app-img {
    width: 50%;
    position: absolute;
    bottom: auto;
    right: auto;
    bottom: auto;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .b2c-app-row {
    flex-wrap: wrap;
    padding: 24px 10px 0;
  }

  .b2c-app-row__col-txt {
    flex: auto;
    order: -2;
    width: 100%;
    padding: 0;
    margin-bottom: 36px;
  }

  .b2c-app-row__col-img {
    order: -1;
    position: relative;
    width: 50%;
    aspect-ratio: 3.2/5;
  }

  .b2c-app-row__col-action {
    width: 50%;
    position: relative;
  }
}

/* 各要素 */
.b2c-app-row__col-img::before {
  content: "";
  display: block;
  width: 480px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  z-index: 0;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .2;
  box-shadow: 0 0 0 150px rgba(255, 255, 255, .5);
}

.b2c-app-row .b2c-app-img {
  width: 200px;
  position: absolute;
  bottom: -70px;
  left: 60px;
}

.b2c-app-row .b2c-app-img img {
  position: relative;
}

.b2c-app-row .b2c-app-heading {
  display: flex;
  gap: 0 24px;
}

.b2c-app-row .b2c-app-heading__icon {
  width: 72px;
  flex-shrink: 0;
}

.b2c-app-row .b2c-app-heading__icon img {
  border-radius: 10px;
}

.b2c-app-row .b2c-app-heading__ttl {
  flex: 1;
  align-self: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.b2c-app-row .b2c-app-txt {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 500;
}

.b2c-app-row .txt-note {
  margin-top: 24px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}

.b2c-app-row .app-btns-list {
  display: flex;
  gap: 16px;
}

.b2c-app-row .app-btns-item {
  background: rgba(255, 255, 255, .4);
  padding: 15px;
  width: 155px;
  border-radius: 8px;
}

.b2c-app-row .app-btns-item .qr-code {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .b2c-app-row__col-img {
    position: static;
  }

  .b2c-app-row__col-img::before {
    width: 80vw;
    top: auto;
    bottom: -40vw;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 100px rgba(255, 255, 255, .5);
  }

  .b2c-app-row .b2c-app-img {
    width: 45vw;
    bottom: -16vw;
    left: 2.5vw;
  }

  .b2c-app-row .b2c-app-img img {
    position: relative;
  }

  .b2c-app-row .b2c-app-heading {
    flex-direction: column;
    align-items: center;
    gap: 16px 0;
  }

  .b2c-app-row .b2c-app-heading__icon {
    width: 64px;
  }

  .b2c-app-row .b2c-app-heading__ttl {
    font-size: 18px;
  }

  .b2c-app-row .b2c-app-txt {
    margin-top: 16px;
    font-size: 14px;
  }

  .b2c-app-row .txt-note {
    margin-top: 16px;
    font-size: 10px;
  }

  .b2c-app-row .app-btns-list {
    flex-direction: column;
    gap: 0;
  }

  .b2c-app-row .app-btns-item {
    background: transparent;
    padding: 10px 0 10px 20px;
    width: auto;
    border-radius: 0;
  }

  .b2c-app-row .app-btns-item .qr-code {
    display: none;
  }
}

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

 機能比較

===================================================*/
.section-b2c-compare {}

.b2c-compare__heading {
  color: var(--blue1);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}

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

.b2c-compare-table-wrap {}

.b2c-compare-table {
  width: 100%;
  border-collapse: separate;
  line-height: 1.4;
}

.b2c-compare-table th,
.b2c-compare-table td {
  text-align: center;
  padding: 12px 24px;
}

.b2c-compare-table thead th:first-child {
  border: none;
}

.b2c-compare-table thead th.pro,
.b2c-compare-table thead th.app {
  background: #fff;
  border-radius: 10px 10px 0 0;
  border-style: solid;
  border-color: var(--blue1);
  border-width: 2px 1px 0;
  width: 30%;
}

.b2c-compare-table thead th.pro {
  border-left-width: 2px;
}

.b2c-compare-table thead th.app {
  border-right-width: 2px;
}

.b2c-compare-table tbody th {
  background: var(--l-blue1);
  border-style: solid;
  border-color: transparent transparent #C8D7DC var(--blue1);
  border-width: 0 0 1px 2px;
  color: var(--blue1);
  text-align: left;
}

.b2c-compare-table tbody tr:first-child th {
  border-top-width: 2px;
  border-radius: 10px 0 0 0;
  border-top-color: var(--blue1);
}

.b2c-compare-table tbody tr:last-child th {
  border-bottom-width: 2px;
  border-radius: 0 0 0 10px;
  border-bottom-color: var(--blue1);
}

.b2c-compare-table tbody td {
  background: #fff;
  border-style: solid;
  border-color: transparent var(--blue1) #C8D7DC var(--blue1);
  border-width: 0 1px 1px 1px;
}

.b2c-compare-table tbody td:nth-child(2) {
  border-left-width: 2px;
}

.b2c-compare-table tbody td:last-child {
  border-right-width: 2px;
}

.b2c-compare-table tbody tr:first-child td {
  border-top-width: 1px;
  border-top-color: var(--blue1);
}

.b2c-compare-table tbody tr:last-child td {
  border-bottom-width: 2px;
  border-bottom-color: var(--blue1);
}

.b2c-compare-table tbody tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

@media screen and (max-width: 767px) {
  .b2c-compare__heading {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .b2c-compare-table {
    line-height: 1.2;
  }

  .b2c-compare-table-wrap {}

  .b2c-compare-table th,
  .b2c-compare-table td {
    padding: 8px;
    font-size: 12px;
  }

  .b2c-compare-table thead th.pro,
  .b2c-compare-table thead th.app {
    width: 32%;
    padding: 12px 8px;
  }
}

/* テーブル内各要素 */
.b2c-compare-table .logo-pro,
.b2c-compare-table .logo-app {
  display: inline-block;
  position: relative;
}

.b2c-compare-table .logo-pro img,
.b2c-compare-table .logo-app img {
  height: 70px;
}

.b2c-compare-table .logo-app .bbl {
  background: var(--blue1);
  color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: absolute;
  left: 110px;
  bottom: 50px;
}

.b2c-compare-table .logo-app .bbl::before {
  content: "";
  border-style: solid;
  border-color: var(--blue1) transparent transparent;
  border-width: 10px 6px 0;
  position: absolute;
  top: 56px;
  transform: rotate(45deg);
  left: 0;
}

.b2c-compare-table .icon-txt {
  text-align: center;
  line-height: 1;
}

.b2c-compare-table .icon-txt .icon {
  line-height: 1;
  font-size: 24px;
}

.b2c-compare-table .icon-txt .txt {
  line-height: 1.4;
  margin-top: 4px;
}

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

  .b2c-compare-table .logo-pro img,
  .b2c-compare-table .logo-app img {
    height: 32px;
  }

  .b2c-compare-table .logo-app .bbl {
    width: 36px;
    height: 36px;
    font-size: 10px;
    left: 42px;
    bottom: 30px;
  }

  .b2c-compare-table .logo-app .bbl::before {
    top: 27px;
  }

  .b2c-compare-table .icon-txt .icon {
    font-size: 20px;
  }
}