@charset "UTF-8";
/* 変数をグローバルに定義。つまりuseの名前空間を無視 */
html *,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

html {
  font-size: 16px;
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

p {
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

img[src*=svg],
.svg {
  width: 100%;
  height: auto;
}

.d-none {
  display: none !important;
}

ul,
ol {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
input,
select,
textarea {
  vertical-align: middle;
  color: #220000;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

@media (min-width: 1280px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
.marker {
  color: #000;
  background-color: #fff316;
  padding: 0 0.5em;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* = 9 / 16 × 100 */
  height: 0;
  overflow: hidden;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tel {
  pointer-events: auto;
}

@media (min-width: 1280px) {
  .tel {
    pointer-events: none;
  }
}
.card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: initial;
}
.card .card-header {
  padding: 1em 2em;
  color: initial;
  background-color: initial;
}
.card .card-title h3 {
  font-size: 5.5vw;
  font-size: clamp(18px, 5.5vw, 38px);
}
@media (min-width: 1280px) {
  .card .card-title h3 {
    font-size: 21px;
  }
}
.card .card-title p {
  font-size: clamp(16px, 4.5vw, 21px);
}
@media (min-width: 1280px) {
  .card .card-title p {
    font-size: 16px;
  }
}
.card .card-body {
  padding: 6%;
}
.card .card-body p {
  font-size: clamp(16px, 4.5vw, 26px);
}
@media (min-width: 1280px) {
  .card .card-body p {
    font-size: 21px;
  }
}
@media (min-width: 1280px) {
  .card {
    border-radius: 0.5em;
  }
  .card .card-header {
    padding: 2em;
  }
  .card .card-body {
    padding: 2em;
  }
}

.icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  vertical-align: middle;
  background: no-repeat center/contain;
}
.icon.icon-arrow-down {
  background-image: url("../images/arrow-down.svg");
}
.icon.icon-play {
  background-image: url("../images/play.svg");
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
@media (min-width: 1280px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1em;
  }
}

.stripe {
  background-size: auto auto;
  background-color: #00B2EE;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, #05b5ef 10px, #05b5ef 20px);
}
.stripe-red {
  background-color: #e20000;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, #d70000 10px, #d70000 20px);
}

.speech-bubble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #dcfdff;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  line-height: 1;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #07B53B;
  color: #fff;
  width: 100%;
  border-radius: 6px;
  padding: 5% 0;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1280px) {
  .btn {
    padding: 0;
    min-height: 50px;
  }
}
.btn.btn-line {
  background-color: #07b53b;
  color: #fff;
}
.btn.btn-danger {
  background-color: #DA0000;
}
.btn.btn-danger-line {
  border: 0.2em solid #DA0000;
  background-color: #fff;
  color: #DA0000;
}
.btn:hover {
  opacity: 0.9;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 1em 0;
  gap: 1em;
}
@media (min-width: 1280px) {
  .form-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1em;
  }
}
.form-row .form-group {
  text-align: left;
  width: 100%;
}
.form-row label {
  font-weight: bold;
  display: inline-block;
  margin: 0.5em 0;
}
.form-row .form-select {
  width: 100%;
  height: 2.5em;
  padding: 0 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../images/form-select.svg") no-repeat right 0.5rem center/1rem;
}
@media (min-width: 600px) {
  .form-row .form-select {
    border-radius: 6px;
  }
}
@media (min-width: 1280px) {
  .form-row .form-select {
    font-size: 16px;
  }
}

.container {
  max-width: 600px;
  position: relative;
  margin: 0 auto;
  text-align: center;
  -webkit-box-shadow: -10px 0 15px -10px rgba(103, 41, 0, 0.35), 10px 0 15px -10px rgba(103, 41, 0, 0.35);
          box-shadow: -10px 0 15px -10px rgba(103, 41, 0, 0.35), 10px 0 15px -10px rgba(103, 41, 0, 0.35);
  overflow: hidden;
}
@media (min-width: 1280px) {
  .container {
    max-width: 1440px;
  }
}

/* ----------------------------------
header
---------------------------------- */
.header {
  position: fixed;
  width: 100%;
  left: 50%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 9;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5% 4% 1.5% 0;
  max-width: 600px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1280px) {
  .header {
    max-width: 1440px;
    height: auto;
    padding: 0;
  }
}
.header .logo {
  width: 34%;
}
@media (min-width: 1280px) {
  .header .logo {
    width: 14%;
  }
}
.header .wrap {
  display: contents;
}
@media (min-width: 1280px) {
  .header .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 80%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2%;
    padding: 0.5% 1% 0.5% 0;
  }
}
.header .gnav__tel-link {
  width: 62%;
}
@media (min-width: 1280px) {
  .header .gnav__tel-link {
    width: 35%;
  }
}
.header .btn {
  display: none;
}
@media (min-width: 1280px) {
  .header .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 28%;
    padding: 0.9% 0;
    min-height: auto;
    min-width: 304px;
  }
}
@media (min-width: 1280px) {
  .header .btn img {
    width: 76%;
  }
}

