@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;
  background: #ffe6c1;
}

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);
}
.stripe-beige {
  background-color: #fff;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, #f9f3e8 3px, #f9f3e8 6px);
}

.red {
  background-color: #d70000;
}

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

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

.contents {
  border: solid 4px #da0001;
  display: block;
  z-index: 999999;
  width: 100%;
  max-width: 600px;
}
@media (min-width: 1280px) {
  .contents {
    max-width: 1440px;
    border: solid 6px #da0001;
  }
}

/* ----------------------------------
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: 3% 4% 1.5% 0;
  max-width: 600px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 600px) {
  .header {
    padding: 13px 20px 10px 0;
  }
}
@media (min-width: 1280px) {
  .header {
    max-width: 1440px;
    height: 70px;
    padding: 0 10px 0 0;
  }
}
.header .logo {
  width: 34%;
}
@media (min-width: 1280px) {
  .header .logo {
    width: auto;
    height: 73px;
    aspect-ratio: 5/2;
  }
}
.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;
  }
}
.header .gnav__tel-link {
  width: 62%;
}
@media (min-width: 1280px) {
  .header .gnav__tel-link {
    width: 584px;
  }
}
.header .btn {
  display: none;
}
@media (min-width: 1280px) {
  .header .btn {
    width: 304px;
    display: block;
  }
}

/* ----------------------------------
KV
---------------------------------- */
.fv {
  position: relative;
  margin-top: 17%;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 600px) {
  .fv {
    margin-top: 100px;
  }
}
@media (min-width: 1280px) {
  .fv {
    margin-top: 70px;
  }
}
.fv .fv-bnr {
  position: absolute;
  left: 27%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  width: 45%;
  bottom: 20.7%;
  display: block;
}
@media (min-width: 1280px) {
  .fv .fv-bnr {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 21.3%;
    right: auto;
    left: 2.3%;
    bottom: auto;
    top: 1%;
  }
}
.fv__inner {
  position: relative;
  height: 100%;
}
.fv .fv-btn {
  position: absolute;
  left: 50%;
  bottom: 1.5%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 92%;
  z-index: 5;
}
@media (min-width: 1280px) {
  .fv .fv-btn {
    left: 44%;
    bottom: 6%;
    width: 26%;
  }
}

/* ----------------------------------
FV下CTAエリア
---------------------------------- */
.cta1 {
  position: relative;
  padding: 2% 3% 17%;
  z-index: 1;
}
@media (min-width: 1280px) {
  .cta1 {
    padding: 3% 0 8%;
  }
}
.cta1 .inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .cta1 .inner {
    width: 84%;
  }
}
.cta1 .inner .btn {
  display: block;
  width: 88%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 5%;
}
@media (min-width: 1280px) {
  .cta1 .inner .btn {
    width: 60%;
    bottom: 7%;
  }
}
.cta1 .inner .bii {
  display: none;
}
@media (min-width: 1280px) {
  .cta1 .inner .bii {
    display: block;
    position: absolute;
    width: 29%;
    right: -9%;
    bottom: -25%;
    z-index: 2;
  }
}

/* ----------------------------------
冬の問題エリア
---------------------------------- */
.winter-problem {
  position: relative;
  z-index: 1;
  padding-bottom: 17%;
  background-color: #041623;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media (min-width: 1280px) {
  .winter-problem {
    background-image: url("../images/pc/winter-problem-bg.webp");
    padding-bottom: 8%;
  }
}
.winter-problem .ttl {
  width: 100%;
  margin: -10% 0 4%;
}
@media (min-width: 1280px) {
  .winter-problem .ttl {
    width: 80%;
    margin: -5% auto 0 -22%;
  }
}
.winter-problem .inner {
  width: 92%;
  margin: 0 auto 0;
}
@media (min-width: 1280px) {
  .winter-problem .inner {
    width: 84%;
    margin: -17% auto 0;
  }
}
.winter-problem .inner .img {
  width: 100%;
}

/* ----------------------------------
解決CTAエリア
---------------------------------- */
.solution-cta {
  position: relative;
  z-index: 1;
  padding-bottom: 15%;
}
@media (min-width: 1280px) {
  .solution-cta {
    padding-bottom: 8%;
  }
}
.solution-cta .inner {
  position: relative;
  width: 100%;
}
.solution-cta .inner .img {
  margin-top: -14%;
}
@media (min-width: 1280px) {
  .solution-cta .inner .img {
    margin-top: -6%;
  }
}
.solution-cta .inner .tel {
  position: absolute;
  right: 4%;
  bottom: 19%;
  width: 76%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 1280px) {
  .solution-cta .inner .tel {
    width: 32%;
    bottom: 7%;
    right: auto;
    left: 30%;
  }
}
.solution-cta .inner .btn {
  position: absolute;
  right: 4%;
  bottom: 3%;
  width: 77%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 1280px) {
  .solution-cta .inner .btn {
    width: 36%;
    bottom: 6%;
    left: auto;
    right: -6.2%;
  }
}

