@charset "UTF-8";
.gradient {
  background-image: linear-gradient(90deg, #338acb, #dc6ea4);
}

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

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

a:hover {
  text-decoration: none;
}

a {
  transition: 0.2s;
}
a:hover img {
  opacity: 0.7;
  transition: 0.2s;
}

body {
  font-family: "Noto Sans JP", serif;
  font-feature-settings: "palt" 1;
  color: #231815;
  background: #fff;
  line-height: 1.7;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

h2 {
  color: #3e3a39;
  text-align: center;
  font-weight: 600;
  font-size: 1.9em;
  line-height: 1.4;
  margin-bottom: 2em;
  padding-bottom: 2rem;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, #338acb, #dc6ea4);
  border-radius: 3px;
}

h3 {
  color: #3e3a39;
  font-weight: 600;
  font-size: 1.5em;
  margin: 3em 0 1.1rem;
  padding-left: 2.5rem;
  position: relative;
}
h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%) translateX(-50%);
  width: 40px;
  height: 6px;
  background: linear-gradient(90deg, #338acb, #dc6ea4);
  border-radius: 3px;
}

#front-page-whatwedo h3::after {
  display: none;
}

.bg-blue {
  background: #f1f7fe;
}

.text-white {
  color: #fff;
}

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

.bold {
  font-weight: bold;
}