/* ----------------------------------
KV
---------------------------------- */
.keyvisual {
  position: relative;
  margin-top: 12%;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 600px) {
  .keyvisual {
    margin-top: 16%;
  }
}
@media (min-width: 1280px) {
  .keyvisual {
    margin-top: 72px;
  }
}
.keyvisual .fv-bnr {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  width: 93%;
  bottom: 6.5%;
}
@media (min-width: 1280px) {
  .keyvisual .fv-bnr {
    width: 31.5%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    right: -0.5%;
    left: auto;
    bottom: 16%;
  }
}
.keyvisual__inner {
  position: relative;
  height: 100%;
}
.keyvisual__title {
  position: relative;
  top: 10px;
  left: 10px;
  width: 90%;
  z-index: 1;
}
.keyvisual__eyecatch {
  position: relative;
  width: 48%;
}
.keyvisual__worker {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  z-index: 0;
}
.keyvisual__subsidy {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0 20px;
}

/* ----------------------------------
FV下CTAエリア
---------------------------------- */
.inquiry {
  position: relative;
  padding: 7% 4% 25%;
  z-index: 1;
}
@media (min-width: 1280px) {
  .inquiry {
    position: relative;
    padding: 0 7.5% 2%;
  }
}
.inquiry__inner {
  background-color: #fff;
  padding: 10% 5% 5%;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1280px) {
  .inquiry__inner {
    position: relative;
    border: #DA0000 solid 8px;
    border-radius: 300px;
    padding: 5% 10%;
  }
}
.inquiry__inner h2 {
  font-size: clamp(16px, 3vw, 27px);
  padding: 2%;
  margin-bottom: 1%;
}
@media (min-width: 1280px) {
  .inquiry__inner h2 {
    display: inline-block;
    padding: 0.5em 0;
    font-size: 21px;
    width: 40%;
    margin-bottom: 1.5%;
  }
}
.inquiry__discount {
  width: 92%;
  padding-bottom: 5%;
  padding-top: 2%;
}
@media (min-width: 1280px) {
  .inquiry__discount {
    width: 80%;
    padding-top: 1%;
    padding-bottom: 0%;
  }
}
.inquiry__points {
  width: 100%;
  margin-top: 3%;
}
@media (min-width: 1280px) {
  .inquiry__points {
    gap: 8px;
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
  .inquiry__point {
    width: 32%;
  }
}
.inquiry__point:last-child {
  margin-bottom: 0;
}
.inquiry__line {
  width: 100%;
  padding-top: 6%;
}
@media (min-width: 1280px) {
  .inquiry__line {
    width: 72%;
    padding-top: 2%;
  }
}
.inquiry__line .btn {
  padding: 7% 0;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1280px) {
  .inquiry__line .btn {
    padding: 3% 0;
  }
}
.inquiry__line .btn img {
  width: 90%;
}
@media (min-width: 1280px) {
  .inquiry__line .btn img {
    width: 70%;
  }
}
.inquiry__service-name {
  width: 100%;
}
@media (min-width: 1280px) {
  .inquiry__service-name {
    margin: -10.5% auto 0;
    width: 72%;
  }
}
.inquiry__pii {
  position: absolute;
  bottom: -5%;
  right: -6%;
  max-width: 44%;
}
@media (min-width: 1280px) {
  .inquiry__pii {
    width: 23%;
    bottom: -10%;
    right: 4%;
  }
}

/* ----------------------------------
熱中症注意喚起エリア
---------------------------------- */
.heat-stroke {
  background: url("../images/hs-bg.webp") repeat-x top;
  background-color: #FFF9EC;
  position: relative;
  padding: 18% 4% 59%;
  background-size: contain;
}
@media (min-width: 600px) and (max-width: 1279px) {
  .heat-stroke {
    padding: 15.5% 4% 38%;
  }
}
@media (min-width: 1280px) {
  .heat-stroke {
    padding: 6.5% 0 9%;
  }
}
.heat-stroke__inner {
  border: 3px solid #f56e00;
  border-radius: 16px;
  background: url("../images/hs-bg-end.svg") repeat-x bottom/auto 15%;
  background-color: #FFF9EC;
  position: relative;
}
@media (min-width: 1280px) {
  .heat-stroke__inner {
    width: 84%;
    margin: 0 auto;
    border-radius: 30px;
    background: url("../images/hs-bg-end.svg") repeat-x bottom/auto 45%;
    background-color: #FFF9EC;
  }
}
.heat-stroke__top-title {
  display: inline-block;
  width: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 1280px) {
  .heat-stroke__top-title {
    margin-top: 0;
    width: 34.5%;
  }
}
.heat-stroke h2 {
  width: 76%;
  margin: -1% auto 0;
}
@media (min-width: 1280px) {
  .heat-stroke h2 {
    width: 60%;
    margin-bottom: 2%;
  }
}
.heat-stroke__points {
  padding: 7% 13%;
  gap: 3vw;
}
@media (min-width: 1280px) {
  .heat-stroke__points {
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 2% 8% 0;
  }
}
.heat-stroke__bubble {
  position: relative;
  margin-bottom: -13%;
  z-index: 1;
}
.heat-stroke__point {
  margin-bottom: 3%;
}
@media (min-width: 1280px) {
  .heat-stroke__point {
    width: 30%;
  }
}
.heat-stroke__point:last-child {
  margin-bottom: 0;
}
.heat-stroke__arrow {
  width: 10%;
  margin: 0 auto 11%;
}
.heat-stroke__actually-imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -9% -1% 7%;
  width: 101%;
}
@media (min-width: 1280px) {
  .heat-stroke__actually-imgs {
    width: 100%;
    margin: -2% 0 3%;
  }
}
.heat-stroke__actually-imgs .left {
  margin-left: 5%;
}
@media (min-width: 1280px) {
  .heat-stroke__actually-imgs .left {
    margin-top: 11%;
  }
}
.heat-stroke__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.heat-stroke__img::after {
  display: none;
}
@media (min-width: 1280px) {
  .heat-stroke__img::after {
    display: block;
    content: "";
    background: url(../images/hs-arrow.svg);
    width: 37px;
    height: 18px;
    background-size: cover;
    margin-top: 4%;
  }
}