/* ----------------------------------
内窓リフォームでこんなに変わる
---------------------------------- */
.window-change {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 10% 3% 15%;
}
@media (min-width: 1280px) {
  .window-change {
    padding: 0 0 8%;
  }
}
.window-change .inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.window-change .inner .img {
  width: 100%;
  margin-top: -10%;
}
@media (min-width: 1280px) {
  .window-change .inner .img {
    width: 92.3%;
    margin-top: -6%;
    -webkit-transform: translateX(-9%);
    transform: translateX(-4.4%);
  }
}
.window-change .inner .btn-1 {
  display: block;
  position: absolute;
  right: 4%;
  bottom: 0.8%;
  width: 91%;
  max-width: 470px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 1280px) {
  .window-change .inner .btn-1 {
    width: 51%;
    bottom: 2.2%;
    max-width: none;
  }
}
.window-change .inner.one {
  margin-bottom: 20%;
}
@media (min-width: 1280px) {
  .window-change .inner.one {
    margin-bottom: 10%;
  }
}
.window-change .save-money-cta-ttl {
  margin-bottom: 5%;
}
@media (min-width: 1280px) {
  .window-change .save-money-cta-ttl {
    margin-bottom: 2%;
  }
}
.window-change .save-money-tel {
  display: block;
  width: 92%;
  margin: 0 auto 5%;
}
@media (min-width: 768px) {
  .window-change .save-money-tel {
    pointer-events: none;
  }
}
.window-change .save-money-btn {
  display: block;
  width: 92%;
  margin: 0 auto 5%;
}

.save-money {
  position: relative;
  width: 100%;
  background: #fff;
  border: solid 3px #311409;
}
@media (min-width: 1280px) {
  .save-money {
    width: 84.3%;
    margin: 0 auto;
    border: solid 6px #311409;
  }
}
.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 .ttl {
  margin-top: -19%;
  margin-bottom: 6%;
}
@media (min-width: 1280px) {
  .save-money .ttl {
    margin-top: -12%;
    margin-bottom: 0;
  }
}
.save-money__calculator {
  margin: 0 4%;
  border: 0.1em solid #dddddd;
  margin-bottom: 7%;
}
@media (min-width: 1280px) {
  .save-money__calculator {
    position: relative;
    font-size: 2rem;
    width: 70%;
    margin: -6% auto 2em;
    border-radius: 0.5em;
  }
}
.save-money__calculator .form-row {
  font-size: clamp(16px, 4.3vw, 24px);
}
.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, 5.7vw, 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;
  }
}
@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 .btn.btn-danger-line {
  border: 0.2em solid #da0000;
  background-color: #fff;
  color: #da0000;
}
.save-money .wrap {
  display: contents;
}
@media (min-width: 1280px) {
  .save-money .wrap {
    position: relative;
    width: 62%;
    margin: 0 auto 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2%;
  }
}
.save-money .niue {
  display: none;
}
@media (min-width: 1280px) {
  .save-money .niue {
    display: block;
    position: absolute;
    width: 20.5%;
    left: 0;
    bottom: 0;
    z-index: 2;
  }
}

/* ----------------------------------
お悩み解決
---------------------------------- */
.solution {
  position: relative;
  background: #fbf7f0;
  padding-bottom: 15%;
}
@media (min-width: 1280px) {
  .solution {
    padding-bottom: 7%;
  }
}
@media (min-width: 1280px) {
  .solution .inner {
    position: relative;
    margin-top: -10%;
    z-index: 2;
  }
}

/* ----------------------------------
助成金訴求エリア
---------------------------------- */
.subsidy {
  color: #fff;
  padding: 0 0 17%;
}
@media (min-width: 1280px) {
  .subsidy {
    padding: 8% 0;
  }
}
.subsidy__youtube {
  padding: 0 4% 5%;
  text-align: center;
}
@media (min-width: 1280px) {
  .subsidy__youtube {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 22.6%;
    width: 60%;
  }
}
.subsidy__youtube-text {
  margin: 3% auto;
}
.subsidy__title3-wrap {
  position: relative;
  padding: 0 4%;
}
.subsidy .inner {
  position: relative;
}
.subsidy .img-1 {
  margin-bottom: 3%;
}
@media (min-width: 1280px) {
  .subsidy .img-1 {
    margin-bottom: 0;
  }
}
.subsidy .img-2 {
  width: 92%;
  margin: 6% auto 0;
}
@media (min-width: 1280px) {
  .subsidy .img-2 {
    width: 84%;
  }
}
.subsidy .save-money-btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0.6%;
  display: block;
  width: 83%;
  margin: 5% auto 0;
  z-index: 2;
}
@media (min-width: 1280px) {
  .subsidy .save-money-btn {
    width: 52%;
    bottom: 1.5%;
  }
}