.text-l {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.text-xl {
  font-size: 2.5rem;
  padding: 0 0.3rem;
}

.text-s {
  font-size: 0.95rem;
}

.text-xs {
  font-size: 0.8rem;
}

.lh16 {
  line-height: 1.6;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

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

.mt-6 {
  margin-top: 6rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.rounded-block {
  border-radius: 2em;
}

footer {
  display: block;
  text-align: center;
  font-size: 0.9em;
  color: #5f5f5f;
  padding: 1em;
}

.inner-width {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

.bg-white {
  background: #fff;
}

.flex {
  display: flex;
}
.flex .align-center {
  align-items: center;
}
.flex .justify-center {
  justify-content: center;
}
.flex .flex-left {
  width: 50%;
}
.flex .flex-right {
  width: 50%;
}

.button-wrap {
  align-items: center;
  justify-content: center;
  margin-top: 3em;
  gap: 2rem;
}
.button-wrap a {
  display: block;
  margin-bottom: 1em;
  border: 1px solid #2280bd;
  padding: 0.75em 0;
  color: #2280bd;
  background: #fff;
  text-decoration: none;
  width: 350px;
  cursor: pointer;
  border-radius: 40px;
}
.button-wrap a span {
  display: block;
  text-align: center;
  border-radius: 40px;
}
.button-wrap a:hover {
  opacity: 0.7;
}
.button-wrap a.gradient {
  color: #fff;
  background-image: linear-gradient(90deg, #338acb, #dc6ea4);
  border: none;
}
.button-wrap span {
  font-size: 1.2rem;
}

.dots {
  background-image: radial-gradient(circle at center, #d96ea1 20%, transparent 25%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.6em; /* 点の間隔とサイズ調整 */
  padding-top: 0.35em; /* 縦方向の位置調整 */
  font-feature-settings: initial;
}

.explanation-wrap {
  margin-bottom: 2rem;
}
.explanation-wrap .flex {
  margin-bottom: 0.3rem;
}
.explanation-wrap img {
  display: block;
  width: 15%;
  max-width: 35px;
}
.explanation-wrap .subhead {
  font-size: 1.05rem;
  color: #2280bd;
  font-weight: 600;
}
.explanation-wrap .heading {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}
.explanation-wrap p {
  font-feature-settings: initial;
}

.image-frame {
  border: solid 10px #939bac;
  border-radius: 10px;
}

.caution {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

#header #logo img {
  display: inline-block;
}

section {
  display: block;
  padding: 4em 1em;
}
section.main-visual.main-visual-cover {
  padding: 0; /* サービスサイト共通の要素のスペースを消す*/
}
section.first {
  color: #2280bd;
  font-feature-settings: initial;
  padding: 0 1em;
  background-color: #f1f7fe;
  background-image: url(../images/bg-object-02.png);
  background-position: -15rem 4rem;
  background-size: 36rem;
  background-repeat: no-repeat;
}
section.first .inner-width {
  padding-top: 8em;
}
section.first .flex {
  gap: 5rem;
}
section.first .flex-left {
  width: 40%;
}
section.first .flex-right.firstview-wrap {
  width: 60%;
}
section.first .flex-right.firstview-wrap img {
  width: 110%;
}
section.first .title {
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 3rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2rem;
}
section.first .button-wrap {
  justify-content: flex-start;
  margin-top: 3em;
  gap: 1em;
}
section.first .button-wrap a {
  display: block;
  margin-bottom: 1em;
  border: 1px solid #2280bd;
  padding: 0.75em 0;
  color: #2280bd;
  background: none;
  text-decoration: none;
  width: 180px;
  cursor: pointer;
  border-radius: 40px;
}
section.first .button-wrap a span {
  display: block;
  text-align: center;
  border-radius: 40px;
}
section.first .button-wrap a:hover {
  opacity: 0.7;
}
section.first .button-wrap a.gradient {
  color: #fff;
  background-image: linear-gradient(90deg, #338acb, #dc6ea4);
  border: none;
}
section.first .button-wrap span {
  font-size: 1rem;
}

section.introduction .onayami-title {
  color: #3e3a39;
  text-align: center;
  font-weight: 600;
  font-size: 1.9em;
  margin-bottom: 0.5em;
  letter-spacing: 0.2rem;
}
section.introduction .onayami-title .dots {
  background-size: 1.15em 0.6em; /* 点の間隔とサイズ調整 */
}
section.introduction .inner-width:first-of-type {
  width: 800px;
}
section.introduction .onayami-wrap {
  display: flex;
}
section.introduction .onayami-wrap:first-of-type {
  justify-content: flex-end;
}
section.introduction .flex-left {
  width: auto;
}
section.introduction .flex-left img {
  margin: 50px 0 0 auto;
}
section.introduction .flex-right {
  width: auto;
}
section.introduction .flex-right img {
  margin-top: 20px;
}
section.introduction .speech-bubble_right, section.introduction .speech-bubble_left {
  width: calc(100% - 100px);
  max-width: 500px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  background: #8092a9;
  border-radius: 18px;
  padding: 1rem 2rem;
  position: relative;
  margin: 20px 50px;
}
section.introduction .speech-bubble_right:after {
  content: "";
  position: absolute;
  top: 50px;
  right: -50px;
  border: 15px solid transparent;
  border-left: 50px solid #8092a9;
  transform: rotate(-20deg);
}
section.introduction .speech-bubble_left {
  margin-right: 250px;
}
section.introduction .speech-bubble_left:after {
  content: "";
  position: absolute;
  top: 50px;
  left: -50px;
  border: 15px solid transparent;
  border-right: 50px solid #8092a9;
  transform: rotate(20deg);
}

.conversion-block {
  background-image: linear-gradient(90deg, rgba(51, 138, 203, 0.2), rgba(220, 110, 164, 0.2));
  border-radius: 30px;
  margin-top: 3rem;
  padding: 2rem 1rem;
}

section.possible .lead {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 4rem;
}
section.possible .inner-width > .flex {
  gap: 4em;
}
section.possible .inner-width > .flex .flex-left {
  width: 55%;
}
section.possible .inner-width > .flex .flex-right {
  width: 45%;
}

section.point .inner-width > .flex {
  gap: 2em;
  align-items: flex-start;
}
section.point .inner-width > .flex .point-wrap {
  margin: 3em auto;
  justify-content: space-between;
  width: 33.3%;
}
section.point .inner-width > .flex .point-wrap .explanation-wrap {
  margin: 0 0 0.5rem 1rem;
}
section.point .inner-width > .flex .point-wrap .explanation-wrap > .flex {
  align-items: flex-end;
}
section.point .inner-width > .flex .point-wrap .explanation-wrap .point-number {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 4rem;
  background-image: linear-gradient(90deg, rgba(51, 138, 203, 0.8), rgba(220, 110, 164, 0.8));
  display: inline-block;
  -webkit-background-clip: text; /* Safari, Chrome */
  background-clip: text;
  color: transparent;
  margin: 0 -1rem -1.5rem 0;
}
section.point .inner-width > .flex .point-wrap .explanation-wrap img {
  display: block;
}
section.point .inner-width > .flex .point-wrap .illust {
  background: #fff;
  border-radius: 20px;
  height: 200px;
  margin-bottom: 1rem;
  padding: 0.5rem;
}
section.point .inner-width > .flex .point-wrap .illust img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 90%;
  height: 100%;
  margin: 0 auto;
}
section.point .inner-width > .flex .point-wrap ul {
  padding: 0;
  margin-bottom: 5px;
  list-style: none;
}
section.point .inner-width > .flex .point-wrap ul li {
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
}
section.point .inner-width > .flex .point-wrap ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: url("../images/check.svg") center no-repeat;
}

section.system .inner-width > .flex {
  gap: 4em;
}

section.sensor .inner-width > .flex {
  gap: 4em;
}
section.sensor .inner-width > .flex .flex-left {
  width: 40%;
}
section.sensor .inner-width > .flex .flex-left .sensor-image {
  max-width: 350px;
  max-height: 260px;
  margin: 1.5rem auto 0;
}
section.sensor .inner-width > .flex .flex-left .sensor-name {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  background: #595757;
  font-weight: 600;
  border-radius: 30px;
  margin: 1.5rem 0;
  padding: 0.25rem;
}
section.sensor .inner-width > .flex .flex-right {
  width: 60%;
}
section.sensor .inner-width > .flex .flex-right .heading {
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
section.sensor .inner-width .flex.alert {
  gap: 1.5em;
  margin-bottom: 0;
}
section.sensor .inner-width .flex.alert .flex-left {
  width: 55%;
}
section.sensor .inner-width .flex.alert .flex-right {
  width: 45%;
}
section.sensor .settings-wrap {
  background: #f0f0f0;
  border: solid 1px #e9e9ea;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
}
section.sensor .settings-wrap .settings-ttl {
  font-weight: 600;
  border: solid 1px #3e3a39;
  width: 200px;
  height: 30px;
  line-height: 26px;
  border-radius: 15px;
  margin: 0 auto 1rem;
  text-align: center;
}
section.sensor .settings-wrap p {
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}
section.sensor .settings-wrap .illust-wrap img {
  margin: 1.5rem auto 0.5rem;
  width: 85%;
  min-height: 132px;
}
section.sensor .sensor-wrap {
  margin-top: 5rem;
}

.table-striped tbody tr th img {
  display: inline !important;
}

section.screen .inner-width > .flex {
  gap: 3em;
}
section.screen .inner-width > .flex .flex.screen-image {
  gap: 2em;
  align-items: center;
}
section.screen .inner-width > .flex .flex.screen-image .flex-left .heading,
section.screen .inner-width > .flex .flex.screen-image .flex-right .heading {
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
section.screen .inner-width .flex {
  align-items: flex-start;
}
section.screen .inner-width .flex.subsidy {
  margin-top: 6rem;
}
section.screen .inner-width .flex.subsidy .flex-left {
  width: 20%;
}
section.screen .inner-width .flex.subsidy .flex-center {
  width: 40%;
}
section.screen .inner-width .flex.subsidy .flex-right {
  width: 40%;
}
section.screen .inner-width .flex.subsidy .explanation-wrap {
  margin-bottom: 1rem;
}
section.screen .inner-width .flex.subsidy .explanation-wrap img {
  max-width: none;
}
section.screen .inner-width .flex.subsidy .subsidy-viewer {
  width: 60%;
  margin-right: 1rem;
}
section.screen .inner-width .flex.button-wrap {
  align-items: center;
}
section.screen .inner-width .flex.subsidy-logo {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem 2rem;
}
section.screen .inner-width .flex.subsidy-logo img {
  width: 45%;
}

section.compare .flex {
  gap: 2em;
}
section.compare .standard {
  background: #fff;
  border-radius: 2rem;
  padding: 1rem;
  margin-top: 2rem;
}
section.compare .standard p {
  font-size: 1.2rem;
}
section.compare .standard .flex-left {
  padding: 2rem 2rem 0 2rem;
}
section.compare .standard .button-wrap {
  margin-top: 2em;
}
section.compare .standard .button-wrap a {
  display: block;
  margin-bottom: 1em;
  border: 1px solid #2280bd;
  padding: 0.75em 0;
  color: #2280bd;
  background: #fff;
  text-decoration: none;
  width: 350px;
  cursor: pointer;
  border-radius: 40px;
}
section.compare .standard .button-wrap a span {
  display: block;
  text-align: center;
  border-radius: 40px;
}
section.compare .standard .button-wrap a:hover {
  opacity: 0.7;
}
section.compare .standard .button-wrap a.blue {
  color: #fff;
  background-color: #2280bd;
  border: none;
}
section.compare .standard .button-wrap span {
  font-size: 1rem;
  font-feature-settings: initial;
}
section.compare .standard .flex-right {
  width: 50%; /* 親幅に合わせる */
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1rem;
}
section.compare .standard .flex-right img {
  width: 102%;
  max-width: 110%;
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover; /* トリミング */
  -o-object-position: center;
     object-position: center;
}

table {
  border: none;
}
table th {
  border: none;
}
table td {
  border: none;
}

.table-wrap-01 {
  padding: 0 1.2rem;
}
.table-wrap-01 .table-01 {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 0.5rem;
}
.table-wrap-01 .table-01 tr th {
  font-size: 1.2rem;
}
.table-wrap-01 .table-01 tr th p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 20px;
  height: 38px;
  line-height: 38px;
  text-align: center;
}
.table-wrap-01 .table-01 tr th:first-child {
  color: #717071;
  text-align: left;
}
.table-wrap-01 .table-01 tr th:nth-child(2) {
  width: 100px;
}
.table-wrap-01 .table-01 tr th:nth-child(2) p {
  background: #2280bd;
}
.table-wrap-01 .table-01 tr th:last-child {
  width: 100px;
}
.table-wrap-01 .table-01 tr th:last-child p {
  background: #d96ea1;
}

.table-wrap-02 {
  background: #fff;
  border-radius: 10px;
  padding: 0 1.2rem;
}
.table-wrap-02 .table-02 {
  width: 100%;
  border-spacing: 0;
}
.table-wrap-02 .table-02 tr td {
  font-size: 2rem;
  font-weight: 100;
  text-align: center;
  border-bottom: 1.5px solid #d7d8d8;
  padding: 0.5rem 0;
}
.table-wrap-02 .table-02 tr td:first-child {
  font-size: 1.1rem;
  font-weight: normal;
  text-align: left;
}
.table-wrap-02 .table-02 tr td:nth-child(2) {
  width: 100px;
  color: #2280bd;
}
.table-wrap-02 .table-02 tr td:last-child {
  width: 100px;
  color: #d96ea1;
  font-weight: 600;
}
.table-wrap-02 .table-02 tr:last-child td {
  border: none;
}

section.support .flex {
  gap: 2em;
}
section.support .flex .flex-left {
  width: 60%;
}
section.support .flex .flex-right {
  width: 40%;
}
section.support .table-wrap-02 {
  border: solid 2px #f3f3f3;
}
section.support .supoort-details {
  color: #595757;
  border-radius: 1rem;
  padding: 1rem 2rem;
  background: #f3f3f3;
}
section.support .supoort-details .title {
  font-size: 1.3rem;
  font-weight: 600;
}
section.support .supoort-details .explanation-wrap {
  margin: 1.5rem 0;
}
section.support .supoort-details .explanation-wrap > .flex {
  gap: 1rem;
  align-items: flex-start;
}
section.support .supoort-details .explanation-wrap img {
  display: block;
  width: 30%;
  max-width: 90px;
  margin-right: 0;
}
section.support .supoort-details .explanation-wrap .heading {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
}
section.support .supoort-details .explanation-wrap p {
  font-feature-settings: initial;
  line-height: 1.6;
}

section.price > .inner-width .flex {
  gap: 0;
}
section.price > .inner-width .flex.price-wrap {
  align-items: stretch;
}
section.price > .inner-width .flex.price-wrap .flex-left {
  width: 20%;
  height: auto;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  background: #86949e;
  border-radius: 1rem 0 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.price > .inner-width .flex.price-wrap > .flex-right {
  width: 80%;
  background: #fff;
  border-radius: 0 1rem 1rem 0;
  padding: 1.4rem 1rem 1rem 1rem;
}
section.price > .inner-width .flex.price-wrap > .flex-right > .flex {
  align-items: center;
}
section.price > .inner-width .flex.price-wrap .item {
  width: 210px;
  height: 36px;
  line-height: 36px;
  background: #dcdfe2;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  margin-right: 1rem;
}
section.price > .inner-width .flex.price-wrap .mark {
  position: relative;
  padding-left: 1.3rem;
  margin-top: 0.3rem;
}
section.price > .inner-width .flex.price-wrap .mark::before {
  content: "⚫︎";
  position: absolute;
  left: 0;
  display: block;
  color: #86949e;
}
section.price > .inner-width .plus {
  width: 66px;
  height: 66px;
  border-radius: 33px;
  color: #86949e;
  background: #86949e;
  margin: 0.5rem auto;
  text-align: center;
  vertical-align: bottom;
  position: relative;
}
section.price > .inner-width .plus::before, section.price > .inner-width .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 40px;
  height: 10px;
  background-color: #fff;
  border-radius: 2px;
}
section.price > .inner-width .plus::after {
  width: 10px;
  height: 40px;
}

section.step > .inner-width > .flex.step-wrap {
  position: relative;
  min-height: 120px;
  margin-bottom: 2rem;
}
section.step > .inner-width > .flex.step-wrap::after {
  content: "";
  position: absolute;
  display: block;
  top: 120px;
  left: 38px;
  height: calc(100% - 90px);
  border-right: dotted 2px #86949e;
}
section.step > .inner-width > .flex.step-wrap:last-of-type::after {
  display: none;
}
section.step > .inner-width > .flex.step-wrap .flex-left {
  width: 100px;
}
section.step > .inner-width > .flex.step-wrap .flex-right {
  width: calc(100% - 100px);
}
section.step > .inner-width > .flex.step-wrap .step-number {
  width: 80px;
  color: #86949e;
  text-align: center;
  margin-bottom: 0.2rem;
}
section.step > .inner-width > .flex.step-wrap .step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 40px;
  background: #86949e;
}
section.step > .inner-width > .flex.step-wrap .step-icon img {
  width: 55px;
  height: auto;
  max-height: 40px;
}
section.step > .inner-width > .flex.step-wrap dl dt {
  color: #595757;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  float: none;
  padding: 0;
}
section.step > .inner-width > .flex.step-wrap dl dd {
  color: #595757;
  padding: 1rem;
  border-radius: 10px;
  background: #f1f7fe;
  font-feature-settings: initial;
}
section.step > .inner-width > .flex.step-wrap dl dd a {
  color: #fff;
  background: #2280bd;
  text-align: center;
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 5rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

section.faq .qa {
  margin-bottom: 13px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02), 0 2px 3px -2px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
section.faq .qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  font-size: 1.15rem;
  cursor: pointer;
}
section.faq .qa summary::before,
section.faq .qa p::before {
  position: absolute;
  left: 1em;
  font-size: 1.3em;
}
section.faq .qa summary::before {
  color: #2280bd;
  content: "Q";
  font-family: Arial, Helvetica, sans-serif;
}
section.faq .qa summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 12px;
  height: 12px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(34, 128, 189, 0.7);
  border-right: 3px solid rgba(34, 128, 189, 0.7);
  content: "";
  transition: transform 0.5s;
}
section.faq .qa[open] summary::after {
  transform: rotate(225deg);
}
section.faq .qa p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  transition: transform 0.5s, opacity 0.5s;
}
section.faq .qa[open] p {
  transform: none;
  opacity: 1;
}
section.faq .qa p::before {
  color: #d96ea1;
  line-height: 1.2;
  content: "A";
  font-family: Arial, Helvetica, sans-serif;
}

section.estimate .inner-width .form-area {
  width: calc(100% - 100px);
  max-width: 850px;
  background-image: linear-gradient(90deg, rgba(51, 138, 203, 0.15), rgba(220, 110, 164, 0.15));
  border-radius: 30px;
  margin: 3rem auto;
  padding: 4rem 2rem 3rem;
}
section.estimate .inner-width .form-area .required,
section.estimate .inner-width .form-area .option {
  display: inline-block;
  padding: 0.2rem 0.3rem;
  color: #d2145a;
  background: #f3d8e2;
  font-size: 0.75rem;
  border-radius: 5px;
  margin-left: 0.5rem;
}
section.estimate .inner-width .form-area .option {
  color: #595757;
  background: #dedede;
}
section.estimate .inner-width .form-area .form-inner-center {
  width: 50%;
  margin: 0 auto 2rem;
}
section.estimate .inner-width .form-area .form-inner-center p {
  margin-top: 2rem;
}
section.estimate .inner-width .form-area .form-inner-center .quantity-wrap p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  margin-top: 0rem;
}
section.estimate .inner-width .form-area .form-inner-center .quantity-wrap .flex-left {
  display: block;
}
section.estimate .inner-width .form-area .form-inner-center .quantity-wrap .flex-right {
  display: block;
}
section.estimate .inner-width .form-area .form-inner-center label .quantity .wpcf7-number {
  display: inline-block;
}
section.estimate .inner-width .form-area .form-inner-center .caption {
  font-weight: normal;
}
section.estimate .inner-width .form-area .form-inner-center .sensor .wpcf7-not-valid-tip {
  display: none;
}
section.estimate .inner-width .form-area .form-inner-center .sensor .error-message {
  color: #d1151f;
  font-weight: bold;
  display: none;
}
section.estimate .inner-width .form-area .form-inner-center .sensor:has(.wpcf7-not-valid-tip) .error-message {
  display: block;
}
section.estimate .inner-width .form-area .submit-wrap p {
  text-align: center;
  margin-bottom: 2rem;
}

/* form
---------------------------------------- */
form input[type=text],
form input[type=email],
form input[type=url],
form input[type=tel],
form input[type=number],
form input[type=date] {
  border-radius: 3px;
  padding: 12px;
  width: 100%;
  max-width: 100%;
  border: 1px #ccc solid;
  outline: none;
  box-sizing: border-box;
}

form input[type=number] {
  width: 80px;
  height: 40px;
  margin: 0.5rem;
  text-align: right;
}

form .wpcf7-textarea {
  border-radius: 3px;
  padding: 12px;
  border: 1px #ccc solid;
  outline: none;
  box-sizing: border-box;
  width: 100%;
}

form input[type=submit]:hover,
form button:hover {
  cursor: pointer;
}

/* お問い合わせ */
.form-area h4 {
  text-align: center;
  padding: 0 0 5px;
  margin: 30px auto 0px;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 3px solid #ccc;
}

.form-area .caution {
  margin-bottom: 40px;
}

.form-area label {
  font-weight: 600;
}

.form-area .survey-ttl {
  margin: 4rem auto 2rem;
  font-feature-settings: initial;
  text-align: center;
}

.form-area .check-policy-area {
  overflow-y: scroll;
  height: 250px;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 0px 10px 20px;
  margin: 5px auto 30px;
  font-size: 0.85rem;
}

.form-area .check-policy-area #content-policy {
  margin-top: 20px;
}
.form-area .check-policy-area #content-policy p {
  margin-bottom: 0;
}