/* ----------------------------------
熱気の正体
---------------------------------- */
.heat-enters-window {
  background-color: #DA0000;
  position: relative;
}
.heat-enters-window__before-top {
  position: absolute;
  width: 80%;
  top: -11%;
}
@media (min-width: 600px) and (max-width: 1279px) {
  .heat-enters-window__before-top {
    width: 70%;
    top: -7%;
  }
}
@media (min-width: 1280px) {
  .heat-enters-window__before-top {
    left: 0;
    width: auto;
    top: 7%;
  }
}
.heat-enters-window__inner {
  position: relative;
  -webkit-transform: translateY(-6.5%);
          transform: translateY(-6.5%);
  padding: 1% 1%;
}
@media (min-width: 600px) and (max-width: 1279px) {
  .heat-enters-window__inner {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 0;
  }
}
.heat-enters-window__inner h2 {
  padding-top: 3%;
  margin: 0 auto;
}
@media (min-width: 600px) and (max-width: 1279px) {
  .heat-enters-window__inner h2 {
    margin-top: -22%;
  }
}
@media (min-width: 1280px) {
  .heat-enters-window__inner h2 {
    width: 50%;
    margin-top: -9%;
    margin-bottom: 2%;
  }
}
.heat-enters-window__sub-title {
  width: 75%;
  margin: -2% auto 0%;
  padding-bottom: 7%;
}
@media (min-width: 1280px) {
  .heat-enters-window__sub-title {
    width: 57%;
    padding-bottom: 2.5%;
  }
}
.heat-enters-window__card {
  padding-bottom: 3%;
  width: 94%;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .heat-enters-window__card {
    width: 86%;
    padding-bottom: 0;
    border-radius: 16px;
  }
}
.heat-enters-window .card h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5vw;
  font-size: clamp(1rem, 5.5vw, 30px);
}
@media (min-width: 1280px) {
  .heat-enters-window .card h3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 34px;
  }
}
.heat-enters-window .card h3 .big {
  font-size: 1.4em;
}
@media (min-width: 1280px) {
  .heat-enters-window .card h3 .big {
    font-size: 1em;
  }
}
.heat-enters-window .card .card-header {
  background-color: #220000;
  color: #fff;
  padding: 7% 0;
}
@media (min-width: 1280px) {
  .heat-enters-window .card .card-header {
    padding: 1.5% 0;
  }
}
.heat-enters-window .card .card-body {
  padding: 1em 0 0em;
}
@media (min-width: 1280px) {
  .heat-enters-window .card .card-body {
    padding: 0;
  }
}
.heat-enters-window__item {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10%;
  border-bottom: 0.1em dotted #220000;
}
@media (min-width: 1280px) {
  .heat-enters-window__item {
    width: 20%;
    border: none;
    padding-bottom: 0;
  }
}
.heat-enters-window__bottom-text {
  padding: 0 4% 12%;
  font-size: 5.5vw;
}
@media (min-width: 1280px) {
  .heat-enters-window__bottom-text {
    padding: 0 0 3%;
  }
  .heat-enters-window__bottom-text__top-bg {
    width: 70%;
    top: -20em;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .heat-enters-window__bottom-text__item {
    width: 40%;
  }
}
.heat-enters-window p {
  margin: 9% auto 6%;
}
@media (min-width: 1280px) {
  .heat-enters-window p {
    margin: 0;
    padding-bottom: 3%;
  }
}

/* ----------------------------------
空き巣被害
---------------------------------- */
.burglary {
  background: #DA0000 url("../images/burg-bg.webp") no-repeat left top/contain;
  position: relative;
  margin-top: -27%;
  color: #fff;
  padding: 0 5% 34%;
}
@media (min-width: 600px) {
  .burglary {
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
  .burglary {
    margin-top: -4%;
    background-image: url("../images/pc/burg-bg.webp");
    overflow: hidden;
    padding-bottom: 0em;
    padding: 0 5% 13%;
  }
}
.burglary__triangle {
  position: absolute;
  width: 100%;
  top: -1px;
  left: 0;
}
@media (min-width: 1280px) {
  .burglary__triangle {
    width: 100%;
    top: -2px;
    left: 0;
    z-index: 1;
  }
}
.burglary__top-img {
  position: absolute;
  width: 57%;
  top: 3%;
  left: -11%;
}
@media (min-width: 1280px) {
  .burglary__top-img {
    width: 45%;
    left: 4%;
    top: 9%;
  }
}
.burglary__inner {
  position: relative;
  padding-top: 30%;
}
@media (min-width: 1280px) {
  .burglary__inner {
    margin-top: 0;
    padding-top: 0;
  }
}
.burglary__title {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .burglary__title {
    width: 69%;
    margin: 0 auto;
    margin-top: 15%;
  }
}
@media (min-width: 1280px) {
  .burglary__title1 {
    width: 50%;
    margin: 0 auto;
  }
}
.burglary__title2 {
  padding-top: 5%;
  padding-bottom: 10%;
}
@media (min-width: 1280px) {
  .burglary__title2 {
    padding-top: 0;
    padding-bottom: 1%;
  }
}
.burglary__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1rem, 5.5vw, 28px);
  gap: 6vw;
}
@media (min-width: 600px) {
  .burglary__text {
    gap: 21px;
  }
}
@media (min-width: 1280px) {
  .burglary__text {
    gap: 0.5em;
    font-size: 24px;
  }
}
.burglary__text p {
  line-height: 1.6;
}
.burglary__cases {
  padding: 4% 0 3%;
  gap: 9vw;
}
@media (min-width: 600px) {
  .burglary__cases {
    gap: 30px;
  }
}
@media (min-width: 1280px) {
  .burglary__cases {
    gap: 0;
    width: 94%;
    margin: 0 auto;
    padding-bottom: 0%;
  }
}
@media (min-width: 1280px) {
  .burglary__case {
    width: 49%;
  }
}
.burglary__arrow {
  width: 28%;
  margin: 0 auto;
  padding: 1em 0;
}
@media (min-width: 1280px) {
  .burglary__arrow {
    width: 17%;
    padding: 3% 0;
    margin: 0 auto;
  }
}