/* ----------------------------------
よくある質問
---------------------------------- */
.faq {
  background-color: #fbf7f0;
  padding: 5% 4% 15%;
  text-align: center;
  color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* FAQ Items */
}
@media (min-width: 1280px) {
  .faq {
    padding: 96px 0;
  }
}
.faq .ttl {
  width: 80%;
  margin: 0 auto 5%;
}
@media (min-width: 1280px) {
  .faq .ttl {
    -webkit-transform: translateX(18%);
            transform: translateX(18%);
  }
}
.faq .faq-inner {
  max-width: 940px;
  margin: 0 auto;
}
.faq .faq-question {
  font-weight: 700;
  padding-left: 13%;
  line-height: 1.5;
}
@media (min-width: 1280px) {
  .faq .faq-question {
    padding-left: 50px;
  }
}
.faq .faq-answer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-align: left;
  padding: 6%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1280px) {
  .faq .faq-answer {
    padding: 20px 30px;
  }
}
.faq .faq-answer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 88%;
  height: 1px;
  background: #311409;
  background-size: cover;
  background-position: center;
}
.faq .faq-answer p {
  margin: 0;
  font-weight: 400;
}
.faq .faq-icon {
  position: absolute;
  width: 8%;
  max-width: none;
}
@media (min-width: 1280px) {
  .faq .faq-icon {
    width: 36px;
  }
}
.faq .faq-item {
  position: relative;
  background: #ffffff;
  margin-bottom: 2.5%;
  overflow: hidden;
  color: #311409;
  border: 2px solid #311409;
  font-size: clamp(16px, 4.3vw, 24px);
}
@media (min-width: 1280px) {
  .faq .faq-item {
    font-size: 20px;
    margin-bottom: 1%;
  }
}
.faq .faq-item summary {
  list-style: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 5%;
  text-align: left;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1280px) {
  .faq .faq-item summary {
    padding: 20px 30px;
  }
}
.faq .faq-item summary::-webkit-details-marker {
  display: none;
}
.faq .faq-item .faq-toggle-icon {
  margin-left: auto;
  width: 24px;
}
@media (min-width: 1280px) {
  .faq .faq-item .faq-toggle-icon {
    width: 32px;
  }
}

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

/* ----------------------------------
お見積もり・ご相談
---------------------------------- */
.estimate {
  background-color: #fbf7f0;
  padding: 5% 4% 5%;
  margin-top: 0;
}
.estimate .inner .btn-wrap-all {
  display: contents;
}
@media (min-width: 1280px) {
  .estimate .inner .btn-wrap-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: -15% auto 0;
    gap: 20px;
    width: 92%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.estimate .inner .btn-wrap {
  position: relative;
  margin-bottom: 10%;
}
@media (min-width: 1280px) {
  .estimate .inner .btn-wrap {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .estimate .inner h2 {
    width: 40%;
    margin: 0 auto;
  }
}
.estimate .inner .tel {
  width: 92%;
  display: block;
  z-index: 2;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 6%;
}
@media (min-width: 1280px) {
  .estimate .inner .tel {
    width: 83%;
  }
}
.estimate .inner .btn {
  width: 90%;
  display: block;
  z-index: 2;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 7%;
}
@media (min-width: 1280px) {
  .estimate .inner .btn {
    width: 84%;
    bottom: 10%;
  }
}

/* ----------------------------------
フッター
---------------------------------- */
.footer {
  font-size: clamp(16px, 4.3vw, 24px);
}
@media (min-width: 1280px) {
  .footer {
    font-size: 16px;
  }
}
.footer .container {
  overflow: initial;
}

.info {
  background: #220000;
  color: #fff;
  text-align: left;
  font-size: 0.9rem;
  margin-top: -1%;
  padding: 10% 4% 13%;
}
@media (min-width: 1280px) {
  .info {
    padding: 100px 0;
  }
}
@media (min-width: 1280px) {
  .info .info-inner {
    width: 1080px;
    margin: 0 auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .info__address a {
    pointer-events: none;
  }
}
.info__address p {
  font-size: clamp(16px, 4.3vw, 21px);
}
.info p {
  font-size: clamp(16px, 3.5vw, 24px);
  margin: 0.75em 0;
}
@media (min-width: 1280px) {
  .info p {
    font-size: 16px;
  }
}
.info h2 {
  font-size: clamp(20px, 5vw, 32px);
}
@media (min-width: 1280px) {
  .info h2 {
    font-size: 18px;
  }
}
.info__top-bg {
  position: relative;
  width: 100%;
  background: #fbf7f1;
  overflow-x: hidden;
}
@media (min-width: 1280px) {
  .info__top-bg img {
    width: calc(100% + 5px);
  }
}
.info__logo {
  width: 70%;
  margin: 2em 0;
}
@media (min-width: 1280px) {
  .info__logo {
    width: 240px;
    margin: 0;
  }
}

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

.sp-fixed-cta {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border-right: 4px solid #d80000;
  border-left: 4px solid #d80000;
  border-bottom: 4px solid #d80000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  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;
  }
}