.form-area .acceptanceArea {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  text-align: center !important;
  margin-bottom: 50px;
}

.form-area .form-inner {
  padding: 0;
  margin: 0 auto;
}

.form-area .post-share {
  margin: 0 auto;
  padding: 0;
}

.wpcf7-spinner {
  display: none;
}

form input[type=submit],
form button {
  background-image: linear-gradient(90deg, #338acb, #dc6ea4);
  padding: 1rem;
  font-size: 1.3rem;
  max-width: 350px;
  width: 100%;
  border-radius: 10rem;
  margin-bottom: 1.5rem;
}

#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: #86949e;
  padding: 25px;
  border: solid 1px;
  border-radius: 50%;
  box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  z-index: 1000;
}

#page-top::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-left: 2px solid #86949e;
  border-top: 2px solid #86949e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(45deg);
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    padding-left: 4rem;
  }
  h3::after {
    left: 30px;
  }
  .button-wrap {
    flex-direction: column;
    gap: 0;
  }
  .button-wrap span {
    font-size: 1rem;
  }
  .button-wrap a {
    max-width: 350px;
    width: 100%;
  }
  .conversion-block h2 {
    font-size: 1.1rem;
  }
  .explanation-wrap img {
    width: 10%;
    max-width: 25px;
  }
  .explanation-wrap .subhead {
    font-size: 1rem;
  }
  .explanation-wrap .heading {
    font-size: 1.15rem;
  }
  .text-l {
    font-size: 1.4rem;
  }
  .table-wrap-02 .table-02 {
    width: 100%;
    border-spacing: 0;
  }
  .table-wrap-02 .table-02 tr td {
    font-size: 1.8rem;
  }
  section.first .flex {
    flex-direction: column;
  }
  section.first .flex .flex-left,
  section.first .flex .flex-right {
    width: 100%;
  }
  section.first .flex .flex-left {
    order: 2;
  }
  section.first .flex .flex-right {
    order: 1;
  }
  section.possible .inner-width > .flex, section.point .inner-width > .flex, section.system .inner-width > .flex, section.sensor .inner-width > .flex, section.screen .inner-width > .flex, section.compare .inner-width > .flex, section.support .inner-width > .flex, section.price .inner-width > .flex {
    flex-direction: column;
  }
  section.possible .inner-width > .flex .flex-left,
  section.possible .inner-width > .flex .flex-right, section.point .inner-width > .flex .flex-left,
  section.point .inner-width > .flex .flex-right, section.system .inner-width > .flex .flex-left,
  section.system .inner-width > .flex .flex-right, section.sensor .inner-width > .flex .flex-left,
  section.sensor .inner-width > .flex .flex-right, section.screen .inner-width > .flex .flex-left,
  section.screen .inner-width > .flex .flex-right, section.compare .inner-width > .flex .flex-left,
  section.compare .inner-width > .flex .flex-right, section.support .inner-width > .flex .flex-left,
  section.support .inner-width > .flex .flex-right, section.price .inner-width > .flex .flex-left,
  section.price .inner-width > .flex .flex-right {
    width: 100%;
  }
  .inner-width {
    width: 100%;
    max-width: 100%;
  }
  section.first .flex {
    gap: 0rem;
  }
  section.first .button-wrap {
    gap: 0 !important;
    margin-bottom: 2rem;
  }
  section.first .button-wrap a {
    max-width: 350px;
    width: 100%;
  }
  section.introduction .inner-width .onayami-wrap {
    justify-content: center;
  }
  section.introduction .inner-width:first-of-type {
    width: 100%;
  }
  section.introduction .speech-bubble_right, section.introduction .speech-bubble_left {
    max-width: 100%;
    font-size: 1rem;
    border-radius: 10px;
    padding: 1rem;
  }
  section.introduction .speech-bubble_left {
    margin-right: 0;
  }
  section.introduction .speech-bubble_right:after {
    top: 30px;
  }
  section.possible .lead {
    font-size: 1rem;
    line-height: 1.6;
  }
  section.point .inner-width > .flex .point-wrap {
    margin: 0;
    width: 100%;
  }
  section.sensor .inner-width > .flex .flex-left .sensor-image {
    margin: 0 auto;
  }
  section.sensor .inner-width .flex.alert {
    flex-direction: column-reverse;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  section.sensor .inner-width .flex.alert .flex-left,
  section.sensor .inner-width .flex.alert .flex-right {
    width: 100%;
  }
  section.screen .inner-width:first-of-type .flex {
    gap: 0;
  }
  section.screen .inner-width .flex > .flex-right {
    flex-direction: column;
  }
  section.screen .inner-width .flex > .flex-right > .flex {
    flex-direction: column;
  }
  section.screen .inner-width .flex > .flex-right > .flex:last-of-type {
    flex-direction: row;
  }
  section.screen .inner-width .flex .flex.screen-image {
    gap: 0;
    margin-top: 3rem;
  }
  section.screen .inner-width .flex .flex.screen-image:first-of-type {
    margin-top: 0;
  }
  section.screen .inner-width .flex.subsidy .flex-left,
  section.screen .inner-width .flex.subsidy .flex-center,
  section.screen .inner-width .flex.subsidy .flex-right {
    width: 100%;
  }
  section.compare .standard p {
    padding: 1rem;
  }
  section.compare .standard .flex-left {
    padding: 0;
  }
  section.compare .standard .button-wrap a {
    max-width: 100%;
    width: 100%;
  }
  section.price > .inner-width .flex.price-wrap .flex-left {
    width: 100%;
    border-radius: 1rem 1rem 0 0;
    padding: 0.6rem 0;
  }
  section.price > .inner-width .flex.price-wrap .flex-right {
    width: 100%;
    border-radius: 0 0 1rem 1rem;
  }
  section.price > .inner-width .flex.price-wrap .flex-right .flex {
    flex-direction: column;
    align-items: flex-start;
  }
  section.price > .inner-width .flex.price-wrap .item {
    width: 100%;
  }
  section.step > .inner-width > .flex.step-wrap::after {
    display: none;
  }
  section.faq .qa summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    font-size: 1rem;
  }
  section.estimate .inner-width .form-area {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    margin: 3rem auto;
    padding: 4rem 1rem 3rem;
  }
  section.estimate .inner-width .form-area .form-inner-center {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .flex-sp {
    display: flex;
    gap: 2rem;
  }
  #page-top {
    bottom: 80px;
  }
}/*# sourceMappingURL=style.css.map */