/* ----------------------------------
空き巣対策
---------------------------------- */
.burglary-prevention {
  position: relative;
}
@media (min-width: 1280px) {
  .burglary-prevention {
    margin-top: -8%;
  }
}
.burglary-prevention__before-img {
  position: absolute;
  top: -3em;
  width: 100%;
}
@media (min-width: 1280px) {
  .burglary-prevention__before-img {
    top: -9em;
  }
}
.burglary-prevention__before-staff {
  position: absolute;
  top: -19%;
  width: 100%;
}
@media (min-width: 1280px) {
  .burglary-prevention__before-staff {
    top: -23%;
    left: 0;
    width: 36%;
  }
}
.burglary-prevention__inner {
  position: relative;
  padding: 15% 4%;
  padding-bottom: 8em;
}
@media (min-width: 600px) {
  .burglary-prevention__inner {
    padding: 15% 4% 29%;
  }
}
@media (min-width: 1280px) {
  .burglary-prevention__inner {
    padding: 0 4% 9%;
  }
}
.burglary-prevention__block1 {
  padding-bottom: 1em;
}
@media (min-width: 1280px) {
  .burglary-prevention__block1 {
    width: 87%;
    margin: 5% auto 0;
  }
}
.burglary-prevention__block2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: solid 1px #ddd;
  border-radius: 3%;
  padding: 9% 4%;
  gap: 1.5em;
}
@media (min-width: 600px) {
  .burglary-prevention__block2 {
    gap: 3em;
  }
}
@media (min-width: 1280px) {
  .burglary-prevention__block2 {
    width: 116%;
    margin: -9% 0 0 -8%;
    border: none;
    padding: 0;
  }
}
.burglary-prevention__block2-pic {
  width: 93%;
  padding-bottom: 6%;
  border-bottom: dotted 1px #ddd;
}
@media (min-width: 1280px) {
  .burglary-prevention__block2-pic {
    position: relative;
    right: -6em;
    border: none;
    padding-bottom: 0;
  }
}
.burglary-prevention__block2-tel {
  width: 100%;
}
@media (min-width: 1280px) {
  .burglary-prevention__block2-tel {
    position: absolute;
    width: 50%;
    top: 51%;
    padding: 1% 0;
    left: 28.5%;
  }
}
.burglary-prevention__block2-line {
  width: 100%;
}
@media (min-width: 1280px) {
  .burglary-prevention__block2-line {
    position: absolute;
    width: 50%;
    top: 73%;
    left: 28.5%;
  }
}
.burglary-prevention__block2-line .hukidashi {
  width: 71%;
  margin: 0 auto 2%;
}
@media (min-width: 1280px) {
  .burglary-prevention__block2-line .hukidashi {
    width: 47%;
  }
}
.burglary-prevention__block2-line img {
  width: 92%;
}
@media (min-width: 1280px) {
  .burglary-prevention__block2-line .btn {
    padding: 1em 8em;
  }
}

/* ----------------------------------
施工事例
---------------------------------- */
.window-effect {
  background: url("../images/we-bg.svg") no-repeat right top/12em;
  background-color: #FFF350;
  padding-bottom: 13%;
}
@media (min-width: 600px) {
  .window-effect {
    padding-bottom: 14%;
  }
}
@media (min-width: 1280px) {
  .window-effect {
    padding-bottom: 5%;
  }
}
.window-effect__title {
  position: relative;
}
.window-effect__title-pic {
  position: relative;
  width: 92%;
  margin: 0 auto 2%;
  -webkit-transform: translateY(-22%);
          transform: translateY(-22%);
}
@media (min-width: 1280px) {
  .window-effect__title-pic {
    top: 0;
    left: -5%;
    width: 102%;
    bottom: auto;
    margin: -2% auto 0;
  }
}
.window-effect__title-ribbon {
  position: absolute;
  width: 58%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 28%;
}
@media (min-width: 600px) {
  .window-effect__title-ribbon {
    bottom: 26%;
  }
}
@media (min-width: 1280px) {
  .window-effect__title-ribbon {
    width: 30%;
    bottom: 29%;
  }
}
.window-effect__case-study {
  position: relative;
  -webkit-transform: translateY(-6.5%);
          transform: translateY(-6.5%);
}
@media (min-width: 1280px) {
  .window-effect__case-study {
    top: 0;
    -webkit-transform: translateY(-14.5%);
            transform: translateY(-14.5%);
  }
}
.window-effect__case-study-title {
  background-color: #ab1a02;
  color: #fff;
  font-size: clamp(18px, 5.5vw, 38px);
  padding: 4% 0;
  width: 92%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .window-effect__case-study-title {
    margin: -1% auto 0;
    padding: 2% 0;
  }
}
@media (min-width: 1280px) {
  .window-effect__case-study-title {
    width: 100%;
    font-size: 1.7em;
    padding: 2% 0;
  }
}
.window-effect__case-study-title p span + span {
  margin-left: 1em;
}
.window-effect__case-study-items {
  padding: 4%;
}
@media (min-width: 1280px) {
  .window-effect__case-study-items {
    padding: 1.5% 0% 2.5%;
  }
}
@media (min-width: 1280px) {
  .window-effect__case-study-button {
    width: 63%;
    margin: 0 auto;
  }
}
.window-effect__case-study-button .btn {
  width: 92%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  font-size: clamp(1rem, 6.3vw, 36px);
  border: solid 4px #DA0000;
  padding: 6.5% 0;
}
@media (min-width: 1280px) {
  .window-effect__case-study-button .btn {
    padding: 3.5% 0;
    border-radius: 8px;
    font-size: 2.2em;
  }
}
@media (min-width: 1280px) {
  .window-effect__inner {
    padding: 3% 7.5%;
  }
}

/* ----------------------------------
電気代シュミレーション
---------------------------------- */
.save-money {
  background-color: #fff350;
  position: relative;
}
.save-money__bg {
  position: absolute;
  -webkit-transform: translateX(0) translateY(-33%);
          transform: translateX(0) translateY(-33%);
  width: 100%;
}
@media (min-width: 1280px) {
  .save-money__bg {
    position: absolute;
    width: 60%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-28%);
            transform: translateX(-50%) translateY(-28%);
  }
}
.save-money__inner {
  position: relative;
  background-color: #fff;
}
@media (min-width: 1280px) {
  .save-money__inner {
    padding: 1% 5%;
  }
}
.save-money__text {
  position: relative;
}
.save-money__icon {
  position: absolute;
  bottom: -26%;
  left: 2%;
  width: 21%;
}
@media (min-width: 1280px) {
  .save-money__icon {
    top: 1em;
    left: 3.5em;
    bottom: auto;
    width: 15%;
  }
}
.save-money__ceo {
  position: absolute;
  bottom: -9%;
  right: 0;
  width: 20%;
}
@media (min-width: 1280px) {
  .save-money__ceo {
    top: -7em;
    right: -3%;
    bottom: auto;
    width: 25.5%;
  }
}
.save-money h2 {
  position: relative;
  font-size: clamp(16px, 4.5vw, 26px);
  margin-top: 1%;
}
@media (min-width: 1280px) {
  .save-money h2 {
    font-size: 1.7em;
  }
}
.save-money__title {
  width: 73%;
  margin: 3% auto 6%;
}
@media (min-width: 1280px) {
  .save-money__title {
    width: 73%;
    margin: 1.5% auto 2%;
  }
}
.save-money__calculator {
  margin: 0 1em;
  border: 0.1em solid #dddddd;
}
@media (min-width: 1280px) {
  .save-money__calculator {
    position: relative;
    font-size: 2rem;
    width: 70%;
    margin: 0 auto 2em;
    border-radius: 0.5em;
  }
}
.save-money__calculator .card-header {
  background-color: #da0001;
  color: #fff;
}
@media (min-width: 1280px) {
  .save-money__calculator .card-header {
    padding: 0.5em 0em;
  }
}
.save-money__calculator .card-header h3 {
  font-size: clamp(18px, 6vw, 36px);
}
@media (min-width: 1280px) {
  .save-money__calculator .card-header h3 {
    font-size: 24px;
  }
}
.save-money__calculator .card-body {
  padding: 1em;
}
@media (min-width: 1280px) {
  .save-money__calculator .card-body {
    font-size: 1.25rem;
    padding: 0% 3.5% 4%;
  }
}
.save-money__calculator .card-body .current-bill-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.5em;
  padding: 0 0.75rem;
  border: 0.1em solid #e5e7eb;
  border-radius: 4px;
  background-color: #f3f4f6;
}
@media (min-width: 600px) {
  .save-money__calculator .card-body .current-bill-display {
    border-radius: 6px;
  }
}
@media (min-width: 1280px) {
  .save-money__calculator .card-body .current-bill-display {
    font-size: 16px;
  }
}
.save-money__calculator .card-body .kwh-text {
  margin: 0.5em 0;
  font-size: 0.8rem;
  text-align: right;
}
.save-money__calculator .card-body .btn {
  width: 100%;
  font-weight: bold;
  padding: 8% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(18px, 5.5vw, 34px);
  border-radius: 8px;
}
@media (min-width: 1280px) {
  .save-money__calculator .card-body .btn {
    position: relative;
    font-size: 35px;
    padding: 0.8em 0em;
    border-radius: 0.2em;
    border-width: 0.1em;
  }
}
.save-money__calculator .card-body .btn .icon {
  display: none;
}
@media (min-width: 1280px) {
  .save-money__calculator .card-body .btn .icon {
    position: absolute;
    right: 2%;
    display: inline-block;
    width: 1em;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.save-money__calculator .card-body .results-container .arrow-down {
  margin: 1rem;
}
.save-money__calculator .card-body .results-container .arrow-down .icon {
  width: 2.5em;
  height: 2.5em;
}
.save-money__calculator .card-body .results-container .results-content {
  padding: 4% 5%;
  background-color: #cef1ff;
  border-radius: 10px;
}
@media (min-width: 1280px) {
  .save-money__calculator .card-body .results-container .results-content {
    padding: 4% 2%;
  }
}
.save-money__calculator .card-body .results-container .results-content .results-title {
  font-weight: bold;
  font-size: clamp(27px, 7vw, 30px);
  padding: 8% 0;
}
@media (min-width: 1280px) {
  .save-money__calculator .card-body .results-container .results-content .results-title {
    padding: 2%;
  }
}
.save-money__calculator .card-body .results-container .results-content .results {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.save-money__calculator .card-body .results-container .results-content .results .result-item {
  background-color: #fff;
  padding: 7% 7% 8%;
  border-radius: 0.5rem;
}
.save-money__calculator .card-body .results-container .results-content .results .result-item .result-label {
  margin-bottom: 6%;
  font-size: clamp(16px, 5vw, 24px);
}
.save-money__calculator .card-body .results-container .results-content .results .result-item .result-value-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.25rem;
}
.save-money__calculator .card-body .results-container .results-content .results .result-item .result-value {
  font-weight: bold;
  font-size: clamp(18px, 9vw, 50px);
}
.save-money__calculator .card-body .results-container .results-content .results .result-item .result-kwh {
  font-size: 0.75rem;
}
.save-money__calculator .card-body .results-container .results-content .results .result-item .highlight {
  color: #DA0000;
}
.save-money__calculator .card-body .results-container .results-content .savings-summary {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
}
.save-money__calculator .card-body .results-container .results-content .savings-summary .savings-title {
  color: #DA0000;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: clamp(16px, 5vw, 30px);
}
.save-money__calculator .card-body .results-container .results-content .savings-summary .savings-amount {
  color: #DA0000;
  font-size: clamp(18px, 9vw, 40px);
  line-height: 1.5;
  font-weight: bold;
}
.save-money__calculator .card-body .results-container .results-content .savings-summary .yearly-savings {
  font-weight: bold;
  margin-top: 0.5rem;
}
.save-money__calculator .card-body .results-container .simulator-disclaimer {
  text-align: left;
  background-color: #f3f4f6;
  padding: 4%;
  border-radius: 8px;
  margin-top: 2.5%;
}
.save-money__calculator .card-body .results-container .simulator-disclaimer p {
  text-indent: -1em;
  padding-left: 1em;
  font-size: clamp(13px, 3vw, 16px);
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 1280px) {
  .save-money__calculator .card-body .results-container .simulator-disclaimer p {
    font-size: 13px;
  }
}
.save-money__block {
  position: relative;
  padding: 7% 4%;
}
.save-money__block-line {
  position: absolute;
  width: 84%;
  bottom: 24%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.save-money__block-line .btn-line {
  padding: 6% 5%;
}
.save-money__block-tel {
  position: absolute;
  padding: 0 4%;
  bottom: 10%;
  left: 50%;
  width: 92%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1280px) {
  .save-money__calculator .card-body .results-container .results-content .results-title {
    font-size: 30px;
  }
  .save-money__calculator .card-body .results-container .results-content .results {
    grid-template-columns: repeat(3, 1fr);
  }
  .save-money__calculator .card-body .results-container .results-content .results .result-item {
    padding: 11% 0;
  }
  .save-money__calculator .card-body .results-container .results-content .results .result-item .result-label {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .save-money__calculator .card-body .results-container .results-content .results .result-item .result-value-container {
    gap: 0;
  }
  .save-money__calculator .card-body .results-container .results-content .results .result-item .result-value {
    font-size: 30px;
  }
  .save-money__calculator .card-body .results-container .results-content .results .result-item .result-kwh {
    font-size: 0.75rem;
  }
  .save-money__calculator .card-body .results-container .results-content .savings-summary {
    padding: 2rem;
  }
  .save-money__calculator .card-body .results-container .results-content .savings-summary .savings-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .save-money__calculator .card-body .results-container .results-content .savings-summary .savings-amount {
    font-size: 3rem;
  }
  .save-money__calculator .card-body .results-container .results-content .savings-summary .yearly-savings {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .save-money__block {
    margin: 2em;
    padding: 0;
    background-color: #f3f4f6;
    border-radius: 0.5em;
  }
  .save-money__block-line {
    width: 58%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 42%;
  }
  .save-money__block-line .btn {
    padding: 1em 8em;
  }
  .save-money__block-tel {
    width: 61%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 3.5em;
  }
}

/* ----------------------------------
内窓のすごさ
---------------------------------- */
.amazing {
  position: relative;
}
.amazing__top-bg {
  position: absolute;
  top: -2em;
  width: 100%;
}
.amazing__inner {
  position: relative;
  padding: 28% 4% 9%;
}
.amazing__items {
  margin: 1em auto;
}
.amazing__block {
  position: relative;
  padding-top: 23%;
}
.amazing__block-window {
  position: absolute;
  width: 64%;
  top: 2%;
  left: 0;
}
@media (min-width: 1280px) {
  .amazing__top-bg {
    position: absolute;
    top: -2px;
  }
  .amazing__inner {
    padding: 4em 6em 0em;
  }
  .amazing__title {
    width: 68%;
    margin: -2% auto 0;
  }
  .amazing__block {
    padding-top: 1em;
  }
  .amazing__block-pengin {
    position: absolute;
    width: 32%;
    right: -2em;
    bottom: -2em;
  }
}

/* ----------------------------------
お悩み解決
---------------------------------- */
.solution__top-bg {
  margin: -1px;
}
.solution__inner {
  position: relative;
  padding: 4% 0 0;
  background-color: #F3F4F6;
}
.solution__logo {
  position: relative;
  width: 50%;
  margin: 0 auto;
  margin-top: -1.5em;
}
.solution h2 {
  padding: 1em 0;
  width: 94%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .solution h2 {
    margin: 0 auto 8%;
  }
}
.solution__items {
  padding: 4% 4% 5%;
  gap: 3em;
}
@media (min-width: 600px) {
  .solution__items {
    gap: 5em;
  }
}
.solution__item {
  position: relative;
  overflow: initial;
  border: solid 1px #e5e7eb;
}
.solution__item .card-icon {
  width: 20%;
  margin: -10% auto 0;
}
.solution__item .card-body {
  text-align: left;
  padding-top: 0;
  font-weight: 400;
}
@media (min-width: 1280px) {
  .solution__item .card-body {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .solution__item .card-body p {
    font-size: 16px;
  }
}
.solution__item .card-header {
  padding: 4%;
}
.solution__bottom-img {
  width: 100%;
  margin: 0;
}
@media (min-width: 1280px) {
  .solution__bottom-img {
    margin: 0 auto;
  }
}
@media (min-width: 1280px) {
  .solution__top-bg {
    margin: 0;
  }
  .solution__inner {
    padding: 0;
    padding-top: 1px;
  }
  .solution__staff {
    position: absolute;
    width: 57%;
    top: -14.5em;
    left: -8%;
  }
  .solution__logo {
    width: 16em;
    margin-top: -2em;
  }
  .solution h2 {
    width: 50%;
    margin: 0 auto;
    position: relative;
    left: 2em;
  }
  .solution__items {
    padding: 2em 5em 8em;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 1em;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .solution__item {
    width: 32%;
    border-radius: 0.5em;
  }
  .solution__item:nth-child(n+4) {
    margin-top: 2em;
  }
  .solution__bottom-img {
    position: absolute;
    width: 38%;
    right: 0;
    bottom: 0;
    margin: 0;
  }
}

/* ----------------------------------
助成金訴求エリア
---------------------------------- */
.subsidy {
  color: #fff;
  padding: 15% 0 24%;
}
.subsidy__title {
  margin-bottom: 3%;
}
@media (min-width: 1280px) {
  .subsidy__title {
    margin-top: 7%;
    width: 90%;
    margin: 7% auto 3%;
  }
}
.subsidy__cards {
  gap: 2em;
  padding: 0 4%;
}
.subsidy__title2 {
  margin: 0 auto;
}
.subsidy__title2 p {
  font-size: 0.9rem;
  margin: 2% 0 7%;
}
.subsidy__title2 h3 {
  width: 119%;
  margin: 8% auto 0;
  text-align: center;
  -webkit-transform: translateX(-11%);
          transform: translateX(-11%);
}
@media (min-width: 1280px) {
  .subsidy__title2 h3 {
    width: 100%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    margin: 6% auto 0;
  }
}
.subsidy__youtube {
  padding: 0 4% 5%;
  text-align: center;
}
.subsidy__youtube-text {
  margin: 3% auto;
}
.subsidy__title3-wrap {
  position: relative;
  padding: 0 4%;
}
.subsidy__title3 {
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-bottom: -2.5em;
}
.subsidy__title3-line {
  position: relative;
  padding: 0 4%;
  margin-top: -30%;
  z-index: 3;
}
.subsidy__title3-line img {
  width: 95%;
  margin: 0 0 0 5%;
}
@media (min-width: 1280px) {
  .subsidy {
    padding: 0em 8em 7em;
  }
  .subsidy__triangle {
    width: 10%;
    margin: 0 auto;
    margin-top: -1px;
  }
  .subsidy.stripe-red.staff {
    background-image: url("../images/pc/sub-staff.webp"), repeating-linear-gradient(-45deg, transparent 0, transparent 10px, #dd0000 10px, #dd0000 20px);
    background-repeat: no-repeat, repeat;
    background-position: bottom 25em left 0, 0 0;
    background-size: 100% auto;
    background-position: 128% 83%;
  }
  .subsidy__card {
    width: 48%;
  }
  .subsidy__title2 p {
    font-size: 2rem;
  }
  .subsidy__youtube {
    width: 70%;
    margin: 0 auto 0;
    padding: 0 4% 0%;
  }
  .subsidy__youtube-text {
    width: 60%;
    font-size: 1.5rem;
    margin: 3% auto 1.5%;
  }
  .subsidy__title3 {
    width: 50%;
    margin-top: 4%;
  }
  .subsidy__title3-line {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0;
    margin-top: -9em;
    width: 60%;
    margin: 0 auto;
    top: 64%;
  }
  .subsidy__title3-line .btn {
    padding: 0.5em 0;
  }
  .subsidy__title3-line .btn img {
    width: 60%;
  }
}

/* ----------------------------------
工事枠
---------------------------------- */
.limit {
  background-color: #F3F4F6;
}
@media (min-width: 1280px) {
  .limit h3 {
    margin-top: -1.1%;
  }
}

/* ----------------------------------
お見積もり・ご相談
---------------------------------- */
.estimate {
  background-color: #F3F4F6;
  padding: 5% 4% 52%;
  margin-top: 0;
}
@media (min-width: 600px) {
  .estimate {
    padding: 6% 4% 53%;
  }
}
@media (min-width: 1280px) {
  .estimate {
    padding: 0 8% 30%;
  }
}
.estimate h2 {
  padding: 0 4%;
  margin-bottom: 1em;
}
@media (min-width: 600px) {
  .estimate h2 {
    margin-bottom: 3%;
  }
}
@media (min-width: 1280px) {
  .estimate h2 {
    width: 70%;
    margin: 0 auto 8%;
  }
}
.estimate h3 {
  position: relative;
  z-index: 3;
  padding-bottom: 4%;
}
@media (min-width: 600px) {
  .estimate h3 {
    font-size: 32px;
  }
}
@media (min-width: 1280px) {
  .estimate h3 {
    font-size: 21px;
  }
}
.estimate__blocks {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (min-width: 1280px) {
  .estimate__blocks {
    margin-top: 0;
  }
}
.estimate__blocks .card {
  padding: 4%;
}
@media (min-width: 1280px) {
  .estimate__blocks .card {
    padding: 1.5%;
  }
}
.estimate__block2 {
  position: relative;
  overflow: initial;
  margin-top: 2em;
}
@media (min-width: 1280px) {
  .estimate__block2 {
    margin-top: 0;
    width: 48%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 1280px) {
  .estimate__block2 h3 {
    padding-bottom: 8.9%;
  }
}
.estimate__block2-img {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -1%;
  width: 45%;
  z-index: 0;
}
@media (min-width: 1280px) {
  .estimate__block2-img {
    width: 40%;
    margin-left: 0;
  }
}
.estimate__block2 p {
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .estimate__block2 p {
    font-size: 1.5rem;
    padding-bottom: 1em;
  }
}
.estimate__block2-tel {
  position: relative;
  padding: 4%;
  background-color: #DCFDFF;
  border-radius: 0.2em;
}
@media (min-width: 1280px) {
  .estimate__block3 {
    width: 48%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.estimate__block3-btn .btn {
  margin-top: 1%;
}
@media (min-width: 1280px) {
  .estimate__block3-btn .btn {
    padding: 1em 3em;
  }
}
.estimate__block3-btn img {
  width: 90%;
}
@media (min-width: 1280px) {
  .estimate__block3 p {
    font-size: 1.5rem;
  }
}
.estimate__block3 .hukidashi {
  width: 60%;
  margin: 0 auto 1%;
}
.estimate__bottom {
  position: relative;
  margin-bottom: -4em;
  z-index: 1;
}
@media (min-width: 1280px) {
  .estimate__bottom-text {
    margin: 2% auto 4%;
  }
}

/* ----------------------------------
フッター
---------------------------------- */
.footer .container {
  overflow: initial;
}

.info {
  background-color: #220000;
  color: #fff;
  padding: 17% 4%;
  text-align: left;
  font-size: 0.9rem;
}
@media (min-width: 1280px) {
  .info {
    padding: 12% 100px 2%;
  }
}
@media (min-width: 768px) {
  .info__address a {
    pointer-events: none;
  }
}
.info p {
  margin: 0.75em 0;
}
.info__top-bg {
  position: absolute;
  left: 50%;
  width: 96%;
  -webkit-transform: translateX(-50%) translateY(-100%);
          transform: translateX(-50%) translateY(-100%);
}
@media (min-width: 1280px) {
  .info__top-bg {
    width: 80%;
  }
}
.info__logo {
  width: 70%;
  margin: 2em 0;
}
@media (min-width: 1280px) {
  .info__logo {
    width: 50%;
  }
}

.copyright {
  background-color: #000000;
  color: #d1d5db;
  padding: 5% 4% 22%;
}
@media (min-width: 1280px) {
  .copyright {
    padding: 20px 0;
  }
}

.sp-fixed-cta {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.5%;
  z-index: 999;
  max-width: 600px;
  background: #fff;
}
.sp-fixed-cta a {
  display: block;
  width: 50%;
  height: 100%;
}
@media (min-width: 1280px) {
  .sp-fixed-cta {
    display: none;
  }
}